/* Han Ai — Premium landing. Inherits Han Studios type system, pivots palette to soft sky-white */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Mono:wght@300;400;500&display=swap');

:root {
  /* Palette — sky/fog, lifted from the brand phone imagery */
  --ink: #0B0C0E;
  --ink-2: #1A1C20;
  --muted: rgba(11,12,14,0.56);
  --faint: rgba(11,12,14,0.36);
  --hair: rgba(11,12,14,0.08);
  --hair-strong: rgba(11,12,14,0.14);

  --paper: #FBFAF7;       /* warm off-white */
  --paper-2: #F4F3EE;     /* soft fog */
  --sky: #E8EEF5;         /* glass sky */
  --sky-2: #D7E2EE;       /* deeper glass */
  --sky-deep: #A9BCCF;
  --accent: #0B0C0E;      /* primary button ink */

  /* Type */
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-card: cubic-bezier(0.22, 0.61, 0.36, 1);

  --pad-x: clamp(24px, 5vw, 96px);
  --pad-y: clamp(80px, 12vw, 160px);
  --max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Type scale — Apple-ish tight display */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 400;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}
.h-display-xl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7.6vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.h-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--muted);
  font-weight: 400;
  max-width: 58ch;
  text-wrap: pretty;
}
.body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}
.mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Layout */
.section {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
}
.section-tight { padding: clamp(56px, 8vw, 110px) var(--pad-x); }
.container {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.narrow { max-width: 920px; }
.narrowest { max-width: 720px; }

.hairline { height: 1px; background: var(--hair); width: 100%; }

/* Section number wheel — left-edge arc with scroll-locked active number */
.wheel {
  position: fixed;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 40;
  pointer-events: none;
}
.wheel-rotor {
  position: absolute;
  left: -290px;
  top: 0;
  width: 0;
  height: 0;
  transform-origin: 0 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.wheel-num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  opacity: 0.25;
  transform-origin: 0 50%;
  transition: font-size 0.5s var(--ease), opacity 0.5s var(--ease);
  white-space: nowrap;
  margin-top: -0.5em;
}
.wheel-num.active {
  font-size: 38px;
  opacity: 1;
}
.wheel-title-wrap {
  position: fixed;
  left: 96px;
  top: calc(50% + 30px);
  pointer-events: none;
  overflow: hidden;
  max-width: 240px;
}
.wheel-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  animation: wheelTitleIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes wheelTitleIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .wheel-rotor { transition: none; }
  .wheel-title { animation: none; }
}
@media (max-width: 1100px) {
  .wheel { display: none; }
}

