/* ─────────────────────────────────────────────────────────
 * Hero · Cinematic gradient mesh + massive type
 * Strategy.com / Tesla / Ondo register · no abstract globe
 * ──────────────────────────────────────────────────────── */

.hero-cinematic {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* Tightened 2026-05-17 · was 96px/60px which combined with the giant
     headline clamp pushed CTAs below the fold. New padding fits the
     full content stack (badge → headline → sub → coin → CTAs) into
     one viewport on standard 1280-1920px desktops. */
  padding: 48px 0 40px;
  isolation: isolate;
  background: radial-gradient(ellipse at 30% 30%, #0F1E33 0%, #050B14 60%, #02060C 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─── Layered orb mesh · KKR-grade liveness · 2026-05-17 ───
   Boosted from opacity 0.7/blur 90px to 0.92/blur 64px so the
   ambient motion is felt, not just sensed. The orbs are now a
   load-bearing brand element — they say "this surface breathes." */
.cine-mesh {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  filter: blur(64px);
  opacity: 0.92;
}
.cine-mesh.paused .cine-orb { animation-play-state: paused !important; }

/* ═══ GOLD FLOW LAYER · 4K METALLIC · KKR-grade · 2026-05-17 v2 ═══
   v1 used mix-blend-mode: screen + heavy Gaussian blur → washed-out
   watercolor look that also hazed the text on top. v2 removes both:
   ribbons now render at native opacity with sharp 4K gradients. A
   thin highlight streak per ribbon gives the "silk catching light"
   shine. Mobile gets the same treatment at 0.7 opacity (was 0.4). */
.cine-gold-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  /* Dialed UP to 0.85 (2026-05-21) · screenshots showed the hero
     reading "too static" at 0.4 — gold was atmospheric but no longer
     a character on stage. 0.85 brings the ribbons back as the second
     protagonist of the hero (after the headline), in the band-of-gold
     KKR register the user explicitly anchored on.
     Prior: 1.0 → 0.5 → 0.4 → now 0.85.
     Text crispness is preserved by the z-index stack + the
     text-rendering rules below — no headline blur even at this level. */
  opacity: 0.85;
  /* NO mix-blend-mode · NO Gaussian blur · sharp metallic rendering */
}
.gold-ribbon, .gold-highlight {
  transform-origin: 50% 50%;
  will-change: transform;
}
.ribbon-1, .highlight-1 {
  animation: ribbonDrift1 16s ease-in-out infinite alternate;
}
.ribbon-2, .highlight-2 {
  animation: ribbonDrift2 20s ease-in-out infinite alternate;
}
.ribbon-3 {
  animation: ribbonDrift3 24s ease-in-out infinite alternate;
}
/* Highlight streaks also get a subtle independent shimmer */
.highlight-1 {
  animation: ribbonDrift1 16s ease-in-out infinite alternate,
             goldShimmer 5.2s ease-in-out infinite alternate;
}
.highlight-2 {
  animation: ribbonDrift2 20s ease-in-out infinite alternate,
             goldShimmer 6.6s ease-in-out infinite alternate;
}
@keyframes ribbonDrift1 {
  0%   { transform: translateX(-6%) translateY(-3%) scaleY(1)    rotate(-1deg); }
  50%  { transform: translateX(4%)  translateY(2%)  scaleY(1.15) rotate(1.5deg); }
  100% { transform: translateX(-2%) translateY(-5%) scaleY(0.92) rotate(-2deg); }
}
@keyframes ribbonDrift2 {
  0%   { transform: translateX(3%)  translateY(2%)  scaleY(0.9)  rotate(1deg); }
  50%  { transform: translateX(-5%) translateY(-3%) scaleY(1.2)  rotate(-1.5deg); }
  100% { transform: translateX(2%)  translateY(4%)  scaleY(1)    rotate(2deg); }
}
@keyframes ribbonDrift3 {
  0%   { transform: translateX(-3%) translateY(0%)  scaleY(1.05) rotate(0.5deg); }
  50%  { transform: translateX(5%)  translateY(-2%) scaleY(0.85) rotate(-1deg); }
  100% { transform: translateX(-1%) translateY(3%)  scaleY(1.1)  rotate(1.5deg); }
}
@keyframes goldShimmer {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 0.95; }
}
.cine-mesh.paused ~ .cine-gold-flow .gold-ribbon,
.cine-mesh.paused ~ .cine-gold-flow .gold-highlight {
  animation-play-state: paused !important;
}
@media (prefers-reduced-motion: reduce) {
  .gold-ribbon, .gold-highlight { animation: none !important; }
}
@media (max-width: 640px) {
  /* Mobile aligned to the new 85% desktop register (2026-05-21).
     Mobile reads at slightly lower band because the headline lock-up
     is more vertical and a too-loud ribbon eats the consumer-first
     framing. 0.82 is the mobile sweet spot. */
  .cine-gold-flow { opacity: 0.82; }
}

