/* ============================================================
   NuMoon Landing v2 — combined Cinemascope + Constellation
   Uses real brand tokens from NuMoon/website/src/app/globals.css
   ============================================================ */

:root {
  /* surfaces */
  --nm-bg:              #FAFAFA;
  --nm-surface:         #FFFFFF;
  --nm-surface-2:       #F4F5F7;
  --nm-surface-sunken:  #F0F2F5;
  --nm-bg-cream:        #FDFCF7;

  /* navy ink */
  --nm-fg:              #0E1620;
  --nm-fg-2:            #1F2935;
  --nm-fg-muted:        #5C6471;
  --nm-fg-dim:          #8E96A4;

  /* champagne gold (atmospheric) + bronze (legible on white) */
  --nm-gold:            #D9C184;
  --nm-gold-hover:      #E6D199;
  --nm-gold-text:       #8B6E1F;
  --nm-gold-muted:      rgba(217, 193, 132, 0.20);
  --nm-gold-glow:       rgba(217, 193, 132, 0.45);

  /* logo slates */
  --nm-slate-1:         #102A43;
  --nm-slate-2:         #334E68;
  --nm-slate-3:         #627D98;
  --nm-slate-4:         #9FB3C8;
  --nm-slate-5:         #BCCCDC;
  --nm-slate-6:         #D9E2EC;

  /* borders */
  --nm-border:          rgba(14, 22, 33, 0.10);
  --nm-border-strong:   rgba(14, 22, 33, 0.18);
  --nm-border-subtle:   rgba(14, 22, 33, 0.05);

  /* semantic */
  --nm-success:         #2F8C4F;
  --nm-warning:         #B8922E;
  --nm-danger:          #B33D27;

  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
}

.dark-section {
  --nm-bg:              #131C27;
  --nm-surface:         #1F2935;
  --nm-surface-2:       #27323F;
  --nm-surface-sunken:  #0E1621;
  --nm-border:          rgba(155, 165, 181, 0.18);
  --nm-border-strong:   rgba(155, 165, 181, 0.32);
  --nm-border-subtle:   rgba(237, 239, 243, 0.06);
  --nm-fg:              #EDEFF3;
  --nm-fg-2:            #D6DAE2;
  --nm-fg-muted:        #9BA5B5;
  --nm-fg-dim:          #6A7485;
  --nm-gold-text:       #D9C184;
  --nm-gold-muted:      rgba(217, 193, 132, 0.18);
  --nm-gold-glow:       rgba(217, 193, 132, 0.30);
  background: var(--nm-bg);
  color: var(--nm-fg);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--nm-bg); color: var(--nm-fg);
  font-family: var(--sans);
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 36px; }
.container-narrow { max-width: 1040px; margin: 0 auto; padding: 0 36px; }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--nm-fg-muted);
}
.eyebrow.gold { color: var(--nm-gold-text); }
.dark-section .eyebrow.gold { color: var(--nm-gold-text); }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--nm-gold);
  box-shadow: 0 0 0 0 var(--nm-gold-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--nm-gold-glow); }
  70%  { box-shadow: 0 0 0 12px rgba(217,193,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,193,132,0); }
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; color: var(--nm-fg); }
.display {
  font-family: var(--display);
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.034em;
  font-weight: 700;
}
.display em {
  font-family: var(--serif);
  font-weight: 400; font-style: italic;
  color: var(--nm-gold-text);
  letter-spacing: -0.01em;
}
.dark-section .display em { color: var(--nm-gold); }
.h1 { font-family: var(--display); font-size: clamp(32px, 3.8vw, 54px); line-height: 1.04; letter-spacing: -0.025em; font-weight: 700; }
.h1 em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--nm-gold-text); }
.dark-section .h1 em { color: var(--nm-gold); }
.h2 { font-family: var(--display); font-size: clamp(26px, 2.8vw, 38px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
.h2 em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--nm-gold-text); }
.dark-section .h2 em { color: var(--nm-gold); }
.h3 { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.lead {
  font-size: 19px; line-height: 1.55;
  color: var(--nm-fg-muted); max-width: 62ch;
}
.muted { color: var(--nm-fg-muted); }
.dim { color: var(--nm-fg-dim); }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.small { font-size: 14px; }
.tiny { font-size: 13px; }

.gold-underline {
  background-image: linear-gradient(transparent 60%, rgba(217,193,132,0.45) 60%);
  padding: 0 2px;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nm-border);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 36px;
  max-width: 1320px; margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--nm-fg);
}
.brand .mark { width: 26px; height: 26px; }
.brand .tag { font-family: var(--mono); font-size: 11px; color: var(--nm-fg-muted); margin-left: 2px; }
.nav-links {
  display: flex; gap: 24px; margin-left: 22px;
}
.nav-links a {
  font-size: 14px; color: var(--nm-fg-muted); font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--nm-fg); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }

@media (max-width: 920px) { .nav-links { display: none; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--nm-border-strong);
  font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  background: var(--nm-surface);
  color: var(--nm-fg);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.12s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover { background: var(--nm-surface-2); }
.btn.primary {
  background: var(--nm-fg); color: var(--nm-surface);
  border-color: var(--nm-fg);
}
.btn.primary:hover { background: var(--nm-fg-2); }
.btn.gold {
  background: var(--nm-gold); color: #2A2105;
  border-color: var(--nm-gold);
  box-shadow: 0 2px 18px -4px var(--nm-gold-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn.gold:hover { background: var(--nm-gold-hover); }
.btn.ghost { background: transparent; border-color: var(--nm-border); }
.btn.ghost:hover { background: var(--nm-surface-2); }
.btn.lg { height: 50px; padding: 12px 22px; font-size: 15px; border-radius: 12px; }
.dark-section .btn { background: rgba(255,255,255,0.06); color: var(--nm-fg); border-color: var(--nm-border-strong); }
.dark-section .btn:hover { background: rgba(255,255,255,0.10); }
.dark-section .btn.primary { background: var(--nm-surface); color: #0E1620; border-color: var(--nm-surface); }
/* Gold CTA wins inside dark sections too */
.btn.gold, .dark-section .btn.gold {
  background: var(--nm-gold); color: #2A2105;
  border-color: var(--nm-gold);
  box-shadow: 0 2px 18px -4px var(--nm-gold-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn.gold:hover, .dark-section .btn.gold:hover { background: var(--nm-gold-hover); }
.btn .arrow { transition: transform 0.18s; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Chips / pills / cards
   ============================================================ */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--nm-border);
  background: var(--nm-surface);
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--nm-fg-muted);
}
.chip.gold {
  border-color: rgba(217,193,132,0.5);
  background: rgba(217,193,132,0.10);
  color: var(--nm-gold-text);
}
.dark-section .chip.gold { color: var(--nm-gold); background: rgba(217,193,132,0.10); }
.chip strong { color: var(--nm-fg); font-weight: 600; }
.dark-section .chip strong { color: var(--nm-fg); }

/* ============================================================
   HERO — Cinemascope, light edition
   ============================================================ */
.hero {
  position: relative;
  padding: 36px 0 32px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: -10% -10% auto -10%; height: 80%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(217,193,132,0.16), transparent 60%),
    radial-gradient(ellipse at 18% 30%, rgba(16,42,67,0.07), transparent 55%),
    radial-gradient(ellipse at 82% 10%, rgba(98,125,152,0.06), transparent 50%);
  pointer-events: none; z-index: 0;
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-2%, 1%, 0); }
}
.hero-inner { position: relative; z-index: 1; }
.hero .eyebrow { margin-bottom: 16px; }
.hero h1 { font-family: var(--display); }
.hero .lead {
  margin-top: 14px;
  font-size: 19px; line-height: 1.5;
  max-width: 72ch;
}
.hero .lead strong { color: var(--nm-fg); font-weight: 600; }
.hero .cta-row {
  margin-top: 22px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.hero .meta {
  margin-top: 16px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px; color: var(--nm-fg-muted);
  letter-spacing: 0.04em;
}

/* Scarcity / live-counter chip — sits next to CTA */
.hero .scarcity {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 10px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  border: 1px solid var(--nm-border-strong);
  background: var(--nm-surface);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--nm-fg-muted);
}
.hero .scarcity .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--nm-fg); color: var(--nm-gold);
  padding: 4px 10px; border-radius: 999px;
  font-weight: 600;
}
.hero .scarcity .badge .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--nm-gold);
  animation: pulse 2s ease-in-out infinite;
}
.hero .scarcity strong { color: var(--nm-fg); font-weight: 600; }

/* Live counter — "$ found across NuMoon, last hour" */
.live-counter {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  border: 1px solid var(--nm-border);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--nm-surface), var(--nm-surface-2));
  font-family: var(--mono); font-size: 12px;
  color: var(--nm-fg-muted); letter-spacing: 0.06em;
}
.live-counter .pulse-dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: #2F8C4F;
  box-shadow: 0 0 0 0 rgba(47,140,79,0.5);
  animation: pulseGreen 1.8s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(47,140,79,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(47,140,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,140,79,0); }
}
.live-counter .v {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; color: var(--nm-fg);
  letter-spacing: -0.02em;
}
.live-counter .v .accent { color: var(--nm-gold-text); }
.live-counter .label { color: var(--nm-fg-muted); }
.live-counter .delta {
  font-family: var(--mono); font-size: 11px; color: var(--nm-success);
}

/* Social proof strip — typographic, no fake logos */
.proof-strip {
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--nm-border);
  border-bottom: 1px solid var(--nm-border);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.proof-strip .label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--nm-fg-dim);
  flex: 0 0 auto;
}
.proof-strip .label .proof-dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--nm-gold);
  box-shadow: 0 0 8px var(--nm-gold);
  animation: pulse 2s ease-in-out infinite;
}
.proof-strip .proof-names {
  display: flex; flex-wrap: wrap; align-items: baseline;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--nm-fg-2);
}
.proof-strip .proof-names span {
  position: relative;
  padding: 0 14px;
}
.proof-strip .proof-names span:first-child { padding-left: 0; }
.proof-strip .proof-names span + span::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 3px; height: 3px; border-radius: 999px;
  background: var(--nm-border-strong);
  transform: translate(-1.5px, -50%);
}
.proof-strip .proof-names .more {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--nm-fg-dim);
}

/* Proof logos — real brand marks, monochrome by default, color on hover */
.proof-strip .proof-logos {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 32px;
  row-gap: 18px;
}
.proof-strip .proof-logos img {
  height: 22px; width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.proof-strip .proof-logos img:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.proof-strip .proof-logos img[alt="Mercury"] { height: 18px; }
.proof-strip .proof-logos img[alt="Klaviyo"] { height: 20px; }
.proof-strip .proof-logos img[alt="QuickBooks"] { height: 26px; }
.proof-strip .proof-logos .more {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--nm-fg-dim);
  align-self: center;
}
[data-theme="dark"] .proof-strip .proof-logos img {
  /* in dark mode, lift slightly so colored marks read on dark bg */
  filter: drop-shadow(0 0 0.5px rgba(255,255,255,0.4));
}
.hero .meta .item { display: inline-flex; align-items: center; gap: 8px; }
.hero .meta .item::before {
  content: ''; width: 5px; height: 5px; border-radius: 999px; background: var(--nm-gold);
}

