/* ============================================================
   BELTBORN — developer site
   Grounded sci-fi HUD: deep space, Belt-rust amber, HUD cyan.
   ============================================================ */

:root {
  --bg:        #070a0f;
  --bg-2:      #0a0e14;
  --panel:     #0e131c;
  --panel-2:   #121826;
  --line:      #1d2636;
  --line-2:    #29354a;

  --text:      #cdd6e4;
  --text-soft: #9aa6b8;
  --text-dim:  #66748a;

  --amber:     #f4a23c;  /* Belt rust / ship lights */
  --amber-dim: #c47e2a;
  --cyan:      #5fd4c6;  /* HUD readouts */
  --cyan-dim:  #2f8f86;
  --danger:    #e8634f;

  --maxw: 1120px;
  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient radial glows layered behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 78% -5%, rgba(244,162,60,.10), transparent 60%),
    radial-gradient(800px 700px at 12% 18%, rgba(95,212,198,.07), transparent 55%),
    radial-gradient(1000px 900px at 50% 120%, rgba(95,212,198,.05), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 40%, var(--bg));
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
em { color: var(--text); font-style: italic; }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 2.5rem);
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(7,10,15,.85), rgba(7,10,15,.55));
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .6rem; color: var(--amber); }
.brand-mark { width: 30px; height: 30px; filter: drop-shadow(0 0 10px rgba(244,162,60,.4)); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .22em;
  font-size: .98rem;
  color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: clamp(.7rem, 2vw, 1.8rem); }
.nav-links a {
  font-size: .86rem;
  color: var(--text-soft);
  font-weight: 500;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: .42rem .9rem;
  color: var(--cyan) !important;
}
.nav-cta:hover { border-color: var(--cyan-dim); background: rgba(95,212,198,.08); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem clamp(1.2rem, 5vw, 2rem) 4rem;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(95,212,198,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95,212,198,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 880px; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--cyan);
  background: rgba(95,212,198,.07);
  border: 1px solid rgba(95,212,198,.22);
  padding: .4rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.8rem;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(95,212,198,.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(95,212,198,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(95,212,198,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,212,198,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6.2vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
}
.hero-title .accent {
  background: linear-gradient(100deg, var(--amber), #ffd089 55%, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-soft);
  max-width: 660px;
  margin: 0 auto 1.5rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.hero-meta i { color: var(--line-2); font-style: normal; }
.hero-meta span { color: var(--text-soft); }

.hero-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--text-dim);
  letter-spacing: .03em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  padding: .8rem 1.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s;
}
.btn-primary {
  background: linear-gradient(180deg, var(--amber), var(--amber-dim));
  color: #1a1206;
  box-shadow: 0 8px 30px -10px rgba(244,162,60,.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(244,162,60,.7); }
.btn-ghost {
  background: rgba(255,255,255,.02);
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--cyan-dim); color: var(--cyan); background: rgba(95,212,198,.06); }

.scroll-cue {
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
}
.scroll-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translateY(0)} 35%{opacity:1} 70%{opacity:0;transform:translateY(12px)} 100%{opacity:0} }

/* ===================== INSPIRED-BY STRIP ===================== */
.strip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem clamp(1.2rem, 5vw, 2rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.strip-label {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.3rem;
}
.strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 5vw, 3.5rem);
}
.strip-items span { display: flex; flex-direction: column; gap: .15rem; }
.strip-items b { font-family: var(--font-display); font-size: 1.05rem; color: var(--text); }
.strip-items small { font-size: .76rem; color: var(--text-dim); }

/* ===================== SECTIONS ===================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 2rem);
}
.section-tight { padding-top: 1rem; }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.kicker {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--cyan);
  text-transform: uppercase;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: .7rem 0 1rem;
}
.lede { color: var(--text-soft); font-size: clamp(1rem, 1.5vw, 1.12rem); }

/* ----- Loops ----- */
.loops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.loop-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.loop-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: .5;
}
.loop-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.loop-scale { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; color: var(--text-dim); }
.loop-card h3 { font-family: var(--font-display); font-size: 1.35rem; margin: .35rem 0 .6rem; color: var(--amber); }
.loop-card p { color: var(--text-soft); font-size: .94rem; margin-bottom: 1rem; }
.loop-card code {
  display: block;
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--cyan);
  background: rgba(95,212,198,.05);
  border: 1px solid rgba(95,212,198,.14);
  border-radius: 8px;
  padding: .55rem .7rem;
}

