/* ============================================================
   Relio Marketing — Main Stylesheet
   Plain CSS, no build step. Organized by component, top to bottom.
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
main { display: block; }

/* ---------- Layout utilities ---------- */
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad); }
.section { padding-block: var(--space-9); position: relative; }
.section--tight { padding-block: var(--space-7); }
@media (max-width: 720px) {
  .section { padding-block: var(--space-7); }
}
.stack { display: flex; flex-direction: column; }
.hide-mobile { }
.hide-desktop { display: none; }
@media (max-width: 860px) {
  .hide-mobile { display: none; }
  .hide-desktop { display: initial; }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary);
}
.section-head { max-width: 640px; margin-bottom: var(--space-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: var(--text-3xl); margin-top: var(--space-3); }
.section-lede { margin-top: var(--space-4); font-size: var(--text-lg); color: var(--ink-secondary); }
.text-secondary { color: var(--ink-secondary); }
.inline-link { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.last-updated { font-size: var(--text-sm); color: var(--ink-tertiary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  height: 52px; padding-inline: var(--space-6); border-radius: var(--radius);
  font-weight: 600; font-size: var(--text-base); white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--primary); color: #0A1F17; box-shadow: var(--shadow-pop); }
.btn-primary:hover { background: var(--primary-alt); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { height: 42px; padding-inline: var(--space-5); font-size: var(--text-sm); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.btn-block { width: 100%; }

/* ---------- Loop icon (shared <use> host) ---------- */
.loop-icon { width: 1em; height: 1em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; gap: var(--space-6); height: 76px; }
.brand { display: flex; align-items: center; gap: var(--space-3); font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); }
.brand .loop-icon { width: 26px; height: 26px; color: var(--primary); }
.nav { display: flex; align-items: center; gap: var(--space-6); margin-inline-start: var(--space-6); flex: 1; }
.nav a { font-size: var(--text-sm); font-weight: 500; color: var(--ink-secondary); transition: color var(--dur-fast) var(--ease); position: relative; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: flex; align-items: center; gap: 4px; font-size: var(--text-sm); font-weight: 500; color: var(--ink-secondary); }
.nav-dropdown > button:hover { color: var(--ink); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-float); padding: var(--space-2); min-width: 220px;
  opacity: 0; visibility: hidden; translate: 0 6px;
  transition: opacity var(--dur-fast) var(--ease), translate var(--dur-fast) var(--ease), visibility var(--dur-fast);
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel { opacity: 1; visibility: visible; translate: 0 0; }
.nav-dropdown-panel a { display: block; padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); font-size: var(--text-sm); color: var(--ink); }
.nav-dropdown-panel a:hover { background: var(--surface-2); }
.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.theme-toggle {
  width: 40px; height: 40px; border-radius: var(--radius-full); display: grid; place-items: center;
  border: 1px solid var(--border-strong); color: var(--ink-secondary);
}
.theme-toggle:hover { color: var(--primary); border-color: var(--primary); }
.theme-toggle svg { width: 18px; height: 18px; }
html[data-theme="dark"] .theme-toggle .icon-sun,
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }
.mobile-nav-toggle { width: 40px; height: 40px; display: none; place-items: center; }
@media (max-width: 900px) {
  .nav, .header-actions .btn { display: none; }
  .mobile-nav-toggle { display: grid; }
}
.mobile-nav {
  display: none; position: fixed; inset: 76px 0 0 0; background: var(--bg); z-index: 99;
  padding: var(--space-6) var(--container-pad); overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: var(--space-4) 0; font-size: var(--text-xl); font-family: var(--font-display); font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-nav .btn { margin-top: var(--space-6); }

/* ---------- Mesh gradient & grain ---------- */
.mesh-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.mesh-bg::before, .mesh-bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: .55; will-change: transform;
}
.mesh-bg::before {
  width: 640px; height: 640px; top: -220px; right: -160px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.mesh-bg::after {
  width: 560px; height: 560px; bottom: -220px; left: -160px;
  background: radial-gradient(circle, var(--primary-alt), transparent 70%);
  animation: drift2 26s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) { .mesh-bg::before, .mesh-bg::after { animation: none; } }
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(-40px, 30px); } }
@keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(30px, -30px); } }
.grain-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: var(--grain-opacity); mix-blend-mode: overlay;
}
.section-surface { position: relative; isolation: isolate; overflow: hidden; }
.section-surface > .container { position: relative; z-index: 2; }

