/* ============================================================
   PROJECTED REALITY — live visual production & show programming
   ============================================================ */

:root {
  --bg: #040505;
  --bg-2: #0a0c0c;
  --ink: #f4f3ee;
  --ink-dim: rgba(244, 243, 238, 0.62);
  --cyan: #26e6ff;
  --green: #48ff6a;
  --red: #ff2440;
  --red-deep: #b81224;
  --gold: #d8b26e;
  --line: rgba(244, 243, 238, 0.14);
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
  --ease-slam: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }

::selection { background: var(--green); color: #031007; }

.mono { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; }

img, video { display: block; max-width: 100%; }

/* every video on this site is a decorative background loop — never
   interactive, so taps can't summon the native player on iOS/WebViews */
video { pointer-events: none; }

h1, h2, h3 { font-weight: 400; }

/* ---------- custom laser cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 26px rgba(72, 255, 106, 0.55);
  margin: -4px 0 0 -4px;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(72, 255, 106, 0.45);
  margin: -17px 0 0 -17px;
  transition: width 0.25s var(--ease-slam), height 0.25s var(--ease-slam),
              margin 0.25s var(--ease-slam), border-color 0.25s;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-hot .cursor-ring {
  width: 52px; height: 52px; margin: -26px 0 0 -26px;
  border-color: var(--green);
}

/* ---------- nav ---------- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 3vw, 2.5rem);
}
.site-nav::before {
  content: "";
  position: absolute; inset: 0 0 -55% 0;
  background: linear-gradient(to bottom, rgba(4, 5, 5, 0.82), rgba(4, 5, 5, 0.35) 55%, transparent);
  pointer-events: none;
  z-index: -1;
}
/* deeper scrim + progressive blur, faded in once the page scrolls so nav
   text stays legible over bright sections */
.site-nav::after {
  content: "";
  position: absolute; inset: 0 0 -65% 0;
  background: linear-gradient(to bottom,
    rgba(4, 5, 5, 0.92) 0%,
    rgba(4, 5, 5, 0.6) 45%,
    rgba(4, 5, 5, 0.25) 72%,
    transparent 100%);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 95%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 95%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
  z-index: -1;
}
.site-nav.is-scrolled::after { opacity: 1; }
.nav-brand {
  display: flex; align-items: center; gap: 0.55em;
  color: var(--ink); text-decoration: none; line-height: 1;
}
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-mark path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mark-echo {
  stroke: rgba(86, 132, 255, 0.38);
  stroke-width: 3.2;
}
.mark-main {
  stroke: var(--cyan);
  stroke-width: 4.4;
  filter: drop-shadow(0 0 5px rgba(38, 230, 255, 0.5));
}
.mark-bowl {
  stroke-dasharray: 150;
  animation: mark-draw 1.3s var(--ease-slam) 0.1s backwards;
}
.mark-leg {
  stroke-dasharray: 24;
  animation: mark-draw 0.5s ease-out 1s backwards;
}
@keyframes mark-draw { from { stroke-dashoffset: var(--dash, 150); opacity: 0.3; } to { stroke-dashoffset: 0; } }
.mark-bowl { --dash: 150; }
.mark-leg { --dash: 24; }
.brand-word {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.13em;
  color: var(--ink);
  white-space: nowrap;
  animation: word-in 0.9s var(--ease-slam) 0.25s backwards;
}
@keyframes word-in { from { opacity: 0; letter-spacing: 0.22em; } }
.nav-links { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav-links a {
  position: relative;
  color: var(--ink); text-decoration: none;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1.5px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(72, 255, 106, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease-slam);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); transition-delay: 0.12s; }

@property --cta-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.nav-cta {
  position: relative;
  color: var(--ink); text-decoration: none;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(244, 243, 238, 0.28);
  padding: 0.55em 1.1em; border-radius: 2em;
  background: rgba(4, 5, 5, 0.45);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav-cta::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 2em;
  padding: 2px;
  background: conic-gradient(from var(--cta-angle),
    transparent 0turn 0.55turn,
    rgba(38, 230, 255, 0.9) 0.7turn,
    var(--green) 0.78turn,
    rgba(38, 230, 255, 0.9) 0.86turn,
    transparent 0.98turn);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: cta-chase 3.2s linear infinite;
  pointer-events: none;
}
@keyframes cta-chase { to { --cta-angle: 1turn; } }
.nav-cta:hover {
  border-color: rgba(244, 243, 238, 0.55);
  box-shadow: 0 0 24px rgba(38, 230, 255, 0.18);
}

/* ---------- hero ---------- */
.hero { height: 420vh; position: relative; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 62%, rgba(4, 5, 5, 0) 0%, rgba(4, 5, 5, 0.55) 78%),
    linear-gradient(to bottom, rgba(4, 5, 5, 0.55), rgba(4, 5, 5, 0.05) 30%, rgba(4, 5, 5, 0.05) 70%, rgba(4, 5, 5, 0.72));
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 2vw;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: clamp(0.58rem, 1vw, 0.74rem);
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  display: flex; align-items: center; justify-content: center;
  gap: 0.9em; flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.tick { width: 7px; height: 7px; display: inline-block; border-radius: 1px; }
.tick-cyan  { background: var(--cyan);  box-shadow: 0 0 8px var(--cyan); }
.tick-green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.tick-red   { background: var(--red);   box-shadow: 0 0 8px var(--red); }
.tick-gold  { background: var(--gold);  box-shadow: 0 0 8px var(--gold); }

.hero-title {
  font-family: var(--font-display);
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-shadow: 0 0 60px rgba(38, 230, 255, 0.25), 0 6px 90px rgba(0, 0, 0, 0.8);
  /* NOTE: no `perspective` here and no `preserve-3d` on the lines — a shared
     3D context Z-sorts the letter layers and their shadow rects composite
     over neighbors as hard-edged panels. Each letter carries its own
     perspective() in its transform instead. */
}
.hero-line {
  display: block;
  font-size: clamp(4.2rem, 14.2vw, 15.5rem);
}
.hero-line-accent {
  color: var(--cyan);
  text-shadow: 0 0 55px rgba(38, 230, 255, 0.4), 0 6px 90px rgba(0, 0, 0, 0.8);
}
.hero-letter {
  display: inline-block;
  will-change: transform;
  transform-origin: 50% 72%;
}
/* dimensional neon: vertical gradient + a specular band that sweeps by (--shx) */
.hero-line-accent.is-split { color: transparent; }
.hero-line-accent.is-split .hero-letter {
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0) 8%, rgba(240, 254, 255, 0.92) 50%, rgba(255, 255, 255, 0) 92%),
    linear-gradient(180deg, #b8f6ff 0%, #26e6ff 46%, #0d94ad 100%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-manifesto {
  margin-top: 1.8rem;
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 1.55vw, 1.25rem);
  letter-spacing: 0.14em;
  color: var(--ink);
  min-height: 1.6em;
}
.caret {
  display: inline-block; width: 0.55em; height: 1.05em;
  background: var(--green);
  vertical-align: text-bottom; margin-left: 0.18em;
  box-shadow: 0 0 12px var(--green);
  animation: caret-blink 0.85s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

.hero-hud {
  position: absolute; z-index: 2;
  left: 0; right: 0; bottom: 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 clamp(1.2rem, 3vw, 2.5rem);
  color: var(--ink-dim);
}
.hud-item { font-size: 0.68rem; letter-spacing: 0.16em; }
#hudTc { color: var(--green); text-shadow: 0 0 10px rgba(72, 255, 106, 0.4); }
#hudCue { color: var(--cyan); }
.hud-scrollhint { font-family: var(--font-mono); }
.hud-arrow { display: inline-block; animation: hud-bob 1.6s ease-in-out infinite; }
@keyframes hud-bob { 50% { transform: translateY(4px); } }

/* ---------- kinetic manifesto ---------- */
.manifesto { height: 340vh; position: relative; background: var(--bg); }
.manifesto-sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.slam-flash {
  position: absolute; inset: 0;
  background: var(--ink);
  opacity: 0; pointer-events: none;
}
.slam-flash.go { animation: flash 0.32s ease-out; }
@keyframes flash { 0% { opacity: 0.22; } 100% { opacity: 0; } }

.slam {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 9.5rem);
  line-height: 1;
  text-align: center;
  padding: 0 4vw;
  opacity: 0;
  transform: scale(1.7);
  filter: blur(14px);
  transition: opacity 0.38s var(--ease-slam),
              transform 0.38s var(--ease-slam),
              filter 0.38s var(--ease-slam);
  will-change: transform, opacity, filter;
}
.slam.is-active { opacity: 1; transform: scale(1); filter: blur(0); }
.slam.is-past { opacity: 0; transform: scale(0.82); filter: blur(10px); }
.c-cyan  { color: var(--cyan);  text-shadow: 0 0 40px rgba(38, 230, 255, 0.5); }
.c-green { color: var(--green); text-shadow: 0 0 40px rgba(72, 255, 106, 0.5); }
.c-red   { color: var(--red);   text-shadow: 0 0 40px rgba(255, 36, 64, 0.5); }
.c-gold  { color: var(--gold); }
.section-title .c-gold { text-shadow: 0 0 45px rgba(216, 178, 110, 0.35); }

