/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: 'WFVisualSans', sans-serif; }

@font-face {
  font-family: 'HelveticaCondensed';
  src: url('fonts/Helvetica Bold Condensed.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'WFVisualSans';
  src: url('fonts/WFVisualSans.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

:root {
  --black:    #151313;
  --bg:       #151313;
  --card:     #1c1a1a;
  --card-2:   #191717;
  --white:    #f5f5f5;
  --light:    #F4F4F4;
  /* Brand red = logo tile (#9e1b2e) — use --red / --red-rgb everywhere */
  --red:      #9e1b2e;
  --red-d:    #6e1420;
  --red-rgb:  158, 27, 46;
  /* Brand green = problem-brain temporal dot (116, 158, 96) */
  --green:    rgb(116, 158, 96);
  --green-rgb: 116, 158, 96;
  --muted:    #888888;
  --border:   rgba(255,255,255,0.07);
  --radius:   14px;
  --font-d:   'WFVisualSans', sans-serif;
  --font-b:   'WFVisualSans', sans-serif;
  --nav-h:    60px;
  --gap:      9px;
  --section-h: clamp(2rem, 3.5vw, 3rem);
  /* Unified motion — crisp, no neon */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-ms: 620ms;
}

html { scroll-behavior: smooth; }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--red);
  z-index: 200;
  pointer-events: none;
  transition: width 80ms linear;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(21,19,19,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 1.2rem;
  letter-spacing: .06em;
  color: var(--white);
}

.btn-red-nav {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-b);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 9px 20px;
  border-radius: 8px;
  transition: background .2s, box-shadow .2s;
}
.btn-red-nav:hover { background: var(--red-d); }
.btn-red-nav:active { filter: brightness(0.9); }

/* ═══════════════════════════════════════════
   BENTO GRID
═══════════════════════════════════════════ */
.bento {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 24px) 20px 24px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* ── CARD BASE ── */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition:
    box-shadow 0.35s var(--ease-premium),
    border-color 0.35s var(--ease-premium);
}

/* Hover glow — subtle lift + border brighten */
.card:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.09),
    0 24px 64px rgba(0,0,0,0.45),
    0 8px 24px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.13);
}

/* Red-tinted glow on action cards */
.offer-price-bento:hover,
.final-price-card:hover {
  box-shadow:
    0 0 0 1px rgba(158,27,46,0.22),
    0 24px 64px rgba(158,27,46,0.14),
    0 8px 24px rgba(0,0,0,0.35);
  border-color: rgba(158,27,46,0.28);
}

/* ═══════════════════════════════════════════
   SHARED ELEMENTS
═══════════════════════════════════════════ */
.red-plus {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 400;
  line-height: 1;
}

.card-label {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fffbea;
  margin-bottom: 16px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
}
.card-label::before {
  content: '// ';
  color: var(--red);
}

.card-label-dark {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fffbea;
  margin-bottom: 16px;
}
.card-label-dark::before {
  content: '// ';
  color: var(--red);
}

.card-h2 {
  font-family: var(--font-d);
  font-size: var(--section-h);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #fafafa;
  margin-bottom: 20px;
  text-wrap: balance;
}

.headline-line {
  display: block;
}

.card-h2-dark {
  font-family: var(--font-d);
  font-size: var(--section-h);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #fafafa;
  margin-bottom: 20px;
  text-wrap: balance;
}

.card-body {
  font-size: .95rem;
  color: #aaaaaa;
  line-height: 1.7;
}

.card-body-dark {
  font-size: .95rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.7;
}

.red-text { color: var(--red); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-red:hover { background: var(--red-d); }
.btn-red:active { filter: brightness(0.9); }

/* Hero primary CTA — same width as the $500 / 24H stats box */
.hero-left > .stat-glow-wrap + .btn-red {
  display: block;
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
  text-align: center;
}

/* ═══════════════════════════════════════════
   HERO CARD
═══════════════════════════════════════════ */
.hero-card {
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px);
  min-height: 640px;
  background: var(--black);
  border-color: rgba(255,255,255,0.1);
  overflow: hidden;
  isolation: isolate;
}

.hero-left {
  position: relative;
  z-index: 3;
  padding: 48px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.label-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fffbea;
  margin-bottom: 20px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.label-tag::before {
  content: '// ';
  color: var(--red);
}

.label-mobile { display: none; }

.hero-h1 {
  font-family: var(--font-d);
  font-size: var(--section-h);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #fafafa;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-h1 span {
  display: block;
}

.hero-eyebrow-sub {
  display: block;
  max-width: 640px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 12px;
  white-space: nowrap;
}

.hero-eyebrow-sub span {
  display: block;
}

.hero-eyebrow-sub span:first-child::before {
  content: none;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.stat-box {
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffffff 0%, #c8c8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-desc {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.hero-pre {
  font-size: .9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-sub-tight {
  margin-top: -16px;
  color: rgba(255,255,255,0.84);
  font-weight: 700;
}

.hero-note {
  margin-top: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.hero-right {
  position: relative;
  z-index: 1;
  background: var(--black);
  border-left: none;
  overflow: hidden;
  min-height: 640px;
  height: 100%;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  background: var(--black);
  pointer-events: none;
}

.photo-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 220px;
  background: var(--red);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(72px);
  z-index: 0;
}

.hero-photo {
  position: absolute;
  left: 50%;
  bottom: -6px;
  z-index: 1;
  width: min(170%, 920px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  filter:
    saturate(0.92)
    contrast(1.06)
    brightness(0.88);
  /* No drop shadow; edges are handled by the background fades. */
}

/* placeholder when no photo */
.hero-photo-wrap:not(:has(.hero-photo[src])) .hero-photo,
.hero-photo[src="images/alex.jpg"]:not([complete]) {
  display: none;
}


.hero-brand {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 3;
}

.hero-brand-logo {
  height: 42px;
  width: auto;
  display: block;
  opacity: 0.42;
}

/* Bottom dissolution only. Desktop extends this behind the left column. */
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      transparent                0%,
      transparent                54%,
      rgba(21,19,19,0.30)        72%,
      rgba(21,19,19,0.72)        90%,
      var(--black)               100%
    );
}

@media (min-width: 1001px) {
  .hero-right {
    overflow: visible;
  }

  .hero-photo-wrap::before,
  .hero-photo-wrap::after {
    left: -220px;
  }

  .hero-photo-wrap::before {
    display: block;
    -webkit-mask-image: radial-gradient(ellipse 48% 78% at 70% 54%, transparent 0%, transparent 52%, rgba(0,0,0,0.22) 64%, rgba(0,0,0,0.78) 78%, #000 100%);
    mask-image: radial-gradient(ellipse 48% 78% at 70% 54%, transparent 0%, transparent 52%, rgba(0,0,0,0.22) 64%, rgba(0,0,0,0.78) 78%, #000 100%);
  }

  .hero-photo {
    left: 56%;
    bottom: -10px;
    width: min(190%, 980px);
  }
}

/* ═══════════════════════════════════════════
   ROW-2 (2 COLS)
═══════════════════════════════════════════ */
.row-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--gap);
}

.row-2 > .card:only-child {
  grid-column: 1 / -1;
}

/* ── PROBLEM CARD ── */
.problem-card {
  padding: 40px;
  background: #0d0c0c;
  border-color: rgba(255,255,255,0.06);
}

.leak-cards-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 12px;
  border-radius: var(--radius);
  background: #f3f3f1;
  border: 1px solid rgba(255,255,255,0.08);
}

.leak-mini-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-height: 126px;
  transform: perspective(650px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.leak-mini-card:hover {
  background: #ffffff;
  border-color: rgba(0,0,0,0.14);
  transform: perspective(650px) rotateX(-4deg) rotateY(5deg) translateZ(18px) scale(1.035);
  box-shadow: -10px 18px 32px rgba(0,0,0,0.28);
}

.lmc-4 {
  background: #ffffff;
  border-color: rgba(var(--red-rgb),0.2);
}

.lmc-step {
  font-family: var(--font-d);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--red);
}

.lmc-label {
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .06em;
  color: #151313;
  text-align: left;
  line-height: 1.3;
}

.leak-mini-card small {
  display: block;
  max-width: 18ch;
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.38;
  color: rgba(0,0,0,0.5);
}

.tag-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(var(--red-rgb),0.2);
  border-radius: var(--radius);
  background: rgba(var(--red-rgb),0.06);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
}

.tag-pill svg {
  color: var(--red);
  flex-shrink: 0;
}

.tag-pill-copy {
  line-height: 1.3;
}

/* ── WHY CARD ── */
.why-card {
  padding: 40px;
}

.why-sub {
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
}

.chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-size: .88rem;
  color: #cccccc;
  transform: perspective(600px) rotateX(0deg) rotateY(0deg) translateZ(0px);
  transition:
    transform 450ms var(--ease-premium),
    box-shadow 450ms var(--ease-premium);
  will-change: transform;
}

.chip-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.chip-title {
  font-weight: 800;
  color: rgba(255,255,255,0.82);
  line-height: 1.25;
}

.chip-sub {
  font-size: .76rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255,255,255,0.38);
}
.chip:hover {
  transform: perspective(600px) rotateX(-2deg) rotateY(3deg) translateZ(10px) scale(1.015);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.36),
    0 5px 12px rgba(0, 0, 0, 0.2);
}

.chip-plus {
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FIX CARD (white)
═══════════════════════════════════════════ */
.fix-card {
  background: #1a1616;
  border-color: rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 56px;
}

.fix-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.fix-top-left {
  display: contents;
}

.fix-body {
  font-size: .95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 540px;
}

.fix-chips-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fix-chip {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transform: perspective(620px) rotateX(0deg) rotateY(0deg) translateZ(0px);
  transition:
    transform 450ms var(--ease-premium),
    box-shadow 450ms var(--ease-premium),
    border-color 250ms ease,
    background 250ms ease;
  will-change: transform;
  overflow: hidden;
}

.fix-chip::before {
  content: attr(data-step);
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-d);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  letter-spacing: .02em;
  pointer-events: none;
}

.fix-chip:hover {
  transform: perspective(620px) rotateX(-2deg) rotateY(3deg) translateZ(10px) scale(1.012);
  background: rgba(255,255,255,0.04);
  border-color: rgba(var(--red-rgb),0.28);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.32),
    0 6px 14px rgba(0, 0, 0, 0.18);
}

.fix-chip:hover::before {
  color: rgba(255,90,120,0.45);
}

.fix-chip-accent {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.07);
}

.fix-chip-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(var(--red-rgb),0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5a78;
  flex-shrink: 0;
}

.fix-chip-accent .fix-chip-icon {
  background: rgba(var(--red-rgb),0.14);
  color: #ff5a78;
}

.fix-chip-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fix-chip-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.fix-chip-sub {
  font-size: .85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CUSTOMER CORTEX
═══════════════════════════════════════════ */
.cortex-card {
  padding: clamp(32px, 4.8vw, 64px);
  min-height: calc(100vh - var(--nav-h) - 24px);
  background: #1d1918;
  border-color: rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cortex-head {
  max-width: 1080px;
  position: relative;
  z-index: 6;
}

.cortex-head .card-h2 {
  margin-bottom: 14px;
}

.cortex-head p {
  max-width: 980px;
  font-size: clamp(.95rem, 1.25vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.56);
}

.cortex-layout {
  display: block;
  margin-top: clamp(24px, 4vw, 44px);
}

.cortex-brain-stage {
  position: relative;
  min-height: min(780px, 72vh);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: #161313;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  touch-action: none;
  user-select: none;
  perspective: 1200px;
}

.cortex-brain-stage::before {
  content: '';
  display: none;
}

.cortex-brain-stage::after {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
  z-index: 1;
  pointer-events: none;
}

.cortex-stage-label {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.62);
  pointer-events: none;
}

.cortex-stage-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.08),
    0 0 14px rgba(255,255,255,0.34);
}

.brain-wall-visual {
  position: absolute;
  left: 50%;
  top: 53%;
  z-index: 2;
  width: min(82.8vw, 1044px);
  transform: translate(-50%, -50%) rotateX(var(--brain-rx, 0deg)) rotateY(var(--brain-ry, 0deg)) translate3d(var(--brain-tx, 0px), var(--brain-ty, 0px), 0);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.brain-wall-visual::before,
.brain-wall-visual::after {
  display: none;
}

.brain-wall-visual::before {
  display: none;
}

.brain-wall-visual::after {
  display: none;
}

.brain-model {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: none;
  transform: scale(.93);
  transform-origin: 50% 48%;
  will-change: transform;
}

.brain-lines {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}

.brain-line {
  --line-idle: rgba(255,255,255,0.34);
  --line-active: rgba(255,255,255,0.82);
  fill: none;
  stroke: var(--line-idle);
  stroke-width: 1.2;
  opacity: .55;
  vector-effect: non-scaling-stroke;
  transition: stroke 180ms ease, stroke-width 180ms ease, opacity 180ms ease;
}

.brain-line.is-active {
  stroke: var(--line-active);
  stroke-width: 1.8;
  opacity: .95;
}

.brain-line-filter {
  --line-idle: rgba(var(--red-rgb), 0.38);
  --line-active: rgba(var(--red-rgb), 0.92);
}

.brain-line-feeling {
  --line-idle: rgba(155, 160, 154, .36);
  --line-active: rgba(190, 194, 188, .86);
}

.brain-line-understand {
  --line-idle: rgba(229, 214, 184, .36);
  --line-active: rgba(235, 219, 190, .9);
}

.brain-line-proof {
  --line-idle: rgba(var(--green-rgb), 0.36);
  --line-active: rgba(var(--green-rgb), 0.9);
}

.brain-line-decision {
  --line-idle: rgba(137, 105, 76, .36);
  --line-active: rgba(169, 128, 91, .9);
}

.brain-hotspot {
  --hotspot-color: 255, 255, 255;
  --dot-color: 255, 255, 255;
  position: absolute;
  z-index: 7;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(.94);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.58));
  transition: transform 220ms cubic-bezier(.22,1,.36,1), filter 220ms ease;
}