/* ---------- Hero ---------- */
.hero { padding-block: var(--space-9) var(--space-8); }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); align-items: center; }
.hero-copy .eyebrow { margin-bottom: var(--space-4); }
.hero-title { font-size: var(--text-hero); }
.hero-lede { margin-top: var(--space-5); font-size: var(--text-lg); color: var(--ink-secondary); max-width: 46ch; }
.hero-actions { display: flex; align-items: center; gap: var(--space-5); margin-top: var(--space-7); flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: var(--ink-tertiary); margin-top: var(--space-6); }
.hero-note .loop-icon { width: 14px; height: 14px; color: var(--primary); }

/* Floating screenshot stack */
.card-stack { position: relative; height: 560px; }
.card-stack__item {
  position: absolute; width: 250px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-float); border: 1px solid var(--border);
  transition: transform var(--dur-slow) var(--ease);
}
.card-stack__item img { width: 100%; height: auto; }
.card-stack__item--back { top: 10px; left: 0; transform: rotate(-9deg); z-index: 1; opacity: .85; }
.card-stack__item--mid { top: 40px; right: 10px; transform: rotate(7deg); z-index: 2; width: 260px; opacity: .95; }
.card-stack__item--front { top: 110px; left: 90px; z-index: 3; width: 280px; }
@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; }
  .card-stack { height: 460px; max-width: 420px; margin-inline: auto; }
}
@media (max-width: 480px) {
  .card-stack { height: 380px; }
  .card-stack__item { width: 190px !important; }
  .card-stack__item--front { width: 210px !important; left: 60px; top: 90px; }
}

/* ---------- Signature moment: before/after crossfade ---------- */
.signature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-8); align-items: center; }
.crossfade { position: relative; max-width: 420px; }
.crossfade-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-card); background: var(--surface); aspect-ratio: 760 / 712;
}
.crossfade-frame > img, .crossfade-frame > picture {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity var(--dur-slow) var(--ease);
}
.crossfade-frame picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.crossfade-frame > img.is-active, .crossfade-frame > picture.is-active { opacity: 1; }
.crossfade-controls { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.crossfade-controls button {
  flex: 1; padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); font-size: var(--text-sm); font-weight: 600;
  color: var(--ink-secondary); transition: all var(--dur-fast) var(--ease);
}
.crossfade-controls button.is-active { border-color: var(--primary); color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); }
.signature-callouts { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-6); }
.callout { display: flex; gap: var(--space-4); align-items: flex-start; }
.callout-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); margin-top: 8px; flex-shrink: 0; }
.callout strong { display: block; font-family: var(--font-display); font-size: var(--text-base); margin-bottom: 2px; }
.callout span { color: var(--ink-secondary); font-size: var(--text-sm); }
.lang-chips { display: flex; gap: var(--space-2); margin-top: var(--space-6); }
.chip {
  display: inline-flex; align-items: center; padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 600;
  background: var(--surface-2); color: var(--ink-secondary); border: 1px solid var(--border);
}
@media (max-width: 900px) {
  .signature { grid-template-columns: 1fr; }
  .crossfade { max-width: 360px; margin-inline: auto; }
}

/* ---------- Bento grids ---------- */
.bento { display: grid; gap: var(--space-5); }
.bento-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-6); position: relative; overflow: hidden;
}
.bento-item h2, .bento-item h3 { font-size: var(--text-lg); margin-top: var(--space-4); }
.bento-item p { margin-top: var(--space-2); color: var(--ink-secondary); font-size: var(--text-sm); }
.bento-icon {
  width: 48px; height: 48px; border-radius: var(--radius); display: grid; place-items: center;
  background: color-mix(in srgb, var(--primary) 14%, transparent); color: var(--primary);
}
.bento-icon svg, .bento-icon .loop-icon { width: 22px; height: 22px; }

/* Safety 2x2 */
.safety-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .safety-grid { grid-template-columns: 1fr; } }

