/* Page 2: Cities — unique neon/atlas styling */

/* Compensate fixed header */
main { padding-top: 76px; }

/* Reuse global tokens from :root in style.css */
.sec-title { font-family: "Orbitron", sans-serif; font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0 0 6px; }
.sec-sub   { color: var(--muted); max-width: 68ch; }
.kicker    { color: var(--brand); letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; text-shadow: 0 0 10px rgba(94,247,255,.5); }

/* =============== Section 1: Atlas =============== */
.atlas-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.atlas-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px;
  perspective: 900px;
}
.atlas-tile {
  position: relative; padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
  transform-style: preserve-3d;
}
.atlas-tile:hover { transform: rotateX(4deg) rotateY(-4deg) translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); filter: saturate(1.06); }
.atlas-tile figure img { border-radius: 12px; }
.tile-copy { color: var(--muted); margin-top: 6px; }

.atlas-key {
  max-width: 1240px; margin: 10px auto 0; padding: 0 4px; list-style: none; display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted);
}
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.dot-1 { background: var(--brand); }
.dot-2 { background: var(--brand-2); }
.dot-3 { background: var(--accent); }

.atlas-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(94,247,255,.22), transparent 70%);
  filter: blur(8px);
}

@media (max-width: 980px){ .atlas-grid{ grid-template-columns: 1fr; } }

/* =============== Section 2: Spotlight Diorama =============== */
.spot-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.diorama { position: relative; max-width: 1240px; margin: 0 auto; }
.lane {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 12px 56px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(94,247,255,.04), rgba(255,77,248,.04));
}
.lane::-webkit-scrollbar{ display:none; }
.pane {
  scroll-snap-align: start; flex: 0 0 88%; display: grid; grid-template-columns: 350px 1fr; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: 18px; padding: 14px;
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.pane:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.pane-media img { border-radius: 12px; }
.left-mask img  { clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); }
.right-mask img { clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
.pane-copy h3 { margin: 2px 0 6px; font-weight: 800; }
.pane-copy p  { color: var(--muted); }
.lane-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bg-soft); color: var(--ink); cursor: pointer; z-index: 2;
  transition: transform 180ms ease, background 180ms ease;
}
.lane-arrow:hover { transform: translateY(-50%) scale(1.05); background: rgba(255,255,255,.06); }
.lane-arrow.prev { left: 8px; } .lane-arrow.next { right: 8px; }

@media (max-width: 860px){ .pane{ grid-template-columns: 1fr; flex-basis: 92%; } }

/* =============== Section 3: Live City Board =============== */
.cb-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.cb-ribbon {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(94,247,255,.1), rgba(255,77,248,.1));
  box-shadow: var(--shadow); max-width: 1240px; margin: 0 auto 14px;
}
.cb-track {
  display: inline-flex; gap: 28px; padding: 10px 18px; white-space: nowrap;
  animation: cb-move 26s linear infinite;
}
.cb-item { color: var(--ink); opacity: .9; }
@keyframes cb-move { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.cb-grid {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px;
}
.cb-card {
  padding: 14px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.cb-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.cb-media img { border-radius: 12px; }
.cb-title { margin: 10px 0 6px; font-weight: 800; }
.cb-copy  { color: var(--muted); }

@media (max-width: 980px){ .cb-grid{ grid-template-columns: 1fr; } }

/* safety cap for page images */
.atlas img, .spotlight img, .cityboard img { max-width: 350px; }

/* Reveal-on-scroll base in global; here just ensure the class exists for first paint */
.reveal-on-scroll { opacity: 0; transform: translateY(18px) scale(.98); transition: opacity 600ms ease, transform 600ms ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0) scale(1); }
/* =========================
   Section 4 — Host Venues
   ========================= */
.vn-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.vn-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; gap: 18px; align-items: start;
}
.vn-card {
  padding: 14px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.vn-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.vn-title { margin: 2px 0 6px; font-weight: 800; }
.vn-list  { margin: 0; padding-left: 18px; color: var(--muted); }

.vn-media { display: grid; gap: 18px; }
.vn-tile {
  padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.vn-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.vn-tile img { border-radius: 12px; }

.vn-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(168,255,96,.25), transparent 70%); filter: blur(8px);
}

@media (max-width: 1100px){ .vn-grid { grid-template-columns: 1fr; } }

/* =========================
   Section 5 — Transit & Access
   ========================= */