.brain-hotspot::before,
.brain-hotspot::after {
  content: '';
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.brain-hotspot::before {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.62);
  background:
    radial-gradient(circle at 34% 28%,
      rgba(255,255,255,1) 0 9%,
      rgba(248,248,242,.98) 15%,
      rgba(182,182,174,.98) 44%,
      rgba(70,70,66,.98) 100%);
  box-shadow:
    inset 4px 4px 6px rgba(255,255,255,.62),
    inset -5px -6px 8px rgba(0,0,0,.7),
    0 0 0 2px rgba(0,0,0,.78),
    0 0 0 7px rgba(255,255,255,.1),
    0 10px 18px rgba(0,0,0,.62),
    0 0 22px rgba(255,255,255,.28);
}

.brain-hotspot::after {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.42);
  background: radial-gradient(circle, rgba(255,255,255,.1) 0 34%, transparent 62%);
  box-shadow:
    inset 0 0 12px rgba(255,255,255,.12),
    0 0 16px rgba(255,255,255,.2);
  animation: brain-hotspot-pulse 1.9s ease-out infinite;
}

.brain-hotspot:hover,
.brain-hotspot.is-active {
  transform: translate(-50%, -50%) scale(1.08);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.68));
}

.brain-hotspot.is-active::before {
  box-shadow:
    inset 4px 4px 6px rgba(255,255,255,.7),
    inset -5px -6px 8px rgba(0,0,0,.72),
    0 0 0 2px rgba(0,0,0,.78),
    0 0 0 9px rgba(255,255,255,.15),
    0 12px 22px rgba(0,0,0,.68),
    0 0 30px rgba(255,255,255,.38);
}

.brain-hotspot-filter {
  --hotspot-color: var(--red-rgb);
  left: 36%;
  top: 37%;
}

.brain-hotspot-feeling {
  --hotspot-color: 190, 194, 188;
  left: 41%;
  top: 61%;
}

.brain-hotspot-understand {
  --hotspot-color: 235, 219, 190;
  left: 62%;
  top: 37%;
}

.brain-hotspot-proof {
  --hotspot-color: var(--green-rgb);
  left: 70%;
  top: 51%;
}

.brain-hotspot-decision {
  --hotspot-color: 169, 128, 91;
  left: 60%;
  top: 67%;
}

@keyframes brain-hotspot-pulse {
  0% {
    opacity: .36;
    transform: translate(-50%, -50%) scale(.9);
  }
  52% {
    opacity: .64;
    transform: translate(-50%, -50%) scale(1.08);
  }
  100% {
    opacity: .36;
    transform: translate(-50%, -50%) scale(.9);
  }
}

.brain-pop-card {
  --pop-color: var(--red-rgb);
  --pop-from-x: 0px;
  --pop-from-y: 0px;
  --pop-mid-x: 0px;
  --pop-mid-y: 0px;
  position: absolute;
  z-index: 8;
  width: min(280px, 28vw);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--pop-color), .58);
  background:
    linear-gradient(145deg, rgba(18,18,18,.96), rgba(6,6,6,.92)),
    rgba(8, 8, 8, .9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -20px 34px rgba(0,0,0,.24),
    0 28px 54px rgba(0,0,0,.52);
  backdrop-filter: blur(10px);
  transform: perspective(760px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
  transform-origin: 50% 50%;
  transition:
    border-color 180ms ease,
    box-shadow 280ms ease,
    transform 280ms cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}

.brain-pop-card.is-swapping {
  animation: brain-pop-smooth 480ms cubic-bezier(.22,1,.36,1);
}

.brain-pop-title {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -0.04em;
  color: rgb(var(--pop-color));
}

.brain-pop-question {
  display: block;
  margin-top: 9px;
  font-size: .82rem;
  line-height: 1.35;
  color: var(--white);
}

.brain-pop-text {
  margin-top: 10px;
  font-size: .72rem;
  line-height: 1.5;
  color: rgba(255,255,255,.58);
}

.brain-pop-job {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1.25;
  color: rgba(var(--pop-color), .9);
}

.cortex-brain-stage[data-active-step="0"] .brain-pop-card {
  left: 6%;
  right: auto;
  top: 16%;
  bottom: auto;
}

.cortex-brain-stage[data-active-step="1"] .brain-pop-card {
  left: 6%;
  right: auto;
  top: auto;
  bottom: 11%;
}

.cortex-brain-stage[data-active-step="2"] .brain-pop-card {
  left: auto;
  right: 6%;
  top: 14%;
  bottom: auto;
}

.cortex-brain-stage[data-active-step="3"] .brain-pop-card {
  left: auto;
  right: 5%;
  top: 44%;
  bottom: auto;
}

.cortex-brain-stage[data-active-step="4"] .brain-pop-card {
  left: auto;
  right: 8%;
  top: auto;
  bottom: 9%;
}

@keyframes brain-pop-from-dot {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: perspective(860px) translate3d(var(--pop-from-x), var(--pop-from-y), -120px) rotateX(18deg) rotateY(-8deg) scale(.12);
  }
  62% {
    opacity: 1;
    filter: blur(0);
    transform: perspective(860px) translate3d(var(--pop-mid-x), var(--pop-mid-y), 26px) rotateX(-4deg) rotateY(2deg) scale(1.035);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: perspective(860px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
  }
}

/* Smooth swap — clean fade + gentle lift */
@keyframes brain-pop-smooth {
  0%   { opacity: 0; transform: perspective(760px) translateY(10px) scale(.97); filter: blur(3px); }
  55%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: perspective(760px) translateY(0) scale(1); filter: blur(0); }
}

.brain-callout {
  --callout-color: rgba(255,255,255,0.86);
  position: absolute;
  z-index: 5;
  width: 220px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  padding: 0;
  opacity: .64;
  transform: translateZ(0);
  transition: transform 220ms cubic-bezier(.22,1,.36,1), opacity 180ms ease;
}

.brain-callout:hover,
.brain-callout.is-active {
  opacity: 1;
  transform: translateY(-3px);
}

.brain-callout span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 2.45vw, 2.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: .9;
  color: rgba(255,255,255,0.42);
  letter-spacing: -0.04em;
  transition: color 180ms ease;
}

.brain-callout strong {
  display: block;
  max-width: 210px;
  font-family: var(--font-b);
  font-size: .76rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  transition: color 180ms ease;
}

.brain-callout:hover span,
.brain-callout.is-active span {
  color: var(--callout-color);
}

.brain-callout:hover strong,
.brain-callout.is-active strong {
  color: rgba(255,255,255,0.86);
}

.brain-callout-filter {
  --callout-color: rgba(var(--red-rgb), .98);
  left: 6%;
  top: 12%;
}

.brain-callout-feeling {
  --callout-color: rgba(190, 194, 188, .94);
  left: 7%;
  bottom: 12%;
}

.brain-callout-understand {
  --callout-color: rgba(235, 219, 190, .96);
  right: 6%;
  top: 12%;
}

.brain-callout-proof {
  --callout-color: rgba(var(--green-rgb), 0.96);
  right: 5%;
  top: 48%;
}

.brain-callout-decision {
  --callout-color: rgba(169, 128, 91, .96);
  right: 13%;
  bottom: 10%;
}

.cortex-brain-stage.is-dragging .brain-wall-visual {
  transition: none;
}

.cortex-brain-stage.is-dragging {
  cursor: grabbing;
}

/* ═══════════════════════════════════════════
   GET CARD
═══════════════════════════════════════════ */
.get-card {
  padding: 40px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  perspective: 760px;
}

.checklist li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 12px;
  font-size: .9rem;
  color: #cccccc;
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  transform: perspective(760px) rotateX(0deg) translate3d(0,0,0);
  transform-origin: center;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 260ms cubic-bezier(.22,1,.36,1),
    transform 260ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.checklist li svg { margin-top: 3px; flex-shrink: 0; }

.chk-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chk-feature {
  font-size: .88rem;
  color: #cccccc;
  font-weight: 500;
  line-height: 1.3;
}

.chk-benefit {
  font-size: .76rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.4;
}
.checklist li:last-child { border-bottom: none; }
.checklist li:hover {
  z-index: 2;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
  transform: perspective(760px) rotateX(-2.5deg) translate3d(0,-2px,14px);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.chk {
  color: var(--red);
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOR WHO CARD
═══════════════════════════════════════════ */
.for-intro-card {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.for-check-card {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.for-yes-label {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fffbea;
  margin-bottom: 16px;
}

.for-yes-label::before {
  content: '// ';
  color: var(--red);
}

.for-yes .for-yes-label::before {
  color: var(--green);
}

.for-yes ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.for-yes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: #cccccc;
}

.for-no {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.for-no ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.for-no li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,0.5);
}

.for-no-x {
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.for-warn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(var(--red-rgb),.06);
  border: 1px solid rgba(var(--red-rgb),.2);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.warn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.for-warn p {
  font-size: .82rem;
  color: #aaaaaa;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   ATTENTION BENTO
═══════════════════════════════════════════ */
.attention-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: var(--gap);
}

.attention-main-card {
  min-height: 330px;
  padding: 44px 48px;
  background: #0E0D0D;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(240px, .62fr);
  align-items: stretch;
  gap: 34px;
}

.attention-main-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.attention-main-card .card-h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 2.72rem);
  margin-bottom: 0;
}

.attention-copy {
  max-width: 640px;
  margin-top: 24px;
  font-size: .96rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
}

.attention-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-self: stretch;
}

.attention-compare-card {
  position: relative;
  min-height: 124px;
  padding: 18px 18px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.035);
  overflow: hidden;
  transform: perspective(760px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 380ms cubic-bezier(.22,1,.36,1),
    box-shadow 380ms cubic-bezier(.22,1,.36,1),
    border-color 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.attention-compare-card:hover {
  transform: perspective(760px) rotateX(-4deg) rotateY(4deg) translateZ(20px) scale(1.02);
  box-shadow: -12px 18px 34px rgba(0,0,0,0.34);
}

.compare-bad {
  border-color: rgba(var(--red-rgb),0.22);
  background: rgba(var(--red-rgb),0.055);
}

.compare-good {
  border-color: rgba(var(--green-rgb),0.26);
  background: rgba(var(--green-rgb),0.08);
}

.compare-kicker {
  display: block;
  margin-bottom: 14px;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.76);
}

.attention-compare-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attention-compare-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.5);
}

.attention-compare-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.24);
}

.compare-bad li::before {
  background: var(--red);
}

.compare-good li::before {
  background: var(--green);
}

.compare-good li {
  color: rgba(235,255,241,0.78);
}

.attention-equation {
  min-height: 286px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: #111010;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 420ms cubic-bezier(.22,1,.36,1),
    border-color 260ms ease,
    box-shadow 420ms cubic-bezier(.22,1,.36,1);
}

.attention-equation:hover {
  transform: perspective(900px) rotateX(-3deg) rotateY(4deg) translateZ(18px) scale(1.012);
  border-color: rgba(255,255,255,0.14);
  box-shadow: -16px 22px 40px rgba(0,0,0,0.36);
}

.equation-kicker {
  display: block;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
  color: rgba(255,255,255,0.38);
}

.equation-steps {
  display: grid;
  gap: 10px;
}

.equation-steps span {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.66);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.equation-steps i {
  display: none;
}

.equation-result {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(var(--green-rgb),0.28);
  border-radius: var(--radius);
  background: rgba(var(--green-rgb),0.075);
}

.equation-result::before {
  content: '';
  position: absolute;
  left: 18px;
  top: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 9px rgba(var(--green-rgb),0.08);
}

.equation-result strong {
  display: block;
  max-width: 220px;
  color: rgba(235,255,241,0.88);
  font-size: .9rem;
  line-height: 1.25;
  font-weight: 900;
}

.attention-side {
  min-height: 330px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--gap);
}

.attention-rule-card {
  padding: 22px 26px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background: var(--card);
  border-color: rgba(255,255,255,0.08);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  color: rgba(255,255,255,0.62);
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.attention-rule-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.attention-rule-copy span {
  display: block;
}

.attention-rule-copy small {
  display: block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.25;
  color: rgba(255,255,255,0.3);
}

.attention-rule-card:hover {
  transform: perspective(800px) rotateX(-4deg) rotateY(5deg) translateZ(22px) scale(1.025);
  border-color: rgba(255,255,255,0.16);
  box-shadow:
    -14px 20px 40px rgba(0,0,0,0.38),
    0 0 0 1px rgba(255,255,255,0.04);
}

.attention-icon {
  flex-shrink: 0;
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.attention-icon-no {
  border: 1px solid rgba(var(--red-rgb),0.3);
  background: rgba(var(--red-rgb),0.08);
}

.attention-icon-no::before,
.attention-icon-no::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  border-radius: var(--radius);
  background: var(--red);
}

.attention-icon-no::before { transform: rotate(45deg); }
.attention-icon-no::after { transform: rotate(-45deg); }

.attention-icon-focus {
  border: 1px solid rgba(var(--green-rgb),0.28);
  background: rgba(var(--green-rgb),0.12);
}

.attention-icon-focus::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(var(--green-rgb),0.12);
}

