/*
 * ═══════════════════════════════════════════════════════
 * ABIA GREEN — SHARED STYLES
 * File: css/shared.css
 *
 * Contains every style that appears on more than one page:
 * reset, scroll reveal, platform bar, nav, section anatomy,
 * buttons, cards, carousel, stats, roadmap, credits,
 * partners, footer, back-to-top, kiosk mode, responsive.
 *
 * Import order in every HTML file:
 *   1. assets/fonts/fonts.css
 *   2. css/tokens.css
 *   3. css/shared.css
 *   4. css/[page].css   (index | shuttle | environment)
 * ═══════════════════════════════════════════════════════
 */

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html                   { scroll-behavior: smooth; }
body                   { font-family: var(--font-sans); background: var(--cream); color: var(--ink); overflow-x: hidden; line-height: 1.6; }
img                    { display: block; max-width: 100%; }
button                 { cursor: pointer; border: none; font-family: inherit; }
a                      { color: inherit; text-decoration: none; }
::-webkit-scrollbar         { width: 4px; }
::-webkit-scrollbar-track   { background: var(--cream-2); }
::-webkit-scrollbar-thumb   { background: var(--accent); border-radius: 2px; }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1),
              transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── PLATFORM SWITCHER BAR ──────────────────────────── */
.platform-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center;
  background: var(--ink); height: var(--pb-h);
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(255,255,255,.07);
  gap: 0; overflow-x: auto;
}
.platform-bar::-webkit-scrollbar { display: none; }
.pb-label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(253,250,245,.3);
  padding-right: 16px; border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 4px; white-space: nowrap; flex-shrink: 0;
}
.pb-link {
  display: flex; align-items: center; gap: 7px;
  padding: 0 14px; height: var(--pb-h);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  color: rgba(253,250,245,.45); white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s; flex-shrink: 0;
}
.pb-link:hover  { color: rgba(253,250,245,.85); background: rgba(255,255,255,.04); }
.pb-link.current { color: var(--amber); background: rgba(232,148,26,.08); }
.pb-dot          { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pb-dot.green    { background: var(--forest); }
.pb-dot.shuttle  { background: #3B8BEB; }
.pb-dot.env      { background: var(--amber); }

/* ─── MAIN NAV ───────────────────────────────────────── */
#nav {
  position: fixed; top: var(--pb-h); left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad); height: var(--nav-h);
  background: rgba(247,243,236,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,18,8,.09);
}
.nav-logo       { display: flex; align-items: center; gap: 10px; }
.nav-mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
  box-shadow: 0 2px 10px var(--accent-glow);
}
.nav-name   { font-family: var(--font-serif); font-size: 16px; color: var(--ink); line-height: 1; }
.nav-sub    { font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); font-family: var(--font-mono); }
.nav-links  { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 11.5px; font-weight: 500; color: var(--ash-2);
  padding: 5px 10px; border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(26,18,8,.05); }
.nav-cta {
  padding: 7px 18px; background: var(--accent); color: var(--white);
  font-size: 12px; font-weight: 600; border-radius: var(--radius);
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover       { background: var(--accent-deep); }
.nav-cta.ghost       { background: rgba(26,18,8,.07); color: var(--ink); box-shadow: none; }
.nav-cta.ghost:hover { background: rgba(26,18,8,.12); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; background: none; }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 1px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.nav-drawer {
  display: none; position: fixed; top: var(--top-offset); left: 0; right: 0; z-index: 199;
  background: rgba(247,243,236,.99); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,18,8,.09);
  flex-direction: column; padding: 14px var(--pad) 22px; gap: 2px;
}
.nav-drawer.open        { display: flex; }
.nav-drawer a           { font-size: 14px; font-weight: 500; color: var(--ash-2); padding: 11px 8px; border-bottom: 1px solid rgba(26,18,8,.05); }
.nav-drawer a:last-of-type { border: none; }
.nav-drawer .d-cta      { margin-top: 10px; background: var(--accent); color: var(--white); padding: 13px; text-align: center; border-radius: var(--radius); font-weight: 600; }

