/* ============================================================
   ViewAlyzer — pitch landing page
   Design system: IBM Plex Sans / Mono, dark canvas, #ff7800 accent
   ============================================================ */

:root {
  --bg:       #0b0b0c;
  --bg-2:     #110f10;
  --panel:    #151517;
  --panel-2:  #1b1b1e;
  --panel-3:  #202024;
  --line:     #262629;
  --line-2:   #34343a;
  --text:     #ededee;
  --soft:     #9c9ca2;
  --muted:    #65656c;

  --orange:   #ff7800;
  --orange-d: #d96400;
  --blue:     #4a90d9;
  --blue-2:   #2e9bff;
  --green:    #81c995;
  --purple:   #a855f7;
  --teal:     #2dd4bf;
  --red:      #f28b82;
  --amber:    #fdd663;

  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  --maxw: 1480px;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(255,120,0,0.32); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { position: relative; padding-block: clamp(80px, 11vw, 150px); }
.divline { border-top: 1px solid var(--line); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .idx { color: var(--orange); }
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--line-2);
  display: inline-block;
}

/* ---------- type scale ---------- */
.display {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.99;
  font-size: clamp(2.7rem, 7.4vw, 5.9rem);
  margin: 0;
}
.h1 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; font-size: clamp(2.1rem, 4.6vw, 3.5rem); margin: 0; }
.h2 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; font-size: clamp(1.5rem, 2.7vw, 2.1rem); margin: 0; }
.h3 { font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; font-size: 1.18rem; margin: 0; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.5; color: var(--soft); font-weight: 400; }
.kicker { color: var(--orange); }
.soft { color: var(--soft); }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #1a0e00; border-color: var(--orange); }
.btn-primary:hover { background: #ff8c24; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--soft); background: rgba(255,255,255,0.03); }
.btn .play {
  width: 18px; height: 18px; border-radius: 50%;
  background: currentColor; display: grid; place-items: center; flex: none;
}
.btn .play::after {
  content: ""; width: 0; height: 0;
  border-left: 6px solid var(--orange);
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
  margin-left: 2px;
}
.btn-primary .play { background: #1a0e00; }
.btn-primary .play::after { border-left-color: var(--orange); }

/* ---------- pills / badges ---------- */
.pill {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--soft);
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.dot.amber { background: var(--amber); }
.dot.blue { background: var(--blue-2); }
.dot.purple { background: var(--purple); }
.dot.live { box-shadow: 0 0 0 0 rgba(129,201,149,.6); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(129,201,149,.55); }
  70% { box-shadow: 0 0 0 7px rgba(129,201,149,0); }
  100% { box-shadow: 0 0 0 0 rgba(129,201,149,0); }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  background: rgba(11,11,12,0.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.nav.scrolled { background: rgba(11,11,12,0.86); border-bottom-color: var(--line); }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.02em; font-size: 19px; }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand .brand-logo { height: 30px; width: auto; display: block; }
.brand b { font-weight: 700; }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* ---------- logo mark ---------- */
.mark rect.scope { fill: none; stroke: var(--line-2); stroke-width: 1.5; }
.mark path.wave { fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 132px; overflow: hidden; }
.hero-variant { display: none; }
.hero-variant.active { display: block; }
/* hero content is above the fold — never gate it on the scroll observer and
   never start it from opacity 0 (entrance frame-0 must already be readable). */
html.has-js .hero .reveal { opacity: 1; transform: none; }

/* shared hero grid backdrop */
.grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 80%);
}
.glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,120,0,0.16), transparent 62%);
  filter: blur(8px);
}

/* ---- swim-lane animated trace band ---- */
.lanes { display: grid; gap: 6px; }
.lane { position: relative; height: 16px; border-radius: 3px; overflow: hidden; }
.lane-track { position: absolute; inset: 0; display: flex; gap: 8px; align-items: center; will-change: transform; }
.blk { height: 12px; border-radius: 2px; flex: none; opacity: 0.92; }
@media (prefers-reduced-motion: no-preference) {
  .lane-track.run { animation: laneSlide linear infinite; }
}
@keyframes laneSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- scope sine ---- */
.scope path { fill: none; stroke-width: 2.2; stroke-linecap: round; }
.scope .draw { stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.scope.in-view .draw { animation: drawline 2.4s ease forwards; }
@keyframes drawline { to { stroke-dashoffset: 0; } }

/* hero A — statement */
.heroA { position: relative; z-index: 2; padding-bottom: clamp(40px, 7vw, 90px); }
.heroA .tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.heroA .display { max-width: 16ch; }
.heroA .sub { margin-top: 26px; max-width: 46ch; }
.heroA .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; align-items: center; }
.hero-band { position: relative; z-index: 1; margin-top: clamp(40px, 6vw, 76px); }

