:root {
  --bg: #fff;
  --bg-secondary: #f5faf8;
  --bg-tertiary: #e8f4f0;
  --text: #111a17;
  --text-secondary: #5a6b65;
  --text-tertiary: #8a9b95;
  --accent: #0a7a50;
  --accent-brand: #0cc9a0;
  --accent-warm: #ffc947;
  --card: rgba(255, 255, 255, 0.72);
  --stroke: #dce8e4;
  --border-dark: #111a17;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Sora", "Space Grotesk", "Segoe UI", sans-serif;
  background: var(--bg);
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 8%, rgba(12, 201, 160, 0.12), transparent 38%),
    radial-gradient(circle at 88% 18%, rgba(255, 201, 71, 0.1), transparent 32%),
    radial-gradient(circle at 50% 85%, rgba(10, 122, 80, 0.08), transparent 40%);
}

.shell {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 32px;
  height: 32px;
  background: var(--accent-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-logo::after {
  content: "✦";
  color: var(--accent-warm);
  font-size: 14px;
}

.brand-name {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

/* Hero */
.hero {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.72rem;
  margin: 0 0 1.25rem;
  color: var(--accent);
  background: var(--bg-tertiary);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

h1 {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 700;
}

h1 .highlight {
  color: var(--accent);
}

.subcopy {
  margin-top: 1.25rem;
  max-width: 560px;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(10, 122, 80, 0.22);
}

.btn-primary:hover {
  background: #087043;
}

.btn-ghost {
  color: var(--text);
  background: var(--bg-tertiary);
  border: 1px solid var(--stroke);
}

.btn-ghost:hover {
  background: #dce8e4;
}

/* Features section */
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--text-tertiary);
  margin: 0 0 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4.5rem;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--accent-brand);
  box-shadow: 0 4px 16px rgba(12, 201, 160, 0.1);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.card-icon.teal {
  background: var(--bg-tertiary);
}

.card-icon.gold {
  background: #fef8e7;
}

.card-icon.green {
  background: #e9f6ea;
}

.card h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* How it works */
.how-section {
  margin-top: 4.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* CTA banner */
.cta-banner {
  margin-top: 4.5rem;
  background: var(--accent);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.cta-banner p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Footer */
.footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke);
  font-size: 0.88rem;
  color: var(--text-tertiary);
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.68s ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 240ms;
}

.delay-3 {
  animation-delay: 340ms;
}

.delay-4 {
  animation-delay: 440ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legal pages (FAQ, Terms, Privacy) */
.legal {
  max-width: 740px;
}

.legal-title {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.legal-meta {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  margin: 0 0 0.25rem;
}

.legal-intro {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 1.25rem 0 2rem;
}

.legal-section {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.legal-subsection {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.legal-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 0.6rem;
}

.legal-body a,
.legal-list a {
  color: var(--accent);
  text-decoration: none;
}

.legal-body a:hover,
.legal-list a:hover {
  text-decoration: underline;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.legal-list li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  padding-left: 1.25rem;
  position: relative;
}

.legal-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent-brand);
  font-weight: 700;
}

/* FAQ items */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

@media (max-width: 900px) {
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 2rem 1.25rem;
  }
}