.manifesto-index {
  position: absolute; bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  color: var(--ink-dim); font-size: 0.7rem; letter-spacing: 0.3em;
}

/* ---------- shared section chrome ---------- */
.section-head {
  padding: clamp(4rem, 9vh, 7rem) clamp(1.2rem, 3vw, 2.5rem) clamp(1.6rem, 4vh, 3rem);
  display: flex; flex-direction: column; gap: 0.9rem;
}
.section-tag { color: var(--ink-dim); letter-spacing: 0.24em; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.95;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.7s var(--ease-slam), transform 0.7s var(--ease-slam);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(244, 243, 238, 0.22);
  padding: 1em 1.9em; border-radius: 2.5em;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-slam);
  background: linear-gradient(180deg, rgba(244, 243, 238, 0.07), rgba(244, 243, 238, 0.015));
  box-shadow: inset 0 1px 0 rgba(244, 243, 238, 0.09);
}
.btn:hover { transform: translateY(-1px); }
.btn-cyan:hover  { background: var(--cyan);  color: #02181c; border-color: var(--cyan);  box-shadow: 0 0 30px rgba(38, 230, 255, 0.45); }
.btn-green:hover { background: var(--green); color: #03140a; border-color: var(--green); box-shadow: 0 0 30px rgba(72, 255, 106, 0.45); }
.btn-big { font-size: clamp(0.8rem, 1.6vw, 1.05rem); padding: 1.1em 2.2em; }

/* ---------- services panels ---------- */
.services { background: var(--bg); padding-bottom: clamp(3rem, 8vh, 6rem); }
.panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
  padding: 0 clamp(1.2rem, 3vw, 2.5rem);
}
.panel {
  position: relative;
  height: clamp(340px, 62vh, 620px);
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.panel-media, .panel-media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.panel-media video {
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 0.9s var(--ease-slam), filter 0.6s;
  filter: saturate(0.9) brightness(0.85);
}
.panel:hover .panel-media video { transform: scale(1.02); filter: saturate(1.1) brightness(1); }
/* crops — different windows into the same clips */
.crop-a { object-position: 50% 30%; }
.crop-b { object-position: 30% 55%; }
.crop-c { object-position: 60% 20%; }
.crop-d { object-position: 78% 70%; transform: scale(1.35); }
.panel:hover .crop-d { transform: scale(1.22); }

.panel-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4, 5, 5, 0.9) 0%, rgba(4, 5, 5, 0.25) 45%, rgba(4, 5, 5, 0.1) 100%);
  transition: background 0.4s;
}
.panel-num {
  position: absolute; top: 1.1rem; right: 1.2rem;
  color: var(--ink-dim); letter-spacing: 0.2em;
}
.panel-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem clamp(1.2rem, 2vw, 1.8rem);
}
.panel-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}
.panel-desc {
  max-width: 42ch;
  color: var(--ink-dim);
  font-size: 0.92rem;
  margin-top: 0.9rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease-slam), transform 0.45s var(--ease-slam);
}
.panel:hover .panel-desc, .panel.touch-open .panel-desc { opacity: 1; transform: translateY(0); }

