/* ===========================================
   RATION v2 — Cinematic enhancement layer
   Layered ON TOP of styles.css (additive only)
   =========================================== */

:root{
  --v2-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --v2-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

/* Reduce default film grain a touch, add a soft fixed vignette */
.grain { opacity: 0.14; }

.v2-vignette{
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 80;
  background: radial-gradient(140% 90% at 50% 50%, transparent 55%, rgba(0,0,0,0.55) 100%);
  mix-blend-mode: multiply;
}

/* =========================
   READING PROGRESS
   ========================= */
.v2-progress{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(241,235,222,0.05);
  z-index: 9500;
  pointer-events: none;
}
.v2-progress-fill{
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--orange), #ff8a4a 60%, var(--orange));
  box-shadow: 0 0 12px rgba(230,84,29,0.6);
  will-change: width;
}

/* =========================
   CHAPTER RAIL
   ========================= */
.v2-chapters{
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex; flex-direction: column; gap: 18px;
  pointer-events: none;
}
.v2-ch{
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241,235,222,0.25);
  transition: color 400ms var(--v2-ease-out);
}
.v2-ch-dot{
  width: 6px; height: 6px;
  border: 1px solid rgba(241,235,222,0.3);
  background: transparent;
  border-radius: 99px;
  transition: all 400ms var(--v2-ease-out);
  flex: 0 0 6px;
}
.v2-ch-lbl{
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 320ms var(--v2-ease-out), transform 320ms var(--v2-ease-out);
  white-space: nowrap;
}
.v2-ch.active{ color: var(--paper); }
.v2-ch.active .v2-ch-dot{
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(230,84,29,0.6);
  transform: scale(1.3);
}
.v2-ch.active .v2-ch-lbl{ opacity: 1; transform: translateX(0); }
@media (max-width: 1240px){ .v2-chapters { display: none; } }

/* =========================
   CUSTOM CURSOR
   ========================= */
.v2-cursor-dot, .v2-cursor-ring{
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 99px;
  mix-blend-mode: difference;
  will-change: transform;
  top: 0; left: 0;
}
.v2-cursor-dot{
  width: 6px; height: 6px;
  background: var(--paper);
  transition: width 200ms, height 200ms, opacity 200ms;
}
.v2-cursor-ring{
  width: 32px; height: 32px;
  border: 1px solid rgba(241,235,222,0.6);
  transition: width 260ms var(--v2-ease-out), height 260ms var(--v2-ease-out), border-color 200ms, opacity 200ms;
}
.v2-cursor-ring.hover{
  width: 56px; height: 56px;
  border-color: var(--paper);
}
@media (hover: none) { .v2-cursor-dot, .v2-cursor-ring { display: none; } }

/* =========================
   INTRO CURTAIN
   ========================= */
.v2-curtain{
  position: fixed; inset: 0;
  z-index: 9800;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1100ms cubic-bezier(0.86, 0, 0.07, 1);
  overflow: hidden;
}
.v2-curtain.gone{ transform: translateY(-101%); pointer-events: none; }
.v2-curtain-mark{
  font-family: var(--serif);
  font-size: clamp(60px, 12vw, 180px);
  letter-spacing: -0.025em;
  color: var(--paper);
  opacity: 0;
  transform: translateY(20px);
  animation: v2curtainIn 900ms 80ms var(--v2-ease-soft) forwards;
}
.v2-curtain-dot{
  display: inline-block;
  color: var(--orange);
  font-style: italic;
  opacity: 0;
  transform: scale(0.4);
  animation: v2curtainDot 600ms 700ms var(--v2-ease-soft) forwards;
}
.v2-curtain-scan{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(230,84,29,0.18) 50%, transparent 52%);
  background-size: 100% 60px;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: v2scanY 1.4s 300ms linear infinite;
}
@keyframes v2scanY {
  0%, 5% { opacity: 0; transform: translateY(-100%); }
  10%, 90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(100%); }
}
@keyframes v2curtainIn { to { opacity: 1; transform: translateY(0); } }
@keyframes v2curtainDot { to { opacity: 1; transform: scale(1); } }
.v2-curtain-stamp{
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(241,235,222,0.45);
  opacity: 0;
  animation: v2curtainIn 600ms 600ms var(--v2-ease-soft) forwards;
}

