/* ═══════════════════════════════════════════════════════════
   IA Produtiva 2026 — CSS Reconstruído para Conversão Máxima
   Stack: DM Sans + Syne · Dark Tech · Quiet Luxury Performance
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Core palette */
  --bg:        #06080F;
  --bg-2:      #0A0E1A;
  --bg-3:      #0F1525;
  --surface:   #111827;
  --surface-2: #1A2438;
  --surface-3: #222F44;

  /* Text */
  --text:      #F0EDE4;
  --text-dim:  #B8C0CC;
  --text-muted:#6B7A8D;
  --text-dark: #0E1117;

  /* Accent system */
  --gold:      #C9A84C;
  --gold-2:    #E8C96B;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --blue:      #4A9EFF;
  --blue-dim:  rgba(74, 158, 255, 0.15);
  --fire:      #FF6B35;
  --fire-2:    #FF8B55;

  /* Status */
  --danger:    #FF4545;
  --danger-dim:rgba(255, 69, 69, 0.15);
  --warn:      #F5A623;
  --warn-dim:  rgba(245, 166, 35, 0.15);
  --success:   #4ADE80;
  --success-dim:rgba(74, 222, 128, 0.12);

  /* Borders */
  --border:    rgba(240, 237, 228, 0.08);
  --border-2:  rgba(240, 237, 228, 0.14);

  /* Dimensions */
  --max:       1160px;
  --radius:    24px;
  --radius-sm: 14px;
  --radius-lg: 32px;

  /* Shadows */
  --shadow:    0 32px 80px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.3);
  --glow-gold: 0 0 40px rgba(201, 168, 76, 0.2);
  --glow-fire: 0 0 40px rgba(255, 107, 53, 0.3);

  /* Typography */
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-display: 'Syne', system-ui, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 60% 40% at 8% 0%, rgba(74,158,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 92% 5%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 50% 100%, rgba(255,107,53,0.05) 0%, transparent 60%);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

/* ─── AMBIENT GLOWS ─── */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}
.glow-blue  { width: 500px; height: 500px; background: var(--blue);    top: -10%;  left: -8%;  }
.glow-gold  { width: 400px; height: 400px; background: var(--gold);    top: 30%;   right: -8%; }
.glow-red   { width: 300px; height: 300px; background: var(--fire);    bottom: 10%; left: 20%; opacity: 0.10; }

.scanline {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.015) 2px, rgba(0,0,0,0.015) 4px);
  pointer-events: none;
  z-index: 1;
}

/* ─── LAYOUT ─── */
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 100px 0; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.0;
}

h1 { font-size: clamp(42px, 6.5vw, 80px); font-weight: 800; }
h2 { font-size: clamp(32px, 4.5vw, 60px); font-weight: 800; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 18px; font-weight: 700; }

h2 em, h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p { color: var(--text-dim); font-size: 16px; line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-fire {
  background: linear-gradient(135deg, var(--fire), var(--fire-2));
  color: #fff;
  box-shadow: 0 12px 35px rgba(255,107,53,0.35);
}
.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(255,107,53,0.5);
}
.btn-fire:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(74,158,255,0.4);
  background: rgba(74,158,255,0.06);
}

.btn-sm  { min-height: 40px; padding: 0 18px; font-size: 14px; }
.btn-lg  { min-height: 60px; padding: 0 36px; font-size: 17px; }
.full    { width: 100%; }

/* ─── HEADER ─── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand em { font-style: normal; color: var(--gold); }

.brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(74,158,255,0.2);
}

.brand-icon-inner {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.nav a { transition: color 0.18s; }
.nav a:hover { color: var(--text); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--fire-2);
  transition: all 0.22s;
}
.header-cta:hover {
  background: rgba(255,107,53,0.2);
  border-color: rgba(255,107,53,0.5);
}

.header-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fire);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-2);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: rgba(6,8,15,0.98);
  gap: 4px;
}
.mobile-nav.open { display: grid; }
.mobile-nav a {
  color: var(--text-dim);
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  font-size: 12px;
  font-weight: 700;
  color: var(--fire-2);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 0 0 rgba(255,107,53,0.5);
  animation: pulse-fire 2s infinite;
}

@keyframes pulse-fire {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,53,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}

.hero-h1 { line-height: 1.0; }

.h1-highlight {
  background: linear-gradient(135deg, var(--danger), #FF8080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h1-thin {
  font-weight: 300;
  color: var(--text-dim);
  -webkit-text-fill-color: var(--text-dim);
}

.hero-sub {
  margin-top: 24px;
  font-size: 17px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-proof-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.proof-item { text-align: center; }
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.proof-item span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── TERMINAL / DASHBOARD ─── */
.terminal-wrapper {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(74,158,255,0.06);
}

