/* =============================================================
   Local Hero — Home page (root index.html)
   Cinematic build. Tokens from _styles.css.
   Modules adapted from cinematic-sites-agent-kit-master:
   - sticky-cards (6 features)
   - odometer (trust stats)
   - kinetic-marquee (towns)
   - text-mask (dark band reveal)
   - zoom-parallax (hero phone)
   - spotlight-border (pricing CTA)
   - typewriter (founder note)
   ============================================================= */

/* ===== SCROLL PROGRESS BAR ==================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--primary);
  width: 0;
  z-index: 100;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ===== HERO ROTATOR — grid-stacked, equal heights ============ */
/* Critical fix from previous build: slides occupy the SAME grid
   cell, so the tallest dictates rotator height. No absolute
   positioning, no overflow into trust strip. */

.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-rotator {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  row-gap: 32px;
}

/* All slides occupy the SAME first row cell — tallest dictates height */
.hero-rotator > .hero-slide {
  grid-row: 1;
  grid-column: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 600ms;
  align-self: start;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}

/* Dots live in their own dedicated row below the slide stack — never overlap CTA */
.hero-dots-wrap {
  grid-row: 2;
  grid-column: 1;
  justify-self: start;
  pointer-events: auto;
}

/* Slide A — keep CTA form layout */
.hero-slide .lead { margin-top: 22px; max-width: 540px; }
.hero-slide .hero-cta { margin-top: 32px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Slide B — big numerics */
.vb-numbers { display: flex; gap: 56px; align-items: flex-end; margin: 24px 0 28px; }
.vb-num {
  font-family: var(--serif);
  font-size: clamp(56px, 8.5vw, 104px);
  font-weight: 400; line-height: 0.95; letter-spacing: -3px;
}
.vb-num.lo { color: var(--error); }
.vb-num.hi { color: var(--primary-active); }
.vb-num small {
  display: block; font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  color: var(--muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* Slide C — agency vs LH cards */
.vc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.vc-card { padding: 22px; border-radius: var(--r-xl); border: 1px solid transparent; }
.vc-card.agency { background: var(--surface-soft); border-color: var(--hairline); color: var(--muted); }
.vc-card.lh { background: var(--primary-active); color: var(--on-dark); }
.vc-card h3 { font-family: var(--serif); font-weight: 400; font-size: 19px; margin: 0 0 4px; line-height: 1.15; }
.vc-card.agency h3 { color: var(--body-strong); }
.vc-card .price { font-family: var(--serif); font-size: 24px; margin: 6px 0 10px; }
.vc-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.vc-card li { padding-left: 16px; position: relative; line-height: 1.4; }
.vc-card li::before { content: '·'; position: absolute; left: 2px; font-weight: 700; }
.vc-card.lh li::before { content: '✓'; color: var(--gold-ltd-pale); font-weight: 600; }

/* Rotator dots */
.hero-dots {
  display: flex; gap: 10px;
  padding: 0; margin: 0;
  list-style: none;
}
.hero-dots button {
  width: 28px; height: 4px;
  background: var(--hairline);
  border: 0; border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1),
              width 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-dots button:hover,
.hero-dots button:focus-visible {
  background: var(--muted); outline: none;
}
.hero-dots button[aria-current="true"] {
  background: var(--primary);
  width: 44px;
}

/* ===== LIVE PHONE WIDGET (hero right) ======================== */

.live-widget {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 580px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: var(--surface-dark);
  border-radius: 36px;
  padding: 12px 8px;
  box-shadow: var(--shadow-lg);
  /* zoom-parallax baseline — JS overrides on scroll */
  transform: scale(0.94) translateY(8px);
  transform-origin: center center;
  will-change: transform;
}

/* Hero video — silent autoplay loop. Phone bezel + content baked into MP4.
   No extra frame/shadow needed (would clash with internal phone bezel).
   Sized to fit the original .live-widget slot in the right column. */
.hero-video {
  display: block;
  width: 100%;
  max-width: 380px;
  max-height: 675px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  background: var(--canvas); /* matches video's own bg — seamless edge */
  border-radius: 4px;        /* faint trim only — the phone has its own corners */
  /* zoom-parallax baseline — same as old widget, JS scroll override applies */
  transform: scale(0.94) translateY(8px);
  transform-origin: center center;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { /* If user prefers no motion, still show first frame via poster */ }
}
.live-widget::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 16px;
  background: var(--surface-dark);
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.lw-screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--surface-soft);
  border-radius: 24px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.lw-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px 6px;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink); font-weight: 600;
  letter-spacing: 0.4px;
}
.lw-statusbar .lw-icons { display: flex; gap: 4px; align-items: center; }
.lw-statusbar .lw-icons span { width: 4px; height: 4px; border-radius: 50%; background: var(--ink); }
.lw-header {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px 10px;
  border-bottom: 1px solid var(--hairline);
}
.lw-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary);
  color: var(--on-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px; font-weight: 500;
}
.lw-header-meta { display: flex; flex-direction: column; line-height: 1.2; }
.lw-header-meta strong { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--body-strong); }
.lw-header-meta small { font-family: var(--sans); font-size: 11px; color: var(--muted); }