/* ---------- feature sections (timecode / laser) ---------- */
.feature { position: relative; overflow: hidden; }
.feature-media, .feature-media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.feature-media video { object-fit: cover; }
.feature-media { inset: -8% 0; height: 116%; will-change: transform; }
.feature-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4, 5, 5, 0.92) 0%, rgba(4, 5, 5, 0.55) 55%, rgba(4, 5, 5, 0.25) 100%);
}
.feature-inner {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.2rem, 4vw, 4rem);
}
.feature-inner-right { grid-template-columns: minmax(0, 1fr); justify-items: start; }
.feature-inner-right .feature-copy { max-width: 660px; text-align: left; }

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.4vw, 6.2rem);
  line-height: 0.95;
  margin: 1.1rem 0 1.6rem;
}
.feature-lede {
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  font-weight: 600;
  max-width: 56ch;
  margin-bottom: 1.1rem;
}
.feature-body {
  color: var(--ink-dim);
  max-width: 58ch;
  margin-bottom: 1.8rem;
}
.feature-body strong { font-weight: 600; }

.spec-list { list-style: none; margin: 0 0 1.8rem; display: grid; gap: 0.7rem; }
.spec-list li { display: flex; align-items: center; gap: 0.8em; letter-spacing: 0.14em; color: var(--ink); }

