/* ============================================================
   StudioCDN Locker — Version A "Chain of Custody"
   Product-led dark / technical direction
   ------------------------------------------------------------
   Design tokens → base → components → sections
   WordPress-friendly: every section is self-contained,
   class names are stable and semantic.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* color */
  --bg: #07090d;
  --bg-raised: #0c1016;
  --surface: #10151d;
  --surface-2: #151c26;
  --border: #1d2633;
  --border-strong: #2a3746;
  --text: #eef3f8;
  --text-2: #9fb0c0;
  --text-3: #64778a;
  --accent: #4da3ff;
  --accent-strong: #117cd6;      /* heritage brand blue */
  --accent-ink: #06121f;
  --verified: #3adca6;           /* "registered / verified" semantics only */
  --warn: #ffc24d;
  --error: #ff7676;
  --glow: rgba(77, 163, 255, 0.14);

  /* type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --fs-display: clamp(2.5rem, 5.4vw, 4.25rem);
  --fs-h2: clamp(1.9rem, 3.4vw, 2.75rem);
  --fs-h3: clamp(1.2rem, 1.8vw, 1.45rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-caption: 0.8125rem;

  /* space */
  --sp-1: 0.5rem;
  --sp-2: 0.75rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
  --sp-7: 4rem;
  --sp-8: 6rem;
  --section-pad: clamp(4.5rem, 9vw, 7.5rem);

  /* shape */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;

  --header-h: 68px;
  --container: 1160px;
}

