/* ========================================================
   ========== LIGHT THEME OVERRIDE (BLUEPRINT MODE) ==========
   ======================================================== */
:root {
  /* Surface — off-white warmth, not sterile pure white */
  --paper: #F6F5F1;
  --paper-raised: #FFFFFF;
  --paper-deep: #EDEBE4;

  /* Ink — near-black with warmth */
  --ink: #0E0E10;
  --ink-soft: #2A2A2E;
  --ink-mid: #5A5A60;
  --ink-light: #8E8E94;
  --ink-faint: #C2C2C6;

  /* Blueprint structure */
  --rule: #1A1A1C;
  --rule-soft: #DBD9D2;
  --rule-faint: #E7E5DE;
  --grid: rgba(20, 20, 24, 0.04);

  /* Brand red — surgical, restrained */
  --r-red: #E6172A;
  --r-red-soft: rgba(230, 23, 42, 0.08);
  --r-red-mid: rgba(230, 23, 42, 0.18);
}

/* === FOUNDATION === */
html, body {
  background: var(--paper) !important;
  color: var(--ink) !important;
}
body {
  -webkit-font-smoothing: antialiased;
}

/* Kill the carbon fiber texture overlay completely */
body::before { display: none !important; }

/* === BLUEPRINT GRID BACKGROUND === */
.circuit-bg {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(230, 23, 42, 0.035) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(230, 23, 42, 0.025) 0%, transparent 70%),
    var(--paper) !important;
}
.circuit-bg::after { display: none !important; }
.circuit-svg .circuit-static { stroke: rgba(20, 20, 24, 0.16) !important; stroke-width: 0.8 !important; }
.circuit-svg .circuit-nodes circle { fill: var(--r-red) !important; opacity: 0.55; r: 2.5; }
.circuit-svg .pulse-path { stroke: var(--r-red) !important; stroke-width: 2 !important; opacity: 0.85; }
.vignette { display: none !important; }

/* === NAV === */
.nav {
  background: rgba(246, 245, 241, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-soft) !important;
}
.nav-inner { color: var(--ink) !important; }
.nav-links a { color: var(--ink-soft) !important; }
.nav-links a:hover { color: var(--r-red) !important; }
.logo-text { color: var(--ink) !important; }
.logo-accent { color: var(--r-red) !important; }
.logo-mark { mix-blend-mode: multiply; filter: contrast(1.05); }

/* === BUTTONS === */
.btn-primary {
  background: var(--ink) !important;
  color: var(--paper-raised) !important;
  border: 1px solid var(--ink) !important;
  box-shadow: none !important;
  clip-path: none !important;
  border-radius: 0 !important;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.2s ease !important;
}
.btn-primary::before, .btn-primary::after { display: none !important; }
.btn-primary:hover {
  background: var(--r-red) !important;
  border-color: var(--r-red) !important;
  transform: translateY(-1px) !important;
}
.btn-secondary,
.btn-ghost {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink-soft) !important;
  clip-path: none !important;
  border-radius: 0 !important;
}
.btn-secondary:hover,
.btn-ghost:hover {
  background: var(--ink) !important;
  color: var(--paper-raised) !important;
}

/* === TYPOGRAPHY — dial down the shout === */
.hero-title,
.sv-title,
.sv-closing-title,
.sv-section-title {
  color: var(--ink) !important;
  text-shadow: none !important;
  font-stretch: normal !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.02 !important;
}
.text-red { color: var(--r-red) !important; text-shadow: none !important; }

h2, h3, h4, h5 { color: var(--ink) !important; font-stretch: normal !important; }
p, li, .hero-sub, .sv-sub { color: var(--ink-mid) !important; }

/* === HERO EYEBROW + MONOSPACE TAGS === */
.hero-eyebrow,
.sv-tag,
.vsl-section-tag,
.compare-tag,
.engine-tag,
.process-eyebrow {
  background: var(--paper-raised) !important;
  border: 1px solid var(--rule-soft) !important;
  color: var(--ink-soft) !important;
  font-family: var(--font-mono);
  font-weight: 500 !important;
  padding: 8px 14px !important;
  border-radius: 0 !important;
}
.hero-eyebrow .dot,
.sv-tag .dot,
.vsl-section-tag .dot {
  background: var(--r-red) !important;
  box-shadow: 0 0 0 3px var(--r-red-soft) !important;
}

/* === CHECK ITEMS / HERO CHIPS === */
.hero-checks .check-item,
.fit-item {
  background: var(--paper-raised) !important;
  border: 1px solid var(--rule-soft) !important;
  color: var(--ink) !important;
  clip-path: none !important;
}
.check, .check-item .check {
  color: var(--r-red) !important;
}

/* === CARDS — blueprint panels, not carbon fiber === */
.compare-card,
.engine-card,
.process-step,
.fit-card,
.faq-item,
.compact-card,
.success-card,
.sv-player-wrap,
.sv-closing-card,
.vsl-section,
.vsl-card,
.sv-progress-item,
.book-card,
.proof-card,
.layer-item,
.ugc-reason {
  background: var(--paper-raised) !important;
  border: 1px solid var(--rule-soft) !important;
  clip-path: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.compare-card:hover,
.engine-card:hover,
.process-step:hover,
.faq-item:hover,
.sv-progress-item:hover,
.vsl-card:hover {
  border-color: var(--ink) !important;
  background: var(--paper-raised) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 20, 24, 0.06) !important;
}
.compare-card::before,
.engine-card::before,
.process-step::before,
.fit-card::before,
.vsl-section::before,
.sv-closing-card::before { display: none !important; }

/* The "new way" compare card gets a subtle red top border for accent */
.compare-card.compare-new {
  border-top: 3px solid var(--r-red) !important;
}

/* === COMPARE / OLD WAY === */
.compare-card.compare-old {
  background: var(--paper-deep) !important;
}
.result-number { color: var(--ink) !important; }
.compare-card.compare-old .result-number { color: var(--ink-mid) !important; }
.compare-card.compare-new .result-number { color: var(--r-red) !important; }

