/*
 * install.css — page-specific styles for /install
 *
 * Loaded AFTER shared.css. Overrides + adds motion graphics lifted from
 * the private architecture/install pages (selrai-systems.vercel.app).
 *
 * Sections:
 *   1.  CSS vars + base extensions
 *   2.  Scroll progress bar (fixed top)
 *   3.  Hero overrides — split 2-column with ambient stack
 *   4.  Hero ambient: grid + glows + particles + h1 split-text + sweep
 *   5.  Hero 4-stop anchor (Installed → Connected → Used → Owned)
 *   6.  Hero meta line (pulse dot)
 *   7.  Access form (in hero RHS) + inline validation + success state
 *   8.  Reveal-on-scroll
 *   9.  Eyebrow with animated rail
 *   10. Pain section (chaos cluster + arrow + terminal panel)
 *   11. Flip cards (Installed/Connected/Used/Owned)
 *   12. vs Alternatives — 3-card comparison with dark winning card
 *   13. What happens next (4-step strip)
 *   14. Final CTA — dark cta-band kicker
 *   15. prefers-reduced-motion fallbacks
 */

/* ============================================================
 * 1. CSS vars + base extensions
 * ============================================================ */

:root {
  --primary-glow: rgba(103, 54, 228, 0.08);
  --primary-glow-strong: rgba(103, 54, 228, 0.16);
  --surface-2: #F0F0F0;
  --surface-3: #E8E8E8;
  --border-2: rgba(0, 0, 0, 0.09);
  --border-hover: rgba(0, 0, 0, 0.16);
  --text-mono: #6b7280;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --r-lg: 24px;
}

body { overflow-x: hidden; }

html { scroll-behavior: smooth; }

/* JetBrains Mono for mono accents — preconnect in <head>. */
.mono { font-family: 'JetBrains Mono', SFMono-Regular, monospace; }

/* ============================================================
 * 2. Scroll progress bar
 * ============================================================ */

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft, #8B5CF6));
  z-index: 1001;
  transition: width 0.12s linear;
  box-shadow: 0 0 10px rgba(103, 54, 228, 0.4);
  pointer-events: none;
}

/* ============================================================
 * 3. Hero overrides
 * ============================================================ */

.install-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 55%, var(--surface) 100%);
}

.install-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}

@media (max-width: 880px) {
  .install-hero { padding: 96px 0 56px; }
  .install-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.install-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
  color: var(--text);
}

/* Only the highlight span (without .word class) gets the gradient,
 * so the split-text .word wrappers around the rest of the headline stay
 * inheriting the default --text color (black-ish).
 *
 * Use direct-child selector `>` so .word children NESTED inside the
 * highlight span continue to inherit the gradient (via -webkit-text-fill-color
 * which IS inheritable in webkit), not the black color. */
.install-hero h1 span:not(.word) {
  background: linear-gradient(100deg, var(--primary) 0%, var(--primary-soft, #8B5CF6) 35%, var(--primary) 70%, var(--primary-soft, #8B5CF6) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
}
.install-hero h1 > .word { color: var(--text); }

@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

/* ============================================================
 * 4. Hero ambient: grid + glows + particles + h1 split-text + sweep
 * ============================================================ */

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(103, 54, 228, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 25%, transparent 85%);
  pointer-events: none;
  opacity: 0.65;
  animation: gridDrift 22s linear infinite;
  z-index: 0;
}

@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 32px 32px; }
}

.hero-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 980px; height: 840px;
  background: radial-gradient(ellipse at center, rgba(103, 54, 228, 0.09), transparent 62%);
  pointer-events: none;
  animation: glowDrift 16s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes glowDrift {
  0% { transform: translate(-52%, 0) scale(1); }
  100% { transform: translate(-48%, 30px) scale(1.06); }
}

.hero-glow-2 {
  position: absolute; top: 80px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12), transparent 60%);
  pointer-events: none;
  animation: glow2Drift 14s ease-in-out infinite alternate;
  z-index: 0;
  border-radius: 50%;
  filter: blur(8px);
}

@keyframes glow2Drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.08); }
}

.hero-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, rgba(103, 54, 228, 0.3) 60%, transparent 100%);
  pointer-events: none;
  opacity: 0.55;
  filter: blur(0.5px);
  animation: particleDrift 18s ease-in-out infinite;
  z-index: 1;
}

.hero-particle.p1 { top: 18%; left: 8%; animation-delay: -2s; animation-duration: 22s; }
.hero-particle.p2 { top: 62%; left: 24%; animation-delay: -7s; animation-duration: 16s; width: 4px; height: 4px; }
.hero-particle.p3 { top: 30%; right: 45%; animation-delay: -12s; animation-duration: 25s; width: 5px; height: 5px; }
.hero-particle.p4 { top: 78%; right: 18%; animation-delay: -4s; animation-duration: 19s; width: 4px; height: 4px; }

