/* ═══════════════════════════════════════════
   DESIGN TOKENS — Cool White / Deep Indigo
   
   ALTERNATIVE THEMES (reserved for future):
   Option A: Warm white + violet/amber (cream feel)
   Option B: Pure white + bold violet gradients (high contrast)
   Option C: Dark hero sections, light content (split approach)
═══════════════════════════════════════════ */
:root {
  /* Base */
  --bg:          #F7F8FC;
  --bg-white:    #FFFFFF;
  --bg-subtle:   #EEF0F8;
  --bg-deep:     #E8EAF4;

  /* Dark sections */
  --dark:        #0C0E1C;
  --dark-2:      #111428;
  --dark-card:   #181B2E;
  --dark-border: rgba(255,255,255,0.08);

  /* Indigo brand */
  --ind:         #3B30CC;   /* deep indigo primary */
  --ind-2:       #5247E0;   /* indigo mid */
  --ind-light:   #EEF0FD;   /* indigo tint bg */
  --ind-glow:    rgba(59,48,204,0.12);

  /* Accent */
  --cyan:        #0BC5EA;
  --green:       #00C896;
  --amber:       #F6A623;
  --red-loss:    #E53E3E;

  /* Gradients */
  --grad:        linear-gradient(118deg, #3B30CC 0%, #0BC5EA 100%);
  --grad-btn:    linear-gradient(118deg, #3B30CC 0%, #5247E0 100%);
  --grad-soft:   linear-gradient(135deg, rgba(59,48,204,0.08) 0%, rgba(11,197,234,0.05) 100%);

  /* Text */
  --t1:  #0C0E1C;
  --t2:  #3D4466;
  --t3:  #7880A8;
  --t4:  #A8AECA;

  /* Borders */
  --border:      #DDE0EE;
  --border-hi:   #C8CCE4;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(12,14,28,0.06), 0 4px 12px rgba(12,14,28,0.06);
  --shadow-md:   0 4px 6px rgba(12,14,28,0.05), 0 12px 36px rgba(12,14,28,0.09);
  --shadow-lg:   0 8px 16px rgba(12,14,28,0.08), 0 24px 64px rgba(12,14,28,0.12);
  --shadow-ind:  0 0 32px rgba(59,48,204,0.18), 0 4px 16px rgba(0,0,0,0.12);

  /* Type */
  --ff-d: 'Bricolage Grotesque', sans-serif;
  --ff-b: 'DM Sans', sans-serif;

  /* Layout */
  --max: 1160px;
  --r:   12px;
  --r-lg:18px;
  --trans: all 200ms cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;-webkit-font-smoothing:antialiased;scroll-behavior:smooth}
body{font-family:var(--ff-b);background:var(--bg);color:var(--t1);overflow-x:hidden}
img,svg{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button,input,select{font-family:var(--ff-b)}
button{cursor:pointer;border:none;background:none}

/* ═══════════════════════════════════════════
   PROGRESS BAR
═══════════════════════════════════════════ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 62px;
  background: rgba(247,248,252,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transition: box-shadow 250ms ease;
}
.topbar.elevated { box-shadow: var(--shadow-sm); }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__mark {
  width: 32px; height: 32px; background: var(--grad-btn);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-size: 13px; font-weight: 800; color: #fff;
  box-shadow: 0 0 16px rgba(59,48,204,.35); flex-shrink: 0;
}
.nav__wordmark { font-family: var(--ff-d); font-size: 14px; font-weight: 700; color: var(--t1); }
.nav__wordmark span { color: var(--ind-2); }
.topbar__inner {
  width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.topbar__logo {
  display: flex; align-items: center; gap: 9px; flex-shrink: 0;
}
.topbar__mark {
  width: 30px; height: 30px;
  background: var(--grad-btn); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-size: 13px; font-weight: 800; color: #fff;
  box-shadow: 0 0 14px rgba(59,48,204,0.35);
  flex-shrink: 0;
}
.topbar__name {
  font-family: var(--ff-d); font-size: 14px; font-weight: 700; color: var(--t1);
}
.topbar__name span { color: var(--ind-2); }

.progress-steps {
  display: flex; align-items: center; gap: 0; flex: 1; max-width: 480px;
}
.ps {
  display: flex; align-items: center; gap: 9px; cursor: pointer;
  transition: opacity 180ms ease; padding: 4px 0;
}
.ps:hover { opacity: 0.75; }
.ps__num {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-size: 11px; font-weight: 800;
  background: var(--bg-deep); border: 1.5px solid var(--border-hi);
  color: var(--t3); transition: var(--trans); flex-shrink: 0;
}
.ps__label {
  font-size: 12px; font-weight: 600; color: var(--t3);
  letter-spacing: 0.03em; text-transform: uppercase;
  transition: color 180ms ease; white-space: nowrap;
}
.ps.active .ps__num {
  background: var(--ind); border-color: var(--ind);
  color: #fff; box-shadow: 0 0 12px rgba(59,48,204,0.35);
}
.ps.active .ps__label { color: var(--ind); font-weight: 700; }
.ps.done .ps__num { background: var(--green); border-color: var(--green); color: #fff; }
.ps.done .ps__label { color: var(--green); }
.ps-connector {
  flex: 1; height: 1px; background: var(--border); margin: 0 10px; max-width: 60px;
}

/* ═══════════════════════════════════════════
   STEP WRAPPER
═══════════════════════════════════════════ */
.step { display: none; }
.step.active { display: block; }

/* ═══════════════════════════════════════════
   STEP 1 — HERO + GATE
═══════════════════════════════════════════ */
.hero {
  padding-top: 62px;
  background: var(--bg-white);
  position: relative; overflow: hidden;
}

/* Subtle background decoration */
.hero__deco {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero__deco-circle-1 {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,48,204,0.06) 0%, transparent 65%);
  top: -200px; right: -100px;
}
.hero__deco-circle-2 {
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,197,234,0.05) 0%, transparent 65%);
  bottom: 0; left: -80px;
}
.hero__deco-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 70% 80% at 70% 30%, black 0%, transparent 100%);
}