.terminal-chrome {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.terminal-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green  { background: #28C840; }

.terminal-title {
  margin-left: 10px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}

.terminal-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  letter-spacing: 0.1em;
}

.status-blink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: blink 1.4s infinite;
}

/* Alert card */
.alert-card {
  margin: 16px;
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--danger-dim);
  background: linear-gradient(135deg, rgba(255,69,69,0.08), rgba(255,69,69,0.03));
}

.alert-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.alert-badge-wrap { display: flex; align-items: center; gap: 10px; }

.badge-critical {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,69,69,0.2);
  border: 1px solid rgba(255,69,69,0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFB0B0;
}

.alert-ts {
  font-size: 12px;
  color: var(--text-muted);
  font-family: monospace;
}

.alert-loss { text-align: right; }
.alert-loss span { display: block; font-size: 11px; color: var(--text-muted); }
.loss-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--danger);
}

.alert-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 16px;
}

.text-danger { color: var(--danger); }
.text-warn   { color: var(--warn); }

.alert-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.meta-block {
  background: rgba(6,8,15,0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.meta-block span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.meta-block strong { font-size: 18px; font-weight: 700; }
.danger-bg { border-color: rgba(255,69,69,0.3); background: rgba(255,69,69,0.08); }
.warn-bg   { border-color: rgba(245,166,35,0.3); background: rgba(245,166,35,0.06); }

/* Flow pipeline */
.pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}

.pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  min-width: 64px;
}
.pipe-step.active {
  border-color: rgba(74,158,255,0.3);
  background: rgba(74,158,255,0.06);
}
.pipe-step.danger-step {
  border-color: rgba(255,69,69,0.3);
  background: rgba(255,69,69,0.06);
}
.pipe-icon { font-size: 16px; }
.pipe-step span { font-size: 11px; color: var(--text-dim); font-weight: 600; }
.pipe-arrow { color: var(--text-muted); font-size: 14px; flex-shrink: 0; }

/* WhatsApp notification */
.wa-notif {
  margin: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(74,222,128,0.2);
  background: rgba(74,222,128,0.06);
  padding: 14px;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.wa-header strong { display: block; font-size: 13px; color: var(--text); }
.wa-header span { font-size: 11px; color: var(--text-muted); }

.wa-bubble {
  background: rgba(6,8,15,0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
}
.wa-bubble p { color: #C8F0D0; margin: 0; }
.wa-bubble code {
  background: rgba(74,222,128,0.15);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--success);
}
.wa-action {
  margin-top: 8px !important;
  color: var(--warn) !important;
  font-weight: 700;
}

/* Saving bar */
.saving-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 16px 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  font-size: 13px;
  color: var(--text-dim);
}
.saving-icon { font-size: 16px; }
.saving-bar strong { color: var(--gold); }

/* ─── PAIN SECTION ─── */
.pain-section { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }

.section-label { margin-bottom: 10px; }
.section-h2 { max-width: 700px; margin-bottom: 20px; }

.section-lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 580px;
  margin-bottom: 0;
}

.big-question {
  display: inline-block;
  margin: 24px 0 48px;
  padding: 20px 28px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  font-size: 20px;
  color: var(--text-dim);
  font-style: italic;
}
.big-question strong { color: var(--gold); font-style: normal; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: border-color 0.25s;
}
.pain-card:hover { border-color: var(--border-2); }

.pain-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--border-2);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.pain-content h3 { margin-bottom: 10px; font-size: 20px; }
.pain-content p  { font-size: 15px; }

.pain-cost {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: inline-block;
}
.danger-cost { color: var(--danger) !important; background: var(--danger-dim) !important; border-color: rgba(255,69,69,0.25) !important; }

