/* =====================================================================
   LiveGen shared design system — sub-page stylesheet
   Tokens + core components are ported verbatim from site/index.html so
   sub-pages match the main landing page exactly. Article/prose/table/
   breadcrumb/callout/related/hub styles are appended for content pages.
   (index.html keeps its own inline copy; this file is the shared source
   for every /cluster/*.html page.)
   ===================================================================== */

/* ===================== TOKENS ===================== */
:root {
  --bg: #0A0A0A;
  --well: #0C0C11;
  --card: #101012;
  --footer: #080808;
  --t1: #FAFAFA;
  --t2: #E4E4E8;
  --t3: #C4C4CA;
  --t4: #9A9AA0;
  --t5: #86868C;
  --t6: #6B6B70;
  --ac: #C6FF3A;
  --ac-h: #B4EA2E;
  --ac2: #5FE08A;
  --live: #FF4D3D;
  --b07: rgba(255, 255, 255, 0.07);
  --b08: rgba(255, 255, 255, 0.08);
  --b09: rgba(255, 255, 255, 0.09);
  --b10: rgba(255, 255, 255, 0.10);
  --b12: rgba(255, 255, 255, 0.12);
  --b16: rgba(255, 255, 255, 0.16);
  --b20: rgba(255, 255, 255, 0.20);
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --play: running;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--t1);
  font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

::selection { background: rgba(198, 255, 58, 0.9); color: #0A0A0A; }

a { color: var(--t1); text-decoration: none; }
a:hover { color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #242427; border-radius: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }

video { display: block; background: transparent; }

h1, h2, h3 { margin: 0; font-weight: 600; }

/* ===================== KEYFRAMES ===================== */
@keyframes hg-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes hg-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hg-marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes hg-blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes hg-shimmer { from { transform: translateX(-130%); } to { transform: translateX(240%); } }
@keyframes hg-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ===================== LAYOUT ===================== */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.wrap-article { max-width: 880px; }
.wrap-faq { max-width: 820px; }
.sec { position: relative; z-index: 1; }

.glow {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 760px;
  max-width: 150vw;
  background: radial-gradient(42% 52% at 36% 44%, rgba(198, 255, 58, 0.20), transparent 70%),
    radial-gradient(42% 52% at 66% 38%, rgba(95, 224, 138, 0.15), transparent 70%),
    radial-gradient(44% 52% at 54% 72%, rgba(255, 62, 165, 0.13), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}

/* ===================== TEXT PRIMITIVES ===================== */
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 16px;
}
.kicker.mint { color: var(--ac2); }
.mono { font-family: var(--mono); }

.h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.03em; line-height: 1.05; color: var(--t1); }
.h2-sm { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.03em; line-height: 1.05; color: var(--t1); }
.lead { font-size: 17px; color: var(--t4); margin: 0; }
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 48px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, filter .2s;
}
.btn-primary { background: var(--ac); color: #0A0A0A; }
.btn-primary:hover { background: var(--ac-h); color: #0A0A0A; }
.btn-outline { background: transparent; color: var(--t1); border: 1px solid var(--b16); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.3); }
.btn-lg { padding: 15px 26px; font-size: 16px; }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.72);
  border-bottom-color: var(--b08);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--t1);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.02em;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ac); box-shadow: 0 0 10px var(--ac); }
.brand .dot { animation: hg-blink 1.8s ease-in-out infinite; animation-play-state: var(--play); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: #B4B4BA; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-right .login { color: #B4B4BA; font-weight: 500; font-size: 14.5px; }
.nav-right .signup { padding: 10px 18px; font-size: 14.5px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ===================== SHARED MEDIA WELL ===================== */
.fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.scan {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 14px, transparent 14px 28px);
}
.scan-12 { background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 12px, transparent 12px 24px); }
.scan-13 { background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 13px, transparent 13px 26px); }
.scan-10 { background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 10px, transparent 10px 20px); }
.shimmer-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.shimmer {
  position: absolute; top: 0; bottom: 0; width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: hg-shimmer 5s ease-in-out infinite; animation-play-state: var(--play);
}
.live-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(8px);
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .08em; color: #fff;
}
.live-badge .rdot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); animation: hg-blink 1.1s infinite; animation-play-state: var(--play); }
.live-badge.sm { top: 14px; padding: 5px 11px; font-size: 10.5px; letter-spacing: 0; }
.live-badge.sm .rdot { width: 6px; height: 6px; }
.ai-sticker {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px; background: var(--ac); color: #0A0A0A;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  animation: hg-float 4.5s ease-in-out infinite; animation-play-state: var(--play);
}
.cap { position: absolute; z-index: 2; font-family: var(--mono); color: rgba(255, 255, 255, 0.6); }
.feat-cap { left: 14px; bottom: 12px; font-size: 11px; }
.tag {
  position: absolute; top: 11px; left: 11px; z-index: 2;
  padding: 4px 9px; border-radius: 7px; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(6px);
  font-family: var(--mono); font-size: 10.5px; color: #E6E6EA;
}