/* ═══ Text crispness guarantee ═══
   Ensures the headline, sub, partnership, and CTAs sit ABOVE the
   gold flow with no blur bleed-through. The hero content already has
   z-index: 1 set by sn-override.css, but we add text-rendering and
   anti-aliasing hints to lock crispness at 4K-grade displays. */
.cine-content,
.cine-headline,
.cine-sub,
.cine-eyebrow,
.cine-partnership {
  position: relative;
  z-index: 2;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══ KKR-grade text protection scrim · 2026-05-21 ═══
   The gold flow at 0.85 reads as a band of light catching the hero
   (the brand register we want) — but the headline + sub sit right
   in the arc of the ribbon, so without a backdrop they get visually
   bullied. KKR achieves the same band-and-text composition by sitting
   the text on its own soft contrast plane.

   This adds a localized elliptical scrim under .cine-content (only
   under the text block, not the whole hero) that creates a softly
   darker "stage" the headline reads against. Combined with the
   text-shadow boost below, the headline now reads pin-sharp ON the
   ribbon arc without the ribbon needing to be dimmed. */
.cine-content { position: relative; }
.cine-content::before {
  content: '';
  position: absolute;
  /* The scrim hugs the text column, not the whole hero, so the
     ribbons remain prominent at the outer wings of the hero. */
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, 92%);
  height: calc(100% + 80px);
  /* Radial dark wash — strongest under the headline midline, fading
     to transparent at edges so it never reads as a "box". */
  background:
    radial-gradient(ellipse 60% 75% at 50% 50%,
      rgba(6,13,24,0.78) 0%,
      rgba(6,13,24,0.62) 28%,
      rgba(6,13,24,0.32) 58%,
      rgba(6,13,24,0.10) 82%,
      transparent 100%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}

/* Headline + sub text-shadow boost — pin-sharp edges ON the band */
.cine-headline {
  text-shadow:
    0 1px 0 rgba(0,0,0,0.55),
    0 2px 12px rgba(6,13,24,0.65),
    0 4px 22px rgba(6,13,24,0.45);
}
.cine-headline em {
  /* Gold half of the headline — keeps its colour but gains depth */
  text-shadow:
    0 1px 0 rgba(0,0,0,0.55),
    0 2px 14px rgba(6,13,24,0.75),
    0 0 28px rgba(244,196,64,0.18);
}
.cine-sub {
  text-shadow: 0 1px 8px rgba(6,13,24,0.70), 0 2px 14px rgba(6,13,24,0.45);
}
.cine-eyebrow,
.cine-partnership {
  text-shadow: 0 1px 6px rgba(6,13,24,0.65);
}

/* Mobile — slightly tighter scrim because the column is narrower */
@media (max-width: 640px) {
  .cine-content::before {
    width: min(560px, 96%);
    background:
      radial-gradient(ellipse 70% 78% at 50% 50%,
        rgba(6,13,24,0.82) 0%,
        rgba(6,13,24,0.66) 30%,
        rgba(6,13,24,0.32) 62%,
        rgba(6,13,24,0.10) 84%,
        transparent 100%);
  }
}
.cine-orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.cine-orb-1 {
  width: 60vw; height: 60vw;
  top: -10%; left: -10%;
  background: radial-gradient(circle, #C8A84E 0%, transparent 60%);
  animation: orbDrift1 26s ease-in-out infinite alternate;
}
.cine-orb-2 {
  width: 55vw; height: 55vw;
  top: 10%; right: -15%;
  background: radial-gradient(circle, #0D9488 0%, transparent 60%);
  animation: orbDrift2 32s ease-in-out infinite alternate;
}
.cine-orb-3 {
  width: 70vw; height: 70vw;
  bottom: -25%; left: 20%;
  background: radial-gradient(circle, #F4D470 0%, transparent 65%);
  animation: orbDrift3 38s ease-in-out infinite alternate;
  opacity: 0.65;
}
.cine-orb-4 {
  width: 30vw; height: 30vw;
  top: 40%; left: 35%;
  background: radial-gradient(circle, #E8D48B 0%, transparent 60%);
  animation: orbDrift4 22s ease-in-out infinite alternate;
  opacity: 0.45;
}
.cine-orb-5 {
  width: 40vw; height: 40vw;
  bottom: -10%; right: -5%;
  background: radial-gradient(circle, #B8902C 0%, transparent 60%);
  animation: orbDrift5 30s ease-in-out infinite alternate;
  opacity: 0.55;
}
@keyframes orbDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(8vw,4vh) scale(1.18); } }
@keyframes orbDrift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-7vw,5vh) scale(1.12); } }
@keyframes orbDrift3 { from { transform: translate(0,0) scale(0.95); } to { transform: translate(-5vw,-4vh) scale(1.22); } }
@keyframes orbDrift4 { from { transform: translate(0,0) scale(1); } to { transform: translate(6vw,-3vh) scale(1.3); } }
@keyframes orbDrift5 { from { transform: translate(0,0) scale(1); } to { transform: translate(-4vw,-6vh) scale(1.1); } }

/* ─── Adinkrahene watermark · the chief among Adinkra ─── */
.adinkrahene-watermark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: clamp(420px, 55vw, 720px);
  height: clamp(420px, 55vw, 720px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  animation: adinkraSpin 180s linear infinite;
  mix-blend-mode: screen;
}
@keyframes adinkraSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .adinkrahene-watermark { animation: none; }
}