/* ─── SECTION ANATOMY ────────────────────────────────── */
.section  { padding: clamp(64px, 8vw, 110px) var(--pad); }
.inner    { max-width: var(--max); margin: 0 auto; }
.sec-head { margin-bottom: clamp(32px, 5vw, 56px); }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 13px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--accent); flex-shrink: 0; }
.eyebrow.on-dark  { color: rgba(232,148,26,.8); }
.eyebrow.on-dark::before { background: rgba(232,148,26,.6); }
.eyebrow.center   { justify-content: center; }
.sec-h2           { font-family: var(--font-serif); font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--ink); line-height: 1.18; margin-bottom: 12px; }
.sec-h2.on-dark   { color: var(--white); }
.sec-lead         { font-size: clamp(.88rem,1.4vw,.98rem); color: var(--ash); max-width: 560px; line-height: 1.85; }
.sec-lead.on-dark { color: rgba(253,250,245,.5); }
.sec-lead.center  { margin: 0 auto; }

/* ─── SECTION BACKGROUNDS ────────────────────────────── */
.bg-cream  { background: var(--cream); background-image: var(--uli-light); }
.bg-white  { background: var(--white); }
.bg-dark   { background: var(--deep);   background-image: var(--uli-dark);   position: relative; overflow: hidden; }
.bg-forest { background: var(--forest); background-image: var(--uli-dark);   position: relative; overflow: hidden; }

