/* OWL — night ink, moonlight, owl amber. One theme: night. */

:root {
  color-scheme: dark;

  --ink: #06080F;
  --ink-2: #0B0E19;
  --nest: #0E1220;
  --moon: #E9E5D8;
  --moon-70: rgba(233, 229, 216, .72);
  --moon-50: rgba(233, 229, 216, .55);
  --moon-30: rgba(233, 229, 216, .32);
  --line: rgba(233, 229, 216, .13);
  --line-soft: rgba(233, 229, 216, .07);
  --amber: #F5B942;
  --amber-soft: #AD8433;
  --amber-dim: #5A4621;
  --ash: #24262B;
  --panel: rgba(9, 12, 22, .62);
  --panel-2: rgba(12, 16, 28, .8);
  --radius: 16px;
  --state-color: var(--amber);

  --font-display: 'Instrument Serif', 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
  --font-body: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, Consolas, monospace;

  --fs-hero: clamp(3.75rem, 10.5vw, 9.75rem);
  --fs-h2: clamp(2.25rem, 4.6vw, 4rem);
  --fs-quote: clamp(1.75rem, 3.6vw, 3.25rem);
  --fs-lede: clamp(1.125rem, 1.35vw, 1.375rem);
  --fs-body: 1.0625rem;
  --fs-small: .9375rem;
  --fs-label: .75rem;

  --container: 1180px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --nav-h: 68px;

  /* Driven by html[data-state] */
  --lid: 0px;
  --ring: 1;
  --eye-glow: .75;
  --ambient: .42;
  --closed: 0;
  --pupil: 1;
}

html[data-state="asleep"]   { --lid: 132px; --ring: 0;   --eye-glow: 0;   --ambient: .10; --closed: 1; --pupil: 1;   --state-color: #8E8C84; }
html[data-state="stirring"] { --lid: 68px;  --ring: .85; --eye-glow: .35; --ambient: .22; --closed: 0; --pupil: 1;   --state-color: var(--amber-soft); }
html[data-state="awake"]    { --lid: 0px;   --ring: 1;   --eye-glow: .75; --ambient: .42; --closed: 0; --pupil: 1;   --state-color: var(--amber); }
html[data-state="hunting"]  { --lid: -6px;  --ring: 1;   --eye-glow: 1;   --ambient: .62; --closed: 0; --pupil: 1.3; --state-color: var(--amber); }
html.pre                    { --lid: 132px; --ring: 0;   --eye-glow: 0;   --closed: 1; }

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--moon);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html.drawer-open, html.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--amber); }
p { margin: 0 0 1.1em; }
strong { font-weight: 600; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
select, input { font: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--moon-50);
}
.muted { color: var(--moon-50); }
.amber { color: var(--amber); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- sky ---------- */

.sky { position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; }
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  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='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
main, .footer { position: relative; z-index: 2; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .9rem 1.4rem; border-radius: 999px; border: 1px solid transparent; white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-primary { background: var(--amber); color: var(--ink); }
.btn-primary:hover { background: var(--moon); color: var(--ink); }
.btn-ghost { border-color: var(--line); color: var(--moon); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-sm { padding: .6rem 1rem; font-size: .7rem; }
.btn[disabled] { opacity: .4; cursor: not-allowed; }
.btn[disabled]:hover { background: var(--amber); color: var(--ink); }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--moon-70); transition: border-color .25s, color .25s; }
.icon-btn:hover { border-color: var(--amber); color: var(--amber); }
.icon-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 20;
  background: linear-gradient(rgba(6, 8, 15, .88), rgba(6, 8, 15, .62));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--nav-h); }