.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 64px 28px 72px;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: center;
}

/* Left */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ind-light);
  border: 1px solid rgba(59,48,204,0.15);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 11px; font-weight: 700;
  color: var(--ind); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 500ms ease both;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ind); box-shadow: 0 0 6px var(--ind);
  animation: dotPulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes dotPulse {
  0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(1.7)}
}

.hero__h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; color: var(--t1);
  margin-bottom: 22px;
  animation: fadeUp 500ms ease 80ms both;
}
.hero__h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__h1 .italic { font-style: italic; }

.hero__sub {
  font-size: 17px; color: var(--t2); line-height: 1.7;
  max-width: 460px; margin-bottom: 36px;
  animation: fadeUp 500ms ease 160ms both;
}

.hero__stats {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
  animation: fadeUp 500ms ease 240ms both;
}
.hstat {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 16px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-sm);
}
.hstat__n {
  font-family: var(--ff-d); font-size: 19px; font-weight: 800; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hstat__l { font-size: 11px; color: var(--t3); font-weight: 500; white-space: nowrap; }

.hero__proof { animation: fadeUp 500ms ease 320ms both; }
.proof-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--t4); margin-bottom: 12px;
}
.proof-logos { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.proof-logo {
  font-family: var(--ff-d); font-size: 12px; font-weight: 700;
  color: var(--t3); padding: 5px 12px;
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: 6px;
}

/* Right — Gate form */
.gate {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
  animation: fadeUp 500ms ease 160ms both;
}
.gate::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--grad);
}
.gate__title {
  font-family: var(--ff-d); font-size: 20px; font-weight: 800;
  color: var(--t1); margin-bottom: 6px; line-height: 1.2;
}
.gate__sub { font-size: 14px; color: var(--t2); margin-bottom: 26px; line-height: 1.55; }

.ff { margin-bottom: 14px; }
.ff label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--t3); margin-bottom: 6px;
}
.ff input, .ff select {
  width: 100%;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
  font-size: 15px; color: var(--t1);
  outline: none; transition: var(--trans);
  -webkit-appearance: none; appearance: none;
}
.ff input::placeholder { color: var(--t4); }
.ff input:focus, .ff select:focus {
  border-color: var(--ind);
  box-shadow: 0 0 0 3px rgba(59,48,204,0.1);
  background: var(--bg-white);
}
.ff select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%237880A8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; cursor: pointer;
}
.ff select option { background: var(--bg-white); color: var(--t1); }

.btn-gate {
  width: 100%; height: 52px;
  background: var(--grad-btn); color: #fff;
  font-family: var(--ff-d); font-size: 15px; font-weight: 700;
  border-radius: 11px; margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow-ind); transition: var(--trans);
  position: relative; overflow: hidden;
}
.btn-gate:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(59,48,204,0.28), 0 6px 20px rgba(0,0,0,0.12); }
.btn-gate .arr { transition: transform 180ms ease; }
.btn-gate:hover .arr { transform: translateX(4px); }

.gate__trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 14px; font-size: 12px; color: var(--t4); flex-wrap: wrap;
}
.trust-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border-hi); }

/* Pain strip */
.pain-strip {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 72px 28px;
}
.pain-strip__inner { max-width: var(--max); margin: 0 auto; }
.pain-strip__hd { margin-bottom: 48px; }
.pain-strip__eye {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ind); margin-bottom: 12px; display: block;
}
.pain-strip__title {
  font-family: var(--ff-d); font-size: clamp(26px,3.2vw,42px);
  font-weight: 800; letter-spacing: -0.02em; color: var(--t1);
  line-height: 1.1; margin-bottom: 10px;
}
.pain-strip__sub { font-size: 16px; color: var(--t2); max-width: 480px; line-height: 1.65; }

.pain-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.pcard {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 26px;
  box-shadow: var(--shadow-sm); transition: var(--trans);
  position: relative; overflow: hidden;
}
.pcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity 200ms ease;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pcard:hover::before { opacity: 1; }
.pcard__stat {
  font-family: var(--ff-d); font-size: 54px; font-weight: 800; line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px; display: block;
}
.pcard__title { font-family: var(--ff-d); font-size: 15px; font-weight: 700; color: var(--t1); margin-bottom: 6px; }
.pcard__desc { font-size: 13.5px; color: var(--t2); line-height: 1.6; }

.pain-strip__footer {
  text-align: center; margin-top: 52px; padding-top: 44px;
  border-top: 1px solid var(--border);
}
.pain-strip__quote {
  font-size: 17px; color: var(--t2); font-style: italic;
  max-width: 500px; margin: 0 auto 28px; line-height: 1.65;
}

/* ═══════════════════════════════════════════
   BTN PRIMARY (shared)
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  height: 50px; padding: 0 28px;
  background: var(--grad-btn); color: #fff;
  font-family: var(--ff-d); font-size: 15px; font-weight: 700;
  border-radius: 11px; border: none; cursor: pointer;
  box-shadow: var(--shadow-ind); transition: var(--trans);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(59,48,204,0.28), 0 6px 20px rgba(0,0,0,0.1); }
.btn-primary .arr { transition: transform 180ms ease; }
.btn-primary:hover .arr { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  height: 50px; padding: 0 24px;
  background: transparent; color: var(--t2);
  font-family: var(--ff-d); font-size: 15px; font-weight: 600;
  border-radius: 11px; border: 1.5px solid var(--border);
  cursor: pointer; transition: var(--trans); white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--ind); color: var(--ind); background: var(--ind-light); }

/* ═══════════════════════════════════════════
   STEP 2 — DEMO (6-STAGE JOURNEY)
═══════════════════════════════════════════ */
.s2 { background: var(--bg); }