/* ---------- 2. Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 var(--fs-body) / 1.7 var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-display); font-weight: 650; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.012em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: #7cbcff; }

img, svg { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0; padding: 0; }

::selection { background: rgba(77, 163, 255, 0.32); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* typographic helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--sp-3);
  font: 500 0.75rem / 1 var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 42em;
}

.mono { font-family: var(--font-mono); }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.78em 1.5em;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font: 600 0.95rem / 1 var(--font-sans);
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease,
              color 0.2s ease, transform 0.2s var(--ease), box-shadow 0.25s ease;
}
.btn:active { transform: translateY(1px); }

.btn .btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover {
  background: #6cb4ff;
  color: var(--accent-ink);
  box-shadow: 0 0 0 1px rgba(77, 163, 255, 0.4), 0 8px 28px -8px var(--glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(77, 163, 255, 0.07);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding-inline: 1em;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 0.95em 1.9em; font-size: 1.02rem; }

.btn[disabled], .btn.is-loading {
  opacity: 0.6;
  pointer-events: none;
}
.btn .spinner {
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: 0.75; }
@keyframes spin { to { transform: rotate(360deg); } }

.text-link {
  font-weight: 600;
  font-size: var(--fs-small);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.text-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.text-link:hover::after { transform: translateX(3px); }

/* ---------- 4. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 9, 13, 0.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 9, 13, 0.85);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand:hover { color: var(--text); }
.brand .brand-logo {
  display: block;
  height: 30px;
  width: auto;
  flex: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
  margin-inline: auto;
}
.nav-links a {
  position: relative;
  color: var(--text-2);
  font-size: var(--fs-small);
  font-weight: 500;
  padding: 6px 2px;
}
.nav-links a:hover { color: var(--text); }
/* "page" on a real page, "location" when the scrollspy marks the section in view */
.nav-links a[aria-current]:not([aria-current="false"]) { color: var(--text); }
.nav-links a[aria-current]:not([aria-current="false"])::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-left: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav-toggle .bar + .bar { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: rgba(7, 9, 13, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: var(--sp-5) clamp(1.25rem, 5vw, 2rem) var(--sp-6);
  display: none;
  flex-direction: column;
  gap: var(--sp-2);
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 600;
  padding: 0.7em 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-cta {
  margin-top: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
}
body.menu-open { overflow: hidden; }

/* ---------- 5. Sections ---------- */
.section { padding-block: var(--section-pad); position: relative; }
/* Anchor landing: a jump to a linked section should put its heading just under
   the fixed header, not a screen of empty padding below it. html's
   scroll-padding-top clears the header; this cancels the section's own padding.
       heading top = (--header-h + 16) + (16 - pad) + pad = --header-h + 32 */
.section[id] { scroll-margin-top: calc(16px - var(--section-pad)); }
.section-tight { padding-block: calc(var(--section-pad) * 0.66); }
.section-head { max-width: 46em; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .lede { margin-inline: auto; }

.section-alt {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- 6. Hero ---------- */
.hero {
  padding-top: calc(var(--header-h) + clamp(3.5rem, 8vw, 6.5rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: var(--sp-4); }
.hero h1 .accent-line { color: var(--accent); }
.hero .lede { margin-bottom: var(--sp-5); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75em;
  color: var(--text-3);
  font-size: var(--fs-caption);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.hero-proof .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verified);
  box-shadow: 0 0 8px var(--verified);
  flex: none;
}

/* Pipeline visualization (hero) */
.pipeline-vis {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(77, 163, 255, 0.08), transparent 55%),
    var(--surface);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.8);
}
.pipeline-vis .vis-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 500 0.72rem / 1 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--sp-4);
}
.vis-title .live {
  color: var(--verified);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.vis-title .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.split-vis {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1.15fr);
  align-items: center;
  gap: 0;
}

.file-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--surface-2);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-card .file-icon {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 8px;
  background: rgba(77, 163, 255, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.file-card > span:last-child { display: grid; gap: 2px; min-width: 0; }
.file-card .file-name {
  font: 600 0.85rem / 1.3 var(--font-mono);
  color: var(--text);
  overflow-wrap: anywhere;
}
.file-card .file-meta {
  font: 400 0.72rem / 1.4 var(--font-mono);
  color: var(--text-3);
}

.split-paths { position: relative; height: 150px; }
.split-paths svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.split-paths .path-line {
  fill: none;
  stroke: var(--border-strong);
  stroke-width: 1.5;
}
.split-paths .path-flow {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 6 12;
  animation: flow 1.6s linear infinite;
}
@keyframes flow { to { stroke-dashoffset: -18; } }

.recipient-stack { display: grid; gap: 10px; }
.recipient-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-2);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.recipient-card .r-who {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.recipient-card .avatar {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 600 0.62rem / 1 var(--font-mono);
  color: var(--accent-ink);
  background: var(--accent);
}
.recipient-card:nth-child(2) .avatar { background: #8fd0ff; }
.recipient-card:nth-child(3) .avatar { background: #2e77c9; color: #eaf4ff; }
.recipient-card .r-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recipient-card .r-mail {
  font: 400 0.68rem / 1.3 var(--font-mono);
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wm-tag {
  flex: none;
  font: 600 0.66rem / 1 var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--verified);
  background: rgba(58, 220, 166, 0.1);
  border: 1px solid rgba(58, 220, 166, 0.35);
  border-radius: var(--r-pill);
  padding: 5px 9px;
}

.pipeline-footer {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px dashed var(--border);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-2);
  font: 400 0.7rem / 1.5 var(--font-mono);
  color: var(--text-3);
}
.pipeline-footer .ok { color: var(--verified); }

/* ---------- 7. Trust strip ---------- */
.trust-strip { border-block: 1px solid var(--border); background: var(--bg-raised); }
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
}
.trust-label {
  font: 500 0.72rem / 1.5 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  max-width: 22em;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2) var(--sp-4);
  list-style: none;
  width: 100%;
}
.trust-items li {
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.trust-items .t-note {
  font: 400 0.72rem / 1 var(--font-mono);
  color: var(--text-3);
}

/* ---------- 8. Steps (How it works) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  counter-reset: step;
}
.steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
.step-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: var(--sp-4);
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
}
.step-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.step-card .step-num {
  font: 600 0.72rem / 1 var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: var(--sp-3);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.step-card p { font-size: var(--fs-small); color: var(--text-2); }
.step-card .step-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-3);
}
.steps-connector {
  height: 2px;
  margin: 0 8% var(--sp-5);
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 10px, transparent 10px 20px);
  position: relative;
  overflow: hidden;
}
.steps-connector::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  width: 30%;
  animation: sweep 3.2s var(--ease) infinite;
}
@keyframes sweep {
  from { transform: translateX(-110%); }
  to { transform: translateX(440%); }
}

/* ---------- 9. Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
}
.bento-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s ease;
}
.bento-card:hover { border-color: var(--border-strong); }
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 200px at var(--mx, 50%) var(--my, 0%), var(--glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.bento-card:hover::after { opacity: 1; }
.bento-card h3 { font-size: 1.08rem; margin: 0; }
.bento-card p { font-size: var(--fs-small); color: var(--text-2); margin: 0; }
.bento-card .card-copy { position: relative; z-index: 1; }
.bento-card .card-ui { position: relative; z-index: 1; margin-top: auto; }
.span-3 { grid-column: span 3; }
.span-2 { grid-column: span 2; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }

/* ---------- 10. Mini product-UI recreations ---------- */
.ui-frame {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--bg-raised);
  overflow: hidden;
  font-family: var(--font-sans);
}
.ui-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.ui-titlebar .win-dots { display: flex; gap: 5px; }
.ui-titlebar .win-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}
.ui-titlebar .ui-title {
  font: 500 0.7rem / 1 var(--font-mono);
  color: var(--text-3);
  letter-spacing: 0.06em;
  margin-inline: auto;
}
.ui-body { padding: 12px; }