.logo { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-mono); font-size: .9rem; letter-spacing: .28em; text-transform: uppercase; color: var(--moon); }
.logo:hover { color: var(--moon); }
.logo-eyes { display: block; width: 40px; height: 18px; }
.nav-links { display: flex; gap: 1.5rem; margin-left: 1.25rem; font-size: var(--fs-small); color: var(--moon-70); flex: none; }
.nav-links a { white-space: nowrap; }
.nav-links a:hover { color: var(--moon); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: .6rem; flex: none; }
@media (max-width: 1280px) { .pill .nav-time, .pill .nav-time + .sep { display: none; } }
.pill {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: .55rem .9rem .55rem .75rem;
  color: var(--moon); white-space: nowrap; font-variant-numeric: tabular-nums;
  transition: border-color .25s;
}
.pill:hover { border-color: var(--amber); color: var(--moon); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--state-color); box-shadow: 0 0 10px var(--state-color); transition: background 1s ease, box-shadow 1s ease; }
html[data-state="hunting"] .pill .dot { animation: pulse-dot 2.4s ease-in-out infinite; }
.pill .sep { color: var(--moon-30); }
.pill .nav-time { color: var(--moon-50); }
.burger { display: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); position: relative; }
.burger::before, .burger::after { content: ''; position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--moon); transition: transform .3s, top .3s; }
.burger::before { top: 15px; } .burger::after { top: 23px; }
html.menu-open .burger::before { top: 19px; transform: rotate(45deg); }
html.menu-open .burger::after { top: 19px; transform: rotate(-45deg); }
.menu { position: fixed; inset: var(--nav-h) 0 0; z-index: 19; background: rgba(6, 8, 15, .96); display: none; flex-direction: column; padding: 2rem var(--gutter); gap: .5rem; }
html.menu-open .menu { display: flex; }
.menu > a { font-family: var(--font-display); font-size: 2.4rem; line-height: 1.2; padding: .4rem 0; border-bottom: 1px solid var(--line-soft); }
.menu .menu-actions { display: flex; gap: .75rem; margin-top: 1.5rem; flex-wrap: wrap; }
@media (max-width: 1080px) { .nav-links { display: none; } .burger { display: block; } }
@media (max-width: 720px) { .pill .nav-time, .pill .nav-time + .sep { display: none; } .nav .btn-buy { display: none; } .nav .icon-btn { display: none; } }
@media (max-width: 460px) { .logo span { display: none; } .pill { padding: .5rem .7rem; } }

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3rem, 6vw, 5rem); }
.ambient {
  position: absolute; inset: -20% -10% 0 0; pointer-events: none; z-index: 0;
  background: radial-gradient(closest-side at 74% 42%, rgba(245, 185, 66, .42), rgba(245, 185, 66, .10) 45%, transparent 72%);
  opacity: var(--ambient);
  transition: opacity 1.6s ease;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin: 0 0 1.5rem; }
.eyebrow .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px var(--amber); animation: pulse-dot 2s ease-in-out infinite; }
html[data-live="false"] .eyebrow { color: var(--moon-50); }
.status {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--fs-hero); line-height: .9; letter-spacing: -.015em;
  margin: 0 0 1.5rem; text-wrap: balance;
}
.status em { font-style: italic; color: var(--amber); }
.status em.swap { animation: swap .7s ease; }
.lede { font-size: var(--fs-lede); line-height: 1.45; color: var(--moon-70); max-width: 34ch; margin: 0 0 1.75rem; text-wrap: pretty; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.25rem; }

.hero-meta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem 2.5rem; align-items: center; padding: 1.5rem 0 0; border-top: 1px solid var(--line); max-width: 620px; }
.meta-grid { display: grid; grid-template-columns: auto auto; gap: 1.4rem 2.5rem; margin: 0; }
.meta-grid > div { margin: 0; min-width: 0; }
.meta-grid dt { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .16em; text-transform: uppercase; color: var(--moon-50); margin-bottom: .35rem; }
.meta-grid dd { margin: 0; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 1rem; color: var(--moon); }
.meta-grid dd.fee { font-size: 2.25rem; line-height: 1; color: var(--amber); letter-spacing: -.02em; }
.meta-grid .in { color: var(--moon-50); }
.meta-grid .clock { color: var(--moon-70); }
.meta-grid .backlive { display: none; margin-top: .4rem; color: var(--amber); }
.meta-grid .backlive:hover { color: var(--moon); }
html[data-live="false"] .meta-grid .backlive { display: block; }

.dial-wrap { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.dial { width: 136px; height: 136px; overflow: visible; display: block; }
.dial .track { fill: none; stroke: var(--line-soft); stroke-width: 10; }
.dial .arc { fill: none; stroke-width: 10; opacity: .92; transition: opacity .3s; cursor: pointer; }
.dial .arc.asleep { stroke: var(--ash); }
.dial .arc.stirring { stroke: var(--amber-dim); }
.dial .arc.awake { stroke: var(--amber-soft); }
.dial .arc.hunting { stroke: var(--amber); }
.dial .arc.dim { opacity: .3; }
.dial .hand { stroke: var(--moon); stroke-width: 2; stroke-linecap: round; }
.dial .hub { fill: var(--moon); }
.dial text { font-family: var(--font-mono); font-size: 7px; fill: var(--moon-50); text-anchor: middle; letter-spacing: .05em; }
.dial-cap { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--moon-50); }

.hero-owl { position: relative; display: flex; justify-content: center; }
.owl { width: 100%; max-width: 480px; height: auto; display: block; overflow: visible; }
.hero-tag { position: relative; z-index: 1; margin-top: clamp(2.5rem, 6vw, 5rem); display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem 2rem; }
.hero-tag .tagline { font-family: var(--font-display); font-style: italic; font-size: var(--fs-quote); line-height: 1.05; margin: 0; }
.hero-tag .sub { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .16em; text-transform: uppercase; color: var(--moon-50); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-owl { order: -1; }
  .owl { max-width: 250px; }
  .ambient { inset: -10% -20% 20% -20%; background: radial-gradient(closest-side at 50% 30%, rgba(245, 185, 66, .42), rgba(245, 185, 66, .10) 45%, transparent 72%); }
}
@media (max-width: 640px) { .hero-meta { grid-template-columns: 1fr; } .dial-wrap { align-items: flex-start; } }
@media (max-width: 520px) { .meta-grid { grid-template-columns: 1fr; gap: 1.1rem; } }