/* Personalization banner */
.s2__banner {
  background: var(--ind-light); border-bottom: 1px solid rgba(59,48,204,0.12);
  padding: 12px 28px; text-align: center;
  font-size: 14px; color: var(--t2); display: none;
}
.s2__banner strong { color: var(--t1); }
.s2__banner .hl { color: var(--ind); font-weight: 600; }

/* Section header */
.s2__header {
  max-width: var(--max); margin: 0 auto;
  padding: 64px 28px 56px; text-align: center;
}
.s2__eye {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ind); margin-bottom: 12px; display: block;
}
.s2__title {
  font-family: var(--ff-d); font-size: clamp(28px,3.5vw,46px);
  font-weight: 800; letter-spacing: -0.02em; color: var(--t1);
  line-height: 1.08; margin-bottom: 14px;
}
.s2__title .grad {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.s2__sub { font-size: 16px; color: var(--t2); max-width: 540px; margin: 0 auto; line-height: 1.65; }

/* ─── JOURNEY COMPONENT ─── */
/*
 * ALTERNATIVE PRESENTATION OPTIONS (reserved for future A/B testing):
 *
 * Option A — Animated Timeline (auto-advances, no clicks needed):
 *   Replace stage-selector with a horizontal progress bar that auto-advances
 *   every 6 seconds. Passive viewing experience. Less control but more narrative.
 *   Good for: audiences who won't engage with interactive elements.
 *
 * Option B — Side-by-side phone + description (no active selection):
 *   Phone left, stage descriptions right as a vertical scroll list.
 *   Phone updates as user scrolls. Uses IntersectionObserver.
 *   Good for: longer-form scrolling experience.
 *
 * Option C — Visual flowchart with phone mockups at key touchpoints:
 *   SVG flowchart with 6 nodes, each node expands to show phone mockup on click.
 *   More visual, less text. Good for: visual-dominant audiences.
 *
 * Current implementation: Interactive click-to-select with auto-advance fallback.
 */

.journey {
  max-width: var(--max); margin: 0 auto;
  padding: 0 28px 80px;
  display: grid; grid-template-columns: 340px 1fr;
  gap: 32px; align-items: start;
}

/* Stage selector — left column */
.stage-list { display: flex; flex-direction: column; gap: 6px; }

.stage-item {
  background: var(--bg-white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 16px 18px;
  cursor: pointer; transition: var(--trans);
  display: flex; align-items: flex-start; gap: 14px;
  position: relative; overflow: hidden;
}
.stage-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--grad); opacity: 0;
  transition: opacity 180ms ease;
}
.stage-item:hover { border-color: var(--border-hi); box-shadow: var(--shadow-sm); }
.stage-item.active {
  border-color: var(--ind); background: var(--ind-light);
  box-shadow: 0 0 0 3px rgba(59,48,204,0.08), var(--shadow-sm);
}
.stage-item.active::before { opacity: 1; }

.stage-item__num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-subtle); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-size: 12px; font-weight: 800; color: var(--t3);
  transition: var(--trans);
}
.stage-item.active .stage-item__num {
  background: var(--ind); border-color: var(--ind);
  color: #fff; box-shadow: 0 0 10px rgba(59,48,204,0.35);
}
.stage-item.done .stage-item__num {
  background: var(--green); border-color: var(--green); color: #fff;
}

.stage-item__body { flex: 1; min-width: 0; }
.stage-item__header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 3px;
}
.stage-item__icon { font-size: 14px; }
.stage-item__name {
  font-family: var(--ff-d); font-size: 14px; font-weight: 700; color: var(--t1);
  transition: color 180ms ease;
}
.stage-item.active .stage-item__name { color: var(--ind); }
.stage-item__time {
  font-size: 11px; color: var(--t4); margin-left: auto;
  white-space: nowrap; font-weight: 500;
}
.stage-item__outcome {
  font-size: 12.5px; color: var(--t3); line-height: 1.4;
}
.stage-item.active .stage-item__outcome { color: var(--t2); }

/* Auto-advance progress bar on active item */
.stage-item__progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--grad); width: 0%; opacity: 0;
  transition: opacity 200ms ease;
}
.stage-item.active .stage-item__progress {
  opacity: 1;
  animation: stageProgress 7s linear forwards;
}
@keyframes stageProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Right column — phone + copy */
.stage-display {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr 220px;
  gap: 32px; align-items: start;
  min-height: 540px;
}

.stage-copy {}
.stage-copy__eye {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ind); margin-bottom: 10px; display: block;
}
.stage-copy__title {
  font-family: var(--ff-d); font-size: clamp(20px,2.2vw,28px);
  font-weight: 800; letter-spacing: -0.015em; color: var(--t1);
  line-height: 1.15; margin-bottom: 14px;
}
.stage-copy__desc {
  font-size: 15px; color: var(--t2); line-height: 1.68; margin-bottom: 24px;
}
.stage-copy__outcomes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.outcome {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--t2); line-height: 1.5;
}
.outcome__ck {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--green); margin-top: 1px;
}
.outcome strong { color: var(--t1); }