.bleed-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,107,53,0.06));
  border: 1px solid rgba(255,107,53,0.25);
  gap: 20px;
}
.bleed-left strong { display: block; font-size: 20px; color: var(--text); margin-bottom: 4px; }
.bleed-left span   { color: var(--text-muted); font-size: 14px; }

/* ─── STATES SECTION ─── */
.states-section { background: var(--bg); }

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.section-heading h2  { margin-bottom: 16px; }
.section-heading p   { max-width: 560px; margin: 0 auto; }

.states-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.state-arrow {
  font-size: 28px;
  color: var(--border-2);
  text-align: center;
}

.state-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 260px;
}

.state-item.featured-state {
  background: linear-gradient(160deg, rgba(201,168,76,0.12) 0%, var(--surface) 60%);
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--glow-gold);
}

.state-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.state-bad     { background: var(--danger-dim); color: var(--danger); }
.state-mid     { background: var(--warn-dim);   color: var(--warn); }
.state-sentinel{ background: var(--gold-glow);  color: var(--gold); }

.state-body h3 { margin-bottom: 12px; }

.state-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.tag-bad      { background: var(--danger-dim); color: var(--danger); }
.tag-mid      { background: var(--warn-dim);   color: var(--warn); }
.tag-sentinel { background: var(--gold-glow);  color: var(--gold); }

.state-crown { color: var(--gold); margin-left: 4px; }

/* ─── DEMO SECTION ─── */
.demo-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.demo-copy h2 { margin-bottom: 18px; }

.feature-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feat-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}

.feature-list li strong { display: block; font-size: 15px; margin-bottom: 3px; color: var(--text); }
.feature-list li span   { font-size: 13px; color: var(--text-muted); }

/* Timeline demo */
.timeline-demo {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tl-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.tl-title { font-weight: 700; font-size: 14px; }
.tl-sub   { font-size: 12px; color: var(--text-muted); }

.tl-track { padding: 20px 24px; display: grid; gap: 0; }

.tl-item {
  display: grid;
  grid-template-columns: 16px 70px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.tl-item:last-child { border-bottom: none; }

.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-2);
  margin-top: 4px;
  flex-shrink: 0;
}
.dot-warn     { background: var(--warn);    box-shadow: 0 0 8px var(--warn-dim); }
.dot-critical { background: var(--danger);  box-shadow: 0 0 8px var(--danger-dim); }
.dot-resolved { background: var(--blue);    box-shadow: 0 0 8px var(--blue-dim); }
.dot-win      { background: var(--success); box-shadow: 0 0 8px var(--success-dim); }

.tl-time {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.tl-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.tl-desc strong { color: var(--text); display: block; margin-bottom: 4px; }

.tl-critical .tl-desc strong { color: var(--danger); }
.tl-win .tl-desc strong      { color: var(--success); }

.tl-saving {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}
.tl-saving.saved { color: var(--success); }

.saving-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.saving-col {
  padding: 20px 24px;
  text-align: center;
}
.saving-col span  { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.saving-col small { display: block; font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.saving-col strong { font-family: var(--font-display); font-size: 26px; font-weight: 800; }
.loss { color: var(--danger); }
.win  { color: var(--success); }

.saving-vs {
  display: grid;
  place-items: center;
  padding: 20px 8px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-weight: 800;
  color: var(--text-muted);
  font-size: 13px;
}

/* ─── SENTINEL SECTION ─── */
.sentinel-section { background: var(--bg-2); }

.versus-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}

.versus-card { padding: 36px; }
.versus-bad  { background: rgba(255,69,69,0.04); }
.versus-good { background: rgba(74,222,128,0.04); }

.versus-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  gap: 12px;
}
.divider-line {
  flex: 1;
  width: 1px;
  background: var(--border);
}
.versus-divider span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--text-muted);
}

.versus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.versus-label { font-weight: 700; font-size: 15px; }
.bad-label    { color: var(--danger); }
.good-label   { color: var(--success); }

.versus-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.tag-reactive    { background: var(--danger-dim); color: var(--danger); }
.tag-sentinel-sm { background: var(--gold-glow);  color: var(--gold); }

.versus-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.versus-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dim);
}
.versus-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.versus-bad .versus-list li::before  { background: var(--danger); }
.versus-good .versus-list li::before { background: var(--success); }

