/* ============================================================
   Play Nexus Hub — Social Gaming Platform
   Theme: deep navy/charcoal · silver · muted teal · electric blue
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg-900: #0a0e17;
  --bg-800: #0d1320;
  --bg-700: #111a2b;
  --bg-card: #131c2e;
  --bg-card-2: #16203400;
  --line: #1f2c44;
  --line-soft: #1a2538;

  --silver: #c7d2e3;
  --silver-dim: #8a99b3;
  --silver-faint: #64738e;

  --teal: #3fd0c9;
  --teal-dim: #2aa39d;
  --blue: #3d8bff;
  --blue-bright: #4f9dff;

  --white: #eef3fb;
  --danger: #ff8e8e;

  --glow-blue: 0 0 0 1px rgba(61, 139, 255, .25), 0 12px 40px -12px rgba(61, 139, 255, .35);
  --glow-teal: 0 0 0 1px rgba(63, 208, 201, .22), 0 10px 36px -14px rgba(63, 208, 201, .30);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --maxw: 1200px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.4, .14, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg-900);
  color: var(--silver);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* layered background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 80% -5%, rgba(61, 139, 255, .10), transparent 60%),
    radial-gradient(700px 480px at 0% 12%, rgba(63, 208, 201, .07), transparent 55%),
    linear-gradient(180deg, #0a0e17 0%, #0a0d15 100%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--white); line-height: 1.18; font-weight: 600; letter-spacing: -.01em; }

::selection { background: rgba(61, 139, 255, .35); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  font-weight: 600;
}
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.section-lead { color: var(--silver-dim); max-width: 640px; font-size: 1.04rem; }
.center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 3px; }
.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, #2f6fe0 100%);
  color: #fff;
  box-shadow: var(--glow-blue);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(61,139,255,.4), 0 18px 46px -14px rgba(61,139,255,.6); }
.btn--ghost {
  background: rgba(199, 210, 227, .04);
  color: var(--white);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--teal-dim); color: var(--white); transform: translateY(-2px); background: rgba(63,208,201,.06); }
.btn--teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dim) 100%);
  color: #04201f;
  box-shadow: var(--glow-teal);
}
.btn--teal:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(63,208,201,.4), 0 16px 40px -14px rgba(63,208,201,.55); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 18px; font-size: .88rem; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(199, 210, 227, .05);
  border: 1px solid var(--line);
  color: var(--silver);
}
.badge--age {
  background: rgba(61, 139, 255, .12);
  border-color: rgba(61, 139, 255, .4);
  color: var(--blue-bright);
}
.badge--teal { background: rgba(63, 208, 201, .1); border-color: rgba(63, 208, 201, .35); color: var(--teal); }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 21, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--white); letter-spacing: -.02em; }
.brand__name span { color: var(--teal); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--silver-dim);
  padding: 9px 13px;
  border-radius: 10px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--white); background: rgba(199,210,227,.05); }
.nav__link.is-active { color: var(--white); background: rgba(61,139,255,.1); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px; height: 42px;
  color: var(--white);
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 1000px) {
  .nav__links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg-800);
    border-bottom: 1px solid var(--line);
    padding: 14px 18px 22px;
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__link { padding: 13px 14px; font-size: 1rem; }
  .nav__toggle { display: inline-flex; }
  .nav__actions .badge--age { display: none; }
}
@media (max-width: 560px) {
  .nav__actions .btn { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 70px 0 56px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.02;
  margin-bottom: 18px;
  background: linear-gradient(120deg, #fff 20%, var(--silver) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle { font-family: var(--font-head); font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--teal); margin-bottom: 18px; font-weight: 500; }
.hero__desc { font-size: 1.06rem; color: var(--silver-dim); max-width: 540px; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { order: -1; }
}

/* Hero visual / mascot scene */
.hero-scene {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(19,28,46,.9), rgba(13,19,32,.6));
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.03);
  overflow: hidden;
}
.hero-scene::before {
  content: "";
  position: absolute;
  inset: -40% 30% auto -20%;
  height: 320px;
  background: radial-gradient(circle, rgba(61,139,255,.22), transparent 65%);
  filter: blur(10px);
}
.hero-scene__inner { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: 18px; align-items: center; }
.hero-mascot { width: 100%; height: auto; filter: drop-shadow(0 14px 30px rgba(63,208,201,.25)); }

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-tile {
  background: rgba(10,14,23,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 12px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.mini-tile:hover { transform: translateY(-3px); border-color: var(--teal-dim); }
.mini-tile__icon { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(61,139,255,.12); color: var(--blue-bright); }
.mini-tile__icon svg { width: 17px; height: 17px; }
.mini-tile__label { font-family: var(--font-head); font-size: .8rem; color: var(--silver); font-weight: 600; }
.mini-tile__meta { font-size: .68rem; color: var(--silver-faint); letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 480px) {
  .hero-scene__inner { grid-template-columns: 1fr; }
  .hero-scene { padding: 20px; }
}

/* ============================================================
   Compliance / notice strip
   ============================================================ */
.notice-strip {
  background: linear-gradient(120deg, rgba(61,139,255,.08), rgba(63,208,201,.05));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.notice-strip__icon {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(61,139,255,.14); color: var(--blue-bright);
  border: 1px solid rgba(61,139,255,.3);
}
.notice-strip__icon svg { width: 24px; height: 24px; }
.notice-strip p { font-size: .98rem; color: var(--silver); }
.notice-strip strong { color: var(--white); }
@media (max-width: 600px) { .notice-strip { flex-direction: column; text-align: center; } }

/* ============================================================
   Cards / grids
   ============================================================ */
.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, var(--bg-card), rgba(13,19,32,.6));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 24px 50px -28px rgba(0,0,0,.7); }

/* Game card */
.game-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.game-card:hover { border-color: rgba(61,139,255,.4); box-shadow: var(--glow-blue); }
.game-card__art {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid; place-items: center;
  overflow: hidden;
  background: #0a0e17;
}
.game-card__art svg { width: 100%; height: 100%; }
/* generated SVG sits underneath as a fallback */
.game-card__fallback { position: absolute; inset: 0; z-index: 0; }
/* cover image (from /gamescover) layers on top; hidden by JS if it fails to load */
.game-card__cover {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.game-card:hover .game-card__cover { transform: scale(1.05); }
.game-card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(10,14,23,.78); color: var(--teal);
  border: 1px solid rgba(63,208,201,.35); backdrop-filter: blur(6px);
}
.game-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.game-card__title { font-size: 1.22rem; margin-bottom: 8px; }
.game-card__desc { font-size: .92rem; color: var(--silver-dim); margin-bottom: 16px; flex: 1; }
.game-card__labels { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.game-card__labels .badge { font-size: .68rem; padding: 5px 10px; }

/* Step cards */
.step-card { position: relative; padding-top: 30px; }
.step-card__num {
  position: absolute; top: -16px; left: 24px;
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  background: linear-gradient(135deg, var(--blue), #2f6fe0); color: #fff;
  box-shadow: var(--glow-blue);
}
.step-card h3 { font-size: 1.12rem; margin-bottom: 8px; margin-top: 8px; }
.step-card p { font-size: .92rem; color: var(--silver-dim); }

/* Feature / info card with icon */
.info-card__icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(63,208,201,.1); color: var(--teal);
  border: 1px solid rgba(63,208,201,.25);
}
.info-card__icon svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.14rem; margin-bottom: 9px; }
.info-card p { font-size: .93rem; color: var(--silver-dim); }

/* List with check marks */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: .98rem; color: var(--silver); }
.check-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 8px; margin-top: 1px;
  display: grid; place-items: center;
  background: rgba(63,208,201,.12); color: var(--teal); border: 1px solid rgba(63,208,201,.3);
}
.check-list .tick svg { width: 14px; height: 14px; }