/* Cinematic product window */
.cinema-shot {
  margin-top: 28px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #131C27;
  border: 1px solid var(--nm-border);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -30px rgba(14,22,33,0.25),
    0 90px 120px -60px rgba(14,22,33,0.30),
    0 0 80px -20px var(--nm-gold-glow);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.cinema-shot .product-img {
  width: 100%; display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover; object-position: top center;
  background: #0E1620;
}
.cinema-shot .live-overlay {
  position: absolute; top: 56px; right: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(19, 28, 39, 0.65);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(217,193,132,0.40);
  color: #EDEFF3;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  z-index: 3;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
}
.cinema-shot .live-overlay strong { color: var(--nm-gold); font-weight: 600; }
.cinema-shot .scan-line {
  position: absolute; left: 0; right: 0; top: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--nm-gold-glow), transparent);
  filter: blur(1px);
  opacity: 0;
  pointer-events: none;
}
.cinema-shot:hover .scan-line { animation: scanline 2.6s ease-in-out infinite; }
@keyframes scanline {
  0%   { top: 6%;  opacity: 0; }
  25%  { opacity: 0.9; }
  100% { top: 96%; opacity: 0; }
}
.cinema-shot::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,193,132,0.10), transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.cinema-shot .title-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--nm-border);
  background: var(--nm-surface-2);
  font-family: var(--mono); font-size: 12px; color: var(--nm-fg-muted);
}
.cinema-shot .title-bar .lights { display: flex; gap: 6px; }
.cinema-shot .title-bar .lights span { width: 10px; height: 10px; border-radius: 999px; background: #E6E6EA; border: 1px solid var(--nm-border); }
.cinema-shot .title-bar .url { display: inline-flex; align-items: center; gap: 6px; padding: 2px 10px; background: var(--nm-surface); border-radius: 999px; border: 1px solid var(--nm-border); }
.cinema-shot .title-bar .url::before { content: '🔒'; opacity: 0.5; font-size: 10px; }
.cinema-shot .title-bar .menu { margin-left: auto; }

.shot-body {
  position: relative;
  padding: 28px 28px 24px;
  display: grid; grid-template-columns: 220px 1fr 280px; gap: 18px;
  min-height: 480px;
}
@media (max-width: 920px) {
  .shot-body { grid-template-columns: 1fr; min-height: 0; }
}
.shot-side {
  border: 1px solid var(--nm-border);
  border-radius: 12px;
  padding: 14px;
  background: var(--nm-surface-2);
  display: flex; flex-direction: column; gap: 6px;
}
.shot-side .nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--nm-fg-muted);
}
.shot-side .nav-item.active {
  background: var(--nm-surface); color: var(--nm-fg);
  border: 1px solid var(--nm-border); font-weight: 600;
}
.shot-side .nav-item .ico {
  width: 18px; height: 18px;
  border: 1.4px solid currentColor; border-radius: 4px; opacity: 0.7;
}
.shot-side hr { border: none; border-top: 1px solid var(--nm-border); margin: 6px 0; }
.shot-side .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nm-fg-dim); padding: 4px 10px; }

.shot-main { display: flex; flex-direction: column; gap: 14px; }
.shot-main .crumbs { font-family: var(--mono); font-size: 11px; color: var(--nm-fg-dim); letter-spacing: 0.08em; }
.shot-main .crumbs strong { color: var(--nm-fg-muted); }
.shot-main .kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.shot-main .kpi {
  border: 1px solid var(--nm-border); border-radius: 10px;
  padding: 12px 14px; background: var(--nm-surface);
}
.shot-main .kpi .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nm-fg-muted); }
.shot-main .kpi .v { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-top: 4px; }
.shot-main .kpi .v.gold { color: var(--nm-gold-text); }
.shot-main .kpi .d { font-family: var(--mono); font-size: 11px; margin-top: 4px; color: var(--nm-success); }
.shot-main .kpi .d.dn { color: var(--nm-danger); }

.shot-main .top-finding {
  border: 1px solid rgba(217,193,132,0.4);
  background:
    linear-gradient(180deg, rgba(217,193,132,0.10), rgba(217,193,132,0.02));
  border-radius: 12px; padding: 16px;
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
}
.shot-main .top-finding .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nm-gold-text); }
.shot-main .top-finding h4 { font-family: var(--display); font-size: 17px; margin-top: 4px; font-weight: 600; }
.shot-main .top-finding .why { font-size: 12px; color: var(--nm-fg-muted); margin-top: 4px; }
.shot-main .top-finding .imp { font-family: var(--display); font-weight: 700; font-size: 28px; color: var(--nm-gold-text); letter-spacing: -0.02em; }

.shot-main .chart {
  border: 1px solid var(--nm-border); border-radius: 10px;
  padding: 14px; background: var(--nm-surface);
  flex: 1;
  min-height: 140px;
  position: relative;
}
.shot-main .chart svg { width: 100%; height: 130px; }
.shot-main .chart .lbl-row { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; color: var(--nm-fg-dim); letter-spacing: 0.1em; }

.shot-right {
  border: 1px solid var(--nm-border); border-radius: 12px;
  padding: 14px; background: var(--nm-surface);
  display: flex; flex-direction: column; gap: 10px;
}
.shot-right .head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; color: var(--nm-fg-muted); letter-spacing: 0.1em;
}
.shot-right .head strong { color: var(--nm-fg); }
.shot-right .move {
  border: 1px solid var(--nm-border); border-radius: 10px; padding: 10px 12px;
  display: flex; flex-direction: column; gap: 4px;
  background: var(--nm-bg);
}
.shot-right .move .row { display: flex; justify-content: space-between; align-items: center; }
.shot-right .move .tag { font-family: var(--mono); font-size: 10px; color: var(--nm-fg-dim); letter-spacing: 0.1em; text-transform: uppercase; }
.shot-right .move .imp { font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--nm-gold-text); }
.shot-right .move .ttl { font-family: var(--display); font-weight: 600; font-size: 13px; line-height: 1.3; }
.shot-right .move .approve {
  margin-top: 4px;
  font-family: var(--mono); font-size: 10px;
  color: var(--nm-gold-text); letter-spacing: 0.08em;
}
.shot-right .move:hover { background: rgba(217,193,132,0.06); border-color: rgba(217,193,132,0.4); }

/* ============================================================
   Marquee strip (dark)
   ============================================================ */
.ticker-strip {
  background: #131C27; color: #EDEFF3;
  border-top: 1px solid rgba(155,165,181,0.18);
  border-bottom: 1px solid rgba(155,165,181,0.18);
  padding: 16px 0; overflow: hidden;
}
.ticker-strip .track {
  display: inline-flex; gap: 44px; white-space: nowrap;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em;
  animation: marquee 42s linear infinite;
}
.ticker-strip:hover .track { animation-play-state: paused; }
.ticker-strip .track span { display: inline-flex; align-items: center; gap: 10px; }
.ticker-strip .track span::before {
  content: '◆'; color: var(--nm-gold); font-size: 8px;
}
.ticker-strip .gain { color: #95d59f; }
.ticker-strip .loss { color: #f3a08f; }
.ticker-strip .gold { color: var(--nm-gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section {
  padding: 64px 0;
}
.section-head { margin-bottom: 32px; max-width: 64ch; }
.section-head .eyebrow { margin-bottom: 10px; }
.section-head .lead { margin-top: 12px; max-width: 58ch; }

/* ============================================================
   Pillars — Start · Scale · Optimize · Enhance
   ============================================================ */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--nm-border);
  border-radius: 14px;
  background: var(--nm-surface);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(217,193,132,0.5);
  box-shadow: 0 18px 40px -20px rgba(14,22,33,0.20), 0 0 60px -20px var(--nm-gold-glow);
}
.pillar .n {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--nm-gold-text);
}
.pillar h3 {
  font-family: var(--display); font-size: 22px;
  margin: 8px 0 8px; font-weight: 700; letter-spacing: -0.02em;
}
.pillar p { font-size: 14px; line-height: 1.6; color: var(--nm-fg-muted); }
.pillar .corner {
  position: absolute; top: 22px; right: 22px;
  width: 16px; height: 16px;
  border-top: 1.5px solid var(--nm-gold);
  border-right: 1.5px solid var(--nm-gold);
  opacity: 0.55;
}

/* ============================================================
   Cinematic panel rows
   ============================================================ */
.panel-row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  align-items: center;
  padding: 40px 0;
}
.panel-row.flip { grid-template-columns: 1.2fr 1fr; }
.panel-row.flip .panel-copy { order: 2; }
@media (max-width: 920px) {
  .panel-row, .panel-row.flip { grid-template-columns: 1fr; gap: 24px; padding: 28px 0; }
  .panel-row.flip .panel-copy { order: 1; }
}