.attention-rule-good {
  background: var(--light);
  color: var(--black);
  border-color: rgba(0,0,0,0.08);
}

.attention-rule-good .attention-rule-copy small {
  color: rgba(0,0,0,0.46);
}

.attention-rule-good::after {
  content: '';
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
  height: 2px;
  border-radius: var(--radius);
  background: rgba(var(--green-rgb),0.34);
  opacity: .62;
  transform-origin: left;
  transform: scaleX(.38);
  transition: transform 420ms cubic-bezier(.22,1,.36,1), opacity 220ms ease;
}

.attention-rule-good:hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow:
    -14px 20px 40px rgba(0,0,0,0.18),
    0 0 0 1px rgba(0,0,0,0.04);
}

.attention-rule-good:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.attention-flow-card {
  grid-column: 1 / -1;
  padding: 32px 36px 34px;
  background: #111010;
  border-color: rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.attention-flow-copy .card-label {
  margin-bottom: 10px;
}

.attention-flow-copy p {
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--white);
  white-space: nowrap;
}

.attention-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}

.attention-flow::before {
  display: none;
}

.attention-flow-step {
  --flow-delay: 0s;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "dot title"
    ". sub";
  align-items: center;
  column-gap: 10px;
  row-gap: 7px;
  text-align: left;
  min-width: 0;
  min-height: 92px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.035);
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 380ms cubic-bezier(.22,1,.36,1),
    box-shadow 380ms cubic-bezier(.22,1,.36,1),
    border-color 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.attention-flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  width: 12px;
  height: 1px;
  background: rgba(255,255,255,0.14);
  transform: translateY(-50%);
}

.attention-flow-step:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.16);
  transform: perspective(800px) rotateX(-4deg) rotateY(4deg) translateZ(20px) scale(1.02);
  box-shadow: -12px 18px 34px rgba(0,0,0,0.34);
}

.attention-flow-step:last-child {
  border-color: rgba(var(--green-rgb),0.28);
  background: rgba(var(--green-rgb),0.08);
}

.attention-flow-step:last-child:hover {
  border-color: rgba(var(--green-rgb),0.4);
  background: rgba(var(--green-rgb),0.12);
}

.attention-flow-step:nth-of-type(1) { --flow-delay: 0s; }
.attention-flow-step:nth-of-type(2) { --flow-delay: 1.1s; }
.attention-flow-step:nth-of-type(3) { --flow-delay: 2.2s; }
.attention-flow-step:nth-of-type(4) { --flow-delay: 3.3s; }

.attention-flow-dot {
  grid-area: dot;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333030;
  border: 1px solid rgba(255,255,255,0.18);
  margin: 0;
  animation: attention-dot-focus 4.4s ease-in-out infinite;
  animation-delay: var(--flow-delay);
}

.attention-flow-step:last-child .attention-flow-dot {
  animation-name: attention-dot-focus-green;
}

.attention-flow-title {
  grid-area: title;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--white);
}

.attention-flow-sub {
  grid-area: sub;
  max-width: none;
  font-size: .72rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.36);
}

/* ═══════════════════════════════════════════
   SAVE THE CLICKS GAME
═══════════════════════════════════════════ */
.click-game-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(var(--red-rgb),0.10), transparent 60%),
    #0c0a0a;
  border-color: rgba(255,255,255,0.08);
}

.click-game-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.click-game-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.click-game-intro {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin-top: 4px;
}

.game-page-word {
  color: #43d97a;
  font-weight: 800;
}

.game-doubt-word {
  color: #ff5a78;
  font-weight: 800;
}

/* Scoreboard */
.click-game-scoreboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}

.game-score {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
  padding: 16px 22px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  position: relative;
  overflow: hidden;
}

.game-score::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--score-color, var(--white));
}

.game-score-saved {
  --score-color: var(--green);
}

.game-score-lost {
  --score-color: #ff5a78;
}

.game-score-label {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.game-score-num {
  font-family: var(--font-d);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--score-color, var(--white));
}

.game-score-sub {
  font-size: .62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Hint */
.click-game-hint {
  margin-top: 10px;
  text-align: center;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

/* Rail labels */
.game-rail-label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.game-rail-bio { color: rgba(255,255,255,0.45); }
.game-rail-doubt { text-align: center; color: rgba(255,90,120,0.85); }
.game-rail-dm { text-align: right; color: #43d97a; }

@media (max-width: 768px) {
  .click-game-header { grid-template-columns: 1fr; }
  .click-game-scoreboard { grid-template-columns: 1fr 1fr; }
  .game-score-num { font-size: 1.8rem; }
}

.click-game-copy .card-h2 {
  margin-bottom: 18px;
  max-width: 660px;
}

.click-game-copy p {
  width: 100%;
  max-width: none;
  font-size: .92rem;
  line-height: 1.68;
  color: rgba(var(--part-rgb), .9);
}

.game-after-note {
  margin: -8px 0 0;
  max-width: 860px;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.click-game-copy strong {
  color: var(--white);
  font-weight: 900;
}

.game-proof-copy {
  color: var(--white);
  font-weight: 900;
}

.click-game-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.click-game-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 8px 12px;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.legend-visitor { background: rgba(255,255,255,0.72); }
.legend-page {
  background: var(--green);
}
.legend-confusion {
  background: var(--red);
}

.click-game-stage {
  min-width: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: #121010;
  padding: 16px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.click-game-top,
.click-game-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
}

.click-game-top {
  margin-bottom: 10px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.36);
}

.click-game-top span:nth-child(2) { text-align: center; color: rgba(var(--red-rgb),0.82); }
.click-game-top span:nth-child(3) { text-align: right; color: #7de89a; }

#clickGameCanvas {
  display: block;
  width: 100%;
  aspect-ratio: 2.55 / 1;
  height: auto;
  min-height: 330px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: #101010;
  cursor: default;
  touch-action: none;
}

#clickGameCanvas.is-running {
  cursor: none;
}

.click-game-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.click-game-bottom div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.click-game-bottom div:first-child {
  align-items: flex-start;
}

.click-game-bottom div:last-child {
  align-items: flex-end;
}

.click-game-bottom span {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--white);
}

#gameSaved { color: var(--green); }
#gameLost { color: var(--red); }

.click-game-bottom small {
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.36);
}

@keyframes attention-dot-focus {
  0%, 6%, 24%, 100% {
    background: #333030;
    border-color: rgba(255,255,255,0.18);
    box-shadow: none;
  }
  9%, 19% {
    background: var(--red);
    border-color: rgba(var(--red-rgb),0.9);
    box-shadow: 0 0 0 5px rgba(var(--red-rgb),0.14), 0 0 18px rgba(var(--red-rgb),0.35);
  }
}

@keyframes attention-dot-focus-green {
  0%, 6%, 24%, 100% {
    background: rgba(var(--green-rgb),0.5);
    border-color: rgba(var(--green-rgb),0.35);
    box-shadow: none;
  }
  9%, 19% {
    background: var(--green);
    border-color: rgba(var(--green-rgb),0.95);
    box-shadow: 0 0 0 5px rgba(var(--green-rgb),0.14), 0 0 18px rgba(var(--green-rgb),0.34);
  }
}