/* ---------- the owl ---------- */

.owl .lid { fill: var(--nest); transform: translateY(var(--lid)); transition: transform 1.1s cubic-bezier(.3, .7, .2, 1); }
.owl .ring { opacity: var(--ring); transition: opacity .9s ease; }
.owl .closed { opacity: var(--closed); transition: opacity .7s ease; }
.owl .glow { opacity: var(--eye-glow); transition: opacity 1.4s ease; transform-box: fill-box; transform-origin: center; }
.owl .pupil { transform: scale(var(--pupil)); transform-box: fill-box; transform-origin: center; transition: transform 1s ease; }
html[data-state="hunting"] .owl .glow { animation: breathe 4.4s ease-in-out infinite; }
.owl.blink .lid { animation: blink .26s ease-in-out; }

@keyframes blink { 0%, 100% { transform: translateY(var(--lid)); } 45%, 55% { transform: translateY(132px); } }
@keyframes breathe { 0%, 100% { opacity: var(--eye-glow); transform: scale(1); } 50% { opacity: calc(var(--eye-glow) * .72); transform: scale(1.07); } }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes swap { 0% { opacity: .2; transform: translateY(.08em); } 100% { opacity: 1; transform: none; } }

/* ---------- sections ---------- */

.section { padding-block: var(--section); border-top: 1px solid var(--line-soft); }
.section-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.5rem 3rem; margin-bottom: 2.25rem; }
.section-head .h2 { margin-bottom: 0; }
.section-tools { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.kicker { display: block; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin: 0 0 1.25rem; }
.h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h2); line-height: 1.02; letter-spacing: -.01em; margin: 0 0 1.5rem; text-wrap: balance; }
.h2 em { font-style: italic; color: var(--amber); }
.prose { max-width: 62ch; font-size: 1.125rem; line-height: 1.6; color: var(--moon-70); text-wrap: pretty; }
.prose p:first-child { color: var(--moon); }
.prose p:last-child { margin-bottom: 0; }
.sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.section-grid > * { min-width: 0; }
@media (max-width: 900px) { .section-grid { grid-template-columns: minmax(0, 1fr); } .sticky { position: static; } }

.figure { margin: 2rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--line); font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: var(--fs-small); color: var(--moon-70); display: grid; grid-template-columns: repeat(3, auto); gap: 1.5rem; width: fit-content; }
.figure b { display: block; font-size: 1.75rem; font-weight: 500; color: var(--moon); line-height: 1.1; margin-bottom: .3rem; }
.figure span { color: var(--moon-50); font-size: var(--fs-label); letter-spacing: .12em; text-transform: uppercase; }