/* upload queue */
.ui-upload-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-bottom: 1px solid var(--border);
}
.ui-upload-row:last-child { border-bottom: 0; }
.ui-upload-row .u-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(77, 163, 255, 0.1);
  color: var(--accent);
  flex: none;
}
.ui-upload-row .u-name {
  font: 500 0.72rem / 1.4 var(--font-mono);
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.u-progress {
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  overflow: hidden;
  margin-top: 5px;
}
.u-progress i {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
  width: var(--p, 60%);
}
.ui-upload-row .u-state {
  font: 500 0.62rem / 1 var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-transform: uppercase;
}
.ui-upload-row .u-state.is-done { color: var(--verified); }
.ui-upload-row .u-state.is-wm { color: var(--warn); }

/* watermark dialog mini */
.ui-wm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 7px 6px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}
.ui-wm-row:last-child { border-bottom: 0; }
.ui-wm-row .k { color: var(--text-3); font-weight: 500; }
.ui-wm-row .v {
  color: var(--text-2);
  font: 500 0.68rem / 1 var(--font-mono);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 8px;
}
.ui-wm-row .swatches { display: flex; gap: 5px; }
.ui-wm-row .swatches i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
}

/* playlist mini */
.ui-playlist-head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.ui-cover {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #1b3a5c, var(--accent-strong));
  display: grid;
  place-items: center;
  color: #cfe7ff;
}
.ui-playlist-head .pl-name { font-weight: 600; font-size: 0.85rem; color: var(--text); }
.ui-playlist-head .pl-meta {
  font: 400 0.68rem / 1.4 var(--font-mono);
  color: var(--text-3);
}
.ui-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 6px;
  font: 500 0.72rem / 1.4 var(--font-mono);
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.ui-track:last-child { border-bottom: 0; }
.ui-track .t-dur { color: var(--text-3); }
.ui-track.is-new { color: var(--accent); }
.ui-track.is-new::after {
  content: "ADDED NOW";
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  color: var(--verified);
  border: 1px solid rgba(58, 220, 166, 0.35);
  border-radius: var(--r-pill);
  padding: 3px 7px;
}

/* contact chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font: 500 0.7rem / 1 var(--font-mono);
  color: var(--text-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 11px;
  white-space: nowrap;
}
.chip.is-group { color: var(--accent); border-color: rgba(77, 163, 255, 0.35); }

/* ---------- 11. Waveform section ---------- */
.wave-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
}
.wave-svg { width: 100%; height: auto; }
.wave-svg .w-bar { fill: var(--border-strong); }
.wave-svg .w-bar.is-mark { fill: var(--accent); }
.wave-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-4);
  font: 400 0.72rem / 1.5 var(--font-mono);
  color: var(--text-3);
}
.wave-legend .lg {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.wave-legend .lg i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--border-strong);
}
.wave-legend .lg.is-mark i { background: var(--accent); }