/* === ENGINE NUMBERS / BIG NUMERALS === */
.engine-num,
.process-num,
.sv-progress-num {
  color: var(--r-red) !important;
  font-weight: 700;
  text-shadow: none !important;
}

/* === FAQ === */
.faq-q { color: var(--ink) !important; }
.faq-body { color: var(--ink-mid) !important; }
.faq-item summary { border-bottom: 1px solid var(--rule-soft) !important; }
.faq-icon { color: var(--ink-mid) !important; }

/* === TICKER === */
.ticker {
  background: var(--ink) !important;
  border-top: 1px solid var(--ink) !important;
  border-bottom: 1px solid var(--ink) !important;
}
.ticker-track { color: var(--paper) !important; }
.ticker-dot { color: var(--r-red) !important; }

/* === BOOK / CALENDLY SECTION === */
.book-section { background: var(--paper) !important; }
.book-card { border: 1px solid var(--rule-soft) !important; }

/* === FOOTER === */
.footer {
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-top: none !important;
}
.footer .logo-text,
.footer .nav-logo .logo-text { color: var(--paper) !important; }
.footer .logo-accent { color: var(--r-red) !important; }
.footer-tag,
.footer-col h5,
.footer-col a,
.footer-bottom { color: var(--paper) !important; opacity: 0.78; }
.footer-col a:hover { opacity: 1; color: var(--r-red) !important; }
.footer .logo-mark { mix-blend-mode: normal; filter: none; }

/* === VSL FRAME (hero) — blueprint frame instead of carbon === */
.vsl-frame {
  background: var(--paper-raised) !important;
  border: 1px solid var(--rule-soft) !important;
  padding: 12px !important;
  clip-path: none !important;
  border-radius: 0 !important;
}
.vsl-frame::before { display: none !important; }
.vsl-corners { display: none !important; }
.vsl-player { clip-path: none !important; border-radius: 0 !important; }
.vsl-label {
  background: rgba(246, 245, 241, 0.92) !important;
  color: var(--ink) !important;
  border: 1px solid var(--rule-soft) !important;
}
.vsl-play circle:first-of-type { stroke: var(--r-red) !important; }
.vsl-play circle:last-of-type { fill: var(--r-red) !important; }
.vsl-player::after {
  background: linear-gradient(180deg, rgba(20,20,24,0.05) 0%, rgba(20,20,24,0.25) 100%) !important;
}