.panel { min-width: 0; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.badge { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 999px; padding: .4rem .75rem; color: var(--moon-50); display: inline-flex; gap: .45rem; align-items: center; white-space: nowrap; }
.badge.sample { color: var(--amber); border-color: rgba(245, 185, 66, .45); display: none; }
html[data-sample="true"] .badge.sample { display: inline-flex; }
.badge.sample::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.search { display: flex; align-items: center; gap: .6rem; border-bottom: 1px solid var(--line); padding: .5rem 0; min-width: 240px; color: var(--moon-50); transition: border-color .25s; }
.search:focus-within { border-color: var(--amber); }
.search svg { width: 14px; height: 14px; flex: none; }
.search input { background: none; border: 0; color: var(--moon); font-family: var(--font-mono); font-size: .9rem; outline: none; width: 100%; }
.search input::placeholder { color: var(--moon-30); }

/* ---------- state table ---------- */

.states { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.states th { text-align: left; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .14em; text-transform: uppercase; color: var(--moon-50); font-weight: 500; padding: 0 1.25rem .9rem 0; border-bottom: 1px solid var(--line); }
.states td { padding: 1.1rem 1.25rem 1.1rem 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; font-size: var(--fs-small); color: var(--moon-70); }
.states tr[data-state] { cursor: pointer; transition: background .3s ease; }
.states tr[data-state]:hover td { color: var(--moon); }
.states tr.is-now td { color: var(--moon); }
.states tr.is-now .st-name::after { content: 'now'; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); background: var(--amber); border-radius: 999px; padding: .2em .6em .15em; margin-left: .25rem; }
.states tr.is-preview .st-name::after { content: 'preview'; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); border: 1px solid var(--amber); border-radius: 999px; padding: .2em .6em .15em; margin-left: .25rem; }
.states .st-name { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--moon); display: flex; align-items: center; gap: .7rem; white-space: nowrap; }
.sw { width: 12px; height: 12px; border-radius: 3px; flex: none; display: inline-block; }
.states .st-hours { font-family: var(--font-mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
.states .st-fee { font-family: var(--font-mono); font-size: 1.35rem; color: var(--amber); white-space: nowrap; }
.states .st-logic { max-width: 34ch; }
.table-note { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; margin-top: 1rem; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; color: var(--moon-50); }
.btn-live { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .14em; text-transform: uppercase; color: var(--amber); border: 1px solid var(--amber); border-radius: 999px; padding: .45rem .9rem; }
.btn-live:hover { background: var(--amber); color: var(--ink); }
.preview-only { display: none !important; }
html[data-live="false"] .preview-only { display: inline-flex !important; }
html[data-live="false"] .live-only { display: none !important; }

@media (max-width: 720px) {
  .states thead { display: none; }
  .states, .states tbody, .states tr, .states td { display: block; }
  .states tr { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
  .states td { padding: .25rem 0; border: 0; }
  .states .st-name { margin-bottom: .35rem; }
  .states .st-logic { max-width: none; }
}

.sw-asleep { background: var(--ash); }
.sw-stirring { background: var(--amber-dim); }
.sw-awake { background: var(--amber-soft); }
.sw-hunting { background: var(--amber); box-shadow: 0 0 10px rgba(245, 185, 66, .55); }

/* ---------- week strip ---------- */

.week-wrap { margin-top: clamp(3rem, 6vw, 5rem); }
.week-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: .5rem 2rem; margin-bottom: 1.25rem; }
.week-head h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.75rem; margin: 0; }
.week {
  --daycol: 4.25rem;
  position: relative;
  display: grid;
  grid-template-columns: var(--daycol) minmax(0, 1fr);
  column-gap: .75rem; row-gap: 7px;
  align-items: center;
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
}
.week-axis { grid-column: 2; position: relative; height: 1.4rem; font-size: .7rem; color: var(--moon-50); letter-spacing: .06em; }
.week-axis span { position: absolute; top: 0; transform: translateX(-50%); white-space: nowrap; }
.week-axis span:first-child { transform: none; }
.week-axis span:last-child { transform: translateX(-100%); }
.week-day { grid-column: 1; font-size: .8rem; color: var(--moon-70); white-space: nowrap; }
.week-day small { color: var(--moon-30); font-size: .7rem; margin-left: .2rem; }
.week-day.today { color: var(--moon); }
.week-bar { grid-column: 2; position: relative; height: 24px; }
.week-bar.today::before { content: ''; position: absolute; inset: -4px -4px; border-radius: 6px; border: 1px solid var(--line); pointer-events: none; }
.seg { position: absolute; top: 0; bottom: 0; border-radius: 3px; }
.seg-asleep { background: var(--ash); }
.seg-stirring { background: var(--amber-dim); }
.seg-awake { background: var(--amber-soft); }
.seg-hunting { background: var(--amber); }
.seg:hover { outline: 1px solid var(--moon); outline-offset: 0; }
.week-now { position: absolute; top: calc(1.4rem + 7px); bottom: 0; width: 1px; background: var(--moon); opacity: .55; left: calc(var(--daycol) + .75rem + (100% - var(--daycol) - .75rem) * var(--now, 0)); pointer-events: none; }
.week-now::after { content: ''; position: absolute; left: 50%; top: var(--now-top, 0); width: 11px; height: 11px; border-radius: 50%; background: var(--moon); box-shadow: 0 0 0 3px var(--ink); transform: translate(-50%, -50%); }
.week-legend { display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; margin: 1.25rem 0 0; padding: 0; list-style: none; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .08em; color: var(--moon-70); }
.week-legend li { display: inline-flex; align-items: center; gap: .55rem; }
.week-legend b { font-weight: 500; color: var(--moon); }
.week-caption { margin-top: 1.5rem; font-size: var(--fs-small); color: var(--moon-50); max-width: 64ch; }
.tip { position: fixed; z-index: 50; pointer-events: none; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .04em; color: var(--moon); background: var(--nest); border: 1px solid var(--line); border-radius: 6px; padding: .45rem .65rem; white-space: nowrap; transform: translate(-50%, calc(-100% - 12px)); opacity: 0; transition: opacity .15s ease; }
.tip.show { opacity: 1; }
@media (max-width: 600px) { .week { --daycol: 2.5rem; } .week-day small { display: none; } .week-axis span:nth-child(3) { display: none; } }

/* ---------- streams ---------- */

.streams { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; margin-top: clamp(3rem, 6vw, 5rem); padding-top: 2rem; border-top: 1px solid var(--line); }
.streams h3 { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .16em; text-transform: uppercase; color: var(--amber); font-weight: 500; margin: 0 0 .75rem; }
.streams p { color: var(--moon-70); margin: 0; max-width: 40ch; text-wrap: pretty; }
.streams p strong { color: var(--moon); }
@media (max-width: 720px) { .streams { grid-template-columns: 1fr; } }

/* ---------- nests ---------- */

.nests-panel { overflow: hidden; }
.nests { width: 100%; border-collapse: collapse; }
.nests th { text-align: left; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moon-50); font-weight: 500; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--line); cursor: pointer; user-select: none; white-space: nowrap; transition: color .2s; }
.nests th:hover { color: var(--moon); }
.nests th.num, .nests td.num { text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.nests th[data-dir]::after { content: '▾'; margin-left: .45rem; color: var(--amber); }
.nests th[data-dir="asc"]::after { content: '▴'; }
.nests td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--line-soft); color: var(--moon-70); font-size: .95rem; transition: background .2s, color .2s; }
.nests tr.nest { cursor: pointer; }
.nests tr.nest:hover td { background: rgba(245, 185, 66, .05); color: var(--moon); }
.nests tr.nest.open td { background: rgba(245, 185, 66, .07); color: var(--moon); border-bottom-color: transparent; }
.nests tr.nest td:first-child { border-radius: 0; }
.n-pair { display: flex; align-items: center; gap: .8rem; color: var(--moon); font-weight: 500; white-space: nowrap; }
.n-pair .tk { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; border: 1px solid var(--line); border-radius: 6px; padding: .28rem .45rem; color: var(--amber); min-width: 3.6rem; text-align: center; }
.n-pair small { color: var(--moon-50); font-weight: 400; }
.nests td.num.fees { color: var(--moon); }
.nest-detail td { padding: 0; border-bottom: 0; }
.nest-detail.open td { border-bottom: 1px solid var(--line-soft); }
.detail-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.3, .7, .2, 1); }
.nest-detail.open .detail-wrap { grid-template-rows: 1fr; }
.detail-inner { overflow: hidden; }
.detail { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto; gap: 1.5rem 3rem; padding: .5rem 1.25rem 1.75rem; align-items: start; background: rgba(245, 185, 66, .04); }
.detail h4 { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--moon-50); font-weight: 500; margin: 0 0 .75rem; }
.detail .fee-now { font-family: var(--font-mono); font-size: 1.6rem; color: var(--amber); line-height: 1; margin-bottom: .9rem; }
.detail .fee-now small { font-size: .75rem; color: var(--moon-50); letter-spacing: .1em; text-transform: uppercase; margin-left: .5rem; }
.by-state-mini { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; font-family: var(--font-mono); font-size: .75rem; color: var(--moon-70); }
.by-state-mini li { display: grid; grid-template-columns: 5.2rem 1fr 3rem; align-items: center; gap: .6rem; }
.by-state-mini .bar { height: 4px; background: var(--line-soft); border-radius: 2px; overflow: hidden; }
.by-state-mini .bar i { display: block; height: 100%; }
.by-state-mini .pct { text-align: right; color: var(--moon); }
.spark { width: 100%; height: 72px; display: block; }
.spark-cap { font-family: var(--font-mono); font-size: .68rem; color: var(--moon-30); margin-top: .4rem; display: flex; justify-content: space-between; }
.detail-actions { display: flex; flex-direction: column; gap: .6rem; align-items: stretch; min-width: 12rem; }
.detail-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.25rem; font-family: var(--font-mono); font-size: .8rem; color: var(--moon-50); margin-bottom: .75rem; }
.detail-stats b { display: block; color: var(--moon); font-weight: 500; font-size: .95rem; }
.table-foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.25rem; font-family: var(--font-mono); font-size: .78rem; color: var(--moon-50); }
.table-foot button { color: var(--amber); letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; }
.table-foot button:hover { color: var(--moon); }
.nests .empty td { text-align: center; padding: 2.5rem; color: var(--moon-50); }

