/* ============================================================================
   STYLES  —  layout & visual system (dark theme, gradient accents, glow cards)
   You normally don't need to edit this. Copy lives in content.js.
   ============================================================================ */

:root {
  /* Colors */
  --bg: #07080d;
  --bg-2: #0b0d16;
  --panel: #10131f;
  --panel-2: #141828;
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(99, 130, 255, 0.35);
  --text: #eef1f7;
  --text-dim: #a5adc2;
  --text-mute: #6f7794;

  /* Accent gradient */
  --accent-1: #3b82f6;
  --accent-2: #22d3ee;
  --accent-3: #8b5cf6;
  --grad: linear-gradient(100deg, #60a5fa 0%, #22d3ee 45%, #a78bfa 100%);
  --grad-btn: linear-gradient(100deg, #3b82f6 0%, #6366f1 55%, #8b5cf6 100%);
  --grad-green: linear-gradient(100deg, #10b981 0%, #22c55e 55%, #34d399 100%);
  --grad-red: linear-gradient(100deg, #ff5a5f 0%, #ef2b3d 52%, #ff4d6d 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1080px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  /* Two gradient glow circles in the top corners (blue left, purple right) */
  background-image:
    radial-gradient(70% 64% at 6% 0%, rgba(56, 120, 255, 0.44), transparent 68%),
    radial-gradient(70% 64% at 94% 0%, rgba(139, 92, 246, 0.44), transparent 68%);
  background-repeat: no-repeat;
  background-position: top left, top right;
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }

/* -- Layout helpers ------------------------------------------------------- */
.section { padding: 54px 20px; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase; }

h1 { font-size: clamp(2.4rem, 8vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 5.5vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 3.5vw, 1.5rem); }

/* Blue highlight for select words in a headline (e.g. "REPUTATION STRATEGIST") */
.hl-blue {
  background: linear-gradient(100deg, #6db2ff 0%, #4f8bff 55%, #7aa0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Purple→blue gradient highlight (used on "AI" in the hero). Blue end matches
   hl-blue so the two highlights harmonize rather than fight. */
.hl-grad {
  background: linear-gradient(100deg, #a06bff 0%, #6db2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Glowing red highlight for select words (e.g. "BAD REPUTATION") */
.hl-red {
  color: #ff5a5a;
  text-shadow: 0 0 16px rgba(255, 70, 70, 0.7), 0 0 38px rgba(255, 50, 50, 0.4);
}

/* Radiant white highlight — makes a word glow bright (e.g. "One-click") */
.hl-white {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 24px rgba(255, 255, 255, 0.3);
}

.subhead { color: var(--text-dim); font-size: clamp(1rem, 2.4vw, 1.18rem); max-width: 720px; margin: 16px auto 0; font-weight: 300; line-height: 1.6; letter-spacing: 0.01em; }

/* -- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  color: #fff;
  background: var(--grad-btn);
  border: none;
  border-radius: 999px;
  padding: 18px 34px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  width: 100%;
  max-width: 460px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(99,102,241,0.6); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }
/* Red-gradient "WATCH NOW" button under the VSL prompt — compact pill (not the
   full-width block CTA), scrolls to and plays the video slot. */
.vsl-watch-wrap { text-align: center; margin: 2px 0 20px; }
.btn-watch {
  width: auto; max-width: none; padding: 13px 34px; font-size: 1rem;
  background: var(--grad-red);
  box-shadow: 0 10px 30px rgba(239,43,61,0.5), inset 0 1px 0 rgba(255,255,255,0.28);
}
.btn-watch:hover { box-shadow: 0 14px 40px rgba(239,43,61,0.65); }

/* -- Pills / trust rows --------------------------------------------------- */
.pills { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; align-items: center; margin: 24px 0; }
.pill {
  border: 1px solid rgba(120, 150, 255, 0.45);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 0.74rem;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(80, 120, 255, 0.28), inset 0 0 14px rgba(120, 150, 255, 0.10);
}
/* Per-pill glow colors — blue / purple / teal, like the reference */
.pills .pill:nth-child(1) {
  border-color: rgba(80, 140, 255, 0.6);
  background: rgba(80, 140, 255, 0.17);
  box-shadow: 0 0 26px rgba(80, 140, 255, 0.4), inset 0 0 22px rgba(80, 140, 255, 0.18);
}
.pills .pill:nth-child(3) {
  border-color: rgba(160, 110, 255, 0.6);
  background: rgba(160, 110, 255, 0.17);
  box-shadow: 0 0 26px rgba(160, 110, 255, 0.4), inset 0 0 22px rgba(160, 110, 255, 0.18);
}
.pills .pill:nth-child(5) {
  border-color: rgba(52, 211, 211, 0.55);
  background: rgba(52, 211, 211, 0.15);
  box-shadow: 0 0 26px rgba(52, 211, 211, 0.35), inset 0 0 22px rgba(52, 211, 211, 0.16);
}

/* "+" separators between hero pills — shown on all breakpoints, centered
   between the pills (mobile block below restacks them vertically). */
.pill-plus { display: inline-flex; align-items: center; color: var(--accent-2); font-family: var(--font-display); font-size: 0.95rem; line-height: 1; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center;
  color: var(--text-mute); font-size: 0.82rem; margin-top: 16px;
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row span::before { content: "✓"; color: var(--accent-2); font-weight: 700; }

/* -- Cards ---------------------------------------------------------------- */
.card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
/* Glowing gradient border effect */
.card.glow::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}

/* -- HERO ----------------------------------------------------------------- */
.hero { padding-top: 30px; padding-bottom: 8px; text-align: center; }
/* Two centered lines, slightly lighter/smaller than the global h1 so both
   lines sit comfortably on one row each. */
.hero h1 { margin: 0 auto; max-width: 900px; color: #ffffff; font-size: clamp(2rem, 6vw, 3.8rem); font-weight: 600; }
.hero .subheadline { color: var(--text-dim); font-size: clamp(1rem, 2.4vw, 1.16rem); font-weight: 300; line-height: 1.6; letter-spacing: 0.01em; max-width: 760px; margin: 20px auto 0; }
.benefit-line {
  max-width: 720px; margin: 30px auto 0; color: var(--text-dim);
  font-size: clamp(0.95rem, 2.35vw, 1.1rem); font-weight: 300; line-height: 1.7; letter-spacing: 0.01em;
}
/* Crisp bold-white highlight — stands out by weight/color, no glow */
.hl-crisp { color: #fff; font-weight: 700; }
.hl-green { color: #34d399; font-style: italic; font-weight: 700; }
.hero .btn { margin-top: 28px; }

/* -- DASHBOARD / VSL SLOT ------------------------------------------------- */
.vsl-prompt {
  max-width: 760px; margin: 0 auto 18px; text-align: center;
  color: var(--text); font-size: clamp(1.05rem, 2.8vw, 1.55rem);
  font-weight: 700; line-height: 1.25; letter-spacing: -0.015em;
}
.vsl-point { display: inline-block; margin-left: 5px; transform: translateY(4px); }
.dash-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--panel-2);
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(99,130,255,0.15);
}
.dash-frame iframe { width: 100%; height: 100%; border: 0; }
.vsl-frame { max-width: 1040px; margin: 0 auto; border-color: rgba(99,130,255,0.3); }
.vsl-placeholder {
  background:
    radial-gradient(55% 80% at 18% 20%, rgba(59,130,246,0.17), transparent 72%),
    radial-gradient(55% 80% at 82% 80%, rgba(139,92,246,0.16), transparent 72%),
    linear-gradient(145deg, #111522, #080a12);
}
.vsl-placeholder::after {
  content: ""; position: absolute; inset: 14px; border-radius: 13px;
  border: 1px dashed rgba(165,173,194,0.18); pointer-events: none;
}
.vsl-placeholder-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 17px;
  color: var(--text-mute); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.vsl-play {
  display: grid; place-items: center; width: 76px; height: 76px;
  padding-left: 5px; border-radius: 50%; color: #fff; font-size: 1.65rem;
  background: var(--grad-btn); box-shadow: 0 12px 38px rgba(99,102,241,0.5);
}
.vsl-cta-band { margin-top: 24px; }

/* -- REUSABLE CTA BAND ---------------------------------------------------- */
.cta-band { text-align: center; padding: 20px; }
.cta-band .btn { margin: 0 auto; }

/* -- SYSTEM: core-deliverables box row (like the reference stack) --------- */
.stack-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 40px auto 0; max-width: 720px; }
.stack-box {
  --accent: #4f8bff; --glow: rgba(79, 139, 255, 0.42);
  position: relative; text-align: center;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 26px 16px 22px;
  box-shadow: 0 0 20px var(--glow), inset 0 0 22px rgba(255, 255, 255, 0.02);
}
.stack-row .stack-box:nth-child(1) { --accent: #4f8bff; --glow: rgba(79, 139, 255, 0.42); }
.stack-row .stack-box:nth-child(2) { --accent: #a06bff; --glow: rgba(160, 110, 255, 0.42); }
.stack-row .stack-box:nth-child(3) { --accent: #34d3d3; --glow: rgba(52, 211, 211, 0.4); }
.stack-num {
  position: absolute; top: -11px; left: -11px;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--accent); background: var(--bg); border: 1px solid var(--accent);
  box-shadow: 0 0 10px var(--glow);
}
.stack-emoji { font-size: 1.65rem; line-height: 1; margin-bottom: 9px; }
.stack-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-size: 0.82rem; font-weight: 700; }
.stack-sub { color: var(--text-mute); font-size: 0.78rem; margin-top: 5px; }

/* -- SYSTEM / PILLARS (stacked full-width rows, accent per card) ---------- */
.pillars { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 28px; }

.pillar {
  --accent: #3b82f6;
  --glow: rgba(59, 130, 246, 0.45);
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 30px;
}
.pillars .pillar:nth-child(1) { --accent: #4f8bff; --glow: rgba(79, 139, 255, 0.45); }
.pillars .pillar:nth-child(2) { --accent: #a06bff; --glow: rgba(160, 110, 255, 0.45); }
.pillars .pillar:nth-child(3) { --accent: #34d3d3; --glow: rgba(52, 211, 211, 0.42); }

/* Numbered emoji icon tile */
.pillar-side { flex-shrink: 0; }
.pillar-icon {
  position: relative;
  width: 66px; height: 66px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 2rem; line-height: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--accent);
  box-shadow: 0 0 26px var(--glow), inset 0 0 20px var(--glow);
}
.pillar-num {
  position: absolute; top: -11px; left: -11px;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  color: var(--accent); background: var(--bg);
  border: 1px solid var(--accent);
  box-shadow: 0 0 12px var(--glow);
}

.pillar-body { flex: 1; min-width: 0; }
.pillar-body h3 { color: var(--text); margin-bottom: 6px; }
.pillar .badge-line {
  display: block; font-family: var(--font-body); text-transform: none; letter-spacing: 0;
  color: var(--accent); font-size: 0.95rem; font-weight: 600; margin-bottom: 18px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}

/* Highlighted stat-cards inside a pillar (the two strongest views) */
.pillar-stats { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 2px 0 20px; }
.pillar-stat {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--accent);
  border-radius: 12px; padding: 13px 15px;
  box-shadow: 0 0 16px var(--glow), inset 0 0 16px rgba(255, 255, 255, 0.02);
}
.pillar-stat-icon { font-size: 1.4rem; line-height: 1.1; }
.pillar-stat-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); font-size: 0.92rem; font-weight: 700; }
.pillar-stat-desc { color: var(--text-dim); font-size: 0.85rem; margin-top: 3px; }

/* Two-column bullets — balanced columns so short items don't leave gaps */
.pillar-bullets { list-style: none; }
.pillar-bullets li {
  position: relative; padding-left: 26px; color: var(--text-dim); font-size: 0.95rem;
  margin-bottom: 14px; break-inside: avoid; -webkit-column-break-inside: avoid;
}
.pillar-bullets li:last-child { margin-bottom: 0; }
.pillar-bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  color: var(--accent); font-weight: 800; font-size: 0.95rem;
}

/* -- VALUE TABLE ---------------------------------------------------------- */
.value-subhead { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 600; color: var(--text-mute); margin: 32px auto 12px; max-width: 760px; }
.value-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); max-width: 760px; margin: 0 auto; }
.value-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--panel); }
.value-row:nth-child(even) { background: var(--bg-2); }
.value-row .item { color: var(--text-dim); font-size: 0.95rem; }
.value-row .val { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); white-space: nowrap; }
.value-row.total { background: rgba(99,102,241,0.12); border-bottom: none; }
.value-row.total .item { color: var(--text); font-weight: 700; font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.05em; }
.value-row.total .val { font-size: 1.5rem; }
.value-row.total .val s { color: var(--text-mute); }

.price-reveal {
  margin: 22px auto 0; max-width: 760px; text-align: center; border-radius: var(--radius); padding: 24px;
  background: var(--grad-btn);
  box-shadow: 0 12px 40px rgba(99,102,241,0.45);
}
.price-reveal .today { font-family: var(--font-display); font-size: clamp(1.8rem, 6vw, 2.8rem); text-transform: uppercase; }
.price-reveal .note { opacity: 0.9; font-size: 0.9rem; }

/* -- COMPARISON ----------------------------------------------------------- */
.compare-grid { display: grid; gap: 18px; margin-top: 34px; }
.compare-card { text-align: center; }
.compare-card .name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); font-size: 1.05rem; }
.compare-card .price { font-family: var(--font-display); font-size: clamp(1.8rem, 6vw, 2.4rem); margin: 10px 0; }
.compare-card.win { border-color: var(--border-glow); background: linear-gradient(180deg, rgba(59,130,246,0.12), rgba(139,92,246,0.06)); }
.compare-card.win .price { }
.compare-card.win .price span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.compare-card.win .name { color: var(--text); }
.closing-line { text-align: center; margin-top: 26px; font-size: 1.1rem; color: var(--text); font-weight: 500; }

/* -- BONUSES -------------------------------------------------------------- */
.bonus-grid { display: grid; gap: 18px; margin-top: 34px; }
.bonus-card { }
.bonus-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.bonus-card .bonus-tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-2); }
.bonus-card .bonus-value {
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.04em;
  color: #fff; padding: 6px 14px; border-radius: 999px;
  background: var(--grad-btn);
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.4);
  white-space: nowrap;
}
.bonus-card h3 { color: var(--text); margin-bottom: 8px; }
.bonus-card p { color: var(--text-dim); font-size: 0.95rem; }