/* === SUCCESS PAGE VSL CARDS === */
.vsl-card-overlay {
  background: linear-gradient(180deg, rgba(20,20,24,0.2) 0%, rgba(20,20,24,0.55) 100%) !important;
}
.vsl-card-num { color: #fff !important; }
.vsl-card-label { color: var(--ink) !important; }
.vsl-card-status { color: var(--r-red) !important; }
.vsl-card-status .dot { background: var(--r-red) !important; box-shadow: 0 0 0 3px var(--r-red-soft) !important; }

/* === LIGHTBOX MODAL === */
.vsl-modal-backdrop {
  background: rgba(20, 20, 24, 0.85) !important;
}
.vsl-modal-content {
  background: var(--paper-raised) !important;
  border: 1px solid var(--rule-soft) !important;
  clip-path: none !important;
  border-radius: 0 !important;
}
.vsl-modal-close {
  background: var(--paper-raised) !important;
  border: 1px solid var(--rule-soft) !important;
  color: var(--ink) !important;
  clip-path: none !important;
  border-radius: 0 !important;
}
.vsl-modal-close:hover {
  background: var(--ink) !important;
  color: var(--paper-raised) !important;
  border-color: var(--ink) !important;
}
.vsl-modal-player { clip-path: none !important; border-radius: 0 !important; }

/* === SALES VIDEOS PAGE === */
.sv-player-wrap { padding: 12px !important; }
.sv-player-wrap::before {
  background: var(--paper-raised) !important;
  border: 1px solid var(--rule-soft) !important;
  color: var(--r-red) !important;
}
.sv-next {
  background: var(--paper-raised) !important;
  border: 1px solid var(--ink) !important;
  color: var(--ink) !important;
  clip-path: none !important;
  border-radius: 0 !important;
}
.sv-next:hover {
  background: var(--ink) !important;
  color: var(--paper-raised) !important;
  border-color: var(--ink) !important;
}
.sv-closing-card { padding: 60px 44px !important; }

/* === SECTION HEADERS / DIVIDERS === */
section { border-color: var(--rule-soft) !important; }
.section-header h2 { color: var(--ink) !important; }
.section-header p { color: var(--ink-mid) !important; }

/* === SCROLL-PROGRESS NAV (NEW — right edge of viewport) === */
.scroll-progress {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.scroll-progress a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-light);
  transition: color 0.2s;
  text-decoration: none;
}
.scroll-progress a::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink-light);
  background: transparent;
  transition: all 0.2s;
}
.scroll-progress a.active,
.scroll-progress a:hover {
  color: var(--ink);
}
.scroll-progress a.active::after,
.scroll-progress a:hover::after {
  background: var(--r-red);
  border-color: var(--r-red);
}
.scroll-progress .progress-label { display: none; }
.scroll-progress a:hover .progress-label,
.scroll-progress a.active .progress-label { display: inline; }
@media (max-width: 1100px) { .scroll-progress { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === ANIMATED RED PULSE ON DOTS === */
@keyframes pulse-dot-light {
  0%, 100% { box-shadow: 0 0 0 3px var(--r-red-soft); }
  50% { box-shadow: 0 0 0 6px var(--r-red-soft); }
}
.hero-eyebrow .dot,
.sv-tag .dot,
.vsl-section-tag .dot,
.vsl-card-status .dot { animation: pulse-dot-light 2s ease-in-out infinite; }

/* === SUCCESS PAGE specific === */
.success-section,
.success-card,
.success-card .success-inner {
  background: var(--paper-raised) !important;
  border-color: var(--rule-soft) !important;
  color: var(--ink) !important;
  box-shadow: 0 8px 32px rgba(20, 20, 24, 0.06) !important;
}
.success-card::before,
.success-card::after,
.success-section::before,
.success-section::after { display: none !important; }
.success-icon { background: var(--r-red) !important; }
.success-eyebrow { color: var(--r-red) !important; }
.success-card h1,
#successTitle { color: var(--ink) !important; }
.success-card p,
#successDescription { color: var(--ink-mid) !important; }
.success-next { border-top: 1px solid var(--rule-soft) !important; }
.success-next ol li { color: var(--ink-mid) !important; }
.success-next h4 { color: var(--ink) !important; }
.success-next ol li::marker,
.success-next ol li::before { color: var(--r-red) !important; }

/* === SUCCESS PAGE VSL SECTION wrapper === */
.vsl-section-header h3 { color: var(--ink) !important; }
.vsl-section-header p { color: var(--ink-mid) !important; }

/* === PATCH: every leftover dark legacy section === */
/* "section-alt" was rendering dark by default. Force light. */
.section-alt,
.section,
section.section,
section.section-alt {
  background: transparent !important;
}
.section-alt::before,
.section-alt::after { display: none !important; }

/* Generic .eyebrow (separate from .hero-eyebrow) — same pill treatment */
.eyebrow,
.fit-tag {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: var(--paper-raised) !important;
  border: 1px solid var(--rule-soft) !important;
  color: var(--ink-soft) !important;
  font-family: var(--font-mono);
  font-weight: 500 !important;
  font-size: 0.7rem;
  padding: 8px 14px !important;
  border-radius: 0 !important;
  clip-path: none !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow .dot,
.fit-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--r-red) !important;
  box-shadow: 0 0 0 3px var(--r-red-soft) !important;
  border-radius: 50%;
  animation: pulse-dot-light 2s ease-in-out infinite;
}

/* Why-this-works section: kill dark bleed, restyle blocks */
.why-grid { background: transparent !important; }
.why-left,
.why-right { background: transparent !important; }
.why-lead { color: var(--ink-mid) !important; }
.why-block {
  background: transparent !important;
  border-left: 2px solid var(--r-red) !important;
  border-bottom: 1px solid var(--rule-soft) !important;
  padding: 18px 20px !important;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  clip-path: none !important;
  border-radius: 0 !important;
}
.why-block:last-child { border-bottom: none !important; }
.why-block::before,
.why-block::after { display: none !important; }
.why-num {
  color: var(--r-red) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  background: transparent !important;
  border: none !important;
  padding: 4px 0 !important;
  width: auto !important;
  height: auto !important;
  clip-path: none !important;
}
.why-block h4 {
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.005em !important;
  font-size: 1rem !important;
  margin-bottom: 8px !important;
}
.why-block p {
  color: var(--ink-mid) !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Section titles general */
.section-title { color: var(--ink) !important; text-shadow: none !important; font-stretch: normal !important; }
.section-sub { color: var(--ink-mid) !important; }

/* Fit card — fully white panel */
.fit-card {
  background: var(--paper-raised) !important;
  border: 1px solid var(--rule-soft) !important;
  box-shadow: 0 8px 32px rgba(20, 20, 24, 0.04) !important;
  clip-path: none !important;
  border-radius: 0 !important;
  padding: 56px 44px !important;
  text-align: center;
}
.fit-card::before,
.fit-card::after { display: none !important; }
.fit-title { color: var(--ink) !important; }
.fit-criteria { gap: 12px !important; }
.fit-item {
  background: var(--paper) !important;
  border: 1px solid var(--rule-soft) !important;
  color: var(--ink) !important;
  padding: 14px 18px !important;
  clip-path: none !important;
  border-radius: 0 !important;
  text-align: left !important;
}
.fit-item .check { color: var(--r-red) !important; }

/* Any leftover dark gradients on section ::before / ::after pseudo */
section::before,
section::after { background: transparent !important; }

/* === FAQ CONTRAST FIX === */
.faq-q,
.faq-item summary,
.faq-item summary > * {
  color: var(--ink-soft) !important;
  font-weight: 600 !important;
}
.faq-item summary:hover .faq-q,
.faq-item summary:hover > * { color: var(--r-red) !important; }
.faq-item[open] summary .faq-q,
.faq-item[open] summary > * { color: var(--r-red) !important; }

/* ========================================================
   ===== PROCESS FLOW — CIRCUIT TRACE STEP DIAGRAM =====
   ======================================================== */
.process-flow {
  position: relative;
  max-width: 1080px;
  margin: 60px auto 0;
  padding: 0 0 40px;
}

/* Center spine SVG sits behind everything */
.process-spine {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: var(--ink-light);
  opacity: 0.45;
}
.process-spine .spine-pulse {
  animation: spine-flow 6s linear infinite;
  filter: drop-shadow(0 0 6px var(--r-red));
}
@keyframes spine-flow {
  0%   { stroke-dashoffset: 1400; }
  100% { stroke-dashoffset: -60; }
}

/* Each step row sits on either side of the spine */
.step-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  min-height: 280px;
  position: relative;
  padding: 30px 0;
}
.step-row + .step-row { margin-top: 20px; }

/* LEFT-aligned step (content on left, node in middle, empty on right) */
.step-left .step-content { grid-column: 1; text-align: right; padding-right: 40px; }
.step-left .step-node    { grid-column: 2; }

/* RIGHT-aligned step (empty on left, node in middle, content on right) */
.step-right .step-node    { grid-column: 2; }
.step-right .step-content { grid-column: 3; text-align: left; padding-left: 40px; }

/* The node — solder joint look */
.step-node {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.step-node::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--ink-light);
  background: var(--paper);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.step-node .node-inner {
  position: relative;
  width: 10px;
  height: 10px;
  background: var(--r-red);
  z-index: 1;
  box-shadow:
    0 0 0 3px var(--paper),
    0 0 12px var(--r-red);
  transform: rotate(45deg);
  transition: all 0.3s ease;
  animation: node-pulse 2.4s ease-in-out infinite;
}
@keyframes node-pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--paper), 0 0 8px var(--r-red); }
  50%      { box-shadow: 0 0 0 3px var(--paper), 0 0 18px var(--r-red); }
}
.step-row:hover .step-node::before {
  transform: rotate(45deg) scale(1.06);
  border-color: var(--ink);
}
.step-row:hover .step-node .node-inner {
  background: var(--r-red);
  box-shadow:
    0 0 0 3px var(--paper),
    0 0 24px var(--r-red);
}

