/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

:root {
  --black:    #151313;
  --bg:       #151313;
  --card:     #1c1a1a;
  --card-2:   #191717;
  --white:    #FFFFFF;
  --light:    #F4F4F4;
  --red:      #A00C30;
  --red-d:    #7d0924;
  --muted:    #888888;
  --border:   rgba(255,255,255,0.07);
  --radius:   24px;
  --font-d:   'HelveticaCondensed', 'Helvetica Neue Condensed', 'Arial Narrow', sans-serif;
  --font-b:   'Inter', Helvetica, Arial, sans-serif;
  --nav-h:    60px;
  --gap:      14px;
}

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.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

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: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  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;
}

/* ═══════════════════════════════════════════
   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: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.card-label-dark {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.card-h2 {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: .95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.card-h2-dark {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: .95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.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: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  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 CARD
═══════════════════════════════════════════ */
.hero-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 520px;
  background: var(--black);
  border-color: rgba(255,255,255,0.1);
}

.hero-left {
  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: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.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: 12px;
  overflow: hidden;
  width: fit-content;
}

.stat-box {
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-d);
  font-size: 1.8rem;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1;
}

.stat-desc {
  font-size: .68rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.hero-note {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--white);
  line-height: 1.6;
  white-space: nowrap;
}

.hero-right {
  position: relative;
  background: var(--black);
  border-left: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 200px;
  background: var(--red);
  opacity: .06;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;

  -webkit-mask-image:
    linear-gradient(to top,  rgba(0,0,0,0) 0%,  rgba(0,0,0,1) 30%),
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 18%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to top,  rgba(0,0,0,0) 0%,  rgba(0,0,0,1) 30%),
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 18%);
  mask-composite: intersect;
}

/* 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: 20px;
  right: 20px;
  z-index: 3;
}

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

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

/* ── PROBLEM CARD ── */
.problem-card {
  padding: 40px;
}

.problem-card .card-h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

/* ── LEAK FUNNEL ── */
.leak-funnel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 24px;
}

.leak-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ls-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
}

.ls-4 .ls-icon { color: var(--red); }

.ls-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: #888;
  width: 90px;
  flex-shrink: 0;
}

.ls-4 .ls-label { color: var(--red); }

.ls-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}

.ls-fill {
  height: 100%;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  transform-origin: left center;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.ls-4 .ls-fill { background: var(--red); }

.ls-1 .ls-fill { animation: funnel-bar-1 4.5s infinite; }
.ls-2 .ls-fill { animation: funnel-bar-2 4.5s infinite; }
.ls-3 .ls-fill { animation: funnel-bar-3 4.5s infinite; }
.ls-4 .ls-fill { animation: funnel-bar-4 4.5s infinite; }

@keyframes funnel-bar-1 {
  0%        { transform: scaleX(0);    opacity: 0; }
  8%, 75%   { transform: scaleX(1);    opacity: 1; }
  88%, 100% { transform: scaleX(1);    opacity: 0; }
}
@keyframes funnel-bar-2 {
  0%, 10%   { transform: scaleX(0);    opacity: 0; }
  20%, 75%  { transform: scaleX(0.42); opacity: 1; }
  88%, 100% { transform: scaleX(0.42); opacity: 0; }
}
@keyframes funnel-bar-3 {
  0%, 22%   { transform: scaleX(0);    opacity: 0; }
  32%, 75%  { transform: scaleX(0.18); opacity: 1; }
  88%, 100% { transform: scaleX(0.18); opacity: 0; }
}
@keyframes funnel-bar-4 {
  0%, 34%   { transform: scaleX(0);    opacity: 0; }
  44%, 75%  { transform: scaleX(0.08); opacity: 1; }
  88%, 100% { transform: scaleX(0.08); opacity: 0; }
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}

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

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

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

.chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: #cccccc;
  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);
  will-change: transform;
}
.chip:hover {
  transform: perspective(600px) rotateX(-4deg) rotateY(6deg) translateZ(20px) scale(1.04);
  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);
}

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