@keyframes particleDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.55; }
  25% { transform: translate(40px, -30px); opacity: 0.85; }
  50% { transform: translate(80px, -10px); opacity: 0.4; }
  75% { transform: translate(20px, 40px); opacity: 0.7; }
}

@media (max-width: 880px) {
  .hero-particle { display: none; }
}

/* Hero H1 split-text */
.hero-h1 { --split-stagger: 0.07s; position: relative; }
.hero-h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) rotate(2deg);
  transition: opacity 0.65s var(--ease-soft), transform 0.8s var(--ease-soft);
  transition-delay: calc(var(--i, 0) * var(--split-stagger));
}
.hero-h1.in .word { opacity: 1; transform: translateY(0) rotate(0); }
.hero-h1 .word.space { width: 0.28em; }
.hero-h1::after {
  content: ''; position: absolute; top: 0; left: -10%; width: 30%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.hero-h1.in::after { animation: h1Sweep 1.8s ease-out 1.4s 1 forwards; }
@keyframes h1Sweep {
  0% { left: -30%; opacity: 0; }
  10% { opacity: 1; }
  60% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

.install-hero-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}

.install-hero-sub strong { color: var(--text); font-weight: 600; }

/* ============================================================
 * 5. Hero 4-stop anchor
 * ============================================================ */

.hero-anchor {
  margin: 0 0 28px;
  max-width: 520px;
  padding: 18px 24px 14px;
  position: relative;
  border-top: 1px solid rgba(103, 54, 228, 0.12);
  border-bottom: 1px solid rgba(103, 54, 228, 0.12);
  background: linear-gradient(180deg, rgba(103, 54, 228, 0.04) 0%, transparent 100%);
}

.anchor-rail {
  position: absolute; top: 50%; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 18%, var(--primary-soft, #8B5CF6) 50%, var(--primary) 82%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-soft) 0.3s;
  pointer-events: none;
}

.hero-anchor.in .anchor-rail { transform: scaleX(1); }

.anchor-stops {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 8px;
}

.anchor-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stop-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--border-2);
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.5s var(--ease-soft), background 0.5s;
  opacity: 0.45;
}

.hero-anchor.in .stop-dot {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(103, 54, 228, 0.15);
  transform: scale(1.08);
}

.hero-anchor.in .anchor-stop:nth-child(1) .stop-dot { transition-delay: 0.5s; }
.hero-anchor.in .anchor-stop:nth-child(2) .stop-dot { transition-delay: 0.65s; }
.hero-anchor.in .anchor-stop:nth-child(3) .stop-dot { transition-delay: 0.8s; }
.hero-anchor.in .anchor-stop:nth-child(4) .stop-dot {
  transition-delay: 0.95s;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(103, 54, 228, 0.2), 0 0 12px var(--primary-soft, #8B5CF6);
}

.stop-word {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.5s, transform 0.5s, color 0.5s;
}

.hero-anchor.in .stop-word { opacity: 1; transform: translateY(0); }
.hero-anchor.in .anchor-stop:nth-child(1) .stop-word { transition-delay: 0.6s; }
.hero-anchor.in .anchor-stop:nth-child(2) .stop-word { transition-delay: 0.75s; }
.hero-anchor.in .anchor-stop:nth-child(3) .stop-word { transition-delay: 0.9s; }
.hero-anchor.in .anchor-stop:nth-child(4) .stop-word {
  transition-delay: 1.05s;
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 560px) {
  .hero-anchor { padding: 14px 14px 10px; }
  .stop-word { font-size: 0.62rem; }
}

/* ============================================================
 * 6. Hero meta line (pulse dot)
 * ============================================================ */

.hero-meta-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--text-2);
  margin-bottom: 8px;
}

.hero-meta-line .hm-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: hmDotPulse 2.2s ease-in-out infinite;
}

@keyframes hmDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(22, 163, 74, 0); }
}

.hero-meta-line .hm-sep { color: var(--border-2); font-weight: 300; padding: 0 4px; }
.hero-meta-line b { color: var(--text); font-weight: 700; }

/* ============================================================
 * 7. Access form
 * ============================================================ */

