:root {
  --bg: #FDFCF8;
  --bg-alt: #F8F3E9;
  --bg-dark: #1A1A2E;
  --yellow: #F6C842;
  --yellow-light: #FBDB6B;
  --yellow-dark: #D4A817;
  --navy: #1A1A2E;
  --text: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #8888AA;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.07);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }

/* ── HERO ── */
.hero {
  padding: 80px 32px 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--yellow-dark);
}
.hero-subline {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
}

/* Lemon mascot */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.lemon-card {
  width: 220px;
  height: 240px;
  background: linear-gradient(160deg, #FFE880 0%, #F6C842 60%, #D4A817 100%);
  border-radius: 110px 110px 80px 80px;
  position: relative;
  box-shadow: 0 24px 48px rgba(212, 168, 23, 0.35), 0 4px 12px rgba(212, 168, 23, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lemon-body {
  width: 180px;
  height: 180px;
  border-radius: 90px 90px 70px 70px;
  background: linear-gradient(160deg, #FFE880 0%, #F6C842 60%, #D4A817 100%);
  position: relative;
}
.lemon-highlight {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 50px;
  height: 30px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.lemon-leaf {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 16px;
  background: #4A8C3B;
  border-radius: 50% 0 50% 0;
}
.lemon-face {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lemon-eye-row {
  display: flex;
  gap: 28px;
}
.lemon-eye {
  width: 12px;
  height: 14px;
  background: var(--navy);
  border-radius: 50%;
}
.lemon-smile {
  width: 50px;
}
.lemon-smile svg { width: 100%; }
.search-status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(26,26,46,0.1);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

/* Stats row */
.hero-stats {
  max-width: 1120px;
  margin: 64px auto 0;
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(26,26,46,0.1);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 48px;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(26,26,46,0.12);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 96px 32px;
  background: var(--bg-alt);
}
.section-header {
  max-width: 1120px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.section-headline em {
  font-style: italic;
  color: var(--yellow-dark);
}
.steps {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.step-content h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  padding: 80px 32px;
  text-align: center;
}
.logo-cloud {
  max-width: 1120px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}
.logo-item {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: -0.01em;
  padding: 8px 20px;
  background: var(--bg-alt);
  border-radius: 100px;
  border: 1px solid rgba(26,26,46,0.08);
}
.proof-quote {
  max-width: 640px;
  margin: 0 auto;
}
.proof-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.proof-quote cite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.cite-avatar {
  width: 36px;
  height: 36px;
}

/* ── THE MATCH ── */
.the-match {
  padding: 96px 32px;
  background: var(--bg-alt);
  position: relative;
}
.match-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.match-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 24px;
}
.match-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.profile-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(26,26,46,0.08);
}
.profile-card--deep {
  border: 2px solid var(--yellow);
  box-shadow: 0 8px 24px rgba(246, 200, 66, 0.2);
}
.profile-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.profile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile-list--shallow li:nth-child(n+3) {
  opacity: 0.5;
}
.profile-list li {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
}
.list-key {
  font-weight: 600;
  color: var(--text);
  min-width: 90px;
}
.list-val {
  color: var(--text-mid);
}
.fit-badge {
  max-width: 1120px;
  margin: 40px auto 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(26,26,46,0.1);
}
.fit-score {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--yellow-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.fit-label {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 96px 32px;
}
.testimonials-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(26,26,46,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
}
.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.testimonial cite {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}
.testimonial cite strong { color: var(--navy); }

/* ── CLOSING ── */
.closing {
  padding: 120px 32px;
  text-align: center;
  background: var(--navy);
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-badge {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-headline em {
  font-style: italic;
  color: var(--yellow);
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}

/* ── FOOTER ── */
.site-footer {
  padding: 32px;
  border-top: 1px solid rgba(26,26,46,0.08);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.footer-legal {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .lemon-card { width: 180px; height: 200px; }
  .hero-stats { flex-direction: column; gap: 32px; align-items: flex-start; padding-left: 32px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .steps { grid-template-columns: 1fr; }
  .match-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 60px 20px 0; }
  .how-it-works, .the-match, .testimonials, .closing { padding: 64px 20px; }
  .social-proof { padding: 64px 20px; }
  .section-headline { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .logo-cloud { gap: 10px 16px; }
  .logo-item { font-size: 0.85rem; padding: 6px 14px; }
}