/* ═══════════════════════════════════════════
   FIX CARD (white)
═══════════════════════════════════════════ */
.fix-card {
  background: var(--light);
  border-color: rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
}

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

.fix-right {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fix-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  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;
}
.fix-item:last-child { border-bottom: none; }
.fix-item:hover {
  background: rgba(0,0,0,0.04);
  transform: perspective(600px) rotateX(-4deg) rotateY(6deg) translateZ(20px) scale(1.03);
  box-shadow:
    -12px 20px 40px rgba(0, 0, 0, 0.12),
    -4px 6px 14px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

.fix-arrow {
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.fix-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}

.fix-item p {
  font-size: .82rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.5;
}

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

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

.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  font-size: .9rem;
  color: #cccccc;
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  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;
}
.checklist li:last-child { border-bottom: none; }
.checklist li: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);
}

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

/* ═══════════════════════════════════════════
   BEFORE/AFTER CARD
═══════════════════════════════════════════ */
.ba-card {
  padding: 40px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.ba-col {
  border-radius: 16px;
  padding: 24px 20px;
  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);
  will-change: transform;
}
.ba-col:hover {
  transform: perspective(600px) rotateX(-4deg) rotateY(6deg) translateZ(20px) scale(1.04);
  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);
}

.ba-before {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}

.ba-after {
  background: var(--red);
  border: 1px solid var(--red);
}

.ba-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ba-before .ba-label { color: var(--muted); }
.ba-after .ba-label  { color: rgba(255,255,255,0.7); }

.ba-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-col li {
  font-size: .88rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.ba-before li { color: #888888; }
.ba-after li  { color: var(--white); font-weight: 600; }

.ba-icon {
  flex-shrink: 0;
  margin-right: 8px;
}

.ba-icon-x   { color: #666; }
.ba-after li .ba-icon-check { color: var(--white); }

/* ═══════════════════════════════════════════
   FOR WHO CARD
═══════════════════════════════════════════ */
.for-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--card-2, #181818);
}

.for-left {
  padding: 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.for-yes-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.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-warn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(160,12,48,.06);
  border: 1px solid rgba(160,12,48,.2);
  border-radius: 12px;
  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;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 28px;
  align-items: center;
  margin-top: 28px;
}

.proof-slot {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  border-radius: 18px;
  perspective: 900px;
  overflow: visible;
}

.proof-slot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    -6px 10px 22px rgba(0, 0, 0, 0.28),
    -2px 3px 8px rgba(0, 0, 0, 0.18);
  transform: perspective(900px) 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);
  will-change: transform;
}

.proof-slot:hover img {
  transform: perspective(900px) rotateX(-4deg) rotateY(6deg) translateZ(28px) scale(1.04);
  box-shadow:
    -18px 28px 56px rgba(0, 0, 0, 0.5),
    -6px 10px 20px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.proof-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}

.proof-placeholder-icon {
  font-size: 1.4rem;
  color: var(--red);
}

.proof-placeholder span {
  font-size: .78rem;
  color: #555;
  line-height: 1.5;
}

.proof-placeholder small {
  font-size: .68rem;
  color: #444;
  font-family: monospace;
}

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

.audit-left {
  padding: 48px;
  border-right: 1px solid rgba(160,12,48,.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;
  color: #666;
}

.audit-nots-check svg {
  color: var(--red) !important;
}

/* ═══════════════════════════════════════════
   OFFER CARD
═══════════════════════════════════════════ */
.offer-card {
  background: var(--black);
  border-color: rgba(255,255,255,0.1);
  padding: 0;
  overflow: hidden;
}

.offer-top {
  padding: 48px 48px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.offer-h2 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--white);
}

.offer-h2-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.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: 110px;
  height: 110px;
  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); }
}


.offer-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.offer-price-col {
  padding: 40px 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.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;
  text-transform: uppercase;
  color: var(--white);
}

.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;
}

/* Three slot bars */
.slots-wrap {
  display: flex;
  gap: 6px;
  align-items: center;
}

