:root {
  --bg: #0A1628;
  --bg-alt: #0F1E35;
  --fg: #E8EFF7;
  --fg-muted: #8BA4BF;
  --accent: #B8F53C;
  --accent-dim: rgba(184, 245, 60, 0.12);
  --navy-deep: #060E1A;
  --border: rgba(184, 245, 60, 0.15);
}

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

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

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

/* ── NAV ── */
.nav { border-bottom: 1px solid var(--border); padding: 1.25rem 2.5rem; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Instrument Serif', serif; font-size: 1.5rem; color: var(--accent); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.nav-link--accent { color: var(--accent) !important; font-weight: 600; }

/* ── HERO ── */
.hero { padding: 5rem 2.5rem 4rem; max-width: 1200px; margin: 0 auto; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 1.5rem; font-weight: 500; }
.hero-headline { font-family: 'Instrument Serif', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.hero-headline em { color: var(--accent); font-style: italic; }
.hero-sub { font-size: 1.05rem; color: var(--fg-muted); max-width: 48ch; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-stats { display: flex; align-items: center; gap: 2rem; }
.stat { display: flex; flex-direction: column; }
.stat-val { font-family: 'Instrument Serif', serif; font-size: 1.5rem; color: var(--fg); }
.stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-top: 0.25rem; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-gradient-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }

/* Hero visual */
.hero-visual { position: relative; }
.geo-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; margin-bottom: 1rem; position: relative; overflow: hidden; }
.geo-card::before { content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px; background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%); }
.geo-tag { display: inline-block; background: var(--accent); color: var(--navy-deep); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 1rem; }
.geo-lead { display: flex; flex-direction: column; gap: 0.25rem; }
.geo-city { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.geo-service { font-family: 'Instrument Serif', serif; font-size: 1.25rem; color: var(--fg); margin-top: 0.25rem; }
.geo-phone { font-size: 1rem; color: var(--accent); font-weight: 500; margin-top: 0.5rem; font-variant-numeric: tabular-nums; }
.geo-status { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--fg-muted); }
.geo-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.geo-ranks { display: flex; flex-direction: column; gap: 0.5rem; }
.geo-rank-item { display: flex; align-items: center; gap: 1rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 1rem; font-size: 0.85rem; }
.rank-num { font-family: 'Instrument Serif', serif; font-size: 0.9rem; color: var(--accent); min-width: 28px; }

/* ── SECTION SHARED ── */
.section-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 1rem; font-weight: 500; }
.section-title { font-family: 'Instrument Serif', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; letter-spacing: -0.02em; }
.section-title em { color: var(--accent); font-style: italic; }

/* ── HOW ── */
.how { padding: 5rem 2.5rem; max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.how-steps { display: flex; gap: 0; }
.step { flex: 1; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; position: relative; }
.step-connector { width: 2rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.step-connector::after { content: ''; display: block; width: 100%; height: 1px; background: linear-gradient(90deg, var(--border), transparent); }
.step-num { font-family: 'Instrument Serif', serif; font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }
.step-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }
.step-body p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.7; }

/* ── OUTCOMES ── */
.outcomes { background: var(--navy-deep); padding: 5rem 2.5rem; }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-headline { margin-bottom: 3rem; }
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.outcome-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.outcome-icon { margin-bottom: 1.25rem; }
.outcome-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.outcome-card p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.7; }

/* ── PRICING ── */
.pricing { padding: 5rem 2.5rem; max-width: 1200px; margin: 0 auto; }
.pricing-header { margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.pricing-card--featured { border-color: var(--accent); box-shadow: 0 0 30px rgba(184, 245, 60, 0.08); }
.pricing-badge { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); background: rgba(255,255,255,0.05); display: inline-block; padding: 0.25rem 0.75rem; border-radius: 4px; margin-bottom: 1.25rem; }
.pricing-badge--lime { background: var(--accent); color: var(--navy-deep); font-weight: 600; }
.pricing-price { font-family: 'Instrument Serif', serif; font-size: 2.5rem; color: var(--fg); }
.pricing-price small { font-size: 1rem; font-family: 'DM Sans', sans-serif; color: var(--fg-muted); font-weight: 400; }
.pricing-note { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.25rem; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.85rem; color: var(--fg-muted); padding-left: 1.25rem; position: relative; }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.pricing-calc { margin-top: 2.5rem; font-size: 0.9rem; color: var(--fg-muted); text-align: center; }
.pricing-calc strong { color: var(--accent); }

/* ── CLOSING ── */
.closing { padding: 5rem 2.5rem; background: var(--navy-deep); }
.closing-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 5rem; align-items: center; }
.closing-orb { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.orb-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(184, 245, 60, 0.2); }
.orb-ring--1 { width: 200px; height: 200px; }
.orb-ring--2 { width: 150px; height: 150px; border-color: rgba(184, 245, 60, 0.35); }
.orb-ring--3 { width: 100px; height: 100px; border-color: rgba(184, 245, 60, 0.55); }
.orb-center { display: flex; flex-direction: column; align-items: center; }
.orb-pct { font-family: 'Instrument Serif', serif; font-size: 2rem; color: var(--accent); }
.orb-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); }
.closing-headline { font-family: 'Instrument Serif', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.closing-headline em { color: var(--accent); font-style: italic; }
.closing-body { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.closing-body strong { color: var(--fg); }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 2.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Instrument Serif', serif; font-size: 1.25rem; color: var(--accent); display: block; }
.footer-desc { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.25rem; line-height: 1.5; }
.footer-meta p { font-size: 0.75rem; color: var(--fg-muted); opacity: 0.6; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .how-steps { flex-direction: column; }
  .step-connector { width: 100%; height: 1rem; }
  .step-connector::after { height: 1px; background: linear-gradient(180deg, transparent, var(--border)); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing-orb { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
}