@media (max-width: 800px) {
  .nests thead { display: none; }
  .nests, .nests tbody { display: block; }
  .nests tr.nest { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line-soft); }
  .nests tr.nest td { display: block; padding: 0; border: 0; background: none !important; }
  .nests tr.nest td:first-child { grid-column: 1 / -1; margin-bottom: .35rem; }
  .nests td.num { text-align: left; }
  .nests td.num::before { content: attr(data-label); display: block; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moon-30); }
  .nest-detail { display: block; }
  .nest-detail td { display: block; }
  .detail { grid-template-columns: 1fr; }
  .nests .empty { display: block; }
}

/* ---------- stats ---------- */

.tiles { display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; }
.tile { grid-column: span 3; background: var(--panel); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.35rem 1.5rem 1.4rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); min-height: 150px; display: flex; flex-direction: column; gap: .55rem; transition: border-color .3s; }
.tile:hover { border-color: var(--line); }
.tile.big { grid-column: span 6; }
.tile-label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--moon-50); }
.tile-value { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 2rem; color: var(--moon); letter-spacing: -.02em; line-height: 1; }
.tile.big .tile-value { font-size: 2.75rem; }
.tile-value.amber { color: var(--amber); }
.tile-note { font-size: .85rem; color: var(--moon-50); margin-top: auto; line-height: 1.4; }
@media (max-width: 1000px) { .tile, .tile.big { grid-column: span 6; } }
@media (max-width: 560px) { .tile, .tile.big { grid-column: span 12; min-height: 0; } .tile.big .tile-value { font-size: 2.25rem; } }