/* Content block */
.step-content {
  position: relative;
  z-index: 1;
}
.step-tag {
  display: inline-flex;
  margin-bottom: 14px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--r-red);
  background: var(--paper-raised);
  border: 1px solid var(--rule-soft);
  padding: 6px 12px;
}
.step-title {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem) !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  line-height: 1.05 !important;
  color: var(--ink) !important;
  margin-bottom: 14px !important;
}
.step-body {
  color: var(--ink-mid) !important;
  font-size: 0.96rem !important;
  line-height: 1.6 !important;
  margin-bottom: 18px !important;
}
.step-out {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 500;
  padding: 10px 14px;
  border-left: 2px solid var(--r-red);
  background: rgba(230, 23, 42, 0.04);
  text-align: left;
}
.step-out-arrow { color: var(--r-red); font-weight: 700; }
.step-left .step-out { margin-left: auto; }

/* Mobile: collapse to single column with spine on the left */
@media (max-width: 820px) {
  .process-spine { left: 30px; width: 60px; }
  .step-row {
    grid-template-columns: 60px 1fr;
    text-align: left !important;
    min-height: 0;
    padding: 20px 0;
  }
  .step-left .step-content,
  .step-right .step-content {
    grid-column: 2 !important;
    text-align: left !important;
    padding: 0 0 0 24px !important;
  }
  .step-left .step-node,
  .step-right .step-node { grid-column: 1 !important; }
  .step-left .step-out { margin-left: 0; }
}

/* ========================================================
   ===== FOOTER SOCIAL ICONS =====
   ======================================================== */
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 28px 0 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--paper);
  opacity: 0.7;
  transition: all 0.2s ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  opacity: 1;
  background: var(--r-red);
  border-color: var(--r-red);
  color: #fff;
  transform: translateY(-2px);
}

/* ========================================================
   ========== END LIGHT THEME OVERRIDE ==========
   ======================================================== */

/* ========== TOKENS ========== */
:root {
  /* Carbon palette */
  --carbon-deep: #050507;
  --carbon-base: #0a0a0d;
  --carbon-panel: #0f0f13;
  --carbon-raised: #14141a;
  --carbon-hover: #1a1a22;

  /* Metals */
  --gunmetal: #2a2d35;
  --gunmetal-light: #3d4148;
  --titanium: #8a8f96;
  --chrome: #c8ccd2;
  --chrome-bright: #e8ebf0;

  /* Text */
  --text: #e8ebf0;
  --text-dim: #8a8f96;
  --text-faint: #4a4e55;

  /* Lines */
  --line: #1c1c24;
  --line-bright: #28282f;
  --line-hot: #383840;

  /* Brand red - racing accent */
  --red: #ff2d3d;
  --red-bright: #ff4555;
  --red-deep: #c41e2c;
  --red-glow: rgba(255, 45, 61, 0.35);
  --red-trace: rgba(255, 45, 61, 0.12);

  /* Telemetry amber */
  --amber: #ffaa33;
  --amber-dim: rgba(255, 170, 51, 0.6);

  /* Fonts */
  --font-display: "Saira", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  /* Geometry */
  --bevel: 14px;
  --bevel-sm: 8px;

  --container: 1280px;
  --container-narrow: 980px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--carbon-base);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ========== CARBON FIBER TEXTURE (global, very subtle) ========== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 3px);
  background-size: 4px 4px;
  opacity: 0.7;
}

/* ========== TELEMETRY BACKGROUND ========== */
.circuit-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 45, 61, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(255, 170, 51, 0.025) 0%, transparent 60%),
    var(--carbon-base);
}
.circuit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
.circuit-static path { stroke-dasharray: 1 5; stroke: var(--gunmetal); stroke-width: 1; }
.circuit-nodes circle { fill: var(--gunmetal-light); }
.pulse-path {
  stroke-dashoffset: 1500;
  animation: pulse-travel 8s linear infinite;
}
.pulse-1 { animation-delay: 0s; stroke: var(--red); }
.pulse-2 { animation-delay: 2s; animation-duration: 10s; stroke: var(--amber); opacity: 0.7; }
.pulse-3 { animation-delay: 4s; animation-duration: 9s; stroke: var(--red); }
.pulse-4 { animation-delay: 1s; animation-duration: 11s; stroke: var(--red); }
.pulse-5 { animation-delay: 3s; animation-duration: 7s; stroke: var(--amber); opacity: 0.7; }

@keyframes pulse-travel {
  0% { stroke-dashoffset: 1500; }
  100% { stroke-dashoffset: -1500; }
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 30%, rgba(5, 5, 7, 0.6) 100%);
}

/* All page content above background */
header, section, footer, .ticker, .wordmark-section {
  position: relative;
  z-index: 1;
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }

.section {
  padding: 120px 0;
  position: relative;
}
.section-alt {
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 15, 19, 0.6) 50%, transparent 100%);
}
.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-hot), transparent);
}
.section-alt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-hot), transparent);
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
}

