/* Logikoo — logikoo.devhavenapps.com
   The app's design system on a dark ground: one violet accent, Figtree in its
   heavy weights, a flat 4px radius on every card and button, and glow spent
   only on the things that should feel valuable. */

/* ---------------------------------------------------------------- fonts -- */
/* Figtree, SIL Open Font License 1.1 — see assets/fonts/OFL.txt */
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/Figtree-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/Figtree-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/Figtree-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/Figtree-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

/* --------------------------------------------------------------- tokens -- */
:root {
  --ground: #0d0e1c;
  --ground-deep: #090a15;
  --surface: #16172e;
  --surface-2: #1c1d3a;
  --surface-3: #232451;
  --ink-panel-start: #1e1f3c;
  --ink-panel-end: #2e2f5c;

  --border: #262747;
  --border-soft: #1f2040;
  --border-strong: #33345f;

  --text: #f3f4fb;
  --text-secondary: #b6b8d4;
  --text-muted: #8a8ca8;
  --text-faint: #6f7192;

  --accent: #5b4bff;
  --accent-deep: #4b39f0;
  --accent-bright: #6c5cff;
  --accent-light: #7b6cff;
  --accent-soft: #8f7fe8;
  --accent-wash: rgba(91, 75, 255, 0.14);

  --coin-light: #f7dc74;
  --coin-dark: #c4941a;
  --gold: #d4af37;
  --energy-light: #ffd64a;
  --energy-dark: #ffb300;
  --fire: #ff7043;
  --success: #16a34a;

  --radius: 4px;
  --radius-inner: 3px;
  --radius-bar: 2px;

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-lift: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 30px -22px rgba(0, 0, 0, 0.95);
  --shadow-accent: 0 12px 26px -12px rgba(75, 57, 240, 0.85);

  --container: 1120px;
  color-scheme: dark;
}

/* ---------------------------------------------------------------- reset -- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-soft); text-decoration: none; }
a:hover { color: var(--text); }

h1, h2, h3, h4 {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
  color: var(--text);
}

p { margin: 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-deep);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------ structure -- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section {
  padding: 80px 0;
  border-top: 1px solid var(--border-soft);
}
.section.tight { padding: 52px 0; }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
}

.section-head h2 { font-size: clamp(26px, 3.6vw, 36px); }
.section-head p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 17px;
}

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 14, 28, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.05em;
}
.brand:hover { color: var(--text); }
.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.9);
}
.brand .oo { color: var(--accent-soft); }

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.site-nav a[aria-current='page'] {
  color: var(--text);
  background: var(--accent-wash);
  box-shadow: inset 0 0 0 1px rgba(91, 75, 255, 0.35);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle svg { width: 18px; height: 18px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded='true'] .icon-close { display: block; }
.nav-toggle[aria-expanded='true'] .icon-open { display: none; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 16px 16px;
    background: var(--ground);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lift);
  }
  .site-nav:not(.is-open) { display: none; }
  .site-nav a { padding: 12px 14px; font-size: 15px; }
}

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary {
  position: relative;
  color: #fff;
  background: linear-gradient(155deg, var(--accent-bright), var(--accent-deep));
  box-shadow: var(--shadow-accent);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: var(--radius) var(--radius) 0 0;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px -12px rgba(75, 57, 240, 0.95);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--border-strong);
}
.btn-ghost:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }

/* Store buttons — inert until the app is listed. */
.store-row { display: flex; flex-wrap: wrap; gap: 12px; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-align: left;
}
.store-btn svg { width: 24px; height: 24px; flex: none; color: var(--text-secondary); }
.store-btn span { display: block; }
.store-btn .lead {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  line-height: 1.4;
}
.store-btn .name {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
a.store-btn:hover { color: var(--text); border-color: var(--border-strong); background: var(--surface-3); }
.store-btn.is-inert { cursor: default; opacity: 0.72; }

/* ----------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  padding: 84px 0 68px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -280px;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-58%);
  background: radial-gradient(circle, rgba(143, 127, 232, 0.22), rgba(143, 127, 232, 0) 62%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 60px);
  letter-spacing: -0.045em;
}
.hero h1 .accent { color: var(--accent-soft); }

.hero-lede {
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 34em;
}

.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--text-faint); font-weight: 600; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-secondary);
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.tag .dot.coin { background: linear-gradient(160deg, var(--coin-light), var(--coin-dark)); }
.tag .dot.energy { background: linear-gradient(180deg, var(--energy-light), var(--energy-dark)); }

@media (max-width: 960px) {
  .hero { padding: 56px 0 72px; }
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: 2; }
}

/* --------------------------------------------------------- phone mockup -- */
.hero-visual { display: flex; justify-content: center; }

.phone {
  position: relative;
  width: 100%;
  max-width: 300px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2b4e, #15162c);
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  box-shadow: 0 40px 70px -40px rgba(0, 0, 0, 1), 0 0 60px -30px rgba(91, 75, 255, 0.6);
}

.phone-screen {
  background: var(--ground-deep);
  border-radius: 18px;
  overflow: hidden;
  padding: 14px 12px 12px;
}

.mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mock-brand { font-size: 15px; font-weight: 900; letter-spacing: -0.05em; }
.mock-brand .oo { color: var(--accent-soft); }

.mock-pills { display: flex; gap: 6px; }
.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 900;
  color: var(--text-secondary);
}
.mock-pill i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}
.mock-pill .coin {
  background: linear-gradient(160deg, var(--coin-light), var(--coin-dark));
  box-shadow: 0 0 10px rgba(247, 220, 116, 0.45);
}
.mock-pill .bolt {
  background: linear-gradient(180deg, var(--energy-light), var(--energy-dark));
  box-shadow: 0 0 10px rgba(255, 214, 74, 0.5);
}

