/* Director Games — one stylesheet for every page. Game pages override --accent, --accent-ink, --glow, --bg. */
:root {
  --bg: #0a0d14;
  --bg-2: #0f131c;
  --surface: #131925;
  --surface-2: #1a2130;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);
  --text: #eef1f6;
  --muted: #9aa4b5;
  --faint: #6b7587;
  --accent: #ffc043;
  --accent-ink: #1a1200;
  --glow: #3a3320;
  --flap: #1b2230;
  --radius: 20px;
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 17px/1.6 var(--font); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 1.1; letter-spacing: -.02em; margin: 0; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 820px; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--accent); color: var(--accent-ink); padding: 8px 14px; border-radius: 8px; font-weight: 700; }
.skip:focus { left: 8px; }
.accent { color: var(--accent); }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 10px; }
.lede { color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.55; max-width: 640px; }

/* ---------- split-flap ---------- */
.flap { display: inline-flex; gap: 3px; font-family: var(--mono); font-weight: 700; }
.flap-cell {
  position: relative; display: inline-grid; place-items: center;
  width: 1.12em; height: 1.55em; background: var(--flap); color: var(--accent);
  border-radius: 4px; box-shadow: inset 0 -1px 0 rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.04);
  line-height: 1;
}
.flap-cell::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0,0,0,.6); }
.flap-gap { display: inline-block; width: .5em; }
.flap-cell.is-flipping { animation: flip .07s linear; }
@keyframes flip { 50% { transform: scaleY(.3); filter: brightness(.6); } }
.flap-sm { font-size: 15px; gap: 2px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; letter-spacing: -.01em; }
.brand-name { font-size: 16px; }
.nav { display: flex; gap: 4px; }
.nav a { text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 600; padding: 8px 12px; border-radius: 999px; transition: color .15s, background .15s; }
.nav a:hover { color: var(--text); background: var(--surface); }
.nav a[aria-current="page"] { color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); }
@media (max-width: 560px) { .brand-name { display: none; } .nav a { padding: 8px 10px; font-size: 14px; } }