.access-form {
  background: var(--bg, #fff);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  box-shadow: 0 18px 60px rgba(103, 54, 228, 0.08), 0 4px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.access-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft, #8B5CF6));
}

.access-form-eyebrow {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.access-form h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0;
  color: var(--text);
}

.access-form-sub {
  font-size: 0.85rem;
  color: var(--text-3);
  margin: 0 0 12px;
  line-height: 1.5;
}

.access-form-field {
  position: relative;
}

.access-form-field input,
.access-form-field select {
  width: 100%;
  padding: 13px 38px 13px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg, #fff);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.access-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23999' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.access-form-field input::placeholder { color: var(--text-3); }

.access-form-field input:focus,
.access-form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(103, 54, 228, 0.1);
}

.access-form-tick {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #16A34A;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s var(--ease-soft);
  pointer-events: none;
}

.access-form-tick::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 7l3 3 5-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.access-form-field.is-valid .access-form-tick {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.access-form-field.is-valid select,
.access-form-field.is-valid input { padding-right: 42px; }

.access-form-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 0.98rem;
}

.access-form-trust {
  margin-top: 12px;
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-align: center;
}

/* Honeypot — visually + accessibly hidden. */
input[name="website_url"] {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Success state */
.access-form.is-success {
  background: linear-gradient(180deg, #fff 0%, #F8F7FF 100%);
  border-color: var(--primary);
}

.access-form-success {
  display: none;
  text-align: center;
  padding: 8px 0 4px;
}

.access-form.is-success .access-form-success { display: block; animation: successPop 0.5s var(--ease-soft); }
.access-form.is-success .access-form-eyebrow,
.access-form.is-success h3,
.access-form.is-success .access-form-sub,
.access-form.is-success .access-form-field,
.access-form.is-success .access-form-submit,
.access-form.is-success .access-form-trust { display: none; }

@keyframes successPop {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.access-form-success-check {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft, #8B5CF6));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(103, 54, 228, 0.32);
}

.access-form-success-check svg {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: checkDraw 0.6s var(--ease-soft) 0.2s forwards;
}

@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

.access-form-success h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.access-form-success p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.access-form-success a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
}

/* ============================================================
 * 8. Reveal-on-scroll
 * ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}

.reveal[data-reveal="left"] { transform: translateX(-32px); }
.reveal[data-reveal="right"] { transform: translateX(32px); }
.reveal[data-reveal="scale"] { transform: scale(0.94); }

.reveal.in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ============================================================
 * 9. Eyebrow with animated rail
 * ============================================================ */

.install-eyebrow {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.install-eyebrow::before {
  content: '';
  width: 0; height: 1px;
  background: var(--primary);
  transition: width 0.7s var(--ease) 0.15s;
}

.install-eyebrow.in::before, .reveal.in .install-eyebrow::before { width: 18px; }

.install-eyebrow.center { justify-content: center; }

/* ============================================================
 * 10. Pain section (chaos-cluster + arrow + terminal)
 * ============================================================ */

.pain-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg, #fff) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-h {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.018em;
  margin-bottom: 16px;
  text-wrap: balance;
  max-width: 720px;
}

.pain-h em {
  font-style: normal;
  color: var(--primary);
  background: linear-gradient(100deg, var(--primary), var(--primary-soft, #8B5CF6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pain-h-strike {
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.6);
  text-decoration-thickness: 2px;
}

.pain-sub {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 36px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
}

@media (max-width: 880px) {
  .pain-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Chaos cluster — free-floating brand chips */
.chaos-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-content: flex-start;
  position: relative;
  padding: 8px;
  max-width: 100%;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg, #fff);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 6px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s var(--ease), border-color 0.25s;
  white-space: nowrap;
  user-select: none;
}

.brand-chip:hover { border-color: var(--border-hover); transform: rotate(var(--rot, 0deg)) translateY(-2px); }

.brand-chip-icon {
  width: 14px; height: 14px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.78;
}

/* Pain arrow */
.pain-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--primary);
}

.pain-arrow svg {
  width: 44px; height: 44px;
  filter: drop-shadow(0 4px 16px rgba(103, 54, 228, 0.3));
  animation: arrowBob 2.6s ease-in-out infinite;
}

@keyframes arrowBob {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@media (max-width: 880px) {
  .pain-arrow svg { transform: rotate(90deg); }
  @keyframes arrowBob {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50% { transform: rotate(90deg) translateX(6px); }
  }
}

.pain-arrow-label {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

/* Terminal-style "INSTALLED" panel */
.term-panel {
  background: linear-gradient(180deg, #0F1015 0%, #16171D 100%);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 0 1px #1F2128 inset;
  position: relative;
}

.term-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(103, 54, 228, 0.3), rgba(139, 92, 246, 0.15) 60%, transparent 80%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.74rem;
  position: relative;
  z-index: 1;
}

.term-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.term-dot.r { background: #FF5F57; }
.term-dot.y { background: #FEBC2E; }
.term-dot.g { background: #28C840; }

.term-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  margin-left: 8px;
}

.term-badge {
  margin-left: auto;
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #28C840;
  background: rgba(40, 200, 64, 0.12);
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(40, 200, 64, 0.32);
}

.term-body {
  padding: 18px 20px 20px;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
}

.term-sub {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.term-sub b { color: rgba(255, 255, 255, 0.88); font-weight: 700; }

.env-section { margin-bottom: 14px; }
.env-section:last-child { margin-bottom: 0; }

.env-label {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(139, 92, 246, 0.9);
  margin-bottom: 8px;
  font-weight: 700;
}

.env-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.env-tile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.term-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.58);
  position: relative;
  z-index: 1;
}

.term-foot-r {
  color: #28C840;
  font-weight: 700;
}

/* ============================================================
 * 11. Flip cards
 * ============================================================ */

.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 1100px;
}

@media (max-width: 880px) {
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .flip-grid { grid-template-columns: 1fr; }
}

.flip-card {
  height: 220px;
  position: relative;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s var(--ease);
}

.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner,
.flip-card.is-flipped .flip-inner { transform: rotateY(180deg); }

.flip-face {
  position: absolute; inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--r-lg);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flip-front {
  background: var(--bg, #fff);
  border: 1px solid var(--border-2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}

.flip-card:hover .flip-front {
  box-shadow: 0 18px 48px rgba(103, 54, 228, 0.12), 0 2px 10px rgba(0, 0, 0, 0.06);
}

.flip-back {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft, #8B5CF6) 100%);
  color: #fff;
  transform: rotateY(180deg);
  box-shadow: 0 16px 44px rgba(103, 54, 228, 0.34);
}

.flip-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-glow);
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
}

.flip-front h3 {
  font-size: 1.04rem;
  font-weight: 700;
  margin: 14px 0 6px;
  line-height: 1.22;
}

.flip-front p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}

.flip-front .flip-hint {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 8px;
}

.flip-back .flip-tag {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.flip-back p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #fff;
  margin-top: 10px;
}

/* ============================================================
 * 12. vs Alternatives — 3-card comparison
 * ============================================================ */

.cmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1400px;
}

@media (max-width: 880px) {
  .cmp-grid { grid-template-columns: 1fr; }
}

.cmp {
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 26px 24px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, filter 0.35s, opacity 0.35s;
  position: relative;
  overflow: hidden;
}

.cmp::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--tier-c, var(--border-2));
}