/* ----- Pillars ----- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pillar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color .25s, background .25s;
}
.pillar:hover { border-color: var(--line-2); background: var(--panel-2); }
.pillar-n {
  font-family: var(--font-mono);
  font-size: .9rem;
  color: var(--amber);
  font-weight: 600;
}
.pillar h4 { font-family: var(--font-display); font-size: 1.08rem; margin: .5rem 0 .4rem; }
.pillar p { color: var(--text-soft); font-size: .9rem; }
.pillar-anti { border-color: rgba(232,99,79,.25); }
.pillar-anti .pillar-n { color: var(--danger); }

/* ----- Version 1 verbs ----- */
.verbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .9rem; margin-bottom: 1.6rem; }
.verb {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem;
  text-align: center;
  transition: transform .2s var(--ease), border-color .2s;
}
.verb:hover { transform: translateY(-4px); border-color: var(--amber-dim); }
.verb-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(244,162,60,.1);
  border: 1px solid rgba(244,162,60,.28);
  color: var(--amber);
  font-size: 1.3rem;
  margin-bottom: .8rem;
}
.verb h4 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: .35rem; }
.verb p { color: var(--text-soft); font-size: .82rem; }
.v1-exclude {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-dim);
  border: 1px dashed var(--line-2);
  border-radius: 10px;
  padding: .9rem 1.1rem;
}
.v1-exclude-label { color: var(--text-soft); }

/* ----- Setting / lore ----- */
.lore-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 1.1rem; }
.lore-card, .lore-signature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
}
.lore-tag {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .5rem;
}
.lore-tag.accent { color: var(--cyan); }
.lore-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--cyan); margin-bottom: .6rem; }
.lore-card p { color: var(--text-soft); font-size: .96rem; margin-bottom: 1.1rem; }
.lore-card code {
  display: block;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-style: normal;
  color: var(--text);
  background: rgba(95,212,198,.05);
  border-left: 2px solid var(--cyan-dim);
  border-radius: 4px;
  padding: .8rem .9rem;
  line-height: 1.5;
}
.lore-signature {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  background:
    radial-gradient(420px 220px at 88% 0%, rgba(244,162,60,.12), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  border-color: var(--line-2);
}
.sig-glyph { flex: 0 0 96px; color: var(--amber); filter: drop-shadow(0 0 14px rgba(244,162,60,.35)); }
.sig-glyph svg { width: 96px; height: 96px; }
.sig-glyph path[stroke-dasharray] { animation: dash 2.5s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -18; } }
.sig-body h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--amber); margin-bottom: .5rem; }
.sig-body p { color: var(--text-soft); font-size: .96rem; }

/* ----- Factions ----- */
.factions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.faction {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--fac, var(--line-2));
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  transition: transform .2s var(--ease), border-color .2s, background .2s;
}
.faction:hover { transform: translateY(-4px); background: var(--panel-2); }
.faction[data-faction="combine"]   { --fac: #c9a24b; }
.faction[data-faction="corewatch"] { --fac: #6ea8e0; }
.faction[data-faction="drift"]     { --fac: var(--amber); }
.faction[data-faction="ashfall"]   { --fac: var(--danger); }
.faction-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .3rem; }
.faction-glyph { color: var(--fac, var(--amber)); font-size: 1.3rem; line-height: 1; }
.faction-head h4 { font-family: var(--font-display); font-size: 1.15rem; }
.faction-tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--text-dim);
  margin-bottom: .7rem;
}
.faction p:last-child { color: var(--text-soft); font-size: .88rem; }

/* ----- Timeline ----- */
.timeline-target {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--amber);
  margin: 0 0 1.4rem -1.6rem;
  padding: .55rem .9rem;
  display: inline-block;
  border: 1px solid var(--amber-dim);
  border-radius: 999px;
  background: rgba(244,162,60,.07);
}
.phase-when {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--cyan);
  margin-left: .7rem;
  letter-spacing: .03em;
}
.timeline { position: relative; padding-left: 1.6rem; }
.timeline::before {
  content: "";
  position: absolute; left: 5px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--amber), var(--line) 40%, var(--line));
}
.phase {
  position: relative;
  margin-bottom: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  transition: border-color .25s;
}
.phase:hover { border-color: var(--line-2); }
.phase::before {
  content: "";
  position: absolute; left: -1.6rem; top: 1.6rem;
  width: 12px; height: 12px;
  margin-left: -0.5px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line-2);
}
.phase.is-active::before { background: var(--amber); border-color: var(--amber); box-shadow: 0 0 0 4px rgba(244,162,60,.18); }
.phase.is-done::before { background: var(--cyan); border-color: var(--cyan); }
.phase.is-next::before { border-color: var(--amber-dim); }
.phase-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.phase-name { font-family: var(--font-display); font-size: 1.15rem; }
.phase-name span { color: var(--text-dim); font-size: .82rem; font-family: var(--font-mono); margin-right: .5rem; }
.phase-badge {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--text-dim);
}
.phase-badge.active { color: var(--amber); border-color: var(--amber-dim); background: rgba(244,162,60,.08); }
.phase-badge.done   { color: var(--cyan); border-color: var(--cyan-dim); background: rgba(95,212,198,.08); }
.phase-badge.next   { color: var(--text-soft); }
.phase-goal { color: var(--text-soft); font-size: .94rem; margin: .55rem 0 .7rem; }
.phase-items { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .7rem; }
.phase-items li {
  list-style: none;
  font-size: .76rem;
  font-family: var(--font-mono);
  color: var(--text-soft);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .2rem .55rem;
}
.phase-exit { font-size: .82rem; color: var(--text-dim); }
.phase-exit b { color: var(--cyan); font-weight: 500; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .05em; }