/* ── ONE MORE THING CARD ───────────────────────────────── */
.omt-card {
  padding: 40px 48px;
  background: #0E0D0D;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.omt-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 3-column chip grid */
.omt-chips-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.omt-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.omt-chip-accent {
  background: rgba(var(--red-rgb),0.08);
  border-color: rgba(var(--red-rgb),0.2);
}

.omt-chip-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.omt-chip-accent .omt-chip-icon {
  background: rgba(var(--red-rgb),0.15);
  color: var(--red);
}

.omt-chip-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.omt-chip-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.omt-chip-sub {
  font-size: .8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.omt-right {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.omt-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.omt-point {
  font-size: .88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.omt-kicker {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fffbea;
  margin-top: 4px;
}

.omt-kicker::before {
  content: '// ';
  color: var(--red);
}

.omt-quote {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.55;
  margin: 0 0 16px;
  padding-left: 20px;
  border-left: 3px solid var(--red);
}

.omt-cite {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 18px;
  padding-left: 20px;
}

.omt-context {
  font-size: .82rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.55;
  padding-left: 20px;
}

/* ── OMT QUOTE CARD (Vlasov-style) ── */

/* Wrapper */
.omt-quote-wrap {
  position: relative;
  width: 100%;
}

/* The light card itself */
.omt-qcard {
  position: relative;
  width: 100%;
  background: #f2f0ef;
  border-radius: var(--radius);
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Two overlapping profile photos */
.omt-qprofiles {
  display: flex;
  align-items: center;
}

.omt-qprofile {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #f2f0ef;
  flex-shrink: 0;
}

.omt-qprofile:nth-child(2) {
  margin-left: -14px;
}

.omt-qphoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.omt-qtext {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #1a1818;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin: 0;
}

.omt-qtext strong {
  color: var(--red);
  font-weight: 800;
}

/* Final card gray audit box */
.final-audit-box {
  position: relative;
  background:
    linear-gradient(135deg, rgba(var(--red-rgb),0.14), rgba(var(--red-rgb),0.04) 60%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(var(--red-rgb),0.4);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 20px;
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.final-audit-box p {
  font-size: .98rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

.final-audit-box p strong,
.final-audit-box p b { color: var(--white); font-weight: 700; }

/* ── PROOF CARD ────────────────────────────────────────── */
.proof-card {
  padding: 40px;
  background: #0E0D0D;
}

.proof-card .card-h2 {
  max-width: 720px;
}

.proof-card .card-body {
  max-width: 980px;
  font-size: 1rem;
}

.proof-footnote {
  margin: 28px 0 0;
  padding-top: 22px;
  max-width: 900px;
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.56);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.proof-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr);
  gap: 12px;
  margin-top: 28px;
  align-items: stretch;
}

.proof-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  border: 1px solid var(--border);
}

.proof-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
  display: block;
}

.proof-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

.proof-video-placeholder svg {
  opacity: 0.3;
}

.proof-video-placeholder span {
  font-size: .78rem;
  letter-spacing: .08em;
}

.proof-video-placeholder small {
  display: block;
  margin-top: -6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.32);
}

.proof-testimonial-card {
  position: relative;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 28px;
  background: var(--red);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  transform: perspective(700px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 200ms ease;
}

.proof-testimonial-card:hover {
  border-color: rgba(255,255,255,0.28);
  transform: perspective(700px) rotateX(-4deg) rotateY(5deg) translateY(-4px) translateZ(18px) scale(1.02);
  box-shadow:
    -14px 20px 40px rgba(0,0,0,0.38),
    0 0 0 1px rgba(255,255,255,0.04);
}

.proof-testimonial-label {
  display: block;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.proof-testimonial-label::before {
  content: '// ';
  color: rgba(255,255,255,0.72);
}

.proof-testimonial-card blockquote {
  margin: 0;
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.proof-testimonial-card cite {
  display: block;
  margin: 0;
  font-style: normal;
  color: rgba(255,255,255,0.78);
  font-size: .84rem;
  line-height: 1.55;
  font-weight: 700;
}

.proof-testimonial-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.proof-testimonial-points span {
  min-width: 0;
  border-radius: 8px;
  padding: 10px 8px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-align: center;
}

.proof-diagnosis-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.proof-diagnosis-row div {
  position: relative;
  min-height: 104px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  border-left-width: 3px;
  border-left-color: rgba(255,255,255,0.14);
  background:
    linear-gradient(165deg, rgba(255,255,255,0.05) 0%, transparent 42%),
    rgba(255,255,255,0.028);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 10px 28px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: perspective(700px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 360ms cubic-bezier(.22,1,.36,1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 360ms cubic-bezier(.22,1,.36,1);
}

/* Stage cues: tension → pivot → outcome */
.proof-diagnosis-row div:nth-child(1) {
  border-left-color: rgba(var(--red-rgb), 0.52);
  background:
    linear-gradient(155deg, rgba(var(--red-rgb), 0.11) 0%, transparent 55%),
    linear-gradient(165deg, rgba(255,255,255,0.04) 0%, transparent 40%),
    rgba(255,255,255,0.02);
}

.proof-diagnosis-row div:nth-child(2) {
  border-left-color: rgba(255,255,255,0.38);
  background:
    linear-gradient(155deg, rgba(255,255,255,0.07) 0%, transparent 50%),
    rgba(255,255,255,0.025);
}

.proof-diagnosis-row div:nth-child(3) {
  border-left-color: rgba(var(--green-rgb), 0.48);
  background:
    linear-gradient(155deg, rgba(var(--green-rgb), 0.1) 0%, transparent 55%),
    linear-gradient(165deg, rgba(255,255,255,0.04) 0%, transparent 40%),
    rgba(255,255,255,0.02);
}

@media (hover: hover) and (pointer: fine) {
  .proof-diagnosis-row div:hover {
    border-color: rgba(255,255,255,0.16);
    transform: perspective(700px) rotateX(-2.5deg) rotateY(3deg) translateZ(12px) scale(1.012);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.09),
      -10px 22px 38px rgba(0,0,0,0.34);
  }

  .proof-diagnosis-row div:nth-child(1):hover {
    border-left-color: rgba(var(--red-rgb), 0.72);
  }

  .proof-diagnosis-row div:nth-child(3):hover {
    border-left-color: rgba(var(--green-rgb), 0.65);
  }
}

.proof-diagnosis-row span {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 6px;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255,255,255,0.72);
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.1);
}

.proof-diagnosis-row div:nth-child(1) span {
  color: rgba(255,230,232,0.92);
  border-color: rgba(var(--red-rgb), 0.35);
  background: rgba(var(--red-rgb), 0.12);
}

.proof-diagnosis-row div:nth-child(2) span {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.14);
}

.proof-diagnosis-row div:nth-child(3) span {
  color: rgba(230,248,228,0.95);
  border-color: rgba(var(--green-rgb), 0.35);
  background: rgba(var(--green-rgb), 0.1);
}

.proof-diagnosis-row strong {
  font-size: clamp(0.88rem, 1.35vw, 0.95rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: var(--white);
}

.proof-message-card {
  position: relative;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: perspective(700px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 200ms ease;
}

.proof-message-card:hover {
  border-color: rgba(255,255,255,0.22);
  transform: perspective(700px) rotateX(-4deg) rotateY(5deg) translateY(-4px) translateZ(18px) scale(1.02);
  box-shadow:
    -14px 20px 40px rgba(0,0,0,0.38),
    0 0 0 1px rgba(255,255,255,0.04);
}

.proof-message-card:hover .proof-message-placeholder {
  transform: scale(1.025) rotate(-.35deg);
}

.proof-message-label {
  display: block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.42);
  margin-bottom: 14px;
}

.proof-message-placeholder {
  min-height: 240px;
  border-radius: var(--radius);
  background: #f2f0ef;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 18px;
  color: #171414;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  transform: scale(1);
  transition: transform 420ms cubic-bezier(.22,1,.36,1), box-shadow 420ms cubic-bezier(.22,1,.36,1);
}

.proof-message-placeholder img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: var(--radius);
  object-fit: contain;
  background: #f2f0ef;
  display: block;
}

.proof-message-topline {
  display: flex;
  gap: 6px;
}

.proof-message-topline span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
}

.proof-message-bubble {
  border-radius: var(--radius) var(--radius) var(--radius) 6px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  padding: 18px;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
}

.proof-message-note {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.4;
  color: rgba(0,0,0,0.36);
}

.proof-message-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .1em;
  opacity: 0;
  transform: translateY(6px) scale(.95);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.proof-message-card:has(img) {
  cursor: zoom-in;
}

.proof-message-card:has(img):hover .proof-message-zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.proof-quote-big {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--white);
  line-height: 1.5;
  font-weight: 400;
  quotes: none;
}

.proof-quote-big::before {
  content: '"';
  font-family: var(--font-b);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.6em;
  color: var(--red);
  margin-right: 4px;
}

.proof-cite {
  display: block;
  font-style: normal;
  font-size: .78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   PROBLEM POINTS ACCORDION
═══════════════════════════════════════════ */
.problem-points {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pp-item {
  border-bottom: 1px solid var(--border);
  transform: perspective(700px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pp-item:hover {
  transform: perspective(700px) rotateX(-2.5deg) rotateY(3deg) translateZ(12px);
  box-shadow: -8px 12px 24px rgba(0,0,0,0.24);
}

.pp-item:last-child {
  border-bottom: none;
}

.pp-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
  border-left: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.pp-head:hover {
  background: rgba(255,255,255,0.04);
  border-left-color: rgba(var(--red-rgb),0.4);
}

.pp-item.open .pp-head {
  background: rgba(255,255,255,0.03);
  border-left-color: var(--red);
}

.pp-num {
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 0.05em;
  min-width: 28px;
  line-height: 1;
}

.pp-title {
  flex: 1;
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.pp-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  transition: transform 0.25s, color 0.25s, background 0.25s, border-color 0.25s;
  flex-shrink: 0;
  line-height: 1;
}

.pp-item.open .pp-toggle {
  transform: rotate(45deg);
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.pp-body {
  max-height: 0;
  overflow: hidden;
  transform-origin: top center;
  transform: perspective(500px) rotateX(-6deg);
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1),
              transform  0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.pp-body-inner {
  padding: 18px 28px 24px 64px;
  font-size: .86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.pp-item.open .pp-body {
  max-height: 180px;
  transform: perspective(500px) rotateX(0deg);
}

/* ═══════════════════════════════════════════
   AUDIT CTA CARD
═══════════════════════════════════════════ */
.audit-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--black);
  border-color: rgba(var(--red-rgb),.25);
}

.audit-left {
  padding: 48px;
  border-right: 1px solid rgba(var(--red-rgb),.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audit-right {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.audit-body {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
}

.audit-body strong {
  color: var(--white);
  font-weight: 700;
}

.audit-nots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 8px;
}

.audit-nots li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
}

.audit-nots li svg {
  flex-shrink: 0;
}

.audit-nots-check svg {
  /* color handled by .chk-green */
}

.offer-steps-label {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fffbea;
  margin-bottom: 16px;
}
.offer-steps-label::before {
  content: '// ';
  color: var(--red);
}

/* ═══════════════════════════════════════════
   OFFER CARD
═══════════════════════════════════════════ */
.offer-main-card {
  background: var(--card);
  border-color: rgba(255,255,255,0.08);
  padding: 52px 56px 44px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.offer-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.offer-hero-copy {
  min-width: 0;
}

.offer-hero-copy > .card-label {
  color: #fffbea;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.48);
  position: relative;
  z-index: 1;
}

.offer-main-h2 {
  font-family: var(--font-d);
  font-size: var(--section-h);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #fafafa;
  margin: 12px 0 0;
}

.offer-main-h2 .headline-line {
  display: block;
}

/* Clock Badge — logo as dial, hands animate over centre */
button.offer-clock-badge {
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.offer-clock-badge {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-clock-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius);
}

/* Square mark SVG / favicon-style dial — centred, contained (dimmed so hands read clearly) */
.offer-clock-face .offer-clock-logo {
  width: 80%;
  height: 80%;
  max-width: 136px;
  max-height: 136px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  filter: brightness(0.42) saturate(0.88);
  opacity: 0.94;
}

.offer-clock-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.offer-clock-hands-g {
  pointer-events: none;
}

/* Minute / hour keep 12:1 ratio; faster than real-time for visible motion */
.offer-clock-h {
  transform-origin: 100px 100px;
  animation: offer-clock-hand-turn 144s linear infinite;
}

.offer-clock-m {
  transform-origin: 100px 100px;
  animation: offer-clock-hand-turn 12s linear infinite;
}

@keyframes offer-clock-hand-turn {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (hover: hover) and (pointer: fine) {
  .offer-clock-badge {
    transition: transform 380ms var(--ease-premium, cubic-bezier(.22, 1, .36, 1));
  }

  .offer-clock-badge:hover {
    transform: scale(1.02);
  }
}

.offer-clock-badge:focus-visible {
  outline: 2px solid rgba(var(--red-rgb),0.55);
  outline-offset: 6px;
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  .offer-clock-h,
  .offer-clock-m {
    animation: none;
  }

  .offer-clock-h {
    transform: rotate(-38deg);
  }

  .offer-clock-m {
    transform: rotate(142deg);
  }
}

@media (max-width: 768px) {
  .offer-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .offer-clock-badge { width: 140px; height: 140px; margin: 0 auto; }
}

.offer-main-h2 .headline-line {
  display: inline;
}

.offer-main-h2 .headline-line + .headline-line::before {
  content: ' ';
}

.offer-milestone-caption {
  margin: 18px 0 0;
  max-width: 40rem;
  display: block;
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   OFFER MILESTONE TRACK (3-step progress)
═══════════════════════════════════════════ */
.offer-milestone-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  margin-bottom: 4px;
  width: 100%;
}

/* Node wrapper — interactive step buttons */
button.offer-ms-node {
  appearance: none;
  background: transparent;
  border: none;
  margin: 0;
  padding: 6px 10px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 280ms ease, background-color 280ms ease;
}

button.offer-ms-node:focus-visible {
  outline: 2px solid rgba(var(--red-rgb),0.55);
  outline-offset: 3px;
}

button.offer-ms-node:active {
  transform: scale(0.97);
}

.offer-ms-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.offer-ms-node.is-active .offer-ms-dot {
  transform: scale(1.08);
}

.offer-ms-node.is-active.offer-ms-done .offer-ms-dot {
  border-color: rgba(var(--red-rgb),0.72);
  background: rgba(var(--red-rgb),0.11);
}

.offer-ms-node.is-active.offer-ms-building .offer-ms-dot {
  border-color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.09);
}

.offer-ms-node.is-active.offer-ms-live .offer-ms-dot {
  border-color: rgba(var(--green-rgb),0.62);
  background: rgba(var(--green-rgb),0.11);
}

/* The circle */
.offer-ms-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    transform 420ms var(--ease-premium, cubic-bezier(.22, 1, .36, 1)),
    border-color 380ms ease,
    background 380ms ease,
    box-shadow 380ms ease;
}

/* Start node — red ring with pulsing dot */
.offer-ms-done .offer-ms-dot {
  border-color: rgba(var(--red-rgb),0.55);
  background: rgba(var(--red-rgb),0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  color: var(--red);
}

.offer-ms-start-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

/* Building node — gentle ring */
.offer-ms-building .offer-ms-dot {
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.offer-ms-inner-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
}

/* Live node — green */
.offer-ms-live .offer-ms-dot {
  border-color: rgba(var(--green-rgb),0.45);
  background: rgba(var(--green-rgb),0.06);
}

.offer-ms-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

/* Label under each node */
.offer-ms-label {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}

.offer-ms-done .offer-ms-label {
  color: var(--white);
}

.offer-ms-building .offer-ms-label {
  color: rgba(255,255,255,0.75);
}

.offer-ms-live .offer-ms-label {
  color: rgba(var(--green-rgb),0.75);
}

/* Bar between nodes */
.offer-ms-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.offer-ms-fill {
  position: absolute;
  inset: 0;
  transform: scaleX(var(--offer-fill, 0));
  transform-origin: left center;
  transition: transform 0.72s var(--ease-premium, cubic-bezier(.22, 1, .36, 1));
  background: linear-gradient(
    90deg,
    rgba(var(--red-rgb),0.42) 0%,
    rgba(var(--red-rgb),0.62) 50%,
    rgba(var(--red-rgb),0.42) 100%
  );
  background-size: 180% 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Traveling highlight along filled segments (ambient, post-intro) */
.offer-ms-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

.offer-milestone-track.offer-timeline-ambient .offer-ms-fill::after {
  opacity: 1;
  animation: offer-ms-fill-sweep 2.4s ease-in-out infinite;
}

.offer-milestone-track.offer-timeline-ambient .offer-ms-bar:nth-child(4) .offer-ms-fill::after {
  animation-delay: 0.55s;
}

@keyframes offer-ms-fill-sweep {
  0% {
    transform: translateX(-100%);
    opacity: 0.15;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0.15;
  }
}

/* Sequential soft pulse on nodes — reads as flow Start → Build → Live */
.offer-milestone-track.offer-timeline-ambient .offer-ms-done .offer-ms-dot {
  animation: offer-ms-node-glow-red 3.2s ease-in-out infinite;
}

.offer-milestone-track.offer-timeline-ambient .offer-ms-building .offer-ms-dot {
  animation: offer-ms-node-glow-white 3.2s ease-in-out infinite;
  animation-delay: 1.05s;
}

.offer-milestone-track.offer-timeline-ambient .offer-ms-live .offer-ms-dot {
  animation: offer-ms-node-glow-green 3.2s ease-in-out infinite;
  animation-delay: 2.1s;
}

@keyframes offer-ms-node-glow-red {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 0 0 rgba(var(--red-rgb), 0);
  }
  40% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 20px 1px rgba(var(--red-rgb), 0.38);
  }
}

@keyframes offer-ms-node-glow-white {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 0 0 rgba(255, 255, 255, 0);
  }
  40% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 18px 2px rgba(255, 255, 255, 0.22);
  }
}

@keyframes offer-ms-node-glow-green {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 0 0 rgba(var(--green-rgb), 0);
  }
  40% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 20px 1px rgba(var(--green-rgb), 0.42);
  }
}

.offer-milestone-track.offer-timeline-ambient .offer-ms-start-dot,
.offer-milestone-track.offer-timeline-ambient .offer-ms-inner-pulse,
.offer-milestone-track.offer-timeline-ambient .offer-ms-live-dot {
  animation: offer-ms-inner-breathe 3.2s ease-in-out infinite;
}

.offer-milestone-track.offer-timeline-ambient .offer-ms-building .offer-ms-inner-pulse {
  animation-delay: 1.05s;
}

.offer-milestone-track.offer-timeline-ambient .offer-ms-live .offer-ms-live-dot {
  animation-delay: 2.1s;
}

@keyframes offer-ms-inner-breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  45% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-ms-fill {
    transition: none;
  }

  .offer-milestone-track.offer-timeline-ambient .offer-ms-fill::after,
  .offer-milestone-track.offer-timeline-ambient .offer-ms-dot,
  .offer-milestone-track.offer-timeline-ambient .offer-ms-start-dot,
  .offer-milestone-track.offer-timeline-ambient .offer-ms-inner-pulse,
  .offer-milestone-track.offer-timeline-ambient .offer-ms-live-dot {
    animation: none !important;
  }

  .offer-milestone-track.offer-timeline-ambient .offer-ms-fill::after {
    opacity: 0;
  }
}

/* legacy time-strip kept for other possible uses */
.offer-time-strip {
  width: 100%;
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.offer-time-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  color: rgba(255,255,255,0.38);
}

.offer-time-label-live {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.offer-time-label-live strong {
  color: var(--red);
  font: inherit;
}

.offer-time-track {
  position: relative;
  height: 38px;
  padding: 0 10px;
}

.offer-time-track::before {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.14);
  transform: translateY(-50%);
}

.offer-time-fill {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  border-radius: var(--radius);
  background: var(--red);
  box-shadow: 0 0 18px rgba(var(--red-rgb),0.28);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  animation: offer-time-fill 2.8s cubic-bezier(.55,0,.15,1) infinite;
}

.offer-hour {
  position: absolute;
  z-index: 3;
  left: var(--p);
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  color: rgba(255,255,255,0.36);
  text-align: center;
}

.offer-hour-live {
  color: var(--white);
}

@keyframes offer-time-fill {
  0% {
    opacity: .72;
    transform: translateY(-50%) scaleX(0);
  }
  78% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) scaleX(1);
  }
}