.cmp[data-tier="A"] { --tier-c: #E07373; --tier-c-soft: #FFE9E9; --tier-c-dark: #A14545; }
.cmp[data-tier="B"] { --tier-c: #D4A04A; --tier-c-soft: #FFF3D9; --tier-c-dark: #8A6B27; }
.cmp[data-tier="C"] { --tier-c: var(--primary); --tier-c-soft: var(--primary-glow); --tier-c-dark: var(--primary-soft, #8B5CF6); }

.cmp:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.cmp-grid:hover .cmp:not(:hover):not(.win) {
  filter: saturate(0.55) brightness(0.97);
  transform: scale(0.985);
}

.cmp-grid:hover .cmp.win:not(:hover) {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 32px 70px -22px rgba(103, 54, 228, 0.45);
}

.cmp-label {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tier-c);
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  padding: 3px 8px;
  background: var(--tier-c-soft);
  border-radius: 6px;
}

.cmp h3 {
  font-size: 1.16rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}

.cmp-body {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-2);
}

.cmp-outcome {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tier-c-dark);
  font-weight: 700;
}

/* Winning card */
.cmp.win {
  background: linear-gradient(180deg, #0F1015 0%, #16171D 100%);
  color: #fff;
  border-color: #1F2128;
}

.cmp.win::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(103, 54, 228, 0.35), rgba(139, 92, 246, 0.18) 50%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
  animation: winPulse 4s ease-in-out infinite;
}

@keyframes winPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.85; }
}

.cmp.win > * { position: relative; z-index: 1; }
.cmp.win h3 { color: #fff; }
.cmp.win .cmp-body {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.cmp.win .cmp-label {
  color: var(--primary-soft, #8B5CF6);
  background: rgba(139, 92, 246, 0.15);
}
.cmp.win .cmp-outcome {
  color: var(--primary-soft, #8B5CF6);
}

.cmp.win:hover { transform: translateY(-9px) scale(1.018); }

/* ============================================================
 * 13. What happens next — 4-step strip
 * ============================================================ */

.next-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0 0;
}

@media (max-width: 720px) {
  .next-strip { grid-template-columns: 1fr 1fr; }
}

.next-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px;
  background: var(--bg, #fff);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.next-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(103, 54, 228, 0.08);
  border-color: var(--primary);
}

.next-step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.next-step h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  line-height: 1.3;
}

.next-step p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
 * 14. Final CTA — dark kicker
 * ============================================================ */

.install-kicker {
  margin: 0 auto;
  max-width: 920px;
  padding: 44px 48px;
  background: linear-gradient(180deg, #0E0F13 0%, #16171D 100%);
  border: 1px solid #1F2128;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.install-kicker::before {
  content: '';
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(103, 54, 228, 0.35), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(139, 92, 246, 0.25), transparent 60%);
  animation: kickerAura 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes kickerAura {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -10px); }
}

.install-kicker > * { position: relative; z-index: 1; }

.install-kicker-eyebrow {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-soft, #8B5CF6);
  margin-bottom: 14px;
}

.install-kicker h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #fff;
}