.chart { margin-top: 10px; padding: 1.5rem 1.5rem 1.25rem; }
.chart-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.chart-head h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; margin: 0; }
.chart canvas { width: 100%; height: 260px; display: block; }
.by-state { list-style: none; margin: 1.25rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--line-soft); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem 2rem; }
.by-state li { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .06em; color: var(--moon-70); }
.by-state li span { display: inline-flex; align-items: center; gap: .5rem; }
.by-state b { display: block; font-size: 1.5rem; color: var(--moon); font-weight: 500; margin: .3rem 0 .55rem; letter-spacing: -.02em; }
.by-state .bar { height: 4px; background: var(--line-soft); border-radius: 2px; overflow: hidden; }
.by-state .bar i { display: block; height: 100%; }
@media (max-width: 640px) { .by-state { grid-template-columns: 1fr 1fr; } .chart canvas { height: 200px; } }

/* ---------- the hunt ---------- */

.split { margin-top: 1rem; }
.split-bar { display: flex; gap: 2px; height: 34px; }
.split-bar i { display: block; border-radius: 3px; }
.s-lp { background: var(--amber); }
.s-buy { background: var(--moon); }
.s-tr { background: var(--ash); }
.split-legend { list-style: none; margin: 1.1rem 0 0; padding: 0; display: flex; gap: 2px; }
.split-legend li { font-family: var(--font-mono); font-size: var(--fs-small); color: var(--moon-70); line-height: 1.3; }
.split-legend b { display: block; font-size: 1.5rem; font-weight: 500; color: var(--moon); }
.split-legend .sw { width: 10px; height: 10px; border-radius: 2px; margin-right: .45rem; vertical-align: middle; }
.split-legend li:nth-child(1) { flex: 70; }
.split-legend li:nth-child(2) { flex: 20; min-width: 9rem; }
.split-legend li:nth-child(3) { flex: 10; min-width: 7rem; }
@media (max-width: 720px) { .split-legend { flex-direction: column; gap: .75rem; } .split-legend li { flex: none !important; } .split-legend b { display: inline; margin-right: .5rem; } }

.hunt-window { margin-top: 2.5rem; padding: 1.5rem 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: .4rem 2.5rem; align-items: baseline; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.hunt-window .label { grid-column: 1; }
.hunt-window .val { grid-column: 2; color: var(--moon); }
.hunt-window .val b { font-weight: 500; color: var(--amber); }
.hunt-window .val span { color: var(--moon-50); }
.hunt-window .val .sep { color: var(--moon-30); }
.hunt-rule { margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.6rem; line-height: 1.2; color: var(--moon); max-width: 26ch; text-wrap: balance; }
.hunt-log-wrap { margin-top: 2.5rem; }
.hunt-log-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: .5rem 1.5rem; margin-bottom: 1rem; }
.hunt-log-head h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; margin: 0; }
.hunt-log { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: .82rem; }
.hunt-log th { text-align: left; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moon-50); font-weight: 500; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line); white-space: nowrap; }
.hunt-log td { padding: .75rem 1.1rem; border-bottom: 1px solid var(--line-soft); color: var(--moon-70); white-space: nowrap; }
.hunt-log th.num, .hunt-log td.num { text-align: right; }
.hunt-log td.owl { color: var(--amber); }
.hunt-log tr:last-child td { border-bottom: 0; }
.hunt-log .st { display: inline-flex; align-items: center; gap: .45rem; }
.hunt-log .tx { color: var(--moon-30); }
.hunt-log-scroll { overflow-x: auto; }

/* ---------- token ---------- */

.specs { margin: 0; display: grid; grid-template-columns: max-content 1fr; }
.specs dt, .specs dd { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); margin: 0; }
.specs dt { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .14em; text-transform: uppercase; color: var(--moon-50); padding-right: 2.5rem; padding-top: 1.2rem; }
.specs dd { color: var(--moon); font-size: 1.0625rem; }
.specs dd .mono { color: var(--amber); }
.specs dd small { display: block; color: var(--moon-50); font-size: var(--fs-small); }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
@media (max-width: 520px) { .specs { grid-template-columns: 1fr; } .specs dt { border: 0; padding-bottom: 0; } .specs dd { padding-top: .35rem; } }

/* ---------- parliament ---------- */

.lore { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 3rem; margin-top: .5rem; }
.lore h3 { font-family: var(--font-display); font-weight: 400; font-size: 2rem; line-height: 1; margin: 0 0 .6rem; }
.lore h3 em { font-style: italic; color: var(--amber); }
.lore p { color: var(--moon-70); margin: 0; max-width: 30ch; }
@media (max-width: 720px) { .lore { grid-template-columns: 1fr; } }

/* ---------- closing ---------- */