/* two-col media/copy rows */
.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2rem, 4vw, 3.5rem);
}
.feature-row + .feature-row { border-top: 1px solid var(--border); }
.feature-row.reverse .f-media { order: 2; }
.feature-row > *, .hero-inner > *, .split-vis > * { min-width: 0; }
.feature-row h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.feature-row .f-copy p { color: var(--text-2); }
.feature-list {
  list-style: none;
  display: grid;
  gap: 0.65em;
  margin-top: var(--sp-3);
}
.feature-list li {
  display: flex;
  gap: 0.7em;
  font-size: var(--fs-small);
  color: var(--text-2);
}
.feature-list li::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.5 12.4 2.6 8.5l1.4-1.4 2.5 2.5 5.5-5.5 1.4 1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.5 12.4 2.6 8.5l1.4-1.4 2.5 2.5 5.5-5.5 1.4 1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- 12. Format chips & tables ---------- */
.format-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.format-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: var(--sp-4);
}
.format-card h3 {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--sp-3);
}
.format-card h3 .f-badge {
  font: 600 0.62rem / 1 var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid rgba(77, 163, 255, 0.35);
  border-radius: var(--r-pill);
  padding: 4px 8px;
  text-transform: uppercase;
}
.format-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.format-chips .chip { text-transform: uppercase; }
.format-note {
  margin-top: var(--sp-3);
  font-size: var(--fs-caption);
  color: var(--text-3);
}

.spec-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-md); }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
  min-width: 560px;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.spec-table th {
  font: 600 0.72rem / 1.4 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--surface-2);
}
.spec-table td { color: var(--text-2); }
.spec-table td:first-child { color: var(--text); font-weight: 600; }
.spec-table tr:last-child td { border-bottom: 0; }

/* ---------- 13. Tabs ---------- */
.tabs { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); overflow: hidden; }
.tab-list {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.tab-btn {
  flex: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--text-3);
  font: 600 var(--fs-small) / 1 var(--font-sans);
  padding: 16px 20px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text-2); }
.tab-btn[aria-selected="true"] { color: var(--text); border-bottom-color: var(--accent); }
.tab-panel { padding: clamp(1.25rem, 3vw, 2.25rem); }
.tab-panel[hidden] { display: none; }

/* ---------- 14. Accordion (FAQ) ---------- */
.accordion { display: grid; gap: var(--sp-2); }
.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.acc-item.is-open { border-color: var(--border-strong); }
.acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  background: none;
  border: 0;
  color: var(--text);
  font: 600 1.02rem / 1.4 var(--font-sans);
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
}
.acc-trigger .acc-icon {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
  color: var(--text-3);
  transition: transform 0.3s var(--ease);
}
.acc-trigger .acc-icon::before,
.acc-trigger .acc-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
}
.acc-trigger .acc-icon::before { width: 12px; height: 2px; }
.acc-trigger .acc-icon::after { width: 2px; height: 12px; transition: opacity 0.2s ease; }
.acc-item.is-open .acc-trigger .acc-icon { transform: rotate(180deg); }
.acc-item.is-open .acc-trigger .acc-icon::after { opacity: 0; }
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel-inner { overflow: hidden; }
.acc-panel-inner p, .acc-panel-inner ul {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
}

/* ---------- 15. CTA band ---------- */
.cta-band {
  position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background:
    radial-gradient(60% 90% at 50% 100%, rgba(17, 124, 214, 0.16), transparent 70%),
    var(--bg-raised);
}
.cta-band h2 { max-width: 18em; margin-inline: auto; }
.cta-band .lede { margin: 0 auto var(--sp-5); }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- 16. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: clamp(3rem, 6vw, 4.5rem) 0 var(--sp-5);
  font-size: var(--fs-small);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.footer-brand p {
  color: var(--text-3);
  max-width: 26em;
  font-size: var(--fs-caption);
  margin-top: var(--sp-3);
}
.footer-col h4 {
  font: 600 0.72rem / 1 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--sp-3);
}
.footer-col ul { list-style: none; display: grid; gap: 0.7em; }
.footer-col a { color: var(--text-2); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2);
  color: var(--text-3);
  font-size: var(--fs-caption);
}
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: var(--text-2); }

