/* The Tape page — net issuer supply movement between DDD-owned snapshots.
   Built on the shared DDD token system (tokens.css). Self-contained so it does
   not couple to homepage-only styles. */

:root {
  --tape-pos: #7dd3c0;          /* expanded */
  --tape-pos-dim: rgba(125, 211, 192, 0.12);
  --tape-neg: #f0928c;          /* contracted */
  --tape-neg-dim: rgba(240, 146, 140, 0.12);
  --tape-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

body { background: var(--bg); color: var(--text); }

/* Active nav state for the Tape page (the overlay has no active convention). */
.nav-overlay-link[aria-current="page"] .nav-overlay-label { color: var(--accent); }

.tape-shell {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  box-sizing: border-box;
}

/* ── Hero ───────────────────────────────────── */
.tape-hero {
  border-bottom: 1px solid var(--border-hairline);
  padding: 5.5rem 0 2.25rem;
}
.tape-hero-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.tape-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--tape-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  background: var(--accent-glow);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tape-eyebrow::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(125, 211, 192, 0.6);
}
.tape-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #eef3f1;
}
.tape-subtitle {
  font-size: clamp(15px, 2.2vw, 19px);
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 0 18px;
  line-height: 1.5;
}
.tape-positioning {
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #eef3f1;
  margin: 0 0 10px;
}
.tape-methodology {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 72ch;
  margin: 0;
}

/* ── Status banner ──────────────────────────── */
.tape-statusbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 1.75rem 0 1.25rem;
  font-family: var(--tape-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.tape-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-card);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}
.tape-badge--live { color: var(--accent); border-color: var(--accent-dim); background: var(--accent-glow); }
.tape-badge--collecting { color: #d9b45a; border-color: rgba(217,180,90,0.25); background: rgba(217,180,90,0.07); }
.tape-badge--delayed { color: #e5a050; border-color: rgba(229,160,80,0.3); background: rgba(229,160,80,0.08); }
.tape-badge--error { color: #e57050; border-color: rgba(229,112,80,0.3); background: rgba(229,112,80,0.08); }
.tape-badge--provider { color: var(--text-secondary); }
.tape-badge--delta { color: var(--accent); border-color: var(--accent-dim); }

/* ── Summary cards (ok state) ───────────────── */
.tape-snapshot-timer {
  flex: 1 1 320px;
  max-width: 440px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-hairline);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.014);
}
.tape-snapshot-timer-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.tape-snapshot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(125, 211, 192, 0.72);
  animation: tape-snapshot-pulse 2.8s ease-in-out infinite;
}
.tape-snapshot-timer-main {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
}
.tape-snapshot-timer-progress {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 8px;
}
.tape-snapshot-timer-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: rgba(125, 211, 192, 0.58);
  transition: width 800ms ease;
}
.tape-snapshot-timer-meta,
.tape-snapshot-timer-note {
  font-size: 10px;
  line-height: 1.45;
  color: var(--text-faint);
}
.tape-snapshot-timer-note { margin-top: 4px; }
.tape-snapshot-timer-warning {
  font-size: 10px;
  line-height: 1.45;
  color: #e5a050;
  margin-top: 4px;
}