/* ─── Subtle moving grid ─── */
.cine-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244,196,48,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,196,48,0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 88px 88px, 88px 88px; }
}

/* ─── Particle canvas (gold specks drifting upward) ─── */
.cine-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%; height: 100%;
}

/* ─── Vignette ─── */
.cine-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.45) 100%);
}

/* ─── Content ─── */
.cine-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 4vh;
}

.cine-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 9px 22px;
  border: 1px solid rgba(244,196,48,0.32);
  border-radius: 999px;
  background: rgba(15, 30, 51, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 36px;
}
.cine-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,224,127,0.18);
  position: relative;
  z-index: 1;
}
.cine-pulse {
  position: absolute;
  left: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: cinePulseExp 2.4s ease-out infinite;
}
@keyframes cinePulseExp {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(4.5); opacity: 0; }
}

/* ─── Headline · tightened 2026-05-17 to fit hero in one viewport ─── */
.cine-headline {
  font-family: var(--ff-serif);
  /* Was clamp(64px, 10vw, 168px) — overflowed the fold on standard
     desktops. New ceiling fits 2-line headline within ~210px of
     vertical space, leaving room for sub + coin + CTAs. */
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  color: var(--text);
}
.cine-headline .line-1,
.cine-headline .line-2 {
  display: block;
}
.cine-headline .line-2 {
  /* Final fix v3 2026-05-22 · gradient still bottomed muddy against the
     0.85 ribbon. Switched to a SOLID bright pearl-gold with a real
     -webkit-text-stroke navy outline. Solid color = uniform brightness
     across the whole word, outline = guaranteed legibility regardless
     of what's behind it. Heavy drop-shadow stack provides the gold
     metallic "weight" without relying on gradient mud. */
  color: #FFEFA8;
  background: none;
  -webkit-background-clip: border-box;
          background-clip: border-box;
  -webkit-text-stroke: 1.5px rgba(6,13,24,0.85);
  /* The drop-shadow stack now does the metallic-depth work:
       1. Hard navy edge for crispness
       2. Wide navy halo for separation from the ribbon
       3. Warm gold ambient for the metal feel */
  filter:
    drop-shadow(0 2px 0 rgba(6,13,24,0.85))
    drop-shadow(0 8px 28px rgba(6,13,24,0.75))
    drop-shadow(0 0 42px rgba(244,221,141,0.42));
}