/* ===================== BREADCRUMB ===================== */
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; color: var(--t6);
  margin-bottom: 22px;
}
.crumbs a { color: var(--t5); }
.crumbs a:hover { color: var(--t2); }
.crumbs .sep { color: var(--t6); opacity: .6; }
.crumbs .here { color: var(--t3); }

/* ===================== ARTICLE HERO ===================== */
.art-hero { padding-top: 118px; padding-bottom: 28px; }
.art-kick {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 12px; border-radius: 999px;
  border: 1px solid rgba(198, 255, 58, 0.28); background: rgba(198, 255, 58, 0.06);
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: #DBEFA6;
  margin-bottom: 22px;
}
.art-kick .pdot { width: 7px; height: 7px; border-radius: 50%; background: var(--ac2); box-shadow: 0 0 12px var(--ac2); }
h1.art-title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.03; letter-spacing: -.035em;
  margin: 0 0 20px; max-width: 20ch; color: var(--t1);
}
.art-sub { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--t4); max-width: 640px; margin: 0 0 28px; }
.art-sub strong { color: var(--t2); font-weight: 600; }
.art-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.art-cta .btn { padding: 14px 24px; font-size: 15.5px; }

.hero-well {
  position: relative;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--b10);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  aspect-ratio: 16/9;
  background: var(--well);
}

/* ===================== LEGAL DOCUMENT PAGES ===================== */
.legal-head { padding-top: 116px; padding-bottom: 8px; }
.legal-head h1 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.03em; line-height: 1.06; color: var(--t1); margin-bottom: 14px; }
.legal-updated { font-family: var(--mono); font-size: 12.5px; color: var(--t5); margin: 0 0 18px; }
.legal-note {
  border: 1px solid rgba(198, 255, 58, 0.28); border-left: 3px solid var(--ac);
  background: rgba(198, 255, 58, 0.05); border-radius: 12px;
  padding: 14px 18px; margin: 0 0 8px; font-size: 14.5px; line-height: 1.55; color: var(--t3);
}
.legal-note strong { color: var(--ac); }
.legal-toc {
  border: 1px solid var(--b09); background: var(--card); border-radius: 14px;
  padding: 20px 22px; margin: 8px 0 40px;
}
.legal-toc .toc-title { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--t5); margin-bottom: 14px; }
.legal-toc ol { margin: 0; padding-left: 20px; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px 24px; }
.legal-toc li { color: var(--t5); font-size: 14px; }
.legal-toc a { color: #B4B4BA; }
.legal-toc a:hover { color: var(--ac); }
.prose h2[id], .prose h3[id] { scroll-margin-top: 88px; }
.prose table.cmp td:first-child { white-space: normal; }
.prose ol.ol { list-style: decimal; padding-left: 22px; margin: 0 0 20px; }
.prose ol.ol li { margin-bottom: 8px; color: var(--t3); }
.prose h2 .secnum { color: var(--t5); font-family: var(--mono); font-size: .62em; margin-right: 10px; font-weight: 500; }

/* ===================== ARTICLE BODY / PROSE ===================== */
.article { padding-top: 20px; padding-bottom: 40px; }
.prose { color: var(--t3); font-size: 16.5px; line-height: 1.72; }
.prose > *:first-child { margin-top: 0; }

.prose h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.025em; line-height: 1.12; color: var(--t1);
  margin: 52px 0 18px;
  scroll-margin-top: 90px;
}
.prose h3 {
  font-size: clamp(19px, 2.2vw, 23px);
  letter-spacing: -.01em; color: var(--t1);
  margin: 34px 0 12px;
}
.prose p { margin: 0 0 18px; color: var(--t3); }
.prose .lead-para { font-size: 19px; line-height: 1.62; color: var(--t2); }
.prose a:not(.btn) { color: var(--ac); font-weight: 500; }
.prose a:not(.btn):hover { color: var(--ac-h); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--t1); font-weight: 600; }
.prose code {
  font-family: var(--mono); font-size: .88em;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--b09);
  padding: 2px 6px; border-radius: 6px; color: var(--ac2);
}
.prose ul { margin: 0 0 22px; padding: 0; list-style: none; }
.prose ul.plain { padding-left: 20px; list-style: disc; color: var(--t3); }
.prose ul.plain li { margin-bottom: 8px; }