/* ---------- 17. Forms ---------- */
.form-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.field { margin-bottom: var(--sp-4); }
.field label,
.field .field-label {
  display: block;
  font-weight: 600;
  font-size: var(--fs-small);
  margin-bottom: 0.5em;
}
.field label .req,
.field .field-label .req { color: var(--accent); }
.field .hint {
  font-size: var(--fs-caption);
  color: var(--text-3);
  margin-top: 0.45em;
}
.input {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font: 400 var(--fs-small) / 1.5 var(--font-sans);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input::placeholder { color: var(--text-3); }
.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.18);
}
textarea.input { resize: vertical; min-height: 130px; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%2364778a' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.field.has-error .input { border-color: var(--error); }
.field.has-error .input:focus { box-shadow: 0 0 0 3px rgba(255, 118, 118, 0.15); }
.field .error-msg {
  display: none;
  color: var(--error);
  font-size: var(--fs-caption);
  margin-top: 0.45em;
}
.field.has-error .error-msg { display: block; }
.field.is-valid .input { border-color: rgba(58, 220, 166, 0.5); }

.form-status {
  display: none;
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: var(--fs-small);
  margin-bottom: var(--sp-4);
}
.form-status.is-success {
  display: block;
  background: rgba(58, 220, 166, 0.08);
  border: 1px solid rgba(58, 220, 166, 0.4);
  color: var(--verified);
}
.form-status.is-error {
  display: block;
  background: rgba(255, 118, 118, 0.07);
  border: 1px solid rgba(255, 118, 118, 0.4);
  color: var(--error);
}

/* ---------- 18. Page hero (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); max-width: 16em; }
.page-hero .lede { max-width: 40em; }

/* security timeline */
.custody-chain { position: relative; display: grid; gap: var(--sp-4); }
.custody-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--sp-4);
  position: relative;
}
.custody-step .c-node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--accent);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.custody-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: calc(-1 * var(--sp-4));
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--border-strong) 0 8px, transparent 8px 16px);
}
.custody-step .c-body {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: var(--sp-4);
}
.custody-step h3 { font-size: 1.15rem; display: flex; flex-wrap: wrap; gap: 0.6em; align-items: center; }
.custody-step .c-tag {
  font: 600 0.62rem / 1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 4px 9px;
}
.custody-step p { color: var(--text-2); font-size: var(--fs-small); margin: 0; }

/* payload strip */
.payload-strip {
  font: 500 0.75rem / 1.8 var(--font-mono);
  color: var(--text-3);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  overflow-x: auto;
  white-space: nowrap;
}
.payload-strip .hl { color: var(--accent); }
.payload-strip .ok { color: var(--verified); }

/* guide cards */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.guide-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
}
.guide-card:hover { border-color: var(--border-strong); transform: translateY(-3px); color: inherit; }
.guide-card h3 { color: var(--text); }
.guide-thumb {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(90% 130% at 25% 0%, rgba(77, 163, 255, 0.28), transparent 65%),
    linear-gradient(180deg, var(--surface-2), var(--bg-raised));
  display: grid;
  place-items: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.guide-thumb .play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(7, 9, 13, 0.7);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: transform 0.25s var(--ease), border-color 0.2s ease;
}
.guide-card:hover .play-btn { transform: scale(1.08); border-color: var(--accent); }
.guide-thumb .guide-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font: 600 0.62rem / 1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  background: rgba(7, 9, 13, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 5px 9px;
}
.guide-body { padding: var(--sp-4); }
.guide-body h3 { font-size: 1.1rem; margin-bottom: 0.35em; }
.guide-body p { font-size: var(--fs-small); color: var(--text-2); margin: 0; }