/* ----- Devlog ----- */
.devlog { display: flex; flex-direction: column; gap: 1rem; }
.log {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.4rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  transition: border-color .25s, transform .25s;
}
.log:hover { border-color: var(--line-2); transform: translateX(3px); }
.log-meta { display: flex; flex-direction: column; gap: .5rem; }
.log-date { font-family: var(--font-mono); font-size: .82rem; color: var(--text-dim); }
.log-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 5px;
  border: 1px solid var(--line-2);
  color: var(--text-soft);
}
.log-tag[data-tag="milestone"] { color: var(--amber); border-color: var(--amber-dim); background: rgba(244,162,60,.08); }
.log-tag[data-tag="design"]    { color: var(--cyan); border-color: var(--cyan-dim); background: rgba(95,212,198,.08); }
.log-tag[data-tag="code"]      { color: #9d8bf0; border-color: #4b3f8a; background: rgba(157,139,240,.08); }
.log-tag[data-tag="art"]       { color: #f08bbf; border-color: #8a3f6a; background: rgba(240,139,191,.08); }
.log-tag[data-tag="build"]     { color: #8bd0f0; border-color: #3f6a8a; background: rgba(139,208,240,.08); }
.log-body h3 { font-family: var(--font-display); font-size: 1.18rem; margin-bottom: .4rem; }
.log-body p { color: var(--text-soft); font-size: .95rem; }
.log-body p em { color: var(--text); }

/* ----- Follow ----- */
.section-follow { display: flex; justify-content: center; }
.follow-card {
  width: 100%;
  max-width: 640px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% -40%, rgba(244,162,60,.12), transparent 70%),
    var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.2rem);
}
.follow-card h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: .8rem; }
.follow-card > p { color: var(--text-soft); max-width: 460px; margin: 0 auto 1.6rem; font-size: .96rem; }
.follow-form { display: flex; gap: .6rem; max-width: 440px; margin: 0 auto; }
.follow-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: .8rem 1rem;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: .9rem;
}
.follow-form input:focus { outline: none; border-color: var(--cyan-dim); box-shadow: 0 0 0 3px rgba(95,212,198,.12); }
.follow-form input::placeholder { color: var(--text-dim); }
.follow-hint { margin-top: 1rem; font-family: var(--font-mono); font-size: .82rem; min-height: 1.2em; }
.follow-hint.ok { color: var(--cyan); }
.follow-hint.err { color: var(--danger); }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--line); margin-top: 3rem; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem clamp(1.2rem, 5vw, 2rem);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand .brand-name { font-size: 1.05rem; }
.footer-brand p { color: var(--text-dim); font-size: .88rem; max-width: 320px; margin-top: .5rem; }
.footer-meta { display: flex; flex-direction: column; gap: .35rem; font-family: var(--font-mono); font-size: .78rem; color: var(--text-dim); text-align: right; }
.footer-status { display: inline-flex; align-items: center; gap: .4rem; color: var(--cyan); }

/* ===================== UTIL / REVEAL ===================== */
.loading { color: var(--text-dim); font-family: var(--font-mono); font-size: .88rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .loops, .pillars { grid-template-columns: 1fr 1fr; }
  .verbs { grid-template-columns: 1fr 1fr 1fr; }
  .lore-grid { grid-template-columns: 1fr; }
  .factions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .loops, .pillars, .verbs, .factions { grid-template-columns: 1fr; }
  .lore-signature { flex-direction: column; text-align: center; }
  .log { grid-template-columns: 1fr; gap: .8rem; }
  .log-meta { flex-direction: row; align-items: center; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