/* -- PRICE BAR ------------------------------------------------------------ */
.price-bar { text-align: center; }
.price-bar .big-price { font-family: var(--font-display); font-size: clamp(3rem, 12vw, 5.5rem); line-height: 1; margin: 10px 0; }
.price-bar .big-price .suffix { font-size: 0.35em; color: var(--text-dim); }
.price-bar .note { color: var(--text-mute); margin-bottom: 24px; }

/* -- FAQ ------------------------------------------------------------------ */
.faq-list { margin-top: 30px; display: grid; gap: 12px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--panel); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-size: 1rem; font-weight: 600; padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; gap: 14px; align-items: center; font-family: var(--font-body); }
.faq-q .icon { color: var(--accent-2); font-size: 1.4rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-q:focus-visible { outline: 2px solid var(--accent-2); outline-offset: -2px; border-radius: var(--radius-sm); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a-inner { padding: 0 20px 18px; color: var(--text-dim); }
.faq-item.open .faq-a { max-height: 500px; }

/* -- WHO IS THIS FOR ------------------------------------------------------ */
.whofor-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
.whofor-col.notfor { opacity: 0.95; }
.whofor-head { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.whofor-col.for .whofor-head { color: #34d399; }
.whofor-col.notfor .whofor-head { color: #f87171; }
.whofor-list { list-style: none; display: grid; gap: 13px; }
.whofor-list li { position: relative; padding-left: 30px; color: var(--text-dim); font-size: 0.97rem; }
.whofor-list.yes li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #34d399; font-weight: 800; }
.whofor-list.no li::before { content: "✕"; position: absolute; left: 0; top: 0; color: #f87171; font-weight: 800; }

/* -- AUTHORITY ------------------------------------------------------------ */
.authority-body { max-width: 720px; margin: 24px auto 0; }
.authority-body p { color: var(--text-dim); font-weight: 300; line-height: 1.7; font-size: clamp(1rem, 2.3vw, 1.15rem); margin-bottom: 16px; }
.authority-support { margin-top: 10px; color: var(--accent-2); font-weight: 600; letter-spacing: 0.02em; }

/* -- SOCIAL PROOF --------------------------------------------------------- */
.proof-featured {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  padding: 18px;
  overflow: hidden;
  border-color: rgba(34, 211, 238, 0.28);
  background: linear-gradient(120deg, rgba(59,130,246,0.11), rgba(139,92,246,0.08) 45%, var(--panel) 80%);
}
.proof-featured-copy { align-self: center; padding: 12px 8px 4px; }
.proof-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px;
  color: var(--accent-2); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.proof-badge::before { content: "▶"; font-size: 0.65rem; }
.proof-featured h3 { font-size: clamp(1.8rem, 5vw, 2.7rem); }
.proof-role { margin-top: 8px; color: var(--text-dim); }
.proof-featured-line { margin-top: 22px; color: var(--accent-2); font-weight: 700; }
.proof-video { position: relative; overflow: hidden; background: #020308; }
.proof-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Custom video facade — real thumbnail + one purple-gradient play button. */
.video-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; padding: 0; cursor: pointer; display: grid; place-items: center;
  background-color: #020308; background-size: cover; background-position: center center; background-repeat: no-repeat;
}
.video-facade::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(2,3,8,0.12), rgba(2,3,8,0.55));
  transition: background 0.25s ease;
}
.video-facade:hover::after { background: radial-gradient(circle at 50% 45%, rgba(2,3,8,0.02), rgba(2,3,8,0.4)); }
.video-facade-play {
  position: relative; z-index: 1;
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad-btn); color: #fff;
  box-shadow: 0 10px 30px rgba(99,102,241,0.55), inset 0 0 0 1px rgba(255,255,255,0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-facade-play svg { margin-left: 3px; } /* optically center the triangle */
.video-facade:hover .video-facade-play {
  transform: scale(1.07);
  box-shadow: 0 14px 40px rgba(99,102,241,0.7), inset 0 0 0 1px rgba(255,255,255,0.22);
}
.video-facade:focus-visible { outline: none; }
.video-facade:focus-visible .video-facade-play {
  box-shadow: 0 0 0 3px rgba(34,211,238,0.7), 0 10px 30px rgba(99,102,241,0.55);
}
.proof-video--wide .video-facade-play { width: 76px; height: 76px; }
.dash-frame .video-facade-play { width: 76px; height: 76px; }
/* Chromeless player after click: our own click-to-toggle + purple progress. */
.video-player { position: absolute; inset: 0; }
.video-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-toggle {
  position: absolute; inset: 0; z-index: 1; border: 0; padding: 0; cursor: pointer;
  background: transparent; display: grid; place-items: center; transition: background 0.2s ease;
}
.video-player.is-paused .video-toggle { background: rgba(2,3,8,0.4); }
.video-resume { opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.video-player.is-paused .video-resume { opacity: 1; }
.video-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 2; background: rgba(255,255,255,0.16); pointer-events: none; }
.video-progress span { display: block; height: 100%; width: 0; background: var(--grad-btn); transition: width 0.2s linear; }
@media (prefers-reduced-motion: reduce) {
  .video-facade-play, .video-facade::after, .video-toggle, .video-resume, .video-progress span { transition: none; }
}
.proof-video--wide { aspect-ratio: 16 / 9; border-radius: 14px; }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 24px; }
.testimonial-grid--more { margin-top: 20px; }
.testimonial-grid--more[hidden] { display: none !important; }
.proof-card {
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}
.proof-card:hover { border-color: rgba(99,130,255,0.28); }
.proof-video--portrait { aspect-ratio: 9 / 16; }
.proof-card-body { padding: 18px 18px 20px; }
.proof-person { display: flex; align-items: center; gap: 12px; }
.proof-person strong { display: block; color: var(--text); line-height: 1.25; }
.proof-person div span { display: block; margin-top: 3px; color: var(--text-mute); font-size: 0.78rem; line-height: 1.35; }
.proof-avatar {
  display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px;
  border-radius: 50%; color: #fff; font-weight: 800;
  background: var(--grad-btn); border: 1px solid rgba(255,255,255,0.18);
}
.proof-card-body > p { margin-top: 15px; color: var(--accent-2); font-weight: 700; font-size: 0.9rem; }
/* Name links out to the case study (new tab); ↗ is a persistent link cue. */
.proof-name-link { color: inherit; text-decoration: none; display: inline; }
.proof-name-link strong { display: inline; } /* keep name + ↗ together on one line */
.proof-name-link .ext { color: var(--accent-2); white-space: nowrap; }
.proof-name-link:hover { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.proof-name-link:hover strong { color: var(--accent-2); }
/* Subtle italic pull-quote — readable but secondary to the video. */
.proof-quote {
  font-style: italic; color: var(--text-dim); font-size: 0.9rem; line-height: 1.6;
  margin-top: 14px; padding-left: 12px; border-left: 2px solid rgba(34,211,238,0.32);
}
.proof-featured-copy .proof-quote { font-size: 0.98rem; margin-top: 16px; }
.proof-toggle-wrap { text-align: center; margin-top: 28px; }
.proof-toggle {
  color: var(--text); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(99,130,255,0.34); border-radius: 999px;
  padding: 13px 24px; font: 700 0.88rem var(--font-body);
  cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.proof-toggle:hover { transform: translateY(-1px); border-color: var(--accent-2); background: rgba(34,211,238,0.07); }
.proof-toggle span { margin-left: 8px; color: var(--accent-2); }
.written-proof { margin-top: 54px; padding-top: 46px; border-top: 1px solid var(--border); }
.written-proof h3 { font-size: clamp(1.55rem, 4vw, 2.1rem); }
.written-review-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
.written-review { position: relative; padding: 24px; background: linear-gradient(150deg, rgba(18,22,36,0.98), rgba(9,11,20,0.98)); display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; }
.written-review:hover { border-color: var(--border-glow); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
.written-review:focus-visible { outline: none; border-color: var(--border-glow); box-shadow: 0 0 0 2px rgba(34,211,238,0.55); }
/* Per-card "verify at source" cue (persistent, so it reads clickable on mobile too) */
.review-source-link { margin-top: 14px; align-self: flex-start; display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mute); transition: color 0.18s ease; }
.written-review:hover .review-source-link { color: var(--accent-2); }
.ext { color: var(--accent-2); font-size: 0.9em; }
/* Company/context logo on the Facebook cards */
.review-company { display: flex; align-items: center; gap: 9px; margin-top: 12px; }
.review-company-logo { width: 30px; height: 30px; border-radius: 7px; object-fit: cover; border: 1px solid rgba(255,255,255,0.14); background: #0b0e17; flex-shrink: 0; }
.review-company span { font-size: 0.78rem; font-weight: 600; color: var(--text-dim); }
/* Uniform head: name + stars grouped left, Verified Buyer pill pinned right. */
.written-review-head { display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 10px; }
.wr-id { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px 10px; min-width: 0; }
.written-review-head strong { font-size: 1rem; color: var(--text); }
.review-stars { color: #fbbf24; letter-spacing: 0.06em; font-size: 0.9rem; line-height: 1; }
.verified-buyer {
  display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0;
  padding: 3px 8px; border: 1px solid rgba(34,211,238,0.5); border-radius: 999px;
  color: var(--accent-2); font-size: 0.6rem; font-weight: 700; white-space: nowrap;
}
.verified-buyer > span {
  display: grid; place-items: center; width: 13px; height: 13px; border-radius: 50%;
  color: #071215; background: var(--accent-2); font-size: 0.52rem;
}
.written-review blockquote {
  position: relative; margin-top: 22px; padding-left: 20px;
  color: var(--text-dim); font-size: 0.94rem; line-height: 1.65;
  border-left: 2px solid rgba(34,211,238,0.42);
}
.written-review blockquote::before {
  content: "“"; position: absolute; left: 8px; top: -18px;
  color: rgba(34,211,238,0.42); font: 700 2.4rem Georgia, serif;
}

/* Facebook recommendations — honest proof: no stars, no Verified Buyer badge,
   distinct Facebook-blue accent so it never reads as a verified review. */
.fb-proof { margin-top: 30px; }
.fb-proof-label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 0 16px; color: var(--text-mute);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.fb-review-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
.written-review--fb blockquote { border-left-color: rgba(24,119,242,0.5); }
.written-review--fb blockquote::before { color: rgba(24,119,242,0.5); }
.fb-tag {
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  padding: 3px 9px; border: 1px solid rgba(24,119,242,0.45); border-radius: 999px;
  background: rgba(24,119,242,0.1); color: #9bc0ff;
  font-size: 0.6rem; font-weight: 700; white-space: nowrap;
}
.fb-logo { width: 15px; height: 15px; object-fit: contain; display: inline-block; vertical-align: middle; }
.fb-proof-label .fb-logo { width: 18px; height: 18px; }

/* -- NARRATIVE BRIDGE LINES ----------------------------------------------- */
.section-bridge { text-align: center; color: var(--text-mute); font-style: italic; font-weight: 300; font-size: clamp(0.95rem, 2.2vw, 1.08rem); line-height: 1.6; max-width: 680px; margin: 0 auto 26px; }
.section-bridge-close { text-align: center; color: var(--text); font-weight: 500; font-size: clamp(1.08rem, 2.7vw, 1.35rem); line-height: 1.5; max-width: 780px; margin: 30px auto 0; }

/* -- PLATFORM STRIP (platforms we monitor — nominative, not endorsement) --- */
.platform-strip { text-align: center; margin: 34px auto 4px; max-width: 900px; }
.platform-label { display: block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--text-mute); margin-bottom: 18px; }
.platform-marks { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 48px; min-height: 62px; }
.platform-logo { height: 38px; width: auto; opacity: 0.9; object-fit: contain; transition: opacity 0.2s, transform 0.2s; }
.platform-logo:hover { opacity: 1; }
.platform-logo--google-c { height: 42px; }
.platform-logo--reddit-clean { height: 48px; filter: drop-shadow(0 0 10px rgba(255,69,0,0.28)); }
.platform-logo--openai-icon-w { height: 42px; }
.platform-symbol {
  display: inline-block; width: 48px; height: 48px;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.platform-claude {
  background: #ff9a70;
  -webkit-mask-image: url("assets/claude-icon-w.png");
  mask-image: url("assets/claude-icon-w.png");
  filter: drop-shadow(0 0 11px rgba(255,154,112,0.36));
}
.platform-gemini {
  background: linear-gradient(135deg, #d8a7ff 0%, #9fc5ff 52%, #67b7ff 100%);
  -webkit-mask-image: url("assets/gemini-icon-w.png");
  mask-image: url("assets/gemini-icon-w.png");
  filter: drop-shadow(0 0 12px rgba(132,190,255,0.42));
}

/* Keep both sides of the VSL tight: connected to the hero above and the system below. */
#dashboard { padding-top: 6px; padding-bottom: 34px; }
#system { padding-top: 30px; }

/* -- PRICE / CHECKOUT TWO-CARD (white cards, scaled ~30%) ----------------- */
.price-cards { display: grid; grid-template-columns: 1fr; gap: 26px; margin: 40px auto 0; max-width: 1060px; text-align: left; align-items: start; }
.price-next-column { display: grid; gap: 24px; }
.price-next, .price-order { padding: 40px 38px; }
.price-card-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.25rem; color: #3b5bdb; margin-bottom: 26px; }

/* Left card — steps */
.next-steps { list-style: none; display: grid; gap: 24px; }
.next-steps li { position: relative; padding-left: 54px; color: #3a4256; font-size: 1.12rem; line-height: 1.5; }
.next-steps .step-num { position: absolute; left: 0; top: -2px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-btn); color: #fff; font-family: var(--font-display); font-size: 1.05rem; box-shadow: 0 4px 14px rgba(99,102,241,0.4); }
.next-steps .step-when { color: #0f1830; font-weight: 700; }

/* Right card — price top, numbered pillars, bonuses, in-card CTA */
.order-top { padding-bottom: 22px; margin-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.order-price-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: #8a93a6; margin-bottom: 6px; }
.order-price { font-family: var(--font-body); font-size: clamp(3.8rem, 7vw, 4.6rem); font-weight: 850; letter-spacing: -0.07em; line-height: 0.98; color: #0f1830; }
.order-price-suffix { display: inline-block; margin-left: 0.28em; font-size: 0.34em; color: #64748b; font-weight: 400; letter-spacing: -0.02em; }
.order-price-note { color: #8a93a6; font-size: 0.95rem; margin-top: 8px; }
.order-pillars { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.order-pillars li { display: flex; align-items: center; gap: 14px; background: rgba(0,0,0,0.045); border-radius: 999px; padding: 12px 18px; font-weight: 600; font-size: 1.05rem; color: #1a2233; }
.opill-num { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-btn); color: #fff; font-family: var(--font-display); font-size: 0.95rem; }
.order-bonuses-title { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; color: #8a93a6; margin-bottom: 14px; }
.order-bonuses { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.order-bonuses li { position: relative; padding-left: 30px; font-size: 1.02rem; color: #3a4256; }
.order-bonuses li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 800; }
.order-cta { width: 100%; max-width: none; }

/* Restate the three-part offer as one unified bar at the buy moment. */
.offer-pillbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 20px;
  max-width: 880px; margin: 26px auto 0; padding: 16px 30px;
  border: 1px solid rgba(120,150,255,0.38); border-radius: 22px;
  background: rgba(30,41,78,0.26); box-shadow: inset 0 0 24px rgba(99,102,241,0.08);
}
.offer-pill { color: #fff; font-weight: 750; font-size: clamp(0.98rem, 2.2vw, 1.22rem); }
.offer-plus { color: #60a5fa; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }

/* Comparison hierarchy and highlighted conclusion. */
.comparison-line-two { display: inline-flex; align-items: baseline; justify-content: center; gap: 0.22em; }
.comparison-head-num { color: #fff; text-shadow: none; }
.compare-card { position: relative; }
.compare-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--text-dim); background: var(--bg); border: 1px solid var(--border);
}
.compare-icon { margin-right: 8px; }
.compare-card.hero .compare-num { color: #fff; background: var(--grad-btn); border-color: transparent; box-shadow: 0 0 16px rgba(99,102,241,0.6); }
.compare-card.hero { border-color: var(--border-glow); box-shadow: 0 0 30px rgba(99,130,255,0.45), inset 0 0 30px rgba(99,130,255,0.08); padding-top: 34px; padding-bottom: 34px; }

/* Price card refinements and the same-day delivery guarantee. */
.price-order.big { padding: 46px 42px; }
.price-order.big .order-pillars li { font-size: 1.1rem; }
.order-cta.green { background: var(--grad-green); box-shadow: 0 8px 30px rgba(16,185,129,0.45), inset 0 1px 0 rgba(255,255,255,0.25); }
.order-guarantee-badge {
  display: inline-flex; align-items: center; gap: 9px; margin: 4px 0 24px;
  padding: 8px 18px; border-radius: 999px; background: var(--grad-green);
  box-shadow: 0 5px 16px rgba(16,185,129,0.32); color: #fff;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.035em; text-transform: uppercase;
}
.guarantee-shield { width: 19px; height: 19px; flex: 0 0 auto; color: currentColor; }
.guarantee-card {
  display: flex; align-items: flex-start; gap: 18px; text-align: left;
  background: linear-gradient(135deg, #28c9df 0%, #33d5ac 100%);
  border-radius: 24px; padding: 30px; box-shadow: 0 12px 40px rgba(23,190,168,0.28);
}
.guarantee-card .guarantee-shield { width: 38px; height: 38px; color: #fff; }
.g-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.035em; font-size: 1.3rem; font-weight: 700; color: #073d3d; }
.g-text { color: #07504a; font-size: 0.96rem; line-height: 1.55; margin-top: 5px; }

/* Cleared client logos inside the white checkout card. */
.checkout-clients { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.08); }
.cc-label { display: block; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: #8a93a6; margin-bottom: 12px; text-align: center; }
.cc-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 24px; }
.cc-logo { height: 22px; width: auto; opacity: 0.9; }

/* -- LOGO-SCROLL KEYFRAME (drives the hero + authority belts) -------------- */
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -- WHITE CHECKOUT CARDS (deliberate light contrast in the dark theme) --- */
.price-next, .price-order { background: #ffffff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 14px 44px rgba(0,0,0,0.4); }
.price-next.glow::before, .price-order.glow::before { display: none; }

/* -- AUTHORITY AUTO-SCROLL BANNER ----------------------------------------- */
/* Authority "TRUSTED BY COMPANIES YOU'D RECOGNIZE" belt — mirrors the hero's
   frosted / ghosted treatment and matched thickness (contained + rounded here
   rather than full-bleed). */
.auth-banner {
  overflow: hidden; height: 71px; margin: 36px auto 0; display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 22px;
  /* Static frosted tint (no live backdrop-filter — that re-blurs every frame
     on scroll and was the main cause of scroll jank). */
  background: linear-gradient(180deg, rgba(40,46,72,0.42), rgba(14,17,30,0.5));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
/* will-change keeps the moving strip on its own GPU layer so it doesn't force
   the belt (and page) to repaint each frame. */
.auth-banner-track { display: flex; align-items: center; gap: 76px; width: max-content; animation: logo-scroll 34s linear infinite; padding: 0 38px; will-change: transform; }
.auth-logo { height: 42px; width: auto; max-width: 210px; object-fit: contain; opacity: 0.94; flex-shrink: 0; }
.auth-logo--masterworks,
.auth-logo--happymammoth,
.auth-logo--relay { height: 46px; }
.auth-logo--relay {
  opacity: 1;
  filter: saturate(0.55) brightness(0.82) contrast(1.08) drop-shadow(0 1px 1px rgba(96,82,18,0.24));
}
/* Ghost the authority-belt marks to white silhouettes, mirroring the hero. */
.auth-banner .auth-logo { filter: brightness(0) invert(1); opacity: 0.55; }
@media (prefers-reduced-motion: reduce) { .auth-banner-track { animation: none; } }

/* reviews.io native trust badge (under THE RESULTS KEEP GOING) */
.reviews-badge {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 14px; width: fit-content; max-width: 100%; margin: 18px auto 0; padding: 11px 20px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.reviews-badge-avatars { display: inline-flex; align-items: center; }
.reviews-badge-avatar {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(15,18,30,0.95); box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  margin-left: -10px; background: #1a1e2e;
}
.reviews-badge-avatar:first-child { margin-left: 0; }
.reviews-badge-stars { color: #fbbf24; letter-spacing: 0.08em; font-size: 1.05rem; line-height: 1; }
.reviews-badge-text { color: var(--text-dim); font-size: 0.95rem; }
/* Official reviews.io logo is black — seat it on a white chip so it reads on dark. */
.reviews-badge-logo { display: inline-flex; align-items: center; background: #fff; border-radius: 6px; padding: 5px 9px; }
.reviews-badge-logo img { height: 17px; width: auto; display: block; }

/* -- FOOTER --------------------------------------------------------------- */
footer { border-top: 1px solid var(--border); padding: 30px 20px; text-align: center; color: var(--text-mute); font-size: 0.82rem; }
footer a { color: var(--text-dim); text-decoration: none; margin: 0 10px; }

/* -- RESPONSIVE (tablet / desktop) ---------------------------------------- */
@media (min-width: 720px) {
  .section { padding: 74px 24px; }
  /* Tighten space below the hero logo belt so it sits close to the VSL prompt
     (the .section 74px bottom padding would otherwise apply to the hero). */
  .hero { padding-bottom: 26px; }
  .stack-row { grid-template-columns: repeat(3, 1fr); }
  .pillar-stats { grid-template-columns: 1fr 1fr; }
  .pillar-bullets { columns: 2; column-gap: 40px; }
  .whofor-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .proof-featured { grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.6fr); align-items: center; padding: 20px; }
  .proof-featured-copy { padding: 24px; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .written-review-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .fb-review-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
  .price-cards { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 720px) {
  .compare-card.hero { transform: scale(1.06); z-index: 1; }
}
@media (max-width: 719px) {
  .comparison-line-two { display: flex; }
  .offer-pillbar { flex-wrap: nowrap; gap: 6px; padding: 13px 10px; border-radius: 18px; }
  .offer-pill { font-size: 0.72rem; white-space: nowrap; }
  .offer-plus { font-size: 1rem; }
  .price-order.big { padding: 36px 24px; }
  .guarantee-card { padding: 24px 22px; border-radius: 20px; }
  .platform-marks { gap: 22px 30px; }
  .platform-logo { transform: scale(0.92); }
}
@media (min-width: 980px) {
  .hero { padding-top: 38px; }
}

/* ========================================================================== */
/* MOBILE-ONLY OPTIMIZATION PASS (~390px). Desktop/tablet (>=720px) untouched. */
/* ========================================================================== */
@media (max-width: 480px) {
  /* 0 — Compact hero: tighten every vertical gap so the video/preview slot
     reaches the viewport with minimal scroll after the hero. */
  .hero { padding-top: 16px; padding-bottom: 4px; }
  .hero h1 { max-width: 100%; }
  .hero .subheadline { margin-top: 12px; line-height: 1.5; }
  .hero .btn { margin-top: 16px; }
  #dashboard { padding-top: 4px; }
  .vsl-prompt { margin-bottom: 12px; }
  .vsl-watch-wrap { margin: 2px 0 14px; }
  .btn-watch { padding: 12px 28px; font-size: 0.95rem; }

  /* 1 — Hero pills: stack with centered "+" separators between them (tightened) */
  .pills { flex-direction: column; align-items: center; gap: 8px; margin: 14px 0; }
  .pill { width: auto; }
  .pill-plus { display: block; color: var(--accent-2); font-family: var(--font-display); font-size: 1.2rem; line-height: 1; }

  /* 2 — Pillar cards: icon on top, smaller; tighter type/spacing so a card ≈ one screen */
  .pillars { gap: 16px; }
  .pillar { flex-direction: column; gap: 14px; padding: 22px 20px; align-items: stretch; }
  .pillar-side { align-self: flex-start; }
  .pillar-icon { width: 46px; height: 46px; border-radius: 13px; font-size: 1.45rem; }
  .pillar-num { width: 21px; height: 21px; font-size: 0.75rem; top: -8px; left: -8px; }
  .pillar-body h3 { font-size: 1.12rem; }
  .pillar .badge-line { font-size: 0.84rem; margin-bottom: 13px; padding-bottom: 12px; }
  .pillar-stat { padding: 11px 13px; }
  .pillar-stat-title { font-size: 0.85rem; }
  .pillar-stat-desc { font-size: 0.8rem; }
  .pillar-bullets li { font-size: 0.86rem; line-height: 1.45; margin-bottom: 10px; padding-left: 23px; }

  /* 3 — Platform logos: tighter so they wrap cleanly */
  .platform-marks { gap: 16px 20px; min-height: 0; }
  .platform-logo { height: 28px; transform: none; }

  /* 3 — Price / order card: reclaim width */
  .price-order.big { padding: 28px 20px; }
  .price-next, .price-order { padding: 28px 22px; }

  /* 3 — Guarantee card: stack icon above text, smaller heading (no awkward mid-phrase break) */
  .guarantee-card { flex-direction: column; text-align: center; gap: 12px; padding: 24px 20px; }
  .g-title { font-size: 1.05rem; }
  .g-text { font-size: 0.9rem; }

  /* 3 — Checkout client logos: slightly tighter */
  .cc-logos { gap: 14px 18px; }
  .cc-logo { height: 20px; }

  /* 3 — Comparison: tighten card padding + emoji so stacked cards stay compact */
  .compare-card { padding: 24px 20px; }
  .compare-card.hero { padding-top: 28px; padding-bottom: 28px; }
}