.section-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 72px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-stretch: 110%;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== ATOMS ========== */
.text-red { color: var(--red); }
.text-chrome {
  background: linear-gradient(180deg, var(--chrome-bright) 0%, var(--titanium) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tactical eyebrow - rectangular, monospace */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--titanium);
  padding: 8px 16px;
  border: 1px solid var(--line-hot);
  background: var(--carbon-panel);
  margin-bottom: 28px;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse-dot 1.5s ease-in-out infinite;
  border-radius: 1px;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ========== BUTTONS - SHARP, BEVELED ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  border: 0;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--red-bright) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 0 0 1px var(--red-deep),
    0 4px 24px var(--red-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 0 0 1px var(--red-bright),
    0 8px 32px var(--red-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-sm { padding: 11px 20px; font-size: 0.78rem; }
.btn-lg { padding: 19px 38px; font-size: 1rem; }
.btn-full { width: 100%; }
.hero-cta { margin-top: 16px; }

/* ========== NAV - DASHBOARD HUD STYLE ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line-bright);
}
.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red-trace) 30%, var(--red) 50%, var(--red-trace) 70%, transparent 100%);
  opacity: 0.5;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-hot);
  flex-shrink: 0;
  object-fit: cover;
  background-color: var(--carbon-deep);
  display: block;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.logo-text { color: var(--chrome-bright); }
.logo-accent { color: var(--red); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--titanium);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--chrome-bright); }
.nav-links a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
}
.nav-links a:hover::before { opacity: 1; }

@media (max-width: 880px) { .nav-links { display: none; } }
@media (max-width: 480px) {
  .nav-inner { padding: 12px 16px; }
  .nav-logo { font-size: 1rem; gap: 10px; }
  .logo-mark { width: 34px; height: 34px; }
  .nav .btn-sm { padding: 9px 14px; font-size: 0.72rem; }
}

/* ========== HERO - DASHBOARD ENTRY ========== */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-trace), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--titanium);
  padding: 10px 22px;
  border: 1px solid var(--line-hot);
  background: var(--carbon-panel);
  margin-bottom: 36px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-stretch: 115%;
  color: var(--chrome-bright);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title .text-red {
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow);
  font-stretch: 115%;
}
.hero-sub {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 300;
}

/* Tactical readout strip */
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  padding: 0;
  border: 1px solid var(--line-hot);
  background: var(--carbon-panel);
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.check-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--titanium);
  padding: 14px 22px;
  border-right: 1px solid var(--line);
  position: relative;
}
.check-item:last-child { border-right: none; }
.check-item .check {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .hero-checks {
    flex-direction: column;
    align-items: stretch;
    clip-path: none;
  }
  .check-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
  }
  .check-item:last-child { border-bottom: none; }
}

/* VSL - Race monitor screen */
.vsl-wrap {
  max-width: 940px;
  margin: 0 auto 40px;
}
.vsl-frame {
  position: relative;
  padding: 16px;
  background: linear-gradient(135deg, var(--gunmetal) 0%, var(--carbon-panel) 100%);
  border: 1px solid var(--line-hot);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.vsl-frame::before {
  content: "REC ●";
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--red);
  z-index: 2;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.vsl-corners { display: none; }

.vsl-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.vsl-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl-player .wistia_responsive_padding,
.vsl-player .wistia_responsive_wrapper {
  position: absolute !important;
  inset: 0;
  padding: 0 !important;
}
.vsl-player .wistia_embed {
  width: 100% !important;
  height: 100% !important;
}
.vsl-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 24px var(--red-glow));
  transition: transform 0.25s ease, opacity 0.3s ease;
  z-index: 3;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  animation: vsl-pulse 2.4s ease-in-out infinite;
}
@keyframes vsl-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.vsl-player:hover .vsl-play { transform: scale(1.15); animation-play-state: paused; }

/* Hide play button + label after click-to-unmute */
.vsl-player.vsl-playing .vsl-play,
.vsl-player.vsl-playing .vsl-label,
.vsl-player.vsl-playing::after { opacity: 0; pointer-events: none; }

/* Dim overlay so the muted background video doesn't fight the play button for attention */
.vsl-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,13,0.15) 0%, rgba(10,10,13,0.55) 100%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.vsl-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--chrome);
  background: rgba(0,0,0,0.7);
  padding: 6px 12px;
  border: 1px solid var(--line-hot);
  z-index: 4;
  transition: opacity 0.3s ease;
}

/* ========== TICKER - TELEMETRY FEED ========== */
.ticker {
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
  background: var(--carbon-deep);
  overflow: hidden;
  padding: 16px 0;
  margin: 40px 0 0;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--carbon-deep), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--carbon-deep), transparent); }
.ticker-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  animation-play-state: running !important;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--titanium);
  text-transform: uppercase;
  will-change: transform;
}
.ticker { opacity: 1 !important; }
.ticker-dot { color: var(--red); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== COMPARE - SPLIT-SCREEN PERFORMANCE MODE ========== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 880px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-card {
  position: relative;
  padding: 40px 36px 32px;
  background: var(--carbon-panel);
  border: 1px solid var(--line-bright);
  display: flex;
  flex-direction: column;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.compare-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
.compare-old::before {
  background: linear-gradient(90deg, var(--gunmetal-light), transparent);
}
.compare-new::before {
  background: linear-gradient(90deg, var(--red), var(--red-deep), transparent);
  box-shadow: 0 0 20px var(--red-glow);
}
.compare-old {
  background: var(--carbon-panel);
  filter: saturate(0.7);
}
.compare-new {
  background:
    linear-gradient(180deg, rgba(255, 45, 61, 0.04) 0%, transparent 50%),
    var(--carbon-raised);
  border-color: var(--line-hot);
  box-shadow: 0 0 0 1px rgba(255, 45, 61, 0.08), 0 20px 60px rgba(0,0,0,0.4);
}

.compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--carbon-deep);
  border: 1px solid var(--line-hot);
  width: max-content;
}
.tag-old { color: var(--titanium); }
.tag-old::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--titanium);
  border-radius: 50%;
}
.tag-new { color: var(--red); }
.tag-new::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.compare-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  color: var(--chrome-bright);
  font-stretch: 110%;
}
.compare-list {
  flex: 1;
  margin-bottom: 28px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  font-size: 0.93rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}