.stage-copy__impact {
  background: var(--ind-light); border: 1px solid rgba(59,48,204,0.12);
  border-radius: 10px; padding: 14px 16px;
  font-size: 14px; color: var(--ind);
  display: flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.stage-copy__impact strong { font-weight: 700; }

/* Stage 1 dual-capture toggle */
.capture-toggle {
  display: flex; gap: 6px; margin-bottom: 20px;
}
.ctab {
  flex: 1; padding: 8px 12px;
  background: var(--bg-subtle); border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--t3);
  cursor: pointer; transition: var(--trans); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.ctab:hover { border-color: var(--ind); color: var(--ind); }
.ctab.active {
  background: var(--ind-light); border-color: var(--ind);
  color: var(--ind); font-weight: 700;
}

/* Phone mockup — compact */
.phone-wrap {
  display: flex; justify-content: center;
  position: relative; padding-top: 8px;
}
.phone-glow {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,48,204,0.12) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.phone {
  width: 200px; background: #0B0D1C; border-radius: 30px; padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 30px rgba(59,48,204,0.15),
    0 24px 60px rgba(0,0,0,0.35);
  animation: phoneFloat 5s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes phoneFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.phone__notch {
  width: 56px; height: 14px; background: #06080F;
  border-radius: 0 0 8px 8px; margin: 0 auto 8px;
}
.phone__screen {
  background: #06080F; border-radius: 20px; overflow: hidden;
  height: 360px; display: flex; flex-direction: column;
}
.phone__hd {
  background: #101628; padding: 9px 11px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04); flex-shrink: 0;
}
.phone__ava {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-size: 10px; font-weight: 800; color: #fff;
  box-shadow: 0 0 8px rgba(59,48,204,0.45); flex-shrink: 0;
}
.phone__contact { flex: 1; }
.phone__cname { font-size: 11px; font-weight: 600; color: #E8E6F8; line-height: 1.2; }
.phone__cstatus {
  font-size: 9px; color: var(--green);
  display: flex; align-items: center; gap: 3px;
}
.live-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 4px var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}
.phone__msgs {
  flex: 1; overflow-y: auto; padding: 10px 8px;
  display: flex; flex-direction: column; gap: 6px;
  scrollbar-width: none;
}
.phone__msgs::-webkit-scrollbar { display: none; }
.cmsg {
  max-width: 84%; padding: 7px 10px; border-radius: 11px;
  font-size: 10.5px; line-height: 1.4;
  animation: msgPop 250ms cubic-bezier(0.34,1.4,0.64,1) forwards;
}
@keyframes msgPop {
  from{opacity:0;transform:scale(0.88) translateY(5px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}
.cmsg--bot {
  background: #1A1E32; color: #C4C2E0;
  align-self: flex-start; border-bottom-left-radius: 3px;
}
.cmsg--usr {
  background: linear-gradient(135deg,#3B30CC,#5247E0);
  color: #fff; align-self: flex-end; border-bottom-right-radius: 3px;
}
.cmsg--sys {
  align-self: center; font-size: 9.5px;
  color: #3A3E58; font-style: italic; padding: 2px 0;
}
.typing-ind {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 7px 11px; background: #1A1E32;
  border-radius: 11px 11px 11px 3px; align-self: flex-start;
}
.typing-ind span {
  width: 4px; height: 4px; border-radius: 50%; background: #4A4E70;
  animation: typB 1.2s ease-in-out infinite;
}
.typing-ind span:nth-child(2){animation-delay:.15s}
.typing-ind span:nth-child(3){animation-delay:.3s}
@keyframes typB {
  0%,60%,100%{transform:translateY(0);opacity:.4}
  30%{transform:translateY(-4px);opacity:1}
}

/* ─── LIGHT → DARK TRANSITION ─── */
.light-to-dark {
  height: 80px;
  background: linear-gradient(to bottom, var(--bg), var(--dark));
}

/* ═══════════════════════════════════════════
   CALCULATOR — DARK SECTION
═══════════════════════════════════════════ */
.calc-section {
  background: var(--dark); padding: 72px 28px 80px;
  position: relative; overflow: hidden;
}
.calc-section__glow {
  position: absolute; width: 700px; height: 400px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(59,48,204,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.calc-section__inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.calc-hd { text-align: center; margin-bottom: 48px; }
.calc-hd__eye {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ind-2); margin-bottom: 12px; display: block;
}
.calc-hd__title {
  font-family: var(--ff-d); font-size: clamp(26px,3.2vw,42px);
  font-weight: 800; letter-spacing: -0.02em; color: #fff;
  line-height: 1.1; margin-bottom: 10px;
}
.calc-hd__title .grad {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.calc-hd__sub { font-size: 16px; color: var(--dark-border); max-width: 460px; margin: 0 auto; line-height: 1.6; }
.calc-hd__sub { color: rgba(255,255,255,0.45); }

.calc-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 20px; padding: 44px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(59,48,204,0.08);
  max-width: 860px; margin: 0 auto;
}
.calc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.calc-inputs { display: flex; flex-direction: column; gap: 28px; }
.ci label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 10px;
}
.ci__val { color: var(--ind-2); font-weight: 700; }
.ci__slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; background: rgba(255,255,255,0.1);
  border-radius: 2px; outline: none; cursor: pointer;
}
.ci__slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--ind-2);
  box-shadow: 0 0 0 4px rgba(82,71,224,0.2), 0 2px 6px rgba(59,48,204,0.4);
  cursor: pointer; transition: transform 150ms ease;
}
.ci__slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.ci__input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 11px 14px; font-size: 15px; font-weight: 600; color: #fff;
  outline: none; transition: var(--trans);
}
.ci__input:focus { border-color: var(--ind-2); box-shadow: 0 0 0 3px rgba(82,71,224,0.15); }
.dw { position: relative; }
.dw::before {
  content: '$'; position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%); font-size: 15px; font-weight: 700;
  color: rgba(255,255,255,0.3);
}
.dw .ci__input { padding-left: 28px; }

/* Calc output */
.calc-out {
  background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
}
.co-main { text-align: center; margin-bottom: 24px; }
.co-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
.co-num {
  font-family: var(--ff-d); font-size: 54px; font-weight: 800; line-height: 1;
  color: #FC8181; display: block; margin-bottom: 5px;
}
.co-per { font-size: 13px; color: rgba(255,255,255,0.4); }
.co-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}
.co-m { text-align: center; padding: 0 8px; }
.co-m + .co-m { border-left: 1px solid rgba(255,255,255,0.06); }
.co-m__v {
  font-family: var(--ff-d); font-size: 20px; font-weight: 800;
  color: #fff; display: block; margin-bottom: 3px;
}
.co-m__l { font-size: 10.5px; color: rgba(255,255,255,0.35); line-height: 1.4; }