.offer-main-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.offer-main-spots-note {
  display: block;
  max-width: min(40rem, 980px);
  font-size: clamp(0.8rem, 1.45vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.55;
  color: rgba(255, 250, 244, 0.96);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
  margin: 16px 0 0;
}

.offer-main-spots-note::before {
  content: none;
}

.offer-main-slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-main-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.35);
}

.offer-main-meta .spots-sep {
  color: rgba(255,255,255,0.24);
}

.offer-cards-row {
  grid-template-columns: 1fr 1fr;
}

.offer-price-bento {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #0d0c0c;
  border-color: rgba(255,255,255,0.1);
}

.offer-steps-card {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #111010;
  border-color: rgba(255,255,255,0.08);
}

.offer-h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: .9;
  letter-spacing: -0.035em;
  color: var(--white);
  text-wrap: balance;
}

.offer-h2-wrap {
  width: 100%;
}

.offer-h2-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.offer-h2-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-spots-note {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}

.clocks-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

/* Different starting times via negative animation delay */
.clock-1 .clock-hour   { animation-delay: 0s; }
.clock-1 .clock-minute { animation-delay: 0s; }

.clock-2 .clock-hour   { animation-delay: -2.67s; }
.clock-2 .clock-minute { animation-delay: -0.67s; }

.clock-3 .clock-hour   { animation-delay: -5.33s; }
.clock-3 .clock-minute { animation-delay: -1.33s; }

.clock-wrap {
  flex-shrink: 0;
}

.clock-svg {
  width: 72px;
  height: 72px;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.clock-wrap:hover .clock-svg {
  transform: perspective(900px) rotateX(-4deg) rotateY(6deg) translateZ(28px) scale(1.2);
}

.clock-hour {
  animation: rotate-hour 8s linear infinite;
  transform-origin: 32px 32px;
}

.clock-minute {
  animation: rotate-minute 2s linear infinite;
  transform-origin: 32px 32px;
}

@keyframes rotate-hour {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes rotate-minute {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* legacy no longer used as wrappers */
.offer-price-col { display: contents; }
.offer-body { display: contents; }

.offer-price {
  font-family: var(--font-d);
  font-size: 5rem;
  line-height: 1;
  letter-spacing: .02em;
  color: #111111;
}

.offer-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -4px;
  margin-bottom: 4px;
}

.offer-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #111111;
}

.offer-chk {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.offer-split-note {
  font-size: .72rem;
  color: #555;
  line-height: 1.5;
  margin-top: 4px;
}

/* Spots live counter */
.spots-live {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

/* Slot dots */
.slots-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}

.slot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.slot::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  opacity: 0;
}

.slot-taken {
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(var(--red-rgb),0.3), 0 0 10px rgba(var(--red-rgb),0.22);
}

.slot-taken::after {
  display: none;
}

.slot-open {
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(var(--green-rgb),0.25), 0 0 14px rgba(var(--green-rgb),0.42);
  animation: slot-dot-pulse 1.9s ease-in-out infinite;
}

.slot-open::after {
  border: 1px solid rgba(var(--green-rgb),0.42);
  animation: slot-dot-ring 1.9s ease-in-out infinite;
}

.slot:nth-child(2) { animation-delay: .18s; }
.slot:nth-child(3) { animation-delay: .36s; }

@keyframes slot-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: .55; }
}

@keyframes slot-dot-ring {
  0% { transform: scale(.6); opacity: 0; }
  35% { opacity: .65; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* Text row below slots */
.spots-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #666;
}

.spots-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: dot-pulse 2.2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.spots-sep {
  color: #333;
}

.btn-offer {
  width: fit-content;
  margin-top: 8px;
}

.offer-guarantee {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 320px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.offer-guarantee svg {
  flex-shrink: 0;
  color: var(--red);
}

.offer-guarantee p {
  font-size: .82rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.65;
  text-align: left;
}

.offer-steps-col {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.offer-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 16px;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  transform: perspective(600px) rotateX(0deg) rotateY(0deg) translateZ(0px);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 450ms cubic-bezier(0.22, 1, 0.36, 1),
              background 200ms ease;
  will-change: transform;
}
.offer-step:last-child { border-bottom: none; }
.offer-step:hover {
  background: rgba(255,255,255,0.03);
  transform: perspective(600px) rotateX(-4deg) rotateY(6deg) translateZ(20px) scale(1.03);
  box-shadow:
    -12px 20px 40px rgba(0,0,0,0.45),
    -4px 6px 14px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.06);
}

.step-num {
  font-family: var(--font-d);
  font-size: 2.2rem;
  color: var(--red);
  letter-spacing: .04em;
  flex-shrink: 0;
  width: 52px;
}

.offer-step p {
  font-size: 1rem;
  font-weight: 600;
  color: #cccccc;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   DM THREAD (How it works)
═══════════════════════════════════════════ */
.dm-canvas {
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 330px;
  display: flex;
  align-items: center;
  flex: 1;
  box-shadow: none;
}

.dm-thread {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

/* Hidden by default JS reveals each in sequence */
.dm-msg,
.dm-typing {
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: opacity 260ms cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dm-msg.dm-show,
.dm-typing.dm-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.dm-typing.dm-hide {
  opacity: 0;
  transform: translateY(4px) scale(0.97);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dm-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.dm-row-left  { flex-direction: row; justify-content: flex-start; }
.dm-row-right { flex-direction: row-reverse; justify-content: flex-start; }

.dm-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--border);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dm-name {
  font-size: .62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: .04em;
  margin-bottom: 4px;
  align-self: flex-end;
}

.dm-bubble {
  max-width: 75%;
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.dm-bubble-left {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px var(--radius) var(--radius) var(--radius);
  color: rgba(255,255,255,0.75);
}

.dm-bubble-right {
  background: var(--red);
  border-radius: var(--radius) 4px var(--radius) var(--radius);
  color: rgba(255,255,255,0.92);
}

/* Typing bubble */
.dm-bubble-typing {
  padding: 10px 16px;
  gap: 5px;
  align-items: center;
  min-width: 56px;
}
.dm-bubble-typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: dm-dot 1.2s ease-in-out infinite;
}
.dm-bubble-left .dm-bubble-typing span,
.dm-bubble-left.dm-bubble-typing span {
  background: rgba(255,255,255,0.4);
}
.dm-bubble-typing span:nth-child(2) { animation-delay: 0.18s; }
.dm-bubble-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes dm-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

.dm-tick {
  font-size: .7rem;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
  align-self: flex-end;
}

/* 24h divider */
.dm-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0;
}
.dm-divider::before,
.dm-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.dm-divider span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}

/* Live bubble extras */
.dm-bubble-live {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.dm-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(var(--green-rgb),0.35);
  animation: live-pulse 1.6s ease-in-out infinite;
  margin-right: 2px;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.dm-live-label {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--green);
  vertical-align: middle;
}

.dm-link {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   FAQ CARD
═══════════════════════════════════════════ */
.faq-card {
  padding: 48px;
}

.faq-card .card-h2 {
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  line-height: 1.4;
}
.faq-q:hover { color: var(--red); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}

.faq-a p {
  padding-bottom: 22px;
  font-size: .92rem;
  color: #999999;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   QUIZ CARD
═══════════════════════════════════════════ */
@property --quiz-border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes quiz-border-spin {
  to { --quiz-border-angle: 360deg; }
}

.quiz-card {
  padding: 48px;
  /* background-clip trick: padding-box fills the card, border-box drives the animated border */
  background:
    linear-gradient(#101010, #101010) padding-box,
    conic-gradient(
      from var(--quiz-border-angle),
      rgba(var(--red-rgb), 0)    0%,
      rgba(var(--red-rgb), 0.15) 15%,
      rgba(var(--red-rgb), 0.6)  28%,
      rgb(220, 40, 65)           35%,
      rgba(var(--red-rgb), 0.6)  42%,
      rgba(var(--red-rgb), 0.15) 55%,
      rgba(var(--red-rgb), 0)    68%,
      rgba(var(--red-rgb), 0)   100%
    ) border-box;
  border: 2px solid transparent;
  animation: quiz-border-spin 4s linear infinite;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 22px 52px rgba(0,0,0,0.38);
}

@media (prefers-reduced-motion: reduce) {
  .quiz-card {
    animation: none;
    background: #101010;
    border-color: rgba(var(--red-rgb), 0.45);
  }
}

.quiz-card .card-h2 {
  max-width: 1180px;
}

.quiz-intro {
  margin-top: 12px;
  max-width: 760px;
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

.quiz-body {
  margin-top: 24px;
  position: relative;
  min-height: 220px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: quiz-in 340ms var(--ease-premium) forwards;
}

@keyframes quiz-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 20px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-opt {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-b);
  font-size: .92rem;
  font-weight: 500;
  padding: 16px 22px;
  text-align: left;
  cursor: pointer;
  transition: background 200ms ease,
              border-color 200ms ease,
              color 200ms ease,
              transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz-opt:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  transform: translateX(4px);
}

.quiz-opt:focus-visible {
  outline: 2px solid rgba(var(--red-rgb),0.6);
  outline-offset: 2px;
}

.quiz-opt.selected {
  background: rgba(var(--red-rgb),0.15);
  border-color: rgba(var(--red-rgb),0.55);
  color: var(--white);
  font-weight: 700;
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(var(--red-rgb),0.28);
}

/* Result */
.quiz-result {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.quiz-result.show {
  display: flex;
  animation: quiz-in 400ms var(--ease-premium) forwards;
}

/* Boost the DM button inside the quiz so it pops on the dark card */
.quiz-result .btn-red {
  margin-top: 8px;
  padding: 18px 36px;
  font-size: .92rem;
  letter-spacing: .14em;
  background: var(--red);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08),
    0 14px 32px rgba(0,0,0,0.35);
  transition: transform 220ms var(--ease-premium), box-shadow 220ms var(--ease-premium);
}

.quiz-result .btn-red:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1),
    0 18px 40px rgba(0,0,0,0.42);
}

/* Four stat cards */
.result-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.result-diagnosis {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-kicker {
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.result-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  padding: 8px 0 2px;
}

.result-flow-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.result-flow-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 38%;
  left: 31%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(var(--red-rgb),0.55), transparent);
  opacity: 0.55;
  animation: none;
}

.result-flow-node {
  position: relative;
  z-index: 1;
  min-height: 78px;
  border-radius: var(--radius);
  padding: 14px 12px;
  background: #151313;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
  transform: translateY(0);
  transition: transform 260ms cubic-bezier(.22,1,.36,1), border-color 180ms ease;
}

.result-flow-node:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}

.result-flow-node::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}

.result-flow-node span {
  padding-left: 16px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.46);
}

.result-flow-node strong {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  line-height: 1;
  color: var(--white);
}

.result-flow-green { color: var(--green); }
.result-flow-yellow { color: #eab308; }
.result-flow-orange { color: #f97316; }
.result-flow-red { color: var(--red); }
.result-flow-red strong {
  font-family: var(--font-b);
  font-size: clamp(.86rem, 1.5vw, 1rem);
  font-weight: 900;
  line-height: 1.2;
}

@keyframes result-flow-scan {
  0%   { transform: translateX(-110%); opacity: 0; }
  15%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(320%); opacity: 0; }
}

.result-stat {
  --result-color: 245, 245, 245;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgb(var(--result-color));
  border-radius: var(--radius);
  padding: 18px 20px 20px 40px;
}

.result-stat::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgb(var(--result-color));
  box-shadow: 0 0 0 2px rgba(var(--result-color), .22);
}

.result-stat::after {
  content: none;
}

.result-stat-green {
  --result-color: var(--green-rgb);
}

.result-stat-yellow {
  --result-color: 220, 200, 165;
}

.result-stat-orange {
  --result-color: var(--red-rgb);
}

.result-stat-money {
  --result-color: var(--red-rgb);
}

.result-stat-num {
  font-family: var(--font-b);
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--white);
}

.result-stat-money .result-stat-num {
  font-family: var(--font-b);
  font-size: clamp(.92rem, 1.7vw, 1.08rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--white);
}

.result-diagnosis .result-stat {
  min-height: 148px;
  justify-content: flex-start;
  gap: 12px;
}

