:root {
  --bg-primary: #060608;
  --bg-secondary: #0c0c10;
  --bg-card: #101015;
  --fg-primary: #f0eee8;
  --fg-secondary: #8a8894;
  --fg-muted: #4a4858;
  --accent: #c8922a;
  --accent-dim: rgba(200, 146, 42, 0.12);
  --border: rgba(240, 238, 232, 0.08);
  --border-accent: rgba(200, 146, 42, 0.25);
}

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

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
}

.nav-tagline {
  font-size: 0.8125rem;
  color: var(--fg-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-cta {
  margin-left: auto;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--border-accent);
  border-radius: 4px;
  padding: 0.4rem 1rem;
  transition: background 0.15s, color 0.15s;
}

.nav-cta:hover {
  background: var(--accent-dim);
}

/* ── SECTION LABEL ───────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(200, 146, 42, 0.015) 3px,
      rgba(200, 146, 42, 0.015) 4px
    );
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--fg-secondary);
}

.hero-sub--accent {
  color: var(--fg-primary);
}

.hero-stats {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.stat {
  flex: 1;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--fg-secondary);
  line-height: 1.4;
}

/* ── PROBLEM ─────────────────────────────────── */
.problem {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.problem-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.problem-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg-primary);
}

.text-accent {
  color: var(--accent);
}

.problem-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.problem-card {
  background: var(--bg-card);
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem-icon {
  color: var(--accent);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-primary);
}

.problem-card p {
  font-size: 0.9375rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

.problem-quote {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  border-left: 2px solid var(--accent);
  padding-left: 1.75rem;
}

.problem-quote blockquote {
  font-size: 1.0625rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  font-style: italic;
}

.problem-quote blockquote em {
  font-style: normal;
  color: var(--accent);
}

.problem-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ── APPROACH ────────────────────────────────── */
.approach {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}

.approach-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.approach-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg-primary);
  margin-bottom: 1.25rem;
}

.approach-sub {
  font-size: 1.0625rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.approach-sub em {
  font-style: normal;
  color: var(--fg-primary);
}

.approach-trio {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.approach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approach-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.approach-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-primary);
}

.approach-card p {
  font-size: 0.9375rem;
  color: var(--fg-secondary);
  line-height: 1.65;
  flex: 1;
}

.approach-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.approach-guarantee {
  max-width: 1200px;
  margin: 3rem auto 0;
}

.guarantee-bar {
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  border-radius: 6px;
  padding: 1.5rem 2rem;
}

.guarantee-text {
  font-size: 1.0625rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

.guarantee-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--fg-primary);
}

/* ── RESULTS ────────────────────────────────── */
.results {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.results-left {
  display: flex;
  flex-direction: column;
}

.results-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.results-sub {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

.results-sub strong {
  color: var(--fg-primary);
  font-weight: 500;
}

.vertical-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 2.5rem;
}

.vertical-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--fg-primary);
  letter-spacing: 0.01em;
}

.v-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── VISION ──────────────────────────────────── */
.vision {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.vision-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.vision-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--fg-primary);
  margin-bottom: 1.75rem;
}

.vision-body {
  font-size: 1.0625rem;
  color: var(--fg-secondary);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.vision-divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
}

.vision-closing {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--fg-primary);
}

.footer-sep, .footer-dot {
  color: var(--fg-muted);
}

.footer-loc {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fg-secondary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-divider { display: none; }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .approach-trio {
    grid-template-columns: 1fr;
  }

  .results {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 2rem;
  }

  .vertical-list {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .problem { padding: 4rem 1.25rem; }
  .approach { padding: 4rem 1.25rem; }
  .vision { padding: 4rem 1.25rem; }

  .hero-headline {
    font-size: 2.75rem;
  }

  .problem-card {
    padding: 1.75rem 1.5rem;
  }

  .approach-card {
    padding: 2rem 1.5rem;
  }

  .stat {
    padding: 1.25rem 1.5rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }
}