/* ============================================================
   GENERAL DANK — COMMAND CENTER · Visual DNA
   Netflix × Apple Vision Pro × Interstellar × Stripe × Arc.
   Luxury, not neon. Everything breathes. Interactions < 400ms.
   ============================================================ */

:root {
  --space-black: #050608;
  --charcoal: #101318;
  --platinum: #D7DCE5;
  --violet: #7C5CFF;
  --cyan: #6EE7FF;
  --emerald: #3DF7B4;
  --gold: #F2D79A;

  --ink: #EAF0FA;
  --muted: #8B93A7;
  --line: rgba(215, 220, 229, 0.10);
  --line-2: rgba(215, 220, 229, 0.18);
  --glass: rgba(18, 22, 30, 0.55);
  --glass-2: rgba(24, 28, 38, 0.72);

  --serif: 'Inter Tight', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 0.22s var(--ease);
  --med: 0.36s var(--ease);

  --maxw: 1240px;
  --pad: clamp(1.25rem, 5vw, 5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--space-black);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--violet); color: #fff; }

/* ---------- Ambient background layers ---------- */
.galaxy { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.nebula {
  position: fixed; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 40% at 78% 22%, rgba(124, 92, 255, 0.28), transparent 70%),
    radial-gradient(40% 38% at 18% 72%, rgba(110, 231, 255, 0.12), transparent 72%),
    radial-gradient(60% 50% at 50% 120%, rgba(61, 247, 180, 0.08), transparent 70%);
  filter: blur(30px);
  animation: drift 40s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-2%, 1.5%, 0) scale(1.06); } }
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, .nav, .footer { position: relative; z-index: 2; }

/* ---------- Boot splash ---------- */
.boot {
  position: fixed; inset: 0; z-index: 100; display: grid; place-content: center; gap: 1.1rem;
  background: radial-gradient(60% 60% at 70% 30%, rgba(124,92,255,0.12), var(--space-black) 70%);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.boot.gone { opacity: 0; visibility: hidden; }
.boot-mark { font-family: var(--serif); font-weight: 800; letter-spacing: 0.28em; font-size: clamp(1.2rem, 3.4vw, 2rem); text-align: center; color: var(--platinum); }
.boot-sub { text-align: center; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; }
.boot-bar { width: min(240px, 60vw); height: 2px; margin: 0.4rem auto 0; background: var(--line-2); border-radius: 2px; overflow: hidden; }
.boot-bar span { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--violet), var(--cyan)); animation: load 1.1s var(--ease) infinite; }
@keyframes load { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85rem var(--pad);
  background: linear-gradient(180deg, rgba(5,6,8,0.7), transparent);
  transition: background var(--med), backdrop-filter var(--med), border-color var(--med);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(8, 10, 14, 0.72); backdrop-filter: blur(14px) saturate(1.2); border-bottom-color: var(--line); }
.nav .brand { font-family: var(--serif); font-weight: 700; letter-spacing: 0.14em; font-size: 0.82rem; text-transform: uppercase; }
.nav .links { display: flex; gap: clamp(0.7rem, 2vw, 1.7rem); align-items: center; }
.nav .links a { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.06em; transition: color var(--fast); position: relative; }
.nav .links a:hover { color: var(--ink); }
.nav .links a::after { content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0; background: var(--cyan); transition: width var(--fast); }
.nav .links a:hover::after { width: 100%; }
.nav .nav-toggle { display: none; background: none; border: 1px solid var(--line-2); color: var(--ink); border-radius: 8px; padding: 0.4rem 0.6rem; font-size: 0.9rem; cursor: pointer; }
@media (max-width: 760px) {
  .nav .links { position: absolute; top: 100%; right: var(--pad); flex-direction: column; align-items: flex-end; gap: 0.9rem;
    background: var(--glass-2); backdrop-filter: blur(18px); padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 14px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity var(--fast), transform var(--fast); }
  .nav.open .links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav .nav-toggle { display: block; }
}