.cine-sub {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 0 28px;
}
.cine-sub strong { color: var(--gold); font-weight: 600; }

/* ─── Marquee stat (1 SOV ≡ $1,000 of attested gold) ─── */
.cine-marquee-stat {
  /* STRIPPED 2026-05-22 · was boxed with 1px gold border + navy panel
     + backdrop blur + corner-gradient highlight. The boxed frame made
     the SOV coin look like a flat illustration sitting in a card.
     Now the coin floats free in the hero atmosphere — no frame, no
     blur, no border. The radial gold halo + scan rings + sonar already
     provide the staging. Premium institutional weight comes from the
     coin itself, not from a card around it. */
  margin: 0 0 56px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  position: relative;
}
/* The atmospheric ambient that REPLACES the framed look — a soft
   centered gold halo behind the coin, breathing on a 7s cycle. */
.cine-marquee-stat::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(320px, 32vw, 520px);
  height: clamp(320px, 32vw, 520px);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle,
      rgba(244,221,141,0.16) 0%,
      rgba(244,221,141,0.06) 30%,
      rgba(244,221,141,0.02) 55%,
      transparent 78%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(6px);
  animation: cmsHaloBreath 7s ease-in-out infinite;
}
@keyframes cmsHaloBreath{
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.08); }
}

/* ════════════════════════════════════════════════════════════════
   SOV COIN · "JUST ATTESTED" RADIAL FLASH · 2026-05-22
   Every 12 seconds the coin emits a bright gold pulse outward —
   the visual signature of a fresh attestation landing on-chain.
   Loops indefinitely. Wraps the .sov-coin-wrap as ::after so it
   doesn't add markup. ════════════════════════════════════════ */
.sov-coin-wrap{ position: relative; }
.sov-coin-wrap::before{
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 110%; height: 110%;
  transform: translate(-50%, -50%) scale(0.6);
  border: 2px solid rgba(255,239,168,0.7);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: sovJustAttested 12s ease-out infinite;
}
@keyframes sovJustAttested{
  0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0; border-width: 2px; }
  6%   { opacity: 0.95; border-width: 2px; }
  30%  { transform: translate(-50%, -50%) scale(1.55); opacity: 0; border-width: 0.5px; }
  100% { transform: translate(-50%, -50%) scale(1.55); opacity: 0; }
}

/* ── Holographic data motes floating around the coin ──
   v3 2026-05-22 · complex orbital animations were unreliable across
   browsers (transform composition + transform-origin nuances). Final
   approach: pin each mote at a fixed compass position around the coin
   with subtle breath + drift. Reads as a premium verification
   dashboard floating in space — clearer than spinning labels anyway.

   Compass positions:
     mass   : 1 o'clock  (top-right, level with coin's top-third)
     block  : 7 o'clock  (bottom-left, below coin)
     purity : 11 o'clock (top-left, level with coin's top-third) */
