/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg-2: #111111;
  --bg-3: #181818;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.18);
  --text: #f0ede8;
  --text-muted: rgba(240,237,232,0.5);
  --text-dim: rgba(240,237,232,0.25);
  --accent: #f0ede8;
  --gold: #c8a96e;
  --gold-dim: rgba(200,169,110,0.15);
  --radius: 12px;
  --radius-sm: 6px;
  --font: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --transition: 0.2s ease;
}

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
em { font-style: italic; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition);
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary.btn-large { font-size: 16px; padding: 18px 40px; }

.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }

/* ── Section tags ──────────────────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ── NAV ───────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
#nav.nav--scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-dot { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--text);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.btn-nav:hover { opacity: 0.85; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  border-bottom: 1px solid var(--border);
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 900px;
}
.hero-headline em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  background: var(--bg-2);
  width: fit-content;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PROBLEM ───────────────────────────────────────────────────────────────── */
.problem {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--bg-2);
  padding: 40px 32px;
  transition: background var(--transition);
}
.problem-card:hover { background: var(--bg-3); }

.problem-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.problem-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.problem-quote blockquote {
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.problem-quote cite {
  font-size: 13px;
  color: var(--text-dim);
  font-style: normal;
}

/* ── AGENTS ────────────────────────────────────────────────────────────────── */
.agents {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

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

.agent-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition);
}
.agent-card:hover { border-color: var(--border-hover); }

.agent-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(200,169,110,0.06) 0%, var(--bg-2) 60%);
}
.agent-card--featured:hover { border-color: var(--gold); }

.featured-label {
  position: absolute;
  top: -1px; right: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.agent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.agent-icon {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.agent-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 100px;
}

.agent-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.agent-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.agent-features {
  list-style: none;
  margin-bottom: 28px;
}
.agent-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}
.agent-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}
.agent-features li:last-child { border-bottom: none; }