/* ---------- Section base ---------- */
.section { min-height: 90vh; padding: clamp(4.5rem, 11vh, 9rem) var(--pad); display: flex; flex-direction: column; justify-content: center; position: relative; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; }
.kicker { font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.4rem; display: inline-flex; align-items: center; gap: 0.6rem; }
.kicker::before { content: ''; width: 26px; height: 1px; background: var(--cyan); opacity: 0.6; }
.h-mega { font-family: var(--serif); font-weight: 800; line-height: 0.98; letter-spacing: -0.02em; font-size: clamp(2.6rem, 8vw, 6.5rem); }
.h-1 { font-family: var(--serif); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; font-size: clamp(2rem, 5.5vw, 4rem); }
.h-2 { font-family: var(--serif); font-weight: 700; letter-spacing: -0.01em; font-size: clamp(1.4rem, 3vw, 2.2rem); }
.lead { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.25rem); max-width: 46ch; line-height: 1.6; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.grad { background: linear-gradient(100deg, var(--platinum), var(--violet) 60%, var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .nebula, .boot-bar span { animation: none; } }

/* ---------- Buttons ---------- */
.btns { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.5rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; border: 1px solid transparent; transition: transform var(--fast), box-shadow var(--fast), background var(--fast), border-color var(--fast); }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(100deg, var(--violet), #6a4bff); color: #fff; box-shadow: 0 10px 40px -12px rgba(124,92,255,0.7); }
.btn.primary:hover { box-shadow: 0 16px 50px -12px rgba(124,92,255,0.9); }
.btn.ghost { background: rgba(255,255,255,0.03); border-color: var(--line-2); color: var(--ink); }
.btn.ghost:hover { border-color: var(--cyan); color: #fff; }
.btn.cta { background: linear-gradient(100deg, var(--gold), #e7c67f); color: #201a0c; font-weight: 700; box-shadow: 0 10px 40px -14px rgba(242,215,154,0.6); }

/* contextual CTA band */
.cta-band { margin-top: clamp(2.5rem, 6vh, 4rem); padding: clamp(1.6rem, 4vw, 2.4rem); border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(120deg, rgba(124,92,255,0.10), rgba(110,231,255,0.05)); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.cta-band p { font-family: var(--serif); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.6rem); }

/* ---------- HERO (scroll 1) ---------- */
.hero { min-height: 100vh; }
.hero .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; width: 100%; max-width: var(--maxw); margin: 0 auto; }
.hero .name { font-family: var(--serif); font-weight: 900; letter-spacing: -0.03em; line-height: 0.92; font-size: clamp(3.2rem, 11vw, 9rem); }
.hero .rotator { height: clamp(2.6rem, 8vw, 6rem); overflow: hidden; margin: 0.4rem 0 1.4rem; }
.hero .rotator .word { font-family: var(--serif); font-weight: 800; font-size: clamp(1.8rem, 6vw, 4.4rem); line-height: 1; background: linear-gradient(100deg, var(--violet), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; will-change: transform, opacity; }
.hero .tagline { color: var(--platinum); font-size: clamp(1.05rem, 2vw, 1.4rem); max-width: 34ch; line-height: 1.5; }
.hero .founder { margin-top: 1.6rem; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.hero .founder b { color: var(--gold); font-weight: 700; letter-spacing: 0.14em; }
.portrait { position: relative; aspect-ratio: 3/4; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-2);
  background:
    radial-gradient(60% 50% at 50% 26%, rgba(124,92,255,0.55), transparent 62%),
    radial-gradient(70% 60% at 60% 90%, rgba(110,231,255,0.20), transparent 60%),
    linear-gradient(180deg, #14121d, #0a0b10);
  box-shadow: 0 40px 120px -40px rgba(124,92,255,0.5); animation: breathe 8s var(--ease) infinite; }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait .silhouette { position: absolute; inset: 0; display: grid; place-content: center; font-family: var(--serif); font-weight: 900; font-size: clamp(3rem, 9vw, 7rem); color: rgba(255,255,255,0.06); letter-spacing: -0.03em; }
.portrait .glasspanel { position: absolute; border-radius: 12px; border: 1px solid var(--line-2); background: var(--glass); backdrop-filter: blur(8px); padding: 0.6rem 0.8rem; font-size: 0.66rem; color: var(--platinum); }
.portrait .gp1 { left: 6%; top: 12%; animation: float1 9s var(--ease) infinite; }
.portrait .gp2 { right: 6%; bottom: 14%; animation: float2 11s var(--ease) infinite; }
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.012); } }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
.scroll-hint { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-hint::after { content: ''; width: 1px; height: 30px; background: linear-gradient(var(--cyan), transparent); animation: hint 2s var(--ease) infinite; }
@keyframes hint { 0% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; } 50% { opacity: 1; } 100% { opacity: 0.2; transform: scaleY(1); } }
@media (max-width: 860px) { .hero .hero-grid { grid-template-columns: 1fr; } .portrait { max-width: 340px; } }

/* ---------- Netflix rails ---------- */
.rail-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.rail { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.4rem 0.2rem 1.4rem; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 6px; }

/* Big division cards (scroll 2) */
.div-card { scroll-snap-align: start; flex: 0 0 clamp(260px, 34vw, 420px); min-height: clamp(320px, 44vh, 460px); border-radius: 20px; padding: 1.6rem; position: relative; overflow: hidden;
  border: 1px solid var(--line); background: linear-gradient(180deg, var(--charcoal), #0a0c11); transition: transform var(--med), border-color var(--med), box-shadow var(--med); display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; }
.div-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(80% 60% at 70% 0%, rgba(124,92,255,0.22), transparent 60%); opacity: 0.7; transition: opacity var(--med); }
.div-card:hover { transform: translateY(-6px) scale(1.015); border-color: var(--line-2); box-shadow: 0 30px 80px -30px rgba(124,92,255,0.5); }
.div-card .dc-tag { position: relative; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cyan); }
.div-card .dc-title { position: relative; font-family: var(--serif); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1; margin: 0.4rem 0 0.8rem; }
.div-card .dc-items { position: relative; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.6rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height var(--med), opacity var(--med); }
.div-card:hover .dc-items { max-height: 120px; opacity: 1; }
.chip { font-size: 0.68rem; padding: 0.3rem 0.65rem; border-radius: 999px; border: 1px solid var(--line-2); color: var(--platinum); background: rgba(255,255,255,0.02); }
.div-card .dc-stat { position: relative; font-size: 0.74rem; color: var(--muted); }

/* Poster cards (proof + projects rows) */
.poster { scroll-snap-align: start; flex: 0 0 clamp(180px, 22vw, 260px); aspect-ratio: 2/3; border-radius: 16px; overflow: hidden; position: relative; border: 1px solid var(--line); cursor: pointer; transition: transform var(--med), box-shadow var(--med), border-color var(--med);
  background: linear-gradient(160deg, #191426, #0a0b10); }
.poster:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 26px 70px -28px rgba(0,0,0,0.9); border-color: var(--line-2); z-index: 3; }
.poster .pimg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.9; }
.poster .pfx { position: absolute; inset: 0; background: radial-gradient(70% 60% at 30% 10%, rgba(124,92,255,0.25), transparent 60%), linear-gradient(180deg, transparent 30%, rgba(5,6,8,0.9)); }
.poster .pbody { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; }
.poster .ptitle { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.poster .pblurb { font-size: 0.72rem; color: var(--muted); margin-top: 0.3rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height var(--med), opacity var(--med); }
.poster:hover .pblurb { max-height: 80px; opacity: 1; }
.row-block { margin-bottom: 2.4rem; }
.row-title { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; margin-bottom: 0.8rem; color: var(--platinum); }

/* ---------- Timeline (who) ---------- */
.timeline { position: relative; margin-top: 2.5rem; padding-left: 1.5rem; }
.timeline::before { content: ''; position: absolute; left: 4px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--violet), var(--cyan), transparent); }
.tl-item { position: relative; padding: 0 0 2.2rem 1.8rem; }
.tl-item::before { content: ''; position: absolute; left: -1.5rem; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--space-black); border: 2px solid var(--cyan); box-shadow: 0 0 0 4px rgba(110,231,255,0.10); transition: transform var(--fast), background var(--fast); }
.tl-item:hover::before { background: var(--cyan); transform: scale(1.25); }
.tl-year { font-family: var(--serif); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold); line-height: 1; }
.tl-label { color: var(--platinum); margin-top: 0.3rem; }

