:root {
  --cream: #FEFAF5;
  --warm-tan: #F0EBE3;
  --brown: #4A3728;
  --brown-light: #6B5344;
  --terracotta: #D4634B;
  --terracotta-dark: #B84D38;
  --forest: #2C5F50;
  --gold: #F4C542;
  --off-white: #F5EFE6;
  --sage: #8BAF9A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--brown);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--warm-tan);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--brown-light);
  font-weight: 400;
}
.nav-tagline::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--terracotta);
}

/* Shared section styles */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brown);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--cream);
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--brown);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--brown-light);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-illustration {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}
.hero-illustration svg {
  width: 100%;
  height: 100%;
}

/* How it works */
.howitworks {
  padding: 5rem 2rem;
  background: var(--warm-tan);
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  padding: 0 2rem;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--terracotta);
  opacity: 0.4;
  margin-bottom: 1rem;
  line-height: 1;
}
.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 1.6;
}
.step-divider {
  width: 1px;
  height: 120px;
  background: var(--brown);
  opacity: 0.1;
  margin-top: 1.5rem;
}

/* Features */
.features {
  padding: 5rem 2rem;
  background: var(--cream);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 2rem;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-2px);
}
.feature-icon {
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 6rem 2rem 5rem;
  background: var(--warm-tan);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.closing-visual {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.closing-visual svg {
  width: 320px;
  max-width: 100%;
}
.closing-tagline {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  letter-spacing: -0.01em;
}

/* Footer */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--warm-tan);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--brown-light);
  flex: 1;
}
.footer-year {
  font-size: 0.8rem;
  color: var(--brown-light);
  opacity: 0.6;
}

/* Hero CTA */
.hero-cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  background: var(--terracotta);
  color: white;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}
.hero-cta-sub {
  font-size: 0.85rem;
  color: var(--brown-light);
  opacity: 0.8;
}

/* Closing CTA — update badge to show active, not "coming soon" */
.closing-badge.active {
  background: var(--terracotta);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-illustration {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-divider {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1.5rem 2.5rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .howitworks, .features, .closing {
    padding: 3rem 1.5rem;
  }
}