.compare-list li:last-child { border-bottom: none; }
.compare-list .x {
  color: var(--titanium);
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-top: 1px;
}
.compare-list .check-li {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-top: 1px;
}
.compare-result {
  text-align: center;
  padding: 28px 24px 24px;
  border-top: 1px solid var(--line-bright);
  position: relative;
}
.result-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.result-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-stretch: 115%;
}
.result-old .result-number { color: var(--titanium); }
.result-new .result-number {
  color: var(--red);
  text-shadow: 0 0 30px var(--red-glow);
}
.result-sub {
  font-size: 0.82rem;
  color: var(--text-faint);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========== ENGINES - DASHBOARD MODULES ========== */
.engines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .engines-grid { grid-template-columns: 1fr; } }

.engine-card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--carbon-panel);
  border: 1px solid var(--line-bright);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.engine-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 50%);
  opacity: 0.6;
}
.engine-card:hover {
  background: var(--carbon-raised);
  border-color: var(--line-hot);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.engine-card:hover::before { opacity: 1; }

.engine-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.engine-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-faint);
}
.engine-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}
.engine-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.engine-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--chrome-bright);
  padding: 12px;
  background: var(--carbon-deep);
  border: 1px solid var(--line-hot);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.engine-icon svg { width: 100%; height: 100%; }
.engine-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--chrome-bright);
  font-stretch: 110%;
}
.engine-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.engine-card p {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ========== PROCESS - STAGE PROGRESSION ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr; } }

.process-card {
  padding: 32px 28px;
  background: var(--carbon-panel);
  border: 1px solid var(--line-bright);
  position: relative;
  transition: all 0.3s;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.process-card:hover {
  border-color: var(--line-hot);
  background: var(--carbon-raised);
}
.process-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.process-step::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--red);
}
.process-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  color: var(--chrome-bright);
  font-stretch: 110%;
}
.process-card p {
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 300;
}
.process-outcome {
  font-size: 0.84rem;
  color: var(--chrome);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.process-outcome::before {
  content: "→ ";
  color: var(--red);
  font-weight: 700;
}

/* ========== WHY - TELEMETRY READOUT ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
}
.why-left .section-title {
  text-align: left;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.05;
}
.why-lead { color: var(--text-dim); font-size: 1.02rem; line-height: 1.7; margin-top: 20px; font-weight: 300; }

.why-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.why-block:first-child { padding-top: 0; }
.why-block:last-child { border-bottom: none; }
.why-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.15em;
  padding-top: 4px;
  border-left: 2px solid var(--red);
  padding-left: 12px;
}
.why-block h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: var(--chrome-bright);
  font-stretch: 105%;
}
.why-block p { color: var(--text-dim); font-size: 0.93rem; font-weight: 300; }

/* ========== FIT CARD ========== */
.fit-card {
  position: relative;
  text-align: center;
  padding: 70px 44px;
  background:
    radial-gradient(ellipse at center top, rgba(255, 45, 61, 0.06), transparent 70%),
    var(--carbon-panel);
  border: 1px solid var(--line-hot);
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}
.fit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 20px var(--red-glow);
}
.fit-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 16px;
  border: 1px solid rgba(255, 45, 61, 0.3);
  background: rgba(255, 45, 61, 0.05);
  margin-bottom: 28px;
}
.fit-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  border-radius: 50%;
}
.fit-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 40px;
  letter-spacing: -0.015em;
  color: var(--chrome-bright);
  font-stretch: 110%;
}
.fit-criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 740px;
  margin: 0 auto 40px;
  text-align: left;
}
@media (max-width: 680px) { .fit-criteria { grid-template-columns: 1fr; } }
.fit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--carbon-deep);
  border: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--text);
  font-weight: 300;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.fit-item .check { color: var(--red); font-weight: 700; font-family: var(--font-mono); }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line-bright);
  background: var(--carbon-panel);
  transition: all 0.2s;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.faq-item[open] {
  border-color: var(--line-hot);
  background: var(--carbon-raised);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--chrome-bright);
  transition: color 0.2s;
  letter-spacing: 0.005em;
}
.faq-item summary:hover { color: var(--red); }
.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 28px 24px;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.94rem;
  font-weight: 300;
}

/* ========== BOOK ========== */
.book-section { background: linear-gradient(180deg, transparent, rgba(15, 15, 19, 0.5)); }
.book-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  max-width: 780px;
  margin: 0 auto 40px;
}
@media (max-width: 680px) { .book-features { grid-template-columns: 1fr; } }
.book-features .check-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  padding: 12px 18px;
  background: var(--carbon-panel);
  border: 1px solid var(--line);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.calendly-wrap {
  position: relative;
  padding: 16px;
  background: linear-gradient(135deg, var(--gunmetal) 0%, var(--carbon-panel) 100%);
  border: 1px solid var(--line-hot);
  margin-bottom: 32px;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.calendly-inline-widget {
  background: var(--carbon-panel);
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.book-quote {
  padding: 26px 28px;
  border-left: 3px solid var(--red);
  background: var(--carbon-panel);
  font-style: italic;
  color: var(--chrome);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto;
  font-weight: 300;
}

/* ========== WORDMARK ========== */
.wordmark-section {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
  background: var(--carbon-deep);
  position: relative;
}
.wordmark-section::before, .wordmark-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-trace), transparent);
}
.wordmark-section::before { top: 0; }
.wordmark-section::after { bottom: 0; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 13vw, 11rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gunmetal) 0%, var(--carbon-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-stretch: 115%;
  padding: 0 24px;
}
.wordmark-accent {
  background: linear-gradient(180deg, rgba(255, 45, 61, 0.5) 0%, rgba(120, 20, 30, 0.08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--carbon-deep);
  border-top: 1px solid var(--line-bright);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
.footer-tag {
  margin-top: 16px;
  color: var(--text-faint);
  font-size: 0.88rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 580px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--titanium);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-faint);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 580px) {
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* ========== AFFILIATE PAGE ========== */
.aff-hero {
  padding: 120px 0 60px;
  text-align: center;
}
.aff-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--chrome-bright);
  letter-spacing: -0.02em;
  font-stretch: 115%;
}
.aff-hero p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