/* ---------- Company / grid nodes ---------- */
.node-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.9rem; margin-top: 2.2rem; }
.node { border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem; background: var(--glass); backdrop-filter: blur(6px); transition: transform var(--fast), border-color var(--fast), background var(--fast); cursor: pointer; }
.node:hover { transform: translateY(-4px); border-color: var(--violet); background: var(--glass-2); }
.node .n-name { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }
.node .n-blurb { color: var(--muted); font-size: 0.78rem; margin-top: 0.3rem; }
.node .n-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px var(--emerald); display: inline-block; margin-right: 0.4rem; }

/* ---------- Ecosystem map ---------- */
.eco { margin-top: 2.4rem; display: grid; gap: 1rem; }
.eco-root { justify-self: center; font-family: var(--serif); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); padding: 0.8rem 1.6rem; border-radius: 14px; border: 1px solid var(--violet); background: rgba(124,92,255,0.12); }
.eco-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.eco-pillar { border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem; background: var(--glass); }
.eco-pillar h4 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 0.7rem; color: var(--cyan); }
.eco-pillar ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.eco-pillar li { font-size: 0.82rem; color: var(--platinum); padding-left: 1rem; position: relative; }
.eco-pillar li::before { content: '→'; position: absolute; left: 0; color: var(--muted); }