/* TLDR / callout */
.callout {
  position: relative;
  border: 1px solid var(--b12); border-left: 3px solid var(--ac);
  background: radial-gradient(120% 140% at 0% 0%, rgba(198, 255, 58, 0.06), transparent 60%), var(--card);
  border-radius: 14px; padding: 18px 22px; margin: 0 0 26px;
  font-size: 16.5px; line-height: 1.6; color: var(--t2);
}
.callout strong { color: var(--ac); }

/* feature / checklist list */
.feature-list { display: flex; flex-direction: column; gap: 13px; margin: 0 0 24px; }
.feature-list li {
  position: relative; display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; line-height: 1.55; color: var(--t3);
}
.feature-list .ck {
  flex: 0 0 auto; margin-top: 2px;
  width: 19px; height: 19px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(198, 255, 58, 0.12); color: var(--ac); font-size: 12px; font-weight: 700;
}
.feature-list li strong { color: var(--t1); }

/* numbered steps */
.steps { display: grid; gap: 14px; margin: 0 0 26px; }
.step-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; border-radius: 14px;
  border: 1px solid var(--b09); background: var(--card);
}
.step-row .snum {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(198, 255, 58, 0.12); color: var(--ac);
  font-family: var(--mono); font-weight: 600; font-size: 14px;
}
.step-row .stext { font-size: 15.5px; line-height: 1.55; color: var(--t3); }
.step-row .stext strong { color: var(--t1); }

/* pseudo action buttons (Open Camera / Upload) */
.action-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 26px; }
.action-row .btn { padding: 13px 22px; font-size: 15px; }

/* ===================== COMPARISON TABLE ===================== */
.table-scroll { overflow-x: auto; margin: 0 0 26px; border-radius: 14px; border: 1px solid var(--b09); }
table.cmp {
  width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; background: var(--card);
}
table.cmp thead th {
  text-align: left; font-family: var(--mono); font-weight: 500;
  font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--t5);
  padding: 14px 16px; background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--b10);
}
table.cmp tbody td {
  padding: 13px 16px; color: var(--t3); vertical-align: top;
  border-bottom: 1px solid var(--b07);
}
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp tbody td:first-child { color: var(--t2); font-weight: 500; }
table.cmp td strong { color: var(--t1); font-weight: 600; }
table.cmp .is-livegen { color: var(--ac); }
table.cmp .is-livegen strong { color: var(--ac); }
table.cmp tbody tr:hover td { background: rgba(255, 255, 255, 0.015); }

/* ===================== FAQ (ported) ===================== */
.faq-wrap { margin: 44px 0 8px; }
.faq-list { border-top: 1px solid var(--b09); }
.faq-item { border-bottom: 1px solid var(--b09); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 4px; cursor: pointer;
}
.faq-q .qt { font-weight: 500; font-size: 16.5px; color: var(--t1); }
.faq-q .sign { flex: 0 0 auto; width: 22px; height: 22px; text-align: right; color: var(--ac); font-size: 20px; line-height: 1; font-weight: 400; transition: transform .2s; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 4px 22px; font-size: 15px; line-height: 1.6; color: var(--t4); max-width: 720px; }
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--ac); }
.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin-bottom: 0; }
html.no-js .faq-a { display: block; }