/* amber spine on dark sections */
.bg-dark::before,
.bg-forest::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
  opacity: .55;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; border-radius: var(--radius);
  transition: all .2s; padding: 12px 24px;
}
.btn-fill          { background: var(--accent); color: var(--white); box-shadow: 0 4px 16px var(--accent-glow); }
.btn-fill:hover    { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-outline       { background: transparent; color: var(--ink); border: 1.5px solid rgba(26,18,8,.18); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost-white        { background: transparent; color: var(--white); border: 1.5px solid rgba(253,250,245,.25); }
.btn-ghost-white:hover  { border-color: var(--amber); color: var(--amber); }

/* ─── FEATURE CARDS ──────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.card  { padding: 26px 22px; border-radius: var(--radius); transition: all .22s; }
.card.dark  { background: rgba(253,250,245,.04); border: 1px solid rgba(253,250,245,.08); }
.card.dark:hover  { background: rgba(253,250,245,.07); border-color: rgba(232,148,26,.3); }
.card.light { background: var(--white); border: 1px solid rgba(26,18,8,.07); }
.card.light:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,18,8,.07); }
.card-icon            { font-size: 22px; margin-bottom: 13px; }
.card-title           { font-family: var(--font-serif); font-size: .98rem; margin-bottom: 7px; }
.card-title.on-dark   { color: var(--white); }
.card-title.on-light  { color: var(--ink); }
.card-body            { font-size: .8rem; line-height: 1.78; }
.card-body.on-dark    { color: rgba(253,250,245,.45); }
.card-body.on-light   { color: var(--ash); }
.phase-tag { display: inline-block; margin-top: 11px; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .09em; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; }
.tag-g { background: rgba(26,107,60,.12);  color: var(--forest); }
.tag-a { background: rgba(232,148,26,.12); color: var(--amber-2); }
.tag-r { background: rgba(192,57,43,.09);  color: var(--red); }
.tag-b { background: rgba(36,113,163,.09); color: var(--blue); }

/* ─── HERO CAROUSEL ──────────────────────────────────── */
.hc-wrap  { width: 100%; max-width: 900px; position: relative; overflow: hidden; margin-top: 10px; }
.hc-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.hc-slide { min-width: 100%; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 0 2px; }
.hc-card  {
  background: var(--white); border: 1px solid rgba(26,18,8,.08);
  border-radius: var(--radius); padding: 16px 14px;
  border-top: 2px solid var(--accent);
  display: flex; flex-direction: column; gap: 5px;
  transition: box-shadow .2s, transform .2s;
}
.hc-card:hover   { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,18,8,.07); }
.hc-icon         { font-size: 18px; }
.hc-title        { font-family: var(--font-serif); font-size: .84rem; color: var(--ink); line-height: 1.3; }
.hc-desc         { font-size: .72rem; color: var(--ash); line-height: 1.6; }
.hc-tag          { display: inline-block; margin-top: 3px; font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; padding: 2px 7px; border-radius: 20px; width: fit-content; }
.hc-controls     { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 13px; }
.hc-btn          { width: 30px; height: 30px; border-radius: 50%; background: var(--white); border: 1px solid rgba(26,18,8,.12); color: var(--ash-2); font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.hc-btn:hover    { background: var(--accent); color: var(--white); border-color: var(--accent); }
.hc-dots         { display: flex; gap: 5px; align-items: center; }
.hc-dot          { width: 6px; height: 6px; border-radius: 50%; background: rgba(26,18,8,.15); transition: all .25s; border: none; padding: 0; cursor: pointer; }
.hc-dot.active   { background: var(--accent); width: 16px; border-radius: 3px; }

/* ─── STATS ROW ──────────────────────────────────────── */
.stats-row     { display: flex; gap: 0; border: 1px solid rgba(26,18,8,.09); border-radius: var(--radius); background: var(--white); overflow: hidden; flex-wrap: wrap; box-shadow: 0 4px 20px rgba(26,18,8,.05); }
.stat-box      { padding: 18px 28px; text-align: center; border-right: 1px solid rgba(26,18,8,.07); flex: 1; min-width: 110px; }
.stat-box:last-child { border-right: none; }
.stat-val      { font-family: var(--font-serif); font-size: clamp(1.4rem,2.2vw,2rem); color: var(--amber); line-height: 1; }
.stat-lbl      { font-size: 9.5px; color: var(--ash); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; font-family: var(--font-mono); }

/* ─── SPLIT LAYOUT ───────────────────────────────────── */
.split      { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: start; }
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }

/* ─── MODULE STRIP ───────────────────────────────────── */
.mod-strip       { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 28px; }
.mod-strip.dark  { background: rgba(253,250,245,.04); border: 1px solid rgba(253,250,245,.08); }
.mod-strip.light { background: rgba(26,107,60,.05);   border: 1px solid rgba(26,107,60,.14); }
.mod-num         { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; color: var(--amber); width: 30px; flex-shrink: 0; }
.mod-name        { font-family: var(--font-serif); font-size: 1.18rem; }
.mod-name.on-dark  { color: var(--white); }
.mod-name.on-light { color: var(--ink); }
.mod-count         { margin-left: auto; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .06em; }
.mod-count.on-dark  { color: rgba(253,250,245,.3); }
.mod-count.on-light { color: var(--ash); }

/* ─── ROADMAP ────────────────────────────────────────── */
.rm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 18px; }
.rm-card {
  background: var(--white); border: 1px solid rgba(26,18,8,.08);
  border-radius: var(--radius); padding: 26px 22px;
  border-top: 3px solid rgba(26,18,8,.08); transition: all .22s;
}
.rm-card.current   { border-top-color: var(--accent); }
.rm-card:hover     { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,18,8,.07); }
.rm-phase          { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-2); margin-bottom: 5px; }
.rm-title          { font-family: var(--font-serif); font-size: 1rem; color: var(--ink); margin-bottom: 9px; }
.rm-body           { font-size: .79rem; color: var(--ash); line-height: 1.75; margin-bottom: 13px; }
.rm-tags           { display: flex; flex-wrap: wrap; gap: 5px; }
.rm-tag            { font-family: var(--font-mono); font-size: 8.5px; padding: 2px 7px; border-radius: 20px; background: rgba(26,18,8,.06); color: var(--ash-2); }

