@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Caveat:wght@600&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(160deg, #E8F4FF, #F7D9FF, #FFD1DC);
  min-height: 100vh;
  color: #2A1F3D;
}

.page {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

/* App name */
.app-name {
  font-family: 'Caveat', cursive;
  font-size: 3.2rem;
  font-weight: 600;
  color: #2A1F3D;
  letter-spacing: -0.5px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
  margin-bottom: 2.5rem;
}

.hero .app-name { margin-bottom: 0.4rem; }

.hero-sub {
  font-size: 1rem;
  color: #7A6B9A;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-block;
  background: #9B7FD4;
  color: white;
  border-radius: 999px;
  padding: 0.65rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.hero-btn:hover { background: #7C5CBF; }

/* How it works */
.how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 0.5px solid rgba(196,181,244,0.4);
  border-radius: 16px;
  background: rgba(255,255,255,0.6);
}

.step-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2A1F3D;
  margin-bottom: 0.3rem;
}

.step p {
  font-size: 0.82rem;
  color: #7A6B9A;
  line-height: 1.4;
}

/* Quote */
.quote {
  border-left: 2px solid #C4B5F4;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,0.4);
  border-radius: 0 12px 12px 0;
}

.quote p {
  font-size: 1rem;
  color: #2A1F3D;
  line-height: 1.6;
  margin-bottom: 0.3rem;
  font-style: italic;
}

.quote span {
  font-size: 0.85rem;
  color: #9B8AB0;
}

/* Footer */
.footer {
  text-align: center;
  border-top: 0.5px solid rgba(196,181,244,0.4);
  padding-top: 1.5rem;
  margin-top: 3rem;
}

.footer-name {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: #2A1F3D;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: #9B8AB0;
  text-decoration: none;
}

.footer-links a:hover { color: #9B7FD4; }

.footer-copy {
  font-size: 0.8rem;
  color: #B8A9E8;
}

/* Policy pages */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: #9B7FD4;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 2rem;
  padding: 0;
  text-decoration: none;
}

.back-btn:hover { color: #7C5CBF; }

.policy-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #2A1F3D;
  margin-bottom: 0.25rem;
}

.policy-date {
  font-size: 0.85rem;
  color: #9B8AB0;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 1.75rem;
}

.policy-section h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #2A1F3D;
  margin-bottom: 0.5rem;
}

.policy-section p,
.policy-section li {
  font-size: 0.9rem;
  color: #7A6B9A;
  line-height: 1.7;
}

.policy-section ul {
  padding-left: 1.2rem;
}

.policy-section li {
  margin-bottom: 0.25rem;
}

.policy-link {
  color: #9B7FD4;
  text-decoration: none;
}

.policy-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .how { grid-template-columns: 1fr; }
  .app-name { font-size: 2.5rem; }
}