.aff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) { .aff-grid { grid-template-columns: 1fr; } }

.aff-steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.aff-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px;
  background: var(--carbon-panel);
  border: 1px solid var(--line-bright);
  transition: all 0.3s;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.aff-step:hover {
  border-color: var(--line-hot);
  background: var(--carbon-raised);
  transform: translateX(4px);
}
.aff-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--red-glow);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.aff-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
  color: var(--chrome-bright);
  font-stretch: 110%;
}
.aff-step p { color: var(--text-dim); font-size: 0.94rem; font-weight: 300; }

.aff-perks {
  padding: 26px;
  border: 1px solid var(--line-bright);
  background: var(--carbon-panel);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.aff-perks h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.005em;
  color: var(--red);
  font-stretch: 110%;
}
.aff-perks ul { display: flex; flex-direction: column; gap: 11px; }
.aff-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 300;
}
.aff-perks li .check {
  color: var(--red);
  flex-shrink: 0;
  font-weight: 700;
  font-family: var(--font-mono);
}

.aff-form-card {
  padding: 16px;
  background: linear-gradient(135deg, var(--gunmetal) 0%, var(--carbon-panel) 100%);
  border: 1px solid var(--line-hot);
  position: relative;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.aff-form-inner {
  background: var(--carbon-panel);
  padding: 36px 32px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.aff-form-inner h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  color: var(--chrome-bright);
  font-stretch: 110%;
}
.aff-form-inner > p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 26px;
  font-weight: 300;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--titanium);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--carbon-deep);
  border: 1px solid var(--line-hot);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--carbon-base);
  box-shadow: 0 0 0 2px rgba(255, 45, 61, 0.15);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ff2d3d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group select option { background: var(--carbon-deep); color: var(--text); }
.form-meta {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  text-align: center;
  text-transform: uppercase;
}

/* ========== SUCCESS PAGE ========== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
}
.success-card {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: 16px;
  background: linear-gradient(135deg, var(--gunmetal) 0%, var(--carbon-panel) 100%);
  border: 1px solid var(--line-hot);
  position: relative;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}
.success-inner {
  background: var(--carbon-panel);
  padding: 60px 44px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.success-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--red-glow);
  animation: pulse-success 2s ease-in-out infinite;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
@keyframes pulse-success {
  0%, 100% { box-shadow: 0 0 40px var(--red-glow); }
  50% { box-shadow: 0 0 60px rgba(255, 45, 61, 0.6); }
}
.success-icon svg { width: 38px; height: 38px; }
.success-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--red);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.success-card h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  color: var(--chrome-bright);
  font-stretch: 115%;
}
.success-card .text-red { display: block; margin-top: 6px; }
.success-card > p {
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 38px;
  line-height: 1.7;
  font-weight: 300;
}
.success-next {
  text-align: left;
  margin: 38px 0;
  padding: 26px;
  background: var(--carbon-deep);
  border: 1px solid var(--line);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.success-next h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--titanium);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.success-next ol {
  list-style: none;
  counter-reset: success-counter;
}
.success-next li {
  counter-increment: success-counter;
  padding: 11px 0 11px 38px;
  position: relative;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 300;
}
.success-next li::before {
  content: counter(success-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 11px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ========== UTILITIES ========== */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SUCCESS PAGE VSL SECTION ========== */
.vsl-section {
  margin: 40px 0;
  padding: 36px 28px;
  background: var(--carbon-deep);
  border: 1px solid var(--line-hot);
  position: relative;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.vsl-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-deep), transparent);
  box-shadow: 0 0 16px var(--red-glow);
}
.vsl-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.vsl-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 14px;
  border: 1px solid rgba(255, 45, 61, 0.3);
  background: rgba(255, 45, 61, 0.06);
  margin-bottom: 18px;
}
.vsl-section-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse-dot 1.5s ease-in-out infinite;
  border-radius: 50%;
}
.vsl-section-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: var(--chrome-bright);
  font-stretch: 110%;
  line-height: 1.15;
}
.vsl-section-header p {
  color: var(--text-dim);
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.55;
}

.vsl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 720px) {
  .vsl-grid { grid-template-columns: 1fr; }
}

.vsl-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--carbon-panel);
  border: 1px solid var(--line-bright);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  padding: 0;
}
.vsl-card:hover {
  background: var(--carbon-raised);
  border-color: var(--line-hot);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.vsl-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.vsl-card-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
  transition: filter 0.25s, transform 0.4s ease;
}
.vsl-card:hover .vsl-card-thumb {
  filter: brightness(0.85);
  transform: scale(1.04);
}
.vsl-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(10,10,13,0.35) 0%, rgba(10,10,13,0.75) 100%);
  z-index: 2;
  pointer-events: none;
  transition: background 0.25s;
}
.vsl-card:hover .vsl-card-overlay {
  background: linear-gradient(180deg, rgba(10,10,13,0.15) 0%, rgba(10,10,13,0.55) 100%);
}
.vsl-card-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--chrome-bright);
  text-transform: uppercase;
}
.vsl-card-icon {
  width: 56px;
  height: 56px;
  color: var(--red);
  filter: drop-shadow(0 0 16px var(--red-glow));
  transition: transform 0.25s;
}
.vsl-card:hover .vsl-card-icon { transform: scale(1.1); }