.versus-result {
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
}
.bad-result  { background: var(--danger-dim); border: 1px solid rgba(255,69,69,0.25); }
.good-result { background: var(--success-dim); border: 1px solid rgba(74,222,128,0.25); }
.versus-result span { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.versus-result strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}
.bad-result strong  { color: var(--danger); }
.good-result strong { color: var(--success); }

/* Flow diagram */
.flow-diagram {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
}
.flow-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.flow-nodes {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.flow-node {
  flex: 1;
  min-width: 80px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.node-icon { font-size: 22px; margin-bottom: 6px; }
.flow-node span { display: block; font-size: 12px; font-weight: 700; color: var(--text); }
.flow-node small { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.node-trigger { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.06); }
.node-branch  { border-color: rgba(74,158,255,0.35); background: rgba(74,158,255,0.06); }
.node-output  { border-color: rgba(74,222,128,0.35); background: rgba(74,222,128,0.06); }

.flow-connector {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 18px;
  flex-shrink: 0;
}
.connector-line { display: none; }

.sentinel-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  flex-wrap: wrap;
}
.sentinel-callout strong { font-size: 22px; color: var(--text); }
.sentinel-callout span   { color: var(--text-dim); font-size: 16px; }

/* ─── METHOD SECTION ─── */
.method-section { background: var(--bg); }

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

.method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s;
}
.method-card:hover { border-color: var(--border-2); }

.method-card.method-featured {
  background: linear-gradient(160deg, rgba(201,168,76,0.12), var(--surface));
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--glow-gold);
}

.method-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.sentinel-num { color: var(--gold); border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.1); }

.method-body { flex: 1; display: flex; flex-direction: column; }
.method-body h3 { margin-bottom: 12px; }
.method-body p  { font-size: 14px; flex: 1; }

.feat-star { color: var(--gold); }

.method-output {
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.sentinel-output { color: var(--gold); background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); }

/* ─── VICTORY SECTION ─── */
.victory-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
}

.victory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.victory-timeline {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vt-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
}

.vt-marker {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.vt-day {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.vt-day-gold { color: var(--gold) !important; }

.vt-line {
  flex: 1;
  width: 2px;
  background: var(--border);
}

.vt-content {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.vt-item:last-child .vt-content { border-bottom: none; }

.vt-content h4 { margin-bottom: 8px; font-size: 16px; }

.vt-check {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--success-dim);
  color: var(--success);
}
.vt-check-gold { background: var(--gold-glow) !important; color: var(--gold) !important; }

.vt-highlight {
  background: linear-gradient(90deg, rgba(201,168,76,0.06), transparent);
}
.vt-highlight .vt-marker {
  border-right-color: rgba(201,168,76,0.3);
}

/* ─── PLAN SECTION ─── */
.plan-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.plan-cards { display: grid; gap: 14px; }

.plan-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.22s;
}
.plan-card:hover { border-color: var(--border-2); }

.plan-card.plan-card-featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, rgba(201,168,76,0.08), var(--surface));
}

.plan-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.plan-card h3 { margin-bottom: 6px; font-size: 18px; }
.plan-card p  { font-size: 14px; }

/* ─── AUDIENCE SECTION ─── */
.audience-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-yes,
.audience-no {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.audience-yes { border-color: rgba(74,222,128,0.2); }
.audience-no  { border-color: rgba(107,122,141,0.2); }

.audience-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.aud-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.aud-no { opacity: 0.5; }

.audience-header h3 { margin-top: 4px; }

.muted-eyebrow { color: var(--text-muted) !important; }

.audience-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.audience-list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dim);
  align-items: flex-start;
}
.audience-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.yes-list li::before { background: var(--success); }
.no-list  li::before { background: var(--text-muted); }

/* ─── OFFER SECTION ─── */
.offer-section {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}

.offer-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.offer-left h2  { margin-bottom: 16px; }
.offer-left > p { margin-bottom: 0; }

.offer-includes {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.include-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.include-item.include-bonus {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.06);
}

.include-icon { font-size: 22px; flex-shrink: 0; }
.include-item strong { display: block; font-size: 15px; margin-bottom: 3px; color: var(--text); }
.include-item span   { font-size: 13px; color: var(--text-muted); }

.urgency-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fire-2);
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fire);
  flex-shrink: 0;
  animation: pulse-fire 2s infinite;
}