.panel-copy .eyebrow { margin-bottom: 14px; }
.panel-copy h2 { margin-bottom: 16px; }
.panel-copy .lead { margin-bottom: 22px; }
.panel-copy ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.panel-copy ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--nm-fg);
}
.panel-copy ul li .check {
  flex: 0 0 18px; height: 18px; margin-top: 1px;
  border-radius: 999px;
  background: var(--nm-gold-muted);
  color: var(--nm-gold-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.panel-copy ul li .desc { color: var(--nm-fg-muted); }

.panel-shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--nm-surface);
  border: 1px solid var(--nm-border);
  box-shadow:
    0 30px 60px -30px rgba(14,22,33,0.18),
    0 0 60px -20px var(--nm-gold-glow);
}
.panel-shot .head {
  padding: 10px 14px;
  border-bottom: 1px solid var(--nm-border);
  background: var(--nm-surface-2);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; color: var(--nm-fg-muted);
}
.panel-shot .head .lights { display: flex; gap: 5px; }
.panel-shot .head .lights span { width: 8px; height: 8px; border-radius: 999px; background: #E6E6EA; }
.panel-shot .body { padding: 22px; min-height: 320px; }

/* Panel mock — feed */
.mock-feed { display: flex; flex-direction: column; gap: 8px; }
.mock-feed .row {
  display: grid; grid-template-columns: 58px 1fr 90px;
  gap: 10px; align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--nm-border); border-radius: 8px;
  background: var(--nm-bg);
  font-size: 13px;
}
.mock-feed .row .t { font-family: var(--mono); font-size: 11px; color: var(--nm-fg-dim); }
.mock-feed .row .msg strong { font-weight: 600; }
.mock-feed .row .amt { font-family: var(--mono); text-align: right; font-weight: 600; }
.mock-feed .row .amt.gain { color: var(--nm-success); }
.mock-feed .row .amt.loss { color: var(--nm-danger); }
.mock-feed .row .amt.gold { color: var(--nm-gold-text); }

/* Panel mock — predict (chart) */
.mock-predict {
  border: 1px solid var(--nm-border); border-radius: 10px;
  padding: 18px; background: var(--nm-bg);
}
.mock-predict .legend {
  display: flex; gap: 16px; align-items: center;
  font-family: var(--mono); font-size: 11px; color: var(--nm-fg-muted); letter-spacing: 0.1em;
}
.mock-predict .legend .k { display: inline-flex; align-items: center; gap: 6px; }
.mock-predict .legend .sw { width: 18px; height: 3px; }
.mock-predict .legend .sw.actual { background: var(--nm-fg); }
.mock-predict .legend .sw.forecast { background: var(--nm-gold); border-top: 2px dashed var(--nm-gold); }
.mock-predict svg { width: 100%; height: 200px; margin-top: 10px; }
.mock-predict .summary {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--nm-border);
}
.mock-predict .summary .s .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nm-fg-muted); }
.mock-predict .summary .s .v { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.mock-predict .summary .s .v.gold { color: var(--nm-gold-text); }

/* Panel mock — approve cards */
.mock-queue { display: flex; flex-direction: column; gap: 10px; }
.mock-queue .card {
  border: 1px solid var(--nm-border); border-radius: 10px;
  padding: 12px 14px; background: var(--nm-bg);
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
  display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center;
}
.mock-queue .card:hover { border-color: rgba(217,193,132,0.4); background: rgba(217,193,132,0.04); }
.mock-queue .card.approved { background: rgba(47,140,79,0.06); border-color: rgba(47,140,79,0.3); }
.mock-queue .card.approved .ttl { text-decoration: line-through; color: var(--nm-fg-muted); }
.mock-queue .card .left .tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nm-fg-muted); }
.mock-queue .card .left .ttl { font-family: var(--display); font-weight: 600; font-size: 14px; margin-top: 2px; line-height: 1.3; }
.mock-queue .card .imp { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--nm-gold-text); white-space: nowrap; }
.mock-queue .card .imp .lbl { font-family: var(--mono); font-size: 10px; color: var(--nm-fg-muted); font-weight: 500; letter-spacing: 0.1em; display: block; margin-top: 1px; }
.mock-queue .check {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1.4px solid var(--nm-border-strong);
  background: var(--nm-surface);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: transparent;
}
.mock-queue .card.approved .check { background: var(--nm-success); border-color: var(--nm-success); color: white; }

/* ============================================================
   Constellation section (dark)
   ============================================================ */
.constellation-section {
  padding: 160px 0 140px;
  position: relative; overflow: hidden;
}
.constellation-section::before {
  content: ''; position: absolute;
  inset: -10% -10% auto -10%; height: 80%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,193,132,0.22), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(16,42,67,0.55), transparent 55%),
    radial-gradient(ellipse at 12% 40%, rgba(98,125,152,0.18), transparent 55%);
  pointer-events: none;
}
.constellation-section .inner { position: relative; z-index: 1; max-width: none; padding: 0; }
.constellation-section .section-head {
  text-align: left;
  margin: 0 auto 56px;
  max-width: 1240px;
  padding: 0 32px;
}
.constellation-section .section-head .h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.02; letter-spacing: -0.028em;
  margin-bottom: 18px;
  max-width: 22ch;
}
.constellation-section .section-head .eyebrow {
  justify-content: flex-start !important;
  margin-bottom: 14px;
}
.constellation-section .section-head .lead {
  margin: 0; font-size: 19px; max-width: 58ch;
  padding: 0;
}

