/* ============================================
   DDD Hero — Terminal rebuild
   Bloomberg-meets-modern live market terminal.
   Scoped to the .dt-* namespace so legacy hero
   styles in index.css no longer apply.
   ============================================ */

/* dt-* design tokens. Hoisted to html.dt-page so the ticker and topbar
   (now siblings of .dt rather than children) still inherit them. */
html.dt-page,
.dt {
  --dt-bg: #0a0d12;
  --dt-bg-card: #0f1318;
  --dt-border: #1f262f;
  --dt-fg: #e8eaed;
  --dt-fg-dim: #bac3ce;
  --dt-fg-faint: #8b95a3;
  --dt-teal: #7dd3c0;
  --dt-teal-lit: #a7f3d0;
  --dt-red: #f87171;

  --dt-serif: 'Fraunces', Georgia, serif;
  --dt-mono: 'IBM Plex Mono', 'SF Mono', Menlo, monospace;
  --dt-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Allow the page to scroll past the hero. Overrides index.css:7–17
   and the @media (max-width: 768px) html/body overflow rules in
   index.css, which locked html/body/.page to 100vh for the old
   single-screen layout.
   IMPORTANT: only html is the scroll container. Body uses overflow-x:
   clip + overflow-y: visible so position:sticky descendants
   (e.g. .dt-topbar) walk up to html for their scroll context. If body
   were also a scroll container (overflow-y: auto), sticky would attach
   to body (which never scrolls) and silently fail. We use `clip`
   instead of `hidden` for overflow-x because the CSS spec converts
   `overflow-y: visible` to `auto` whenever overflow-x is `hidden` or
   `auto` — `clip` is the only value that suppresses overflow without
   triggering that conversion. The !important is required to defeat the
   `body { overflow: hidden auto }` rule inside index.css's
   @media (max-width: 768px) block. */
html.dt-page {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}
html.dt-page body {
  height: auto !important;
  overflow-x: clip !important;
  overflow-y: visible !important;
}
html.dt-page .page {
  height: auto;
  min-height: 100vh;
}

/* Container sits above the background map. Transparent so the world-map
   canvas (#bgCanvas) + payment comets show through the ticker, top bar,
   hero, and bottom bar. The formula card and stats cells below provide
   their own opaque backgrounds so their content reads cleanly. */
.dt {
  position: relative;
  z-index: 3;
  color: var(--dt-fg);
  background: transparent;
  font-family: var(--dt-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

/* Subtle 40px grid overlay above the map, below the terminal surface.
   Very low alpha so it doesn't fight the payment-comet visuals. */
.dt-grid {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(125, 211, 192, 0.012) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(125, 211, 192, 0.012) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ---------- 1. Ticker ---------- */
.dt-ticker {
  height: 44px;
  border-bottom: 1px solid var(--dt-border);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
}
.dt-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-left: 2.5rem;
  animation: dt-ticker-scroll 40s linear infinite;
  will-change: transform;
}
.dt-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--dt-mono);
  font-size: 12px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.dt-ticker-main {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.dt-ticker-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  flex-shrink: 0;
}
.dt-ticker-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dt-ticker-logo--fallback {
  background: rgba(45,212,191,0.14);
  color: var(--dt-teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.dt-ticker-sym {
  color: var(--dt-fg);
  font-weight: 500;
}
.dt-ticker-supply {
  color: var(--dt-fg-dim);
}
.dt-ticker-delta {
  color: var(--dt-teal);
}
.dt-ticker-delta.is-down {
  color: var(--dt-red);
}
@keyframes dt-ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.dt-ticker.is-loading .dt-ticker-track {
  animation: none;
  opacity: 0.35;
}

/* ---------- 2. Top bar ----------
   Sticky across the whole page scroll. Sits above the world-map canvas
   (z:0), grid (z:1), story overlay (z:2), and .dt surface (z:3) with
   a blurred translucent background so scrolling content reads through. */
.dt-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--nav-max-w, 1200px);
  min-height: 48px;
  margin: 0 auto;
  padding: 0 20px;
  border-bottom: 0;
  gap: 1rem;
  background: transparent;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  isolation: isolate;
}
.dt-topbar::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: rgba(10,14,20,0.88);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.dt-topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.dt-brand {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  gap: 0.4rem;
  font-family: var(--dt-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--dt-fg-dim);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.dt-brand svg {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
  transform: translateY(-1px);
}
.dt-live {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--dt-mono);
  font-size: 11px;
  color: var(--dt-fg-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.dt-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dt-teal);
  box-shadow: 0 0 5px rgba(125, 211, 192, 0.36);
}
.dt-live.is-stale .dt-live-dot {
  background: #f59e0b;
  box-shadow: none;
  animation: none;
}
@keyframes dt-live-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.dt-live-label {
  color: var(--dt-teal);
}
.dt-live.is-stale .dt-live-label {
  color: #f59e0b;
}
.dt-live-sep {
  color: var(--dt-fg-faint);
}
.dt-menu {
  font-family: var(--dt-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dt-teal);
  background: transparent;
  border: none;
  min-height: 44px;
  min-width: 44px;
  padding: 0.4rem 0;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 160ms ease;
}
.dt-menu:hover {
  opacity: 1;
}

/* ---------- 3. Hero block ---------- */
.dt-hero {
  display: none;
}
.dt-hero-right {
  display: flex;
  justify-content: flex-end;
  align-self: start;
  padding-top: 76px;
}
/* Soft vignette behind the headline so the 1/71 figure and DDD Ratio card
   stay legible over the world-map canvas and in-flight payment comets. */
.dt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 80% at 25% 45%,
    rgba(10, 13, 18, 0.85) 0%,
    rgba(10, 13, 18, 0.55) 45%,
    rgba(10, 13, 18, 0) 85%
  );
}
.dt-kicker {
  font-family: var(--dt-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--dt-fg-faint);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 22px;
  line-height: 1.45;
}
.dt-kicker-brand {
  display: block;
  margin-bottom: 6px;
  color: var(--dt-fg-dim);
  letter-spacing: 0.18em;
}
.dt-kicker-sub {
  display: block;
  color: var(--dt-fg-faint);
}
.dt-hero-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--dt-teal-lit);
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}
.dt-hero-asof {
  margin: 0 0 0.7rem;
  color: rgba(232, 234, 237, 0.46);
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}
.dt-what-is {
  max-width: 34rem;
  margin: 0 auto 0.95rem;
  font-family: var(--dt-sans);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.35;
  color: rgba(232, 234, 237, 0.84);
}
.dt-headline {
  font-family: var(--dt-serif);
  font-weight: 400;
  font-size: clamp(72px, 11vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--dt-fg);
  margin: 0 0 20px;
  font-variant-numeric: tabular-nums lining-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 0.055em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.38), 0 2px 8px rgba(0, 0, 0, 0.34);
}
.dt-headline-num,
.dt-headline-ratio {
  display: inline-block;
}
.dt-headline-slash {
  color: rgba(232, 234, 237, 0.72);
  margin: 0 0.04em;
  font-weight: 300;
  font-family: var(--dt-mono);
  font-size: 0.21em;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.dt-headline-ratio {
  color: var(--dt-fg);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.38), 0 2px 8px rgba(0, 0, 0, 0.34);
  transition: opacity 400ms ease;
}
.dt-headline-ratio.is-swapping {
  opacity: 0;
}
.dt-subhead {
  font-family: var(--dt-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--dt-fg-dim);
  line-height: 1.6;
  max-width: 49ch;
  margin: 0;
}

/* Single quiet live-drift line: intentionally no border/background so it
   never reads as a card competing with the dated hero reading above it. */
.dt-hero-live-drift {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0.65rem 0 0;
  font-family: var(--dt-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: rgba(232, 234, 237, 0.42);
}
.dt-hero-live-drift[hidden] { display: none; }
.dt-hero-live-drift-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dt-teal);
  animation: dt-hero-live-pulse 2.6s ease-in-out infinite;
}
.dt-hero-live-drift #heroLiveDriftText.is-pos { color: rgba(125, 211, 192, 0.72); }
.dt-hero-live-drift #heroLiveDriftText.is-neg { color: rgba(255, 177, 177, 0.62); }

/* Proof/source strip: second-most-important layer after the hero reading.
   Left-aligned and legible (sans, not dim centred mono) so it reads as
   credible attribution rather than terminal chrome. */
.dt-proof-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  max-width: 30rem;
  margin: 1rem 0 0;
  font-family: var(--dt-sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  color: rgba(232, 234, 237, 0.78);
}

.dt-proof-strip-row {
  display: block;
}

.dt-proof-strip-sources {
  font-family: var(--dt-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.5);
}

.dt-proof-strip a {
  color: rgba(232, 234, 237, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 192, 0.4);
}

.dt-proof-strip a:hover {
  color: var(--dt-teal-lit);
  border-bottom-color: rgba(125, 211, 192, 0.8);
}

/* CTA hierarchy: one primary action, a small secondary row, a quiet tertiary
   link. Left-aligned to match the proof strip above, since both sit below
   the centered headline as the page's second altitude. */
.dt-hero-cta-row {
  margin: 1.1rem 0 0;
  text-align: left;
}
.dt-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--dt-teal-lit);
  color: #06140f;
  font-family: var(--dt-sans);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.dt-hero-cta-primary:hover {
  background: #99eed9;
}

.dt-hero-secondary-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  font-family: var(--dt-sans);
  font-size: 12.5px;
  color: rgba(232, 234, 237, 0.62);
}
.dt-hero-secondary-sep {
  color: rgba(125, 211, 192, 0.4);
}
.dt-hero-secondary-link {
  color: rgba(232, 234, 237, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 192, 0.28);
}
.dt-hero-secondary-link:hover {
  color: var(--dt-teal-lit);
  border-bottom-color: rgba(125, 211, 192, 0.62);
}
.dt-hero-secondary-link[hidden] { display: none; }

.dt-hero-tertiary {
  display: block;
  margin: 0.6rem 0 0;
  color: rgba(232, 234, 237, 0.4);
  font-family: var(--dt-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}
.dt-hero-tertiary:hover {
  color: rgba(232, 234, 237, 0.68);
}

.dt-cite-button {
  color: rgba(232, 234, 237, 0.78);
  text-decoration: none;
  border: 0;
  border-bottom: 1px solid rgba(125, 211, 192, 0.28);
  background: transparent;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.dt-cite-button:hover,
.dt-cite-button.is-copied {
  color: var(--dt-teal-lit);
  border-bottom-color: rgba(125, 211, 192, 0.62);
}

/* Citation wrap + panel */
.dt-cite-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.dt-cite-button {
  color: rgba(45, 212, 191, 0.85);
  border-bottom-color: rgba(45, 212, 191, 0.4);
  font-weight: 500;
}
.dt-cite-panel {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  min-width: 22rem;
  max-width: min(90vw, 28rem);
  background: rgba(10, 14, 20, 0.97);
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 8px;
  padding: 0.75rem 0.85rem 0.65rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(232, 234, 237, 0.72);
}
.dt-cite-panel::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(45, 212, 191, 0.18);
}
.dt-cite-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(45, 212, 191, 0.7);
}
.dt-cite-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(232, 234, 237, 0.4);
  font-size: 13px;
  line-height: 1;
  padding: 0;
  transition: color 0.15s;
}
.dt-cite-close:hover { color: rgba(232, 234, 237, 0.8); }
.dt-cite-formats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.dt-cite-format {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.45rem 0.5rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}
.dt-cite-format-body { flex: 1; min-width: 0; }
.dt-cite-format-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(45, 212, 191, 0.6);
  margin-bottom: 2px;
}
.dt-cite-format-text {
  font-size: 9.5px;
  line-height: 1.45;
  color: rgba(232, 234, 237, 0.55);
  word-break: break-all;
  white-space: pre-wrap;
}
.dt-cite-copy-btn {
  flex-shrink: 0;
  align-self: flex-start;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 3px;
  color: rgba(45, 212, 191, 0.75);
  font-family: var(--dt-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.2rem 0.45rem;
  transition: background 0.15s, color 0.15s;
}
.dt-cite-copy-btn:hover { background: rgba(45, 212, 191, 0.15); color: var(--dt-teal-lit); }
.dt-cite-copy-btn.is-copied { background: rgba(45, 212, 191, 0.2); color: var(--dt-teal-lit); }

.dt-dot-explainer {
  max-width: 42rem;
  margin: 1rem 0 0;
  padding: 0.7rem 0.9rem;
  border-left: 2px solid rgba(125, 211, 192, 0.9);
  background: linear-gradient(90deg, rgba(10, 13, 18, 0.56), rgba(10, 13, 18, 0.18));
  color: rgba(232, 234, 237, 0.82);
  font-family: var(--dt-sans);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
}

.dt-dot-explainer strong {
  color: var(--dt-teal);
  font-weight: 600;
}

.dt-dot-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-top: 0.7rem;
  max-width: 52rem;
}

.dt-dot-legend-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dt-dot-legend-chip {
  gap: 0.45rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 18, 0.38);
  color: rgba(232, 234, 237, 0.74);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(8px) saturate(120%);
}

.dt-dot-legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.dt-dot-legend-dot--stable {
  background: var(--dt-teal);
  box-shadow: 0 0 8px rgba(125, 211, 192, 0.45);
}

.dt-hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
  max-width: 56rem;
}

.dt-hero-summary-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.95rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.84), rgba(10, 13, 18, 0.66));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.04);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
}

.dt-hero-summary-card strong {
  color: var(--dt-fg);
  font-family: var(--dt-sans);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.3;
}

.dt-hero-summary-card span:last-child {
  color: rgba(232, 234, 237, 0.68);
  font-size: 0.84rem;
  line-height: 1.45;
}

.dt-hero-summary-label {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dt-teal);
}