/* ---------- buttons ---------- */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 20px;
  border-radius: 14px; font-weight: 700; font-size: 16px; text-decoration: none; white-space: nowrap;
  transition: transform .15s ease, background .15s, border-color .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-store {
  flex-direction: column; align-items: flex-start; justify-content: center; gap: 0; padding: 6px 22px 7px;
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 8px 30px -8px color-mix(in srgb, var(--accent) 60%, transparent);
}
.btn-store:hover { box-shadow: 0 12px 36px -8px color-mix(in srgb, var(--accent) 75%, transparent); }
.btn-kicker { font-size: 11px; font-weight: 600; letter-spacing: .02em; opacity: .8; line-height: 1.2; }
.btn-main { font-size: 19px; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; }
.btn-lg { min-height: 58px; padding-left: 26px; padding-right: 26px; }
.btn-lg .btn-main { font-size: 21px; }
.btn-store + .btn-store:not(.is-soon) { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); box-shadow: none; }
.btn-store + .btn-store:not(.is-soon):hover { background: color-mix(in srgb, var(--accent) 12%, transparent); }
.cta-row-tight { margin-top: 0; }
.btn-store.is-soon { background: var(--surface-2); color: var(--muted); box-shadow: none; border: 1px dashed var(--line-2); cursor: default; }
.btn-store.is-soon:hover { transform: none; }
.ico { width: 24px; height: 24px; flex: none; }
.ico-sm { width: 18px; height: 18px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(56px, 9vw, 112px) 0 clamp(48px, 7vw, 88px); isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 55% at 78% 20%, color-mix(in srgb, var(--glow) 70%, transparent), transparent 70%),
    radial-gradient(40% 40% at 10% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%);
}
.display { font-size: clamp(38px, 6.4vw, 76px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; margin-bottom: 22px; max-width: 16ch; }
.hero-home .display { max-width: 22ch; }

/* departures board */
.board {
  margin-top: clamp(36px, 5vw, 56px); padding: 18px; border-radius: 22px;
  background: linear-gradient(180deg, #0d1119, #080a10); border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.04);
  overflow-x: auto; display: grid; grid-template-columns: repeat(3, max-content) 1fr; column-gap: clamp(14px, 2.4vw, 32px);
}
.board-head, .board-row { grid-column: 1 / -1; display: grid; grid-template-columns: subgrid; align-items: center; }
.board-head { font: 700 11px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--faint); padding: 0 12px 12px; border-bottom: 1px solid var(--line); }
.board-row { font-size: 17px; padding: 12px; border-radius: 12px; text-decoration: none; transition: background .15s; }
.board-row + .board-row { border-top: 1px solid rgba(255,255,255,.04); }
.board-row:hover { background: rgba(255,255,255,.03); }
.board-genre .flap-cell { color: #cfd6e2; }
.board-status .flap-cell { color: var(--faint); }
.board-status.is-live .flap-cell { color: #52d98a; }
.board-row .flap { gap: 2px; }
@media (max-width: 760px) {
  .board { display: block; padding: 10px; }
  .board-head, .board-code, .board-genre { display: none; }
  .board-row { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: clamp(11px, 3.6vw, 15px); padding: 12px 8px; }
  .board-status { font-size: .85em; }
}

/* ---------- sections ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; margin-bottom: 18px; }
.section-lede { color: var(--muted); font-size: 19px; max-width: 640px; margin-bottom: 36px; }

/* home showcase */
.show {
  position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center;
  margin-top: 40px; padding: clamp(24px, 4vw, 56px); border-radius: 32px; overflow: hidden; isolation: isolate;
  background: linear-gradient(160deg, color-mix(in srgb, var(--glow) 45%, var(--surface)) 0%, var(--bg-2) 70%);
  border: 1px solid var(--line);
}
.show::after { content: ""; position: absolute; inset: auto -10% -40% 40%; height: 80%; z-index: -1; background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 22%, transparent), transparent); }
.show.is-flip .show-copy { order: 2; }
.app-icon { border-radius: 22.5%; box-shadow: 0 10px 30px -8px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.08); }
.show .app-icon { width: 80px; height: 80px; margin-bottom: 22px; }
.show-title { font-size: clamp(34px, 4.5vw, 54px); font-weight: 800; letter-spacing: -.03em; }
.show-title a { text-decoration: none; }
.show-title a:hover { color: var(--accent); }
.show-sub { color: var(--accent); font-weight: 700; font-size: 20px; margin: 8px 0 16px; }
.show-lede { color: var(--muted); font-size: 17px; }
.stat-mini { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.stat-mini li { font-size: 14px; color: var(--muted); padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.stat-mini b { color: var(--text); }
.show-art { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; }
.show-art img { width: 44%; max-width: 230px; border-radius: 22px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.8); }
.show-art img:nth-child(1) { transform: translateX(22%) rotate(-7deg) scale(.88); opacity: .75; }
.show-art img:nth-child(2) { position: relative; z-index: 2; }
.show-art img:nth-child(3) { transform: translateX(-22%) rotate(7deg) scale(.88); opacity: .75; }
@media (max-width: 860px) {
  .show { grid-template-columns: 1fr; }
  .show.is-flip .show-copy { order: 0; }
  .show-art { min-height: 0; margin-top: 8px; }
}

/* promise */
.section-promise { background: linear-gradient(180deg, transparent, var(--bg-2)); }
.promise { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.promise-item { padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.promise-item .ico { color: var(--accent); width: 28px; height: 28px; margin-bottom: 16px; }
.promise-item h3 { font-size: 19px; margin-bottom: 8px; }
.promise-item p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- game page ---------- */
.page-game .hero::before {
  background:
    radial-gradient(55% 60% at 80% 35%, color-mix(in srgb, var(--glow) 85%, transparent), transparent 72%),
    radial-gradient(35% 35% at 0% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.title-lockup { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.app-icon-lg { width: 96px; height: 96px; }
.title-lockup .eyebrow { margin-bottom: 6px; }
.game-title { font-size: clamp(40px, 6vw, 68px); font-weight: 800; letter-spacing: -.035em; }
.hero-headline { font-family: var(--display); font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 16px; max-width: 22ch; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.chips li { font-size: 13px; font-weight: 600; color: var(--muted); padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2); }
.hero-device { display: flex; justify-content: center; }
.phone {
  position: relative; width: min(330px, 78vw); aspect-ratio: 480 / 1040; padding: 12px; border-radius: 54px;
  background: linear-gradient(145deg, #2a303c, #0d1016 40%, #1c212b);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 50px 100px -30px rgba(0,0,0,.9), 0 0 120px -20px color-mix(in srgb, var(--accent) 35%, transparent);
}
.phone-screen { width: 100%; height: 100%; object-fit: cover; border-radius: 42px; background: #000; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone { width: min(280px, 70vw); }
}
@media (max-width: 480px) { .title-lockup { gap: 14px; } .app-icon-lg { width: 72px; height: 72px; } }

.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.stats { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats li { padding: 28px 16px; text-align: center; }
.stats li + li { border-left: 1px solid var(--line); }
.stats b { display: block; font: 800 clamp(34px, 4.5vw, 52px)/1 var(--display); letter-spacing: -.03em; color: var(--accent); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.stats span { color: var(--muted); font-size: 15px; }
@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats li:nth-child(3) { border-left: 0; }
  .stats li:nth-child(n+3) { border-top: 1px solid var(--line); }
}

.features { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; margin-top: 36px; }
.feature { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: border-color .2s, transform .2s; }
.feature:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); transform: translateY(-2px); }
.feature .ico { width: 44px; height: 44px; padding: 10px; border-radius: 12px; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); margin-bottom: 18px; }
.feature h3 { font-size: 21px; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 16px; margin: 0; }

.section-screens { padding-bottom: clamp(40px, 6vw, 72px); }
.screens {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  padding: 16px max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))) 28px;
  scroll-padding: 0 max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
}
.screen { flex: 0 0 auto; width: clamp(210px, 24vw, 270px); margin: 0; scroll-snap-align: start; }
.screen img { border-radius: 24px; border: 1px solid var(--line); box-shadow: 0 24px 50px -24px rgba(0,0,0,.9); }
.screen figcaption { margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--muted); }

.prose p { color: #c9d0dc; font-size: 18px; line-height: 1.7; }
.prose .prose-lead { font-family: var(--display); font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; color: var(--text); line-height: 1.3; letter-spacing: -.015em; }
.promise-callout { margin-top: 28px; padding: 20px 24px; border-radius: 16px; border-left: 3px solid var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); font-weight: 600; }

.faq { margin-top: 28px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative; font-weight: 700; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { color: var(--muted); margin: -4px 0 22px; max-width: 680px; }
.support { margin-top: 48px; padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.support h3 { font-size: 22px; margin-bottom: 10px; }
.support p { color: var(--muted); }
.support a { color: var(--accent); }
.support-links { margin: 0; font-size: 15px; }

.cta-band { padding: clamp(40px, 6vw, 64px) 0; }
.cta-band-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: clamp(24px, 4vw, 40px); border-radius: 28px; max-width: calc(var(--wrap) - 2 * var(--gutter));
  background: linear-gradient(120deg, color-mix(in srgb, var(--glow) 70%, var(--surface)), var(--surface));
  border: 1px solid var(--line);
}
.cta-band-inner > div { flex: 1 1 280px; }
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-bottom: 6px; }
.cta-band p { color: var(--muted); margin: 0; }
@media (max-width: 640px) { .cta-band-inner { margin: 0 var(--gutter); width: auto; } }

.more { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 24px; }
.more-card {
  display: flex; align-items: center; gap: 18px; padding: 20px; border-radius: var(--radius); text-decoration: none;
  background: linear-gradient(120deg, color-mix(in srgb, var(--glow) 50%, var(--surface)), var(--surface)); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.more-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.more-card .app-icon { width: 64px; height: 64px; }
.more-card > span { flex: 1; display: flex; flex-direction: column; }
.more-card b { font-size: 20px; }
.more-card span span { color: var(--accent); font-size: 15px; font-weight: 600; }
.more-card .ico { color: var(--muted); }

/* ---------- legal ---------- */
.legal { padding-top: 32px; padding-bottom: 88px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--faint); margin-bottom: 36px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.legal-head { display: flex; align-items: center; gap: 18px; padding-bottom: 32px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.legal-head .app-icon { width: 64px; height: 64px; }
.legal-head .eyebrow { margin-bottom: 4px; }
.platform-switch { margin-left: auto; display: inline-flex; padding: 4px; gap: 4px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); }
.platform-switch a { padding: 7px 16px; border-radius: 999px; font-size: 14px; font-weight: 700; text-decoration: none; color: var(--muted); }
.platform-switch a:hover { color: var(--text); }
.platform-switch a[aria-current="page"] { background: var(--accent); color: var(--accent-ink); }
@media (max-width: 640px) { .legal-head { flex-wrap: wrap; } .platform-switch { margin-left: 0; } }
.legal-head h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; }
.legal-grid { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 56px; align-items: start; }
.toc { position: sticky; top: 96px; font-size: 14px; }
.toc-title { font-weight: 700; color: var(--faint); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }
.toc ol { list-style: none; border-left: 1px solid var(--line); }
.toc li a { display: block; padding: 5px 0 5px 14px; margin-left: -1px; border-left: 1px solid transparent; color: var(--muted); text-decoration: none; line-height: 1.35; }
.toc li a:hover { color: var(--text); border-left-color: var(--accent); }
.toc-other { margin-top: 24px; }
.toc-other a { color: var(--accent); font-weight: 600; text-decoration: none; }
.doc { max-width: 720px; }
.doc-solo { margin: 0; }
.doc h2 { font-size: 24px; margin: 44px 0 14px; padding-top: 8px; }
.doc h2:first-of-type { margin-top: 32px; }
.doc h3 { font-size: 19px; margin: 28px 0 10px; }
.doc p, .doc li { color: #c9d0dc; font-size: 17px; line-height: 1.72; }
.doc ul { padding-left: 22px; margin-bottom: 1em; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--accent); overflow-wrap: anywhere; }
.doc strong { color: var(--text); }
.doc code { font-family: var(--mono); font-size: .88em; background: var(--surface-2); padding: 2px 6px; border-radius: 6px; }
.doc-meta { margin: 0 0 4px; font-size: 15px !important; color: var(--muted) !important; }
.doc-meta strong { color: var(--muted); font-weight: 600; }
@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; gap: 24px; }
  .toc { position: static; padding: 18px 20px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); }
  .toc ol { columns: 2; column-gap: 24px; }
  .toc li { break-inside: avoid; }
}
@media (max-width: 480px) { .toc ol { columns: 1; } }

/* ---------- 404 ---------- */
.hero-404 .board { display: inline-block; margin: 0 0 32px; padding: 16px 20px; overflow: visible; }
.hero-404 .board-row { display: block; min-width: 0; padding: 0; font-size: clamp(18px, 4vw, 30px); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 56px 0 32px; margin-top: 24px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; }
.foot-about p { color: var(--muted); font-size: 15px; margin: 14px 0 0; max-width: 320px; }
.foot-about a { color: var(--accent); text-decoration: none; }
.foot-about .foot-maker { color: var(--text); }
.foot-about .brand { color: var(--text); }
.foot-title { font-weight: 700; margin-bottom: 12px; }
.foot-title a { text-decoration: none; }
.foot-col ul { list-style: none; }
.foot-col li a { display: inline-block; padding: 4px 0; color: var(--muted); text-decoration: none; font-size: 15px; }
.foot-col li a:hover, .foot-title a:hover { color: var(--accent); }
.foot-base { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px 24px; color: var(--faint); font-size: 13px; }
.foot-base p { margin: 0; }
.foot-base a { color: var(--muted); }
.foot-legal { flex-basis: 100%; }
@media (max-width: 640px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-about { grid-column: 1 / -1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