.lw-body { flex: 1; position: relative; overflow: hidden; }
.lw-scene {
  position: absolute; inset: 0;
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.lw-scene.is-active { opacity: 1; pointer-events: auto; }

.lw-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 16px;
  font-family: var(--sans); font-size: 12px; line-height: 1.4;
  opacity: 0; transform: translateY(6px);
  transition: opacity 320ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.lw-msg.is-shown { opacity: 1; transform: translateY(0); }
.lw-msg.out { align-self: flex-end; background: var(--primary); color: var(--on-primary); border-bottom-right-radius: 4px; }
.lw-msg.in { align-self: flex-start; background: var(--canvas); color: var(--ink); border: 1px solid var(--hairline); border-bottom-left-radius: 4px; }
.lw-msg time { display: block; font-size: 10px; margin-top: 4px; opacity: 0.65; }
.lw-typing {
  align-self: flex-start;
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 16px; border-bottom-left-radius: 4px;
  padding: 8px 12px; display: none; gap: 4px;
}
.lw-typing.is-shown { display: inline-flex; }
.lw-typing span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--muted);
  animation: lw-typing-bounce 1.2s infinite ease-in-out;
}
.lw-typing span:nth-child(2) { animation-delay: 0.15s; }
.lw-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes lw-typing-bounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.lw-review { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 12px; opacity: 0; transform: translateY(8px); transition: opacity 360ms cubic-bezier(0.4,0,0.2,1), transform 360ms cubic-bezier(0.4,0,0.2,1); }
.lw-review.is-shown { opacity: 1; transform: translateY(0); }
.lw-review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-family: var(--sans); font-size: 11px; }
.lw-review-head strong { color: var(--body-strong); font-weight: 600; }
.lw-stars { color: var(--gold-ltd); letter-spacing: 1px; }
.lw-review-body { font-family: var(--sans); font-size: 12px; color: var(--ink); line-height: 1.4; margin: 0 0 10px; }
.lw-draft { background: var(--surface-soft); border-left: 2px solid var(--primary); padding: 8px 10px; border-radius: var(--r-sm); font-family: var(--sans); font-size: 11px; color: var(--body-strong); line-height: 1.45; margin: 0 0 10px; opacity: 0; transform: translateY(4px); transition: opacity 320ms cubic-bezier(0.4,0,0.2,1) 200ms, transform 320ms cubic-bezier(0.4,0,0.2,1) 200ms; }
.lw-draft.is-shown { opacity: 1; transform: translateY(0); }
.lw-draft em { display: block; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-active); font-style: normal; margin-bottom: 4px; }
.lw-approve { width: 100%; background: var(--primary); color: var(--on-primary); border: 0; border-radius: var(--r-md); padding: 9px 12px; font-family: var(--sans); font-size: 12px; font-weight: 600; cursor: default; opacity: 0; transition: opacity 320ms cubic-bezier(0.4,0,0.2,1) 400ms; }
.lw-approve.is-shown { opacity: 1; }
.lw-approve.is-pulsing { animation: lw-pulse 1.4s 2 ease-in-out; }
.lw-approve.is-posted { background: var(--success); animation: none; }
@keyframes lw-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 122, 92, 0); }
  50% { box-shadow: 0 0 0 8px rgba(31, 122, 92, 0.18); }
}