.slot {
  height: 8px;
  border-radius: 4px;
  flex: 1;
  max-width: 48px;
}

.slot-taken {
  background: rgba(160, 12, 48, 0.22);
  border: 1px solid rgba(160, 12, 48, 0.18);
}

.slot-open {
  background: var(--red);
  animation: slot-glow 1.8s ease-in-out infinite;
}

.slot-open:nth-child(2) { animation-delay: 0.25s; }
.slot-open:nth-child(3) { animation-delay: 0.5s; }

@keyframes slot-glow {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0   0   rgba(160,12,48,0); }
  50%       { opacity: 0.55; box-shadow: 0 0 10px 3px rgba(160,12,48,0.35); }
}

/* 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: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  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 var(--border);
}

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

.offer-guarantee p {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.65;
  text-align: left;
}

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

.offer-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 16px;
  border-bottom: 1px solid var(--border);
  border-radius: 10px;
  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;
}

/* ═══════════════════════════════════════════
   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
═══════════════════════════════════════════ */
.quiz-card {
  padding: 40px;
  border-color: rgba(160, 12, 48, 0.28);
  background: linear-gradient(140deg, rgba(160,12,48,0.07) 0%, var(--card) 55%);
}

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

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: quiz-in 300ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes quiz-in {
  from { opacity: 0; transform: translateY(10px); }
  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.1);
  border-radius: 10px;
  color: #cccccc;
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 20px;
  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.09);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateX(4px);
}

.quiz-opt.selected {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  font-weight: 700;
  transform: none;
}

/* Result */
.quiz-result {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  background: rgba(160,12,48,0.07);
  border: 1px solid rgba(160,12,48,0.2);
  border-radius: 16px;
  padding: 28px 28px 24px;
}

.quiz-result.show {
  display: flex;
  animation: quiz-in 400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.result-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(160,12,48,0.7);
  margin-bottom: -4px;
}

.result-score {
  font-family: var(--font-d);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: .95;
  letter-spacing: -0.02em;
  color: var(--red);
  text-shadow: 0 0 60px rgba(160,12,48,0.5);
}

.result-score.shake-anim {
  animation: score-shake 480ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.result-bar-wrap {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}

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

.result-desc {
  font-size: .9rem;
  color: #aaaaaa;
  line-height: 1.75;
  max-width: 500px;
}

.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;
  text-transform: uppercase;
  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);
  border-bottom: 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 36s 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: #555555;
  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%); }
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta {
  position: relative;
  background: var(--black);
  padding: 120px 24px;
  text-align: left;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.final-grid-bg {
  position: absolute;
  inset: 0;
  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: 48px 48px;
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.final-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.final-h2 {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
}

.final-cta .final-inner > * {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

.final-sub {
  font-size: 1rem;
  color: #888888;
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn-final {
  padding: 18px 40px;
  font-size: .82rem;
}

/* ═══════════════════════════════════════════
   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;
  text-transform: uppercase;
  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
═══════════════════════════════════════════ */
.reveal-card {
  opacity: 0;
  transform: translateY(-80px) scale(0.92) rotate(2deg);
  filter: blur(4px);
  transition: opacity 550ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.34, 1.4, 0.64, 1),
              filter 500ms ease;
}
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: blur(0px);
}


/* 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: 380px; }
  .fix-card { grid-template-columns: 1fr; }
  .fix-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .offer-body { grid-template-columns: 1fr; }
  .offer-price-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .for-card { grid-template-columns: 1fr; }
  .for-left { border-right: none; border-bottom: 1px solid var(--border); }
  .audit-card { grid-template-columns: 1fr; }
  .audit-left { border-right: none; border-bottom: 1px solid rgba(160,12,48,.15); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-slot { aspect-ratio: 16/11; }
}

@media (max-width: 768px) {
  .site-logo { height: 34px; }
  .offer-h2-wrap { flex-direction: column; align-items: flex-start; gap: 24px; }

  /* Clocks — shrink so all 3 fit on one row */
  .clock-svg { width: 78px; height: 78px; }
  .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: clamp(2.8rem, 10vw, 5rem); }
  .hero-note { white-space: normal; font-size: .72rem; }

  /* Hero stats — 2 equal columns (1 PAGE removed), hide divider */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .stat-divider { display: none; }
  .stat-box {
    padding: 10px 14px;
    border-right: 1px solid var(--border);
  }
  .stat-box:last-child { border-right: none; }
  .stat-num { font-size: 1.5rem; }
  .stat-desc { font-size: .62rem; letter-spacing: .05em; }

  .problem-card, .why-card, .get-card, .ba-card,
  .faq-card { padding: 32px 24px; }
  .fix-left, .fix-right { padding: 32px 24px; }
  .offer-top { padding: 32px 24px 24px; gap: 16px; }
  .offer-price-col, .offer-steps-col { padding: 28px 24px; }
  .for-left, .for-right { padding: 32px 24px; }
  .ba-grid { grid-template-columns: 1fr; }
  .offer-top { flex-direction: column; gap: 12px; }
  .footer-inner { gap: 12px; }

  /* Quiz result padding on small screens */
  .quiz-result { padding: 20px 18px; }

  /* 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; }
}

/* ═══════════════════════════════════════════
   CURSOR FLASHLIGHT
═══════════════════════════════════════════ */
:root { --mx: -200%; --my: -200%; }

.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  background: radial-gradient(
    320px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(255, 255, 255, 0.01) 60%,
    transparent 70%
  );
}