.install-kicker h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 0%, var(--primary-soft, #8B5CF6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.install-kicker-sub {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.install-kicker .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

.install-kicker .btn-primary:hover {
  background: var(--primary-soft, #8B5CF6);
  color: #fff;
}

/* ============================================================
 * 15. prefers-reduced-motion fallbacks
 * ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg-grid, .hero-glow, .hero-glow-2, .hero-particle,
  .pain-arrow svg, .install-kicker::before, .floating-cta { animation: none !important; }
}

/* ============================================================
 * v2 — VSL redesign additions
 *
 * 16. Solo hero (single-column, no form-in-hero)
 * 17. Floating CTA pill (desktop top-right)
 * 18. Floating bar (mobile bottom)
 * 19. Modal form + backdrop + scroll-lock
 * 20. Alternatives 4-card with visible pricing
 * 21. Antagonising agitation section
 * ============================================================ */

/* 16. SOLO HERO */
.install-hero-grid--solo {
  display: block;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.install-hero-grid--solo .install-eyebrow,
.install-hero-grid--solo .hero-meta-line {
  justify-content: center;
}

.install-hero-grid--solo .hero-anchor {
  margin-left: auto;
  margin-right: auto;
}

.install-hero-grid--solo .install-hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.install-hero-grid--solo .install-eyebrow::before {
  display: none;
}

.hero-cta-row {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.hero-cta-row .btn-primary {
  padding: 18px 44px;
  font-size: 1rem;
  box-shadow: 0 12px 36px rgba(103, 54, 228, 0.32);
}

.hero-scroll-cue {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: color 0.3s ease;
  animation: cueBob 2.4s var(--ease-soft) infinite;
  opacity: 0.85;
}

.hero-scroll-cue:hover { color: var(--primary); }

@keyframes cueBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* 17. FLOATING CTA PILL (desktop) */
.floating-cta {
  position: fixed;
  top: 84px;
  right: 24px;
  z-index: 998;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft, #8B5CF6));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: -0.2px;
  border-radius: 100px;
  box-shadow: 0 12px 32px rgba(103, 54, 228, 0.36);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transform: translateX(140%);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.25s;
  animation: floatingCTAPulse 2.6s ease-in-out infinite;
}

.floating-cta.visible { transform: translateX(0); }
.floating-cta:hover { box-shadow: 0 18px 44px rgba(103, 54, 228, 0.6); color: #fff; }

.floating-cta .lock-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.9;
}

@keyframes floatingCTAPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(103, 54, 228, 0.36); }
  50%      { box-shadow: 0 12px 44px rgba(103, 54, 228, 0.6); }
}

@media (max-width: 880px) {
  .floating-cta { display: none; }
}

/* 18. FLOATING BAR (mobile bottom) */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 14px 20px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(135deg, var(--primary), var(--primary-soft, #8B5CF6));
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateY(140%);
  transition: transform 0.4s var(--ease-soft);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.floating-bar a {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

@media (max-width: 880px) {
  .floating-bar { display: flex; }
  body.has-floating-bar { padding-bottom: 72px; }
}

/* 19. MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 16, 21, 0.7);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  backdrop-filter: blur(8px) saturate(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  overflow-y: auto;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

body.modal-open { overflow: hidden; }

.modal-card {
  position: relative;
  background: var(--bg, #fff);
  border-radius: var(--r-lg);
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s var(--ease-soft);
}

.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }

.modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft, #8B5CF6));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.modal-close:hover { background: var(--surface-2); transform: rotate(90deg); }

.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-2);
}

.modal-card .access-form {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.modal-card .access-form::before { display: none; }

/* 20. ALTERNATIVES 4-CARD with visible pricing */
.alts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  perspective: 1400px;
}

@media (max-width: 1080px) {
  .alts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .alts-grid { grid-template-columns: 1fr; }
}

.alt-card {
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  background: var(--bg, #fff);
  padding: 26px 22px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, filter 0.35s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.alt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tier-c, var(--border-2));
}

.alt-card[data-tier="A"] { --tier-c: #E07373; --tier-c-soft: #FFEDED; --tier-c-dark: #A14545; }
.alt-card[data-tier="B"] { --tier-c: #E0884A; --tier-c-soft: #FFF1E5; --tier-c-dark: #8C5026; }
.alt-card[data-tier="C"] { --tier-c: #D4A04A; --tier-c-soft: #FFF6DD; --tier-c-dark: #8A6B27; }
.alt-card[data-tier="D"] { --tier-c: var(--primary); --tier-c-soft: var(--primary-glow); --tier-c-dark: var(--primary-soft, #8B5CF6); }

.alt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.alts-grid:hover .alt-card:not(:hover):not(.win) {
  filter: saturate(0.55) brightness(0.97);
  transform: scale(0.985);
}

.alts-grid:hover .alt-card.win:not(:hover) {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 32px 70px -22px rgba(103, 54, 228, 0.45);
}

.alt-label {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tier-c);
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  padding: 3px 8px;
  background: var(--tier-c-soft);
  border-radius: 6px;
  align-self: flex-start;
}

.alt-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.alt-price {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--tier-c-dark);
}

.alt-price-sub {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-3);
  margin-bottom: 16px;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-2);
}

.alt-body {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.alt-outcome {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tier-c-dark);
  font-weight: 700;
  margin-top: auto;
}

/* Winning Selr AI card */
.alt-card.win {
  background: linear-gradient(180deg, #0F1015 0%, #16171D 100%);
  color: #fff;
  border-color: #1F2128;
}

.alt-card.win::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(103, 54, 228, 0.35), rgba(139, 92, 246, 0.18) 50%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
  animation: winPulse 4s ease-in-out infinite;
}

.alt-card.win > * { position: relative; z-index: 1; }

.alt-card.win h3 { color: #fff; }
.alt-card.win .alt-label { color: var(--primary-soft, #8B5CF6); background: rgba(139, 92, 246, 0.15); }
.alt-card.win .alt-body { color: rgba(255, 255, 255, 0.82); }
.alt-card.win .alt-price-sub { color: rgba(255, 255, 255, 0.55); border-bottom-color: rgba(255, 255, 255, 0.12); }
.alt-card.win .alt-outcome { color: var(--primary-soft, #8B5CF6); }
.alt-card.win .alt-price {
  font-size: clamp(2.4rem, 4.2vw, 3.2rem);
  background: linear-gradient(135deg, var(--primary-soft, #8B5CF6) 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.alt-card.win .alt-unlock-cta {
  margin-top: 16px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft, #8B5CF6) 100%);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.alt-card.win .alt-unlock-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(103, 54, 228, 0.5);
}

/* 21. AGITATION SECTION */
.agitation-section {
  background: linear-gradient(180deg, #0E0F13 0%, #16171D 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.agitation-section::before {
  content: '';
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(103, 54, 228, 0.28), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.22), transparent 60%);
  animation: kickerAura 9s ease-in-out infinite;
  pointer-events: none;
}

.agitation-section .container { position: relative; z-index: 1; }

.agitation-eyebrow {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-soft, #8B5CF6);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.agitation-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary-soft, #8B5CF6);
}

.agitation-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
  color: #fff;
  text-wrap: balance;
  max-width: 820px;
}

.agitation-section h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 0%, var(--primary-soft, #8B5CF6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.agitation-body {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 700px;
  margin-bottom: 20px;
}

.agitation-body strong { color: #fff; font-weight: 700; }

.agitation-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-soft, #8B5CF6);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.agitation-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft, #8B5CF6));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(103, 54, 228, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}

.agitation-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(103, 54, 228, 0.56);
  color: #fff;
}

/* "Unlock pricing" CTA visual cue (lock icon) */
.lock-icon-inline {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
}

/* ============================================================
 * v3 — Avatar Fit + Two-Mode Visibility
 *
 * 22. Two ways we install — 2-card side-by-side
 * 23. How it works — 3-stage process timeline
 * 24. Your day vs Your two calls — side-by-side timeline
 * ============================================================ */

/* 22. TWO WAYS WE INSTALL */
.two-modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 880px) {
  .two-modes-grid { grid-template-columns: 1fr; }
}

.mode-card {
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  background: var(--bg, #fff);
  padding: 32px 30px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft, #8B5CF6));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.mode-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 22px 50px rgba(103, 54, 228, 0.14), 0 6px 20px rgba(0, 0, 0, 0.05);
}

.mode-card:hover::before {
  transform: scaleX(1);
}

.mode-eyebrow {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 700;
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary-glow);
  border-radius: 100px;
  align-self: flex-start;
}

.mode-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 18px;
  color: var(--text);
}

.mode-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mode-specs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.72rem;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  letter-spacing: 0.02em;
}

.mode-body {
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}

.mode-body strong { color: var(--text); font-weight: 700; }

.mode-cta {
  align-self: flex-start;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft, #8B5CF6));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 24px rgba(103, 54, 228, 0.24);
}

.mode-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(103, 54, 228, 0.4);
  color: #fff;
}

/* 23. HOW IT WORKS — 3-stage timeline */
.how-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 36px;
}

.how-stages::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-2), var(--primary), var(--border-2));
  z-index: 0;
}

@media (max-width: 880px) {
  .how-stages { grid-template-columns: 1fr; gap: 12px; }
  .how-stages::before { display: none; }
}

.how-stage {
  position: relative;
  z-index: 1;
  background: var(--bg, #fff);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.how-stage:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(103, 54, 228, 0.08);
  border-color: var(--primary);
}

.how-stage-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft, #8B5CF6));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(103, 54, 228, 0.32);
}

.how-stage h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 10px;
  color: var(--text);
}

.how-stage-body {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.how-stage-split {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how-stage-split-item {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-2);
}

.how-stage-split-label {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

/* 24. YOUR DAY vs YOUR TWO CALLS — side-by-side timeline */
.day-vs-calls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 880px) {
  .day-vs-calls-grid { grid-template-columns: 1fr; gap: 20px; }
}

.timeline-col {
  background: var(--bg, #fff);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
}

.timeline-col-eyebrow {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-col h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.timeline-col h3 span {
  background: linear-gradient(100deg, var(--primary), var(--primary-soft, #8B5CF6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-blocks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-block:last-child { border-bottom: none; }

.timeline-block-time {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.4;
}

.timeline-block-body {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
}

.timeline-block-body strong { color: var(--text); font-weight: 700; }

@media (max-width: 560px) {
  .timeline-block { grid-template-columns: 1fr; gap: 4px; }
}

/* Accent the on-site column slightly different from the remote column */
.timeline-col.on-site::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft, #8B5CF6));
}

.timeline-col.remote::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-soft, #8B5CF6), var(--primary));
}

/* ============================================================
 * v4 — Hero Punch + Workshop Packages + Gold Accent + Always-On CTA
 *
 * 25. Gold accent var
 * 26. Workshop-style package card (extends .mode-card)
 * 27. Vertical 9/12 testimonial cards (.case-vert-grid)
 * 28. Always-on floating CTA bumps (larger + harder pulse)
 * 29. Completion toast (above terminal panel)
 * 30. Stage split callout (on-site vs remote inside how-stage)
 * ============================================================ */

:root {
  --gold: #F59E0B;
  --gold-soft: rgba(245, 158, 11, 0.14);
}

/* 26. Workshop-style package card */
.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: 12px;
}

.pkg-price-q {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--gold);
  text-shadow: 0 0 22px rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
}

.pkg-price-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pkg-price-meta .pkg-price-label {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.pkg-price-meta .pkg-price-sub {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.4;
}

.pkg-includes {
  list-style: none;
  margin: 0 0 22px;
  padding: 18px 0 0;
  border-top: 1px dashed var(--border-2);
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pkg-includes li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-2);
}

.pkg-includes li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft, #8B5CF6));
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3 7l3 3 5-6'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--primary), var(--primary-soft, #8B5CF6));
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(103, 54, 228, 0.24);
}

.pkg-includes li strong { color: var(--text); font-weight: 700; }

/* 27. Vertical 9/12 testimonial cards */
.case-vert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 36px auto 0;
  padding: 0 28px;
}

@media (max-width: 880px) {
  .case-vert-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 0 20px; }
}