.tr-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.tr-wrap { position: relative; max-width: 1240px; margin: 0 auto 14px; }
.tr-lane {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 12px 56px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  background:
    radial-gradient(600px 60px at 50% 0%, rgba(94,247,255,.08), transparent 70%),
    linear-gradient(135deg, rgba(94,247,255,.04), rgba(255,77,248,.04));
}
.tr-lane::-webkit-scrollbar { display:none; }
.station {
  scroll-snap-align: start; flex: 0 0 88%; display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start;
  border: 1px solid var(--line); border-radius: 16px; padding: 14px;
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.station .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); box-shadow: 0 0 0 2px var(--bg);
}
.station.is-active { border-color: rgba(168,255,96,.45); box-shadow: 0 0 0 1px rgba(168,255,96,.25) inset; }
.st-copy h3 { margin: 0 0 6px; font-weight: 800; }
.st-copy p  { color: var(--muted); }

.tr-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--bg-soft); color: var(--ink); cursor: pointer; z-index: 2;
  transition: transform 180ms ease, background 180ms ease;
}
.tr-arrow:hover { transform: translateY(-50%) scale(1.05); background: rgba(255,255,255,.06); }
.tr-prev { left: 8px; } .tr-next { right: 8px; }

.tr-cards {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px;
}
.tr-card {
  padding: 14px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.tr-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.tr-media img { border-radius: 12px; }
.tr-title { margin: 10px 0 6px; font-weight: 800; }
.tr-copy  { color: var(--muted); }

@media (max-width: 980px){
  .station { flex-basis: 92%; }
  .tr-cards { grid-template-columns: 1fr; }
}

/* =========================
   Section 6 — City Rivalries
   ========================= */
.db-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.db-grid {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px;
}
.db-tile {
  display: grid; grid-template-columns: 350px 1fr; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: 18px; padding: 14px;
  background:
    linear-gradient(90deg, rgba(94,247,255,.06), rgba(255,77,248,.06)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 6px, transparent 6px, transparent 12px);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}
.db-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); filter: saturate(1.06); }
.db-media img { border-radius: 12px; }
.db-copy h3 { margin: 2px 0 6px; font-weight: 800; }
.db-copy p  { color: var(--muted); }

.db-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(255,77,248,.25), transparent 70%); filter: blur(8px);
}

@media (max-width: 980px){
  .db-grid { grid-template-columns: 1fr; }
  .db-tile { grid-template-columns: 1fr; }
}

/* safety cap for these sections */
.venues img, .transit img, .derbies img { max-width: 350px; }
/* =========================
   Section 7 — Neighborhood Guide
   ========================= */
.ng-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.ng-grid {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; align-items: start;
}
.chip-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px;
}
.chip-card {
  padding: 14px; border-radius: 18px; border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 6px, transparent 6px, transparent 12px);
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.chip-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.chip-title { margin: 2px 0 6px; font-weight: 800; }
.chip-copy  { color: var(--muted); }
.ng-media { display: grid; gap: 18px; }
.ng-tile {
  padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.ng-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.ng-tile img { border-radius: 12px; }
.ng-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(94,247,255,.22), transparent 70%); filter: blur(8px);
}
@media (max-width: 1020px){
  .ng-grid { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr; }
}

/* =========================
   Section 8 — Fan Spots Trail
   ========================= */
.ft-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.ft-wrap { position: relative; max-width: 1240px; margin: 0 auto; }
.ft-lane {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 12px 56px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(94,247,255,.04), rgba(255,77,248,.04));
}
.ft-lane::-webkit-scrollbar { display:none; }
.ft-spot {
  scroll-snap-align: start; flex: 0 0 88%; display: grid; grid-template-columns: 350px 1fr; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: 18px; padding: 14px;
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.ft-spot:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.ft-spot.is-hot { border-color: rgba(168,255,96,.45); box-shadow: 0 0 0 1px rgba(168,255,96,.25) inset; }
.ft-media img { border-radius: 12px; }
.ft-copy h3 { margin: 2px 0 6px; font-weight: 800; }
.ft-copy p  { color: var(--muted); }
.ft-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--bg-soft); color: var(--ink); cursor: pointer; z-index: 2;
  transition: transform 180ms ease, background 180ms ease;
}
.ft-arrow:hover { transform: translateY(-50%) scale(1.05); background: rgba(255,255,255,.06); }
.ft-prev { left: 8px; } .ft-next { right: 8px; }
@media (max-width: 860px){ .ft-spot { grid-template-columns: 1fr; flex-basis: 92%; } }

/* =========================
   Section 9 — Accessibility & Safety
   ========================= */
.ac-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.ac-grid {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: start;
}
.ac-card {
  padding: 14px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.ac-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.ac-title { margin: 2px 0 6px; font-weight: 800; }
.ac-list  { margin: 0; padding-left: 18px; color: var(--muted); }

.ac-media { display: grid; gap: 18px; }
.ac-tile {
  padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.ac-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.ac-tile img { border-radius: 12px; }

.ac-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(255,77,248,.25), transparent 70%); filter: blur(8px);
}