/* hero B — product split */
.heroB { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1.25fr; gap: clamp(28px, 4vw, 60px); align-items: center; padding-bottom: clamp(40px,6vw,80px); }
.heroB .h1 { max-width: 14ch; }
.heroB .sub { margin-top: 22px; max-width: 44ch; }
.heroB .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
@media (max-width: 940px) { .heroB { grid-template-columns: 1fr; } }

/* hero C — problem first, with bleeding angled product shot */
.heroC { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 58ch) 1fr; align-items: center; gap: clamp(20px,3vw,56px); padding-bottom: clamp(40px,6vw,90px); }
.heroC-text { position: relative; z-index: 3; }
.heroC .display { font-size: clamp(2.15rem, 4.6vw, 3.7rem); }
.heroC .strike { color: var(--muted); }
.heroC .display .reveal-word { color: var(--orange); }
.heroC .sub { margin-top: 22px; max-width: 54ch; }
.heroC .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.heroC-media { position: relative; z-index: 1; align-self: stretch; min-height: 420px; }
.heroC-media .persp { position: absolute; left: 2%; top: 50%; width: 142%; transform: translateY(-50%); }
.heroC-media .tilt { box-shadow: 0 50px 120px -30px rgba(0,0,0,0.85), 0 0 90px -20px rgba(255,120,0,0.22); }
/* cross-fading product deck inside the frame */
.slides { position: relative; aspect-ratio: 1.9 / 1; overflow: hidden; background: var(--panel); }
.slides .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left; opacity: 0; transition: opacity .7s ease; }
.slides .slide.on { opacity: 1; }
/* fade the shot into the page on its left so text stays readable */
.heroC-media::before {
  content: ""; position: absolute; inset: -14% -2% -14% -30%; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, var(--bg) 18%, rgba(11,11,12,0.55) 42%, transparent 66%);
}
@media (max-width: 940px) {
  .heroC { grid-template-columns: 1fr; }
  .heroC .display { font-size: clamp(2.1rem, 7vw, 3.4rem); }
  .heroC-media { min-height: 0; margin-top: 38px; }
  .heroC-media .persp { position: relative; left: 0; top: 0; width: 114%; transform: none; }
  .heroC-media::before { display: none; }
}
.printf {
  font-family: var(--mono); font-size: clamp(13px,1.5vw,15px);
  color: var(--soft); margin-top: 30px;
  border-left: 2px solid var(--line-2); padding: 4px 0 4px 16px;
}
.printf .c { color: var(--muted); }
.printf .led { color: var(--red); }

/* ---------- angled / perspective product shots ---------- */
.persp { perspective: 2400px; perspective-origin: 60% 38%; }
.tilt {
  transform: rotateY(-23deg) rotateX(7deg) rotate(-1.2deg) scale(.96);
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
  border-radius: 12px;
}
.tilt.r { transform: rotateY(23deg) rotateX(7deg) rotate(1.2deg) scale(.96); }
.tilt.soft { transform: rotateY(-13deg) rotateX(5deg) rotate(-.6deg) scale(.97); }
@media (prefers-reduced-motion: no-preference) {
  .persp:hover .tilt { transform: rotateY(-9deg) rotateX(3deg) rotate(0deg) scale(1); }
  .persp:hover .tilt.r { transform: rotateY(9deg) rotateX(3deg) rotate(0deg) scale(1); }
  .persp:hover .tilt.soft { transform: rotateY(-5deg) rotateX(2deg) scale(1); }
}
@media (max-width: 940px) { .tilt, .tilt.r, .tilt.soft { transform: rotateY(0) rotateX(0) rotate(0) scale(1); } }