/* ---------- Products ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 2.2rem; }
.prod { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: linear-gradient(180deg, var(--charcoal), #0a0c11); cursor: pointer; transition: transform var(--med), border-color var(--med), box-shadow var(--med); }
.prod:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 80px -34px rgba(124,92,255,0.5); }
.prod .p-poster { aspect-ratio: 16/10; position: relative; background: radial-gradient(70% 80% at 30% 10%, rgba(124,92,255,0.35), transparent 60%), linear-gradient(160deg, #1a1530, #0a0b10); display: grid; place-content: center; }
.prod .p-poster .pm { font-family: var(--serif); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.01em; text-align: center; padding: 0 0.6rem; }
.prod .p-meta { padding: 1rem 1.1rem 1.2rem; }
.prod .p-sub { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); }
.prod .p-name { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; margin: 0.2rem 0 0.4rem; }
.prod .p-over { font-size: 0.8rem; color: var(--muted); }

/* ---------- Services universes ---------- */
.uni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 2.2rem; }
.uni { border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem; background: var(--glass); position: relative; overflow: hidden; transition: transform var(--fast), border-color var(--fast); }
.uni:hover { transform: translateY(-4px); border-color: var(--cyan); }
.uni .u-num { font-family: var(--serif); font-weight: 800; font-size: 2.4rem; color: rgba(255,255,255,0.06); position: absolute; top: 0.6rem; right: 1rem; }
.uni h3 { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; }
.uni .u-blurb { color: var(--muted); font-size: 0.85rem; margin: 0.4rem 0 1rem; }
.uni ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.uni li { font-size: 0.72rem; padding: 0.3rem 0.6rem; border: 1px solid var(--line-2); border-radius: 999px; color: var(--platinum); }