.const-stage {
  position: relative;
  margin: 0 auto;
  width: min(94vw, 1480px);
  height: clamp(680px, 82vh, 880px);
  border: 1px solid var(--nm-border);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at center, rgba(217,193,132,0.10), transparent 65%),
    linear-gradient(180deg, rgba(31,41,53,0.65), rgba(14,22,33,0.65));
  overflow: hidden;
  box-shadow:
    0 100px 160px -60px rgba(0,0,0,0.75),
    0 0 120px -30px var(--nm-gold-glow);
}
@media (max-width: 920px) { .const-stage { width: 94vw; height: 700px; border-radius: 18px; } }
@media (max-width: 720px) { .const-stage { width: 96vw; height: 660px; border-radius: 14px; } }

/* Slow scanner rings emanating from brain */
.const-stage .scanner {
  position: absolute; left: 50%; top: 50%;
  width: 200px; height: 200px;
  border-radius: 999px;
  border: 1px solid rgba(217,193,132,0.35);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  animation: scannerRing 6s ease-out infinite;
}
.const-stage .scanner.s2 { animation-delay: 2s; }
.const-stage .scanner.s3 { animation-delay: 4s; }
@keyframes scannerRing {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  15%  { opacity: 0.55; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(3.4); }
}

/* Data-flow dots that travel the spoke lines */
.flow-dot {
  fill: var(--nm-gold);
  filter: drop-shadow(0 0 6px var(--nm-gold-glow));
}
.const-stage .lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

.const-node {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 108px; height: 108px;
  border-radius: 999px;
  border: 1px solid var(--nm-border-strong);
  background: rgba(31,41,53,0.85);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  cursor: pointer; user-select: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
  z-index: 2;
  animation: nodeDrift 9s ease-in-out infinite alternate;
}
@keyframes nodeDrift {
  0%   { transform: translate(-50%, -50%) translateY(0); }
  100% { transform: translate(-50%, -50%) translateY(-4px); }
}
.const-node:nth-of-type(odd) { animation-duration: 11s; animation-delay: -3s; }
.const-node:hover {
  transform: translate(-50%, -50%) scale(1.06);
  border-color: rgba(217,193,132,0.6);
  box-shadow: 0 0 0 6px rgba(217,193,132,0.15);
}
.const-node[aria-selected="true"] {
  border-color: var(--nm-gold);
  background: rgba(217,193,132,0.18);
  box-shadow: 0 0 0 8px rgba(217,193,132,0.18), 0 0 30px var(--nm-gold-glow);
}
.const-node .icon {
  width: 22px; height: 22px;
  color: var(--nm-fg-2);
  opacity: 0.85;
}
.const-node[aria-selected="true"] .icon { color: var(--nm-gold); opacity: 1; }
.const-node .name {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--nm-fg-muted);
}
.const-node .v {
  font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--nm-fg);
  letter-spacing: -0.01em;
}
.const-node[aria-selected="true"] .v { color: var(--nm-gold); }
.const-node[aria-selected="true"] .name { color: var(--nm-gold); }

.const-node.center {
  width: 200px; height: 200px;
  background:
    radial-gradient(circle at 50% 35%, rgba(217,193,132,0.32), rgba(16,42,67,0.7) 65%),
    linear-gradient(160deg, rgba(217,193,132,0.18), rgba(16,42,67,0.7));
  border: 1px solid rgba(217,193,132,0.55);
  box-shadow:
    0 0 120px -10px var(--nm-gold-glow),
    0 0 0 1px rgba(217,193,132,0.15),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.const-node.center::before {
  content: ''; position: absolute; inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(217,193,132,0.25);
  pointer-events: none;
}
.const-node.center::after {
  content: ''; position: absolute; inset: -22px;
  border-radius: 999px;
  border: 1px dashed rgba(217,193,132,0.18);
  pointer-events: none;
  animation: slowSpin 50s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.const-node.center:hover { transform: translate(-50%, -50%) scale(1.03); }
.const-node.center .v { font-size: 26px; color: var(--nm-gold); font-weight: 700; }
.const-node.center .name { font-size: 11px; color: var(--nm-fg-muted); letter-spacing: 0.18em; }
.const-node.center .icon { color: var(--nm-gold); width: 44px; height: 44px; }

.const-node .pulse {
  position: absolute; inset: -6px;
  border-radius: 999px;
  border: 1.2px solid var(--nm-gold);
  opacity: 0;
  animation: ring 2.6s ease-out infinite;
  pointer-events: none;
}
.const-node.live .pulse { opacity: 1; }
@keyframes ring {
  0%   { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

.const-detail {
  position: absolute;
  right: 28px; top: 28px;
  width: 296px;
  background: rgba(19,28,39,0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217,193,132,0.45);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  z-index: 4;
  opacity: 0; transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.const-detail.open {
  opacity: 1; transform: none;
  pointer-events: auto;
}
@media (max-width: 720px) { .const-detail { left: 12px; right: 12px; top: auto; bottom: 12px; width: auto; } }

/* Hint chip when no node selected */
.const-hint {
  position: absolute;
  right: 28px; top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(19,28,39,0.65);
  border: 1px solid rgba(217,193,132,0.4);
  backdrop-filter: blur(8px);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--nm-fg-muted);
  z-index: 3;
  transition: opacity 0.2s;
}
.const-hint .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--nm-gold);
  box-shadow: 0 0 8px var(--nm-gold);
  animation: pulse 2s ease-in-out infinite;
}
.const-hint strong { color: var(--nm-fg); font-weight: 600; }
.const-stage.has-selection .const-hint { opacity: 0; pointer-events: none; }
.const-detail .close {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: 0;
  color: var(--nm-fg-muted); cursor: pointer;
  font-family: var(--mono); font-size: 18px;
  padding: 2px 6px; line-height: 1;
}
.const-detail .close:hover { color: var(--nm-fg); }
.const-detail .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nm-gold); }
.const-detail h4 { font-family: var(--display); font-size: 20px; margin: 4px 0 4px; color: var(--nm-fg); font-weight: 700; }
.const-detail .imp { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--nm-gold); letter-spacing: -0.02em; margin-top: 6px; }
.const-detail .b { color: var(--nm-fg-muted); font-size: 13px; line-height: 1.55; margin-top: 8px; }
.const-detail .moves {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed var(--nm-border);
  display: flex; flex-direction: column; gap: 4px;
}
.const-detail .moves .m {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 12px; color: var(--nm-fg-2);
}
.const-detail .moves .m .a { font-family: var(--mono); color: var(--nm-gold); }