.sov-coin-wrap .sov-mote{
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: rgba(244,221,141,0.95);
  padding: 5px 12px;
  background: rgba(6,13,24,0.82);
  border: 1px solid rgba(244,221,141,0.42);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.32), 0 0 14px rgba(244,221,141,0.10);
}
.sov-coin-wrap .sov-mote-mass{
  top: 22%;
  right: -180px;
  animation: sovMoteDrift1 8s ease-in-out infinite;
}
.sov-coin-wrap .sov-mote-block{
  bottom: 18%;
  left: -180px;
  animation: sovMoteDrift2 9.5s ease-in-out infinite;
}
.sov-coin-wrap .sov-mote-purity{
  top: 22%;
  left: -180px;
  animation: sovMoteDrift3 8.5s ease-in-out infinite;
}
@keyframes sovMoteDrift1{
  0%, 100% { transform: translate(0, 0) scale(1);    opacity: 0.92; }
  50%      { transform: translate(-4px, -3px) scale(1.025); opacity: 1; }
}
@keyframes sovMoteDrift2{
  0%, 100% { transform: translate(0, 0) scale(1);    opacity: 0.92; }
  50%      { transform: translate(4px, -3px) scale(1.025);  opacity: 1; }
}
@keyframes sovMoteDrift3{
  0%, 100% { transform: translate(0, 0) scale(1);    opacity: 0.92; }
  50%      { transform: translate(4px, 3px) scale(1.025);   opacity: 1; }
}
/* Connecting hairline from each mote toward the coin center */
.sov-coin-wrap .sov-mote::after{
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(244,221,141,0.55) 0%,
    rgba(244,221,141,0.10) 100%);
  pointer-events: none;
}
.sov-coin-wrap .sov-mote-mass::after,
.sov-coin-wrap .sov-mote-block:not(.sov-mote-purity)::after{
  left: -28px;
}
.sov-coin-wrap .sov-mote-block::after{
  right: -28px;
  left: auto;
  background: linear-gradient(270deg,
    rgba(244,221,141,0.55) 0%,
    rgba(244,221,141,0.10) 100%);
}
.sov-coin-wrap .sov-mote-purity::after{
  right: -28px;
  left: auto;
  background: linear-gradient(270deg,
    rgba(244,221,141,0.55) 0%,
    rgba(244,221,141,0.10) 100%);
}
/* Mobile: hide the orbiting motes (too cluttered on small screens) */
@media (max-width: 640px){
  .sov-coin-wrap .sov-mote{ display: none; }
}
/* Reduced motion: pin motes in place, skip the radial flash */
@media (prefers-reduced-motion: reduce){
  .sov-coin-wrap::before{ display: none; }
  .sov-coin-wrap .sov-mote{ animation: none !important; }
  .cine-marquee-stat::before{ animation: none !important; }
}
.cine-stat-block {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--ff-serif);
}
.cine-stat-num {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.cine-stat-num .op {
  font-family: var(--ff-mono);
  font-size: 0.55em;
  font-weight: 500;
  color: var(--text-mute);
  margin-left: 4px;
  letter-spacing: 0.16em;
}
.cine-stat-eq {
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--text-mute);
  font-weight: 300;
  margin: 0 8px;
}
.cine-stat-lbl {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-left: 18px;
  max-width: 180px;
  text-align: left;
  line-height: 1.35;
}

/* ─── Proof strip (4 stats, hairline columns) ─── */
.cine-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1080px;
  margin: 0 0 56px;
  padding: 28px 0;
  border-top: 1px solid rgba(244,196,48,0.18);
  border-bottom: 1px solid rgba(244,196,48,0.18);
}
.cine-proof-cell {
  text-align: center;
  padding: 0 22px;
  border-right: 1px solid rgba(244,196,48,0.10);
}
.cine-proof-cell:last-child { border-right: none; }
.cine-proof-cell .num {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 10px;
}
.cine-proof-cell .num .suffix {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--gold-soft);
  margin-left: 2px;
}
.cine-proof-cell .lbl {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1.45;
}

/* ─── CTAs ─── */
.cine-cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 64px;
}
.cine-cta-primary {
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(244,196,48,0.22), 0 0 0 1px rgba(244,196,48,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cine-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(244,196,48,0.32), 0 0 0 1px var(--gold);
}
.cine-cta-ghost {
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--text);
}
.cine-cta-ghost .arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s;
}
.cine-cta-ghost:hover .arrow { transform: translateX(4px); }