/* ===================== RELATED CARDS (ported .case) ===================== */
.related { margin: 48px 0 8px; }
.related .rel-head { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--t5); margin-bottom: 18px; }
.grid-cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.case {
  display: flex; gap: 16px; padding: 14px; border-radius: 16px;
  border: 1px solid var(--b09); background: var(--card); color: inherit;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1), border-color .3s, box-shadow .3s;
}
.case:hover { transform: translateY(-4px); border-color: var(--b20); box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55); color: inherit; }
.case-thumb { position: relative; flex: 0 0 96px; width: 96px; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; }
.case-info { flex: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.case-kw {
  display: inline-flex; align-self: flex-start; padding: 3px 9px; border-radius: 7px;
  background: rgba(255, 255, 255, 0.05); font-family: var(--mono); font-size: 10.5px; color: var(--t5); margin-bottom: 9px;
}
.case-title { font-weight: 600; font-size: 16px; line-height: 1.22; letter-spacing: -.01em; color: var(--t1); margin-bottom: 8px; }
.case-explore { font-size: 13px; font-weight: 600; color: var(--ac); margin-top: auto; }

/* ===================== HUB PAGES ===================== */
.grid-hub { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.card {
  border-radius: 16px; border: 1px solid var(--b09); background: var(--card); overflow: hidden;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1), border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.card.hover:hover { transform: translateY(-4px); border-color: var(--b20); box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55); }
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-body { padding: 17px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-weight: 600; font-size: 17px; letter-spacing: -.01em; color: var(--t1); margin-bottom: 6px; line-height: 1.25; }
.card-desc { font-size: 13.5px; color: var(--t4); line-height: 1.5; margin-bottom: 14px; }
.card-cta { font-size: 13px; font-weight: 600; color: var(--ac); margin-top: auto; }

/* cluster nav chips on hub pages */
.cluster-nav { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 44px; }
.cluster-nav a {
  padding: 8px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 500;
  color: var(--t3); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--b10);
  transition: all .2s;
}
.cluster-nav a:hover { color: var(--t1); border-color: var(--b20); }
.cluster-nav a.on { color: #0A0A0A; background: var(--ac); border-color: transparent; }

/* ===================== FINAL CTA (ported) ===================== */
.cta-panel {
  position: relative; border-radius: 26px; overflow: hidden;
  padding: 64px 32px; text-align: center; border: 1px solid var(--b10);
  background: radial-gradient(120% 130% at 18% 0%, rgba(198, 255, 58, 0.28), transparent 52%),
    radial-gradient(120% 130% at 88% 100%, rgba(255, 62, 165, 0.24), transparent 52%),
    radial-gradient(90% 90% at 50% 120%, rgba(95, 224, 138, 0.2), transparent 60%), var(--well);
}
.cta-panel h2 { position: relative; font-size: clamp(30px, 4.6vw, 54px); line-height: 1.04; letter-spacing: -.035em; margin: 0 auto 14px; max-width: 16ch; color: var(--t1); }
.cta-panel p { position: relative; font-size: 17px; color: #B4B4BA; margin: 0 auto 28px; max-width: 520px; }
.cta-panel .btn { position: relative; padding: 15px 28px; font-size: 16px; }

/* ===================== FOOTER (ported) ===================== */
footer { position: relative; z-index: 1; border-top: 1px solid var(--b08); background: var(--footer); }
.foot-grid { display: flex; flex-wrap: wrap; gap: 40px 48px; margin-bottom: 44px; }
.foot-brand { flex: 1 1 240px; min-width: 200px; }
.foot-cols { flex: 3 1 560px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 24px; }
@media (max-width: 640px) { .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.foot-blurb { font-size: 14px; color: var(--t5); max-width: 270px; margin: 0; line-height: 1.55; }
.foot-col-title { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--t6); margin-bottom: 16px; }
.foot-col-links { display: flex; flex-direction: column; gap: 11px; }
.foot-col-links a { font-size: 14px; color: #B4B4BA; transition: color .2s; }
.foot-col-links a:hover { color: var(--t1); }
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--b07);
  font-family: var(--mono); font-size: 12px; color: var(--t6);
}
.foot-bottom .legal { display: flex; gap: 20px; }
.foot-bottom .legal a { color: var(--t5); }

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  :root { --play: paused; }
  .reveal { opacity: 1; transform: none; transition: none; }
  [data-entrance] { animation: none !important; }
  html { scroll-behavior: auto; }
}