/* ---------- Operators (flip cards) ---------- */
.op-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.1rem; margin-top: 2.2rem; }
.op { perspective: 1200px; aspect-ratio: 3/4; cursor: pointer; }
.op-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.55s var(--ease); }
.op:hover .op-inner, .op.flipped .op-inner { transform: rotateY(180deg); }
.op-face { position: absolute; inset: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-2); backface-visibility: hidden; }
.op-front { background: radial-gradient(70% 60% at 50% 20%, rgba(124,92,255,0.4), transparent 62%), linear-gradient(180deg, #16121f, #0a0b10); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.1rem; }
.op-front.founder { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(242,215,154,0.4), 0 30px 80px -34px rgba(242,215,154,0.4); }
.op-front .op-rank { position: absolute; top: 0.9rem; left: 1rem; font-size: 0.62rem; letter-spacing: 0.2em; color: var(--gold); }
.op-front .op-portrait { position: absolute; inset: 0; background-size: cover; background-position: center; }
.op-front .op-silh { position: absolute; inset: 0; display: grid; place-content: center; font-family: var(--serif); font-weight: 900; font-size: 3.4rem; color: rgba(255,255,255,0.07); }
.op-front .op-name { position: relative; font-family: var(--serif); font-weight: 800; font-size: 1.2rem; line-height: 1; }
.op-front .op-role { position: relative; font-size: 0.72rem; color: var(--cyan); margin-top: 0.25rem; }
.op-back { background: linear-gradient(180deg, var(--charcoal), #0a0c11); transform: rotateY(180deg); padding: 1.2rem; display: flex; flex-direction: column; gap: 0.55rem; overflow-y: auto; }
.op-back h4 { font-family: var(--serif); font-size: 1.05rem; }
.op-back .op-line { font-size: 0.74rem; color: var(--platinum); }
.op-back .op-line b { color: var(--cyan); font-weight: 600; }
.op-back .op-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.op-back .op-tags span { font-size: 0.62rem; padding: 0.2rem 0.5rem; border: 1px solid var(--line-2); border-radius: 999px; color: var(--muted); }
.op-back .op-mentor { margin-top: auto; font-size: 0.66rem; color: var(--gold); letter-spacing: 0.05em; }

/* ---------- Results ---------- */
.res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.2rem; margin-top: 2.4rem; }
.res { text-align: center; padding: 1.4rem; }
.res .r-val { font-family: var(--serif); font-weight: 900; font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1; background: linear-gradient(180deg, var(--platinum), var(--muted)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.res .r-label { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.5rem; }

/* ---------- Vision roadmap ---------- */
.road { display: flex; gap: 0; overflow-x: auto; margin-top: 2.4rem; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.road-node { scroll-snap-align: start; flex: 0 0 clamp(180px, 26vw, 240px); padding: 1.4rem 1.2rem; border-left: 2px solid var(--line-2); position: relative; }
.road-node::before { content: ''; position: absolute; left: -6px; top: 1.4rem; width: 10px; height: 10px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 12px var(--violet); }
.road-node .rn-year { font-family: var(--serif); font-weight: 800; font-size: 1.6rem; color: var(--gold); }
.road-node .rn-label { color: var(--platinum); font-size: 0.82rem; margin-top: 0.4rem; }

/* ---------- Command center ---------- */
.cc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 2.2rem; }
.cc-panel { border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem; background: var(--glass); backdrop-filter: blur(6px); }
.cc-panel h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.cc-panel h4 .live { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px var(--emerald); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.cc-panel ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.cc-panel li { font-size: 0.8rem; color: var(--platinum); padding-left: 1rem; position: relative; }
.cc-panel li::before { content: '▸'; position: absolute; left: 0; color: var(--muted); }
.cc-panel.commits li { font-family: ui-monospace, Menlo, monospace; font-size: 0.72rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); margin-top: 2rem; align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-links { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.6rem; }
.contact-links a { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.2rem; border: 1px solid var(--line); border-radius: 12px; background: var(--glass); transition: border-color var(--fast), transform var(--fast); }
.contact-links a:hover { border-color: var(--cyan); transform: translateX(4px); }
.form { display: flex; flex-direction: column; gap: 0.8rem; }
.form input, .form textarea, .form select { background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); border-radius: 12px; padding: 0.85rem 1rem; color: var(--ink); font-family: var(--sans); font-size: 0.9rem; transition: border-color var(--fast); }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--violet); }
.form textarea { min-height: 120px; resize: vertical; }
.form .form-msg { font-size: 0.8rem; color: var(--emerald); min-height: 1.2em; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 2.4rem var(--pad); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; color: var(--muted); font-size: 0.78rem; }
.footer .f-brand { font-family: var(--serif); font-weight: 700; letter-spacing: 0.14em; color: var(--platinum); }

/* ---------- Cinematic overlay ---------- */
.overlay { position: fixed; inset: 0; z-index: 90; background: rgba(5,6,8,0.6); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s; display: grid; place-items: center; padding: var(--pad); }
.overlay.open { opacity: 1; visibility: visible; }
.overlay-inner { width: min(760px, 100%); max-height: 86vh; overflow-y: auto; border: 1px solid var(--line-2); border-radius: 22px; background: linear-gradient(180deg, var(--glass-2), #0a0b10); padding: clamp(1.5rem, 4vw, 2.6rem); transform: scale(0.96) translateY(20px); transition: transform 0.4s var(--ease); }
.overlay.open .overlay-inner { transform: none; }
.overlay .ov-close { position: sticky; top: 0; float: right; background: none; border: 1px solid var(--line-2); color: var(--ink); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.overlay h3 { font-family: var(--serif); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 0.4rem; }
.overlay .ov-sub { color: var(--cyan); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.overlay .ov-section { margin-top: 1.2rem; }
.overlay .ov-section h5 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.overlay .ov-section p { color: var(--platinum); }
.overlay .ov-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.overlay .ov-tags span { font-size: 0.72rem; padding: 0.3rem 0.7rem; border: 1px solid var(--line-2); border-radius: 999px; }

/* ---------- Cinematic full-screen takeover (projects/proof) ---------- */
.overlay.cinema { background: rgba(5,6,8,0.86); backdrop-filter: blur(10px); }
.overlay.cinema .overlay-inner { width: min(920px, 100%); padding: 0; overflow: hidden; }
.overlay.cinema .ov-close { position: absolute; top: 1rem; right: 1rem; z-index: 3; background: rgba(0,0,0,0.4); }
.overlay.cinema .ov-section { padding-left: clamp(1.5rem,4vw,2.6rem); padding-right: clamp(1.5rem,4vw,2.6rem); }
.overlay.cinema .ov-section:last-child { padding-bottom: clamp(1.5rem,4vw,2.6rem); }
.cinema-banner { position: relative; min-height: clamp(220px, 40vh, 340px); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem,4vw,2.6rem); }
.cinema-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(8,9,13,0.9)); }
.cinema-banner .cinema-cat { position: relative; z-index: 1; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.5rem; }
.cinema-banner h3 { position: relative; z-index: 1; margin: 0; font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1; }

/* ---------- Audience router (belong) ---------- */
.belong-section { min-height: auto; }
.door-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.8rem; margin-top: 2rem; }
.door { text-align: left; cursor: pointer; border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem; background: var(--glass); backdrop-filter: blur(6px); color: var(--ink); display: flex; flex-direction: column; gap: 0.35rem; transition: transform var(--fast), border-color var(--fast), background var(--fast), box-shadow var(--fast); position: relative; overflow: hidden; }
.door::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 60% at 80% 0%, rgba(124,92,255,0.18), transparent 60%); opacity: 0; transition: opacity var(--fast); }
.door:hover { transform: translateY(-4px); border-color: var(--violet); background: var(--glass-2); box-shadow: 0 24px 60px -30px rgba(124,92,255,0.5); }
.door:hover::before { opacity: 1; }
.door .door-label { position: relative; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.door .door-line { position: relative; color: var(--muted); font-size: 0.8rem; }
.door .door-go { position: relative; margin-top: 0.4rem; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--cyan); opacity: 0; transform: translateX(-6px); transition: opacity var(--fast), transform var(--fast); }
.door:hover .door-go { opacity: 1; transform: none; }

/* ---------- Command Center live bar ---------- */
.cc-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin-top: 1.6rem; padding: 0.9rem 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(8,10,14,0.5); backdrop-filter: blur(8px); }
.cc-bar .cc-clock { font-family: ui-monospace, Menlo, monospace; font-size: 0.9rem; color: var(--cyan); letter-spacing: 0.05em; }
.cc-bar .cc-signal { flex: 1; min-width: 180px; color: var(--platinum); font-size: 0.82rem; transition: opacity 0.22s var(--ease); }
.cc-bar .cc-status { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--emerald); display: inline-flex; align-items: center; gap: 0.5rem; }
.cc-bar .cc-status .live { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px var(--emerald); animation: pulse 1.6s infinite; }