/* ========== VSL LIGHTBOX MODAL ========== */
.vsl-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.vsl-modal.is-open {
  display: flex;
  animation: vsl-modal-fade 0.25s ease-out;
}
@keyframes vsl-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.vsl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.vsl-modal-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(135deg, var(--gunmetal) 0%, var(--carbon-panel) 100%);
  border: 1px solid var(--line-hot);
  padding: 16px;
  z-index: 2;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.vsl-modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--carbon-panel);
  border: 1px solid var(--line-hot);
  color: var(--chrome-bright);
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  padding: 0;
}
.vsl-modal-close:hover {
  background: var(--carbon-raised);
  color: var(--red);
  border-color: var(--red);
}
.vsl-modal-player {
  background: #000;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
@media (max-width: 720px) {
  .vsl-modal { padding: 16px; }
  .vsl-modal-close { top: -44px; width: 36px; height: 36px; }
}

.vsl-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  min-height: 70px;
}
.vsl-card-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--chrome-bright);
  line-height: 1.2;
}
.vsl-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}
.vsl-card-status .dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Success card needs more breathing room for the VSL section */
.success-card { max-width: 920px; }
@media (max-width: 720px) {
  .vsl-section { padding: 28px 18px; }
}

/* ========== SALES VIDEOS PAGE ========== */
html { scroll-padding-top: 80px; }

.sv-header {
  padding: 90px 0 50px;
  text-align: center;
  position: relative;
}
.sv-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-trace), transparent);
  opacity: 0.6;
  pointer-events: none;
}
.sv-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 28px 0 22px;
  font-stretch: 115%;
  color: var(--chrome-bright);
}
.sv-title .text-red { text-shadow: 0 0 40px var(--red-glow); }
.sv-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 300;
}

.sv-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .sv-progress { grid-template-columns: 1fr; } }

.sv-progress-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--carbon-panel);
  border: 1px solid var(--line-bright);
  text-align: left;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.sv-progress-item:hover {
  background: var(--carbon-raised);
  border-color: var(--line-hot);
  transform: translateY(-2px);
}
.sv-progress-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--red);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.sv-progress-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome);
  line-height: 1.3;
}

.sv-section {
  padding: 70px 0;
  scroll-margin-top: 80px;
  position: relative;
}
.sv-section + .sv-section {
  border-top: 1px solid var(--line);
}
.sv-section-header {
  text-align: center;
  margin-bottom: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sv-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 16px;
  border: 1px solid rgba(255, 45, 61, 0.3);
  background: rgba(255, 45, 61, 0.05);
  margin-bottom: 22px;
}
.sv-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse-dot 1.5s ease-in-out infinite;
  border-radius: 50%;
}
.sv-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--chrome-bright);
  font-stretch: 110%;
}
.sv-section-lead {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

.sv-player-wrap {
  padding: 16px;
  background: linear-gradient(135deg, var(--gunmetal) 0%, var(--carbon-panel) 100%);
  border: 1px solid var(--line-hot);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  position: relative;
}
.sv-player-wrap::before {
  content: "REC ●";
  position: absolute;
  top: -2px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--red);
  z-index: 5;
  animation: pulse-dot 1.5s ease-in-out infinite;
  background: var(--carbon-panel);
  padding: 4px 8px;
  border: 1px solid var(--line-hot);
}
.sv-player {
  background: #000;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.sv-next {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 36px auto 0;
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--titanium);
  border: 1px solid var(--line-hot);
  background: var(--carbon-panel);
  transition: all 0.25s;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  width: max-content;
  display: flex;
}
.sv-section { text-align: center; }
.sv-next:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--carbon-raised);
}
.sv-next svg { transition: transform 0.25s; }
.sv-next:hover svg { transform: translateY(3px); }

.sv-closing {
  padding: 90px 0 120px;
}
.sv-closing-card {
  text-align: center;
  padding: 60px 44px;
  background:
    radial-gradient(ellipse at center top, rgba(255, 45, 61, 0.06), transparent 70%),
    var(--carbon-panel);
  border: 1px solid var(--line-hot);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}
.sv-closing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 20px var(--red-glow);
}
.sv-closing-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 22px 0 22px;
  letter-spacing: -0.02em;
  color: var(--chrome-bright);
  font-stretch: 115%;
}
.sv-closing-lead {
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .sv-header { padding: 60px 0 30px; }
  .sv-section { padding: 50px 0; }
  .sv-closing { padding: 50px 0 70px; }
  .sv-closing-card { padding: 44px 26px; }
}


/* ===== Affiliate page contrast fixes ===== */
/* Hero sits on the cream paper background -> use dark ink, not dark-theme white. Red span stays red. */
.aff-hero h1 { color: var(--ink) !important; }
.aff-hero p { color: var(--ink-mid) !important; }
/* Step + perks cards are dark carbon -> headings must be light/red, beating the global h2-h5 ink override */
.aff-step h4 { color: var(--chrome-bright) !important; }
.aff-step p { color: #c8ccd2 !important; }
.aff-perks h4 { color: var(--red) !important; }

/* Performance: use an opaque paper nav instead of repainting a live backdrop
   blur, and pause decorative motion only while the page is actively moving. */
.nav {
  background: rgba(246, 245, 241, 0.97) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.is-scrolling .pulse-path,
.is-scrolling .ticker-track,
.is-scrolling .process-spine .spine-pulse,
.is-scrolling .step-node .node-inner,
.is-scrolling .hero-eyebrow .dot,
.is-scrolling .eyebrow .dot,
.is-scrolling .vsl-play,
.is-scrolling .vsl-frame::before,
.is-scrolling .tag-new::before,
.is-scrolling .engine-status::before {
  animation-play-state: paused !important;
}

/* Mobile performance: preserve the circuit artwork while freezing the
   paint-heavy glow traces. */
@media (max-width: 768px) {
  .circuit-svg .pulse-path {
    animation: none;
    stroke-dashoffset: 0;
  }

  .process-spine .spine-pulse {
    animation: none;
    filter: none;
    stroke-dashoffset: 0;
  }

  .step-node .node-inner {
    animation: none;
  }
}