/* =========================
   SPLIT WORDS PRIMITIVE
   - JS wraps each word in <span class="v2-w"><span>word</span></span>
   ========================= */
.v2-w{
  display: inline-block;
  overflow: visible;
  vertical-align: top;
  padding: 0;
  margin: 0;
}
.v2-w > .v2-w-inner{
  display: inline-block;
  transform: translateY(115%);
  transition: transform 900ms var(--v2-ease-soft);
  transition-delay: var(--d, 0ms);
  will-change: transform;
}
.v2-split.in .v2-w > .v2-w-inner{ transform: translateY(0); }

/* =========================
   NAV polish
   ========================= */
.v2-nav-glyph{
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: 2px;
}
.nav-links a{ position: relative; }
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 320ms var(--v2-ease-out);
}
.nav-links a:hover::after{ transform: scaleX(1); }

/* =========================
   HERO atmosphere
   ========================= */
.v2-godrays{
  position: absolute;
  inset: -10% 0 0 0;
  background: repeating-linear-gradient(98deg,
      rgba(255,210,160,0) 0px,
      rgba(255,210,160,0) 80px,
      rgba(255,210,160,0.03) 81px,
      rgba(255,210,160,0) 140px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  animation: v2godrays 14s linear infinite;
}
@keyframes v2godrays{
  from{ transform: translateX(0); }
  to  { transform: translateX(120px); }
}

/* Edition tag (re-introduced) */
.v2-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 10px;
  border: 1px solid var(--hair);
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241,235,222,0.7);
  background: rgba(241,235,222,0.03);
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms var(--v2-ease-soft), transform 700ms var(--v2-ease-soft);
}
.v2-tag.in{ opacity: 1; transform: translateY(0); }
.v2-tag::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(241,235,222,0.20), transparent);
  transform: translateX(-100%);
  animation: v2shimmer 6s 2s ease-in-out infinite;
}
@keyframes v2shimmer{
  0%, 60%, 100% { transform: translateX(-100%); }
  78% { transform: translateX(100%); }
}
.v2-tag-seal{
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 99px;
  box-shadow: 0 0 10px var(--orange);
}