/* Signup box */
.signup-box {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow);
}

.signup-header { margin-bottom: 24px; }

.signup-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  font-size: 12px;
  font-weight: 700;
  color: var(--fire-2);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.signup-header p { font-size: 15px; }

.lead-form { display: grid; gap: 14px; }

.field-group { display: grid; gap: 6px; }

.field-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
}

.optional { color: var(--text-muted); font-weight: 400; }

.field-group input {
  width: 100%;
  height: 50px;
  background: rgba(6,8,15,0.6);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 0 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field-group input::placeholder { color: var(--text-muted); }
.field-group input:focus {
  border-color: rgba(255,107,53,0.5);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.08);
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: var(--success-dim);
  border: 1px solid rgba(74,222,128,0.3);
}
.form-success.show { display: block; }
.success-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.form-success strong { display: block; font-size: 18px; margin-bottom: 6px; color: var(--success); }
.form-success p { font-size: 14px; }

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── GUARANTEE SECTION ─── */
.guarantee-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.guarantee-box {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(74,158,255,0.08), rgba(74,158,255,0.03));
  border: 1px solid rgba(74,158,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.guarantee-icon { font-size: 48px; flex-shrink: 0; }
.guarantee-content h2 { margin-bottom: 16px; }
.guarantee-content p  { max-width: 680px; }
.guarantee-content p + p { margin-top: 12px; }

/* ─── FAQ SECTION ─── */
.faq-section { background: var(--bg-2); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.active { border-color: var(--border-2); }

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 20px 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
}

.faq-item button::after {
  content: '+';
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item.active button::after { content: '–'; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-answer p { padding: 0 22px 22px; font-size: 15px; }

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px 60px;
  background: linear-gradient(135deg, rgba(255,107,53,0.10), rgba(255,107,53,0.04));
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-lg);
}

.final-copy h2 { margin-bottom: 14px; }
.final-copy p  { max-width: 500px; }

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.final-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 80px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-top {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.18s;
}
.footer-top:hover { color: var(--text); }

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(160%);
  width: min(600px, calc(100% - 32px));
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 12px 20px;
  border-radius: 999px;
  background: rgba(6,8,15,0.95);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }

.sticky-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
}

.sticky-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fire);
  animation: pulse-fire 2s infinite;
  flex-shrink: 0;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 1100px) {
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .states-track { grid-template-columns: 1fr; }
  .state-arrow { transform: rotate(90deg); text-align: center; font-size: 20px; }
}

@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .menu-btn { display: inline-flex; }

  .hero-inner,
  .demo-grid,
  .victory-grid,
  .plan-grid,
  .offer-wrapper,
  .final-box { grid-template-columns: 1fr; }

  .signup-box { position: static; }

  .final-box {
    flex-direction: column;
    padding: 36px 28px;
  }

  .versus-grid { grid-template-columns: 1fr; }
  .versus-divider { flex-direction: row; padding: 16px 20px; }
  .divider-line { flex: 1; height: 1px; width: auto; }

  .audience-grid { grid-template-columns: 1fr; }

  .guarantee-box { flex-direction: column; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }

  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  .hero-proof-strip {
    flex-direction: column;
    gap: 16px;
  }
  .proof-divider { width: 100%; height: 1px; }

  .pain-grid { grid-template-columns: 1fr; }

  .pain-card { flex-direction: column; gap: 14px; }
  .pain-num { font-size: 32px; }

  .bleed-banner { flex-direction: column; align-items: flex-start; }

  .method-grid { grid-template-columns: 1fr; }

  .flow-nodes { gap: 4px; }
  .flow-node { min-width: 60px; padding: 10px 6px; }
  .flow-node span { font-size: 10px; }

  .sentinel-callout { flex-direction: column; align-items: flex-start; }

  .saving-summary { grid-template-columns: 1fr; }
  .saving-vs { display: none; }

  .alert-meta-grid { grid-template-columns: 1fr; }

  .tl-item { grid-template-columns: 12px 60px 1fr; }

  .vt-item { grid-template-columns: 90px 1fr; }

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

  .sticky-left span { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }

  .pipeline { flex-wrap: wrap; justify-content: center; }
  .pipe-arrow { display: none; }

  .offer-wrapper { gap: 32px; }
}