.mock-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px;
  margin-bottom: 10px;
}
.mock-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.mock-title { font-size: 13px; font-weight: 900; letter-spacing: -0.02em; }
.mock-sub { font-size: 11px; font-weight: 600; color: var(--text-muted); margin-top: 2px; }

.mock-track {
  height: 6px;
  border-radius: var(--radius-bar);
  background: rgba(255, 255, 255, 0.07);
  margin-top: 9px;
  overflow: hidden;
}
.mock-fill {
  height: 100%;
  border-radius: var(--radius-bar);
  background: linear-gradient(90deg, var(--energy-light), var(--energy-dark));
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.55);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}
.mock-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.mock-tile.on { background: #eef0fb; border-color: #eef0fb; }
.mock-tile.hot {
  background: linear-gradient(155deg, var(--accent-light), var(--accent-deep));
  border-color: transparent;
  box-shadow: 0 8px 18px -8px rgba(91, 75, 255, 0.9);
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-top: 6px;
}
.mock-row.me {
  border-color: rgba(91, 75, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(91, 75, 255, 0.13), 0 10px 26px -18px rgba(91, 75, 255, 0.9);
}
.mock-rank {
  width: 18px;
  font-size: 11px;
  font-weight: 900;
  color: var(--text-faint);
  text-align: center;
}
.mock-row.me .mock-rank { color: var(--accent-soft); }
.mock-avatar {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-inner);
  background: linear-gradient(155deg, var(--accent-light), var(--accent-deep));
}
.mock-name { font-size: 11px; font-weight: 800; flex: 1; }
.mock-score {
  font-size: 11px;
  font-weight: 900;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------- cards -- */
.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid.three { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--text-secondary); font-size: 15px; }

.card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-wash);
  box-shadow: inset 0 0 0 1px rgba(91, 75, 255, 0.28);
  color: var(--accent-soft);
  margin-bottom: 16px;
}
.card-icon svg { width: 20px; height: 20px; }
.card-icon.coin {
  background: rgba(212, 175, 55, 0.12);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.3);
  color: var(--coin-light);
}
.card-icon.energy {
  background: rgba(255, 179, 0, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 179, 0, 0.3);
  color: var(--energy-light);
}
.card-icon.fire {
  background: rgba(255, 112, 67, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 112, 67, 0.3);
  color: var(--fire);
}
.card-icon.green {
  background: rgba(22, 163, 74, 0.14);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.32);
  color: #4ade80;
}

.card .meta {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ----------------------------------------------------------- stat strip -- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--surface); padding: 24px; text-align: center; }
.stat .value {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(155deg, #cfc9ff, var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ------------------------------------------------------------- cta band -- */
.cta {
  position: relative;
  margin: 0 auto;
  padding: 54px 40px;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-panel-start), var(--ink-panel-end));
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -60% 20% auto;
  height: 320px;
  background: radial-gradient(circle, rgba(143, 127, 232, 0.28), rgba(143, 127, 232, 0) 65%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta h2 { font-size: clamp(24px, 3.4vw, 32px); }
.cta p { margin: 14px auto 26px; color: var(--text-secondary); max-width: 46ch; }
.cta .store-row { justify-content: center; }

/* ------------------------------------------------------------ page head -- */
.page-head {
  padding: 68px 0 44px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  top: -320px;
  left: 30%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(91, 75, 255, 0.2), rgba(91, 75, 255, 0) 62%);
  pointer-events: none;
}
.page-head .container { position: relative; }
.page-head h1 { font-size: clamp(32px, 5vw, 46px); }
.page-head p { margin-top: 16px; color: var(--text-secondary); font-size: 17px; max-width: 60ch; }
.page-head .updated {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------------------------------------------------------- legal prose -- */
.legal { padding: 56px 0 88px; }

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 92px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.toc h2 {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a {
  display: block;
  padding: 5px 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.45;
}
.toc a::before {
  content: counter(toc) '.';
  display: inline-block;
  width: 20px;
  color: var(--text-faint);
  font-weight: 900;
}
.toc a:hover { color: var(--text); }

.prose { max-width: 72ch; }
.prose h2 {
  font-size: 22px;
  margin: 44px 0 14px;
  scroll-margin-top: 96px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 16px; margin: 26px 0 8px; color: var(--text); }
.prose p { margin: 0 0 14px; color: var(--text-secondary); }
.prose ul { margin: 0 0 16px; padding-left: 20px; color: var(--text-secondary); }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--accent-soft); }
.prose strong { color: var(--text); font-weight: 800; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose code {
  padding: 2px 6px;
  border-radius: var(--radius-inner);
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--border);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.87em;
  color: var(--text);
}

.callout {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--accent-wash);
  box-shadow: inset 0 0 0 1px rgba(91, 75, 255, 0.3);
}
.callout p { margin: 0; color: var(--text-secondary); font-size: 15px; }
.callout p + p { margin-top: 10px; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14.5px;
}
.data-table th,
.data-table td {
  padding: 11px 14px;
  text-align: left;
  border: 1px solid var(--border);
  vertical-align: top;
}
.data-table th {
  background: var(--surface-2);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.data-table td { color: var(--text-secondary); background: var(--surface); }
.table-scroll { overflow-x: auto; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .toc { position: static; }
}

/* --------------------------------------------------------------- footer -- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--ground-deep);
  padding: 48px 0 34px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-blurb { max-width: 34ch; }
.footer-blurb p { margin-top: 12px; color: var(--text-muted); font-size: 14px; }

.footer-cols { display: flex; flex-wrap: wrap; gap: 56px; }
.footer-col h3 {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-secondary); font-size: 14.5px; font-weight: 700; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 600;
}

/* -------------------------------------------------------------- utility -- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