/* cue sheet */
.cue-sheet {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(4, 5, 5, 0.72);
  backdrop-filter: blur(6px);
  padding: 1.2rem 1.3rem;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
.cue-head, .cue-row {
  display: grid;
  grid-template-columns: 7.2em 3.4em 1fr;
  gap: 1em;
  padding: 0.5em 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.cue-head { color: var(--ink-dim); border-bottom: 1px solid var(--line); margin-bottom: 0.4em; }
.cue-row { color: var(--ink); border-bottom: 1px dashed rgba(244, 243, 238, 0.07); }
.cue-row:last-child { border-bottom: 0; }
.cue-row span:first-child { color: var(--green); }
.cue-hot span:last-child { color: var(--cyan); }

/* ---------- the production arsenal ---------- */
.arsenal {
  background: var(--bg);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  position: relative;
  overflow: hidden;
}
.arsenal::before {
  content: "";
  position: absolute; top: -10%; right: -20%;
  width: 70%; height: 60%;
  background: radial-gradient(ellipse, rgba(38, 230, 255, 0.05), transparent 65%);
  pointer-events: none;
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate(-12%, 14%); } }

.arsenal-feature {
  position: relative;
  margin: 0 clamp(1.2rem, 3vw, 2.5rem) clamp(1.6rem, 3.5vh, 2.6rem);
  height: clamp(300px, 52vh, 540px);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.arsenal-feature video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.arsenal-feature-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4, 5, 5, 0.88), rgba(4, 5, 5, 0.15) 55%);
}
.arsenal-feature-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem clamp(1.2rem, 2.4vw, 2rem);
}
.arsenal-feature-tag {
  display: inline-flex; align-items: center; gap: 0.7em;
  color: var(--cyan);
  letter-spacing: 0.22em;
  font-size: 0.66rem;
  margin-bottom: 0.8rem;
}
.rec-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: rec-pulse 1.6s ease-in-out infinite;
}
@keyframes rec-pulse { 50% { opacity: 0.25; } }
.arsenal-feature-copy p {
  max-width: 58ch;
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  font-weight: 600;
}

.arsenal-list {
  list-style: none;
  margin: 0 clamp(1.2rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}
.arsenal-row {
  --accent: var(--cyan);
  --accent-soft: rgba(38, 230, 255, 0.35);
  position: relative;
  display: grid;
  grid-template-columns: clamp(4.5rem, 8vw, 7rem) 1fr clamp(100px, 12vw, 140px);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.6rem, 3.6vh, 2.6rem) 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: transform 0.45s var(--ease-slam), background 0.45s;
}
.arsenal-row[data-accent="green"] { --accent: var(--green); --accent-soft: rgba(72, 255, 106, 0.35); }
.arsenal-row[data-accent="red"]   { --accent: var(--red);   --accent-soft: rgba(255, 36, 64, 0.35); }
.arsenal-row[data-accent="gold"]  { --accent: var(--gold);  --accent-soft: rgba(216, 178, 110, 0.35); }
.arsenal-row:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, rgba(244, 243, 238, 0.025), transparent 70%);
}
.arsenal-num {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding-top: 0.5em;
  text-shadow: 0 0 18px var(--accent-soft);
}
.arsenal-main h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.arsenal-main > p {
  color: var(--ink-dim);
  max-width: 60ch;
  margin-bottom: 1rem;
}
.chip-row {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 0.45rem;
}
.chip-row li {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.42em 0.75em;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  transition: color 0.3s, border-color 0.3s;
}
.arsenal-row:hover .chip-row li { color: var(--ink); border-color: var(--accent-soft); }
.chip-row .chip-gold { color: var(--gold); border-color: rgba(216, 178, 110, 0.4); }