/* ─── GOVERNMENT ADOPTION ────────────────────────────── */
.adopt-grid          { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.adopt-card          { background: var(--white); border: 1px solid rgba(26,18,8,.08); border-radius: var(--radius); padding: 28px 24px; border-left: 3px solid var(--accent); transition: all .22s; }
.adopt-card:hover    { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,18,8,.07); }
.adopt-card.amber-l  { border-left-color: var(--amber); }
.adopt-icon          { font-size: 24px; margin-bottom: 12px; }
.adopt-title         { font-family: var(--font-serif); font-size: 1.02rem; color: var(--ink); margin-bottom: 9px; line-height: 1.3; }
.adopt-body          { font-size: .81rem; color: var(--ash); line-height: 1.8; }
.adopt-banner        { background: var(--deep); background-image: var(--uli-dark); border-radius: var(--radius); padding: 32px 36px; margin-top: 36px; position: relative; overflow: hidden; }
.adopt-banner::before        { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--amber); }
.adopt-banner-hl             { font-family: var(--font-serif); font-size: clamp(1.05rem,2vw,1.45rem); color: var(--white); margin-bottom: 7px; line-height: 1.3; }
.adopt-banner-sub            { font-size: .86rem; color: rgba(253,250,245,.5); line-height: 1.75; }
.adopt-banner-sub em         { font-style: italic; color: rgba(232,148,26,.75); }
.adopt-banner-actions        { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

/* ─── CREDITS ────────────────────────────────────────── */
.credit-tier                 { margin-bottom: 44px; }
.credit-tier-label           { font-family: var(--font-mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.credit-tier-label::after    { content: ''; flex: 1; height: 1px; background: rgba(253,250,245,.08); }
.credit-lead                 { display: flex; align-items: flex-start; gap: 18px; background: rgba(253,250,245,.04); border: 1px solid rgba(253,250,245,.09); border-radius: var(--radius); padding: 26px; }
.c-avatar                    { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--forest), var(--amber)); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1rem; color: var(--white); flex-shrink: 0; }
.c-name                      { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); margin-bottom: 3px; }
.c-role                      { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.c-note                      { font-size: .81rem; color: rgba(253,250,245,.43); line-height: 1.75; }
.credit-teachers             { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 14px; }
.credit-t-card               { background: rgba(253,250,245,.03); border: 1px solid rgba(253,250,245,.07); border-radius: var(--radius); padding: 20px; display: flex; gap: 13px; align-items: flex-start; }
.c-avatar-sm                 { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: rgba(232,148,26,.18); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: .82rem; color: var(--amber); }
.c-name-sm                   { font-family: var(--font-serif); font-size: .92rem; color: var(--white); margin-bottom: 2px; }
.c-role-sm                   { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--amber); margin-bottom: 7px; }
.c-note-sm                   { font-size: .76rem; color: rgba(253,250,245,.38); line-height: 1.7; }
.credit-students             { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 10px; }
.cs-card                     { background: rgba(253,250,245,.03); border: 1px solid rgba(253,250,245,.07); border-radius: var(--radius); padding: 15px; text-align: center; transition: border-color .2s; }
.cs-card:hover               { border-color: rgba(232,148,26,.25); }
.cs-av                       { width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 9px; background: rgba(26,107,60,.22); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: .78rem; color: rgba(253,250,245,.65); }
.cs-name                     { font-size: .8rem; color: rgba(253,250,245,.65); font-weight: 500; margin-bottom: 3px; }
.cs-contrib                  { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; color: var(--amber); opacity: .7; }
.credit-school               { display: flex; align-items: center; gap: 16px; padding: 22px 26px; background: rgba(253,250,245,.03); border: 1px solid rgba(253,250,245,.08); border-radius: var(--radius); margin-top: 44px; }
.cs-icon                     { font-size: 30px; }
.cs-school-name              { font-family: var(--font-serif); font-size: 1.08rem; color: var(--white); margin-bottom: 2px; }
.cs-location                 { font-size: .8rem; color: rgba(253,250,245,.4); margin-bottom: 2px; }
.cs-club                     { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); opacity: .75; }