/* contact page split */
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-aside .aside-block {
  border-top: 1px solid var(--border);
  padding-block: var(--sp-4);
}
.contact-aside .aside-block:first-child { border-top: 0; padding-top: 0; }
.contact-aside h3 { font-size: 1.05rem; }
.contact-aside p { color: var(--text-2); font-size: var(--fs-small); }
.contact-aside .mono-link { font-family: var(--font-mono); font-size: 0.85rem; }

/* mocked notice */
.mock-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font: 500 0.68rem / 1.4 var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--warn);
  border: 1px dashed rgba(255, 194, 77, 0.45);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  margin-top: var(--sp-3);
}

/* ---------- 19. Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* stagger helper: children revealed in order */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
[data-reveal-stagger].is-visible > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.13s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.21s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.29s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.37s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.45s; }

/* ---------- 20. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Product shots ---------- */
.shot-frame {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 24px 64px -24px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(77, 163, 255, 0.05);
}
.shot-frame img { display: block; width: 100%; height: auto; }
.journey-grid .journey-item { margin: 0; }
.journey-item figcaption {
  margin-top: var(--sp-2);
  font-size: var(--fs-caption);
  color: var(--text-3);
  line-height: 1.55;
}
.journey-item figcaption strong { color: var(--text-2); }
.sub-head { margin-top: var(--sp-7); margin-bottom: var(--sp-4); font-size: var(--fs-h3); color: var(--text); }
.chip-more { border-style: dashed; color: var(--accent); }
.problem-vis { width: 100%; height: auto; display: block; border-radius: var(--r-md); box-shadow: 0 24px 64px -24px rgba(0,0,0,.85); }
.journey-grid + .steps-connector { margin-top: var(--sp-5); }

.wm-wave { width: 100%; height: auto; display: block; margin: var(--sp-3) 0; }
[data-section="formats"] .chip { color: var(--text); border-color: var(--border-strong); background: var(--surface); }

/* ---------- CTA band: self-contained card on plain bg ---------- */
.cta-band { background: var(--bg); border-top: 0; }
.cta-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(70% 80% at 50% 50%, #000 30%, transparent 100%);
  mask-image: radial-gradient(70% 80% at 50% 50%, #000 30%, transparent 100%);
}
.cta-card {
  position: relative;
  max-width: 860px; margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(80% 120% at 50% 110%, rgba(77, 163, 255, 0.22), transparent 65%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 0 0 1px rgba(77,163,255,.08), 0 40px 90px -40px rgba(17,124,214,.55), 0 30px 60px -30px rgba(0,0,0,.8);
}
.guide-thumb .guide-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.guide-thumb .guide-tag { z-index: 2; pointer-events: none; }


/* ---------- reCAPTCHA ---------- */
.recaptcha-holder {
  min-height: 78px; /* widget height — reserved so the form doesn't jump on load */
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
}
.recaptcha-holder > div { max-width: 100%; }
.field.has-error .recaptcha-holder {
  border-radius: var(--r-sm);
  box-shadow: 0 0 0 1px var(--error);
}

/* ---------- WordPress theme additions ---------- */

/* honeypot — off-screen rather than display:none, which some bots skip */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* fallback templates (page.php / single.php / index.php): readable prose for
   any content that is not one of the hand-built pages */
.prose { max-width: 46em; color: var(--text-2); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 1.6rem; color: var(--text); margin-top: 2em; }
.prose h3 { font-size: 1.2rem; color: var(--text); margin-top: 1.6em; }
.prose a { color: var(--accent); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: 0.4em; }
.prose img { max-width: 100%; height: auto; border-radius: var(--r-sm); }
.prose blockquote { border-left: 2px solid var(--accent); padding-left: var(--sp-3); color: var(--text-3); }
.prose code, .prose pre { font-family: var(--font-mono); font-size: 0.85em; background: var(--bg-raised); border-radius: var(--r-sm); }
.prose code { padding: 0.15em 0.4em; }
.prose pre { padding: var(--sp-3); overflow-x: auto; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--border); padding: 0.6em 0.8em; text-align: left; }