@media (max-width: 520px) {
  .case-vert-grid { grid-template-columns: 1fr; }
}

.case-vert {
  background: var(--bg, #fff);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.case-vert:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 18px 44px rgba(103, 54, 228, 0.14);
}

.case-vert-video {
  width: 100%;
  aspect-ratio: 9/12;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.case-vert-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-vert-video .play-sm-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.case-vert-video .play-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--ease);
}

.case-vert:hover .play-sm { transform: scale(1.08); }

.case-vert-video .play-sm svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  margin-left: 2px;
}

.case-vert-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.case-stars {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
}

.case-vert-quote {
  font-size: 0.85rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.5;
  flex: 1;
}

.case-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.case-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft, #8B5CF6));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-author-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.case-author-role {
  font-size: 0.7rem;
  color: var(--text-3);
  line-height: 1.3;
}

/* 28. Always-on floating CTA bumps */
.floating-cta {
  padding: 15px 26px !important;
  font-size: 0.92rem !important;
}

@keyframes floatingCTAPulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(103, 54, 228, 0.4); }
  50%      { box-shadow: 0 18px 56px rgba(103, 54, 228, 0.7); }
}

/* 29. Completion toast (above terminal panel) */
.term-completion-toast {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #1B7F3A, #28C840);
  color: #fff;
  border-radius: 100px;
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(40, 200, 64, 0.32);
  margin-bottom: -12px;
  position: relative;
  z-index: 2;
  align-self: center;
}