/* per-row animated viz — paused until revealed */
.arsenal-viz {
  justify-self: end;
  align-self: center;
  display: flex; align-items: flex-end; gap: 5px;
  height: 40px;
  opacity: 0.85;
}
.arsenal-viz i { display: block; background: var(--accent); }
.arsenal-viz svg { width: 96px; height: 40px; }
.viz-chase i {
  width: 10px; height: 10px; border-radius: 2px;
  align-self: center;
  animation: chase 1.8s steps(1) infinite paused;
}
.viz-chase i:nth-child(2) { animation-delay: 0.36s; }
.viz-chase i:nth-child(3) { animation-delay: 0.72s; }
.viz-chase i:nth-child(4) { animation-delay: 1.08s; }
.viz-chase i:nth-child(5) { animation-delay: 1.44s; }
@keyframes chase { 0% { opacity: 1; box-shadow: 0 0 12px var(--accent-soft); } 20% { opacity: 0.18; box-shadow: none; } 100% { opacity: 0.18; } }
.viz-fan { align-items: center; }
.viz-fan i {
  width: 46px; height: 1.5px;
  transform-origin: left center;
  position: absolute;
  animation: fan-sweep 3.2s ease-in-out infinite alternate paused;
}
.viz-fan { position: relative; width: 60px; }
.viz-fan i:nth-child(1) { transform: rotate(-26deg); }
.viz-fan i:nth-child(2) { transform: rotate(-8deg); animation-delay: 0.3s; }
.viz-fan i:nth-child(3) { transform: rotate(12deg); animation-delay: 0.6s; }
@keyframes fan-sweep { to { transform: rotate(-40deg); } }
.viz-grid { display: grid; grid-template-columns: repeat(3, 8px); gap: 6px; align-self: center; }
.viz-grid i {
  width: 8px; height: 8px; border-radius: 1px;
  opacity: 0.2;
  animation: grid-pulse 2.4s ease-in-out infinite paused;
}
.viz-grid i:nth-child(2n) { animation-delay: 0.5s; }
.viz-grid i:nth-child(3n) { animation-delay: 1s; }
.viz-grid i:nth-child(5), .viz-grid i:nth-child(7) { animation-delay: 1.5s; }
@keyframes grid-pulse { 40% { opacity: 1; box-shadow: 0 0 8px var(--accent-soft); } }
.viz-wave i {
  width: 5px; border-radius: 1px;
  height: 30%;
  animation: wave 1.5s ease-in-out infinite alternate paused;
}
.viz-wave i:nth-child(1) { animation-delay: 0s; }
.viz-wave i:nth-child(2) { animation-delay: 0.12s; }
.viz-wave i:nth-child(3) { animation-delay: 0.24s; }
.viz-wave i:nth-child(4) { animation-delay: 0.36s; }
.viz-wave i:nth-child(5) { animation-delay: 0.48s; }
.viz-wave i:nth-child(6) { animation-delay: 0.6s; }
.viz-wave i:nth-child(7) { animation-delay: 0.72s; }
@keyframes wave { from { height: 18%; opacity: 0.45; } to { height: 100%; opacity: 1; } }
.viz-arc svg path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
}
.arsenal-row.revealed .viz-arc svg path { animation: arc-draw 2.2s var(--ease-slam) 0.3s forwards; }
@keyframes arc-draw { to { stroke-dashoffset: 0; } }
.arsenal-row.revealed .arsenal-viz i { animation-play-state: running; }

/* scan line that draws in on reveal */
.arsenal-scan {
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 80%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-slam) 0.15s;
  opacity: 0.55;
}
.arsenal-row.revealed .arsenal-scan { transform: scaleX(1); }