/* ---------- Global custom scrollbar ---------- */
html { scrollbar-width: thin; scrollbar-color: rgba(124,92,255,0.5) transparent; }
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--space-black); }
body::-webkit-scrollbar-thumb { background: linear-gradient(var(--violet), var(--cyan)); border-radius: 10px; border: 2px solid var(--space-black); }

/* ============================================================
   THE SLATE — Cinematic overhaul (override layer; later wins)
   Studio ident + letterbox · SECTOR title cards · Anton display
   · HUD chrome · kinetic headlines · weaponized accent ladder.
   ============================================================ */
:root {
  --display: 'Anton', 'Inter Tight', system-ui, sans-serif;
  --wide: 'Archivo Expanded', 'Inter Tight', sans-serif;
  --hud: 'Space Grotesk', ui-monospace, Menlo, monospace;
  --void: #020304;
  --ease-cine: cubic-bezier(0.16, 1, 0.3, 1);
}

/* static corner vignette so full-bleed type sits in a lit gallery */
.vignette { position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 120% at 50% 40%, transparent 62%, rgba(2,3,4,0.55) 100%); }

/* ---------- Display typography ---------- */
.hero .name, .h-mega, .h-1 { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.012em; }
.hero .name { font-size: clamp(3.6rem, 14vw, 10.5rem); line-height: 0.84; }
.h-mega { font-size: clamp(2.7rem, 9vw, 7rem); line-height: 0.9; }
.h-1 { font-size: clamp(2.1rem, 6vw, 4.4rem); line-height: 0.92; }
.kicker { font-family: var(--hud); font-weight: 500; }

/* rotator → gold genre tags (founder tier) */
.hero .rotator .word { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.02em;
  background: none; -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: var(--gold); color: var(--gold); }
.hero .tagline { font-family: var(--hud); }

/* ---------- Kinetic headline word build ---------- */
.kw { display: inline-block; opacity: 0; transform: translateY(0.5em); transition: opacity 0.55s var(--ease-cine), transform 0.55s var(--ease-cine); }
.kin.in .kw { opacity: 1; transform: none; }
.kw-i { display: inline-block; }
.kw-i.outline { -webkit-text-stroke: 2px var(--platinum); color: transparent; }
.kw-i.em { color: var(--gold); }