.const-legend {
  position: absolute; left: 28px; top: 28px;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--nm-fg-muted);
  z-index: 3;
}
.const-legend .k { display: inline-flex; align-items: center; gap: 8px; }
.const-legend .sw { width: 10px; height: 10px; border-radius: 999px; }
.const-legend .sw.live { background: var(--nm-gold); box-shadow: 0 0 8px var(--nm-gold); }
.const-legend .sw.idle { background: rgba(155,165,181,0.5); }
.const-legend .sw.brain { background: rgba(217,193,132,0.6); border: 1px solid var(--nm-gold); }

/* Real product screenshot inside panel-shot */
.panel-shot.product-frame { background: #131C27; border-color: rgba(16,42,67,0.4); }
.panel-shot.product-frame .head {
  background: linear-gradient(180deg, #1F2935, #131C27);
  border-bottom: 1px solid rgba(155,165,181,0.15);
  color: #9BA5B5;
}
.panel-shot.product-frame .head .lights span { background: #2A3543; border: 1px solid rgba(155,165,181,0.18); }
.panel-shot.product-frame .body {
  padding: 0; min-height: 0;
  position: relative;
}
.panel-shot.product-frame .body img {
  width: 100%; display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}
.panel-shot.product-frame .body::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(19,28,39,0.4) 100%);
}
.panel-shot.product-frame .body .badge {
  position: absolute; left: 16px; top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(217,193,132,0.4);
  background: rgba(19,28,39,0.55);
  backdrop-filter: blur(6px);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  color: #EDEFF3;
  z-index: 2;
}
.panel-shot.product-frame .body .badge .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--nm-gold);
  box-shadow: 0 0 8px var(--nm-gold);
  animation: pulse 2.4s ease-in-out infinite;
}

/* Constellation event ticker — sits below the stage */
.const-events {
  margin: 40px auto 0;
  width: min(96vw, 1640px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 920px) { .const-events { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .const-events { grid-template-columns: 1fr; } }
.const-events .evt {
  padding: 14px 16px;
  border: 1px solid var(--nm-border);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  display: flex; flex-direction: column; gap: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.const-events .evt:hover {
  background: rgba(217,193,132,0.06);
  border-color: rgba(217,193,132,0.3);
}
.const-events .evt .when {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--nm-gold);
}
.const-events .evt .what { color: var(--nm-fg); font-size: 13px; line-height: 1.4; }
.const-events .evt .imp {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: var(--nm-gold); letter-spacing: -0.02em;
}

/* Predictive band — within ±4% */
.predict-band {
  position: relative;
  padding: 100px 32px 0;
  max-width: 1320px; margin: 0 auto;
}
.predict-band .row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) { .predict-band .row { grid-template-columns: 1fr; } }
.predict-band .stat-block {
  border: 1px solid var(--nm-border);
  border-radius: 14px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
}
.predict-band .stat-block .l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nm-gold); }
.predict-band .stat-block .v { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 4.4vw, 60px); letter-spacing: -0.03em; line-height: 1; margin-top: 12px; }
.predict-band .stat-block .v .acc { color: var(--nm-gold); }
.predict-band .stat-block .b { color: var(--nm-fg-muted); font-size: 14px; margin-top: 12px; }

/* ============================================================
   Quote
   ============================================================ */
.quote-block {
  padding: 100px 0;
}
.quote-card {
  border: 1px solid var(--nm-border);
  border-radius: 18px;
  padding: 56px 48px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(217,193,132,0.10), transparent 60%),
    var(--nm-surface);
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px; align-items: start;
}
@media (max-width: 720px) { .quote-card { grid-template-columns: 1fr; padding: 36px 28px; } }
.quote-card .avatar {
  width: 80px; height: 80px;
  border-radius: 999px;
  background: linear-gradient(150deg, var(--nm-slate-3), var(--nm-slate-1));
  border: 2px solid var(--nm-surface);
  box-shadow: 0 0 0 1px var(--nm-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700;
  color: var(--nm-gold);
  font-size: 32px;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.25; letter-spacing: -0.02em;
}
.quote-card blockquote em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--nm-gold-text);
}
.quote-card .sig {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--nm-fg-muted);
}

/* ============================================================
   Final CTA (dark)
   ============================================================ */
.final-cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, var(--nm-gold-glow), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(16,42,67,0.5), transparent 50%);
  pointer-events: none;
}
.final-cta .inner { position: relative; max-width: 920px; margin: 0 auto; padding: 0 32px; }
.final-cta .eyebrow { margin-bottom: 22px; justify-content: center; }
.final-cta h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 0.96; letter-spacing: -0.038em;
}
.final-cta h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--nm-gold); }
.final-cta p { color: var(--nm-fg-muted); margin: 22px auto 0; max-width: 56ch; font-size: 18px; line-height: 1.55; }
.final-cta .cta-row { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .meta {
  margin-top: 30px;
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: center;
  font-family: var(--mono); font-size: 12px; color: var(--nm-fg-dim); letter-spacing: 0.06em;
}
.final-cta .meta .item { display: inline-flex; align-items: center; gap: 8px; }
.final-cta .meta .item::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background: var(--nm-gold); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--nm-border);
  padding: 56px 0 28px;
  background: var(--nm-bg);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--nm-fg-dim); font-weight: 500; margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul li a { font-size: 14px; color: var(--nm-fg); }
.footer-grid ul li a:hover { color: var(--nm-gold-text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--nm-border);
  font-size: 12px; color: var(--nm-fg-dim);
}
.footer-bottom .right { display: flex; gap: 18px; }

/* ============================================================
   DIALECHO-INSPIRED STRUCTURE
   ============================================================ */

/* Section label — § small-caps mono */
.s-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--nm-fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.s-label::before {
  content: '§';
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--nm-gold-text);
  line-height: 1;
}
.dark-section .s-label::before { color: var(--nm-gold); }

/* ============================================================
   § Your week — Before / With NuMoon comparison
   ============================================================ */
.your-week {
  padding: 120px 0;
  background: var(--nm-surface-sunken);
  border-top: 1px solid var(--nm-border);
  border-bottom: 1px solid var(--nm-border);
}
.week-head { max-width: 64ch; margin-bottom: 48px; }
.week-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 920px) { .week-grid { grid-template-columns: 1fr; } }