/* ---------- founder ---------- */
.founder { background: var(--bg); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.founder::before {
  content: "";
  position: absolute; bottom: -18%; left: -14%;
  width: 62%; height: 58%;
  background: radial-gradient(ellipse, rgba(72, 255, 106, 0.045), transparent 65%);
  pointer-events: none;
  animation: drift 30s ease-in-out infinite alternate;
}
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: 0 clamp(1.2rem, 3vw, 2.5rem) clamp(2rem, 5vh, 3.5rem);
  position: relative; z-index: 1;
}
.founder-copy .feature-lede strong { font-weight: 700; }
.founder-radiant {
  color: var(--ink-dim);
  max-width: 58ch;
  margin-bottom: 1.6rem;
}
.founder-radiant a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 178, 110, 0.45);
  padding-bottom: 0.06em;
  transition: border-color 0.25s, text-shadow 0.25s;
}
.founder-radiant a:hover {
  border-color: var(--gold);
  text-shadow: 0 0 18px rgba(216, 178, 110, 0.45);
}
.founder-tools { margin-top: 0.2rem; }
.founder-tools li { transition: color 0.3s, border-color 0.3s; }
.founder-tools li:hover { color: var(--ink); border-color: rgba(38, 230, 255, 0.4); }
.founder-card {
  position: sticky;
  top: clamp(4.5rem, 10vh, 7rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-2);
}
.founder-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.video-crossfade-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-crossfade-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* keep the panel hover zoom/filter transitions alive alongside the fade —
     this rule wins the cascade over .panel-media video */
  transition: opacity 0.8s ease-in-out, transform 0.9s var(--ease-slam), filter 0.6s;
}
.founder-cap {
  display: flex; align-items: center;
  padding: 0.9em 1.1em;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
}
.founder-strip {
  position: relative;
  margin: 0 clamp(1.2rem, 3vw, 2.5rem) clamp(4rem, 9vh, 7rem);
  height: clamp(280px, 52vh, 560px);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.founder-strip video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  /* keep the subject's face in view when the wide crop trims the frame */
  object-position: 50% 28%;
}
.founder-strip-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4, 5, 5, 0.85), rgba(4, 5, 5, 0.08) 55%);
}
.founder-strip-cap {
  position: absolute; left: clamp(1.2rem, 2.4vw, 2rem); bottom: 1.3rem;
  display: inline-flex; align-items: center; gap: 0.7em;
  color: var(--cyan);
  letter-spacing: 0.22em;
  font-size: 0.66rem;
}

/* ---------- live performance ---------- */
.live { background: var(--bg-2); border-top: 1px solid var(--line); }
.live-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.2rem, 3vw, 2.5rem);
}
.live-side { display: grid; gap: 1.1rem; align-content: center; }
.live-media {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-2);
}
.live-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.live-tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  align-content: center;
}
.live-tags li {
  border: 1px solid var(--line);
  border-radius: 2em;
  padding: 0.7em 1.3em;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  transition: color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.live-tags li:hover {
  color: var(--ink); border-color: var(--red);
  box-shadow: 0 0 22px rgba(255, 36, 64, 0.25);
}

/* ---------- footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.footer-media, .footer-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.footer-media video { object-fit: cover; }
.footer-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 5, 5, 0.96) 0%, rgba(4, 5, 5, 0.72) 45%, rgba(4, 5, 5, 0.88) 100%);
}
.footer::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 45%;
  background: radial-gradient(ellipse at 50% 130%, rgba(38, 230, 255, 0.13), transparent 65%);
  pointer-events: none;
}
.footer .btn-big { animation: cta-glow 4.5s ease-in-out infinite; }
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(38, 230, 255, 0); }
  50% { box-shadow: 0 0 34px rgba(38, 230, 255, 0.22); }
}
.footer-inner { padding: clamp(5rem, 14vh, 9rem) clamp(1.2rem, 3vw, 2.5rem) 2rem; position: relative; z-index: 1; }
.footer-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10.5vw, 10.5rem);
  line-height: 0.94;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}
.footer-actions {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.footer-socials { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-socials a {
  color: var(--ink-dim); text-decoration: none; letter-spacing: 0.18em;
  transition: color 0.25s;
}
.footer-socials a:hover { color: var(--green); }
.footer-line { color: var(--ink-dim); max-width: 62ch; margin-bottom: 3.5rem; }
.footer-meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  color: rgba(244, 243, 238, 0.4);
  letter-spacing: 0.16em;
  font-size: 0.64rem;
}
#footerTc { color: var(--green); }

/* ---------- micro-animation layer ---------- */
.section-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(38, 230, 255, 0.08) 55%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-slam) 0.25s;
}
.section-head.revealed .section-rule { transform: scaleX(1); }

.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  left: -70%; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(244, 243, 238, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }

.panel {
  transition: transform 0.5s var(--ease-slam), border-color 0.4s, box-shadow 0.5s,
              opacity 0.7s var(--ease-slam);
}
.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 243, 238, 0.3);
  box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.9);
}

.cue-marker {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(38, 230, 255, 0.6);
  margin-right: 0.7em;
  animation: rec-pulse 2.2s ease-in-out infinite;
}
.cue-hot span:first-child { animation: rec-pulse 2.2s ease-in-out infinite; }

/* reveal stagger is timed in JS so hover transitions stay instant */