.agent-result {
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.result-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.result-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

/* ── PRICING ───────────────────────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(200,169,110,0.07) 0%, var(--bg-2) 60%);
}

.pricing-popular {
  position: absolute;
  top: -1px; right: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.pricing-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.price-amount {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-savings {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 18px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-addons {
  margin-bottom: 20px;
}
.addon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.addon:first-child { border-top: 1px solid var(--border); }
.addon-name { font-size: 13px; color: var(--text-muted); }
.addon-price { font-size: 14px; font-weight: 700; color: var(--text); }
.addon-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 32px;
  flex: 1;
}

.btn-pricing {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
  margin-top: auto;
}
.btn-pricing:hover { border-color: var(--border-hover); background: var(--bg-3); }

.btn-pricing--featured {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.btn-pricing--featured:hover { opacity: 0.88; background: var(--gold); }

.pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
}
.pricing-note a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border-hover);
}
.pricing-note a:hover { text-decoration-color: var(--text); }

/* ── INDUSTRIES ────────────────────────────────────────────────────────────── */
.industries {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.industry-card {
  background: var(--bg-2);
  padding: 28px 24px;
  transition: background var(--transition);
}
.industry-card:hover { background: var(--bg-3); }

.industry-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}
.high-roi { background: rgba(200,169,110,0.15); color: var(--gold); }
.fast-close { background: rgba(100,200,150,0.12); color: #6dc88a; }
.trust { background: rgba(100,150,255,0.12); color: #7aa4ff; }
.volume { background: rgba(200,100,255,0.12); color: #c97aff; }
.retention { background: rgba(255,150,100,0.12); color: #ff9670; }
.quick-win { background: rgba(100,220,220,0.12); color: #6adddd; }
.recurring { background: rgba(200,169,110,0.15); color: var(--gold); }

.industry-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.industry-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.industries-note {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}
.industries-note a { color: var(--text); text-decoration: underline; }

/* ── RESULTS ───────────────────────────────────────────────────────────────── */
.results {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

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

.result-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color var(--transition);
}
.result-card:hover { border-color: var(--border-hover); }

.result-industry {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.result-agent {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.result-metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.metric:last-child { border-bottom: none; }

.metric-num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

.result-quote {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  border-left: 2px solid var(--border);
  padding-left: 14px;
  line-height: 1.6;
}

/* ── PROCESS ───────────────────────────────────────────────────────────────── */
.process {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step {
  background: var(--bg-2);
  padding: 40px 32px;
  transition: background var(--transition);
}
.process-step:hover { background: var(--bg-3); }

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.step-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
}

/* ── Problem stat pill ─────────────────────────────────────────────────────── */
.problem-stat {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  display: inline-block;
}

.problem-card strong { color: var(--text); font-weight: 700; }

/* ── Pricing compare line ──────────────────────────────────────────────────── */
.pricing-compare {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 24px;
  font-style: italic;
}

/* ── BY THE NUMBERS ────────────────────────────────────────────────────────── */
.numbers {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.number-item {
  background: var(--bg-2);
  padding: 36px 32px;
  transition: background var(--transition);
}
.number-item:hover { background: var(--bg-3); }

.number-val {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.number-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── MARKETS ───────────────────────────────────────────────────────────────── */
.markets {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.market-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition);
}
.market-card:hover { border-color: var(--border-hover); }

.market-card--primary {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(200,169,110,0.06) 0%, var(--bg-2) 60%);
}
.market-card--primary:hover { border-color: var(--gold); }

.market-flag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 16px;
}

.market-card h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.market-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.market-stat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── Industries extra card ─────────────────────────────────────────────────── */
.industry-card--more {
  background: var(--bg-3);
  border: 1px dashed var(--border);
}
.industry-card--more h4 { color: var(--text-muted); }

.more { background: rgba(255,255,255,0.05); color: var(--text-dim); }

/* ── CTA ───────────────────────────────────────────────────────────────────── */
.cta {
  padding: 120px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.cta-headline {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-email {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
}
.cta-email a { color: var(--text-muted); text-decoration: underline; }
.cta-email a:hover { color: var(--text); }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 220px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .agents-grid,
  .pricing-grid,
  .results-grid { grid-template-columns: 1fr; }

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

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); }

  .markets-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-links--open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }

  .hero { padding: 120px 0 72px; }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
  .stat { padding: 0; }
  .stat-divider { width: 100%; height: 1px; }

  .industries-grid,
  .numbers-grid,
  .markets-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════════════════════
   UPGRADE LAYER — motion, hero console, platform, report mock
   (appended last so these rules win where they override earlier ones)
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Scroll reveal (progressive enhancement: hidden only when JS opts in) ────── */
html.reveal-on [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
html.reveal-on [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.reveal-on [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ── HERO upgrade: glow + two-column ───────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero-glow {
  position: absolute;
  top: -10%; left: 50%;
  width: 900px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(200,169,110,0.16) 0%, rgba(200,169,110,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-copy .hero-headline { font-size: clamp(40px, 5.4vw, 72px); margin-bottom: 24px; }
.hero-copy .hero-sub { margin-bottom: 32px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 22px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6dc88a; box-shadow: 0 0 0 0 rgba(109,200,138,0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(109,200,138,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(109,200,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,200,138,0); }
}
@media (prefers-reduced-motion: reduce) { .pulse-dot { animation: none; } }

.hero-trust {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  font-size: 12px; color: var(--text-dim);
}
.hero-trust > span { letter-spacing: 0.04em; }
.hero-trust ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.hero-trust li {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 4px 11px;
}

/* ── Hero console mock ──────────────────────────────────────────────────────── */
.hero-console {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8), 0 0 0 1px rgba(200,169,110,0.06);
}
.console-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.console-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-hover); }
.console-dot:nth-child(1) { background: #e06c5a; }
.console-dot:nth-child(2) { background: #e0b34a; }
.console-dot:nth-child(3) { background: #6dc88a; }
.console-title {
  margin-left: 8px; font-size: 12px; font-weight: 600;
  color: var(--text-muted); font-family: var(--mono);
}
.console-badge {
  margin-left: auto; font-size: 11px; font-family: var(--mono);
  color: var(--gold); border: 1px solid var(--gold-dim);
  background: var(--gold-dim); padding: 2px 8px; border-radius: 100px;
}
.console-body { padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; }
.msg {
  max-width: 86%; font-size: 13px; line-height: 1.5;
  padding: 10px 13px; border-radius: 12px; position: relative;
}
.msg-meta {
  display: block; font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 4px; font-weight: 600;
}
.msg--in {
  align-self: flex-start; background: var(--bg-3);
  color: var(--text-muted); border-bottom-left-radius: 4px;
}
.msg--out {
  align-self: flex-end; background: linear-gradient(160deg, rgba(200,169,110,0.18), rgba(200,169,110,0.08));
  border: 1px solid var(--gold-dim); color: var(--text);
  border-bottom-right-radius: 4px;
}
.console-foot {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.foot-pill {
  font-size: 10.5px; font-weight: 600; font-family: var(--mono);
  color: var(--text-muted); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 100px;
}
.foot-pill--gold { color: var(--gold); border-color: var(--gold-dim); background: var(--gold-dim); }

/* ── Hero stats — full width band ──────────────────────────────────────────── */
.hero-stats { width: 100%; justify-content: space-between; }
.hero-stats .stat { flex: 1; }

/* ── Agent SVG icons ───────────────────────────────────────────────────────── */
.agent-ico, .cap-ico {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim); border: 1px solid rgba(200,169,110,0.2);
  color: var(--gold); flex-shrink: 0;
}
.agent-ico svg, .cap-ico svg { width: 20px; height: 20px; }
.agent-card--featured .agent-ico { background: rgba(200,169,110,0.22); }

/* ── PLATFORM ──────────────────────────────────────────────────────────────── */
.platform { padding: 100px 0; border-bottom: 1px solid var(--border); }
.platform-sub {
  font-size: 16px; color: var(--text-muted); line-height: 1.7;
  max-width: 640px; margin: -32px 0 48px;
}
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cap-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.cap-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.cap-card h4 {
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  margin: 18px 0 10px;
}
.cap-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ── MONTHLY REPORT ────────────────────────────────────────────────────────── */
.report-sec { padding: 100px 0; border-bottom: 1px solid var(--border); }
.report-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.report-copy .section-headline { margin-bottom: 20px; }
.report-copy > p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.report-points { list-style: none; margin-bottom: 28px; }
.report-points li {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.6;
  padding: 9px 0 9px 26px; position: relative; border-bottom: 1px solid var(--border);
}
.report-points li::before {
  content: '✓'; position: absolute; left: 0; top: 9px;
  color: var(--gold); font-weight: 700; font-size: 12px;
}
.report-points li:last-child { border-bottom: none; }

.report-mock {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--border); border-radius: 14px; padding: 26px 26px 22px;
  box-shadow: 0 40px 80px -50px rgba(0,0,0,0.9);
}
.report-mock-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px; border-bottom: 2px solid var(--gold);
}
.rm-brand { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.rm-date { font-size: 12px; color: var(--text-dim); font-family: var(--mono); }
.rm-sub { font-size: 12px; color: var(--text-muted); margin: 10px 0 18px; }
.rm-block { margin-bottom: 16px; }
.rm-title {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.rm-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted);
  padding: 6px 0; border-bottom: 1px solid var(--border);
}
.rm-row:last-child { border-bottom: none; }
.rm-row b { color: var(--text); font-family: var(--mono); font-weight: 600; }
.rm-roi {
  margin-top: 18px; padding: 16px; border-radius: 10px;
  background: var(--gold-dim); border: 1px solid rgba(200,169,110,0.2);
}
.rm-roi-top { font-size: 14px; color: var(--text); }
.rm-roi-top b { color: var(--gold); font-size: 18px; }
.rm-roi-est { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.rm-roi-est b { color: var(--text); font-family: var(--mono); }
.rm-roi-note { font-size: 10.5px; color: var(--text-dim); margin-top: 8px; font-style: italic; }

/* ── Responsive (upgrade) ──────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-console { max-width: 480px; }
  .report-grid { grid-template-columns: 1fr; gap: 40px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .platform-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-stats .stat { width: 100%; }
  .platform-sub { margin-top: -20px; }
}