.co-recovery {
  background: rgba(0,200,150,0.08); border: 1px solid rgba(0,200,150,0.18);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 12px;
}
.co-recovery__t { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.co-recovery__t strong { color: #4FD1C5; }
.co-recovery__a { font-family: var(--ff-d); font-size: 16px; font-weight: 800; color: #4FD1C5; margin-top: 4px; display: block; }

.co-tier {
  background: rgba(59,48,204,0.12); border: 1px solid rgba(59,48,204,0.2);
  border-radius: 10px; padding: 10px 14px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.co-tier strong { color: var(--ind-2); }

.calc-cta { text-align: center; margin-top: 40px; }
.calc-cta-note { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.35); font-style: italic; }
.calc-cta-note a { color: var(--ind-2); text-decoration: underline; }

/* ═══════════════════════════════════════════
   STEP 3 — TIERS + ACTIVATION
═══════════════════════════════════════════ */
.s3 {}

.s3__roi-banner {
  background: rgba(246,166,35,0.08); border-bottom: 1px solid rgba(246,166,35,0.2);
  padding: 12px 28px; text-align: center;
  font-size: 14px; color: var(--t2); display: none;
}
.s3__roi-banner strong { color: var(--amber); }

/* Tiers */
.tiers-section {
  background: var(--bg); padding: 72px 28px;
}
.tiers-inner { max-width: var(--max); margin: 0 auto; }
.tiers-hd { text-align: center; margin-bottom: 48px; }
.tiers-hd__eye {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ind); margin-bottom: 12px; display: block;
}
.tiers-hd__title {
  font-family: var(--ff-d); font-size: clamp(26px,3.2vw,42px);
  font-weight: 800; letter-spacing: -0.02em; color: var(--t1);
  line-height: 1.1; margin-bottom: 10px;
}
.tiers-hd__sub { font-size: 16px; color: var(--t2); max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* 3-column grid for Core / Growth / Scale */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto 20px;
}
/* Intelligence spans full width below as enterprise tier */
.tiers-grid--intel {
  max-width: var(--max);
  margin: 0 auto;
}

.tc {
  background: var(--bg-white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--trans);
  display: flex; flex-direction: column;
}
.tc:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tc--rec {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,200,150,0.12), var(--shadow-md);
}

.tc__hd {
  padding: 24px 24px 20px;
  display: flex; flex-direction: column; gap: 0;
}
/* Core — green gradient */
.tc__hd--core  { background: linear-gradient(135deg, #059669 0%, #00C896 100%); }
/* Growth — indigo mid */
.tc__hd--grow  { background: linear-gradient(135deg, #3B30CC 0%, #5247E0 100%); }
/* Scale — deep indigo */
.tc__hd--scale { background: linear-gradient(135deg, #201880 0%, #3B30CC 100%); }
/* Intel — darkest for enterprise feel */
.tc__hd--intel { background: linear-gradient(135deg, #0D0A40 0%, #201880 100%); }

/* Core green glow on rec badge */
.tc__hd--core .tc__rec-badge { background: rgba(255,255,255,0.22); }

.tc__rec-badge {
  display: none; font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: rgba(255,255,255,0.18); color: #fff;
  padding: 3px 10px; border-radius: 100px;
  backdrop-filter: blur(4px); margin-bottom: 10px; width: fit-content;
}
.tc--rec .tc__rec-badge { display: block; }

/* Price above name in column layout — more visual impact */
.tc__price-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 8px;
  margin-bottom: 6px;
}
.tc__amt { font-family: var(--ff-d); font-size: 38px; font-weight: 800; color: #fff; display: block; line-height: 1; }
.tc__per { font-size: 12px; color: rgba(255,255,255,0.55); display: block; padding-bottom: 5px; }
.tc__name { font-family: var(--ff-d); font-size: 16px; font-weight: 800; color: rgba(255,255,255,0.9); margin-bottom: 4px; letter-spacing: 0.02em; text-transform: uppercase; }
.tc__tag { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.35; }

/* Body takes flex: 1 so footer always anchors to bottom */
.tc__body { padding: 20px 24px; border-bottom: 1px solid var(--border); flex: 1; }
.tc__feat-head {
  font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ind); margin-bottom: 14px;
}
/* Single column features in 3-col layout — more readable */
.tc__feats { display: flex; flex-direction: column; gap: 8px; }
.tf {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--t2); line-height: 1.4;
}
.tf__ck { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; font-size: 12px; }

/* Core card — green checkmarks */
.tc__hd--core ~ .tc__body .tf__ck { color: #059669; }

.tc__foot {
  padding: 18px 24px; background: var(--bg-subtle);
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.tc__who { font-size: 12.5px; color: var(--t3); font-style: italic; line-height: 1.5; }

/* Intel card footer — horizontal since it's full width */
.tc--intel .tc__foot {
  flex-direction: row; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.tc--intel .tc__who { max-width: 560px; }

.btn-tier {
  width: 100%;
  height: 40px; padding: 0 18px;
  background: var(--grad-btn); color: #fff;
  font-family: var(--ff-d); font-size: 13px; font-weight: 700;
  border-radius: 9px; border: none; cursor: pointer;
  box-shadow: 0 0 16px rgba(59,48,204,0.2);
  transition: var(--trans); white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-tier:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(59,48,204,0.3); }

/* Core button — green */
.btn-tier--green {
  background: linear-gradient(135deg, #059669, #00C896);
  box-shadow: 0 0 16px rgba(0,200,150,0.25);
}
.btn-tier--green:hover { box-shadow: 0 0 28px rgba(0,200,150,0.4); }

.btn-tier--out {
  background: transparent; border: 1.5px solid rgba(59,48,204,0.3); color: var(--ind-2);
  box-shadow: none; width: auto;
}
.btn-tier--out:hover { background: var(--ind-light); border-color: var(--ind); }

/* Trust anchors */
.trust-section {
  background: var(--dark); padding: 56px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
}
.ti { text-align: center; }
.ti__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(59,48,204,0.12); border: 1px solid rgba(59,48,204,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin: 0 auto 12px;
}
.ti__title { font-family: var(--ff-d); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ti__desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.55; }

/* Activation form */
.activate-section { background: var(--dark); padding: 72px 28px; }
.activate-wrap { max-width: 520px; margin: 0 auto; }
.activate-card {
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px; padding: 44px 40px;
  box-shadow: 0 0 0 1px rgba(59,48,204,0.1), 0 32px 80px rgba(0,0,0,0.45);
  position: relative; overflow: hidden;
}
.activate-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad);
}
.activate-card__glow {
  position: absolute; bottom: -60px; right: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(59,48,204,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.activate-card__title {
  font-family: var(--ff-d); font-size: 26px; font-weight: 800;
  color: #fff; text-align: center; margin-bottom: 6px;
}
.activate-card__sub {
  font-size: 14px; color: rgba(255,255,255,0.45);
  text-align: center; margin-bottom: 28px; line-height: 1.5;
}
.plan-row {
  background: rgba(59,48,204,0.1); border: 1px solid rgba(59,48,204,0.22);
  border-radius: 10px; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.plan-row__lbl { font-size: 11px; font-weight: 700; color: var(--ind-2); text-transform: uppercase; letter-spacing: 0.06em; }
.plan-row__name { font-family: var(--ff-d); font-size: 15px; font-weight: 800; color: #fff; }
.plan-row__change { font-size: 12px; color: var(--ind-2); cursor: pointer; text-decoration: underline; }

.af { display: flex; flex-direction: column; gap: 12px; }
.af__input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 13px 16px; font-size: 15px; color: #fff; outline: none;
  transition: var(--trans);
}
.af__input::placeholder { color: rgba(255,255,255,0.25); }
.af__input:focus { border-color: var(--ind-2); box-shadow: 0 0 0 3px rgba(59,48,204,0.15); }

.btn-activate {
  width: 100%; height: 56px; background: var(--grad-btn); color: #fff;
  font-family: var(--ff-d); font-size: 16px; font-weight: 800;
  border-radius: 12px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 0 40px rgba(59,48,204,0.35), 0 4px 16px rgba(0,0,0,0.3);
  transition: var(--trans); margin-top: 6px;
}
.btn-activate:hover { transform: translateY(-2px); box-shadow: 0 0 56px rgba(59,48,204,0.5), 0 8px 24px rgba(0,0,0,0.3); }

.activate-trust {
  text-align: center; margin-top: 16px; font-size: 12px;
  color: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}

/* Audit band */
.audit-band {
  background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 28px; text-align: center; position: relative; overflow: hidden;
}
.audit-band__glow {
  position: absolute; width: 600px; height: 300px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(59,48,204,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.audit-band__inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.audit-band__eye {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ind-2); margin-bottom: 14px; display: block;
}
.audit-band__title {
  font-family: var(--ff-d); font-size: clamp(26px,3.2vw,40px);
  font-weight: 800; letter-spacing: -0.02em;
  color: #fff; line-height: 1.1; margin-bottom: 14px;
}
.audit-band__title .grad {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.audit-band__sub { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 32px; }
.audit-band__note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.25); font-style: italic; }

/* Footer */
.footer {
  background: #050710; border-top: 1px solid rgba(255,255,255,0.05);
  padding: 56px 28px 32px;
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.footer__mark {
  width: 26px; height: 26px; background: var(--grad-btn); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-size: 11px; font-weight: 800; color: #fff;
}
.footer__name { font-family: var(--ff-d); font-size: 12px; font-weight: 700; color: #fff; }
.footer__tag { font-size: 12px; color: rgba(255,255,255,0.2); line-height: 1.6; max-width: 220px; margin-bottom: 12px; }
.footer__copy { font-size: 11px; color: rgba(255,255,255,0.1); }
.footer__col-head {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__link { font-size: 13px; color: rgba(255,255,255,0.2); transition: color 150ms ease; }
.footer__link:hover { color: #fff; }
.footer__btm {
  max-width: var(--max); margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer__btm-t { font-size: 11px; color: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════
   SUCCESS MODAL
═══════════════════════════════════════════ */
.modal {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal.open { display: flex; }
.modal-box {
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px; padding: 52px 44px;
  max-width: 420px; width: 100%; text-align: center;
  box-shadow: 0 0 0 1px rgba(59,48,204,0.15), 0 40px 100px rgba(0,0,0,0.5);
  position: relative; overflow: hidden;
  animation: modalPop 350ms cubic-bezier(0.34,1.4,0.64,1) forwards;
}
@keyframes modalPop {
  from{opacity:0;transform:scale(0.9) translateY(16px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}
.modal-box::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad); }
.modal-box__icon { font-size: 60px; margin-bottom: 18px; }
.modal-box__title { font-family: var(--ff-d); font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.modal-box__sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 28px; }

/* ═══════════════════════════════════════════
   ANIMATIONS + REVEAL
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}
.reveal { opacity:0; transform:translateY(20px); transition:opacity 550ms ease, transform 550ms ease; }
.reveal.vis { opacity:1; transform:translateY(0); }
.rd1{transition-delay:80ms}.rd2{transition-delay:160ms}
.rd3{transition-delay:240ms}.rd4{transition-delay:320ms}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1024px){
  .hero__inner{grid-template-columns:1fr;gap:44px}
  .hero__h1,.hero__sub,.hero__stats,.hero__proof{max-width:100%}
  .journey{grid-template-columns:1fr;gap:24px}
  .stage-list{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  /* Hide timeline line on grid layout */
  .stage-list::before{display:none}
  .stage-display{grid-template-columns:1fr}
  .phone-wrap{display:none}
  /* Show mobile phone below stage copy */
  .phone-wrap-mobile{display:flex}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .footer__inner{grid-template-columns:1fr 1fr}
  .footer__brand{grid-column:1/-1}
  .progress-steps{display:none}
}
@media(max-width:768px){
  .hero__inner{padding:48px 20px 56px}
  .pain-cards{grid-template-columns:1fr}
  .calc-grid{grid-template-columns:1fr}
  .calc-card{padding:28px 20px}
  .tiers-grid{grid-template-columns:1fr 1fr}
  .tc--intel{grid-column:1/-1}
  .tc__feats{flex-direction:column}
  .tc--intel .tc__foot{flex-direction:column;align-items:flex-start}
  .trust-grid{grid-template-columns:1fr 1fr}
  .activate-card{padding:32px 24px}
  .footer__inner{grid-template-columns:1fr;gap:32px}
  .footer__btm{flex-direction:column;gap:8px;text-align:center}
  .stage-list{grid-template-columns:1fr}
  .stage-display{padding:24px 20px}
  .co-metrics{grid-template-columns:1fr;gap:12px}
  .co-m+.co-m{border-left:none;border-top:1px solid rgba(255,255,255,0.06);padding-top:12px}
}
@media(max-width:480px){
  .trust-grid{grid-template-columns:1fr}
  .tiers-grid{grid-template-columns:1fr}
  .tc--intel{grid-column:auto}
  .hero__stats{gap:8px}
  .hero__cta{flex-direction:column;align-items:flex-start}
}
@media(prefers-reduced-motion:reduce){
  .phone{animation:none}
  .stage-item__progress{animation:none;width:100%}
}

/* ═══════════════════════════════════════════
   IMPROVEMENT 1 — SVG ICON SYSTEM
   All icons defined as CSS mask-image patterns
   so they scale perfectly and inherit color
═══════════════════════════════════════════ */
.icon {
  display: inline-block; flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.icon-sm  { width: 16px; height: 16px; }
.icon-md  { width: 20px; height: 20px; }
.icon-lg  { width: 24px; height: 24px; }
.icon-xl  { width: 32px; height: 32px; }

/* Stage icons */
.icon-capture   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.72A2 2 0 012 .82h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.72A2 2 0 012 .82h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E"); }
.icon-confirm   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); }
.icon-convert   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2' ry='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2' ry='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E"); }
.icon-review    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E"); }
.icon-retain    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='17 1 21 5 17 9'/%3E%3Cpath d='M3 11V9a4 4 0 014-4h14'/%3E%3Cpolyline points='7 23 3 19 7 15'/%3E%3Cpath d='M21 13v2a4 4 0 01-4 4H3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='17 1 21 5 17 9'/%3E%3Cpath d='M3 11V9a4 4 0 014-4h14'/%3E%3Cpolyline points='7 23 3 19 7 15'/%3E%3Cpath d='M21 13v2a4 4 0 01-4 4H3'/%3E%3C/svg%3E"); }
.icon-amplify   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cline x1='8.59' y1='13.51' x2='15.42' y2='17.49'/%3E%3Cline x1='15.41' y1='6.51' x2='8.59' y2='10.49'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cline x1='8.59' y1='13.51' x2='15.42' y2='17.49'/%3E%3Cline x1='15.41' y1='6.51' x2='8.59' y2='10.49'/%3E%3C/svg%3E"); }

/* Trust / UI icons */
.icon-calendar  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E"); }
.icon-unlock    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 019.9-1'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 019.9-1'/%3E%3C/svg%3E"); }
.icon-database  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3C/svg%3E"); }
.icon-barchart  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='20' x2='18' y2='10'/%3E%3Cline x1='12' y1='20' x2='12' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='14'/%3E%3Cline x1='2' y1='20' x2='22' y2='20'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='20' x2='18' y2='10'/%3E%3Cline x1='12' y1='20' x2='12' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='14'/%3E%3Cline x1='2' y1='20' x2='22' y2='20'/%3E%3C/svg%3E"); }
.icon-lock      { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E"); }
.icon-zap       { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); }
.icon-rocket    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 00-2.91-.09z'/%3E%3Cpath d='M12 15l-3-3a22 22 0 012-3.95A12.88 12.88 0 0122 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 01-4 2z'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0M15 9v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 00-2.91-.09z'/%3E%3Cpath d='M12 15l-3-3a22 22 0 012-3.95A12.88 12.88 0 0122 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 01-4 2z'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0M15 9v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'/%3E%3C/svg%3E"); }
.icon-phone     { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.72A2 2 0 012 .82h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.81a19.79 19.79 0 01-3.07-8.72A2 2 0 012 .82h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L6.09 8.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E"); }
.icon-chat      { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z'/%3E%3C/svg%3E"); }
.icon-lightbulb { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='9' y1='18' x2='15' y2='18'/%3E%3Cline x1='10' y1='22' x2='14' y2='22'/%3E%3Cpath d='M15.09 14c.18-.98.65-1.74 1.41-2.5A4.65 4.65 0 0018 8 6 6 0 006 8c0 1 .23 2.23 1.5 3.5A4.61 4.61 0 018.91 14'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='9' y1='18' x2='15' y2='18'/%3E%3Cline x1='10' y1='22' x2='14' y2='22'/%3E%3Cpath d='M15.09 14c.18-.98.65-1.74 1.41-2.5A4.65 4.65 0 0018 8 6 6 0 006 8c0 1 .23 2.23 1.5 3.5A4.61 4.61 0 018.91 14'/%3E%3C/svg%3E"); }

/* Stage item icon container — now uses SVG icons */
.stage-item__icon-wrap {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--ind-light);
  border: 1px solid rgba(59,48,204,0.15);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.stage-item.active .stage-item__icon-wrap {
  background: rgba(59,48,204,0.2);
  border-color: rgba(59,48,204,0.3);
}
.stage-item.active .stage-item__icon-wrap .icon { background-color: var(--ind); }
.stage-item.done .stage-item__icon-wrap { background: rgba(0,200,150,0.1); border-color: rgba(0,200,150,0.2); }
.stage-item.done .stage-item__icon-wrap .icon { background-color: var(--green); }

/* Trust icon container */
.ti__icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(59,48,204,0.12);
  border: 1px solid rgba(59,48,204,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.ti__icon-wrap .icon { background-color: var(--ind-2); }

/* ═══════════════════════════════════════════
   IMPROVEMENT 2 — STAGE SELECTOR VISUAL WEIGHT
   Timeline connector line between stages,
   stronger active state, better progression feel
═══════════════════════════════════════════ */
.stage-list {
  position: relative;
}
/* Vertical timeline line */
.stage-list::before {
  content: '';
  position: absolute;
  left: 15px; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--border), var(--ind-light), var(--border));
  z-index: 0;
}
.stage-item {
  position: relative; z-index: 1;
}
/* Stronger active state */
.stage-item.active {
  border-color: var(--ind);
  background: linear-gradient(to right, var(--ind-light), var(--bg-white));
  box-shadow: 0 0 0 3px rgba(59,48,204,0.08), var(--shadow-sm);
}
.stage-item.done {
  background: rgba(0,200,150,0.04);
  border-color: rgba(0,200,150,0.2);
}

/* ═══════════════════════════════════════════
   IMPROVEMENT 3 — TYPOGRAPHY HIERARCHY
   Stage copy title, body, impact all clearly
   differentiated in weight and size
═══════════════════════════════════════════ */
.stage-copy__title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: 8px;
}
.stage-copy__stage-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ind); margin-bottom: 14px; display: block;
}
.stage-copy__desc {
  font-size: 15px; color: var(--t2); line-height: 1.68;
  margin-bottom: 22px;
  border-left: 2px solid var(--ind-light);
  padding-left: 14px;
}
.stage-copy__outcomes {
  margin-bottom: 20px;
}
.stage-copy__impact {
  background: linear-gradient(to right, var(--ind-light), rgba(59,48,204,0.04));
  border: 1px solid rgba(59,48,204,0.14);
  border-left: 3px solid var(--ind);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  font-size: 14px; color: var(--t1);
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; line-height: 1.45;
}
.stage-copy__impact .icon { background-color: var(--ind); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   IMPROVEMENT 4 — MOBILE PHONE MOCKUP
   Show condensed phone on mobile instead of hiding
═══════════════════════════════════════════ */
.phone-wrap-mobile {
  display: none;
  justify-content: center;
  margin-top: 24px;
  padding: 16px;
  background: var(--bg-subtle);
  border-radius: var(--r);
  border: 1px solid var(--border);
}
/* Mobile phone is same component, smaller scale */
.phone-wrap-mobile .phone {
  transform: scale(0.85);
  transform-origin: top center;
}

/* ═══════════════════════════════════════════
   IMPROVEMENT 5 — NANOBANANA IMAGE SYSTEM
   Clearly marked placeholders with size specs,
   prompt references, and fallback styling.
   Drop images directly into /assets/images/
   and update src attributes.
═══════════════════════════════════════════ */

/*
 * ┌─────────────────────────────────────────────┐
 * │  NANOBANANA 2 — IMAGE PLACEMENT GUIDE       │
 * │                                             │
 * │  NB-01: Hero background decoration         │
 * │  Size: 1200×800px                           │
 * │  Prompt: Abstract indigo and cyan data      │
 * │  stream visualization. Cool white/grey      │
 * │  background. Flowing lines and nodes        │
 * │  suggesting intelligence and connectivity.  │
 * │  No text. Soft, professional, not garish.   │
 * │  Place: Replace .hero__deco-circle-1        │
 * │                                             │
 * │  NB-02: Hero right column background        │
 * │  Size: 500×700px                            │
 * │  Prompt: Business owner reviewing a         │
 * │  performance dashboard on laptop. Natural   │
 * │  lighting, warm but professional. HVAC or   │
 * │  home services context. Real-feeling, not   │
 * │  stock-photo posed. Indigo UI visible on    │
 * │  screen.                                    │
 * │  Place: Behind or beside the gate form      │
 * │                                             │
 * │  NB-03: Journey section background          │
 * │  Size: 1440×600px                           │
 * │  Prompt: Very subtle cool grey mesh or      │
 * │  grid texture. Near-transparent. Used as    │
 * │  section bg overlay at 6-8% opacity only.   │
 * │  No focal point. Pure texture.              │
 * │  Place: .s2 section background              │
 * │                                             │
 * │  NB-04: Calculator dark section glow        │
 * │  Size: 1200×600px                           │
 * │  Prompt: Deep dark navy background with     │
 * │  soft indigo light rays emanating from      │
 * │  center. Suggests data processing and       │
 * │  intelligence. No text, no UI chrome.       │
 * │  Very subtle — used as bg overlay.          │
 * │  Place: .calc-section background            │
 * │                                             │
 * │  NB-05: Step 3 trust section accent         │
 * │  Size: 800×400px                            │
 * │  Prompt: Abstract dark visualization of     │
 * │  connected nodes and data points. Deep      │
 * │  navy/indigo. Suggests a closed-loop        │
 * │  system. No text.                           │
 * │  Place: .trust-section background           │
 * │                                             │
 * │  NB-06: Modal success illustration          │
 * │  Size: 300×200px                            │
 * │  Prompt: Minimal abstract celebration       │
 * │  illustration. Indigo and cyan confetti     │
 * │  or light burst. Clean, not clipart.        │
 * │  Place: .modal-box above title              │
 * └─────────────────────────────────────────────┘
 */

/* Hero image placeholder — NB-02 */
.hero__img-placeholder {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.hero__img {
  /* NB-02: Replace src with NanoBanana output */
  /* <img src="assets/images/nb-02-hero-owner.jpg" alt="" class="hero__img-asset"> */
  display: none; /* Remove when image is ready */
}
.hero__img-asset {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.07; /* Subtle background image */
}

/* Journey bg placeholder — NB-03 */
.journey-bg {
  /* NB-03: Add as background-image on .s2 when ready */
  /* background-image: url('assets/images/nb-03-mesh.jpg'); */
  /* background-size: cover; background-position: center; */
  /* opacity overlay via pseudo-element */
}