.closing { position: relative; overflow: hidden; text-align: center; padding-block: clamp(6rem, 14vw, 12rem); border-top: 1px solid var(--line-soft); }
.closing .ambient { inset: 0; background: radial-gradient(closest-side at 50% 100%, rgba(245, 185, 66, .32), transparent 70%); }
.closing .big { position: relative; font-family: var(--font-display); font-weight: 400; font-size: clamp(2.5rem, 6.5vw, 5.5rem); line-height: 1; letter-spacing: -.015em; margin: 0 auto 1.75rem; max-width: 16ch; text-wrap: balance; }
.closing .big em { font-style: italic; color: var(--amber); }
.closing .small { position: relative; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .18em; text-transform: uppercase; color: var(--moon-50); margin: 0 0 2rem; }
.closing .cta-row { position: relative; justify-content: center; margin-top: 0; }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--line); padding-block: 3rem 3.5rem; font-size: var(--fs-small); color: var(--moon-50); background: rgba(6, 8, 15, .7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 2.5rem 4rem; }
.risk { max-width: 68ch; color: var(--moon-70); }
.risk .label { display: block; margin-bottom: .75rem; }
.risk p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin: 0 0 1.5rem; padding: 0; list-style: none; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { color: var(--moon); }
.footer-links a:hover { color: var(--amber); }
.footer .fine { font-family: var(--font-mono); font-size: .75rem; line-height: 1.7; color: var(--moon-30); }
.footer .fine b { color: var(--moon-50); font-weight: 500; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; color: var(--moon-30); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- drawer ---------- */

.scrim { position: fixed; inset: 0; z-index: 39; background: rgba(4, 6, 11, .62); opacity: 0; pointer-events: none; transition: opacity .35s ease; }
html.drawer-open .scrim { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 40; width: min(470px, 100%);
  background: rgba(9, 12, 22, .94); border-left: 1px solid var(--line);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  transform: translateX(102%); transition: transform .5s cubic-bezier(.3, .7, .2, 1);
  display: flex; flex-direction: column; overflow-y: auto; visibility: hidden;
}
html.drawer-open .drawer { transform: none; visibility: visible; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 1.75rem 1rem; }
.drawer-title { font-family: var(--font-display); font-size: 2rem; line-height: 1; margin: 0; }
.drawer-title em { font-style: italic; color: var(--amber); }
.drawer-close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--moon-70); transition: border-color .25s, color .25s; }
.drawer-close:hover { border-color: var(--amber); color: var(--amber); }
.tabs { display: flex; gap: .25rem; padding: 0 1.75rem; border-bottom: 1px solid var(--line-soft); }
.tab { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; padding: .85rem 1rem; color: var(--moon-50); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.tab:hover { color: var(--moon); }
.tab[aria-selected="true"] { color: var(--amber); border-color: var(--amber); }
.tab-panel { display: none; padding: 1.5rem 1.75rem 2rem; flex-direction: column; gap: 1.25rem; }
.tab-panel.active { display: flex; }
.field label { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--moon-50); margin-bottom: .5rem; }
.field select, .field input { width: 100%; background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px; color: var(--moon); font-family: var(--font-mono); font-size: 1.05rem; padding: .85rem 1rem; outline: none; transition: border-color .25s; -webkit-appearance: none; appearance: none; }
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23E9E5D8' stroke-width='1.5'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field select:focus, .field input:focus { border-color: var(--amber); }
.field .hint { font-family: var(--font-mono); font-size: .7rem; color: var(--moon-30); margin-top: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.q-now { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; border: 1px solid rgba(245, 185, 66, .35); border-radius: 12px; background: rgba(245, 185, 66, .06); }
.q-now .l { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moon-50); }
.q-now .s { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.1; color: var(--moon); }
.q-now b { font-family: var(--font-mono); font-size: 1.9rem; font-weight: 500; color: var(--amber); letter-spacing: -.02em; white-space: nowrap; }
.q-now small { display: block; font-family: var(--font-mono); font-size: .72rem; color: var(--moon-50); text-align: right; }
.q-states { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: .85rem; }
.q-states td { padding: .6rem 0; border-bottom: 1px solid var(--line-soft); color: var(--moon-70); }
.q-states td:first-child { display: flex; align-items: center; gap: .55rem; }
.q-states td.num { text-align: right; color: var(--moon); }
.q-states td.rate { color: var(--moon-50); text-align: right; }
.q-states tr.is-now td { color: var(--amber); }
.q-next { font-family: var(--font-mono); font-size: .8rem; color: var(--moon-50); line-height: 1.6; }
.q-next b { color: var(--moon); font-weight: 500; }
.result { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.result div { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--panel-2); }
.result .l { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moon-50); margin-bottom: .45rem; }
.result b { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 500; color: var(--moon); letter-spacing: -.02em; }
.drawer-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.drawer-note { font-family: var(--font-mono); font-size: .7rem; line-height: 1.6; color: var(--moon-30); }
@media (max-width: 640px) {
  .drawer { top: auto; width: 100%; height: 90vh; border-left: 0; border-top: 1px solid var(--line); border-radius: 20px 20px 0 0; transform: translateY(102%); }
}

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .owl .lid, .owl .ring, .owl .closed, .owl .glow, .owl .pupil, .ambient, .drawer, .scrim, .detail-wrap { transition-duration: .01s; }
  html[data-state="hunting"] .owl .glow, html[data-state="hunting"] .pill .dot, .eyebrow .live-dot, .owl.blink .lid, .status em.swap { animation: none; }
}