/* ============================================================
   Responsible play band
   ============================================================ */
.rp-band {
  background: linear-gradient(150deg, rgba(19,28,46,.85), rgba(13,19,32,.5));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}
@media (max-width: 700px) { .rp-band { padding: 28px 22px; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item__q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: var(--font-head); font-size: 1.02rem; font-weight: 600;
  text-align: left; padding: 19px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item__q:hover { color: var(--teal); }
.faq-item__q .chev { flex: none; transition: transform .3s var(--ease); color: var(--silver-dim); }
.faq-item[open] .chev, .faq-item.is-open .chev { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.is-open .faq-item__a { max-height: 320px; }
.faq-item__a p { padding: 0 22px 20px; color: var(--silver-dim); font-size: .96rem; }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { padding: 64px 0 34px; position: relative; }
.page-hero__title { font-size: clamp(2.1rem, 5vw, 3.3rem); margin-bottom: 16px; }
.page-hero__lead { font-size: 1.1rem; color: var(--silver-dim); max-width: 680px; }

/* ============================================================
   Prose (legal / content pages)
   ============================================================ */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.4rem; margin: 38px 0 12px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.prose h2:first-of-type { border-top: none; padding-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--silver); }
.prose p { margin-bottom: 14px; color: var(--silver-dim); }
.prose ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { position: relative; padding-left: 24px; color: var(--silver-dim); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 2px; background: var(--teal); }
.prose strong { color: var(--white); }
.prose .meta-note { font-size: .86rem; color: var(--silver-faint); margin-bottom: 28px; }

/* ============================================================
   Search / filter bar (games page)
   ============================================================ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px;
}
.search-field { position: relative; flex: 1; min-width: 220px; }
.search-field svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--silver-faint); }
.search-field input {
  width: 100%; background: var(--bg-900); border: 1px solid var(--line);
  border-radius: 11px; padding: 12px 14px 12px 42px; color: var(--white);
  font-family: var(--font); font-size: .95rem;
}
.search-field input::placeholder { color: var(--silver-faint); }
.search-field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(61,139,255,.15); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-head); font-size: .82rem; font-weight: 600;
  padding: 9px 15px; border-radius: 999px;
  background: rgba(199,210,227,.04); border: 1px solid var(--line); color: var(--silver-dim);
  transition: all .2s var(--ease);
}
.chip:hover { color: var(--white); border-color: var(--teal-dim); }
.chip.is-active { background: rgba(61,139,255,.14); border-color: rgba(61,139,255,.45); color: var(--blue-bright); }
.no-results { text-align: center; color: var(--silver-faint); padding: 40px; grid-column: 1 / -1; display: none; }

/* ============================================================
   Game modal
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(5, 8, 14, .82);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: fade .25s var(--ease);
}
.modal__dialog {
  position: relative;
  width: min(1080px, 100%);
  height: min(760px, calc(100vh - 40px));
  max-height: calc(100vh - 40px);
  background: var(--bg-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 50px 110px -40px rgba(0,0,0,.85);
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: pop .3s var(--ease);
}
.modal__head {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-700);
}
.modal__title { font-size: 1.05rem; font-family: var(--font-head); color: var(--white); margin-right: auto; }
.modal__remind {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600; letter-spacing: .02em;
  color: var(--teal); background: rgba(63,208,201,.1);
  border: 1px solid rgba(63,208,201,.3); padding: 6px 12px; border-radius: 999px;
}
.modal__remind svg { width: 14px; height: 14px; }
.modal__btn {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(199,210,227,.06); border: 1px solid var(--line); color: var(--silver);
  display: grid; place-items: center; transition: all .2s var(--ease);
}
.modal__btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.modal__btn svg { width: 18px; height: 18px; }
.modal__frame-wrap { position: relative; flex: 1; background: #05080e; min-height: 0; }
.modal__frame-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal__loader {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--silver-faint); font-size: .9rem; gap: 14px;
  flex-direction: column; pointer-events: none;
}
.modal__loader .spin {
  width: 38px; height: 38px; border-radius: 50%;
  border: 3px solid var(--line); border-top-color: var(--blue);
  animation: spin 1s linear infinite;
}
.modal__remind-bar {
  display: none; font-size: .74rem; text-align: center; color: var(--teal);
  background: rgba(63,208,201,.08); padding: 8px; border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
  .modal { padding: 0; }
  .modal__dialog { width: 100%; height: 100%; max-height: 100%; border-radius: 0; border: none; }
  .modal__remind { display: none; }
  .modal__remind-bar { display: block; }
  .modal__frame-wrap { height: auto; }
}

body.modal-open { overflow: hidden; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(13,19,32,.5));
  padding: 56px 0 30px;
  margin-top: 40px;
}
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 38px; }
.footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer__disclaimer { font-size: .9rem; color: var(--silver-dim); max-width: 420px; margin-bottom: 18px; }
.footer__col h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--silver-faint); margin-bottom: 16px; font-family: var(--font-head); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: .93rem; color: var(--silver-dim); transition: color .2s; }
.footer__col a:hover { color: var(--teal); }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 24px; border-top: 1px solid var(--line-soft);
}
.footer__bottom p { font-size: .84rem; color: var(--silver-faint); }
@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand-col { grid-column: 1 / -1; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