.dt-hero-assist {
  max-width: 41rem;
  margin: 1rem 0 0;
  font-family: var(--dt-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(232, 234, 237, 0.7);
}

.dt-hero-assist a {
  color: var(--dt-teal-lit);
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 243, 208, 0.26);
}

.dt-hero-assist a:hover {
  border-bottom-color: rgba(167, 243, 208, 0.5);
}

.dt-dot-legend-dot--base {
  background: rgba(156, 163, 175, 0.8);
}

.dt-ratio {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
  width: min(100%, 19rem);
  min-width: 16rem;
  padding: 16px 18px 15px;
  padding-top: 8px;
  border: 1px solid rgba(125, 211, 192, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.92), rgba(10, 13, 18, 0.78));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
}
.dt-ratio-label {
  font-family: var(--dt-mono);
  font-size: 10px;
  color: rgba(232, 234, 237, 0.62);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.dt-ratio-value {
  font-family: var(--dt-serif);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dt-teal);
  font-variant-numeric: tabular-nums lining-nums;
  text-shadow: 0 0 24px rgba(125, 211, 192, 0.16), 0 8px 24px rgba(0, 0, 0, 0.28);
}
.dt-ratio-delta {
  font-family: var(--dt-mono);
  font-size: 12px;
  color: rgba(167, 243, 208, 0.92);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.dt-ratio-delta.is-down {
  color: var(--dt-red);
}

/* ---------- 4. Benchmark panel ---------- */
.dt-formula {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  margin: 16px auto 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.dt-formula-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.dt-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 10px;
  min-width: 0;
}
.dt-cell-label {
  font-family: var(--dt-mono);
  font-size: 10px;
  color: var(--dt-fg-faint);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.dt-cell-value {
  font-family: var(--dt-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dt-fg);
  font-variant-numeric: tabular-nums lining-nums;
}
.dt-cell.is-result .dt-cell-label {
  color: var(--dt-teal);
  opacity: 0.8;
}
.dt-cell.is-result .dt-cell-value {
  color: var(--dt-teal);
}
.dt-ddd-24h {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dt-fg-faint);
  margin-top: -2px;
}
.dt-ddd-24h[data-dir="up"] { color: var(--dt-teal); }
.dt-ddd-24h[data-dir="down"] { color: #e87a7a; }
.dt-op {
  font-family: var(--dt-mono);
  font-size: 18px;
  color: var(--dt-fg-faint);
  padding: 0 6px;
  line-height: 1;
  user-select: none;
}

/* ---------- 5. Trend row (7D / 30D / 90D / 1Y) ---------- */
.dt-formula-trends {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dt-stat {
  min-width: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.45rem;
}
.dt-stat-label {
  font-family: var(--dt-mono);
  font-size: 10px;
  color: var(--dt-fg-faint);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.dt-stat-value {
  font-family: var(--dt-mono);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--dt-teal);
  font-variant-numeric: tabular-nums lining-nums;
  text-transform: uppercase;
}
.dt-spark {
  display: none;
}
.dt-spark path {
  fill: none;
  stroke: var(--dt-teal);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* ---------- Header refinement ---------- */
.dt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 68px 24px 30px;
  border-bottom: 0;
}

.dt-hero-left {
  width: min(100%, 72rem);
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.dt-hero::before {
  background: radial-gradient(
    ellipse 72% 86% at 50% 34%,
    rgba(10, 13, 18, 0.92) 0%,
    rgba(10, 13, 18, 0.62) 48%,
    rgba(10, 13, 18, 0.08) 86%
  );
}

.dt-what-is {
  max-width: 48rem;
  margin: 0 auto 0.65rem;
  color: rgba(232, 234, 237, 0.88);
  font-family: var(--dt-serif);
  font-size: clamp(20px, 5.2vw, 54px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.dt-headline {
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: clamp(64px, 13vw, 168px);
  line-height: 0.88;
  margin: 0 0 1.1rem;
  white-space: nowrap;
}

.dt-headline-slash {
  font-size: 0.23em;
}

.dt-subhead {
  max-width: 42ch;
  margin: 0 auto;
  font-family: var(--dt-sans);
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(232, 234, 237, 0.68);
}

@media (max-width: 430px) {
  .dt-hero {
    padding: 56px 20px 24px;
  }
  .dt-headline {
    font-size: clamp(52px, 14vw, 80px);
  }
  .dt-what-is {
    font-size: clamp(18px, 5.5vw, 28px);
    letter-spacing: -0.02em;
  }
}

.dt-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
}

.dt-hero-metric {
  display: grid;
  gap: 0.35rem;
  min-width: 220px;
  padding: 0.92rem 1rem 0.96rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 17, 22, 0.9), rgba(9, 13, 18, 0.72)),
    radial-gradient(circle at top left, rgba(125, 211, 192, 0.12), transparent 55%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
}

.dt-hero-metric-label {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.62);
}

.dt-hero-metric-value {
  font-family: var(--dt-serif);
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dt-teal-lit);
  text-shadow: 0 0 24px rgba(125, 211, 192, 0.14), 0 8px 24px rgba(0, 0, 0, 0.22);
}

.dt-hero-metric-delta {
  font-family: var(--dt-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(167, 243, 208, 0.94);
  font-variant-numeric: tabular-nums;
}

.dt-hero-metric-delta.is-down {
  color: var(--dt-red);
}

.dt-hero-assist {
  max-width: 52rem;
  margin: 1rem auto 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(232, 234, 237, 0.68);
}

.dt-formula {
  gap: 0;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.dt-formula-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.dt-formula-kicker {
  margin-bottom: 0.45rem;
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dt-teal);
}

.dt-formula-copy {
  margin: 0;
  max-width: 58ch;
  color: rgba(232, 234, 237, 0.74);
  font-size: 13px;
  line-height: 1.6;
}

.dt-formula-copy span[aria-hidden="true"] {
  color: var(--dt-teal-lit);
  font-weight: 600;
}

.dt-formula-main {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.12fr);
  align-items: stretch;
  gap: 0.85rem;
  padding: 1.2rem 1.4rem 1.1rem;
}

.dt-cell {
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.05rem 1.05rem;
  min-height: 108px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(18, 23, 30, 0.84), rgba(12, 16, 22, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dt-cell-value {
  font-size: clamp(24px, 2.7vw, 34px);
}

.dt-cell.is-result {
  background: linear-gradient(180deg, rgba(15, 27, 28, 0.96), rgba(9, 15, 16, 0.86));
  border-color: rgba(125, 211, 192, 0.24);
}

.dt-cell.is-result .dt-cell-value {
  color: var(--dt-teal-lit);
  font-size: clamp(34px, 4vw, 52px);
}

.dt-op {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 192, 0.18);
  background: linear-gradient(180deg, rgba(14, 20, 25, 0.94), rgba(9, 13, 17, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--dt-teal-lit);
  padding: 0;
  font-size: 28px;
  align-self: center;
}

.dt-formula-trends {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0 1.4rem 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dt-stat {
  position: relative;
  min-height: 122px;
  padding: 0.95rem 1rem 0.9rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(17, 22, 29, 0.86), rgba(11, 15, 20, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  opacity: 1;
  transform: none;
  animation: dt-band-rise 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.dt-stat:nth-child(1) { animation-delay: 220ms; }
.dt-stat:nth-child(2) { animation-delay: 280ms; }
.dt-stat:nth-child(3) { animation-delay: 340ms; }
.dt-stat:nth-child(4) { animation-delay: 400ms; }

.dt-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 192, 0.22);
  background: linear-gradient(180deg, rgba(20, 27, 34, 0.9), rgba(12, 17, 23, 0.78));
}

.dt-stat-value {
  font-size: 13px;
  line-height: 1.5;
}

.dt-spark {
  display: block;
  width: 100%;
  height: 36px;
  margin-top: auto;
  opacity: 0.95;
}

.dt-spark path {
  filter: drop-shadow(0 0 6px rgba(125, 211, 192, 0.16));
}

@keyframes dt-band-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Entrance stagger ----------
   Default to visible so a missed animation (common on iOS first paint /
   background-tab loads) never leaves the hero permanently hidden. */
.dt-fade {
  opacity: 1;
  transform: none;
  animation: dt-fade-in 200ms ease-out both;
}
@keyframes dt-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.dt-ticker      { animation-delay:   0ms; }
.dt-topbar.dt-fade {
  animation: none;
  opacity: 1;
  transform: none;
}
.dt-hero        { animation-delay: 100ms; }
.dt-formula     { animation-delay: 150ms; }

@media (prefers-reduced-motion: reduce) {
  .dt-ticker-track { animation: none; }
  .dt-live-dot { animation: none; }
  .dt-fade { animation: none; opacity: 1; transform: none; }
  .dt-headline-ratio { transition: none; }
  .dt-stat {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive (below 900px) ---------- */
@media (max-width: 900px) {
  .dt-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    padding: 40px 20px 36px;
  }
  .dt-hero-right {
    justify-content: stretch;
    align-self: start;
    padding-top: 0;
  }
  .dt-headline {
    font-size: clamp(56px, 18vw, 72px);
  }
  .dt-dot-explainer {
    margin-top: 0.85rem;
    padding: 0.7rem 0.82rem;
    gap: 0.65rem;
  }
  .dt-dot-legend {
    gap: 0.55rem;
  }
  .dt-formula {
    padding: 18px 22px;
    gap: 14px;
  }
  .dt-formula-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .dt-formula .dt-op {
    display: none;
  }
  .dt-formula .dt-cell {
    padding: 8px 0;
    border-bottom: 1px solid var(--dt-border);
  }
  .dt-formula .dt-cell:last-child {
    border-bottom: 0;
  }
  .dt-formula-trends {
    gap: 0.7rem 0.9rem;
    padding-top: 12px;
  }
  .dt-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 20px 20px;
  }
  .dt-footstrip {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 12px 20px;
  }
  .dt-footstrip-slot,
  .dt-footstrip-slot:nth-child(2),
  .dt-footstrip-slot:nth-child(3) {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .dt-ticker-track { gap: 1.75rem; padding-left: 1.75rem; }
  .dt-ticker-item { gap: 0.5rem; font-size: 11px; }
  .dt-ticker-main { gap: 0.32rem; }
  .dt-ticker-logo { width: 14px; height: 14px; }
  .dt-topbar { padding: 0 20px; }
  .dt-topbar-right { gap: 10px; }
  .dt-brand svg { width: 30px; height: 30px; }
  /* "Stable Tape" is short enough to keep visible here (unlike the old
     "// Digital Dollar Dominance" text this rule used to hide). */
  .dt-live {
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .dt-formula {
    margin: 24px 16px 16px;
    padding: 16px 16px 18px;
  }
  .dt-formula-trends {
    gap: 12px 10px;
    padding-top: 12px;
  }
  .dt-hero {
    padding: 0 2px;
    padding: 32px 16px 28px;
  }
  .dt-dot-explainer {
    margin-top: 0.8rem;
    padding: 0.68rem 0.78rem;
    font-size: 10px;
    line-height: 1.45;
  }
  .dt-dot-legend { gap: 0.45rem; }
  .dt-ratio {
    gap: 8px;
    min-width: 0;
    padding: 12px 14px 12px;
  }
  .dt-ratio-value {
    font-size: 34px;
  }
  .dt-stats {
    margin: 0 16px 16px;
  }
  .dt-stat {
    padding: 0;
    gap: 0.42rem;
  }
  .dt-stat-label {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .dt-stat-value {
    font-size: 11px;
  }
  .dt-subhead {
    font-size: 13px;
    line-height: 1.52;
    max-width: none;
  }
  .dt-what-is {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 0.72rem;
  }
  .dt-hero-summary-card {
    padding: 0.8rem 0.82rem 0.84rem;
  }
  .dt-hero-summary-card strong {
    font-size: 0.9rem;
  }
  .dt-hero-summary-card span:last-child {
    font-size: 0.8rem;
  }
  .dt-hero-assist {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .dt-dot-legend-chip {
    width: 100%;
    justify-content: flex-start;
    font-size: 9px;
    letter-spacing: 0.08em;
    padding: 0.42rem 0.68rem;
  }
}

@media (max-width: 900px) {
  .dt-hero {
    gap: 0;
    padding: 46px 20px 26px;
  }

  .dt-headline {
    font-size: clamp(74px, 18vw, 112px);
  }

  .dt-formula {
    margin: 0 20px 24px;
    padding: 0;
    gap: 0;
  }

  .dt-formula-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1rem 1.1rem 1rem;
  }

  .dt-op {
    width: 46px;
    height: 46px;
    justify-self: center;
    font-size: 24px;
  }

  .dt-formula .dt-op {
    display: none;
  }

  .dt-formula .dt-cell {
    min-height: 0;
    padding: 0.95rem 0.92rem 1rem;
    border-bottom: 0;
  }

  .dt-formula-trends {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0 1.1rem 1.1rem;
  }
}

@media (max-width: 560px) {
  .dt-hero {
    padding: 34px 16px 22px;
  }

  .dt-what-is {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 0.72rem;
  }

  .dt-headline {
    font-size: clamp(68px, 22vw, 88px);
    margin-bottom: 1rem;
  }

  .dt-subhead {
    font-size: 14px;
    line-height: 1.5;
    max-width: none;
  }

  .dt-formula {
    margin: 0 16px 18px;
    padding: 0;
    gap: 0;
  }

  .dt-formula-main {
    padding: 0.9rem 0.92rem 0.9rem;
  }

  .dt-op {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .dt-formula .dt-op {
    display: none;
  }

  .dt-formula .dt-cell {
    padding: 0.95rem 0.9rem 1rem;
  }

  .dt-formula-trends {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0 0.92rem 0.92rem;
  }

  .dt-stat {
    min-height: 92px;
    padding: 0.82rem 0.84rem 0.78rem;
    gap: 0.45rem;
  }

  .dt-spark {
    height: 30px;
  }
}

/* ================================================================
   MOBILE HOMEPAGE HERO (≤768px)
   One benchmark card: headline + inline equation (same data, less chrome).
   ================================================================ */
@media (max-width: 768px) {
  html.dt-page .page {
    overflow-x: clip;
    max-width: 100%;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    box-sizing: border-box;
  }

  .dt-ticker {
    display: none;
  }

  .dt-topbar {
    min-height: 48px;
    padding: 0 max(20px, env(safe-area-inset-right, 0px)) 0 max(20px, env(safe-area-inset-left, 0px));
    gap: 0.75rem;
    background: rgba(10,14,20,0.88);
  }

  .dt-brand svg {
    width: 32px;
    height: 32px;
  }

  /* "Stable Tape" is short enough to keep visible here (unlike the old
     "// Digital Dollar Dominance" text this rule used to hide). */

  .dt-topbar-right {
    gap: 8px;
  }

  .dt-live {
    display: none;
  }

  .dt-menu {
    min-height: 44px;
    padding: 0.4rem 0;
    font-size: 0.72rem;
    color: rgba(125, 211, 192, 0.78);
    opacity: 0.58;
  }

  .dt {
    width: 100%;
    max-width: 100%;
    padding: 0 max(16px, env(safe-area-inset-right, 0px)) 0 max(16px, env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    overflow-x: clip;
  }

  .dt-hero {
    display: none;
  }

  .dt-hero::before {
    display: none;
  }

  .dt-hero-left {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .dt-what-is {
    max-width: none;
    margin: 0 0 0.85rem;
    font-family: var(--dt-mono);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.4;
    color: rgba(125, 211, 192, 0.88);
  }

  .dt-headline {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.5rem;
    font-size: clamp(3.1rem, 15vw, 4.25rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
    text-shadow: none;
    overflow-x: clip;
  }

  .dt-headline-ratio {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.38), 0 2px 8px rgba(0, 0, 0, 0.34);
  }

  .dt-headline-subratio {
    margin: 0;
    min-height: 1.1rem;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: rgba(232, 234, 237, 0.55);
  }

  .dt-headline-subratio.visible {
    margin-bottom: 0.15rem;
  }

  .dt-subhead {
    display: none;
  }

  .dt-formula {
    width: 100%;
    max-width: 460px;
    margin: 16px auto 20px;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .dt-formula-intro {
    display: none;
  }

  .dt-formula-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.05fr);
    grid-template-rows: auto auto;
    gap: 2px 3px;
    align-items: end;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    padding: 14px 12px 16px;
    box-sizing: border-box;
  }

  .dt-formula .dt-op {
    display: grid;
    place-items: center;
    grid-row: 2;
    width: auto;
    height: auto;
    min-width: 0;
    padding: 0 2px 2px;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-family: var(--dt-mono);
    font-size: 15px;
    font-weight: 300;
    color: rgba(232, 234, 237, 0.35);
    align-self: end;
  }

  .dt-formula .dt-cell {
    display: contents;
  }

  .dt-formula .dt-cell-label {
    grid-row: 1;
    font-size: 8px;
    letter-spacing: 0.14em;
    line-height: 1.2;
    color: var(--dt-fg-faint);
    padding-bottom: 4px;
  }

  .dt-formula .dt-cell-value {
    grid-row: 2;
    font-family: var(--dt-mono);
    font-size: clamp(0.72rem, 2.9vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--dt-fg);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .dt-formula .dt-cell:nth-child(1) .dt-cell-label { grid-column: 1; }
  .dt-formula .dt-cell:nth-child(1) .dt-cell-value { grid-column: 1; }
  .dt-formula .dt-op:nth-child(2) { grid-column: 2; }
  .dt-formula .dt-cell:nth-child(3) .dt-cell-label { grid-column: 3; }
  .dt-formula .dt-cell:nth-child(3) .dt-cell-value { grid-column: 3; }
  .dt-formula .dt-op:nth-child(4) { grid-column: 4; }
  .dt-formula .dt-cell:nth-child(5) .dt-cell-label { grid-column: 5; }
  .dt-formula .dt-cell:nth-child(5) .dt-cell-value { grid-column: 5; }

  .dt-formula .dt-cell.is-result .dt-cell-label {
    color: rgba(125, 211, 192, 0.75);
  }

  .dt-formula .dt-cell.is-result .dt-cell-value {
    font-family: var(--dt-serif);
    font-size: clamp(1.05rem, 4.5vw, 1.28rem);
    font-weight: 400;
    color: var(--dt-teal-lit);
  }

  .dt-formula-trends {
    display: none;
  }

  html.dt-page .signup-block {
    margin-left: 16px;
    margin-right: 16px;
    padding: 1.65rem 1.25rem 1.5rem;
    border-radius: 16px;
  }

  html.dt-page .page-footer {
    padding: 1.65rem 24px calc(1.25rem + env(safe-area-inset-bottom, 0px));
    font-size: inherit;
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 1050px) {
  .dt-live {
    display: none;
  }
}

@media (max-width: 420px) {
  .dt-hero {
    padding: 18px 14px 0;
    margin-top: 12px;
  }

  .dt-headline {
    font-size: clamp(2.85rem, 14.5vw, 3.5rem);
  }

  .dt-formula-main {
    padding: 12px 10px 14px;
    gap: 2px 2px;
  }

  .dt-formula .dt-cell-value {
    font-size: 0.78rem;
  }

  .dt-formula .dt-cell.is-result .dt-cell-value {
    font-size: 1.05rem;
  }
}

@media (max-width: 560px) {
  .dt-hero-cta-row {
    margin-top: 1.35rem;
  }

  .dt-hero-secondary-row {
    display: none;
  }
}

/* ---------- Header benchmark panel (2a) ---------- */
.dt-header-panels {
  display: grid;
  gap: 12px;
}

.dt-header-panel {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.96), rgba(10, 13, 18, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dt-header-panel--ratio {
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dt-header-panel--supply {
  gap: 0.9rem;
  padding-bottom: 1rem;
}

.dt-header-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dt-header-kicker {
  margin-bottom: 0.4rem;
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dt-teal);
}

.dt-header-title {
  margin: 0;
  font-family: var(--dt-sans);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(232, 234, 237, 0.82);
}

.dt-live--panel {
  align-self: center;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.dt-header-output-card {
  display: grid;
  gap: 0.8rem;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(120% 80% at 50% 0%, rgba(45, 212, 191, 0.06), transparent 60%), linear-gradient(180deg, rgba(13, 17, 23, 0.96), rgba(10, 13, 18, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dt-header-output-label {
  margin: 0;
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.34);
}

.dt-header-output-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: stretch;
}

.dt-header-output-term {
  display: grid;
  gap: 0.4rem;
  align-content: center;
  min-width: 0;
  padding: 0.82rem 0.94rem 0.88rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 23, 30, 0.82), rgba(12, 16, 22, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dt-header-output-term--result {
  background: linear-gradient(180deg, rgba(15, 27, 28, 0.96), rgba(9, 15, 16, 0.86));
  border-color: rgba(125, 211, 192, 0.24);
}

.dt-header-output-term-label {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.46);
}

.dt-header-output-term-value {
  font-family: var(--dt-mono);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--dt-fg);
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 500;
}

.dt-header-output-term--result .dt-header-output-term-value {
  color: var(--dt-teal-lit);
  text-shadow: 0 0 22px rgba(125, 211, 192, 0.12), 0 8px 22px rgba(0, 0, 0, 0.22);
}

.dt-header-output-proof-op {
  display: grid;
  place-items: center;
  font-family: var(--dt-mono);
  font-size: 24px;
  color: rgba(232, 234, 237, 0.32);
}

.dt-header-output-support {
  margin: 0;
  font-family: var(--dt-sans);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(232, 234, 237, 0.46);
}

.dt-header-output-live-note {
  margin: 0;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--dt-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: rgba(232, 234, 237, 0.46);
}

.dt-header-output-live-note.is-mint {
  color: rgba(167, 243, 208, 0.82);
}

.dt-header-output-live-note.is-burn {
  color: rgba(255, 177, 177, 0.82);
}

.dt-header-impact {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.76rem;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dt-header-impact-head {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.34);
}

.dt-header-impact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: baseline;
}

.dt-header-impact-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.36rem;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.dt-header-impact-label {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.42);
}

.dt-header-impact-chip:not(:last-child)::after {
  content: '·';
  margin-left: 0.55rem;
  color: rgba(232, 234, 237, 0.22);
}

.dt-header-impact-value {
  font-family: var(--dt-sans);
  font-size: 13px;
  line-height: 1.35;
  color: rgba(232, 234, 237, 0.82);
  font-variant-numeric: tabular-nums lining-nums;
}

.dt-header-output-support-ratio {
  font-family: var(--dt-mono);
  color: var(--dt-teal-lit);
  letter-spacing: 0.06em;
}

.dt-header-output-card,
.dt-header-panel--supply {
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.dt-header-output-term--result,
.dt-header-supply-value {
  transition: transform 220ms ease, color 220ms ease, text-shadow 220ms ease, filter 220ms ease, opacity 400ms ease;
}

.dt-header-output-card.is-hot.is-mint,
.dt-header-panel--supply.is-hot.is-mint {
  border-color: rgba(125, 211, 192, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 0 1px rgba(125, 211, 192, 0.05), 0 18px 34px rgba(10, 24, 22, 0.12);
}

.dt-header-output-card.is-hot.is-burn,
.dt-header-panel--supply.is-hot.is-burn {
  border-color: rgba(248, 113, 113, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 0 1px rgba(248, 113, 113, 0.05), 0 18px 34px rgba(28, 12, 14, 0.12);
}

.dt-header-output-term--result.is-fresh .dt-header-output-term-value,
.dt-header-supply-value.is-fresh {
  animation: dt-header-metric-hit 560ms cubic-bezier(0.19, 1, 0.22, 1);
}

.dt-header-output-term--result.is-hot.is-mint .dt-header-output-term-value {
  color: var(--dt-teal-lit);
  text-shadow: 0 0 26px rgba(125, 211, 192, 0.24), 0 8px 24px rgba(0, 0, 0, 0.28);
}

.dt-header-output-term--result.is-hot.is-burn .dt-header-output-term-value {
  color: #ffb1b1;
  text-shadow: 0 0 24px rgba(248, 113, 113, 0.2), 0 8px 24px rgba(0, 0, 0, 0.28);
}

.dt-header-output-ratio {
  font-family: var(--dt-serif);
  font-size: clamp(52px, 6vw, 72px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--dt-fg);
  font-variant-numeric: tabular-nums lining-nums;
}

.dt-header-output-ratio-n {
  color: var(--dt-teal-lit);
  text-shadow: 0 0 26px rgba(127, 229, 200, 0.24);
}

.dt-header-output-side {
  min-width: 0;
  text-align: right;
}

.dt-header-output-pct {
  font-family: var(--dt-serif);
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
  color: var(--dt-teal-lit);
  text-shadow: 0 0 24px rgba(125, 211, 192, 0.12), 0 8px 24px rgba(0, 0, 0, 0.24);
  font-variant-numeric: tabular-nums lining-nums;
}

.dt-header-output-calc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-content: flex-end;
  margin: 0.5rem 0 0;
  font-family: var(--dt-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(232, 234, 237, 0.38);
  font-variant-numeric: tabular-nums;
}

.dt-header-window-row {
  display: flex;
  justify-content: flex-start;
  padding: 0;
}

.dt-header-window-toggle {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 17, 23, 0.96);
}

.dt-header-window-btn {
  min-height: 0;
  padding: 8px 13px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgba(232, 234, 237, 0.56);
  font-family: var(--dt-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.dt-header-window-btn:hover {
  color: rgba(232, 234, 237, 0.82);
}

.dt-header-window-btn.is-active {
  color: var(--dt-teal-lit);
  background: rgba(125, 211, 192, 0.16);
}

.dt-header-supply-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.dt-header-supply-heading {
  display: grid;
  gap: 0.2rem;
}

.dt-header-supply-controls {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 100%;
}

.dt-header-supply-net {
  display: grid;
  gap: 0.14rem;
  justify-items: start;
  margin-top: 0.42rem;
  color: rgba(232, 234, 237, 0.58);
}

.dt-header-supply-net-label,
.dt-header-supply-net-foot {
  color: rgba(232, 234, 237, 0.44);
  font-family: var(--dt-sans);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.35;
}

.dt-header-supply-net-stat {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border: 0;
  background: transparent;
  font-family: var(--dt-serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: none;
}

.dt-header-supply-net-note {
  color: rgba(232, 234, 237, 0.72);
  font-family: var(--dt-sans);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  max-width: 28rem;
}

.dt-header-supply-net-stat.is-mint {
  color: var(--dt-teal-lit);
  border-color: rgba(125, 211, 192, 0.22);
}

.dt-header-supply-net-stat.is-burn {
  color: #ffb1b1;
  border-color: rgba(248, 113, 113, 0.2);
}

.dt-header-supply-net.is-up {
  color: var(--dt-teal-lit);
}

.dt-header-supply-net.is-down {
  color: var(--dt-red);
}

.dt-header-supply-summary {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1rem;
}

.dt-header-supply-note {
  margin: -0.35rem 0 0;
  max-width: 46rem;
  font-family: var(--dt-sans);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(232, 234, 237, 0.48);
}

.dt-header-supply-note a {
  color: rgba(125, 211, 192, 0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 192, 0.28);
}

.dt-header-supply-note a:hover {
  color: var(--dt-teal-lit);
  border-bottom-color: rgba(125, 211, 192, 0.58);
}

.dt-header-tape {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1rem;
  scroll-margin-top: 92px;
  padding: 0.78rem 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.dt-header-tape--top {
  margin: 0 0 14px;
  padding: 1rem 1.08rem 1.06rem;
  border-color: rgba(255, 255, 255, 0.085);
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.82), rgba(10, 13, 18, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.dt-hero-tape {
  align-self: center;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
}

.dt-hero-tape .dt-header-tape-side {
  justify-items: start;
  margin-top: 0.4rem;
  gap: 0.6rem;
}

.dt-header-tape-copy,
.dt-header-tape-side {
  display: grid;
  gap: 0.26rem;
  min-width: 0;
}

.dt-header-tape-side {
  justify-items: end;
}

.dt-header-tape-eyebrow,
.dt-header-tape-context,
.dt-header-tape-cta,
.dt-header-tape-sponsor {
  font-family: var(--dt-mono);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dt-header-tape-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.45em;
  color: rgba(232, 234, 237, 0.78);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
}
.dt-header-tape-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(125, 211, 192, 0.88);
  box-shadow: 0 0 4px rgba(125, 211, 192, 0.38);
  flex-shrink: 0;
}
@keyframes dt-tape-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.dt-header-tape-main {
  color: rgba(232, 234, 237, 0.9);
  font-family: var(--dt-sans);
  font-size: clamp(0.9rem, 1.6vw, 1.04rem);
  font-weight: 650;
  line-height: 1.28;
}

.dt-header-tape--top .dt-header-tape-main {
  display: grid;
  gap: 0.2rem;
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.18;
}

.dt-header-tape-main-label {
  color: rgba(232, 234, 237, 0.62);
  font-family: var(--dt-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.dt-header-tape-main-value {
  color: var(--dt-fg);
  font-family: var(--dt-mono);
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.dt-header-tape.is-up .dt-header-tape-main-value {
  color: var(--dt-teal-lit);
}

.dt-header-tape.is-down .dt-header-tape-main-value {
  color: #ffb1b1;
}

.dt-header-tape-sponsor {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.28rem 0.4rem;
  max-width: 100%;
  margin-top: 0.16rem;
  padding-top: 0.52rem;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: rgba(232, 234, 237, 0.34);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.dt-header-tape-sponsor-label {
  color: rgba(232, 234, 237, 0.34);
}

.dt-header-tape-sponsor-name {
  color: rgba(232, 234, 237, 0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 192, 0.18);
}

.dt-header-tape-sponsor-name:hover {
  color: var(--dt-teal-lit);
  border-bottom-color: rgba(125, 211, 192, 0.48);
}

.dt-header-tape-sub {
  color: rgba(232, 234, 237, 0.72);
  font-family: var(--dt-sans);
  font-size: 13px;
  line-height: 1.5;
}

.dt-header-tape--top .dt-header-tape-sub,
.dt-header-tape-pair,
.dt-header-tape-driver {
  color: rgba(232, 234, 237, 0.72);
  font-family: var(--dt-sans);
  font-size: 13.5px;
  line-height: 1.5;
}

.dt-header-tape-pair {
  color: rgba(232, 234, 237, 0.82);
}

.dt-header-tape-driver {
  color: rgba(232, 234, 237, 0.72);
}

.dt-tape-attribution-line {
  font-family: var(--dt-mono);
  font-size: 0.72em;
  letter-spacing: 0.05em;
  color: rgba(232, 234, 237, 0.6);
  margin-top: 0.25em;
  display: block;
}

.dt-tape-reconciliation {
  margin: 0.6rem 0 0.2rem;
}

.dt-tape-recon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: baseline;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.018);
}

.dt-recon-item {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.46);
  white-space: nowrap;
}

.dt-recon-item b {
  color: rgba(232, 234, 237, 0.78);
  font-weight: 500;
}

.dt-recon-coverage b {
  color: var(--dt-teal-lit);
}

.dt-recon-mismatch {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(232, 234, 237, 0.44);
  font-style: italic;
}

.dt-tape-recon-note {
  margin: 0.35rem 0 0;
  font-family: var(--dt-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  color: rgba(232, 234, 237, 0.28);
  line-height: 1.5;
}

.dt-tape-recon-window-gap {
  margin: 0.3rem 0 0;
  font-family: var(--dt-mono);
  font-size: 9.5px;
  letter-spacing: 0.05em;
  color: rgba(232, 234, 237, 0.36);
  line-height: 1.5;
}

.dt-tape-recon-window-gap b {
  color: rgba(232, 234, 237, 0.56);
  font-weight: 500;
}

.dt-tape-net-label {
  font-size: 0.52em;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(232, 234, 237, 0.45);
  vertical-align: middle;
  margin-left: 0.08em;
}

.dt-tape-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--dt-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 2px 7px 3px;
  border-radius: 4px;
  margin-right: 6px;
}
.dt-tape-badge--mint {
  color: rgba(125, 211, 192, 0.9);
  background: rgba(125, 211, 192, 0.08);
  border: 1px solid rgba(125, 211, 192, 0.18);
}
.dt-tape-badge--burn {
  color: rgba(248, 113, 113, 0.85);
  background: rgba(248, 113, 113, 0.07);
  border: 1px solid rgba(248, 113, 113, 0.16);
}

.dt-tape-pair-label {
  display: block;
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(232, 234, 237, 0.38);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.dt-tape-driver-label {
  color: rgba(232, 234, 237, 0.56);
}
.dt-tape-token-chip {
  font-family: var(--dt-mono);
  font-size: 0.9em;
  color: rgba(232, 234, 237, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 0 5px 1px;
}

.dt-header-tape-context {
  color: rgba(232, 234, 237, 0.62);
  white-space: nowrap;
}

.dt-header-tape-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  align-self: flex-start;
  color: var(--dt-teal-lit);
  font-family: var(--dt-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 14px;
  border: 1px solid rgba(125, 211, 192, 0.4);
  border-radius: 6px;
  background: rgba(125, 211, 192, 0.06);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.dt-header-tape-cta:hover {
  color: #e8fffa;
  border-color: rgba(125, 211, 192, 0.72);
  background: rgba(125, 211, 192, 0.12);
}

/* Today's Tape snapshot timer and recent records */
.dt-snapshot-timer {
  width: min(260px, 100%);
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  font-family: var(--dt-mono);
  text-align: left;
}
.dt-snapshot-timer[hidden] { display: none; }
.dt-snapshot-timer-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.62);
  margin-bottom: 6px;
}
.dt-snapshot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(125, 211, 192, 0.72);
  animation: dt-snapshot-pulse 2.8s ease-in-out infinite;
}
.dt-snapshot-timer-main {
  font-size: 14px;
  color: rgba(232, 234, 237, 0.95);
  margin-bottom: 7px;
}
.dt-snapshot-timer-progress {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 7px;
}
.dt-snapshot-timer-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: rgba(125, 211, 192, 0.58);
  transition: width 800ms ease;
}
.dt-snapshot-timer-meta,
.dt-snapshot-timer-note {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(232, 234, 237, 0.55);
}
.dt-snapshot-timer-note { margin-top: 5px; color: rgba(232, 234, 237, 0.46); }

@keyframes dt-snapshot-pulse {
  0%, 100% { opacity: 0.48; transform: scale(0.92); }
  50% { opacity: 0.9; transform: scale(1); }
}

.dt-tape-records {
  margin: 10px 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
}
.dt-tape-records-head {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}
.dt-tape-records-list { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.dt-tape-record { display: flex; align-items: baseline; gap: 8px; font-family: 'IBM Plex Mono', monospace; font-size: 13px; }
.dt-tape-record-date { color: rgba(255, 255, 255, 0.5); }
.dt-tape-record-net { font-weight: 500; color: rgba(255, 255, 255, 0.85); }
.dt-tape-record.is-up .dt-tape-record-net { color: #7dd3c0; }
.dt-tape-record.is-down .dt-tape-record-net { color: #f0928c; }
.dt-tape-records-collecting { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); line-height: 1.55; }
.dt-tape-records-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.dt-tape-records-cta { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: rgba(167, 243, 208, 0.9); text-decoration: none; white-space: nowrap; }
.dt-tape-records-cta:hover { color: #e8fffa; }
.dt-tape-records-support { font-size: 12px; color: rgba(255, 255, 255, 0.45); }

.dt-tape-provider-note {
  font-size: 11.5px;
  color: rgba(232, 234, 237, 0.34);
  margin-top: 7px;
  line-height: 1.45;
}
.dt-tape-provider-note[hidden] { display: none; }

.dt-header-panel--top-feed {
  margin-bottom: 14px;
}

.dt-header-tape.is-up {
  border-color: rgba(125, 211, 192, 0.18);
  border-left: 2px solid rgba(125, 211, 192, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), -2px 0 18px rgba(125, 211, 192, 0.06);
}

.dt-header-tape.is-down {
  border-color: rgba(248, 113, 113, 0.18);
  border-left: 2px solid rgba(248, 113, 113, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), -2px 0 18px rgba(248, 113, 113, 0.06);
}

.dt-header-tape.is-down .dt-header-tape-main {
  color: #ffb1b1;
}

.dt-header-tape.is-quiet .dt-header-tape-main,
.dt-header-tape.is-loading .dt-header-tape-main {
  color: rgba(232, 234, 237, 0.72);
}

.dt-header-supply-grid {
  display: grid;
  gap: 0.95rem;
  min-width: 0;
}

.dt-header-supply-visual {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  align-content: start;
}

.dt-header-supply-value {
  font-family: var(--dt-mono);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: rgba(232, 234, 237, 0.76);
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 500;
}

.dt-header-supply-delta {
  display: grid;
  gap: 0.08rem;
  margin-top: 0.38rem;
  color: rgba(232, 234, 237, 0.48);
}

.dt-header-supply-delta-label {
  font-family: var(--dt-sans);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(232, 234, 237, 0.42);
}

.dt-header-supply-delta-value {
  font-family: var(--dt-mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(232, 234, 237, 0.68);
}

.dt-header-supply-delta.is-up {
  color: var(--dt-teal);
}

.dt-header-supply-delta.is-up .dt-header-supply-delta-value {
  color: var(--dt-teal);
}

.dt-header-supply-delta.is-down {
  color: var(--dt-red);
}

.dt-header-supply-delta.is-down .dt-header-supply-delta-value {
  color: var(--dt-red);
}

.dt-header-supply-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.6rem;
  min-height: 1.5rem;
  max-width: none;
  text-align: left;
  margin-top: 0.55rem;
  font-family: var(--dt-sans);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
  color: rgba(232, 234, 237, 0.68);
}

.dt-header-supply-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 17, 23, 0.74);
  font-family: var(--dt-sans);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(232, 234, 237, 0.58);
}

.dt-header-supply-status-copy {
  color: rgba(232, 234, 237, 0.72);
}

.dt-header-supply-status-copy.is-active {
  color: var(--dt-teal-lit);
}

.dt-header-chart-subtitle {
  margin: 0.24rem 0 0;
  color: rgba(232, 234, 237, 0.48);
  font-family: var(--dt-sans);
  font-size: 13px;
  line-height: 1.45;
}

.dt-header-chart-shell {
  position: relative;
  min-height: 160px;
  padding: 0.2rem 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dt-header-chart {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  overflow: visible;
}

.dt-header-chart-baseline {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-axis {
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-grid {
  stroke: rgba(255, 255, 255, 0.035);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-area {
  fill: url(#dtHeaderSupplyArea);
}

.dt-header-chart-line {
  fill: none;
  stroke: var(--dt-teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-label {
  fill: rgba(232, 234, 237, 0.5);
  font-family: var(--dt-mono);
  font-size: 23px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.dt-header-chart-label--x {
  fill: rgba(232, 234, 237, 0.42);
}

.dt-header-chart-label--y {
  fill: rgba(232, 234, 237, 0.54);
}

.dt-header-chart-crosshair {
  stroke: rgba(232, 234, 237, 0.22);
  stroke-width: 1;
  stroke-dasharray: 4 5;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.dt-chart-tooltip {
  position: absolute;
  z-index: 4;
  min-width: 148px;
  max-width: min(230px, calc(100% - 16px));
  padding: 0.58rem 0.66rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(9, 13, 18, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  color: rgba(232, 234, 237, 0.72);
  font-family: var(--dt-mono);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.dt-chart-tooltip[hidden] {
  display: none;
}

.dt-chart-tooltip-date,
.dt-chart-tooltip-supply {
  color: rgba(232, 234, 237, 0.9);
}

.dt-chart-tooltip-supply {
  margin-top: 0.15rem;
}

.dt-chart-tooltip-window,
.dt-chart-tooltip-ddd,
.dt-chart-tooltip-change,
.dt-chart-tooltip-source {
  margin-top: 0.12rem;
  color: rgba(232, 234, 237, 0.5);
}

.dt-header-chart-segment {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-segment.is-up {
  stroke: var(--dt-teal);
  filter: drop-shadow(0 0 7px rgba(125, 211, 192, 0.14));
}

.dt-header-chart-segment.is-down {
  stroke: var(--dt-red);
  filter: drop-shadow(0 0 7px rgba(248, 113, 113, 0.12));
}

.dt-header-chart-endpoint-ring {
  fill: rgba(10, 13, 18, 0.88);
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-endpoint-dot {
  fill: var(--dt-fg);
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-event-ring {
  fill: rgba(10, 13, 18, 0.92);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-event-ring.is-mint {
  stroke: rgba(167, 243, 208, 0.62);
}

.dt-header-chart-event-ring.is-burn {
  stroke: rgba(248, 113, 113, 0.58);
}

.dt-header-chart-event-dot {
  stroke: rgba(10, 13, 18, 0.9);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-event-stem {
  stroke-width: 1.35;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-event-stem.is-mint {
  stroke: rgba(167, 243, 208, 0.58);
}

.dt-header-chart-event-stem.is-burn {
  stroke: rgba(248, 113, 113, 0.52);
}

.dt-header-chart-event-glow {
  display: none;
}

.dt-header-chart-event-glow.is-mint {
  fill: rgba(167, 243, 208, 0.22);
}

.dt-header-chart-event-glow.is-burn {
  fill: rgba(248, 113, 113, 0.18);
}

.dt-header-chart-event-dot.is-mint {
  fill: var(--dt-teal-lit);
}

.dt-header-chart-event-dot.is-burn {
  fill: var(--dt-red);
}

.dt-header-chart-empty {
  font-family: var(--dt-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: rgba(232, 234, 237, 0.44);
}

.dt-header-chart-label--x {
  text-transform: none;
}

.dt-header-chart-legend {
  display: none;
}

.dt-header-chart-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.46);
}

.dt-header-chart-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.dt-header-chart-legend-dot.is-mint {
  background: var(--dt-teal-lit);
  box-shadow: 0 0 12px rgba(167, 243, 208, 0.28);
}

.dt-header-chart-legend-dot.is-burn {
  background: var(--dt-red);
  box-shadow: 0 0 12px rgba(248, 113, 113, 0.22);
}

.dt-header-live-row {
  display: grid;
  gap: 0.82rem;
}

.dt-header-issuance-bridge {
  display: grid;
  align-content: start;
}

.dt-header-live-impact {
  display: grid;
  gap: 0.58rem;
  padding: 0.82rem 0.9rem 0.88rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(13, 18, 24, 0.78), rgba(9, 13, 18, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dt-header-live-impact--subtle {
  gap: 0.5rem;
  padding: 0.72rem 0.8rem 0.76rem;
  border-color: rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.62), rgba(9, 13, 18, 0.54));
}

.dt-header-live-impact.is-mint {
  border-color: rgba(125, 211, 192, 0.14);
  background:
    radial-gradient(110% 120% at 100% 0%, rgba(125, 211, 192, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(12, 20, 24, 0.82), rgba(9, 13, 18, 0.72));
}

.dt-header-live-impact.is-burn {
  border-color: rgba(248, 113, 113, 0.14);
  background:
    radial-gradient(110% 120% at 100% 0%, rgba(248, 113, 113, 0.1), transparent 52%),
    linear-gradient(180deg, rgba(20, 15, 18, 0.82), rgba(9, 13, 18, 0.72));
}

.dt-header-live-impact--subtle.is-mint {
  border-color: rgba(125, 211, 192, 0.08);
  background:
    radial-gradient(110% 120% at 100% 0%, rgba(125, 211, 192, 0.05), transparent 58%),
    linear-gradient(180deg, rgba(11, 16, 20, 0.66), rgba(9, 13, 18, 0.56));
}

.dt-header-live-impact--subtle.is-burn {
  border-color: rgba(248, 113, 113, 0.08);
  background:
    radial-gradient(110% 120% at 100% 0%, rgba(248, 113, 113, 0.045), transparent 58%),
    linear-gradient(180deg, rgba(16, 13, 16, 0.66), rgba(9, 13, 18, 0.56));
}

.dt-header-live-impact-head {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.dt-header-live-impact-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dt-header-live-impact-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.3rem 0.9rem;
}

.dt-header-live-impact-kicker,
.dt-header-live-impact-label {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.4);
}

.dt-header-live-impact-action {
  min-width: 0;
  font-family: var(--dt-sans);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--dt-fg);
}

.dt-header-live-impact--subtle .dt-header-live-impact-action {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
}

.dt-header-live-impact-action.is-mint,
.dt-header-live-impact-value.is-mint {
  color: var(--dt-teal-lit);
}

.dt-header-live-impact-action.is-burn,
.dt-header-live-impact-value.is-burn {
  color: #ffb1b1;
}

.dt-header-live-impact-reset {
  min-height: 0;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.82);
  color: rgba(232, 234, 237, 0.56);
  font-family: var(--dt-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.dt-header-live-impact-reset:hover:not(:disabled) {
  border-color: rgba(125, 211, 192, 0.22);
  color: var(--dt-teal-lit);
}

.dt-header-live-impact-reset:disabled {
  cursor: default;
  opacity: 0.55;
}

.dt-header-live-impact-meta,
.dt-header-live-impact-copy,
.dt-header-live-impact-foot {
  font-family: var(--dt-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: rgba(232, 234, 237, 0.56);
}

.dt-header-live-impact--subtle .dt-header-live-impact-meta {
  font-size: 10px;
  color: rgba(232, 234, 237, 0.44);
}

.dt-header-live-impact-grid {
  display: grid;
  gap: 0.45rem;
}

.dt-header-live-impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.dt-header-live-impact-step {
  padding: 0.62rem 0.7rem 0.68rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(13, 17, 23, 0.56);
}

.dt-header-live-impact-pill {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  padding: 0.56rem 0.65rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(13, 17, 23, 0.56);
}

.dt-header-live-impact--subtle .dt-header-live-impact-pill {
  padding: 0.48rem 0.58rem 0.52rem;
  background: rgba(13, 17, 23, 0.46);
}

.dt-header-live-impact-pill-label,
.dt-header-live-impact-ratio-label,
.dt-header-live-impact-status-label {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.42);
}

.dt-header-live-impact-pill-value {
  min-width: 0;
  font-family: var(--dt-serif);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--dt-fg);
  font-variant-numeric: tabular-nums lining-nums;
}

.dt-header-live-impact--subtle .dt-header-live-impact-pill-value {
  font-size: clamp(16px, 1.45vw, 18px);
}

.dt-header-live-impact-value {
  font-family: var(--dt-serif);
  font-size: clamp(21px, 2vw, 26px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--dt-fg);
  font-variant-numeric: tabular-nums lining-nums;
}

.dt-header-live-impact-foot {
  color: rgba(232, 234, 237, 0.46);
}

.dt-header-live-impact-ratio,
.dt-header-live-impact-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dt-header-live-impact-ratio {
  padding-top: 0.22rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dt-header-live-impact--subtle .dt-header-live-impact-ratio,
.dt-header-live-impact--subtle .dt-header-live-impact-status {
  gap: 0.45rem 0.75rem;
}

.dt-header-live-impact-ratio-value {
  color: var(--dt-fg);
  font-family: var(--dt-serif);
  font-size: 18px;
  letter-spacing: -0.02em;
  text-align: right;
}

.dt-header-live-impact--subtle .dt-header-live-impact-ratio-value {
  font-size: 16px;
  color: rgba(232, 234, 237, 0.84);
}

.dt-header-live-impact-status-value {
  display: grid;
  justify-items: end;
  gap: 0.16rem;
  color: rgba(232, 234, 237, 0.66);
  font-family: var(--dt-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.dt-header-live-impact-status-metric {
  color: rgba(232, 234, 237, 0.46);
  font-size: 10px;
}

.dt-header-chart-callout-line {
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.dt-header-chart-callout-line.is-mint {
  stroke: rgba(167, 243, 208, 0.34);
}

.dt-header-chart-callout-line.is-burn {
  stroke: rgba(248, 113, 113, 0.32);
}

.dt-header-chart-callout-bg {
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  animation: dt-header-callout-breathe 2.4s ease-in-out infinite;
}

.dt-header-chart-callout-bg.is-mint {
  fill: rgba(9, 18, 20, 0.92);
  stroke: rgba(167, 243, 208, 0.22);
}

.dt-header-chart-callout-bg.is-burn {
  fill: rgba(22, 12, 14, 0.92);
  stroke: rgba(248, 113, 113, 0.22);
}

.dt-header-chart-callout-text {
  fill: rgba(232, 234, 237, 0.9);
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}

@keyframes dt-header-live-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(125, 211, 192, 0.42);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 8px rgba(125, 211, 192, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(125, 211, 192, 0);
  }
}
@keyframes dt-header-metric-hit {
  0% {
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
  38% {
    transform: translateY(-2px) scale(1.035);
    filter: saturate(1.16);
  }
  100% {
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
}

@keyframes dt-header-event-breathe {
  0%, 100% {
    opacity: 0.18;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.08);
  }
}

@keyframes dt-header-callout-breathe {
  0%, 100% {
    opacity: 0.92;
  }
  50% {
    opacity: 1;
  }
}

@keyframes dt-header-signal-run {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.dt-header-issuance {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.78rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(125, 211, 192, 0.15);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(125, 211, 192, 0.11), transparent 52%),
    linear-gradient(180deg, rgba(11, 19, 22, 0.94), rgba(9, 13, 18, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* ── Latest supply scan (curated homepage Tape preview) ───── */
.dt-tape-scan { gap: 1.15rem; padding: 1.35rem 1.35rem 1.4rem; }

.dt-tape-scan-head { display: grid; gap: 0.5rem; }
.dt-tape-scan-head .dt-header-feed-kicker {
  font-family: var(--dt-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dt-teal);
}
.dt-tape-scan-title {
  margin: 0;
  font-family: var(--dt-serif);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dt-fg);
}
.dt-tape-scan-sub {
  margin: 0;
  max-width: 60ch;
  font-family: var(--dt-sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232, 234, 237, 0.74);
}
.dt-tape-scan-meta {
  margin: 0.15rem 0 0;
  font-family: var(--dt-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: rgba(232, 234, 237, 0.56);
}

/* Metrics: expanded / contracted / net */
.dt-tape-scan-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}
.dt-tape-scan-metric {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1.05rem;
  background: linear-gradient(180deg, rgba(12, 17, 22, 0.82), rgba(8, 12, 17, 0.72));
}
.dt-tape-scan-metric-label {
  font-family: var(--dt-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.62);
}
.dt-tape-scan-metric-value {
  font-family: var(--dt-mono);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--dt-fg);
  font-variant-numeric: tabular-nums;
}
.dt-tape-scan-metric-value.is-pos { color: var(--dt-teal-lit); }
.dt-tape-scan-metric-value.is-neg { color: #ffb1b1; }

/* Top expansions and contractions */
.dt-tape-scan-rows-wrap { display: grid; gap: 0.6rem; }
.dt-tape-scan-rows-head {
  font-family: var(--dt-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.56);
}
.dt-tape-scan-rows { display: grid; gap: 0.5rem; }
.dt-tape-scan-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem 0.9rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left-width: 3px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.7), rgba(9, 13, 18, 0.62));
}
.dt-tape-scan-row.is-pos { border-left-color: rgba(125, 211, 192, 0.7); }
.dt-tape-scan-row.is-neg { border-left-color: rgba(255, 150, 150, 0.62); }
.dt-tape-scan-row-dir {
  font-family: var(--dt-mono);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.72);
}
.dt-tape-scan-row.is-pos .dt-tape-scan-row-dir { color: var(--dt-teal-lit); }
.dt-tape-scan-row.is-neg .dt-tape-scan-row-dir { color: #ffb1b1; }
.dt-tape-scan-row-asset {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.55rem;
  min-width: 0;
}
.dt-tape-scan-row-token {
  font-family: var(--dt-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dt-fg);
}
.dt-tape-scan-row-chain {
  font-family: var(--dt-sans);
  font-size: 12.5px;
  color: rgba(232, 234, 237, 0.6);
}
.dt-tape-scan-row-amount {
  font-family: var(--dt-mono);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.dt-tape-scan-row.is-pos .dt-tape-scan-row-amount { color: var(--dt-teal-lit); }
.dt-tape-scan-row.is-neg .dt-tape-scan-row-amount { color: #ffb1b1; }
.dt-tape-scan-empty {
  padding: 0.9rem 0.95rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: var(--dt-sans);
  font-size: 13px;
  color: rgba(232, 234, 237, 0.58);
}
.dt-tape-scan-note {
  margin: 0.15rem 0 0;
  font-family: var(--dt-sans);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(232, 234, 237, 0.5);
}

/* Strong CTA card — clear next step, not a tiny link */
.dt-tape-scan-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.4rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(125, 211, 192, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(125, 211, 192, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(13, 22, 26, 0.86), rgba(9, 14, 19, 0.78));
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.dt-tape-scan-cta:hover {
  border-color: rgba(125, 211, 192, 0.55);
  transform: translateY(-1px);
}
.dt-tape-scan-cta-copy { display: grid; gap: 0.3rem; min-width: 0; max-width: 52ch; }
.dt-tape-scan-cta-title {
  font-family: var(--dt-sans);
  font-size: 16px;
  font-weight: 650;
  color: var(--dt-fg);
}
.dt-tape-scan-cta-desc {
  font-family: var(--dt-sans);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(232, 234, 237, 0.66);
}
.dt-tape-scan-cta-btn {
  flex-shrink: 0;
  font-family: var(--dt-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #07120f;
  background: var(--dt-teal-lit);
  padding: 0.6rem 1.15rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 180ms ease;
}
.dt-tape-scan-cta:hover .dt-tape-scan-cta-btn { background: #c8fce8; }

@media (max-width: 640px) {
  .dt-tape-scan { padding: 1.1rem 1rem 1.15rem; }
  .dt-tape-scan-metrics { grid-template-columns: minmax(0, 1fr); }
  .dt-tape-scan-row { grid-template-columns: 92px minmax(0, 1fr); }
  .dt-tape-scan-row-amount { grid-column: 2 / 3; justify-self: end; }
  .dt-tape-scan-cta-btn { width: 100%; text-align: center; }
}

.dt-header-issuance-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.dt-header-feed {
  display: grid;
  gap: 0.85rem;
  margin-top: 0;
  min-width: 0;
}
.dt-header-feed--inline {
  gap: 0;
  margin-top: 0.08rem;
}

.dt-header-feed--secondary {
  margin-top: 0;
}

.dt-header-feed-module {
  display: grid;
  gap: 0.65rem;
  padding: 0.88rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.76), rgba(9, 13, 18, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dt-header-feed-module--primary {
  gap: 0.78rem;
  padding: 0.92rem;
  border-color: rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(125, 211, 192, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(12, 17, 22, 0.82), rgba(8, 12, 17, 0.72));
}

.dt-tape-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1.18fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.66), rgba(8, 12, 17, 0.58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.dt-tape-signup-copy {
  display: grid;
  gap: 0.34rem;
  min-width: 0;
}

.dt-tape-signup-copy h3 {
  margin: 0;
  color: rgba(232, 234, 237, 0.92);
  font-family: var(--dt-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.dt-tape-signup-copy p,
.dt-tape-signup-privacy,
.dt-tape-signup-message {
  margin: 0;
  color: rgba(232, 234, 237, 0.54);
  font-size: 12px;
  line-height: 1.45;
}

.dt-tape-signup-form {
  display: grid;
  gap: 0.54rem;
  min-width: 0;
}

.dt-tape-signup-honeypot {
  display: none;
}

.dt-tape-signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.48rem;
  align-items: stretch;
  min-width: 0;
}

.dt-tape-signup-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.dt-tape-signup-input,
.dt-tape-signup-submit {
  min-height: 38px;
  border-radius: 8px;
  font-family: var(--dt-sans);
  font-size: 13px;
}

.dt-tape-signup-input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 16, 0.62);
  color: rgba(232, 234, 237, 0.9);
  padding: 0.62rem 0.7rem;
  outline: none;
}

.dt-tape-signup-input::placeholder {
  color: rgba(232, 234, 237, 0.34);
}

.dt-tape-signup-input:focus {
  border-color: rgba(125, 211, 192, 0.42);
  box-shadow: 0 0 0 3px rgba(125, 211, 192, 0.08);
}

.dt-tape-signup-submit {
  border: 1px solid rgba(125, 211, 192, 0.24);
  background: rgba(125, 211, 192, 0.12);
  color: rgba(220, 255, 246, 0.92);
  padding: 0.62rem 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.dt-tape-signup-submit:hover {
  border-color: rgba(125, 211, 192, 0.42);
  background: rgba(125, 211, 192, 0.16);
}

.dt-tape-signup-submit:disabled {
  cursor: wait;
  opacity: 0.66;
}

.dt-tape-signup-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.42rem;
  color: rgba(232, 234, 237, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.dt-tape-signup-check input {
  width: 14px;
  height: 14px;
  margin: 0.08rem 0 0;
  accent-color: var(--dt-teal-lit);
  flex: 0 0 auto;
}

.dt-tape-signup-message {
  min-height: 1.2em;
  color: rgba(125, 211, 192, 0.76);
}

.dt-tape-signup-message.is-error {
  color: #ffb1b1;
}

.dt-header-signal-card,
.dt-header-net-card {
  position: relative;
  display: grid;
  gap: 0.66rem;
  padding: 0.96rem 1rem 0.98rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(125, 211, 192, 0.14), transparent 56%),
    linear-gradient(180deg, rgba(16, 23, 29, 0.96), rgba(10, 14, 19, 0.9));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 30px rgba(0, 0, 0, 0.16);
}

.dt-header-net-card--summary {
  grid-column: 1 / -1;
}

.dt-header-signal-card::before,
.dt-header-signal-card::after,
.dt-header-net-card::before,
.dt-header-net-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.dt-header-signal-card::before,
.dt-header-net-card::before {
  border: 1px solid rgba(255, 255, 255, 0.03);
  opacity: 0.7;
}

.dt-header-signal-card::after,
.dt-header-net-card::after {
  inset: 1px auto 1px -34%;
  width: 30%;
  opacity: 0;
}

.dt-header-signal-card.is-mint,
.dt-header-net-card.is-mint {
  border-color: rgba(125, 211, 192, 0.24);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(125, 211, 192, 0.16), transparent 56%),
    linear-gradient(180deg, rgba(15, 25, 29, 0.96), rgba(10, 16, 19, 0.9));
}

.dt-header-signal-card.is-burn,
.dt-header-net-card.is-burn {
  border-color: rgba(248, 113, 113, 0.24);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(248, 113, 113, 0.14), transparent 56%),
    linear-gradient(180deg, rgba(24, 18, 20, 0.96), rgba(12, 13, 17, 0.9));
}

.dt-header-signal-card.is-scroll-live,
.dt-header-net-card.is-scroll-live {
  animation: dt-header-feed-land 620ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.dt-header-signal-card.is-scroll-live::after,
.dt-header-net-card.is-scroll-live::after {
  opacity: 1;
  animation: dt-header-signal-run 880ms ease-out both;
}

.dt-header-signal-card.is-scroll-live.is-mint::after,
.dt-header-net-card.is-scroll-live.is-mint::after {
  background: linear-gradient(90deg, transparent, rgba(125, 211, 192, 0.22), transparent);
}

.dt-header-signal-card.is-scroll-live.is-burn::after,
.dt-header-net-card.is-scroll-live.is-burn::after {
  background: linear-gradient(90deg, transparent, rgba(248, 113, 113, 0.2), transparent);
}

.dt-header-signal-head,
.dt-header-net-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.dt-header-signal-headline,
.dt-header-net-headline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.36rem 0.5rem;
}

.dt-header-signal-kicker,
.dt-header-net-kicker {
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.44);
}

.dt-header-signal-chip,
.dt-header-net-chip {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0.28rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 18, 0.6);
  color: rgba(232, 234, 237, 0.68);
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.dt-header-signal-card.is-mint .dt-header-signal-chip,
.dt-header-net-card.is-mint .dt-header-net-chip {
  color: var(--dt-teal-lit);
  border-color: rgba(125, 211, 192, 0.22);
  background: rgba(125, 211, 192, 0.08);
}

.dt-header-signal-card.is-burn .dt-header-signal-chip,
.dt-header-net-card.is-burn .dt-header-net-chip {
  color: #ffb1b1;
  border-color: rgba(248, 113, 113, 0.2);
  background: rgba(248, 113, 113, 0.08);
}

.dt-header-signal-orb {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(232, 234, 237, 0.36);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
}

.dt-header-signal-card.is-live .dt-header-signal-orb {
  animation: dt-header-live-pulse 1.9s ease-out infinite;
}

.dt-header-signal-card.is-mint .dt-header-signal-orb {
  background: var(--dt-teal-lit);
}

.dt-header-signal-card.is-burn .dt-header-signal-orb {
  background: var(--dt-red);
}

.dt-header-signal-amount,
.dt-header-net-amount {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--dt-fg);
}

.dt-header-signal-card.is-mint .dt-header-signal-amount,
.dt-header-net-card.is-mint .dt-header-net-amount {
  color: var(--dt-teal-lit);
}

.dt-header-signal-card.is-burn .dt-header-signal-amount,
.dt-header-net-card.is-burn .dt-header-net-amount {
  color: #ffb1b1;
}

.dt-header-signal-copy,
.dt-header-net-copy {
  color: rgba(232, 234, 237, 0.78);
  font-size: 15px;
  line-height: 1.34;
}

.dt-header-signal-copy b,
.dt-header-net-copy b {
  color: var(--dt-fg);
  font-weight: 600;
}

.dt-header-signal-meta,
.dt-header-net-meta {
  display: grid;
  gap: 0.32rem;
}

.dt-header-signal-meta-item,
.dt-header-net-meta-item {
  color: rgba(232, 234, 237, 0.46);
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.dt-header-feed-module--flow {
  gap: 0.38rem;
  padding: 0.62rem 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dt-header-feed-module--flow .dt-header-feed-title {
  font-family: var(--dt-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.42);
}

.dt-header-feed-module--flow .dt-header-feed-summary {
  min-height: 0;
  font-size: 10px;
}

.dt-header-feed-module--flow .dt-header-feed-note {
  color: rgba(232, 234, 237, 0.26);
  min-height: 0;
}

.dt-header-feed-module--flow .dt-header-feed-summary:empty,
.dt-header-feed-module--flow .dt-header-feed-note:empty {
  display: none;
}

.dt-header-feed-module-head {
  display: grid;
  gap: 0.32rem;
}

.dt-header-feed-kicker-row {
  display: grid;
  align-items: start;
  gap: 0.28rem;
}

.dt-header-feed-kicker {
  color: var(--dt-fg);
  font-family: var(--dt-serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: none;
}

.dt-header-feed-status {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(232, 234, 237, 0.56);
  font-family: var(--dt-sans);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.4;
  white-space: normal;
}

.dt-header-feed-status.is-recent {
  color: rgba(232, 234, 237, 0.6);
}

.dt-header-feed-status.is-stale {
  color: rgba(232, 234, 237, 0.54);
}

.dt-header-feed-title {
  min-width: 0;
  color: var(--dt-fg);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.dt-header-feed-filter-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 30px;
}

.dt-header-feed-filter-toggle {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  padding: 1px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  background: rgba(13, 17, 23, 0.24);
}

.dt-header-feed-filter-btn {
  min-height: 0;
  padding: 3px 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(232, 234, 237, 0.42);
  font-family: var(--dt-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.dt-header-feed-filter-btn:hover {
  color: rgba(232, 234, 237, 0.82);
}

.dt-header-feed-filter-btn.is-active {
  color: rgba(232, 234, 237, 0.76);
  background: rgba(255, 255, 255, 0.055);
}

.dt-header-feed-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
  min-height: 0;
  font-family: var(--dt-mono);
  font-size: 11px;
  color: rgba(232, 234, 237, 0.54);
}

.dt-header-feed-summary--primary {
  min-height: 0;
  padding: 0.42rem 0.56rem;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 8px;
  background: rgba(14, 20, 27, 0.42);
  font-size: 11px;
  color: rgba(232, 234, 237, 0.58);
}

.dt-header-feed-summary--primary:empty {
  display: none;
}

.dt-header-feed-summary--primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.dt-header-feed-summary-card {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  min-width: 0;
  white-space: nowrap;
}

.dt-header-feed-summary-card:not(:last-child)::after {
  content: '·';
  margin-left: 0.75rem;
  color: rgba(232, 234, 237, 0.22);
}

.dt-header-feed-summary-kicker {
  color: rgba(148, 163, 184, 0.78);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.dt-header-feed-summary-value {
  color: rgba(244, 248, 255, 0.86);
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.dt-header-feed-summary-meta {
  color: rgba(214, 223, 233, 0.72);
  font-size: 0.67rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.dt-header-feed-summary-card.is-mint .dt-header-feed-summary-value,
.dt-header-feed-summary-card.is-recent .dt-header-feed-summary-value {
  color: rgba(77, 234, 196, 0.98);
}

.dt-header-feed-summary-card.is-burn .dt-header-feed-summary-value {
  color: rgba(255, 122, 122, 0.98);
}

.dt-header-feed-summary-card.is-total {
  background: rgba(14, 20, 27, 0.62);
}

.dt-header-feed-stat b {
  color: var(--dt-fg);
  font-weight: 500;
}

.dt-header-feed-stat.is-mint b {
  color: var(--dt-teal-lit);
}

.dt-header-feed-stat.is-burn b {
  color: var(--dt-red);
}

.dt-header-feed-list {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  min-height: 0;
}

.dt-header-feed-list--primary {
  position: relative;
  gap: 0.55rem;
  padding-left: 0.72rem;
}

.dt-header-feed-list--primary::before {
  content: '';
  position: absolute;
  left: 0.16rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.dt-header-feed-list--primary .dt-header-feed-row {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 14px 16px 14px 18px;
  border-radius: 16px;
  appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.dt-header-feed-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 10px 12px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(13, 17, 23, 0.72);
}

.dt-header-feed-row--flow {
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 0.68rem;
  align-items: flex-start;
  padding: 11px 12px;
}

.dt-header-feed-list--primary .dt-header-feed-row:hover {
  transform: translateY(-1px);
}

.dt-header-feed-list--primary .dt-header-feed-row:focus-visible {
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 0 0 1px rgba(125, 211, 192, 0.36), 0 0 0 4px rgba(125, 211, 192, 0.08);
}

.dt-header-feed-list--primary .dt-header-feed-row {
  background: linear-gradient(180deg, rgba(14, 20, 26, 0.88), rgba(11, 15, 20, 0.74));
}

.dt-header-feed-list--primary .dt-header-feed-row::before,
.dt-header-feed-list--primary .dt-header-feed-row::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.dt-header-feed-list--primary .dt-header-feed-row::before {
  inset: 1px auto 1px -30%;
  width: 26%;
  opacity: 0;
}

.dt-header-feed-list--primary .dt-header-feed-row::after {
  opacity: 0;
  transition: opacity 180ms ease;
}

.dt-header-feed-list--primary .dt-header-feed-row.is-hot::after {
  opacity: 1;
}

.dt-header-feed-list--primary .dt-header-feed-row.is-hot.is-mint::after {
  background: linear-gradient(90deg, rgba(125, 211, 192, 0.08), rgba(125, 211, 192, 0.02));
}

.dt-header-feed-list--primary .dt-header-feed-row.is-hot.is-burn::after {
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.08), rgba(248, 113, 113, 0.02));
}

.dt-header-feed-list--primary .dt-header-feed-row.is-fresh {
  animation: dt-header-feed-land 560ms cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: var(--dt-header-fresh-delay, 0ms);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-fresh::before {
  opacity: 1;
  animation: dt-header-signal-run 760ms ease-out both;
  animation-delay: var(--dt-header-fresh-delay, 0ms);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-fresh.is-mint::before {
  background: linear-gradient(90deg, transparent, rgba(125, 211, 192, 0.18), transparent);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-fresh.is-burn::before {
  background: linear-gradient(90deg, transparent, rgba(248, 113, 113, 0.18), transparent);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-scroll-live {
  animation: dt-header-feed-land 620ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.dt-header-feed-list--primary .dt-header-feed-row.is-scroll-live::before {
  opacity: 1;
  animation: dt-header-signal-run 820ms ease-out both;
}

.dt-header-feed-list--primary .dt-header-feed-row.is-scroll-live.is-mint::before {
  background: linear-gradient(90deg, transparent, rgba(125, 211, 192, 0.18), transparent);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-scroll-live.is-burn::before {
  background: linear-gradient(90deg, transparent, rgba(248, 113, 113, 0.18), transparent);
}

.dt-header-feed-list--primary .dt-header-feed-row--static {
  cursor: default;
}

.dt-header-feed-list--primary .dt-header-feed-row--static:hover {
  transform: none;
}

.dt-header-feed-list--primary .dt-header-feed-row.is-lead {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 10px 24px rgba(0, 0, 0, 0.16);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-latest.is-mint {
  border-color: rgba(125, 211, 192, 0.2);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-latest.is-burn {
  border-color: rgba(248, 113, 113, 0.2);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-hot.is-mint {
  border-color: rgba(125, 211, 192, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 10px 22px rgba(10, 24, 22, 0.18);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-hot.is-burn {
  border-color: rgba(248, 113, 113, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 10px 22px rgba(28, 12, 14, 0.16);
}

.dt-header-feed-list--primary .dt-header-feed-row.is-lead.is-mint {
  border-color: rgba(125, 211, 192, 0.28);
  background:
    radial-gradient(110% 120% at 100% 0%, rgba(125, 211, 192, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(15, 24, 28, 0.92), rgba(11, 16, 20, 0.82));
}

.dt-header-feed-list--primary .dt-header-feed-row.is-lead.is-burn {
  border-color: rgba(248, 113, 113, 0.28);
  background:
    radial-gradient(110% 120% at 100% 0%, rgba(248, 113, 113, 0.1), transparent 52%),
    linear-gradient(180deg, rgba(22, 17, 19, 0.92), rgba(11, 16, 20, 0.82));
}

.dt-header-feed-row.is-mint {
  border-color: rgba(125, 211, 192, 0.16);
}

.dt-header-feed-row.is-burn {
  border-color: rgba(248, 113, 113, 0.16);
}

.dt-header-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}


.dt-header-feed-note--primary {
  color: rgba(232, 234, 237, 0.56);
  min-height: 0;
}

.dt-header-feed-row.is-mint .dt-header-feed-dot {
  background: var(--dt-teal-lit);
  box-shadow: 0 0 5px rgba(167, 243, 208, 0.24);
}

.dt-header-feed-row.is-burn .dt-header-feed-dot {
  background: var(--dt-red);
  box-shadow: 0 0 5px rgba(248, 113, 113, 0.18);
}

.dt-header-feed-amount,
.dt-header-feed-age {
  font-family: var(--dt-mono);
  font-size: 12px;
}

.dt-header-feed-row.is-mint .dt-header-feed-amount {
  color: var(--dt-teal-lit);
}

.dt-header-feed-row.is-burn .dt-header-feed-amount {
  color: var(--dt-red);
}

.dt-header-feed-desc {
  min-width: 0;
  color: rgba(232, 234, 237, 0.54);
  font-size: 12px;
  line-height: 1.4;
}

.dt-header-feed-desc b {
  color: var(--dt-fg);
  font-weight: 500;
}

.dt-header-feed-flow-meta {
  display: block;
  margin-top: 0.2rem;
  color: rgba(232, 234, 237, 0.42);
  font-family: var(--dt-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.dt-header-flow-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.22rem 0.42rem;
  align-items: center;
  color: rgba(232, 234, 237, 0.5);
  font-family: var(--dt-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.dt-header-flow-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(232, 234, 237, 0.56);
}

.dt-header-flow-inline-item b {
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--dt-fg);
}

.dt-header-flow-inline-item.is-mint {
  color: var(--dt-teal-lit);
}

.dt-header-flow-inline-item.is-burn {
  color: #ffb1b1;
}

.dt-header-flow-inline-sep {
  color: rgba(232, 234, 237, 0.24);
}

.dt-header-feed-tail {
  display: grid;
  justify-items: end;
  gap: 0.28rem;
}

.dt-header-feed-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 4px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 17, 23, 0.84);
  color: rgba(232, 234, 237, 0.48);
  font-family: var(--dt-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dt-header-feed-chip.is-live {
  border-color: rgba(125, 211, 192, 0.18);
  color: var(--dt-teal-lit);
  background: rgba(125, 211, 192, 0.08);
}

.dt-header-feed-chip.is-stored {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(232, 234, 237, 0.5);
}

.dt-header-feed-chip.is-supply-delta {
  border-color: rgba(255, 255, 255, 0.09);
  color: rgba(232, 234, 237, 0.46);
}

.dt-header-feed-chip.is-lead {
  background: rgba(125, 211, 192, 0.12);
  border-color: rgba(125, 211, 192, 0.26);
  color: var(--dt-teal-lit);
}

.dt-header-feed-chip.is-latest {
  background: rgba(125, 211, 192, 0.12);
  border-color: rgba(125, 211, 192, 0.26);
  color: var(--dt-teal-lit);
}

.dt-header-feed-row.is-burn .dt-header-feed-chip.is-lead {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.24);
  color: #ffb1b1;
}

.dt-header-feed-row.is-burn .dt-header-feed-chip.is-latest {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.24);
  color: #ffb1b1;
}

.dt-header-feed-age {
  color: rgba(232, 234, 237, 0.42);
  white-space: nowrap;
  text-align: right;
}

.dt-header-feed-row.is-lead .dt-header-feed-age,
.dt-header-feed-row.is-lead .dt-header-feed-desc {
  color: rgba(232, 234, 237, 0.72);
}

.dt-header-feed-row.is-hot .dt-header-feed-desc {
  color: rgba(232, 234, 237, 0.72);
}

.dt-header-feed-row.is-hot .dt-header-feed-age {
  color: rgba(232, 234, 237, 0.54);
}

.dt-header-feed-empty {
  padding: 1rem 0.92rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  color: rgba(232, 234, 237, 0.42);
  font-size: 13px;
  text-align: center;
}

@keyframes dt-header-feed-land {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.985);
  }
  65% {
    opacity: 1;
    transform: translateY(0) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dt-header-feed-note {
  color: rgba(232, 234, 237, 0.3);
  font-size: 10px;
  line-height: 1.55;
  min-height: 2.9em;
}

@media (min-width: 901px) {
  .dt {
    width: min(100%, 1224px);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .dt-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
    padding: 60px 0 32px;
  }

  .dt-hero::before {
    background: radial-gradient(
      ellipse 78% 92% at 52% 36%,
      rgba(10, 13, 18, 0.88) 0%,
      rgba(10, 13, 18, 0.54) 46%,
      rgba(10, 13, 18, 0.08) 84%
    );
  }

  .dt-hero-left {
    display: grid;
    gap: 0;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
  }

  .dt-kicker {
    margin: 0 0 1.05rem;
    color: rgba(232, 234, 237, 0.48);
  }

  .dt-what-is {
    max-width: none;
    margin: 0.1rem 0 0;
    font-family: var(--dt-serif);
    font-size: clamp(44px, 4.8vw, 70px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.98;
    color: var(--dt-fg);
  }

  .dt-what-is-line {
    display: block;
  }

  .dt-what-is-line--accent {
    color: var(--dt-teal-lit);
    text-shadow: 0 0 24px rgba(125, 211, 192, 0.14), 0 8px 22px rgba(0, 0, 0, 0.24);
  }

  .dt-subhead {
    max-width: 42ch;
    margin: 0.9rem auto 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(232, 234, 237, 0.68);
  }

  .dt-hero-right {
    display: none;
  }

  .dt-headline {
    justify-content: center;
    width: 100%;
    margin: 0 0 1.15rem;
    font-size: clamp(132px, 14vw, 204px);
    line-height: 0.8;
  }

  .dt-headline-subratio {
    min-height: 0;
    margin: 0.65rem 0 0;
    font-family: var(--dt-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(232, 234, 237, 0.5);
  }

  .dt-headline-subratio.visible {
    margin-bottom: 0;
  }

  .dt-formula {
    max-width: 860px;
    margin: 0 auto 38px;
  }

  .dt-header-panels {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px 0;
    align-items: start;
  }

  .dt-header-panel--ratio {
    grid-area: auto;
  }

  .dt-header-panel--supply {
    grid-area: auto;
    min-height: 0;
    padding: 1.15rem 1.2rem 0.95rem;
  }

  .dt-header-supply-status {
    min-height: 0;
  }

  .dt-header-output-card {
    min-height: 0;
    padding: 16px 20px;
    gap: 0.78rem;
    border-radius: 18px;
  }

  .dt-header-output-proof {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(220px, 0.9fr);
    gap: 0.8rem;
  }

  .dt-header-output-term {
    padding: 0.88rem 1rem 0.94rem;
  }

  .dt-header-output-term-value {
    font-size: clamp(22px, 2.4vw, 34px);
  }

  .dt-header-output-support {
    font-size: 12px;
  }

  .dt-header-output-ratio {
    font-size: clamp(74px, 8vw, 112px);
  }

  .dt-header-output-side {
    min-width: 240px;
  }

  .dt-header-output-pct {
    font-size: clamp(42px, 4.8vw, 60px);
  }

  .dt-header-output-calc {
    font-size: 12px;
    gap: 0.6rem;
  }

  .dt-header-window-toggle {
    background: rgba(10, 13, 18, 0.9);
  }

  .dt-header-supply-head {
    align-items: center;
  }

  .dt-header-tape {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dt-header-tape--top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .dt-hero-tape {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
  }

  .dt-header-tape-side {
    justify-items: start;
  }

  .dt-header-tape--top .dt-header-tape-side {
    justify-items: end;
  }

  .dt-hero-tape .dt-header-tape-side {
    justify-items: start;
  }

  .dt-header-tape-context {
    white-space: normal;
  }

  .dt-header-tape--top .dt-header-tape-context {
    white-space: nowrap;
  }

  .dt-header-supply-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.82rem;
    align-items: start;
  }

  .dt-header-net-card--summary {
    grid-template-columns: minmax(160px, 0.72fr) minmax(220px, 0.9fr) minmax(0, 1.08fr);
    grid-template-areas:
      'head head head'
      'amount copy meta';
    align-items: start;
    gap: 0.7rem 1rem;
    padding: 0.92rem 1rem 0.96rem;
  }

  .dt-header-net-card--summary .dt-header-net-head {
    grid-area: head;
  }

  .dt-header-net-card--summary .dt-header-net-amount {
    grid-area: amount;
    align-self: center;
  }

  .dt-header-net-card--summary .dt-header-net-copy {
    grid-area: copy;
    align-self: center;
    max-width: 32ch;
  }

  .dt-header-net-card--summary .dt-header-net-meta {
    grid-area: meta;
    align-content: start;
    padding-top: 0.08rem;
  }

  .dt-header-supply-visual {
    gap: 0.7rem;
  }

  .dt-header-live-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dt-header-chart-shell {
    min-height: 338px;
    padding-top: 0.35rem;
  }

  .dt-header-chart {
    min-height: 326px;
  }

  .dt-header-issuance {
    align-self: stretch;
    min-height: 0;
  }

  .dt-header-feed-module--primary {
    gap: 0.66rem;
    padding: 0.88rem;
  }

  .dt-header-feed {
    align-self: stretch;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.72rem;
    margin-top: 0;
  }

  .dt-header-feed--inline {
    grid-area: auto;
    gap: 0;
    align-self: start;
  }

  .dt-header-feed-list {
    gap: 0.55rem;
  }

  .dt-header-feed-module {
    min-height: 0;
  }

  .dt-header-feed-module--flow {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      'head'
      'summary'
      'list'
      'note';
    align-items: start;
    row-gap: 0.48rem;
    column-gap: 0;
    padding: 0.88rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(12, 16, 22, 0.76), rgba(9, 13, 18, 0.68));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .dt-header-feed-summary {
    min-height: 0;
  }
.dt-header-feed-summary--primary {
    min-height: 0;
  }

  .dt-header-feed-note {
    min-height: 32px;
  }

  .dt-header-feed-module--flow .dt-header-feed-module-head {
    grid-area: head;
    align-self: start;
  }

  .dt-header-feed-module--flow .dt-header-feed-summary {
    grid-area: summary;
    display: flex;
    min-height: 0;
  }

  .dt-header-feed-module--flow .dt-header-feed-note {
    grid-area: note;
    display: block;
    min-height: 0;
  }

  .dt-header-feed-module--flow .dt-header-feed-list {
    grid-area: list;
    grid-template-columns: minmax(0, 1fr);
    align-self: start;
  }
}

@media (max-width: 900px) {
  .dt-header-panel {
    padding: 1rem;
  }

  .dt-header-panel--ratio {
    padding: 0;
  }

  .dt-header-output-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .dt-header-output-proof-op {
    display: none;
  }

  .dt-header-output-term {
    padding: 0.85rem 0.9rem 0.9rem;
  }

  .dt-header-impact-grid {
    gap: 0.45rem 0.8rem;
  }

  .dt-header-supply-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dt-header-supply-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dt-header-net-card--summary {
    grid-column: auto;
  }

  .dt-header-supply-controls {
    justify-content: flex-start;
    width: 100%;
  }

  .dt-header-feed-module-head {
    gap: 0.28rem;
  }

  .dt-header-feed-filter-row {
    justify-content: flex-start;
  }

  .dt-header-issuance-head {
    flex-direction: column;
  }

  .dt-header-signal-head,
  .dt-header-net-head {
    align-items: flex-start;
  }

  .dt-header-signal-amount,
  .dt-header-net-amount {
    font-size: clamp(26px, 8vw, 38px);
  }

  .dt-header-chart-callout {
    display: none;
  }

  .dt-header-live-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .dt-header-chart-shell {
    min-height: 208px;
  }
}

@media (max-width: 560px) {
  .dt-header-panel {
    padding: 1rem;
  }

  .dt-header-panel--ratio {
    padding: 0;
  }

  .dt-header-output-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .dt-header-output-term--result {
    grid-column: 1 / -1;
  }

  .dt-header-output-term {
    padding: 0.78rem 0.82rem 0.82rem;
  }

  .dt-header-output-term-value {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .dt-header-window-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .dt-header-window-btn {
    flex: 1 1 calc(25% - 6px);
    min-width: calc(25% - 6px);
  }

  .dt-header-output-card {
    align-items: center;
    flex-direction: row;
    gap: 1rem;
  }

  .dt-header-output-side {
    text-align: right;
  }

  .dt-header-output-calc {
    justify-content: flex-end;
  }

  .dt-header-impact-grid {
    display: grid;
    gap: 0.38rem;
  }

  .dt-header-impact {
    padding-top: 0.58rem;
  }

  .dt-header-impact-chip {
    gap: 0.3rem;
  }

  .dt-header-impact-chip:not(:last-child)::after {
    display: none;
  }

  .dt-header-window-btn {
    padding-inline: 0.55rem;
  }

  .dt-header-supply-summary {
    flex-direction: row;
    gap: 1rem;
  }

  .dt-header-supply-grid {
    gap: 0.82rem;
  }

  .dt-header-supply-status {
    max-width: none;
    text-align: left;
  }

  .dt-header-chart-shell {
    padding: 0.2rem 0 0;
    min-height: 196px;
  }

  .dt-header-chart {
    min-height: 186px;
  }

  .dt-header-feed-summary {
    gap: 0.35rem 0.55rem;
  }

  .dt-header-feed-summary--primary {
    padding: 0.38rem 0.48rem;
  }

  .dt-header-signal-card,
  .dt-header-net-card {
    padding: 0.88rem 0.9rem 0.92rem;
  }

  .dt-header-signal-head,
  .dt-header-net-head {
    gap: 0.55rem;
  }

  .dt-header-signal-headline,
  .dt-header-net-headline {
    gap: 0.32rem 0.42rem;
  }

  .dt-header-signal-meta,
  .dt-header-net-meta {
    gap: 0.28rem;
  }

  .dt-header-feed-filter-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .dt-header-feed-row {
    grid-template-columns: auto auto 1fr;
  }

  .dt-header-feed-age {
    grid-column: 2 / 4;
    padding-left: 1.2rem;
  }

  .dt-header-feed-desc {
    font-size: 12px;
  }

  .dt-header-chart-legend {
    gap: 0.45rem 0.7rem;
  }

  .dt-header-translation-stage {
    padding: 0.78rem 0.84rem 0.8rem;
  }

  .dt-header-translation-value {
    font-size: clamp(17px, 6vw, 22px);
  }

  .dt-header-translation-stage--supply .dt-header-translation-value,
  .dt-header-translation-stage--m2 .dt-header-translation-value,
  .dt-header-translation-stage--ddd .dt-header-translation-value {
    font-size: clamp(24px, 8vw, 30px);
  }
}

/* ---------- Map + story overlays (layered over terminal) ----------
   The world-map canvas sits at z:0 (background). Payment-story
   controller positions origin/destination beacons inside
   #storyOverlay at z:2. The terminal surface sits at z:3.
   The story banner and the map legend both live inline inside
   .live-scenario-section (see css/index.css) — neither is floated at
   the viewport level. */

/* Homepage-only: near-opaque backdrop on the signup block so map comets
   don't bleed through the newsletter copy. Scoped to html.dt-page to
   leave the shared .signup-block (used on subpages) untouched. */
html.dt-page .signup-block {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.25rem 1.75rem 2rem;
  border-radius: 18px;
  border: 1px solid var(--border-card, #2a3342);
  background: linear-gradient(165deg, rgba(14, 18, 24, 0.92) 0%, rgba(8, 11, 15, 0.88) 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

html.dt-page .page-footer {
  margin-top: 4.5rem;
  padding: 2.1rem max(24px, env(safe-area-inset-left)) calc(1.5rem + env(safe-area-inset-bottom, 0px)) max(24px, env(safe-area-inset-right));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 16% 0%, rgba(45, 212, 191, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(8, 11, 15, 0.42), rgba(8, 11, 15, 0.72));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIVE ATMOSPHERE PASS
   Hero live indicator, trend-tinted headline glow, ambient grid drift,
   sparkline reveal, and the thin live Tape rail. All motion is
   compositor-friendly (opacity/transform/filter) and reduced-motion safe.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ---------- Hero live-drift dot pulse (used by .dt-hero-live-drift-dot) ---------- */
@keyframes dt-hero-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(125, 211, 192, 0.45); opacity: 1; }
  50%      { box-shadow: 0 0 0 4px rgba(125, 211, 192, 0); opacity: 0.7; }
}

/* ---------- Headline live glow (very subtle, trend-tinted) ---------- */
.dt-headline.is-live .dt-headline-ratio {
  transition: opacity 400ms ease, text-shadow 700ms ease;
}
.dt-headline.is-live[data-trend="up"] .dt-headline-ratio {
  text-shadow: 0 0 26px rgba(125, 211, 192, 0.26), 0 10px 30px rgba(0, 0, 0, 0.38), 0 2px 8px rgba(0, 0, 0, 0.34);
}
.dt-headline.is-live[data-trend="down"] .dt-headline-ratio {
  text-shadow: 0 0 26px rgba(255, 177, 177, 0.22), 0 10px 30px rgba(0, 0, 0, 0.38), 0 2px 8px rgba(0, 0, 0, 0.34);
}
/* One-time resolve pulse when live data first lands */
.dt-headline--resolve .dt-headline-ratio { animation: dt-headline-resolve 2400ms ease-out 1; }
.dt-headline--resolve[data-trend="down"] .dt-headline-ratio { animation-name: dt-headline-resolve-down; }
@keyframes dt-headline-resolve {
  0%   { text-shadow: 0 0 0 rgba(125, 211, 192, 0), 0 10px 30px rgba(0, 0, 0, 0.38); }
  20%  { text-shadow: 0 0 34px rgba(125, 211, 192, 0.5), 0 10px 30px rgba(0, 0, 0, 0.38); }
  100% { text-shadow: 0 0 26px rgba(125, 211, 192, 0), 0 10px 30px rgba(0, 0, 0, 0.38); }
}
@keyframes dt-headline-resolve-down {
  0%   { text-shadow: 0 0 0 rgba(255, 177, 177, 0), 0 10px 30px rgba(0, 0, 0, 0.38); }
  20%  { text-shadow: 0 0 34px rgba(255, 177, 177, 0.45), 0 10px 30px rgba(0, 0, 0, 0.38); }
  100% { text-shadow: 0 0 26px rgba(255, 177, 177, 0), 0 10px 30px rgba(0, 0, 0, 0.38); }
}

/* ---------- Ambient background atmosphere (CSS only) ---------- */
.dt-grid {
  animation: dt-grid-drift 60s linear infinite;
  will-change: background-position;
}
@keyframes dt-grid-drift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 40px 40px, 40px 40px; }
}
/* Soft data-reactive bloom centered behind the hero when live data resolves */
.dt-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 52% at 50% 36%, rgba(125, 211, 192, 0.07), rgba(125, 211, 192, 0) 70%);
  opacity: 0;
}
.dt-grid--pulse::after { animation: dt-grid-bloom 2.6s ease-out 1; }
@keyframes dt-grid-bloom {
  0%   { opacity: 0; }
  25%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ---------- Sparkline premium reveal ---------- */
.dt-sparkline { position: relative; }
.dt-sparkline-svg #heroSparkLine,
.dt-sparkline-svg .dt-sparkline-line {
  filter: drop-shadow(0 0 3px rgba(125, 211, 192, 0.4));
}
#heroSparkDot {
  filter: drop-shadow(0 0 3px rgba(125, 211, 192, 0.85)) drop-shadow(0 0 6px rgba(125, 211, 192, 0.35));
  transition: opacity 300ms ease;
}
#heroSparkDot.is-live { animation: dt-spark-dot 2.8s ease-in-out infinite; }
@keyframes dt-spark-dot {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(125, 211, 192, 1)) drop-shadow(0 0 9px rgba(125, 211, 192, 0.5));
  }
  50% {
    opacity: 0.72;
    filter: drop-shadow(0 0 2px rgba(125, 211, 192, 0.45));
  }
}
#heroSparkRing {
  transition: opacity 300ms ease;
}
#heroSparkRing.is-live { animation: dt-spark-ring 2.8s ease-out infinite; }
@keyframes dt-spark-ring {
  0%   { opacity: 0; }
  12%  { opacity: 0.5; }
  100% { opacity: 0; }
}
.dt-sparkline.is-scanning::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 32%, rgba(167, 243, 208, 0.22) 50%, transparent 68%);
  transform: translateX(-100%);
  animation: dt-spark-shimmer 1.4s ease-out 1;
}
@keyframes dt-spark-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* ---------- Live Tape rail ---------- */
.dt-tape-rail {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 11px 24px;
  box-sizing: border-box;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.35), rgba(10, 13, 18, 0.15));
  font-family: var(--dt-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(232, 234, 237, 0.55);
  overflow: hidden;
}
.dt-tape-rail[hidden] { display: none; }
.dt-tape-rail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--dt-teal);
  box-shadow: 0 0 6px rgba(125, 211, 192, 0.5);
  animation: dt-hero-live-pulse 2.6s ease-in-out infinite;
}
.dt-tape-rail[data-trend="down"] .dt-tape-rail-dot {
  background: #ffb1b1;
  box-shadow: 0 0 6px rgba(255, 177, 177, 0.5);
}
.dt-tape-rail-content {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.dt-tape-rail-seg { display: inline-flex; align-items: center; white-space: nowrap; }
.dt-tape-rail-seg:not(:first-child)::before {
  content: '·';
  margin: 0 0.6rem;
  color: rgba(125, 211, 192, 0.4);
}
.dt-tape-rail-lead {
  color: rgba(232, 234, 237, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}
.dt-tape-rail-net.is-pos { color: var(--dt-teal-lit); }
.dt-tape-rail-net.is-neg { color: #ffb1b1; }
.dt-tape-rail-detail { color: rgba(232, 234, 237, 0.62); }
.dt-tape-rail-next { color: rgba(232, 234, 237, 0.45); }
.dt-tape-rail-loading { color: rgba(232, 234, 237, 0.4); }

@media (max-width: 600px) {
  .dt-tape-rail { font-size: 10.5px; padding: 10px 20px; }
  .dt-tape-rail-detail { display: none; }
}

/* ---------- Pause continuous atmosphere when tab hidden ---------- */
html.dt-anim-paused .dt-grid,
html.dt-anim-paused .dt-hero-live-drift-dot,
html.dt-anim-paused .dt-tape-rail-dot,
html.dt-anim-paused #heroSparkDot.is-live,
html.dt-anim-paused #heroSparkRing.is-live {
  animation-play-state: paused;
}

/* ---------- Reduced motion: clean static version ---------- */
@media (prefers-reduced-motion: reduce) {
  .dt-hero-live-drift-dot,
  .dt-tape-rail-dot,
  #heroSparkDot.is-live,
  #heroSparkRing.is-live { animation: none; }
  .dt-grid { animation: none; }
  .dt-grid--pulse::after { animation: none; opacity: 0; }
  .dt-headline--resolve .dt-headline-ratio { animation: none; }
  .dt-sparkline.is-scanning::after { display: none; }
}

/* ---------- Mobile density — citation panel ---------- */
@media (max-width: 560px) {
  .dt-cite-panel {
    left: auto;
    right: 0;
    transform: none;
  }
  .dt-cite-panel::after {
    left: auto;
    right: 1.5rem;
    transform: none;
  }
}

/* ── How to read DDD — compact collapsible explainer ── */
.ddd-how-to-read {
  max-width: 880px;
  margin: 0 auto 1.25rem;
  padding: 0 20px;
}
.ddd-how-to-read-details {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  background: rgba(255,255,255,0.015);
}
.ddd-how-to-read-summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.55rem 1rem;
  font-family: var(--dt-mono, 'IBM Plex Mono', monospace);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(232,240,238,0.38);
  user-select: none;
  transition: color 0.15s;
}
.ddd-how-to-read-summary::-webkit-details-marker { display: none; }
.ddd-how-to-read-summary::before { content: '▸'; font-size: 0.6em; }
.ddd-how-to-read-details[open] .ddd-how-to-read-summary::before { content: '▾'; }
.ddd-how-to-read-summary:hover { color: rgba(232,240,238,0.6); }
.ddd-how-to-read-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0;
  padding: 0 0.75rem 0.65rem;
  margin: 0;
}
.ddd-how-to-read-list > div {
  padding: 0.35rem 0.5rem;
}
.ddd-how-to-read-list dt {
  font-family: var(--dt-mono, 'IBM Plex Mono', monospace);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(45,212,191,0.7);
  margin: 0 0 0.18rem;
}
.ddd-how-to-read-list dd {
  font-family: var(--dt-sans, 'IBM Plex Sans', sans-serif);
  font-size: 0.76rem;
  color: rgba(232,240,238,0.52);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 560px) {
  .ddd-how-to-read {
    margin-top: 0.65rem;
  }
}