.result-diagnosis .result-stat-num {
  font-family: var(--font-b);
  font-size: clamp(.88rem, 1.2vw, 1.02rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(255,255,255,0.86);
}

.result-stat-label {
  font-size: .62rem;
  font-weight: 800;
  color: rgba(var(--result-color), 0.85);
  line-height: 1.25;
  letter-spacing: .12em;
}

.result-note {
  margin: 2px 0 -2px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.55;
  color: var(--white);
  max-width: 920px;
}

.result-copy {
  font-size: .96rem;
  color: #aaaaaa;
  line-height: 1.75;
  width: 100%;
  max-width: 920px;
}

.quiz-restart {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--muted);
  font-family: var(--font-b);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color 200ms, color 200ms;
  margin-top: 4px;
}

.quiz-restart:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

/* Progress bar at bottom of card */
.quiz-progress-wrap {
  margin-top: 32px;
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  width: 33.33%;
  transition: width 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════════
   TICKER STRIP
═══════════════════════════════════════════ */
.ticker-strip {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--black);
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: ticker-scroll 52s linear infinite;
}

.ticker-strip:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6a6a6a;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .ticker-strip {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */

.grid-fade {
  height: 80px;
  margin-top: -80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  position: relative;
  z-index: 2;
}

/* Two-column card matches bento pattern */
/* Final: 2 standalone cards inside row-2 */
.final-cta-card {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.final-price-card {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #0d0c0c;
  border-color: rgba(255,255,255,0.1);
}

.final-label {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fffbea;
  margin-bottom: -6px;
}

.final-label::before {
  content: '// ';
  color: var(--red);
}

.final-h2 {
  font-family: var(--font-d);
  font-size: var(--section-h);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #fafafa;
  text-wrap: balance;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
}

.final-h2 span {
  display: block;
}

.final-sub {
  font-size: .9rem;
  color: #888888;
  line-height: 1.7;
}

/* Final card bullet list */
.final-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.final-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  line-height: 1.55;
}

.final-bullet-good {
  color: var(--white);
  font-weight: 800;
}

.final-bullet-bad {
  color: rgba(255,255,255,0.52);
  font-weight: 800;
}

.fb-icon {
  width: 14px;
  min-width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
}

.fb-icon-check {
  color: var(--green);
}

.fb-icon-x {
  color: var(--red);
}

/* Spots row inside left col */
.final-spots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.final-spots-text {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
}

.final-spots-sep {
  color: #444;
  font-size: .8rem;
}

.final-spots-time {
  font-size: .8rem;
  font-weight: 300;
  color: rgba(200,200,200,0.55);
}

.final-offer-price {
  font-family: var(--font-d);
  font-size: 5rem;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
}

.final-offer-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.final-offer-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: #cccccc;
}

.btn-final-card {
  width: fit-content;
  padding: 14px 28px;
  font-size: .78rem;
}

/* Guarantee — compact panel, icon + copy (matches site radius, no wasted vertical space) */
.final-guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(var(--red-rgb), 0.07) 0%, transparent 52%),
    rgba(255,255,255,0.025);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 12px 28px rgba(0,0,0,0.18);
}

.final-guarantee svg {
  display: block;
  width: 22px;
  height: 22px;
  padding: 10px;
  box-sizing: content-box;
  color: var(--red);
  flex-shrink: 0;
  border-radius: var(--radius);
  background: rgba(var(--red-rgb), 0.12);
  border: 1px solid rgba(var(--red-rgb), 0.28);
}

.final-guarantee p {
  margin: 0;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  text-align: left;
  letter-spacing: -0.01em;
}

.care-plan {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255,255,255,0.035);
}

.care-plan-price {
  display: block;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: #b9f5ca;
  margin-bottom: 7px;
}

.care-plan p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.46);
}

.final-split-note {
  font-size: .72rem;
  color: #555;
  text-align: left;
  margin-top: -6px;
}


/* ═══════════════════════════════════════════
   STICKY MOBILE CTA BAR
═══════════════════════════════════════════ */
.sticky-bar {
  display: none; /* desktop: hidden */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--card);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.45);
}

.sticky-bar.visible {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sticky-bar { display: flex; }
}

.sticky-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.sticky-bar-text {
  font-size: .72rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-bar-cta {
  flex-shrink: 0;
  padding: 11px 14px;
  font-size: .7rem;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 10px 18px;
  transition: background 200ms, border-color 200ms, transform 150ms;
}
.footer-back-top:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL — handled by motion-reveal.js
   Motion (motion.dev) sets inline transforms.
   Only need reduced-motion fallback here.
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal-card {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Logo */
.site-logo {
  height: 42px;
  width: auto;
  display: block;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-card { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 420px; min-height: 420px; }

  /* Mobile hero photo fill the fixed-height container, face centred */
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
    object-fit: cover;
    object-position: center 12%;
  }

  /* Fade all 4 edges so the portrait floats inside the dark card */
  .hero-photo-wrap::after {
    background:
      /* left + right side fades */
      linear-gradient(to right,
        var(--black)            0%,
        rgba(21,19,19,0.42)     8%,
        transparent             22%,
        transparent             78%,
        rgba(21,19,19,0.42)     92%,
        var(--black)            100%
      ),
      /* top + bottom fades */
      linear-gradient(to bottom,
        var(--black)            0%,
        transparent             16%,
        transparent             55%,
        rgba(21,19,19,0.32)     80%,
        var(--black)            100%
      );
  }
  .fix-top { grid-template-columns: 1fr; }
  /* Stack three steps — avoids a cramped 2-col grid with a lone third card */
  .fix-chips-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cortex-card { padding: 32px 24px; }
  .cortex-brain-stage { min-height: 620px; }
  .brain-wall-visual { width: min(104%, 864px); }
  .brain-pop-card { width: min(250px, 32vw); }
  .brain-callout { width: 190px; }
  .brain-callout span { font-size: clamp(1.15rem, 3.4vw, 1.9rem); }
  .brain-callout strong { max-width: 170px; font-size: .72rem; }
  .offer-time-strip { grid-template-columns: auto minmax(120px, 1fr) auto; }
  .offer-cards-row { grid-template-columns: 1fr; }
  .offer-main-card { padding: 32px 24px; }
  .offer-price-bento { padding: 32px 24px; }
  .offer-steps-card { padding: 28px 24px; }
  .attention-bento { grid-template-columns: 1fr; }
  .attention-main-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .attention-equation {
    min-height: 260px;
  }
  .attention-side {
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }
  .attention-rule-card {
    min-height: 118px;
    padding: 22px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .attention-flow-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .for-intro-card, .for-check-card { padding: 32px 24px; }
  .audit-card { grid-template-columns: 1fr; }
  .audit-left { border-right: none; border-bottom: 1px solid rgba(var(--red-rgb),.15); }
  .proof-showcase { grid-template-columns: 1fr; }
  .proof-diagnosis-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .proof-diagnosis-row div { min-height: 0; }
  .proof-message-placeholder { min-height: 220px; }
}

@media (max-width: 768px) {
  .site-logo { height: 34px; }
  .offer-h2-row { flex-wrap: wrap; gap: 12px; }

  /* Clocks shrink so all 3 fit on one row */
  .clock-svg { width: 58px; height: 58px; }
  .clocks-group { gap: 12px; }

  .row-2 { grid-template-columns: 1fr; }
  .hero-card { overflow: hidden; }
  .hero-left { padding: 32px 24px; overflow: hidden; }
  .hero-h1 { font-size: var(--section-h); }
  .hero-eyebrow-sub { white-space: normal; }
  .hero-note { white-space: normal; font-size: .72rem; }
  .label-desktop { display: none; }
  .label-mobile { display: inline; }

  /* Legacy 3-stat hero only — do not target .hero-stats-2 (price/delivery card) */
  .hero-stats:not(.hero-stats-2) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .hero-stats:not(.hero-stats-2) .stat-divider { display: none; }
  .hero-stats:not(.hero-stats-2) .stat-box {
    padding: 10px 12px;
    border-right: 1px solid var(--border);
  }
  .hero-stats:not(.hero-stats-2) .stat-box:last-child { border-right: none; }
  .hero-stats:not(.hero-stats-2) .stat-num { font-size: 1.4rem; }
  .hero-stats:not(.hero-stats-2) .stat-desc { font-size: .58rem; letter-spacing: .04em; }

  .problem-card, .why-card, .get-card,
  .faq-card { padding: 32px 24px; }
  .leak-cards-row {
    gap: 8px;
    padding: 10px;
    border-radius: var(--radius);
  }
  .leak-mini-card {
    min-height: 118px;
    padding: 14px;
    gap: 10px;
    border-radius: var(--radius);
  }
  .lmc-step { font-size: 1.15rem; }
  .lmc-label {
    font-size: .64rem;
    letter-spacing: .05em;
  }
  .leak-mini-card small {
    max-width: 16ch;
    font-size: .62rem;
    line-height: 1.35;
  }
  .cortex-card { padding: 32px 24px; }
  .cortex-brain-stage {
    min-height: 640px;
    display: flex;
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: default;
    touch-action: pan-y;
  }
  .cortex-brain-stage::before {
    display: none;
  }
  .cortex-stage-label {
    left: 18px;
    top: 18px;
  }
  .brain-wall-visual {
    position: absolute;
    left: 50%;
    top: 35%;
    width: 128%;
    margin: 0;
    transform: translate(-50%, -50%) rotateX(var(--brain-rx, 0deg)) rotateY(var(--brain-ry, 0deg)) translate3d(var(--brain-tx, 0px), var(--brain-ty, 0px), 0);
  }
  .brain-model {
    transform: scale(.88);
  }
  .brain-lines {
    display: none;
  }
  .brain-hotspot {
    width: 38px;
    height: 38px;
  }
  .brain-hotspot::before {
    width: 15px;
    height: 15px;
  }
  .brain-hotspot::after {
    width: 30px;
    height: 30px;
  }
  .brain-hotspot-filter {
    left: 31%;
    top: 29%;
  }
  .brain-hotspot-feeling {
    left: 40%;
    top: 48%;
  }
  .brain-hotspot-understand {
    left: 61%;
    top: 28%;
  }
  .brain-hotspot-proof {
    left: 72%;
    top: 39%;
  }
  .brain-hotspot-decision {
    left: 58%;
    top: 55%;
  }
  .brain-pop-card {
    left: 16px !important;
    right: 16px !important;
    top: auto !important;
    bottom: 18px !important;
    width: auto;
    padding: 14px 16px;
    border-radius: var(--radius);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.08),
      inset 0 -14px 24px rgba(0,0,0,.22),
      0 18px 34px rgba(0,0,0,.44);
  }
  .brain-pop-title {
    font-size: clamp(1.15rem, 7.6vw, 1.55rem);
  }
  .brain-pop-question {
    margin-top: 7px;
    font-size: .76rem;
    line-height: 1.28;
  }
  .brain-pop-text {
    display: -webkit-box;
    margin-top: 8px;
    font-size: .66rem;
    line-height: 1.35;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .brain-pop-job {
    margin-top: 9px;
    font-size: .5rem;
    letter-spacing: .1em;
  }
  .brain-callout {
    position: absolute;
    width: 128px;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .brain-callout span {
    margin-bottom: 5px;
    font-family: var(--font-d);
    font-size: clamp(1rem, 4.7vw, 1.36rem);
    font-style: normal;
    font-weight: 700;
    line-height: .9;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.7);
  }
  .brain-callout strong {
    max-width: none;
    font-size: .6rem;
    line-height: 1.35;
    color: rgba(255,255,255,0.56);
  }
  .brain-callout:hover,
  .brain-callout.is-active {
    transform: translateY(-2px);
  }
  .brain-callout-filter {
    left: 16px;
    top: 64px;
  }
  .brain-callout-understand {
    right: 16px;
    top: 64px;
  }
  .brain-callout-feeling {
    left: 16px;
    bottom: 70px;
  }
  .brain-callout-proof {
    right: 14px;
    top: 302px;
  }
  .brain-callout-decision {
    left: auto;
    right: 22px;
    bottom: 26px;
    width: 132px;
    transform: none;
  }
  .brain-callout-decision:hover,
  .brain-callout-decision.is-active {
    transform: translateY(-2px);
  }
  .quiz-card { padding: 32px 24px; }
  .quiz-body { min-height: auto; }
  .fix-card {
    padding: 28px 20px;
    gap: 28px;
  }
  .fix-chips-row {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .fix-chip {
    padding: 20px 18px 22px;
    gap: 14px;
  }
  .fix-chip::before {
    top: 18px;
    right: 18px;
    font-size: 1.35rem;
  }
  .fix-chip-title {
    font-size: 0.98rem;
    padding-right: 2.25rem;
  }
  .fix-chip-sub {
    font-size: 0.82rem;
  }
  .offer-main-card, .offer-price-bento { padding: 32px 24px; }
  .offer-main-h2 {
    font-size: var(--section-h);
    text-wrap: balance;
    white-space: normal;
  }
  .offer-main-h2 .headline-line {
    display: block;
  }
  .offer-main-h2 .headline-line + .headline-line::before {
    content: none;
  }
  .offer-steps-card { padding: 28px 20px; }
  .offer-time-strip { gap: 8px; margin-top: 14px; }
  .offer-time-label { font-size: .56rem; }
  .offer-time-track { height: 34px; padding: 0 4px; }
  .offer-time-track::before { left: 4px; right: 4px; }
  .offer-time-fill {
    left: 4px;
    width: calc(100% - 8px);
  }
  .offer-hour {
    font-size: .42rem;
  }
  .dm-canvas { padding: 18px 14px; min-height: 300px; }
  .for-left, .for-right { padding: 32px 24px; }
  .footer-inner { gap: 12px; }

  /* Quiz result padding on small screens */
  .result-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .result-diagnosis { grid-template-columns: 1fr; }
  .result-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .result-flow-line {
    display: none;
  }
  .result-stat { padding: 16px 14px 16px 42px; }
  .result-copy { font-size: .92rem; max-width: none; }
  .result-note { font-size: .62rem; max-width: none; }

  /* Scanner card */
  .scanner-card { grid-template-columns: 1fr; }
  .scanner-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.14); padding: 32px 24px; }
  .scanner-right { padding: 28px 24px; }
  .scanner-row { flex-wrap: wrap; }
  .scanner-field { min-width: 0; }
  .scanner-btn { flex: 1; justify-content: center; }
  .sc-score-num { font-size: 3rem; }
  .sc-issues { gap: 6px; }
  .sc-footer { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Final CTA stack on mobile */
  .final-cta-card, .final-price-card { padding: 32px 24px; }
  .final-h2 { font-size: var(--section-h); }
  .final-guarantee {
    padding: 12px 14px;
    gap: 12px;
    margin-top: 10px;
  }
  .final-guarantee svg {
    width: 18px;
    height: 18px;
    padding: 8px;
  }
  .final-guarantee p {
    font-size: 0.8rem;
    line-height: 1.48;
  }

  /* Attention bento */
  .attention-main-card,
  .attention-flow-card {
    padding: 32px 24px;
  }
  .attention-equation {
    min-height: 260px;
    padding: 18px;
    border-radius: var(--radius);
  }
  .equation-steps span {
    min-height: 34px;
    font-size: .62rem;
  }
  .equation-result strong {
    max-width: none;
    font-size: .82rem;
  }
  .attention-flow-card {
    gap: 22px;
  }
  .attention-flow-copy p {
    white-space: normal;
  }
  .attention-main-card { min-height: auto; }
  .attention-compare {
    grid-template-columns: 1fr;
  }
  .attention-compare-card {
    min-height: 0;
  }
  .attention-side { grid-template-columns: 1fr; }
  .attention-rule-card {
    min-height: 0;
    padding: 22px 24px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
  }
  .attention-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
  }
  .attention-rule-copy span {
    font-size: .95rem;
    line-height: 1.2;
  }
  .attention-rule-copy small {
    font-size: .58rem;
  }
  .click-game-card { padding: 32px 24px; gap: 22px; }
  .click-game-copy p { max-width: none; }
  .click-game-stage { padding: 12px; }
  #clickGameCanvas {
    min-height: 260px;
    aspect-ratio: 1.35 / 1;
  }
  .attention-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 0;
  }
  .attention-flow::before {
    display: none;
  }
  .attention-flow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 4px;
    min-height: 0;
    padding: 16px;
  }
  .attention-flow-step::after { display: none; }
  .attention-flow-dot {
    justify-self: start;
    margin: 0;
    box-shadow: 0 0 0 4px #111010;
  }
  .attention-flow-sub { max-width: none; }

  /* OMT card stack on mobile */
  .omt-card { padding: 32px 24px; }
  .omt-chips-row { grid-template-columns: 1fr; }

  /* Proof card */
  .proof-card { padding: 32px 24px; }
  .proof-quote-big { font-size: 1rem; }
  .proof-message-card { padding: 14px; }
  .proof-testimonial-card { padding: 22px; }
  .proof-testimonial-points { grid-template-columns: 1fr; }
  .proof-diagnosis-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }
  .proof-diagnosis-row div {
    min-height: 0;
    padding: 18px 16px;
    gap: 12px;
  }
  .proof-diagnosis-row span {
    font-size: .52rem;
    padding: 5px 10px;
  }
  .proof-diagnosis-row strong {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .proof-footnote {
    margin-top: 22px;
    padding-top: 18px;
    font-size: 0.88rem;
  }
  .proof-message-placeholder { min-height: 210px; }
}