/* ===== KINETIC MARQUEE (towns) =============================== */
.marquee {
  background: var(--surface-soft);
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--primary-active); letter-spacing: -0.5px;
}
.marquee-track span { white-space: nowrap; display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after {
  content: '✦';
  font-size: 16px;
  color: var(--gold-ltd);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ODOMETER (trust stats) ================================ */
.stats-section { padding: 96px 0 80px; background: var(--canvas); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-item:hover { transform: translateY(-4px); border-color: var(--muted-soft); }
.odometer {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  color: var(--primary-active);
  letter-spacing: -1.5px;
  overflow: hidden;
  height: 1.05em;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.odo-digit {
  display: inline-block;
  overflow: hidden;
  height: 1.05em;
  position: relative;
}
.odo-strip {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.odo-strip span { display: block; height: 1.05em; line-height: 1.05; font-variant-numeric: tabular-nums; }
.stat-suffix {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--primary-active);
  vertical-align: top;
  margin-left: 4px;
}
.stat-prefix {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--primary-active);
  margin-right: 4px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.2px;
}

/* ===== STICKY CARDS (6 features) ============================= */
.features-rail {
  background: var(--surface-soft);
  padding: 96px 0 120px;
}
.features-intro { text-align: center; margin: 0 auto 72px; max-width: 720px; }

.features-stack {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter) 240px;
}

.feat-card {
  position: sticky;
  border-radius: var(--r-2xl);
  padding: 48px 44px;
  margin-bottom: 24px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 20px 60px rgba(20, 20, 19, 0.06);
  will-change: transform;
}
/* Each card peeks slightly more than the previous so all 6 are visible at the bottom */
.feat-card:nth-child(1) { top: 80px;  background: var(--primary-active); color: var(--on-dark); z-index: 1; }
.feat-card:nth-child(2) { top: 96px;  background: var(--surface-dark);    color: var(--on-dark); z-index: 2; }
.feat-card:nth-child(3) { top: 112px; background: var(--gold-ltd-ink);    color: #faf6ee; z-index: 3; }
.feat-card:nth-child(4) { top: 128px; background: var(--canvas);          color: var(--ink); border: 1px solid var(--hairline); z-index: 4; }
.feat-card:nth-child(5) { top: 144px; background: var(--surface-card);    color: var(--ink); z-index: 5; }
.feat-card:nth-child(6) { top: 160px; background: var(--primary);         color: var(--on-primary); z-index: 6; }

.feat-card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
}
.feat-card h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 12px 0;
  line-height: 1.1;
  text-wrap: pretty;
}
.feat-card p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.85;
  max-width: 52ch;
}
.feat-card .feat-mock {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  align-self: flex-start;
  max-width: 100%;
}
.feat-card:nth-child(4) .feat-mock { background: var(--surface-soft); border-color: var(--hairline); }
.feat-card:nth-child(5) .feat-mock { background: var(--canvas); border-color: var(--hairline); }
.feat-card .feat-mock strong { font-weight: 600; }
.feat-card .feat-mock em { font-style: normal; opacity: 0.85; }