/* ─── Scroll cue ─── */
.cine-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--text-mute);
}
.cine-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent);
  position: relative;
  overflow: hidden;
}
.cine-scroll-line::after {
  content: '';
  position: absolute;
  width: 1px; height: 16px;
  background: var(--gold);
  animation: scrollLineDrop 2s ease-in-out infinite;
}
@keyframes scrollLineDrop {
  0%   { top: -16px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 48px; opacity: 0; }
}

/* ─── Section transitions: hairline above next section ─── */
.hero-cinematic::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(244,196,48,0.42) 50%, transparent 100%);
  z-index: 4;
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .cine-orb, .cine-grid, .cine-pulse, .cine-scroll-line::after {
    animation: none !important;
  }
}

/* ─── Mobile responsive ─── */
@media (max-width: 1024px) {
  .hero-cinematic { min-height: auto; padding: 64px 0 48px; }
  .cine-headline { font-size: clamp(48px, 9vw, 88px); margin-bottom: 24px; }
  .cine-sub { font-size: 16px; margin-bottom: 36px; }
  .cine-marquee-stat { padding: 20px 28px; margin-bottom: 36px; }
  .cine-stat-block { flex-wrap: wrap; gap: 14px; justify-content: center; }
  .cine-stat-lbl { margin-left: 0; max-width: none; text-align: center; }
  .cine-proof-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; padding: 24px 0; }
  .cine-proof-cell { border-right: none; padding: 0 14px; }
  .cine-proof-cell:nth-child(odd) { border-right: 1px solid rgba(244,196,48,0.10); }
  .cine-cta-row { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; gap: 10px; margin-bottom: 36px; }
  .cine-cta-primary, .cine-cta-ghost { text-align: center; padding: 14px 24px; }
}
@media (max-width: 640px) {
  .cine-eyebrow { font-size: 9.5px; padding: 7px 16px; margin-bottom: 24px; }
  .cine-headline { font-size: clamp(40px, 11vw, 64px); }
  .cine-sub { font-size: 15px; padding: 0 8px; }
  .cine-stat-num { font-size: 28px; }
  .cine-stat-eq { font-size: 22px; }
  .cine-proof-cell .num { font-size: 22px; }
  .cine-proof-cell .lbl { font-size: 9px; }
}

/* ─── Live ticker ─── */
.live-ticker-shell {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);
  border-top: 1px solid rgba(244,196,48,0.18);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  z-index: 5;
}
.ticker-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 11px 32px 9px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-mute);
}
.ticker-title { color: var(--gold); display: inline-flex; align-items: center; gap: 10px; }
.ticker-title .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,224,127,0.18);
  animation: tickerPulse 1.6s ease-in-out infinite;
}
.ticker-meta { color: var(--text-mute); font-size: 9.5px; }
.ticker-meta .meta-live { color: var(--green); }

@keyframes tickerPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,224,127,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(31,224,127,0.0); }
}

.ticker-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerSlide 90s linear infinite;
}
.ticker-track-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 28px 8px 0;
  margin-right: 28px;
  border-right: 1px solid var(--line-mute);
  font-family: var(--ff-mono);
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item .ti-time { color: var(--text-mute); font-size: 11px; letter-spacing: 0.06em; }
.ticker-item .ti-id { color: var(--gold); font-weight: 500; }
.ticker-item .ti-id.reject { color: var(--amber); }
.ticker-item .ti-meta { color: var(--text-soft); font-size: 11.5px; }
.ticker-item .ti-badge { padding: 3px 9px; border-radius: 3px; font-size: 10px; letter-spacing: 0.16em; font-weight: 600; }
.ticker-item .ti-badge.pass { color: var(--green); background: rgba(31,224,127,0.10); border: 1px solid rgba(31,224,127,0.28); }
.ticker-item .ti-badge.reject { color: var(--amber); background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.30); }

@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