.term-completion-toast svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  flex-shrink: 0;
}

.term-panel { position: relative; }

.term-panel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 30. How-stage split callout (always shown on every stage) */
.how-stage-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border-2);
}

@media (max-width: 480px) {
  .how-stage-split-row { grid-template-columns: 1fr; }
}

.how-stage-split-col {
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-2);
}

.how-stage-split-col-label {
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* ============================================================
 * v5 — Option A/B labels + gold premium tier + step juicing
 *
 * 31. Big OPTION A/B header strip above each mode-card
 * 32. Gold premium tier treatment for on-site card
 * 33. Premium badge with pulse
 * 34. Juiced "What happens next" steps — colored, animated, larger
 * ============================================================ */

/* 31. OPTION A/B header */
.mode-card { padding-top: 60px !important; position: relative; }

.mode-card .mode-option-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft, #8B5CF6));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mode-card .mode-option-letter {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* 32. GOLD PREMIUM TIER (on-site = Option A) */
.mode-card.premium {
  background: linear-gradient(180deg, #FFFBF0 0%, #FFFFFF 30%);
  border: 2px solid var(--gold);
  box-shadow: 0 18px 48px rgba(245, 158, 11, 0.18), 0 4px 14px rgba(0, 0, 0, 0.04);
}

.mode-card.premium::before {
  background: linear-gradient(90deg, var(--gold), #F7A93B, var(--gold)) !important;
  height: 5px !important;
  transform: scaleX(1) !important;
  z-index: 1;
}

.mode-card.premium .mode-option-header {
  background: linear-gradient(90deg, #B97A0B, var(--gold), #F7A93B, var(--gold), #B97A0B);
  background-size: 300% 100%;
  animation: goldShimmer 7s linear infinite;
  color: #1A1A1A;
}

@keyframes goldShimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

.mode-card.premium .mode-eyebrow {
  background: var(--gold-soft);
  color: #92660A;
}

.mode-card.premium .pkg-price-row {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(245, 158, 11, 0.04));
  border: 1px solid rgba(245, 158, 11, 0.55);
}

.mode-card.premium .pkg-price-q { color: var(--gold); text-shadow: 0 0 26px rgba(245, 158, 11, 0.45); }

.mode-card.premium .pkg-price-label { color: #92660A; }

.mode-card.premium .pkg-includes li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3 7l3 3 5-6'/%3E%3C/svg%3E") center/contain no-repeat,
    linear-gradient(135deg, var(--gold), #F7A93B);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.32);
}

.mode-card.premium .mode-cta {
  background: linear-gradient(135deg, var(--gold), #F7A93B);
  color: #1A1A1A;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.42);
}

.mode-card.premium .mode-cta svg { stroke: #1A1A1A !important; }

.mode-card.premium .mode-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.6);
  color: #1A1A1A;
}

.mode-card.premium:hover {
  border-color: #F7A93B;
  box-shadow: 0 22px 60px rgba(245, 158, 11, 0.32), 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* 33. PREMIUM badge (small pulse pill) */
.premium-badge {
  position: absolute;
  top: 56px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: linear-gradient(135deg, var(--gold), #F7A93B);
  color: #1A1A1A;
  font-family: 'JetBrains Mono', SFMono-Regular, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  animation: premiumPulse 2.6s ease-in-out infinite;
  z-index: 2;
}

@keyframes premiumPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4); transform: scale(1); }
  50%      { box-shadow: 0 8px 24px rgba(245, 158, 11, 0.7); transform: scale(1.04); }
}

/* 34. JUICED "What happens next" steps */
.next-strip {
  position: relative;
  gap: 18px !important;
}

/* Animated green progression line across the 4 steps (desktop) */
.next-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 4%;
  right: 4%;
  height: 3px;
  background: linear-gradient(90deg,
    var(--border-2) 0%,
    var(--border-2) 100%);
  z-index: 0;
  transform: translateY(-50%);
  border-radius: 2px;
}

.next-strip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4%;
  right: 4%;
  height: 3px;
  background: linear-gradient(90deg, #16A34A 0%, #22C55E 50%, #4ADE80 100%);
  z-index: 1;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.5);
}

.next-strip.in::after {
  animation: nextLineDraw 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

@keyframes nextLineDraw {
  0%   { transform: translateY(-50%) scaleX(0); }
  100% { transform: translateY(-50%) scaleX(1); }
}

@media (max-width: 720px) {
  .next-strip::before, .next-strip::after { display: none; }
}

.next-strip .next-step {
  position: relative;
  z-index: 2;
  padding: 28px 24px 24px;
  background: var(--bg, #fff);
  border-radius: 18px;
  border: 1.5px solid var(--border-2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.next-strip .next-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

/* Each step gets a different color number circle */
.next-strip .next-step:nth-child(1) .next-step-num { background: linear-gradient(135deg, #6736E4, #8B5CF6); }
.next-strip .next-step:nth-child(2) .next-step-num { background: linear-gradient(135deg, #8B5CF6, #C084FC); }
.next-strip .next-step:nth-child(3) .next-step-num { background: linear-gradient(135deg, var(--gold), #F7A93B); color: #1A1A1A !important; }
.next-strip .next-step:nth-child(4) .next-step-num { background: linear-gradient(135deg, #16A34A, #22C55E); }

.next-strip .next-step:nth-child(1):hover { border-color: var(--primary); }
.next-strip .next-step:nth-child(2):hover { border-color: var(--primary-soft, #8B5CF6); }
.next-strip .next-step:nth-child(3):hover { border-color: var(--gold); }
.next-strip .next-step:nth-child(4):hover { border-color: #22C55E; }

.next-strip .next-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  box-shadow: 0 10px 26px rgba(103, 54, 228, 0.32);
}

.next-strip .next-step h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.22;
  color: var(--text);
  margin: 0;
}

.next-strip .next-step p {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
  max-width: 200px;
}

/* Mobile: stack vertically with a vertical green line on the left */
@media (max-width: 720px) {
  .next-strip { gap: 14px !important; }
  .next-strip .next-step { text-align: left; flex-direction: row; gap: 16px; padding: 18px 22px; }
  .next-strip .next-step-num { width: 48px; height: 48px; font-size: 1.2rem; flex-shrink: 0; }
  .next-strip .next-step p { max-width: none; }
}