/* ---------- intro: pinned scenes ---------- */

.nav { background: rgba(6, 8, 15, .97); backdrop-filter: none; -webkit-backdrop-filter: none; }
.story { position: relative; height: 540vh; z-index: 2; }
.stage { position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); height: calc(100svh - var(--nav-h)); overflow: hidden; }
.scene {
  position: absolute; inset: 0; margin: 0 auto; max-width: var(--container); padding: 0 var(--gutter);
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; gap: clamp(1.5rem, 4vw, 4rem);
  opacity: 0; visibility: hidden; will-change: opacity;
}
.scene-text { position: relative; z-index: 2; will-change: transform; }
.scene-art { position: relative; height: min(76vh, 720px); display: flex; align-items: center; justify-content: center; will-change: transform; }
.scene-art > svg, .scene-art > canvas { width: 100%; height: 100%; display: block; }
.scene-art > canvas { position: absolute; inset: 0; }
.big-sentence { font-family: var(--font-body); font-weight: 400; font-size: clamp(1.5rem, 2.55vw, 2.3rem); line-height: 1.32; color: var(--moon); max-width: 22ch; margin: 0; text-wrap: pretty; letter-spacing: -.005em; }
.scene-live { display: inline-flex; align-items: center; gap: .6rem; margin: 1.5rem 0 0; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--moon-50); }
.scene-live .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px var(--amber); animation: pulse-dot 2s ease-in-out infinite; }
.owl-perch { max-width: none; }
.scene-final .status { margin-bottom: 1.25rem; }
.scene-final .tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 2.6vw, 2.4rem); line-height: 1.1; margin: 0 0 1.25rem; color: var(--moon); }
.scene-final .eyebrow { margin-bottom: 1.25rem; }
.scene-fee { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moon-50); margin: 0; }
.scene-fee b { font-weight: 500; color: var(--amber); font-size: 1.1rem; margin-left: .4rem; letter-spacing: 0; }
.scene-final .scene-art .owl { max-width: 520px; }

.scene-art-dial { flex-direction: column; gap: 1.25rem; }
.dial-lg { width: min(62vh, 520px); height: min(62vh, 520px); }
.dial-lg text { font-size: 5.2px; fill: var(--moon-70); }
.dial-lg .track { stroke-width: 12; }
.dial-lg .arc { stroke-width: 12; }
.dial-lg .hand { stroke-width: 1.4; }
.dial-key { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.5rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--moon-70); }
.dial-key li { display: inline-flex; align-items: center; gap: .5rem; }

.scene-art-split { flex-direction: column; }
.split-labels { position: absolute; left: 0; right: 0; bottom: 2%; margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--moon-50); text-align: center; pointer-events: none; }
.split-labels li { padding: 0 .5rem; }
.split-labels li:nth-child(1) { transform: translateX(-30%); }
.split-labels li:nth-child(2) { transform: translateX(5%); }
.split-labels li:nth-child(3) { transform: translateX(32%); }
.split-labels b { display: block; font-weight: 500; font-size: 1.25rem; color: var(--moon); letter-spacing: -.02em; margin-bottom: .2rem; }

.story-dots { position: fixed; right: 14px; top: 50%; transform: translateY(-50%); z-index: 15; display: flex; flex-direction: column; gap: 12px; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.story-dots.show { opacity: 1; pointer-events: auto; }
.story-dots button { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; }
.story-dots button::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--moon-30); transition: background .25s, box-shadow .25s, transform .25s; }
.story-dots button:hover::before { background: var(--moon); }
.story-dots button.on::before { background: var(--amber); box-shadow: 0 0 10px var(--amber); transform: scale(1.25); }

.now { border-top: 0; }
.now .hero-meta { max-width: none; border-top: 0; padding-top: 0; }
.now .lede { margin-bottom: 1.75rem; }

@media (max-width: 900px) {
  .scene { grid-template-columns: 1fr; grid-template-rows: minmax(0, 1fr) auto; align-content: center; padding-bottom: 2.5rem; gap: 1rem; }
  .scene-art { order: -1; height: 44vh; height: 44svh; }
  .scene-final .scene-art .owl { max-width: 260px; }
  .dial-lg { width: min(38vh, 300px); height: min(38vh, 300px); }
  .big-sentence { max-width: none; }
  .story-dots { right: 8px; }
}
@media (max-width: 640px) { .story { height: 520vh; } .dial-key { gap: .4rem .9rem; font-size: .62rem; } .split-labels { font-size: .6rem; } }

@media (prefers-reduced-motion: reduce) {
  .story { height: auto; }
  .stage { position: static; height: auto; overflow: visible; }
  .scene { position: relative; inset: auto; opacity: 1 !important; visibility: visible !important; min-height: 70vh; padding-block: 3rem; }
  .scene-art, .scene-text { transform: none !important; }
  .story-dots { display: none; }
}