/* ---------- Letterbox cinema frame ---------- */
.letterbox { position: fixed; inset: 0; z-index: 3; pointer-events: none; }
.letterbox .lb-top, .letterbox .lb-bot { position: absolute; left: 0; right: 0; height: 15vh; background: var(--void); transition: height 1.1s var(--ease-cine); }
.letterbox .lb-top { top: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.letterbox .lb-bot { bottom: 0; border-top: 1px solid rgba(255,255,255,0.05); }
body.booted .letterbox .lb-top, body.booted .letterbox .lb-bot { height: 2.4vh; }

/* ---------- Scroll progress ---------- */
.scroll-prog { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 50; background: linear-gradient(90deg, var(--violet), var(--cyan), var(--emerald)); box-shadow: 0 0 12px rgba(110,231,255,0.5); transition: width 0.1s linear; }

/* ---------- SECTOR / ACT title cards ---------- */
.title-card { width: 100%; max-width: var(--maxw); margin: 0 auto clamp(1.2rem, 3.5vw, 2.4rem); display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.6rem);
  opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-cine), transform 0.7s var(--ease-cine); }
.title-card.in { opacity: 1; transform: none; }
.title-card .tc-num { font-family: var(--wide); font-weight: 900; font-size: clamp(2.4rem, 7vw, 5rem); line-height: 0.8; color: transparent; -webkit-text-stroke: 1px var(--line-2); }
.title-card .tc-meta { display: flex; flex-direction: column; gap: 0.25rem; }
.title-card .tc-label { font-family: var(--hud); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cyan); }
.title-card .tc-log { font-family: var(--hud); color: var(--muted); font-size: 0.82rem; }

/* ---------- HUD bracket-corner utility ---------- */
.hud { position: relative; }
.hud::before, .hud::after { content: ''; position: absolute; width: 13px; height: 13px; pointer-events: none; border: 1px solid rgba(110,231,255,0.4); }
.hud::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.hud::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.portrait .viewport-bar { position: absolute; top: 0; left: 0; right: 0; z-index: 2; font-family: var(--hud); font-size: 0.6rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--cyan); padding: 0.55rem 0.85rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), transparent); }

/* ---------- Release-state ribbons ---------- */
.ribbon { position: absolute; top: 0.8rem; right: 0.8rem; z-index: 2; font-family: var(--hud); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.28rem 0.55rem; border-radius: 6px; border: 1px solid var(--line-2); background: rgba(0,0,0,0.42); color: var(--muted); }
.ribbon.live { color: var(--emerald); border-color: rgba(61,247,180,0.45); }
.ribbon.gold { color: var(--gold); border-color: rgba(242,215,154,0.45); }
.div-card { position: relative; }
.prod { position: relative; }

