:root {
  --bg: #FAF5F0;
  --bg-warm: #F3EAE0;
  --fg: #2D2420;
  --fg-soft: #6B5E56;
  --accent: #C4785B;
  --accent-deep: #A35D44;
  --accent-glow: #E8A88C;
  --dark: #2D2420;
  --dark-soft: #3D342E;
  --cream: #FFF8F2;
  --sage: #B8C4A8;
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.15;
}

em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* NAV */
.nav {
  position: relative;
  z-index: 10;
  padding: 28px 40px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--fg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px 80px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 65vw;
  height: 65vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--accent-deep);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-soft);
  max-width: 540px;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* HOW IT WORKS */
.how {
  background: var(--dark);
  color: var(--cream);
  padding: 100px 40px;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 64px;
  color: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step {
  position: relative;
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-glow);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.step p {
  font-size: 0.95rem;
  color: rgba(255,248,242,0.65);
  line-height: 1.7;
}

/* FEATURES */
.features {
  padding: 120px 40px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  color: var(--fg);
}

.feature-text p {
  font-size: 1.05rem;
  color: var(--fg-soft);
  line-height: 1.7;
}

.feature-right {
  direction: rtl;
}

.feature-right > * {
  direction: ltr;
}

/* Visual cards */
.visual-card {
  background: var(--cream);
  border: 1px solid rgba(45,36,32,0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 40px rgba(45,36,32,0.06);
}

.card-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.match-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-warm);
  border-radius: 4px;
  overflow: hidden;
}

.match-fill {
  width: 96%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-glow));
  border-radius: 4px;
}

.card-pct {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.card-dark {
  background: var(--dark);
  border: none;
  align-items: center;
  padding: 48px 32px;
}

.card-icon {
  font-size: 2rem;
  color: var(--sage);
}

.card-label-light {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,248,242,0.7);
}

/* Dots */
.visual-dots {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.dot {
  display: block;
  border-radius: 50%;
}

.dot-1 { width: 32px; height: 32px; background: var(--accent); }
.dot-2 { width: 48px; height: 48px; background: var(--sage); }
.dot-3 { width: 40px; height: 40px; background: var(--accent-glow); }
.dot-4 { width: 28px; height: 28px; background: var(--dark); }
.dot-5 { width: 52px; height: 52px; background: var(--accent-deep); opacity: 0.7; }

/* CLOSING */
.closing {
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg) 100%);
  padding: 120px 40px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 24px;
}

.closing h2 em {
  color: var(--accent-deep);
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-soft);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 48px 40px;
  border-top: 1px solid rgba(45,36,32,0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-soft);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }
  
  .hero {
    padding: 0 24px 60px;
    min-height: 80vh;
  }
  
  .hero-bg-shape {
    width: 90vw;
    height: 90vw;
    top: -10%;
    right: -30%;
  }
  
  .how {
    padding: 72px 24px;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features {
    padding: 72px 24px;
  }
  
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 72px;
  }
  
  .feature-right {
    direction: ltr;
  }
  
  .closing {
    padding: 72px 24px;
  }
  
  .footer {
    padding: 32px 24px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}