/* ─── PARTNERS ───────────────────────────────────────── */
.partners       { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.partner        { display: flex; align-items: center; gap: 8px; padding: 11px 18px; background: rgba(253,250,245,.05); border: 1px solid rgba(253,250,245,.09); border-radius: var(--radius); transition: all .2s; }
.partner:hover  { border-color: rgba(232,148,26,.3); background: rgba(232,148,26,.05); }
.partner-icon   { font-size: 15px; }
.partner-name   { font-family: var(--font-serif); font-size: .85rem; color: rgba(253,250,245,.72); }
.partner-role   { font-family: var(--font-mono); font-size: .63rem; color: rgba(253,250,245,.32); letter-spacing: .06em; text-transform: uppercase; display: block; margin-top: 1px; }

/* ─── SDG PILLS ──────────────────────────────────────── */
.sdgs { display: flex; flex-wrap: wrap; gap: 7px; }
.sdg  { font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; padding: 3px 9px; border-radius: 20px; background: rgba(232,148,26,.1); color: rgba(232,148,26,.72); border: 1px solid rgba(232,148,26,.15); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--ink); background-image: var(--uli-dark);
  padding: clamp(44px,6vw,72px) var(--pad) 28px; position: relative;
}
footer::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, transparent, var(--amber), transparent); opacity: .45; }
.foot-inner         { max-width: var(--max); margin: 0 auto; }
.foot-top           { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.foot-brand-name    { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 5px; }
.foot-brand-sub     { font-size: .78rem; color: rgba(253,250,245,.32); line-height: 1.7; }
.foot-col-title     { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: rgba(253,250,245,.28); margin-bottom: 13px; }
.foot-links         { display: flex; flex-direction: column; gap: 8px; }
.foot-links a       { font-size: .8rem; color: rgba(253,250,245,.42); transition: color .2s; }
.foot-links a:hover { color: var(--white); }
.foot-bottom        { padding-top: 22px; border-top: 1px solid rgba(253,250,245,.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.foot-legal         { font-size: .73rem; color: rgba(253,250,245,.22); }
.foot-build         { font-family: var(--font-mono); font-size: .68rem; color: rgba(253,250,245,.18); }

/* ─── BACK TO TOP ────────────────────────────────────── */
#btt {
  position: fixed; bottom: 26px; right: 22px; z-index: 190;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  box-shadow: 0 4px 16px var(--accent-glow);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  border: 1px solid rgba(255,255,255,.15);
}
#btt.show       { opacity: 1; pointer-events: auto; }
#btt:hover      { transform: translateY(-3px); background: var(--accent-deep); }

/* ─── KIOSK MODE ─────────────────────────────────────── */
#kiosk-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(15,61,34,.96); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(232,148,26,.3);
  padding: 8px var(--pad); align-items: center; justify-content: space-between; gap: 14px;
}
.kiosk-prog      { flex: 1; height: 3px; background: rgba(253,250,245,.1); border-radius: 2px; overflow: hidden; }
.kiosk-fill      { height: 100%; background: var(--amber); border-radius: 2px; transition: width .3s linear; }
.kiosk-lbl       { font-family: var(--font-mono); font-size: 9.5px; color: rgba(253,250,245,.45); letter-spacing: .08em; white-space: nowrap; }
.kiosk-stop      { padding: 5px 13px; border-radius: var(--radius); background: rgba(253,250,245,.08); color: rgba(253,250,245,.55); font-size: 11px; font-weight: 600; transition: all .2s; }
.kiosk-stop:hover { background: rgba(253,250,245,.15); color: #fff; }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .split      { grid-template-columns: 1fr; }
  .split.flip { direction: ltr; }
  .adopt-grid { grid-template-columns: 1fr; }
  .foot-top   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger   { display: flex; }
  .foot-top    { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .hc-slide { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .hc-slide  { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-box  { border-right: none; border-bottom: 1px solid rgba(26,18,8,.07); }
  .stat-box:last-child { border-bottom: none; }
}