/* Stats bento */
.stats-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8); align-items: center; }
.stat-lead { font-family: var(--font-display); font-size: var(--text-4xl); color: var(--primary); }
.stat-lead-sub { margin-top: var(--space-3); font-size: var(--text-lg); color: var(--ink-secondary); max-width: 40ch; }
.stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: var(--space-7); }
.stat-card { padding: var(--space-5); }
.stat-number { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; }
.stat-label { margin-top: var(--space-2); font-size: var(--text-xs); color: var(--ink-tertiary); }
.stats-source { margin-top: var(--space-5); font-size: var(--text-xs); color: var(--ink-tertiary); }
.market-visual { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
@media (max-width: 900px) {
  .stats-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) { .stats-grid { grid-template-columns: 1fr; } }

/* Category grid */
.category-grid { grid-template-columns: repeat(4, 1fr); }
.category-tile {
  display: flex; flex-direction: column; gap: var(--space-4); align-items: center; justify-content: center;
  padding: var(--space-5); border-radius: var(--radius); border: 1px solid var(--border); text-align: center;
  aspect-ratio: 1; background: radial-gradient(circle at 50% 32%, color-mix(in srgb, var(--primary) 10%, var(--surface)), var(--surface) 72%);
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.category-tile:hover { transform: translateY(-3px); border-color: var(--primary); }
.category-tile svg { width: 40px; height: 40px; color: var(--primary); }
.category-tile span { font-size: var(--text-sm); font-weight: 600; }
.category-photo-tile { padding: 0; overflow: hidden; position: relative; aspect-ratio: 1; }
.category-photo-tile img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- How it works ---------- */
.steps { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { padding-top: var(--space-6); border-top: 2px solid var(--border); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-size: var(--text-xl); color: var(--primary); margin-bottom: var(--space-3);
}
.step img { border-radius: var(--radius); border: 1px solid var(--border); margin-top: var(--space-4); }
.step h3 { font-size: var(--text-lg); }
.step p { margin-top: var(--space-2); color: var(--ink-secondary); font-size: var(--text-sm); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Extension mention ---------- */
.extension-band { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.extension-features { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-6); }
.extension-feature { display: flex; gap: var(--space-3); }
.extension-feature svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.extension-visual { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
@media (max-width: 900px) { .extension-band { grid-template-columns: 1fr; } }

/* ---------- Comparison table ---------- */
.cmp-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--surface); }
.cmp-table caption { caption-side: top; text-align: left; padding: var(--space-5); font-size: var(--text-sm); color: var(--ink-tertiary); }
.cmp-table th, .cmp-table td { padding: var(--space-4) var(--space-5); text-align: left; border-bottom: 1px solid var(--border); font-size: var(--text-sm); }
.cmp-table thead th { font-family: var(--font-display); font-size: var(--text-base); background: var(--surface-2); }
.cmp-table tbody th { font-weight: 600; color: var(--ink-secondary); white-space: nowrap; }
.cmp-table td[data-yes]::before { content: "✓"; color: var(--success); font-weight: 700; margin-inline-end: var(--space-2); }
.cmp-table td[data-no]::before { content: "–"; color: var(--ink-tertiary); font-weight: 700; margin-inline-end: var(--space-2); }
.cmp-table tbody tr:last-child td, .cmp-table tbody tr:last-child th { border-bottom: none; }
.cmp-table td.is-relio { background: color-mix(in srgb, var(--primary) 7%, transparent); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) 0; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: var(--text-base);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--ink-secondary); border-radius: 2px; transition: transform var(--dur-fast) var(--ease);
}
.faq-item summary .plus::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.faq-item summary .plus::after { width: 2px; height: 14px; top: 4px; left: 10px; }
.faq-item[open] summary .plus::after { transform: rotate(90deg) translate(0,0); opacity: 0; }
.faq-item p { padding-bottom: var(--space-5); color: var(--ink-secondary); max-width: 62ch; }

/* ---------- Waitlist form ---------- */
.waitlist-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-7); box-shadow: var(--shadow-card); max-width: 560px; margin-inline: auto;
}
.waitlist-form { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-5); }
.form-row { display: flex; gap: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.form-field label { font-size: var(--text-xs); font-weight: 600; color: var(--ink-secondary); }
.form-field input {
  height: 50px; padding-inline: var(--space-4); border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); background: var(--bg); color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease);
}
.form-field input:focus { outline: none; border-color: var(--primary); }
.form-status { font-size: var(--text-sm); min-height: 20px; }
.form-status[data-state="success"] { color: var(--success); }
.form-status[data-state="error"] { color: var(--error); }
.form-fineprint { margin-top: var(--space-4); font-size: var(--text-xs); color: var(--ink-tertiary); }
@media (max-width: 560px) { .form-row { flex-direction: column; } }