@media (max-width: 1100px){ .ac-grid { grid-template-columns: 1fr; } }

/* safety cap */
.neighborhood img, .fantrail img, .access img { max-width: 350px; }
/* =========================
   Section 10 — Patch Pulse
   ========================= */
.pp-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.pp-grid {
  max-width: 1240px; margin: 0 auto; display: grid;
  grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: start;
}
.pp-bands {
  display: grid; gap: 10px;
}
.band {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(135deg, rgba(94,247,255,.05), rgba(255,77,248,.05));
  padding: 10px 12px; box-shadow: var(--shadow);
}
.band::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: .3; transition: width 900ms ease;
}
.band .label { position: relative; z-index: 1; font-weight: 700; }
.band .value { position: absolute; right: 10px; top: 8px; z-index: 1; font-family: "Orbitron", sans-serif; }

.pp-media { display: grid; gap: 18px; }
.pp-tile {
  padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.pp-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.pp-tile img { border-radius: 12px; }
.pp-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(94,247,255,.22), transparent 70%); filter: blur(8px);
}
@media (max-width: 1020px){ .pp-grid { grid-template-columns: 1fr; } }

/* =========================
   Section 11 — Energy Loop
   ========================= */
.en-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.en-grid {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: start;
}
.en-card {
  padding: 14px; border-radius: 18px; border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 6px, transparent 6px, transparent 12px);
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.en-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.en-title { margin: 2px 0 6px; font-weight: 800; }
.en-copy  { color: var(--muted); }

.en-media { display: grid; gap: 18px; }
.en-tile {
  padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.en-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.en-tile img { border-radius: 12px; }
.en-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(168,255,96,.25), transparent 70%); filter: blur(8px);
}
@media (max-width: 1100px){ .en-grid { grid-template-columns: 1fr; } }

/* =========================
   Section 12 — Community Hubs
   ========================= */
.hb-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.hb-grid {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; align-items: center;
}
.hb-tile {
  display: grid; grid-template-columns: 350px 1fr; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: 18px; padding: 14px;
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}
.hb-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); filter: saturate(1.06); }
.hb-media img { border-radius: 12px; }
.hb-copy h3 { margin: 2px 0 6px; font-weight: 800; }
.hb-copy p  { color: var(--muted); }

.hb-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(255,77,248,.25), transparent 70%); filter: blur(8px);
}
@media (max-width: 980px){
  .hb-grid { grid-template-columns: 1fr; }
  .hb-tile { grid-template-columns: 1fr; }
}

/* safety cap */
.patchpulse img, .energy img, .hubs img { max-width: 350px; }
/* =========================
   Section 13 — Local Captains
   ========================= */
.cap-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.cap-rail {
  max-width: 1240px; margin: 0 auto;
  display: grid; gap: 18px;
}
.cap-pane {
  display: grid; grid-template-columns: 350px 1fr; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: 18px; padding: 14px;
  background:
    linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 6px, transparent 6px, transparent 12px);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}
.cap-pane:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); filter: saturate(1.05); }
.cap-media img { border-radius: 12px; }
.cap-copy h3 { margin: 2px 0 6px; font-weight: 800; }
.cap-copy p  { color: var(--muted); }
.cap-points { margin: 0; padding-left: 18px; color: var(--muted); }
.cap-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(94,247,255,.22), transparent 70%); filter: blur(8px);
}
@media (max-width: 980px){ .cap-pane { grid-template-columns: 1fr; } }

/* =========================
   Section 14 — Volunteer Network
   ========================= */
.vo-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.vo-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: start;
}
.vo-card {
  padding: 14px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.vo-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.vo-title { margin: 2px 0 6px; font-weight: 800; }
.vo-copy  { color: var(--muted); }
.vo-list  { margin: 8px 0 0; padding-left: 18px; color: var(--muted); }

.vo-media { display: grid; gap: 18px; }
.vo-tile {
  padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.vo-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.vo-tile img { border-radius: 12px; }
.vo-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(168,255,96,.25), transparent 70%); filter: blur(8px);
}
@media (max-width: 1100px){ .vo-grid { grid-template-columns: 1fr; } }

/* =========================
   Section 15 — Merch & Auras
   ========================= */
