/* ─── Variables ─── */
:root {
  --bg: #0B1628;
  --bg-2: #0F1E35;
  --surface: #132440;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #E8E4DF;
  --text-muted: rgba(232, 228, 223, 0.55);
  --text-dim: rgba(232, 228, 223, 0.30);
  --border: rgba(232, 228, 223, 0.08);
  --radius: 8px;
}

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

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

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

/* ─── Nav ─── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 60px 120px;
  min-height: 80vh;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 60px;
  right: 60px;
  height: 1px;
  background: var(--border);
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.call-report-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-report {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 16px;
}

.report-date {
  font-size: 12px;
  color: var(--text-muted);
}

.report-city {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.report-calls {
  font-size: 12px;
  color: var(--text-muted);
}

.report-revenue {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.map-pins {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pin-row {
  display: flex;
  gap: 16px;
}

.pin {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px 16px;
}

.pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}

.pin-dot-active {
  background: var(--accent);
}

.pin-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── Section scaffolding ─── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 100px 60px;
  background: var(--bg-2);
}

.how-it-works .section-heading {
  max-width: 500px;
  margin-bottom: 60px;
}

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

.step {
  padding: 40px 40px 40px 0;
  border-left: 1px solid var(--border);
  padding-left: 40px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 24px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Niches ─── */
.niches {
  padding: 100px 60px;
}

.niches-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}

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

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

.niche-card:hover {
  border-color: rgba(245, 166, 35, 0.25);
}

.niche-icon {
  margin-bottom: 20px;
}

.niche-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.niche-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.niche-metric {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ─── Outcomes ─── */
.outcomes {
  padding: 100px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.outcomes-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.outcomes-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px 24px;
  gap: 20px;
}

.table-header {
  background: var(--surface);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.table-row {
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.table-row:last-child { border-bottom: none; }
.table-row span:first-child { color: var(--text); font-weight: 500; }
.table-row span:last-child { color: var(--accent); font-weight: 600; }

.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.asset-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.asset-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.asset-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 120px 60px;
}

.manifesto-inner {
  max-width: 800px;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 48px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}

.manifesto-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-body p:last-child { margin-bottom: 0; }

/* ─── Closing ─── */
.closing {
  padding: 100px 60px;
  background: var(--bg-2);
}

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

.closing-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.pillar-check {
  flex-shrink: 0;
}

/* ─── Footer ─── */
.site-footer {
  padding: 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-sep { color: var(--text-dim); }

/* ─── Mobile ─── */
@media (max-width: 900px) {
  .site-nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px 80px; min-height: auto; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--border); padding: 32px 0; }
  .step:first-child { border-top: none; padding-top: 0; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-it-works, .niches, .outcomes, .manifesto, .closing { padding: 60px 24px; }
  .site-footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 600px) {
  .niche-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 22px; }
}