/* ===== TEXT-MASK DARK BAND =================================== */
.cta-band {
  background: var(--surface-dark);
  color: var(--on-dark);
  padding: 120px 0;
  position: relative;
}
.cta-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.text-mask-h {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0;
  background: linear-gradient(120deg,
    var(--on-dark) 0%,
    var(--on-dark) var(--reveal, 0%),
    rgba(250, 249, 245, 0.18) var(--reveal, 0%),
    rgba(250, 249, 245, 0.18) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: --reveal 80ms linear;
}
@property --reveal {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

/* GBP card */
.gbp-card {
  background: rgba(250, 249, 245, 0.06);
  border: 1px solid rgba(250, 249, 245, 0.12);
  border-radius: var(--r-2xl);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  margin-left: auto;
}
.gbp-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.gbp-card-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--canvas);
  color: var(--primary-active);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; font-weight: 500;
}
.gbp-card-title { font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--on-dark); line-height: 1.2; }
.gbp-card-meta { font-family: var(--sans); font-size: 12px; color: var(--on-dark-soft); margin-top: 2px; }
.gbp-card-stats { display: flex; gap: 28px; margin: 16px 0; }
.gbp-card-stats > div { line-height: 1.2; }
.gbp-card-stats strong { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--on-dark); display: block; letter-spacing: -1px; }
.gbp-card-stats span { font-family: var(--sans); font-size: 11px; color: var(--on-dark-soft); text-transform: uppercase; letter-spacing: 1px; }
.gbp-card-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 12px;
  color: var(--on-dark-soft);
  margin-top: 4px;
}
.gbp-card-status .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: gbp-pulse 2s infinite ease-out;
}
@keyframes gbp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(39, 166, 68, 0.5); }
  100% { box-shadow: 0 0 0 8px rgba(39, 166, 68, 0); }
}

/* ===== SPOTLIGHT-BORDER PRICING CTA ========================== */
.pricing-cta-section { padding: 120px 0; background: var(--canvas); }
.pricing-cta {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--r-2xl);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.pricing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(31, 122, 92, 0.18),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: -1;
}
.pricing-cta:hover::before { opacity: 1; }
.pricing-cta h2 { margin-bottom: 12px; }
.pricing-cta-meta { color: var(--muted); margin: 8px 0 32px; font-size: 17px; }
.pricing-cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ===== TYPEWRITER FOUNDER NOTE =============================== */
.founder-section { padding: 96px 0 120px; background: var(--surface-soft); }
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.founder-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-2xl);
  background: var(--canvas) center / cover no-repeat;
  box-shadow: var(--shadow-md);
}
.founder-text { max-width: 540px; }
.founder-text .t-caption-up { margin-bottom: 18px; }
.founder-text p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--body-strong);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.founder-text .typed::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  animation: tw-blink 1.05s steps(2) infinite;
  color: var(--primary);
  font-weight: 300;
}
.founder-text .typed.is-done::after { display: none; }
@keyframes tw-blink { 50% { opacity: 0; } }
.founder-text .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin-top: 22px;
}

/* ===== SCROLL REVEAL ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ============================================= */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-grid { grid-template-columns: 1fr; gap: 48px; }
  .gbp-card { margin-left: 0; }
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-portrait { max-width: 240px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-rotator { min-height: auto; }
  .vc-cards { grid-template-columns: 1fr; }
  .vb-numbers { gap: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item { padding: 24px 16px; }
  .feat-card { padding: 32px 24px; min-height: 300px; }
  .marquee-track { font-size: 24px; gap: 32px; }
  .marquee-track span { gap: 32px; }
}

/* ===== REDUCED MOTION ========================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .lw-scene, .lw-msg, .lw-review, .lw-draft, .lw-approve,
  .reveal, .marquee-track, .stat-item, .feat-card, .live-widget {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .lw-typing span, .lw-approve.is-pulsing, .gbp-card-status .dot,
  .marquee-track, .pricing-cta::before {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-slide:not(:first-child) { display: none; }
  .hero-dots-wrap { display: none; }
  .lw-scene.lw-final { opacity: 1 !important; pointer-events: auto !important; }
  .lw-scene:not(.lw-final) { opacity: 0 !important; }
  .lw-msg, .lw-review, .lw-draft, .lw-approve { opacity: 1 !important; transform: none !important; }
  .text-mask-h { color: var(--on-dark); background: none; -webkit-background-clip: initial; background-clip: initial; }
}
