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

:root {
  --bg: #0A0A0F;
  --bg-card: #111118;
  --amber: #FF7A00;
  --amber-dim: rgba(255, 122, 0, 0.12);
  --amber-glow: rgba(255, 122, 0, 0.06);
  --fg: #F8F7F4;
  --fg-muted: #8A8A9A;
  --fg-dim: #4A4A5A;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 6px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at 30% 40%, rgba(255, 122, 0, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 122, 0, 0.03) 100%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-dim);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 999px;
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  color: var(--amber);
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-weight: 500;
}

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

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

.hero-headline {
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero-headline em {
  font-style: normal;
  color: var(--amber);
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.meta-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}

.meta-label {
  font-size: 11px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.heat-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18) 0%, rgba(255, 122, 0, 0.05) 40%, transparent 70%);
  filter: blur(1px);
}

.heat-lines {
  position: absolute;
  width: 400px;
  height: 500px;
}

.heat-lines svg { width: 100%; height: 100%; }

.funnel-stages {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.stage {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stage-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  white-space: nowrap;
  font-family: var(--font-body);
  width: 80px;
  text-align: right;
}

.stage-bar {
  width: 180px;
  height: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.stage-bar--active {
  background: var(--amber-dim);
  border-color: rgba(255, 122, 0, 0.3);
}

/* ── Outcomes ── */
.outcomes {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.outcomes-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 56px;
  font-family: var(--font-body);
}

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

.outcome-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.outcome-card:last-child { border-right: none; }

.outcome-card:hover { background: #161620; }

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

.outcome-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* ── How ── */
.how {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.how-header {
  margin-bottom: 72px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.how-header h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  max-width: 600px;
  color: var(--fg);
}

.steps-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 48px 0 0;
}

.step:first-child { padding-left: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg-dim);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.step-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-body p {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.step-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-details li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}

.step-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 10px;
}

.step-connector {
  width: 48px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
  margin-top: 30px;
}

/* ── Different ── */
.different {
  padding: 100px 0;
}

.different-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

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

.diff-left h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
  color: var(--fg);
}

.diff-left p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.diff-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.diff-row {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

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

.diff-row--header {
  background: var(--bg-card);
}

.diff-row--header span {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
}

.diff-row:not(.diff-row--header) span:first-child {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}

.diff-row:not(.diff-row--header) span:not(:first-child) {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 500;
  border-left: 1px solid var(--border);
}

.diff-check { color: #5EEAD4; }
.diff-x { color: #F87171; }
.diff-mid { color: var(--fg-muted); }

.diff-label { color: var(--fg) !important; }

/* ── Closing ── */
.closing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.closing-content {
  max-width: 680px;
  margin-bottom: 64px;
}

.closing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 20px;
}

.closing-content h2 {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.closing-stat {
  padding: 36px 32px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
}

.closing-stat:last-child { border-right: none; }

.cs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.cs-label {
  font-size: 13px;
  color: var(--fg-muted);
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

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

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--fg-dim);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .hero-visual { display: none; }

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

  .steps-track { flex-direction: column; gap: 40px; }
  .step-connector { width: 48px; height: 2px; transform: none; }

  .diff-grid { grid-template-columns: 1fr; gap: 48px; }
  .diff-table { font-size: 13px; }

  .closing-stats { grid-template-columns: 1fr; }
  .closing-stat { border-right: none; border-bottom: 1px solid var(--border); }

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

  .outcomes-inner, .how-inner, .different-inner, .closing-inner {
    padding: 0 24px;
  }

  .outcomes, .how, .different, .closing { padding: 72px 0; }
}

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { border-right: none; border-bottom: 1px solid var(--border); }
  .outcome-card:last-child { border-bottom: none; }

  .hero { padding: 60px 0 40px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .meta-divider { display: none; }

  .diff-row { grid-template-columns: 140px repeat(3, 1fr); }
}