/* Scene shapes — soft gradient orbs with scroll-bound parallax */
.scene-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.section > .container,
.section > .hero-canvas,
.section > [class*="phone"] { position: relative; z-index: 1; }
.scene-shape {
  position: absolute;
  width: var(--sz, 80vh);
  height: var(--sz, 80vh);
  border-radius: 50%;
  will-change: transform;
  transform: translate3d(0, calc(var(--sy, 0) * 1px), 0);
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.scene-shape.pos-tl { left: -22vw; top: -25vh; }
.scene-shape.pos-tr { right: -22vw; top: -25vh; }
.scene-shape.pos-bl { left: -22vw; bottom: -28vh; }
.scene-shape.pos-br { right: -22vw; bottom: -28vh; }
.scene-shape.pos-l  { left: -32vw; top: 18%; }
.scene-shape.pos-r  { right: -32vw; top: 18%; }
.scene-shape.pos-cb { left: 50%; bottom: -40vh; margin-left: calc(var(--sz, 80vh) / -2); }
.scene-shape.pos-ct { left: 50%; top: -30vh; margin-left: calc(var(--sz, 80vh) / -2); }

.shape-violet { background: radial-gradient(circle at 35% 35%, #B6B6E4 0%, #D4C8DE 38%, rgba(220,201,220,0.0) 70%); }
.shape-sky    { background: radial-gradient(circle at 35% 35%, #B0C5D9 0%, #D6E1ED 38%, rgba(214,225,237,0.0) 70%); }
.shape-teal   { background: radial-gradient(circle at 35% 35%, #A2BFBC 0%, #C5D4D0 38%, rgba(197,212,208,0.0) 70%); }
.shape-mint   { background: radial-gradient(circle at 35% 35%, #B6D3BD 0%, #D4E4D3 38%, rgba(212,228,211,0.0) 70%); }
.shape-sand   { background: radial-gradient(circle at 35% 35%, #DCC8AC 0%, #E5D5BA 38%, rgba(229,213,186,0.0) 70%); }
.shape-rose   { background: radial-gradient(circle at 35% 35%, #DDB4AB 0%, #EACFC9 38%, rgba(234,207,201,0.0) 70%); }

@media (prefers-reduced-motion: reduce) {
  .scene-shape { transform: none !important; }
}
@media (max-width: 760px) {
  .scene-shape { opacity: 0.7; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 10px 30px rgba(11,12,14,0.16);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 16px 40px rgba(11,12,14,0.22);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hair-strong);
}
.btn-ghost:hover { background: rgba(11,12,14,0.03); border-color: rgba(11,12,14,0.22); }

.btn-arrow {
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(251,250,247,0.75);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease);
}
.nav.scrolled { border-bottom: 1px solid var(--hair); }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav-brand .mono {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 22px;
  margin-right: 2px;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a { transition: color 0.2s var(--ease); }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* Cards */
.card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 44px);
  transition: border-color 0.35s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover {
  border-color: var(--hair-strong);
  box-shadow: 0 30px 60px rgba(11,12,14,0.06);
}
.card-sky {
  background: linear-gradient(180deg, #EDF2F8 0%, #DDE6F0 100%);
  border: 1px solid rgba(11,12,14,0.05);
}
.card-fog {
  background: var(--paper-2);
  border: 1px solid var(--hair);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Monogram marker — the "II." glyph, rendered in type */
.monogram {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.08em;
  display: inline-block;
  line-height: 1;
}

/* Form */
.field {
  display: flex; flex-direction: column; gap: 8px;
}
.field-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.field-input, .field-textarea, .field-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair-strong);
  padding: 14px 0;
  font-size: 18px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease);
  width: 100%;
  border-radius: 0;
}
.field-input::placeholder, .field-textarea::placeholder { color: var(--faint); }
.field-input:focus, .field-textarea:focus { border-bottom-color: var(--ink); }
.field-textarea { min-height: 90px; resize: vertical; font-family: inherit; }

.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice {
  padding: 12px 18px;
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s var(--ease);
  background: transparent;
}
.choice:hover { color: var(--ink); border-color: rgba(11,12,14,0.25); }
.choice.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Step header */
.step-dots { display: flex; gap: 10px; align-items: center; }
.step-dot {
  width: 28px; height: 2px; background: var(--hair-strong); border-radius: 2px;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.step-dot.active { background: var(--ink); width: 44px; }
.step-dot.done { background: var(--ink); opacity: 0.4; }

/* Before/after list */
.ba-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); margin: 0 0 18px; font-weight: 400; }
.ba-col ul { list-style: none; padding: 0; margin: 0; }
.ba-col li { padding: 16px 0; border-top: 1px solid var(--hair); font-size: 18px; color: var(--ink); font-weight: 400; letter-spacing: -0.01em; }
.ba-col li:last-child { border-bottom: 1px solid var(--hair); }
.ba-col.after li { color: var(--ink); font-weight: 500; }
.ba-col.before li { color: var(--muted); }

/* System cards */
.system-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 28px;
  padding: clamp(32px, 3.5vw, 48px);
  display: flex; flex-direction: column; gap: 24px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.system-card:hover { border-color: var(--hair-strong); transform: translateY(-2px); box-shadow: 0 28px 60px rgba(11,12,14,0.06); }
.system-card .badge {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint);
}
.system-card .title { font-size: 26px; letter-spacing: -0.02em; font-weight: 600; line-height: 1.15; color: var(--ink); }
.system-card .sub { font-size: 15px; color: var(--muted); line-height: 1.55; flex: 1; }
.system-card .meta { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top: auto; }
.system-card.soon { background: linear-gradient(160deg, #EDF2F8 0%, #DCE6F0 100%); border-color: transparent; }
.system-card.soon .badge { color: rgba(11,12,14,0.55); }

/* Hero visual */
.hero-canvas {
  position: relative;
  margin-top: clamp(40px, 5vw, 68px);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #E8EEF5 0%, #CFDDEB 100%);
  aspect-ratio: 16 / 10;
  max-width: 1080px;
  margin-left: auto; margin-right: auto;
  box-shadow: 0 40px 80px -30px rgba(11,12,14,0.18);
}
.hero-canvas img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-badges {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(20px, 2.4vw, 34px);
  pointer-events: none;
}
.hero-badge {
  background: rgba(251,250,247,0.86);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(11,12,14,0.06);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink);
  display: inline-flex; gap: 10px; align-items: center;
  box-shadow: 0 8px 24px rgba(11,12,14,0.08);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 3px rgba(74,222,128,0.22); }

/* Control phone section */
.phone-scene {
  background: linear-gradient(180deg, #E4EBF2 0%, #C9D7E5 100%);
  border-radius: 32px;
  padding: clamp(40px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) {
  .phone-scene { grid-template-columns: 1fr; padding: 32px; }
}
.phone-scene .phone-wrap {
  position: relative;
  aspect-ratio: 9/14;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}
.phone-scene .phone-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  border-radius: 24px;
}

/* Chat bubble overlay */
.chat-stack {
  position: absolute;
  right: -8%;
  bottom: 12%;
  width: 68%;
  display: flex; flex-direction: column; gap: 16px;
  z-index: 2;
}
@media (max-width: 900px) {
  .chat-stack { right: 0; bottom: -10px; width: 80%; }
}
.chat-bubble {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  box-shadow: 0 20px 40px rgba(11,12,14,0.1);
  border: 1px solid rgba(255,255,255,0.6);
  animation: bubbleIn 0.8s var(--ease) both;
}
.chat-bubble.sent { background: var(--ink); color: var(--paper); align-self: flex-end; }
.chat-bubble.typing { display: inline-flex; gap: 5px; align-items: center; padding: 16px 18px; align-self: flex-start; }
.chat-bubble.typing.sent { align-self: flex-end; }
.chat-bubble.typing .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(11,12,14,0.4);
  animation: typingDot 1.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-bubble.typing.sent .dot { background: rgba(255,255,255,0.55); }
.chat-bubble.typing .dot:nth-child(2) { animation-delay: 0.15s; }
.chat-bubble.typing .dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.chat-bubble .meta { display: block; font-size: 10px; color: var(--faint); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 4px; font-family: var(--font-mono); }
.chat-bubble.sent .meta { color: rgba(255,255,255,0.4); }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Footer */
.footer {
  border-top: 1px solid var(--hair);
  padding: clamp(48px, 6vw, 80px) var(--pad-x) clamp(32px, 4vw, 48px);
}
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* Tweaks panel */
.tweaks-panel {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 120;
  width: 300px;
  background: rgba(251,250,247,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--hair-strong);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(11,12,14,0.16);
  font-size: 13px;
}
.tweaks-panel h4 { margin: 0 0 14px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); font-weight: 500; font-family: var(--font-mono); }
.tweaks-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.tweaks-row label { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.tweaks-seg { display:flex; gap: 6px; }
.tweaks-seg button { flex:1; padding: 8px 10px; border: 1px solid var(--hair-strong); border-radius: 10px; font-size: 12px; color: var(--muted); background: transparent; transition: all 0.2s var(--ease); }
.tweaks-seg button.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Palette: neutral vs sky vs ink */
body[data-palette="neutral"] { --paper: #FFFFFF; --paper-2: #F6F5F2; --sky: #F0F0ED; --sky-2: #E4E4E0; }
body[data-palette="ink"] {
  --paper: #0B0C0E; --paper-2: #14161A; --sky: #1A1D22; --sky-2: #242830; --sky-deep: #3A414C;
  --ink: #FBFAF7; --ink-2: #E6E5E0;
  --muted: rgba(251,250,247,0.6); --faint: rgba(251,250,247,0.35);
  --hair: rgba(251,250,247,0.08); --hair-strong: rgba(251,250,247,0.16);
  --accent: #FBFAF7;
}
body[data-palette="ink"] .btn-primary { background: var(--ink); color: #0B0C0E; }
body[data-palette="ink"] .btn-ghost { color: var(--ink); }
body[data-palette="ink"] .card, body[data-palette="ink"] .system-card { background: var(--paper-2); }
body[data-palette="ink"] .hero-canvas { background: linear-gradient(180deg, #1E242C 0%, #0F1217 100%); }
body[data-palette="ink"] .phone-scene { background: linear-gradient(180deg, #1A1F26 0%, #0D1016 100%); }
body[data-palette="ink"] .card-sky { background: linear-gradient(180deg, #1A1F26 0%, #12161C 100%); }
body[data-palette="ink"] .system-card.soon { background: linear-gradient(160deg, #222830 0%, #13171D 100%); }
body[data-palette="ink"] .nav { background: rgba(11,12,14,0.75); }
body[data-palette="ink"] .hero-badge { background: rgba(20,22,26,0.8); color: var(--ink); border-color: rgba(255,255,255,0.08); }
body[data-palette="ink"] .chat-bubble { background: rgba(30,34,40,0.9); color: var(--ink); border-color: rgba(255,255,255,0.08); }
body[data-palette="ink"] .chat-bubble.sent { background: var(--ink); color: #0B0C0E; }

/* Weight toggle */
body[data-weight="light"] .h-display, body[data-weight="light"] .h-display-xl, body[data-weight="light"] .h-section { font-weight: 500; letter-spacing: -0.035em; }
body[data-weight="bold"] .h-display, body[data-weight="bold"] .h-display-xl, body[data-weight="bold"] .h-section { font-weight: 700; letter-spacing: -0.04em; }

/* Utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.text-center { text-align: center; }
.mono-num { font-family: var(--font-mono); font-weight: 400; font-size: 12px; letter-spacing: 0.1em; color: var(--faint); }

/* Approve inline visual */
.approve-rail {
  display: flex; flex-direction: column; gap: 10px;
}
.approve-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: var(--paper); border: 1px solid var(--hair); border-radius: 14px;
  font-size: 14px;
}
.approve-row .status { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.approve-row .status.live { color: #1E8A4E; }
.approve-row .status.blocked { color: #B14A2B; }
.approve-row .status.ready { color: var(--ink); }

/* Scroll ticker */
.rail {
  display: flex; gap: clamp(28px, 4vw, 56px); align-items: center;
  color: var(--muted); font-size: 13px;
}
.rail span { white-space: nowrap; }
.rail .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--hair-strong); }