/* ═══════════════════════════════════════════
   PAGE SCANNER CARD  (red)
═══════════════════════════════════════════ */
.scanner-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--red);
  border-color: rgba(255,255,255,0.1);
  overflow: visible; /* never clip content */
}

.scanner-left {
  padding: 48px;
  border-right: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* Instagram badge */
.scanner-ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 6px 14px 6px 10px;
  width: fit-content;
  margin-bottom: 20px;
}

.scanner-label {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.scanner-h2 {
  font-family: var(--font-d);
  font-size: var(--section-h);
  line-height: .92;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 16px;
}

.scanner-desc {
  font-size: .88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* Typewriter demo */
.scanner-type-demo {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 22px;
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  color: rgba(255,255,255,0.42);
  min-height: 22px;
}

.demo-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
  animation: blink 0.75s step-end infinite;
}

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

/* Right panel */
.scanner-right {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scanner-panel { width: 100%; }
.scanner-panel.hidden { display: none; }

.scanner-panel-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.scanner-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.scanner-field {
  flex: 1;
  min-width: 0;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-b);
  font-size: .92rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 200ms, background 200ms;
}
.scanner-field::placeholder { color: rgba(255,255,255,0.28); }
.scanner-field:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.3);
}
.scanner-field.field-shake {
  animation: field-shake 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-7px); }
  40%       { transform: translateX(7px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

/* Button inverted on red */
.scanner-btn {
  background: var(--white);
  color: var(--red);
  border: none;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: background 200ms, transform 150ms;
  white-space: nowrap;
}
.scanner-btn:hover { background: rgba(255,255,255,0.88); }

.scanner-privacy {
  font-size: .62rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: .04em;
}

/* Scan steps on red */
.scan-steps { display: flex; flex-direction: column; }

.scan-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: opacity 300ms ease;
}
.scan-step:last-child { border-bottom: none; }

.scan-step-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scan-spinner { color: rgba(255,255,255,0.8); animation: spin 1s linear infinite; }
.scan-check   { color: rgba(255,255,255,0.9); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.scan-step-body { flex: 1; display: flex; flex-direction: column; gap: 7px; }

.scan-step-label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}

.scan-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.scan-bar-fill {
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
}

/* Result on red */
.sc-score-header { margin-bottom: 12px; }

.sc-score-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.sc-score-num-row { display: flex; align-items: baseline; gap: 5px; }

.sc-score-num {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.sc-score-denom {
  font-family: var(--font-d);
  font-size: 1.6rem;
  color: rgba(255,255,255,0.35);
}

.sc-bar-wrap { margin-bottom: 20px; }

.sc-bar-track {
  height: 5px;
  background: rgba(0,0,0,0.25);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.sc-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--white);
  width: 0%;
  transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sc-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.28);
}

.sc-issues {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.scanner-issue {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 16px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

.issue-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.issue-dot-red   { background: #ff8fa3; }
.issue-dot-amber { background: #fbbf24; }
.issue-dot-green { background: #4ade80; }

.issue-body { display: flex; flex-direction: column; gap: 2px; }

.issue-cat {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.45);
}

.issue-text {
  font-size: .82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}

.sc-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* CTA button inverted on red card */
.sc-cta-btn {
  background: var(--white) !important;
  color: var(--red) !important;
}
.sc-cta-btn:hover { background: rgba(255,255,255,0.88) !important; }

.sc-retry {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 150ms;
}
.sc-retry:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════
   EXIT INTENT PANEL
═══════════════════════════════════════════ */
.exit-panel {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, calc(100% + 48px));
  width: min(460px, calc(100vw - 32px));
  background: var(--card);
  border: 1px solid rgba(var(--red-rgb), 0.3);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  z-index: 600;
  box-shadow:
    0 -20px 56px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 520ms var(--ease-premium);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-panel.show { transform: translate(-50%, 0); }

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 150ms, background 150ms;
}
.exit-close:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.exit-eyebrow {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fffbea;
}

.exit-eyebrow::before {
  content: '// ';
  color: var(--red);
}

.exit-headline {
  font-family: var(--font-d);
  font-size: 2.2rem;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #fafafa;
}

.exit-sub {
  font-size: .88rem;
  color: #888;
  line-height: 1.65;
  max-width: 380px;
}

.exit-cta { width: fit-content; margin-top: 6px; }

.exit-dismiss {
  background: none;
  border: none;
  color: #444;
  font-family: var(--font-b);
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 150ms;
  text-align: left;
}
.exit-dismiss:hover { color: #888; }

/* ═══════════════════════════════════════════
   SLOT ANIMATION
═══════════════════════════════════════════ */
@keyframes slot-confetti {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(var(--rot)); opacity: 0; }
}

.slot-confetti-piece {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 2px;
  animation: slot-confetti 1s ease-out forwards;
}

/* Stat num transition for slot machine */
.stat-num {
  transition: transform 0.08s ease, opacity 0.08s ease;
}

@keyframes score-shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  15%       { transform: translateX(-9px) rotate(-1.5deg); }
  30%       { transform: translateX(9px) rotate(1.5deg); }
  45%       { transform: translateX(-6px) rotate(-0.8deg); }
  60%       { transform: translateX(6px) rotate(0.8deg); }
  75%       { transform: translateX(-3px); }
  90%       { transform: translateX(3px); }
}

/* ═══════════════════════════════════════════
   HERO STAT GLOW BORDER
═══════════════════════════════════════════ */

@property --ba {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes ba-spin {
  to { --ba: 360deg; }
}

.stat-glow-wrap {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 32px;
  border-radius: var(--radius);
}

/* Remove margin from hero-stats since wrapper owns it now */
.hero-stats { margin-bottom: 0; }

/* No animated / glowing rim — hero stats rely on inner card border only */
.stat-glow-wrap::after {
  display: none;
}

/* ═══════════════════════════════════════════
   PROOF ZOOM HINT
═══════════════════════════════════════════ */
.proof-slot {
  position: relative;
  cursor: zoom-in;
}
.proof-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
  z-index: 2;
}
.proof-slot:hover .proof-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  transition:
    background 320ms ease,
    backdrop-filter 320ms ease;
}
.lightbox.is-open {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: all;
}

/* Image wrap */
.lightbox-img-wrap {
  max-width: min(88vw, 900px);
  max-height: 82vh;
  opacity: 0;
  transform: scale(0.92) translateY(16px);
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.is-open .lightbox-img-wrap {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 10px 30px rgba(0, 0, 0, 0.4);
  display: block;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 220ms ease, background 180ms ease, transform 180ms ease;
  z-index: 10;
}
.lightbox.is-open .lightbox-close { opacity: 1; }
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.08);
}

/* Prev / Next arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 220ms ease, background 180ms ease, transform 300ms ease;
  z-index: 10;
}
.lightbox.is-open .lightbox-prev,
.lightbox.is-open .lightbox-next { opacity: 1; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) translateX(-2px);
}
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) translateX(2px);
}

/* Counter */
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transition: opacity 220ms ease;
}
.lightbox.is-open .lightbox-counter { opacity: 1; }

/* Mobile tighter arrows */
@media (max-width: 600px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-img-wrap { max-width: 96vw; }
  .click-game-card { padding: 30px 20px; }
  .click-game-legend { gap: 6px; }
  .click-game-legend span { font-size: .56rem; padding: 7px 9px; }
  #clickGameCanvas { min-height: 230px; }
  .click-game-top { font-size: .5rem; letter-spacing: .1em; }
  .click-game-bottom small { font-size: .5rem; letter-spacing: .1em; }
  .click-game-bottom span { font-size: 1.25rem; }
  .result-stats { grid-template-columns: 1fr; }
  .result-diagnosis { grid-template-columns: 1fr; }
  .result-flow { grid-template-columns: 1fr; }
  .result-flow-node {
    min-height: 70px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .result-flow-node span {
    padding-left: 16px;
  }
  .result-stat {
    min-height: 112px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding: 18px 16px 18px 42px;
  }
  .result-stat-label {
    text-align: left;
    max-width: none;
  }
}

/* ═══════════════════════════════════════════
   SPOTS TEXT WEIGHT
═══════════════════════════════════════════ */
#spotsText {
  font-weight: 700;
  color: var(--white);
}
#spotsTime {
  font-weight: 300;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   ALARM ICON (problem card)
═══════════════════════════════════════════ */
.alarm-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  filter: drop-shadow(0 0 6px rgba(var(--red-rgb), 0.7));
  animation: alarm-ring 1.8s ease-in-out infinite;
  transform-origin: 50% 20%;
}
.alarm-svg {
  width: 22px;
  height: 22px;
}
@keyframes alarm-ring {
  0%, 100%  { transform: rotate(0deg); }
  5%        { transform: rotate(-18deg); }
  10%       { transform: rotate(18deg); }
  15%       { transform: rotate(-14deg); }
  20%       { transform: rotate(14deg); }
  25%       { transform: rotate(-8deg); }
  30%       { transform: rotate(0deg); }
}

/* ═══════════════════════════════════════════
   SIREN OVERLAY
═══════════════════════════════════════════ */
.siren-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 49;
  opacity: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(var(--red-rgb), 0.07) 100%);
}
.siren-overlay.siren-active {
  animation: siren-flash 1.8s var(--ease-premium) forwards;
}
@keyframes siren-flash {
  0%          { opacity: 0; }
  18%         { opacity: 0.55; }
  38%         { opacity: 0.12; }
  55%         { opacity: 0.42; }
  72%         { opacity: 0.08; }
  100%        { opacity: 0; }
}

/* ═══════════════════════════════════════════
   OFFER STEPS animated icons + connecting line
═══════════════════════════════════════════ */
.offer-steps-col {
  position: relative;
}

