/* ─── BASE ────────────────────────────────────────────────────── */
:root {
  --bg: #0F2D1A;
  --bg-mid: #163D24;
  --bg-light: #1E5030;
  --surface: #122A1C;
  --fg: #F0EDE6;
  --fg-muted: rgba(240,237,230,0.55);
  --fg-subtle: rgba(240,237,230,0.3);
  --accent: #E8A427;
  --accent-dim: rgba(232,164,39,0.12);
  --amber-glow: rgba(232,164,39,0.08);
}

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

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

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

::selection { background: var(--accent); color: var(--bg); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 3rem;
}

/* ─── NAV ─────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15,45,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240,237,230,0.06);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--fg);
  text-decoration: none;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2rem 2rem;
  position: relative;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(22,61,36,0.7) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  background: var(--accent-dim);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(232,164,39,0.2);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-stat {}

.stat-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 0.15rem;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--fg-subtle);
}

/* ─── HERO VISUAL ─────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.browser-mockup {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(240,237,230,0.08);
  box-shadow:
    0 0 0 1px rgba(232,164,39,0.05),
    0 24px 64px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.3);
  overflow: hidden;
}

.browser-bar {
  background: rgba(240,237,230,0.04);
  border-bottom: 1px solid rgba(240,237,230,0.06);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28C840; }

.browser-url {
  font-size: 0.7rem;
  color: var(--fg-muted);
  background: rgba(240,237,230,0.06);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
}

.browser-content {
  padding: 1.25rem;
}

/* SERP result */
.search-result {
  background: var(--bg);
  border: 1px solid rgba(240,237,230,0.06);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
}

.sr-label {
  font-size: 0.65rem;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sr-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8AB4F8;
  margin-bottom: 0.3rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sr-desc {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Lead notification */
.lead-notification {
  background: rgba(232,164,39,0.08);
  border: 1px solid rgba(232,164,39,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lead-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.lead-text {}

.lead-headline {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.1rem;
}

.lead-meta {
  font-size: 0.65rem;
  color: var(--fg-muted);
}

/* Revenue row */
.revenue-row {
  background: rgba(40,200,64,0.06);
  border: 1px solid rgba(40,200,64,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rev-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
}

.rev-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #28C840;
}

.visual-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,164,39,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Hero bottom bar */
.hero-bottom-bar {
  max-width: 1180px;
  margin: 2rem auto 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-bottom-bar span {
  font-size: 0.72rem;
  color: var(--fg-subtle);
  letter-spacing: 0.06em;
}

/* ─── PROOF ────────────────────────────────────────────────────── */
.proof {
  padding: 7rem 2rem;
  background: var(--bg-mid);
  position: relative;
}

.proof::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,164,39,0.3), transparent);
}

.proof-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.proof-header {
  max-width: 580px;
  margin-bottom: 3rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.proof-card {
  background: var(--surface);
  border: 1px solid rgba(240,237,230,0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s;
}

.proof-card:hover {
  border-color: rgba(232,164,39,0.15);
}

.proof-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.proof-body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ─── OUTCOMES ────────────────────────────────────────────────── */
.outcomes {
  padding: 7rem 2rem;
  background: var(--bg);
}

.outcomes-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.outcomes-header {
  margin-bottom: 3rem;
}

.outcomes-table {
  background: var(--surface);
  border: 1px solid rgba(240,237,230,0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.outcomes-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(240,237,230,0.04);
  font-size: 0.875rem;
  transition: background 0.15s;
}

.outcomes-row:last-child {
  border-bottom: none;
}

.outcomes-row-head {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
}

.outcomes-row:not(.outcomes-row-head):hover {
  background: rgba(240,237,230,0.02);
}

.outcomes-val {
  color: var(--fg);
  font-weight: 500;
}

.outcomes-eq {
  color: var(--fg-muted);
}

.outcomes-row-highlight {
  background: rgba(232,164,39,0.04);
}

.outcomes-row-highlight .outcomes-val {
  color: var(--accent);
}

.outcomes-row-highlight .outcomes-eq {
  color: var(--fg);
}

.outcomes-note {
  font-size: 0.72rem;
  color: var(--fg-subtle);
  line-height: 1.6;
}

/* ─── HOW ─────────────────────────────────────────────────────── */
.how {
  padding: 7rem 2rem;
  background: var(--bg-mid);
}

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

.how-header {
  margin-bottom: 3.5rem;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.how-step {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid rgba(240,237,230,0.06);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.2s;
}

.how-step:hover {
  border-color: rgba(232,164,39,0.15);
}

.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: rgba(232,164,39,0.15);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.how-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.how-step p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ─── MANIFESTO ───────────────────────────────────────────────── */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg);
}

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

.manifesto-quote {
  border-left: 2px solid var(--accent);
  padding-left: 2.5rem;
  text-align: left;
}

.manifesto-quote p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.5;
  color: var(--fg);
  font-style: italic;
}

.manifesto-attrs {
  margin-top: 1.5rem;
  padding-left: 2.5rem;
  text-align: left;
}

.manifesto-diver {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ─── CLOSING ─────────────────────────────────────────────────── */
.closing {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 100%);
}

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

.closing-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.closing-tagline {
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
}

/* ─── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  padding: 2.5rem 2rem;
  background: var(--bg);
  border-top: 1px solid rgba(240,237,230,0.06);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--fg);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

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

  .hero-visual {
    order: -1;
  }

  .browser-mockup {
    max-width: 100%;
  }

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

  .how-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .outcomes-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .outcomes-row-head span:last-child {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 6rem 1.25rem 2rem;
  }

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

  .hero-stats-row {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .proof, .how, .outcomes, .manifesto, .closing {
    padding: 4rem 1.25rem;
  }

  .manifesto-quote {
    padding-left: 1.5rem;
  }

  .manifesto-attrs {
    padding-left: 1.5rem;
  }

  .nav-tagline {
    display: none;
  }
}