/* ── 4-field status grid ─────────────────────── */
.tape-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.tape-status-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  background: #0d1117;
}
.tape-status-field:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.06);
}
.tape-status-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint, #8b95a3);
  font-family: var(--mono, monospace);
}
.tape-status-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text, #e8eaed);
  line-height: 1.3;
}
.tape-status-sub {
  font-size: 10px;
  line-height: 1.4;
  color: var(--text-faint, #8b95a3);
}
.tape-status-warning {
  font-size: 10px;
  line-height: 1.4;
  color: #e5a050;
  margin-top: 2px;
}
@media (max-width: 860px) {
  .tape-status-grid { grid-template-columns: repeat(2, 1fr); }
  .tape-status-field:nth-child(2) { border-right: none; }
  .tape-status-field:nth-child(odd):not(:nth-last-child(-n+2)) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .tape-status-field:nth-child(even):not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .tape-status-field { border-right: none !important; }
  .tape-status-field:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06) !important; }
}
@media (max-width: 480px) {
  .tape-status-grid { grid-template-columns: 1fr; }
  .tape-status-field { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .tape-status-field:last-child { border-bottom: none; }
}

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

.tape-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
  border-radius: 12px;
  overflow: hidden;
}
.tape-stat {
  background: var(--bg);
  padding: 0.7rem 0.85rem;
}
.tape-stat-label {
  font-family: var(--tape-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 5px;
}
.tape-stat-value {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.tape-stat-value small { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.tape-stat--net .tape-stat-value { font-size: 26px; }
.tape-stat.is-pos .tape-stat-value { color: var(--tape-pos); }
.tape-stat.is-neg .tape-stat-value { color: var(--tape-neg); }

/* ── Filters ────────────────────────────────── */
.tape-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 1.5rem 0 1rem;
}
.tape-filters[hidden] { display: none; }
.tape-seg {
  display: inline-flex;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  overflow: hidden;
}
.tape-seg button {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-family: var(--tape-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tape-seg button + button { border-left: 1px solid var(--border-card); }
.tape-seg button.is-active { background: var(--accent-dim); color: var(--accent); }
.tape-field {
  background: var(--bg-ui);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--tape-mono);
  font-size: 12px;
  padding: 7px 10px;
  min-width: 130px;
}
.tape-field:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.tape-filter-meta {
  margin-left: auto;
  font-family: var(--tape-mono);
  font-size: 11px;
  color: var(--text-faint);
}

/* ── Rows ───────────────────────────────────── */
.tape-rows { display: flex; flex-direction: column; gap: 1px; }
.tape-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-hairline);
  border-radius: 10px;
  background: var(--bg-card);
}
.tape-row.is-hidden { display: none; }
.tape-row-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.tape-row-token-main {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.tape-row-issuer { font-weight: 400; color: var(--text-muted); }
.tape-row-chain {
  font-family: var(--tape-mono);
  font-size: 12px;
  color: var(--text-secondary);
}
.tape-row-flow {
  font-family: var(--tape-mono);
  font-size: 13px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.tape-row-right {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.tape-delta {
  font-family: var(--tape-mono);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.tape-delta.is-pos { color: var(--tape-pos); }
.tape-delta.is-neg { color: var(--tape-neg); }
.tape-chip {
  font-family: var(--tape-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 5px;
}
.tape-chip--expanded { color: var(--tape-pos); background: var(--tape-pos-dim); }
.tape-chip--contracted { color: var(--tape-neg); background: var(--tape-neg-dim); }
.tape-row-impact {
  font-family: var(--tape-mono);
  font-size: 11px;
  color: var(--text-secondary);
}
.tape-row-meta-line {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--tape-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.tape-source-badge {
  font-family: var(--tape-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 5px;
  padding: 2px 7px;
}
.tape-row-window { font-family: var(--tape-mono); font-size: 10px; color: var(--text-faint); }

/* ── Equation summary ───────────────────────── */
.tape-equation {
  margin: 1.25rem 0 0.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-hairline);
  border-radius: 10px;
  background: var(--bg-card);
}
.tape-equation-formula {
  font-family: var(--tape-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.tape-equation-values {
  font-family: var(--tape-mono);
  font-size: clamp(15px, 2.4vw, 19px);
  color: var(--text);
}
.tape-equation-values .is-pos { color: var(--tape-pos); }
.tape-equation-values .is-neg { color: var(--tape-neg); }

/* ── Daily archive ──────────────────────────── */
.tape-archive-section { margin-top: 2.5rem; }
.tape-archive-collecting {
  padding: 1.25rem;
  border: 1px dashed var(--border-card);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}
.tape-archive { display: flex; flex-direction: column; gap: 1px; }
.tape-archive-row {
  display: grid;
  grid-template-columns: 70px 110px minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  background: var(--bg-card);
}
.tape-archive-date { font-family: var(--tape-mono); font-size: 12px; color: var(--text-secondary); }
.tape-archive-net { font-family: var(--tape-mono); font-size: 15px; font-weight: 500; }
.tape-archive-net.is-pos { color: var(--tape-pos); }
.tape-archive-net.is-neg { color: var(--tape-neg); }
.tape-archive-split { font-family: var(--tape-mono); font-size: 11px; color: var(--text-muted); }
.tape-archive-split .is-pos { color: var(--tape-pos); }
.tape-archive-split .is-neg { color: var(--tape-neg); }
.tape-archive-largest { font-family: var(--tape-mono); font-size: 12px; color: var(--text-secondary); text-align: right; }
.tape-timeline-section { margin-top: 2.5rem; }
.tape-timeline { display: flex; flex-direction: column; gap: 1px; }
.tape-timeline-row {
  display: grid;
  grid-template-columns: 125px 170px minmax(0, 1fr) minmax(0, 1fr) 155px;
  gap: 14px;
  align-items: center;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  background: var(--bg-card);
}
.tape-timeline-window,
.tape-timeline-net,
.tape-timeline-split,
.tape-timeline-largest,
.tape-timeline-label {
  font-family: var(--tape-mono);
}
.tape-timeline-window { font-size: 12px; color: var(--text-secondary); }
.tape-timeline-net { font-size: 15px; font-weight: 500; }
.tape-timeline-net small { font-size: 10px; color: var(--text-faint); font-weight: 400; }
.tape-timeline-net.is-pos { color: var(--tape-pos); }
.tape-timeline-net.is-neg { color: var(--tape-neg); }
.tape-timeline-split { font-size: 11px; color: var(--text-muted); }
.tape-timeline-split .is-pos { color: var(--tape-pos); }
.tape-timeline-split .is-neg { color: var(--tape-neg); }
.tape-timeline-largest { font-size: 12px; color: var(--text-secondary); }
.tape-timeline-label {
  justify-self: end;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border-card);
  border-radius: 5px;
  padding: 2px 7px;
  white-space: nowrap;
}
.tape-empty {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-family: var(--tape-mono);
  font-size: 12px;
  border: 1px dashed var(--border-card);
  border-radius: 10px;
}

/* ── Load more ──────────────────────────────── */
.tape-loadmore { display: flex; justify-content: center; margin-top: 1rem; }
.tape-loadmore:empty { margin-top: 0; }
.tape-loadmore-btn {
  background: var(--bg-ui);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: var(--tape-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.tape-loadmore-btn:hover { border-color: var(--accent-dim); color: var(--accent); }

/* ── Collecting state — compact DDD status banner (section A) ─ */
.tape-collecting {
  border: 1px solid var(--border-card);
  border-left: 2px solid var(--accent);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, var(--accent-glow), transparent);
  margin-bottom: 1.75rem;
}
.tape-collecting--compact {
  padding: 1.05rem 1.2rem 1.1rem;
  margin-bottom: 1.5rem;
}
.tape-collecting-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.tape-collecting-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(21px, 3.2vw, 28px);
  color: #eef3f1;
  margin: 0 0 8px;
}
.tape-collecting--compact .tape-collecting-title {
  font-size: clamp(17px, 2.3vw, 21px);
  margin: 0;
}
.tape-collecting-copy {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 64ch;
  margin: 0 0 16px;
  line-height: 1.6;
}
.tape-collecting--compact .tape-collecting-copy {
  font-size: 13.5px;
  margin: 0 0 14px;
}
/* Compact label/value pairs for the status banner */
.tape-collecting-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 26px;
}
.tape-mini-stat { display: flex; flex-direction: column; gap: 3px; }
.tape-mini-stat-label {
  font-family: var(--tape-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.tape-mini-stat-value {
  font-family: var(--tape-mono);
  font-size: 13px;
  color: var(--text-secondary);
}
.tape-partial-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  max-width: 72ch;
  line-height: 1.55;
}

/* ── Verified on-chain events (section C) ─────── */
.tape-events-section { margin-top: 2.5rem; }
.tape-events-note { font-size: 12.5px; color: var(--text-muted); margin: 0 0 0.85rem; max-width: 78ch; line-height: 1.55; }
.tape-events-more { margin-top: 0.85rem; }
.tape-events-more-summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tape-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 13px;
  border: 1px solid var(--border-card);
  border-radius: 8px;
}
.tape-events-more-summary::-webkit-details-marker { display: none; }
.tape-events-more-summary::before { content: '▸'; color: var(--text-faint); }
.tape-events-more[open] .tape-events-more-summary::before { content: '▾'; }
.tape-events-more[open] .tape-events-more-summary { margin-bottom: 0.85rem; }
.tape-chip--event { color: #8fb8ff; background: rgba(143, 184, 255, 0.12); }
.tape-source-badge--event { color: #8fb8ff; border-color: rgba(143, 184, 255, 0.3); }
.tape-event-tx { font-family: var(--tape-mono); font-size: 12px; color: var(--accent); }
.tape-event-tx:hover { color: var(--text); }

/* ── Provider supply view (section B — visible by default) ──── */
.tape-provider {
  margin-top: 2.5rem;
}
.tape-provider-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 78ch;
  line-height: 1.55;
}

/* ── Section heads ──────────────────────────── */
.tape-section-head {
  font-family: var(--tape-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 2rem 0 0.85rem;
}
/* Lead heads mark the three top-level data-type sections so they read as
   distinct: canonical DDD status, provider supply view, on-chain events. */
.tape-section-head--lead {
  font-size: 12.5px;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-hairline);
}

/* ── Signup module ──────────────────────────── */
.tape-signup {
  margin-top: 3rem;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 1.75rem;
  background: var(--bg-card);
}
.tape-signup h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(20px, 3vw, 26px);
  color: #eef3f1;
  margin: 0 0 8px;
}
.tape-signup p { font-size: 14px; color: var(--text-secondary); margin: 0 0 16px; max-width: 56ch; }
.tape-signup-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tape-signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.tape-signup-label {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.tape-signup-input {
  background: var(--bg-ui);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  padding: 11px 12px;
  width: 100%;
  box-sizing: border-box;
}
.tape-signup-input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.tape-signup-submit {
  font-family: var(--tape-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  padding: 11px 20px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.tape-signup-submit:hover { background: var(--accent-light); }
.tape-signup-submit:disabled { opacity: 0.6; cursor: default; }
.tape-signup-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.tape-signup-check input { margin-top: 2px; }
.tape-signup-privacy { font-size: 12px; color: var(--text-faint); margin: 0; }
.tape-signup-message { font-size: 13px; color: var(--accent); margin: 8px 0 0; min-height: 1em; }
.tape-signup-message.is-error { color: var(--tape-neg); }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 720px) {
  .tape-hero { padding: 4.5rem 0 1.75rem; }
  .tape-row { gap: 10px; }
  .tape-delta { font-size: 15px; }
  .tape-archive-row {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "date net"
      "split split"
      "largest largest";
    gap: 6px 12px;
  }
  .tape-archive-date { grid-area: date; }
  .tape-archive-net { grid-area: net; text-align: right; }
  .tape-archive-split { grid-area: split; }
  .tape-archive-largest { grid-area: largest; text-align: left; }
  .tape-timeline-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }
  .tape-timeline-label { justify-self: start; }
  .tape-stat--net .tape-stat-value { font-size: 24px; }
  .tape-filter-meta { margin-left: 0; width: 100%; }
  .tape-signup-row { grid-template-columns: minmax(0, 1fr); }
  .tape-signup-submit { width: 100%; }
}