/* ---------- app frame ---------- */
.appframe {
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.02) inset;
}
.appframe .bar {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}
.appframe .bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); display: block; }
.appframe .bar .t { margin-left: 10px; font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.appframe img { width: 100%; display: block; }
.appframe.glowed { box-shadow: 0 40px 110px -34px rgba(255,120,0,0.28), 0 30px 80px -30px rgba(0,0,0,0.85); }

/* ---------- marquee strip ---------- */
.strip { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.strip-row { display: flex; gap: 0; padding-block: 16px; white-space: nowrap; will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  .strip-row { animation: marquee 38s linear infinite; }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip-row span {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.05em;
  color: var(--soft); padding-inline: 26px; display: inline-flex; align-items: center; gap: 26px;
}
.strip-row span::after { content: "/"; color: var(--orange); opacity: .6; }

/* ============================================================
   PROBLEM
   ============================================================ */
.prob-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 54px; }
@media (max-width: 760px) { .prob-grid { grid-template-columns: 1fr; } }
.prob {
  background: var(--panel);
  padding: 34px 32px;
  position: relative;
  transition: background .25s ease;
}
.prob:hover { background: var(--panel-2); }
.prob .n { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .1em; }
.prob h3 { margin: 16px 0 12px; font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }
.prob h3 em { font-style: normal; color: var(--orange); }
.prob p { margin: 0; color: var(--soft); font-size: 15.5px; line-height: 1.62; }
.prob .accent { position: absolute; top: 34px; right: 32px; width: 9px; height: 9px; border-radius: 50%; }

/* ============================================================
   HARDWARE TRACE WALL — the 5-figure barrier
   ============================================================ */
.wall { background: var(--bg-2); border-block: 1px solid var(--line); }
.wall-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px,5vw,80px); align-items: center; }
@media (max-width: 920px) { .wall-grid { grid-template-columns: 1fr; } }
.bignum {
  font-family: var(--mono); font-weight: 600;
  font-size: clamp(3.2rem, 9vw, 7rem); line-height: 0.92;
  letter-spacing: -0.04em; color: var(--text);
}
.bignum .unit { color: var(--orange); }
.strike-price { position: relative; display: inline-block; color: var(--muted); }
.strike-price::after { content: ""; position: absolute; left: -4px; right: -4px; top: 52%; height: 3px; background: var(--red); transform: rotate(-7deg); }
.price-rows { display: grid; gap: 14px; margin-top: 8px; }
.price-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); }
.price-row .name { font-weight: 600; }
.price-row .name small { display: block; font-weight: 400; color: var(--muted); font-family: var(--mono); font-size: 11.5px; margin-top: 3px; letter-spacing: .04em; }
.price-row .amt { font-family: var(--mono); font-size: 1.15rem; color: var(--soft); text-align: right; }
.price-row.us { border-color: rgba(255,120,0,0.5); background: linear-gradient(180deg, rgba(255,120,0,0.07), transparent); }
.price-row.us .amt { color: var(--orange); }
.barwall { display: flex; align-items: flex-end; gap: 18px; height: 240px; margin-top: 10px; }
.barwall .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; height: 100%; justify-content: flex-end; }
.barwall .bar { width: 100%; border-radius: 6px 6px 0 0; position: relative; }
.barwall .bar.incumbent { background: repeating-linear-gradient(135deg, var(--panel-3), var(--panel-3) 7px, var(--panel-2) 7px, var(--panel-2) 14px); border: 1px solid var(--line-2); }
.barwall .bar.us { background: linear-gradient(180deg, var(--orange), var(--orange-d)); }
.barwall .lbl { font-family: var(--mono); font-size: 12px; color: var(--soft); text-align: center; }
.barwall .lbl b { display: block; color: var(--text); font-size: 13px; }

/* ============================================================
   LAYERS
   ============================================================ */
.layer { padding-block: clamp(60px, 8vw, 110px); border-bottom: 1px solid var(--line); }
.layer-head { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.layer-num { font-family: var(--mono); font-size: clamp(2.4rem,5vw,4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--line-2); }
.layer-grid { display: grid; grid-template-columns: 1fr 1.18fr; gap: clamp(30px,4.5vw,66px); align-items: center; margin-top: 40px; }
.layer.rev .layer-grid { grid-template-columns: 1.18fr 1fr; }
.layer.rev .layer-media { order: -1; }
@media (max-width: 940px) { .layer-grid, .layer.rev .layer-grid { grid-template-columns: 1fr; } .layer.rev .layer-media { order: 0; } }
.layer .tag { color: var(--lc, var(--orange)); }
.feat-list { display: grid; gap: 13px; margin-top: 26px; padding: 0; list-style: none; }
.feat-list li { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; color: var(--soft); font-size: 15.5px; line-height: 1.5; }
.feat-list .tick { width: 18px; height: 18px; margin-top: 2px; border-radius: 5px; border: 1px solid var(--lc, var(--orange)); display: grid; place-items: center; flex: none; }
.feat-list .tick::after { content: ""; width: 5px; height: 9px; border: solid var(--lc, var(--orange)); border-width: 0 2px 2px 0; transform: rotate(45deg) translateY(-1px); }
.layer .killer { margin-top: 26px; padding: 16px 18px; border-left: 2px solid var(--lc, var(--orange)); background: var(--panel); border-radius: 0 8px 8px 0; }
.layer .killer b { color: var(--text); }

/* flame graph motif */
.flame { display: grid; gap: 4px; padding: 18px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; }
.etm-banner { width: 100%; display: block; border: 1px solid var(--line); border-radius: 12px; }
.flame .row { display: flex; gap: 4px; }
.flame .cell { height: 26px; border-radius: 3px; font-family: var(--mono); font-size: 10.5px; color: rgba(0,0,0,0.7); display: flex; align-items: center; padding-inline: 8px; overflow: hidden; white-space: nowrap; }

/* ============================================================
   WHY NOW / WHY US
   ============================================================ */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 50px; }