/* ---------- Nav hot CTA + audience chip ---------- */
.nav .links .btn.cta { padding: 0.5rem 1rem; font-size: 0.72rem; margin-left: 0.3rem; }
.nav .links .nav-chip { border: 1px solid var(--line-2); border-radius: 999px; padding: 0.34rem 0.75rem; font-size: 0.72rem; color: var(--platinum); }
.nav .links .nav-chip:hover { border-color: var(--cyan); color: #fff; }
.nav .links .nav-chip::after { display: none; }

/* ---------- Sticky CTA ---------- */
.sticky-cta { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 45;
  background: linear-gradient(100deg, var(--gold), #e7c67f); color: #201a0c; font-weight: 700; font-size: 0.82rem;
  padding: 0.8rem 1.3rem; border-radius: 999px; box-shadow: 0 12px 40px -12px rgba(242,215,154,0.6);
  display: inline-flex; gap: 0.5rem; align-items: center; transform: translateY(160%); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.sticky-cta.show { transform: none; opacity: 1; }
.sticky-cta span { transition: transform 0.2s var(--ease); }
.sticky-cta:hover span { transform: translateX(3px); }
@media (max-width: 640px) { .sticky-cta { font-size: 0.74rem; padding: 0.7rem 1rem; } }

/* ---------- Results box-office slam ---------- */
.res .r-val { font-family: var(--display); font-weight: 400; letter-spacing: 0.01em;
  background: none; -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: var(--gold); color: var(--gold); }
.res .r-val.slam { animation: slam 0.4s var(--ease-cine); }
@keyframes slam { 0% { transform: scale(1.18); } 100% { transform: scale(1); } }

/* ---------- Services giant ghost numerals ---------- */
.uni .u-num { font-family: var(--wide); font-weight: 900; font-size: clamp(4rem, 10vw, 7rem); top: -0.4rem; right: 0.6rem;
  color: transparent; -webkit-text-stroke: 1px var(--line-2); opacity: 1; }
.uni .u-price { font-family: var(--hud); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin: 0.2rem 0 0.8rem; }

/* ---------- Operators: tilt (flip on click, not hover) ---------- */
.op:hover .op-inner { transform: none; }
.op.flipped .op-inner { transform: rotateY(180deg); }
.op { transition: transform 0.18s var(--ease); }
.op-front.founder { box-shadow: 0 0 0 1px rgba(242,215,154,0.5), 0 0 60px -10px rgba(242,215,154,0.45), 0 30px 80px -34px rgba(242,215,154,0.4); }

/* ---------- Command bridge chrome ---------- */
#command { position: relative; overflow: hidden; }
.scanlines { position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 3px); opacity: 0.5; }
.radar { position: absolute; width: min(420px, 60vw); height: min(420px, 60vw); right: -8%; top: 12%; pointer-events: none; z-index: 0; opacity: 0.22;
  background: conic-gradient(from 0deg, transparent 0 300deg, rgba(110,231,255,0.4) 342deg, transparent 360deg);
  -webkit-mask: radial-gradient(circle, #000 58%, transparent 70%); mask: radial-gradient(circle, #000 58%, transparent 70%);
  animation: sweep 6s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
#command .wrap { position: relative; z-index: 2; }

/* ---------- Cinema case-study spec rows ---------- */
.ov-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 0.6rem; padding: 0 clamp(1.5rem, 4vw, 2.6rem); margin-top: 1rem; }
.ov-spec { border: 1px solid var(--line); border-radius: 10px; padding: 0.6rem 0.8rem; }
.ov-spec span { display: block; font-family: var(--hud); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.ov-spec b { font-family: var(--hud); font-weight: 600; color: var(--platinum); font-size: 0.85rem; }
.ov-outcome { font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--gold); line-height: 1; }

/* ============================================================
   DIRECTED — Chris Do rigor × Amano filigree × Virgil quotation
   ============================================================ */
/* Virgil quotation labels (kickers become "LABELS") */
.kicker::before { display: none; }
.kicker { color: var(--cyan); font-weight: 500; }
.kicker .q { color: var(--gold); font-weight: 700; margin: 0 0.15em; }

/* Amano gold filigree — delicate flourish dividers + accents */
.filigree { display: block; margin: 0 auto; width: clamp(160px, 26vw, 260px); height: auto; opacity: 0.85; overflow: visible; }
.filigree path { stroke: var(--gold); stroke-width: 1.1; fill: none; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.filigree .fill { fill: var(--gold); stroke: none; }
.filigree circle { fill: var(--gold); stroke: none; }
.sec-orn { width: 100%; max-width: var(--maxw); margin: 0 auto clamp(0.4rem, 2vw, 1rem); opacity: 0; transform: translateY(12px); transition: opacity 0.8s var(--ease-cine), transform 0.8s var(--ease-cine); }
.sec-orn.in { opacity: 1; transform: none; }
.hero-orn { margin: 1.4rem 0 0; }
.hero-orn .filigree { margin: 0; width: clamp(180px, 22vw, 240px); }

/* Virgil registration crosshair on title cards */
.title-card .tc-cross { position: relative; width: 16px; height: 16px; flex: 0 0 16px; align-self: flex-start; margin-top: 0.4rem; opacity: 0.6; }
.title-card .tc-cross::before, .title-card .tc-cross::after { content: ''; position: absolute; background: var(--cyan); }
.title-card .tc-cross::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.title-card .tc-cross::after { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }

/* Virgil industrial tag */
.virgil-tag { font-family: var(--hud); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.virgil-tag b { color: var(--platinum); font-weight: 600; }
.footer .virgil-tag { display: block; }

/* Real imagery treatment — Amano painterly duotone on portraits/posters */
.poster .pimg, .prod .p-poster, .div-card, .op-front .op-portrait, .portrait img {
  filter: saturate(0.92) contrast(1.04); }
.op-front .op-portrait { background-size: cover; background-position: center top; }
.op-front .op-portrait::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,0) 40%, rgba(5,6,8,0.85)), radial-gradient(70% 50% at 50% 12%, rgba(124,92,255,0.28), transparent 60%);
  mix-blend-mode: normal; }
.hero .portrait img { filter: saturate(0.9) contrast(1.05); }

/* ---------- Cinema banner cast (reduced-motion + mobile safety) ---------- */
@media (prefers-reduced-motion: reduce) {
  .letterbox .lb-top, .letterbox .lb-bot { transition: none; height: 2.4vh; }
  .kw { opacity: 1; transform: none; transition: none; }
  .title-card { opacity: 1; transform: none; transition: none; }
  .radar { animation: none; }
  .sticky-cta { transition: none; }
  .res .r-val.slam { animation: none; }
}