/* ---------- cascade text reveals: eyebrow → header → body → support ---------- */
.cascade { opacity: 1; transform: none; }
.cascade > *:not(.section-rule) {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(7px);
  transition: opacity 0.6s var(--ease-slam), transform 0.6s var(--ease-slam), filter 0.6s var(--ease-slam);
}
.cascade.revealed > *:not(.section-rule) { opacity: 1; transform: none; filter: none; }
/* masked wipe reveal for the big titles — concert-reel style */
.cascade > .section-title,
.cascade > .feature-title,
.cascade > .footer-title {
  filter: none;
  transform: translateY(34px);
  clip-path: inset(-60% -30% 102% -30%);
  transition: opacity 0.75s var(--ease-slam), transform 0.75s var(--ease-slam),
              clip-path 0.75s var(--ease-slam);
}
.cascade.revealed > .section-title,
.cascade.revealed > .feature-title,
.cascade.revealed > .footer-title {
  transform: none;
  clip-path: inset(-60% -30% -60% -30%);
}
.cascade.revealed > *:nth-child(1) { transition-delay: 0s; }
.cascade.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.cascade.revealed > *:nth-child(3) { transition-delay: 0.26s; }
.cascade.revealed > *:nth-child(4) { transition-delay: 0.38s; }
.cascade.revealed > *:nth-child(5) { transition-delay: 0.48s; }
.cascade.revealed > *:nth-child(n+6) { transition-delay: 0.58s; }

/* ---------- footer email line ---------- */
.footer-email {
  display: inline-block;
  color: var(--ink-dim);
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: 0.64rem;
  border-bottom: 1px solid rgba(244, 243, 238, 0.18);
  padding-bottom: 0.4em;
  margin-bottom: 2.6rem;
  transition: color 0.25s, border-color 0.25s;
}
.footer-email:hover { color: var(--cyan); border-color: rgba(38, 230, 255, 0.5); }

/* ---------- contact modal ---------- */
body.modal-open { overflow: hidden; }
.contact-overlay {
  position: fixed; inset: 0; z-index: 1300;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(0.8rem, 3vw, 2.5rem);
  visibility: hidden; opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
}
.contact-overlay.open { visibility: visible; opacity: 1; }
.contact-backdrop {
  position: absolute; inset: 0;
  background: rgba(2, 3, 3, 0.88);
  backdrop-filter: blur(10px);
}
.contact-panel {
  position: relative;
  width: min(820px, 100%);
  max-height: 92vh; max-height: 92svh;
  overflow-y: auto;
  background: linear-gradient(180deg, #0b0d0d, #070808);
  border: 1px solid rgba(244, 243, 238, 0.16);
  border-radius: 10px;
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  transform: translateY(26px) scale(0.985);
  transition: transform 0.45s var(--ease-slam);
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.9), 0 0 60px -30px rgba(38, 230, 255, 0.25);
}
.contact-overlay.open .contact-panel { transform: translateY(0) scale(1); }
.contact-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(4, 5, 5, 0.7);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 2em;
  padding: 0.6em 1.1em;
  letter-spacing: 0.16em;
  transition: border-color 0.25s, color 0.25s;
}
.contact-close:hover { border-color: var(--red); color: var(--red); }
.contact-head { margin-bottom: 1.6rem; }
.contact-head h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  margin: 0.5rem 0 0.8rem;
}
.contact-sub { color: var(--ink-dim); max-width: 52ch; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-wide { grid-column: 1 / -1; }
.field-label { color: var(--ink-dim); letter-spacing: 0.2em; font-size: 0.6rem; }
.field-label i { color: var(--cyan); font-style: normal; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(244, 243, 238, 0.045);
  border: 1px solid rgba(244, 243, 238, 0.16);
  border-radius: 5px;
  padding: 0.75em 0.9em;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  resize: vertical;
  min-width: 0;
}
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 49%, var(--ink-dim) 50%, transparent 62%); background-repeat: no-repeat; background-position: right 0.9em center; background-size: 0.6em 0.6em; }
.field select option { background: #0b0d0d; color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(244, 243, 238, 0.28); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(38, 230, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(38, 230, 255, 0.25), 0 0 22px -6px rgba(38, 230, 255, 0.35);
  background: rgba(244, 243, 238, 0.06);
}
.field.invalid input, .field.invalid textarea {
  border-color: rgba(255, 36, 64, 0.65);
  box-shadow: 0 0 0 1px rgba(255, 36, 64, 0.25);
}
.field-err { color: var(--red); letter-spacing: 0.16em; font-size: 0.58rem; min-height: 1em; }