.me-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.me-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start;
}
.aura-panel {
  padding: 14px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow);
}
.aura-preview {
  height: 200px; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 10px;
  background: radial-gradient(600px 120px at 50% 50%, rgba(94,247,255,.22), transparent 70%);
  transition: background 260ms ease, filter 260ms ease, transform 260ms ease;
}
.aura-cyan    { background: radial-gradient(600px 120px at 50% 50%, rgba(94,247,255,.28), transparent 70%); }
.aura-magenta { background: radial-gradient(600px 120px at 50% 50%, rgba(255,77,248,.28), transparent 70%); }
.aura-lime    { background: radial-gradient(600px 120px at 50% 50%, rgba(168,255,96,.28), transparent 70%); }

.swatches { display: flex; gap: 10px; }
.swatch {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer;
  background: var(--bg-soft); transition: transform 180ms ease, box-shadow 180ms ease;
}
.swatch[data-aura="cyan"]    { background: linear-gradient(90deg, #5ef7ff, #4be0ff); }
.swatch[data-aura="magenta"] { background: linear-gradient(90deg, #ff4df8, #ff7af7); }
.swatch[data-aura="lime"]    { background: linear-gradient(90deg, #a8ff60, #c0ff8a); }
.swatch:hover { transform: translateY(-1px) scale(1.05); }
.swatch.is-active { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(255,255,255,.18); }

.aura-status { color: var(--muted); margin-top: 8px; min-height: 1em; }

.me-media { display: grid; gap: 18px; }
.me-tile {
  padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.me-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.me-tile img { border-radius: 12px; }

.me-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(255,77,248,.25), transparent 70%); filter: blur(8px);
}
@media (max-width: 980px){ .me-grid { grid-template-columns: 1fr; } }

/* safety cap */
.captains img, .volunteers img, .merch img { max-width: 350px; }
/* =========================
   Section 16 — City Badge Gallery
   ========================= */
.bg-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.bg-grid {
  max-width: 1240px; margin: 0 auto; display: grid;
  grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: start;
}
.badge-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px;
}
.badge-chip {
  padding: 12px 14px; border-radius: 999px; text-align: center; font-family: "Orbitron", sans-serif; font-weight: 700;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(94,247,255,.10), rgba(255,77,248,.10)),
    radial-gradient(400px 80px at 10% 50%, rgba(94,247,255,.18), transparent 60%);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
  position: relative; overflow: hidden;
}
.badge-chip::after{
  content: ""; position: absolute; top: 0; left: -40%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg); opacity: 0;
}
.badge-chip:hover {
  transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.55); filter: saturate(1.06);
}
.badge-chip.is-lit::after{
  animation: shine 1.2s ease forwards;
}
@keyframes shine {
  0% { left: -40%; opacity: 0; }
  20% { opacity: .7; }
  100% { left: 120%; opacity: 0; }
}

.bg-media { display: grid; gap: 18px; }
.bg-tile {
  padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.bg-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.bg-tile img { border-radius: 12px; }

.bg-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(94,247,255,.22), transparent 70%); filter: blur(8px);
}

@media (max-width: 1020px){
  .bg-grid { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: 1fr; }
}

/* =========================
   Section 17 — Travel FAQ
   ========================= */
.tf-head { max-width: 1240px; margin: 0 auto 14px; padding: 0 4px; }
.tf-grid {
  max-width: 1240px; margin: 0 auto; display: grid;
  grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: start;
}

.faq { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.faq-item.is-open { border-color: rgba(168,255,96,.45); box-shadow: 0 0 0 1px rgba(168,255,96,.25) inset; }

.faq-toggle {
  width: 100%; text-align: left; padding: 12px 14px; background: transparent; color: var(--ink); border: 0; cursor: pointer;
  font-weight: 700; letter-spacing: .2px;
}
.faq-toggle:focus { outline: 2px solid rgba(94,247,255,.5); outline-offset: 2px; }

.faq-panel {
  max-height: 0; overflow: hidden; transition: max-height 260ms ease;
  padding: 0 14px;
}
.faq-item.is-open .faq-panel {
  max-height: 360px; /* large enough for our copy; avoids inline styles */
  padding-bottom: 12px;
}
.faq-panel p { color: var(--muted); }

.tf-media { display: grid; gap: 18px; }
.tf-tile {
  padding: 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94,247,255,.06), rgba(255,77,248,.06));
  box-shadow: var(--shadow); transition: transform 260ms ease, box-shadow 260ms ease;
}
.tf-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.56); }
.tf-tile img { border-radius: 12px; }

.tf-ambient {
  position: relative; max-width: 1240px; margin: 12px auto 0; height: 8px; border-radius: 999px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(168,255,96,.25), transparent 70%); filter: blur(8px);
}

@media (max-width: 1020px){
  .tf-grid { grid-template-columns: 1fr; }
}

/* safety cap */
.badges img, .travelfaq img { max-width: 350px; }