.week-panel {
  border: 1px solid var(--nm-border);
  border-radius: 16px;
  background: var(--nm-surface);
  padding: 28px 26px 22px;
  display: flex; flex-direction: column;
}
.week-panel.with {
  border-color: rgba(217,193,132,0.5);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,193,132,0.10), transparent 60%),
    var(--nm-surface);
  box-shadow: 0 24px 60px -28px var(--nm-gold-glow);
}
.week-panel .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--nm-fg-muted);
  margin-bottom: 6px;
}
.week-panel.with .label { color: var(--nm-gold-text); }
.week-panel h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.week-panel .sub {
  font-family: var(--mono); font-size: 12px; color: var(--nm-fg-muted); letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.week-cal {
  display: grid;
  grid-template-columns: 38px repeat(5, 1fr);
  gap: 4px;
  font-family: var(--mono); font-size: 10px;
  color: var(--nm-fg-dim);
  flex: 1;
}
.week-cal .col-h {
  text-align: center;
  padding: 6px 0;
  letter-spacing: 0.12em;
  color: var(--nm-fg-muted);
}
.week-cal .row-h {
  text-align: right;
  padding: 6px 6px 0 0;
  letter-spacing: 0.04em;
}
.week-cal .cell {
  position: relative;
  min-height: 36px;
  border: 1px dashed var(--nm-border);
  border-radius: 6px;
  background: rgba(0,0,0,0.02);
}
.week-panel.with .week-cal .cell { border-style: solid; }
.week-cal .evt {
  position: absolute;
  inset: 4px;
  border-radius: 4px;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 2px 4px;
  line-height: 1.2;
}
.week-cal .evt.gold { background: var(--nm-gold-muted); color: var(--nm-gold-text); border: 1px solid rgba(217,193,132,0.4); }
.week-cal .evt.ink { background: var(--nm-fg); color: var(--nm-gold); border: 1px solid var(--nm-fg); font-weight: 600; }
.week-cal .evt.ghost { background: rgba(14,22,33,0.04); color: var(--nm-fg-muted); border: 1px dashed var(--nm-border); }

.week-foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--nm-border);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 12px; color: var(--nm-fg-muted); letter-spacing: 0.06em;
}
.week-foot strong {
  font-family: var(--display); font-weight: 700; font-size: 22px;
  color: var(--nm-fg);
  letter-spacing: -0.02em;
}
.week-panel.with .week-foot strong { color: var(--nm-gold-text); }

/* ============================================================
   § The switchboard — 12-job numpad
   ============================================================ */
.switchboard {
  padding: 140px 0;
  background: var(--nm-bg);
}
.sb-head { text-align: center; margin: 0 auto 56px; max-width: 36ch; }
.sb-head .h1 { margin-bottom: 16px; }
.sb-head .s-label { justify-content: center; }
.sb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1100px; margin: 0 auto;
  border: 1px solid var(--nm-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--nm-border);
}
@media (max-width: 720px) { .sb-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .sb-grid { grid-template-columns: repeat(2, 1fr); } }
.sb-key {
  position: relative;
  background: var(--nm-surface);
  padding: 26px 22px 22px;
  min-height: 132px;
  display: flex; flex-direction: column;
  cursor: default;
  transition: background 0.2s;
}
.sb-key:hover { background: var(--nm-surface-2); }
.sb-key .keycap {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--nm-gold-text);
  opacity: 0.4;
  margin-bottom: 14px;
}
.sb-key .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.sb-key .desc {
  font-size: 12px; line-height: 1.4;
  color: var(--nm-fg-muted);
  margin-top: auto;
}

/* ============================================================
   § Customer — testimonial + 3 big stats
   ============================================================ */
.customer-section {
  padding: 100px 0;
  background: var(--nm-surface-sunken);
  border-top: 1px solid var(--nm-border);
  border-bottom: 1px solid var(--nm-border);
}
.customer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .customer-grid { grid-template-columns: 1fr; gap: 32px; } }
.customer-quote .s-label .mark {
  display: inline-block;
  padding: 3px 9px;
  background: var(--nm-fg); color: var(--nm-gold);
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.customer-quote blockquote {
  margin: 0;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.32; letter-spacing: -0.018em;
}
.customer-quote blockquote em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--nm-gold-text);
}
.customer-quote .sig {
  margin-top: 22px;
  display: flex; align-items: center; gap: 14px;
}
.customer-quote .sig .avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: linear-gradient(150deg, var(--nm-slate-3), var(--nm-slate-1));
  color: var(--nm-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 18px;
}
.customer-quote .sig .name { font-family: var(--display); font-weight: 700; font-size: 15px; }
.customer-quote .sig .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--nm-fg-muted); }
.customer-tag {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--nm-surface);
  border: 1px solid var(--nm-border);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--nm-fg-muted);
}
.customer-tag strong { color: var(--nm-fg); font-weight: 600; }

.customer-stats {
  display: flex; flex-direction: column; gap: 14px;
}
.customer-stats .stat {
  border: 1px solid var(--nm-border);
  border-radius: 14px;
  background: var(--nm-surface);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.customer-stats .stat .v {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--nm-gold-text);
}
.customer-stats .stat .l {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--nm-fg-muted);
}

/* ============================================================
   § The math — cost comparison
   ============================================================ */
.math-section {
  padding: 140px 0;
}
.math-head { text-align: center; margin: 0 auto 56px; max-width: 38ch; }
.math-head .s-label { justify-content: center; }
.math-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 1100px; margin: 0 auto;
  position: relative;
}
@media (max-width: 920px) { .math-grid { grid-template-columns: 1fr; gap: 24px; } }

.math-card {
  border: 1px solid var(--nm-border);
  border-radius: 16px;
  background: var(--nm-surface);
  padding: 32px 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.math-card.with {
  border-color: rgba(217,193,132,0.55);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,193,132,0.12), transparent 50%),
    var(--nm-surface);
  box-shadow: 0 24px 60px -28px var(--nm-gold-glow);
}
.math-card .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--nm-fg-muted);
}
.math-card.with .label { color: var(--nm-gold-text); }
.math-card h3 {
  font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em;
  margin: -2px 0 6px;
}
.math-card .total {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1; letter-spacing: -0.035em;
  margin: 6px 0 10px;
}
.math-card.before .total { color: var(--nm-fg); text-decoration: line-through; text-decoration-color: var(--nm-danger); text-decoration-thickness: 2px; }
.math-card.with .total { color: var(--nm-gold-text); }
.math-card .total .per {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  color: var(--nm-fg-muted); letter-spacing: 0.06em;
  text-decoration: none;
}
.math-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.math-card ul li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--nm-border);
}
.math-card ul li:last-child { border-bottom: none; }
.math-card ul li .role { color: var(--nm-fg); }
.math-card ul li .role .sub { color: var(--nm-fg-muted); font-size: 12px; }
.math-card ul li .cost { font-family: var(--mono); font-weight: 600; color: var(--nm-fg-2); }
.math-card.with ul li .cost { color: var(--nm-gold-text); }

