/* ===== FONTS ===== */

/* ===== TOKENS ===== */
:root {
  --slate-950: #0f1117;
  --slate-900: #1a1f2e;
  --slate-800: #242b3d;
  --slate-700: #313a52;
  --slate-500: #6b7a99;
  --slate-400: #8a96b0;
  --slate-300: #b4c0d4;
  --slate-200: #d9e2ef;
  --slate-100: #f0f4fa;
  --cream: #faf8f4;
  --cream-2: #f5f0e8;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-300: #fcd34d;
  --amber-100: #fef3c7;
  --green-500: #22c55e;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --section-pad: 96px 40px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--slate-950);
  color: var(--slate-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  background: var(--slate-950);
  padding: 80px 40px 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--slate-800) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left { display: flex; flex-direction: column; gap: 24px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-500);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 4px;
  padding: 6px 12px;
  width: fit-content;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: var(--slate-400);
  line-height: 1.65;
  max-width: 440px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-500);
}
.trust-dot {
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== PRICING MAP MOCKUP ===== */
.pricing-map-mockup {
  background: var(--slate-900);
  border: 1px solid var(--slate-700);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}
.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--slate-700);
  background: var(--slate-800);
}
.map-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-300);
  letter-spacing: 0.03em;
}
.map-legend {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--slate-400);
}
.legend-you::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--amber-500);
  border-radius: 50%;
  margin-right: 5px;
}
.legend-competitor::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--slate-600);
  border-radius: 50%;
  margin-right: 5px;
}
.map-grid {
  display: flex;
  padding: 24px 24px 16px;
  gap: 8px;
}
.axis-y-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0 32px;
  font-size: 10px;
  color: var(--slate-500);
  font-weight: 500;
  text-align: right;
  width: 36px;
  flex-shrink: 0;
}
.scatter-plot {
  flex: 1;
  height: 240px;
  position: relative;
  border-bottom: 1px solid var(--slate-700);
  border-left: 1px solid var(--slate-700);
}
.grid-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--slate-800);
}
.gl-1 { left: 25%; }
.gl-2 { left: 50%; }
.gl-3 { left: 75%; }
.axis-x-labels {
  position: absolute;
  bottom: -28px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--slate-500);
  font-weight: 500;
}
/* Dots */
.dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-c1  { background: rgba(255,255,255,0.15); top: 55%; left: 12%; }
.dot-c2  { background: rgba(255,255,255,0.15); top: 35%; left: 20%; }
.dot-c3  { background: rgba(255,255,255,0.15); top: 70%; left: 25%; }
.dot-c4  { background: rgba(255,255,255,0.15); top: 25%; left: 35%; }
.dot-c5  { background: rgba(255,255,255,0.15); top: 80%; left: 40%; }
.dot-c6  { background: rgba(255,255,255,0.18); top: 15%; left: 45%; }
.dot-c7  { background: rgba(255,255,255,0.18); top: 45%; left: 55%; }
.dot-c8  { background: rgba(255,255,255,0.15); top: 60%; left: 62%; }
.dot-c9  { background: rgba(255,255,255,0.15); top: 30%; left: 70%; }
.dot-c10 { background: rgba(255,255,255,0.18); top: 75%; left: 75%; }
.dot-c11 { background: rgba(255,255,255,0.15); top: 50%; left: 85%; }
.dot-c12 { background: rgba(255,255,255,0.15); top: 20%; left: 90%; }
.dot-you {
  background: var(--amber-500);
  width: 18px; height: 18px;
  top: 38%; left: 58%;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.25), 0 0 20px rgba(245,158,11,0.4);
  z-index: 2;
}
.zone-circle {
  position: absolute;
  top: 30%; left: 50%;
  width: 60px; height: 60px;
  border: 1.5px dashed rgba(245,158,11,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.map-insight {
  padding: 16px 20px;
  border-top: 1px solid var(--slate-700);
  background: var(--slate-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.insight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-500);
  background: rgba(34,197,94,0.1);
  padding: 6px 12px;
  border-radius: 6px;
}
.insight-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-display);
}
.stat-label {
  font-size: 10px;
  color: var(--slate-500);
  margin-top: 2px;
}

/* ===== SHARED SECTION STYLES ===== */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin-bottom: 56px;
}

/* ===== HOW IT WORKS ===== */
.howitworks { background: var(--cream); }
.howitworks .section-label { color: #b45309; }
.howitworks .section-headline { color: var(--slate-900); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { display: flex; flex-direction: column; gap: 16px; }
.step-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--cream-2);
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--slate-300);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: #5a6478;
  line-height: 1.7;
}

/* ===== WHO IT'S FOR ===== */
.whoitsfor { background: var(--slate-900); }
.segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.segment {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.segment:hover { border-color: var(--amber-500); }
.segment-icon {
  width: 44px; height: 44px;
  background: rgba(245,158,11,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-500);
  margin-bottom: 16px;
}
.segment h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.segment p {
  font-size: 13px;
  color: var(--slate-400);
  line-height: 1.65;
}

/* ===== OUTCOMES ===== */
.outcomes { background: var(--slate-950); }
.outcomes::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--slate-800), transparent);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.outcome-marker {
  width: 40px; height: 40px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-500);
  flex-shrink: 0;
}
.outcome h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}
.outcome p {
  font-size: 13px;
  color: var(--slate-400);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--slate-900);
  border-top: 1px solid var(--slate-800);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing p {
  font-size: 16px;
  color: var(--slate-400);
  line-height: 1.75;
  margin-bottom: 40px;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: var(--amber-500);
  letter-spacing: -0.01em;
}

/* ===== FOOTER ===== */
footer {
  background: var(--slate-950);
  border-top: 1px solid var(--slate-800);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}
.footer-tagline {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--slate-500);
}
.divider { color: var(--slate-700); }
.footer-copy {
  font-size: 11px;
  color: var(--slate-600);
  width: 100%;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--slate-800);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .segments { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 60px 24px 80px; }
  .section-inner { padding: 64px 24px; }
}
@media (max-width: 600px) {
  .segments { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
  .section-headline { margin-bottom: 40px; }
}