/* ---------- Early access band ---------- */
.early-access { text-align: center; }
.early-access .badge {
  display: inline-flex; align-items: center; gap: var(--space-2); padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full); background: var(--surface-2); border: 1px solid var(--border);
  font-size: var(--text-xs); font-weight: 600; color: var(--ink-secondary); margin-bottom: var(--space-5);
}
.early-access .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; border-top: 1px solid var(--border); padding-block: var(--space-8) var(--space-6); }
.footer-watermark {
  position: absolute; right: -8%; bottom: -18%; width: 620px; height: 620px;
  color: var(--primary); opacity: var(--loop-watermark-opacity); pointer-events: none; z-index: 0;
}
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--space-6); }
.footer-col-title { font-size: var(--text-sm); margin: 0 0 var(--space-4); color: var(--ink-tertiary); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: var(--text-sm); color: var(--ink-secondary); margin-bottom: var(--space-3); }
.footer-col a:hover { color: var(--primary); }
.footer-brand .brand { margin-bottom: var(--space-4); }
.footer-bottom {
  position: relative; z-index: 1; margin-top: var(--space-8); padding-top: var(--space-5);
  border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-xs); color: var(--ink-tertiary); flex-wrap: wrap; gap: var(--space-3);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Scroll reveal ---------- */
/* Content defaults to fully visible/legible without JS or scrolling — the
   fade-in below is added only once JS confirms IntersectionObserver support
   AND the element isn't already handled by the scroll-timeline branch below.
   (A no-scroll snapshot — a crawler, Lighthouse, a screenshot tool — must
   never see permanently-hidden or low-contrast text.) */
.reveal { opacity: 1; translate: 0 0; }
.reveal.will-fade { opacity: 0; translate: 0 24px; transition: opacity var(--dur-slow) var(--ease), translate var(--dur-slow) var(--ease); }
.reveal.will-fade.is-visible { opacity: 1; translate: 0 0; }
@supports (animation-timeline: view()) {
  .reveal {
    transition: none;
    animation: reveal-slide linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}
@keyframes reveal-slide { from { translate: 0 24px; } to { translate: 0 0; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; translate: 0 0 !important; animation: none !important; } }

/* ---------- Utility page (terms/privacy/press) ---------- */
.doc-page .container { max-width: 780px; }
.doc-page h2 { font-size: var(--text-2xl); margin-top: var(--space-8); }
.doc-page h3 { font-size: var(--text-lg); margin-top: var(--space-6); }
.doc-page p, .doc-page li { color: var(--ink-secondary); margin-top: var(--space-3); }
.doc-page li { padding-left: var(--space-5); position: relative; }
.doc-page li::before { content: "•"; color: var(--primary); position: absolute; left: 0; }
.doc-notice {
  background: color-mix(in srgb, var(--warning) 12%, transparent); border: 1px solid color-mix(in srgb, var(--warning) 40%, transparent);
  border-radius: var(--radius); padding: var(--space-5); margin-top: var(--space-6); font-size: var(--text-sm);
}

/* ---------- Press kit ---------- */
.press-assets { grid-template-columns: repeat(3, 1fr); }
.press-asset { text-align: center; }
.press-asset .asset-preview { background: var(--surface-2); border-radius: var(--radius); padding: var(--space-6); display: grid; place-items: center; height: 140px; }
.press-asset .asset-preview img { max-height: 80px; width: auto; }
.press-asset a { display: block; margin-top: var(--space-3); font-size: var(--text-sm); font-weight: 600; color: var(--primary); }
.fast-facts { grid-template-columns: repeat(4, 1fr); }
.fast-facts .stat-card { text-align: center; }
@media (max-width: 720px) { .press-assets, .fast-facts { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.error-page .loop-icon { width: 64px; height: 64px; color: var(--primary); margin-inline: auto; margin-bottom: var(--space-6); opacity: .8; }