.math-saved {
  margin: 32px auto 0;
  max-width: 720px;
  padding: 26px 32px;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(217,193,132,0.18), rgba(217,193,132,0.04)),
    var(--nm-fg);
  color: var(--nm-bg);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.math-saved .l {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--nm-gold);
}
.math-saved .v {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1; letter-spacing: -0.035em;
  color: var(--nm-gold);
}
.math-saved .v .per { font-family: var(--mono); font-size: 12px; font-weight: 500; color: rgba(252,253,255,0.7); letter-spacing: 0.06em; }
.math-saved .arrow-pill {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(252,253,255,0.7);
}


/* ============================================================
   PRODUCTION POLISH
   ============================================================ */

/* Scroll-reveal — apply .reveal to any node; flips to .in via IO */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-stagger="2"] { transition-delay: 0.08s; }
.reveal[data-stagger="3"] { transition-delay: 0.16s; }
.reveal[data-stagger="4"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Subtle grain on dark sections */
.dark-section { position: relative; }
.dark-section > * { position: relative; z-index: 1; }
.dark-section::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.42 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 160px 160px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* (legacy .logos brand-mark rules removed — replaced by .proof-names typographic strip above) */

/* Pillar cards — visual rhythm boost */
.pillar {
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 32px 26px 28px;
}
.pillar .pillar-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 4px;
}
.pillar .pillar-head .ord {
  font-family: var(--display); font-weight: 800;
  font-size: 64px; line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--nm-gold-text);
  opacity: 0.18;
}
.pillar .n {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--nm-gold-text);
  margin-bottom: 0;
}
.pillar h3 { font-size: 24px; line-height: 1.1; margin: 6px 0 8px; }
.pillar p { margin-top: 4px; }
.pillar .foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--nm-border);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--nm-fg-muted);
  display: flex; justify-content: space-between; align-items: center;
}
.pillar .foot strong { color: var(--nm-fg); font-weight: 600; }

/* Pricing tease — three tiers in a band */
.pricing-tease {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--nm-bg), var(--nm-surface-sunken));
  border-top: 1px solid var(--nm-border);
}
.pricing-tease .head { text-align: center; margin: 0 auto 56px; max-width: 36ch; }
.pricing-tease .head .h1 { margin-bottom: 14px; }
.pricing-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 920px) { .pricing-tiers { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid var(--nm-border);
  border-radius: 16px;
  background: var(--nm-surface);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(14,22,33,0.18);
}
.tier.featured {
  border-color: rgba(217,193,132,0.55);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,193,132,0.12), transparent 50%),
    var(--nm-surface);
  box-shadow: 0 24px 60px -22px var(--nm-gold-glow), 0 8px 20px -10px rgba(14,22,33,0.18);
}
.tier.featured::before {
  content: 'Most popular';
  position: absolute; top: -12px; left: 28px;
  background: var(--nm-fg); color: var(--nm-gold);
  padding: 4px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}
.tier .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nm-fg-muted); }
.tier h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
  margin: -4px 0 4px;
}
.tier .price {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--display); font-weight: 700;
  font-size: 48px; letter-spacing: -0.03em;
  line-height: 1;
  margin: 6px 0 4px;
}
.tier .price .per {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--nm-fg-muted);
  letter-spacing: 0.06em;
}
.tier .price .free {
  color: var(--nm-gold-text);
}
.tier .summary { color: var(--nm-fg-muted); font-size: 14px; margin: 0 0 8px; min-height: 42px; }
.tier ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tier ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px;
  color: var(--nm-fg);
}
.tier ul li::before {
  content: '✓';
  flex: 0 0 16px;
  color: var(--nm-gold-text); font-weight: 700;
}
.tier .cta { margin-top: 12px; padding-top: 16px; border-top: 1px dashed var(--nm-border); }
.tier .cta .btn { width: 100%; justify-content: center; }

/* FAQ — accordion */
.faq-section { padding: 100px 0; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start;
}
@media (max-width: 920px) { .faq-grid { grid-template-columns: 1fr; gap: 28px; } }
.faq-list {
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  border: 1px solid var(--nm-border);
  border-radius: 12px;
  background: var(--nm-surface);
  transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] { border-color: rgba(217,193,132,0.4); background: var(--nm-surface-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--display); font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--nm-fg);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--mono); font-size: 20px;
  color: var(--nm-gold-text);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--nm-fg-muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item .answer strong { color: var(--nm-fg); font-weight: 600; }

/* Hero window chrome — production polish */
.cinema-shot {
  border-radius: 14px;
}
.cinema-shot .title-bar {
  padding: 14px 18px;
  background: linear-gradient(180deg, #1F2935, #131C27);
  color: #9BA5B5;
  border-bottom: 1px solid rgba(155,165,181,0.18);
  display: flex; align-items: center; gap: 14px;
}
.cinema-shot .title-bar .lights span {
  width: 12px; height: 12px;
  border: none;
}
.cinema-shot .title-bar .lights span:nth-child(1) { background: #FF5F57; }
.cinema-shot .title-bar .lights span:nth-child(2) { background: #FEBC2E; }
.cinema-shot .title-bar .lights span:nth-child(3) { background: #28C840; }
.cinema-shot .title-bar .url {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(155,165,181,0.18);
  color: #C8CED8;
  border-radius: 8px;
  padding: 5px 14px;
  font-family: var(--mono); font-size: 12px;
}
.cinema-shot .title-bar .url::before { content: '⚡'; opacity: 0.55; margin-right: 6px; font-size: 11px; }
.cinema-shot .title-bar .menu {
  margin-left: auto;
  font-family: var(--mono); font-size: 11px;
  color: rgba(200,206,216,0.55);
  letter-spacing: 0.06em;
}
.cinema-shot .live-overlay { top: 76px; }