/* Step body icon left, text right, hover like other cards */
.offer-step {
  background: rgba(248, 244, 236, 0.045);
  border-radius: var(--radius);
  cursor: default;
}
.offer-step p { margin: 0; }

/* Animated icon container */
.step-anim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  opacity: 0.6;
}

/* 01 send: icon floats upward */
.step-send {
  animation: step-send-float 1.6s ease-in-out infinite;
}
@keyframes step-send-float {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50%      { transform: translate(4px, -5px); opacity: 1; }
}

/* 02 build: icon pulses like it's loading */
.step-build {
  animation: step-build-pulse 2s ease-in-out infinite;
}
@keyframes step-build-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.2); opacity: 1; }
}

/* 03 live: icon radiates like a broadcast signal */
.step-live {
  animation: step-live-broadcast 1.4s ease-in-out infinite;
}
@keyframes step-live-broadcast {
  0%, 100% { transform: scale(1); opacity: 1; color: var(--red); }
  50%      { transform: scale(1.12); opacity: 1; color: var(--green); }
}


/* ═══════════════════════════════════════════
   QUIZ CARD GLOW BORDER
═══════════════════════════════════════════ */
.quiz-glow-wrap {
  position: relative;
  border-radius: var(--radius);
}
.quiz-glow-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(var(--red-rgb), 0.28) 48%,
    rgba(255, 255, 255, 0.06) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════
   ALARM BELL IN TAG-PILL (fast ring)
═══════════════════════════════════════════ */
.alarm-bell-fast {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  animation: alarm-ring 0.7s ease-in-out infinite;
  transform-origin: 50% 15%;
}

/* ═══════════════════════════════════════════
   CHIP × (wrong/red)
═══════════════════════════════════════════ */
.chip-x {
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* leak funnel icons static, no animation */

/* ═══════════════════════════════════════════
   GREEN STATIC CHECK (get-card)
═══════════════════════════════════════════ */
.chk-green {
  color: var(--green);
  flex-shrink: 0;
  vertical-align: middle;
}

.icon-x-red {
  color: var(--red);
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 2px;
}

/* for-card checks static green, no animation */
.chk-anim {
  color: var(--green);
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 2px;
}

/* warn icon static */
.warn-bold { font-weight: 700; color: var(--white); }
.warn-light { font-weight: 300; color: rgba(200,200,200,0.72); }

/* ═══════════════════════════════════════════
   GRID CANVAS
═══════════════════════════════════════════ */
#gridCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   PROBLEM GRID CARD (What's going wrong)
═══════════════════════════════════════════ */
.problem-grid-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "visual header"
    "visual questions";
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  isolation: isolate;
}

.problem-grid-visual { grid-area: visual; }
.problem-grid-header { grid-area: header; padding: 56px 56px 0 48px; }
.problem-grid-questions-wrap { grid-area: questions; padding: 24px 56px 56px 48px; }

.problem-grid-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--card);
}

/* Full-column overlay — centers the floating phone */
.problem-phone-float-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Height-based sizing — phone fills ~84% of column height, landscape PNG auto-crops */
.problem-phone-float-inner {
  position: relative;
  height: 84%;
  pointer-events: none;
  animation: problem-mockup-float 7s ease-in-out infinite;
  will-change: transform;
  /* smooth hand-off when JS takes over from CSS animation */
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes problem-mockup-float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-18px); }
}

@media (prefers-reduced-motion: reduce) {
  .problem-phone-float-inner {
    animation: none;
    transition: none;
  }
}

/* Image fills height of the float-inner; width auto → landscape PNG auto-crops sides */
.problem-phone-img {
  height: 100%;
  width: auto;
  display: block;
}

.problem-brain-dot {
  position: absolute;
  z-index: 6;
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  margin: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.42),
    0 0 0 4px rgba(255, 255, 255, 0.22),
    0 10px 22px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
  transition:
    transform 280ms var(--ease-premium),
    box-shadow 280ms var(--ease-premium);
}

.problem-brain-dot:hover {
  transform: scale(1.35);
}

.problem-brain-dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
}

/* Phone screen zones */
.problem-brain-dot-1 { left: 37%; top: 23%; }   /* WHAT  — headline */
.problem-brain-dot-2 { left: 58%; top: 71%; }   /* PROOF — where WHO was (stats/proof area) */
.problem-brain-dot-3 { left: 35%; top: 65%; }   /* WHO   — above bio paragraph */
.problem-brain-dot-4 { left: 44%; top: 84%; }   /* NEXT  — Apply For Coaching button */

/* Tooltip — links dot to matching checklist row */
.problem-brain-dot::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  transform: translateY(-50%);
  white-space: nowrap;
  width: 76px;
  text-align: center;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--white);
  background: rgba(15, 13, 13, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 7px 0;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.problem-brain-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 14px;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.15));
  opacity: 0;
  transition: opacity 240ms ease;
}

.problem-brain-dot-1::after { content: 'WHAT'; }
.problem-brain-dot-2::after { content: 'WHO'; }
.problem-brain-dot-3::after { content: 'PROOF'; }
.problem-brain-dot-4::after { content: 'NEXT'; }

@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  .problem-brain-dot {
    animation: problem-dot-pulse 2.4s ease-in-out infinite;
  }

  .problem-brain-dot-1 { animation-delay: 0s; }
  .problem-brain-dot-2 { animation-delay: 0.3s; }
  .problem-brain-dot-3 { animation-delay: 0.6s; }
  .problem-brain-dot-4 { animation-delay: 0.9s; }
}

@keyframes problem-dot-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(0, 0, 0, 0.42),
      0 0 0 4px rgba(255, 255, 255, 0.22),
      0 10px 22px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(0, 0, 0, 0.42),
      0 0 0 12px rgba(255, 255, 255, 0.08),
      0 12px 26px rgba(0, 0, 0, 0.5);
  }
}


/* Divider line between visual and questions column */
.problem-grid-visual::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

/* Active states wired by JS */
.problem-brain-dot.is-hot {
  transform: scale(1.5);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.5),
    0 0 0 5px rgba(255, 255, 255, 0.45),
    0 6px 20px rgba(0, 0, 0, 0.5);
  z-index: 7;
}

.problem-brain-dot:hover::after,
.problem-brain-dot:hover::before,
.problem-brain-dot:focus-visible::after,
.problem-brain-dot:focus-visible::before,
.problem-brain-dot.is-hot::after,
.problem-brain-dot.is-hot::before {
  opacity: 1;
}

.problem-brain-dot.is-hot::after,
.problem-brain-dot:hover::after,
.problem-brain-dot:focus-visible::after {
  transform: translateY(-50%) translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.problem-question.is-hot {
  background: rgba(var(--q-color), 0.10);
  border-color: rgba(var(--q-color), 0.5);
  border-left-color: rgb(var(--q-color));
  transform: translateX(4px);
}

.problem-question.is-hot .problem-question-num {
  color: rgb(var(--q-color));
}

.problem-grid-intro {
  font-size: .95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-top: 14px;
  margin-bottom: 32px;
  max-width: 520px;
}

.problem-questions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-question {
  --q-color: 245, 245, 245;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid rgb(var(--q-color));
  border-radius: var(--radius);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.problem-question:hover {
  background: rgba(var(--q-color), 0.06);
  border-color: rgba(var(--q-color), 0.35);
  border-left-color: rgb(var(--q-color));
  transform: translateX(2px);
}

.problem-question:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
}

/* Each question color matches its dot on the brain */
.problem-question[data-q="1"] { --q-color: var(--red-rgb); }   /* Red */
.problem-question[data-q="2"] { --q-color: 220, 200, 165; } /* Cream */
.problem-question[data-q="3"] { --q-color: 116, 158, 96; }  /* Green */
.problem-question[data-q="4"] { --q-color: 178, 130, 86; }  /* Brown */

.problem-question-num {
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: rgb(var(--q-color));
  letter-spacing: .04em;
  line-height: 1.2;
  padding-top: 2px;
}

.problem-question-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.problem-question-title {
  font-size: .98rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.problem-question-sub {
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.problem-grid-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .problem-grid-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "header"
      "visual"
      "questions";
  }
  .problem-grid-header { padding: 36px 28px 0; }
  .problem-grid-visual { min-height: 500px; }
  .problem-phone-float-inner { height: 90%; }
  .problem-grid-questions-wrap { padding: 24px 28px 36px; }
}

/* ═══════════════════════════════════════════
   HERO STATS — 2 CELLS WITH ANIMATIONS
═══════════════════════════════════════════ */
.stat-glow-wrap:has(.hero-stats-2) {
  margin-top: 36px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 480px;
}

.hero-stats-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  /* background-clip trick: padding-box = card fill, border-box = animated border */
  background:
    linear-gradient(rgba(18,16,16,0.92), rgba(18,16,16,0.92)) padding-box,
    conic-gradient(
      from var(--quiz-border-angle),
      rgba(var(--red-rgb), 0)    0%,
      rgba(var(--red-rgb), 0.15) 15%,
      rgba(var(--red-rgb), 0.6)  28%,
      rgb(220, 40, 65)           35%,
      rgba(var(--red-rgb), 0.6)  42%,
      rgba(var(--red-rgb), 0.15) 55%,
      rgba(var(--red-rgb), 0)    68%,
      rgba(var(--red-rgb), 0)   100%
    ) border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  min-width: 0;
  position: relative;
  animation: quiz-border-spin 4s linear infinite;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.32);
}

.hero-stats-2::before {
  display: none;
}

.hero-stats-2 .stat-box {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Tiny eyebrow tag above each stat (matches site // style) */
.hero-stats-2 .stat-tag {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  display: block;
}

.stat-tag-slash {
  color: var(--red);
  margin-right: 2px;
}

.hero-stats-2 .stat-num {
  font-size: clamp(2.35rem, 5.2vw, 2.95rem);
  min-height: 1.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}

/* Subtle red rule under the number */
.hero-stats-2 .stat-rule {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
  border-radius: 1px;
  margin: 14px auto 12px;
  opacity: 0.95;
}

/* Vertical line with depth shadow */
.hero-stats-2 .stat-divider {
  position: relative;
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100%;
  margin: 0;
  background: linear-gradient(to bottom,
    transparent 8%,
    rgba(255,255,255,0.14) 35%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.14) 65%,
    transparent 92%);
}

.hero-stats-2 .stat-divider::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.45) 60%,
    transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

.stat-num-anim {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-box-money .stat-money-symbol {
  display: inline-block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--red);
  transform: translateY(-2px);
  animation: stat-money-flash 3.5s ease-in-out infinite;
}

.stat-box-money .stat-money-num {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #c9c9c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes stat-money-flash {
  0%, 92%, 100% {
    color: var(--red);
    text-shadow: 0 0 0 rgba(var(--red-rgb),0);
  }
  94% {
    color: #ff3a5c;
    text-shadow: 0 0 12px rgba(255,58,92,0.7);
  }
  96% {
    color: var(--red);
    text-shadow: 0 0 4px rgba(var(--red-rgb),0.4);
  }
}

.stat-clock-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-right: 4px;
  transform: translateY(-3px);
}

.stat-clock-svg {
  color: var(--white);
}

.stat-clock-svg .stat-clock-hand-h {
  transform-origin: 16px 16px;
  animation: stat-clock-hour 8s linear infinite;
}

.stat-clock-svg .stat-clock-hand-m {
  transform-origin: 16px 16px;
  animation: stat-clock-min 2s linear infinite;
}

@keyframes stat-clock-hour {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes stat-clock-min {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stat-clock-num {
  background: linear-gradient(180deg, #ffffff 0%, #c9c9c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stats-2 .stat-desc {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  letter-spacing: .14em;
  line-height: 1.45;
  max-width: 22ch;
}

/* Override the older hero-stats margin for the new variant */
.hero-stats-2 { margin-bottom: 0; }

@media (max-width: 768px) {
  .hero-left {
    overflow-x: visible;
    overflow-y: visible;
  }

  .stat-glow-wrap:has(.hero-stats-2) {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--radius);
  }

  /* Stack price / delivery vertically — easier to read on narrow screens */
  .hero-stats-2 {
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    border-radius: var(--radius);
  }

  .hero-stats-2 .stat-box {
    padding: 20px 22px 18px;
    width: 100%;
  }

  .hero-stats-2 .stat-box:first-child {
    padding-bottom: 16px;
  }

  .hero-stats-2 .stat-box:last-child {
    padding-top: 16px;
  }

  .hero-stats-2 .stat-tag {
    margin-bottom: 10px;
    letter-spacing: 0.14em;
  }

  .hero-stats-2 .stat-num {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
    letter-spacing: 0.02em;
  }

  .hero-stats-2 .stat-rule {
    margin: 10px auto 8px;
  }

  .hero-stats-2 .stat-desc {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    max-width: 28ch;
  }

  /* Horizontal divider between the two blocks */
  .hero-stats-2 .stat-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    align-self: stretch;
    margin: 0;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 15%,
      rgba(255, 255, 255, 0.16) 50%,
      rgba(255, 255, 255, 0.08) 85%,
      transparent 100%
    );
  }

  .hero-stats-2 .stat-divider::after {
    display: none;
  }
}

/* Very small phones: a touch more breathing room */
@media (max-width: 380px) {
  .hero-stats-2 .stat-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-stats-2 .stat-num {
    font-size: clamp(1.75rem, 8.5vw, 2.2rem);
  }
}