.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-actions {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  margin-top: 1.4rem;
}
.form-status { letter-spacing: 0.14em; font-size: 0.62rem; color: var(--green); }
.form-status.is-error { color: var(--red); }
.form-alt { margin-top: 1.3rem; color: var(--ink-dim); letter-spacing: 0.16em; font-size: 0.6rem; }
.form-alt a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.form-alt a:hover { color: var(--cyan); border-color: rgba(38, 230, 255, 0.5); }

.form-success { text-align: center; padding: clamp(1.5rem, 5vw, 3rem) 0 1rem; }
.form-success .tick { width: 12px; height: 12px; border-radius: 2px; display: inline-block; margin-bottom: 1.2rem; }
.form-success h4 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 0.8rem;
}
.form-success p { color: var(--ink-dim); max-width: 46ch; margin: 0 auto 1.6rem; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .panels { grid-template-columns: 1fr; }
  .feature-inner { grid-template-columns: 1fr; }
  .cue-sheet { justify-self: start; }
  .live-inner { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-media { order: -1; }
  .founder-card { position: static; }
  .arsenal-row { grid-template-columns: clamp(3.4rem, 8vw, 5rem) 1fr; }
  .arsenal-viz { display: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { height: 340vh; }
  .manifesto { height: 300vh; }
  .hero-line { font-size: clamp(3.4rem, 15.5vw, 6rem); }
  .hero-kicker { gap: 0.5em; letter-spacing: 0.18em; padding: 0 1rem; }
  .hero-manifesto { font-size: 0.72rem; letter-spacing: 0.1em; padding: 0 0.8rem; }
  .hud-scrollhint { display: none; }
  .panel { height: 64vw; min-height: 300px; }
  .panel-desc { opacity: 1; transform: none; font-size: 0.85rem; }
  .brand-word { font-size: 0.88rem; }
  .brand-mark { width: 24px; height: 24px; }
  .arsenal-feature { height: 56vw; min-height: 260px; }
  .arsenal-feature-copy p { font-size: 0.92rem; }
  .chip-row li { font-size: 0.56rem; padding: 0.4em 0.6em; }
  .arsenal-main h3 { font-size: 1.6rem; }
  .arsenal-main > p { font-size: 0.9rem; }
  .founder-strip { height: 56vw; min-height: 220px; }
  .cue-head, .cue-row { grid-template-columns: 7.4em 2.6em 1fr; gap: 0.7em; font-size: 0.58rem; }
  .footer-actions { flex-direction: column; align-items: flex-start; }
  .btn-big { word-break: break-all; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-email { word-break: break-all; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .slam { transition: none; }
  .caret { animation: none; }
  .hud-arrow { animation: none; }
  .arsenal::before, .founder::before, .rec-dot, .cue-marker, .cue-hot span:first-child,
  .footer .btn-big, .arsenal-viz i, .mark-bowl, .mark-leg,
  .brand-word, .nav-cta::before { animation: none; }
  .nav-links a::after { transition: none; }
  .site-nav::after { transition: none; }
  .cascade > * { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; clip-path: none !important; }
  .contact-overlay, .contact-panel { transition: none; }
  .btn::after { display: none; }
  .section-rule, .arsenal-scan { transform: scaleX(1); transition: none; }
  .viz-arc svg path { stroke-dashoffset: 0; animation: none; }
  .panel:hover, .arsenal-row:hover { transform: none; }
}

/* ---------- in-app browser alert overlay ---------- */
.inapp-alert {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.inapp-alert.show {
  opacity: 1;
  visibility: visible;
}
.inapp-alert::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 3, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.inapp-card {
  position: relative;
  width: min(580px, 100%);
  background: linear-gradient(180deg, #0c0e0e, #060707);
  border: 1px solid var(--red);
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, 0.95), 0 0 50px -25px rgba(255, 36, 64, 0.3);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  text-align: center;
}
.inapp-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  margin: 0.8rem 0 1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.inapp-card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
.alert-tag {
  color: var(--red) !important;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.inapp-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: rgba(255, 36, 64, 0.05);
  border: 1px dashed rgba(255, 36, 64, 0.22);
  padding: 1.1rem;
  border-radius: 4px;
  text-align: left;
  margin-bottom: 1.8rem;
  font-size: 0.72rem;
}
.inapp-steps span {
  color: var(--ink);
  letter-spacing: 0.08em;
}
.inapp-actions {
  display: flex;
  justify-content: center;
}
.btn-dismiss {
  font-size: 0.68rem !important;
  padding: 0.8em 1.6em !important;
}