/* Hero stats row */
.v2-hero-mini{
  margin-top: 48px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.v2-stat-k{
  font-family: var(--serif);
  font-size: 40px;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.v2-stat-v{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241,235,222,0.55);
  display: block;
  margin-top: 8px;
}

/* HERO PHOTO — stage / glow / mist */
.hero-photo{ isolation: isolate; }
.v2-stage{
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
}
/* Override original hero img for stage-driven parallax */
.hero-photo .v2-stage img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: contrast(1.05) saturate(1.05);
  will-change: transform;
  transform: scale(var(--zoom, 1)) translate(var(--px, 0px), var(--py, 0px));
  transition: transform 600ms var(--v2-ease-out);
}
.v2-glow{
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 999px;
  left: var(--gx, 50%);
  top:  var(--gy, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(255,180,120,0.22), rgba(230,84,29,0.08) 40%, transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(20px);
  z-index: 2;
  transition: opacity 400ms ease;
}
.v2-mist{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* HERO crosshairs (new) */
.v2-crosshair{
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(241,235,222,0.42);
  text-transform: uppercase;
  z-index: 6;
}
.v2-crosshair::before{
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid rgba(241,235,222,0.5);
}
.v2-crosshair.tl { top: 16px; left: 16px; padding-left: 22px; }
.v2-crosshair.tl::before { left: 0; top: 0; border-right: none; border-bottom: none; }
.v2-crosshair.tr { top: 16px; right: 16px; padding-right: 22px; }
.v2-crosshair.tr::before { right: 0; top: 0; border-left: none; border-bottom: none; }
.v2-crosshair.br { bottom: 16px; right: 16px; padding-right: 22px; }
.v2-crosshair.br::before { right: 0; bottom: 0; border-left: none; border-top: none; }

/* HERO floating pills */
.v2-pill{
  position: absolute;
  z-index: 6;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(10,9,8,0.6);
  border: 1px solid var(--hair);
  padding: 7px 11px;
  border-radius: 99px;
  backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  animation: v2pillIn 800ms var(--v2-ease-soft) forwards;
  white-space: nowrap;
}
.v2-pill::before{
  content: ""; width: 6px; height: 6px;
  background: var(--orange); border-radius: 99px;
  box-shadow: 0 0 10px var(--orange);
}
@keyframes v2pillIn{ to { opacity: 1; transform: translateY(0); } }
.v2-pill.tl{ top: 8%; left: -10px; animation-delay: 1400ms; }
.v2-pill.br{ bottom: 12%; right: -10px; animation-delay: 1700ms; }

/* Hero light-leak parallax — original .hero-rays gets enhanced */
.hero-rays{
  background:
    radial-gradient(60% 40% at 50% 8%, rgba(230,84,29,0.22), transparent 60%),
    radial-gradient(40% 70% at 92% 50%, rgba(230,84,29,0.08), transparent 60%),
    radial-gradient(50% 70% at 8% 70%, rgba(110,58,130,0.10), transparent 60%);
  will-change: transform;
}

/* Scroll-cue label tone */
.scroll-cue { z-index: 5; }

/* =========================
   TICKER atmospheric polish
   ========================= */
.ticker{ position: relative; }
.ticker::before, .ticker::after{
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 120px;
  z-index: 2; pointer-events: none;
}
.ticker::before{ left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.ticker-item .sep{ display: inline-block; animation: v2spin 12s linear infinite; }
@keyframes v2spin{ to { transform: rotate(360deg); } }

/* =========================
   TRANSFORMATION — animated gauge / staggered menu rows
   ========================= */
.transformation .grid{ position: relative; }
.transformation .grid::before{
  content:"";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--hair);
}
@media (max-width: 900px){ .transformation .grid::before{ display: none; } }

.column.light::before{
  content:"";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 99px;
  right: -40px; top: -40px;
  background: radial-gradient(closest-side, rgba(230,84,29,0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.column { overflow: hidden; }

/* Stagger menu rows */
.v2-menu-stack .menu-row{
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 600ms var(--v2-ease-out), transform 600ms var(--v2-ease-out);
}
.v2-menu-stack.in .menu-row{ opacity: 1; transform: translateX(0); }
.v2-menu-stack.in .menu-row:nth-child(1){ transition-delay: 0ms; }
.v2-menu-stack.in .menu-row:nth-child(2){ transition-delay: 140ms; }
.v2-menu-stack.in .menu-row:nth-child(3){ transition-delay: 280ms; }
.v2-menu-stack.in .menu-row:nth-child(4){ transition-delay: 420ms; }

/* Gauge panel — premium drop shadow */
.v2-gauge{
  box-shadow:
    0 30px 80px rgba(230,84,29,0.10),
    0 60px 120px -20px rgba(0,0,0,0.5),
    0 0 0 1px rgba(230,84,29,0.08) inset !important;
  position: relative;
  overflow: hidden;
}
.v2-gauge::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(315deg, rgba(255,255,255,0.05), transparent 30%);
  mix-blend-mode: screen;
}
.gauge-card .gc-pct{ font-variant-numeric: tabular-nums; }

/* =========================
   REVEAL — scroll-zoom + glow
   ========================= */
.v2-reveal-photo{ isolation: isolate; }
.v2-reveal-photo img{
  inset: -6% !important;
  width: 112% !important;
  height: 112% !important;
  transform: scale(var(--zoom, 1.08));
  will-change: transform;
  transition: transform 200ms linear;
}
.v2-reveal-photo::after{
  background:
    linear-gradient(180deg, var(--ink) 0%, transparent 20%, transparent 70%, var(--ink) 100%),
    radial-gradient(60% 40% at 50% 50%, transparent 30%, rgba(0,0,0,0.45) 100%) !important;
}
.v2-reveal-glow{
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 999px;
  left: var(--gx, 50%); top: var(--gy, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(255,180,120,0.18), transparent 70%);
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}
.reveal-title em { color: var(--orange); font-style: italic; }
.reveal-title { text-shadow: none; }

/* =========================
   SPECS — spotlight + corner brackets + stagger reveal
   ========================= */
.v2-spot{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 320ms var(--v2-ease-out);
}
.v2-spot::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(220px 220px at var(--mx,50%) var(--my,50%), rgba(230,84,29,0.10), transparent 60%);
  opacity: 0; transition: opacity 320ms ease;
  pointer-events: none;
}
.v2-spot:hover::before{ opacity: 1; }

.v2-specs-grid .spec-cell{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--v2-ease-out), transform 700ms var(--v2-ease-out);
}
.v2-specs-grid.in .spec-cell{ opacity: 1; transform: translateY(0); }
.v2-specs-grid.in .spec-cell:nth-child(1){ transition-delay: 0ms; }
.v2-specs-grid.in .spec-cell:nth-child(2){ transition-delay: 60ms; }
.v2-specs-grid.in .spec-cell:nth-child(3){ transition-delay: 120ms; }
.v2-specs-grid.in .spec-cell:nth-child(4){ transition-delay: 180ms; }
.v2-specs-grid.in .spec-cell:nth-child(5){ transition-delay: 240ms; }
.v2-specs-grid.in .spec-cell:nth-child(6){ transition-delay: 300ms; }
.v2-specs-grid.in .spec-cell:nth-child(7){ transition-delay: 360ms; }
.v2-specs-grid.in .spec-cell:nth-child(8){ transition-delay: 420ms; }

.v2-corner{
  position: absolute;
  top: 12px; right: 12px;
  width: 10px; height: 10px;
  border-top: 1px solid rgba(241,235,222,0.22);
  border-right: 1px solid rgba(241,235,222,0.22);
  transition: border-color 240ms ease;
  pointer-events: none;
}
.spec-cell:hover .v2-corner{ border-color: var(--orange); }
.spec-cell:hover .val{ color: var(--paper); }
.spec-cell .val{ transition: color 240ms ease; }

/* =========================
   DUO — clip-path curtain reveal + scroll parallax
   ========================= */
.v2-duo-photo{ isolation: isolate; overflow: hidden; }
.v2-duo-photo img{
  position: absolute;
  inset: -6% !important;
  width: 112% !important;
  height: 112% !important;
  object-fit: cover;
  transform: scale(var(--zoom, 1.06)) translateY(var(--py, 0px));
  transition: transform 1.4s var(--v2-ease-out);
  will-change: transform;
}
.v2-clip{
  position: absolute;
  inset: 0;
  background: var(--ink);
  z-index: 2;
  transform-origin: top;
  transform: scaleY(1);
  transition: transform 1200ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: var(--d, 0ms);
}
.v2-duo-photo.in .v2-clip{ transform: scaleY(0); }
.v2-duo-caption{
  position: absolute;
  bottom: 18px; left: 20px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241,235,222,0.85);
  background: rgba(10,9,8,0.55);
  padding: 7px 12px;
  border-radius: 99px;
  backdrop-filter: blur(6px);
  border: 1px solid var(--hair);
  z-index: 3;
}

/* =========================
   MANIFESTO — word stagger
   ========================= */
.manifesto{
  position: relative;
  overflow: hidden;
  padding-top: 200px; padding-bottom: 180px;
}
.manifesto::before{
  content:"";
  position: absolute; inset: 0;
  background: radial-gradient(50% 30% at 50% 50%, rgba(230,84,29,0.06), transparent 70%);
  pointer-events: none;
}
.v2-quote .v2-mw{
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 700ms var(--v2-ease-out), transform 700ms var(--v2-ease-out);
  transition-delay: var(--d, 0ms);
}
.v2-quote.in .v2-mw{ opacity: 1; transform: translateY(0); }
.manifesto .attribution{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(241,235,222,0.55);
  margin-top: 56px !important;
}

/* =========================
   PROOF — testimonial spotlight + big mark
   ========================= */
.testimonial{
  position: relative;
  overflow: hidden;
  transition: background 320ms var(--v2-ease-out);
}
.v2-quote-mark{
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  line-height: 0.4;
  color: var(--orange);
  opacity: 0.6;
}
.testimonial.v2-spot::before{
  content:"";
  position: absolute; inset: 0;
  background: radial-gradient(220px 220px at var(--mx,50%) var(--my,50%), rgba(230,84,29,0.08), transparent 70%);
  opacity: 0; transition: opacity 320ms;
  pointer-events: none;
}
.testimonial.v2-spot:hover::before{ opacity: 1; }

.press-logo{ transition: color 200ms ease, transform 320ms var(--v2-ease-out); }
.press-logo:hover{ transform: translateY(-2px); }

/* =========================
   FAQ — orange rail, smoother accordion
   ========================= */
.v2-faq-list .faq-item{
  position: relative;
  transition: padding 320ms var(--v2-ease-out);
}
.v2-faq-list .faq-item::after{
  content:"";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 360ms var(--v2-ease-out);
}
.v2-faq-list .faq-item.open::after{ transform: scaleY(1); }
.v2-faq-list .faq-item.open{ padding-left: 16px; }
.v2-faq-list .faq-q{ font-size: 28px; }
.v2-faq-list .faq-q .icon{ font-size: 22px; width: 24px; text-align: center; }
.v2-faq-list .faq-a{ font-size: 16px; line-height: 1.6; }
.v2-faq-list .faq-item.open .faq-a{ max-height: 320px; }

/* =========================
   BUY — scroll parallax photo + magnetic ink CTA
   ========================= */
.v2-buy-photo{ isolation: isolate; overflow: hidden; }
.v2-buy-photo img{
  position: absolute;
  inset: -6% !important;
  width: 112% !important;
  height: 112% !important;
  object-fit: cover;
  object-position: 50% 45%;
  transform: scale(var(--zoom, 1.08)) translateY(var(--py, 0px));
  will-change: transform;
  transition: transform 200ms linear;
}
.price-card .price{ display: inline-flex; gap: 4px; align-items: baseline; font-variant-numeric: tabular-nums; }

/* =========================
   FOOTER — massive wordmark
   ========================= */
.v2-footer-mega{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  display: block;
  text-align: center;
  padding: 60px 0 40px;
  user-select: none;
  position: relative;
}
.v2-footer-mega-text{
  background: linear-gradient(180deg, var(--paper) 0%, rgba(241,235,222,0.25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v2-footer-mega-dot{ color: var(--orange); }

/* =========================
   MAGNETIC BUTTONS — mouse-tracked highlight
   ========================= */
.btn{
  position: relative;
  isolation: isolate;
  will-change: transform;
  overflow: hidden;
}
.btn::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(160px 160px at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.22), transparent 60%);
  opacity: 0;
  transition: opacity 200ms ease;
}
.btn:hover::before{ opacity: 1; }
.btn-primary{
  box-shadow: 0 12px 30px -10px rgba(230,84,29,0.5), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.btn .arr{ transition: transform 320ms var(--v2-ease-out); }
.btn:hover .arr{ transform: rotate(45deg) translate(3px,-3px); }

/* =========================
   FAQ list styling fallback (in case original .faq-q grows)
   ========================= */
.faq-item{ cursor: pointer; }

/* =========================
   REDUCED MOTION
   ========================= */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .v2-godrays, .v2-curtain-scan, .v2-mist { display: none; }
}