@media (max-width: 760px) { .cols-2 { grid-template-columns: 1fr; } }
.cell-card { background: var(--panel); padding: 30px 30px; }
.cell-card:hover { background: var(--panel-2); }
.cell-card .ci { font-family: var(--mono); font-size: 12px; color: var(--orange); letter-spacing: .1em; }
.cell-card h3 { margin: 14px 0 10px; font-size: 1.22rem; font-weight: 600; letter-spacing: -0.015em; }
.cell-card p { margin: 0; color: var(--soft); font-size: 15px; line-height: 1.6; }

/* ============================================================
   STAT BAND
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--bg); padding: 40px 28px; text-align: left; }
.stat .v { font-family: var(--mono); font-weight: 600; font-size: clamp(2rem,3.6vw,3rem); letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.stat .v .u { color: var(--orange); }
.stat .k { margin-top: 12px; color: var(--soft); font-size: 13.5px; line-height: 1.45; }

/* ============================================================
   STATUS TABLE
   ============================================================ */
.status-table { margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.strow { display: grid; grid-template-columns: 1.1fr 2fr; gap: 20px; padding: 22px 26px; align-items: center; border-bottom: 1px solid var(--line); background: var(--panel); }
.strow:last-child { border-bottom: none; }
.strow:hover { background: var(--panel-2); }
.strow .comp { font-weight: 600; font-size: 1.02rem; }
.strow .comp small { display: block; font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: .04em; }
.strow .desc { color: var(--soft); font-size: 14.5px; line-height: 1.5; }
.strow .st { justify-self: end; }
.badge { font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; padding: 6px 12px; border-radius: 100px; white-space: nowrap; border: 1px solid; display: inline-flex; align-items: center; gap: 7px; }
.badge.ship { color: var(--green); border-color: rgba(129,201,149,.4); background: rgba(129,201,149,.08); }
.badge.built { color: var(--blue-2); border-color: rgba(46,155,255,.4); background: rgba(46,155,255,.08); }
.badge.valid { color: var(--amber); border-color: rgba(253,214,99,.4); background: rgba(253,214,99,.08); }
@media (max-width: 760px) { .strow { grid-template-columns: 1fr; gap: 10px; } .strow .st { justify-self: start; } }

/* ============================================================
   CLOSING
   ============================================================ */
.closer { position: relative; overflow: hidden; text-align: center; padding-block: clamp(90px,12vw,170px); }
.closer .glow { left: 50%; top: 20%; transform: translateX(-50%); width: 900px; height: 600px; }
.closer .display { max-width: 18ch; margin-inline: auto; position: relative; z-index: 2; }
.closer .lead { max-width: 52ch; margin: 28px auto 0; position: relative; z-index: 2; }
.closer .cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 40px; }
.footer-in { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer .brand { font-size: 17px; }
.footer .brand-logo { height: 26px; }
.footer .meta { font-family: var(--mono); font-size: 12.5px; color: var(--muted); letter-spacing: .03em; }

/* ============================================================
   reveals — content is ALWAYS visible, with NO hidden starting state.
   Rationale: this design must render in contexts that freeze the document
   timeline (IntersectionObserver, scroll events, rAF, setInterval AND CSS
   animation progression can all be paused when the doc is treated as
   offscreen). Anything that starts at opacity 0 and relies on time/scroll to
   un-hide risks staying blank. So the .reveal class is now purely semantic;
   entrance polish lives only in decoration that never gates readability
   (the animated trace lanes, the marquee, hover states).
   ============================================================ */
.reveal { opacity: 1; transform: none; }

/* ============================================================
   hero switcher (review tool)
   ============================================================ */
.switcher {
  position: fixed; z-index: 80; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  background: rgba(20,20,22,0.92); backdrop-filter: blur(12px);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 6px 8px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.9);
}
.switcher .lab { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-inline: 8px 4px; }
.switcher button {
  font-family: var(--mono); font-size: 12px; letter-spacing: .03em;
  border: 1px solid transparent; background: transparent; color: var(--soft);
  padding: 7px 14px; border-radius: 100px; cursor: pointer; transition: all .18s ease;
}
.switcher button:hover { color: var(--text); }
.switcher button.on { background: var(--orange); color: #1a0e00; font-weight: 600; }

/* ---------- utility ---------- */
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.center { text-align: center; }
.maxw-prose { max-width: 62ch; }