/* ═══════════════════════════════════════════
   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;
  text-transform: uppercase;
  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: 999px;
  padding: 6px 14px 6px 10px;
  width: fit-content;
  margin-bottom: 20px;
}

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

.scanner-h2 {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: .92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  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;
  text-transform: uppercase;
  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: 10px;
  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: 10px;
  padding: 13px 22px;
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  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;
  text-transform: uppercase;
  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;
  text-transform: uppercase;
  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: 10px;
}

.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;
  text-transform: uppercase;
  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: -320px;
  left: 50%;
  transform: translateX(-50%);
  width: min(460px, calc(100vw - 32px));
  background: var(--card);
  border: 1px solid rgba(160, 12, 48, 0.3);
  border-radius: 20px;
  padding: 36px 32px 28px;
  z-index: 600;
  box-shadow:
    0 -24px 80px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.04);
  transition: bottom 520ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-panel.show { bottom: 24px; }

.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: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}

.exit-headline {
  font-family: var(--font-d);
  font-size: 2.2rem;
  line-height: .95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.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; }

/* ═══════════════════════════════════════════
   CONFETTI & SHAKE ANIMATIONS
═══════════════════════════════════════════ */
@keyframes confetti-burst {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0.4); opacity: 0; }
}

.confetti-piece {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 2px;
  animation: confetti-burst var(--dur) cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@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 ANIMATIONS
═══════════════════════════════════════════ */

/* Speed stat — repeating horizontal flash sweep with pause */
.stat-speed {
  position: relative;
  overflow: hidden;
}
.stat-speed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 75%
  );
  pointer-events: none;
  animation: speed-sweep-loop 3.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
/* Sweep crosses in ~17% of the duration, then resets off-screen and pauses */
@keyframes speed-sweep-loop {
  0%        { transform: translateX(-130%); }
  17%       { transform: translateX(230%); }
  17.01%    { transform: translateX(-130%); }
  100%      { transform: translateX(-130%); }
}

/* Value stat — slow breathing glow, always on */
#statValue {
  animation: value-breathe 2.8s ease-in-out infinite;
}
@keyframes value-breathe {
  0%, 100% { text-shadow: none; opacity: 1; }
  50%      { text-shadow: 0 0 26px rgba(255, 255, 255, 0.38); opacity: 0.92; }
}

/* ═══════════════════════════════════════════
   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: 16px;
  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;
  text-transform: uppercase;
  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; }
}
