/* Miami Beach Fitness Festival · Exhibitor site
   Palette pulled from the 2026 Miami exhibitor deck (navy, cyan, pink, sun yellow),
   lifted brighter. Type pairs the deck's Special Gothic Expanded with the SoCal site's
   Big Shoulders + Manrope. */

:root {
  --navy: #0d1d41;
  --navy-2: #13306a;
  --ocean: #1b4fa0;
  --blue: #2c92d5;
  --cyan: #37c9ef;
  --mint: #86eae9;
  --pink: #e01288;
  --pink-soft: #ff4fae;
  --sun: #fff686;
  --sand: #fbf6ee;
  --paper: #ffffff;
  --mist: #eef5fb;
  --ink: #0d1d41;
  --ink-dim: #4a5878;
  --line: rgba(13, 29, 65, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --grad: linear-gradient(90deg, var(--pink) 0%, #9a6fd0 52%, var(--cyan) 100%);
  --grad-night: linear-gradient(160deg, #13306a 0%, #0d1d41 55%, #2a1650 100%);

  --font-display: "Special Gothic Expanded One", "Arial Black", sans-serif;
  --font-cond: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, "SF Mono", monospace;
  --font-script: "Mr Dafoe", "Brush Script MT", cursive;

  --wrap: min(1280px, 100% - 2 * max(16px, 4vw));
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.02; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.wrap { width: var(--wrap); margin-inline: auto; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.on-dark .eyebrow, .page-hero .eyebrow, .final .eyebrow { color: var(--cyan); }
.h-xl { font-family: var(--font-display); font-size: clamp(40px, 7.4vw, 108px); text-transform: uppercase; letter-spacing: -0.01em; }
.h-lg { font-family: var(--font-display); font-size: clamp(32px, 4.6vw, 64px); text-transform: uppercase; }
.h-md { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 32px); text-transform: uppercase; }
.script { font-family: var(--font-script); color: var(--sun); text-transform: none; font-weight: 400; letter-spacing: 0; line-height: 1; display: inline-block; transform: rotate(-4deg); padding-inline: 0.1em; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-dim); max-width: 60ch; }
.on-dark .lede { color: rgba(255, 255, 255, 0.78); }
.section-head { display: grid; gap: 12px; margin-bottom: clamp(22px, 2.8vw, 36px); }
.section-head.center { text-align: center; justify-items: center; }

.on-dark { background: var(--grad-night); color: #fff; }
section { position: relative; padding-block: clamp(44px, 5.5vw, 76px); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 0;
  background: var(--bg);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(224, 18, 136, 0.6); }
.btn:hover::after { opacity: 1; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost { --bg: transparent; box-shadow: inset 0 0 0 2px currentColor; color: inherit; }
.btn-ghost::after { display: none; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); box-shadow: inset 0 0 0 2px currentColor; }
.btn-light { --bg: #fff; color: var(--navy); }
.btn-light:hover { color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s, transform 0.35s var(--ease);
}
.nav-inner { width: var(--wrap); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.nav.scrolled { background: rgba(13, 29, 65, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line-light); }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.nav-brand img { height: 48px; width: auto; }
.nav-brand span { font-family: var(--font-cond); font-weight: 800; font-size: 18px; line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #fff; text-decoration: none; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.nav-links a:hover { opacity: 1; color: var(--cyan); }
.nav .btn { min-height: 42px; padding: 0 18px; font-size: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px auto; transition: transform 0.3s; }
@media (max-width: 960px) {
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--navy); padding: 8px max(16px, 4vw) 24px; transform: translateY(-120%); transition: transform 0.4s var(--ease); }
  .nav-links li a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-light); }
  .nav-links li:last-child { padding-top: 16px; }
  .nav-links .btn { width: 100%; min-height: 50px; }
  .nav.open .nav-links { transform: none; }
  .nav.open { background: var(--navy); }
  .nav-toggle { display: block; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-brand span { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: max(560px, calc(100svh - 62px));
  padding: 0;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s var(--ease) forwards; transform-origin: 60% 60%; }
@keyframes kenburns { from { transform: scale(1.18); } to { transform: scale(1.02); } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 29, 65, 0.55) 0%, rgba(13, 29, 65, 0) 30%),
    linear-gradient(0deg, rgba(13, 29, 65, 0.95) 0%, rgba(13, 29, 65, 0.35) 55%, rgba(224, 18, 136, 0.1) 100%);
}
.hero-content { position: relative; z-index: 2; width: var(--wrap); margin-inline: auto; padding-block: 96px clamp(28px, 3.5vw, 48px); display: grid; gap: 22px; }
.hero-tag { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink-soft); box-shadow: 0 0 0 0 rgba(255, 79, 174, 0.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(255, 79, 174, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 79, 174, 0); } }
.hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(44px, 9vw, 150px); line-height: 0.9; letter-spacing: -0.015em; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero h1 .line > span { display: inline-block; transform: translateY(105%); animation: rise 1s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes rise { to { transform: none; } }
.hero-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; }
.hero-sub .script { font-size: clamp(30px, 3.4vw, 48px); line-height: 1; }
.hero-row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px 36px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; }
.hero-meta strong { display: block; font-family: var(--font-cond); font-size: clamp(26px, 2.6vw, 36px); letter-spacing: 0.02em; font-weight: 800; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s var(--ease) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
.d1 { animation-delay: 0.35s; } .d2 { animation-delay: 0.5s; } .d3 { animation-delay: 0.65s; } .d4 { animation-delay: 0.8s; }
.hero-badge { position: absolute; z-index: 2; top: 92px; right: max(16px, 4vw); width: clamp(110px, 11vw, 170px); filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45)); animation: float 6s ease-in-out infinite, fadeUp 1s var(--ease) 0.6s both; }
@keyframes float { 50% { translate: 0 -10px; } }
@media (max-width: 700px) { .hero-badge { display: none; } }

.countdown { display: flex; gap: 8px; }
.countdown div { min-width: 70px; padding: 10px 8px; border-radius: 12px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); text-align: center; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.countdown b { display: block; font-family: var(--font-cond); font-size: 32px; line-height: 1; font-weight: 800; font-variant-numeric: tabular-nums; }
.countdown small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }

/* ---------- Gymreapers Wodapalooza name ---------- */
/* One line, all the way across. Size it with --gw-fs. */
.gw { --gw-fs: 48px; display: inline-flex; align-items: baseline; gap: 0.35em; font-family: var(--font-cond); font-weight: 900; font-size: var(--gw-fs); line-height: 0.95; letter-spacing: 0.01em; text-transform: uppercase; color: #fff; white-space: nowrap; }
.gw .gw-mark { position: relative; top: -0.155em; display: inline-block; height: 0.5em; width: auto; max-width: none; flex: none; }
.hero-sub .gw { --gw-fs: clamp(30px, 3.8vw, 56px); }
.tile.flagship { container-type: inline-size; }
.tile.flagship h3.gw { --gw-fs: min(64px, calc(100cqi / 12.5)); font-size: var(--gw-fs); font-family: var(--font-cond); font-weight: 900; letter-spacing: 0.01em; margin: 8px 0 4px; }
.final .gw { --gw-fs: clamp(28px, 3.2vw, 46px); }
.eyebrow-on-lockup { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }
@media (max-width: 520px) { .hero-sub .gw { --gw-fs: 7.6vw; } .final .gw { --gw-fs: 7.2vw; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--pink); color: #fff; overflow: hidden; padding: 16px 0; position: relative; z-index: 3; }
.marquee.alt { background: var(--sun); color: var(--navy); transform: rotate(-1.2deg); margin-block: -14px; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { font-family: var(--font-cond); font-weight: 800; font-size: clamp(22px, 2.4vw, 32px); text-transform: uppercase; letter-spacing: 0.03em; padding-inline: 22px; white-space: nowrap; display: inline-flex; align-items: center; gap: 44px; }
.marquee-track span::after { content: "✦"; font-size: 0.7em; opacity: 0.8; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { background: var(--paper); padding-block: clamp(24px, 3vw, 40px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; container-type: inline-size; }
.stat { padding: 4px clamp(12px, 2vw, 28px); border-left: 1px solid var(--line); min-width: 0; text-align: center; }
.stat:first-child { border-left: 0; }
.stat-num { font-family: var(--font-cond); font-weight: 900; font-size: min(92px, 6.4cqi); line-height: 0.9; letter-spacing: 0; white-space: nowrap; font-variant-numeric: tabular-nums; }
.stat-num .grad-text { display: inline-block; }
.stat-label { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); margin-top: 10px; }
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
  .stat-num { font-size: 12.5cqi; }
  .stat:nth-child(3) { border-left: 0; }
}

/* ---------- Umbrella explainer ---------- */
.explainer { background: var(--sand); overflow: hidden; padding-top: clamp(36px, 4vw, 56px); }
.explainer-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.explainer-copy { display: grid; gap: 26px; }
.pillars { display: grid; gap: 0; margin-top: 8px; border-top: 1px solid var(--line); }
.pillar { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.pillar-num { font-family: var(--font-mono); color: var(--pink); font-size: 14px; padding-top: 4px; }
.pillar h3 { font-family: var(--font-cond); font-size: 26px; text-transform: uppercase; font-weight: 800; letter-spacing: 0.02em; }
.pillar p { color: var(--ink-dim); font-size: 16px; margin-top: 4px; }
.collage { position: relative; aspect-ratio: 4 / 4.6; }
.collage figure { position: absolute; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(13, 29, 65, 0.55); }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage .c1 { inset: 0 18% 26% 0; }
.collage .c2 { inset: 46% 0 0 34%; border: 6px solid var(--sand); }
.collage .c3 { width: 34%; aspect-ratio: 1; right: 2%; top: 6%; border-radius: 50%; border: 6px solid var(--sand); }
.collage .sticker { position: absolute; left: -2%; bottom: 8%; z-index: 2; background: var(--navy); color: #fff; padding: 16px 20px; border-radius: 14px; transform: rotate(-4deg); box-shadow: 0 16px 40px -16px rgba(13, 29, 65, 0.7); }
.collage .sticker .script { font-size: 34px; display: block; line-height: 1; }
.collage .sticker small { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; }
@media (max-width: 900px) { .explainer-grid { grid-template-columns: 1fr; } .collage { max-width: 560px; width: 100%; justify-self: center; } }

/* ---------- Season timeline ---------- */
.season { background: var(--paper); padding-block: clamp(36px, 4.5vw, 60px); }
.season-track { list-style: none; margin: 0; padding: 22px 0 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: auto; column-gap: 14px; position: relative; }
.season-track::before { content: ""; position: absolute; top: 6px; left: 0; right: 0; height: 2px; background: var(--grad); opacity: 0.35; }
.stop { position: relative; display: grid; grid-row: span 5; grid-template-rows: subgrid; row-gap: 6px; padding: 16px 18px; border-radius: var(--radius); background: var(--mist); }
.stop::before { content: ""; position: absolute; top: -22px; left: 18px; width: 14px; height: 14px; border-radius: 50%; background: var(--paper); border: 3px solid var(--blue); }
.stop-logo { height: 104px; display: flex; align-items: center; margin-bottom: 6px; }
.stop-logo img { height: 100%; width: auto; max-width: 80%; object-fit: contain; }
.stop-logo img.wordmark { height: 46px; }
.stop-when { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); }
.stop h3 { font-family: var(--font-cond); font-weight: 900; font-size: clamp(24px, 2.2vw, 30px); text-transform: uppercase; line-height: 1; }
.stop-where { font-size: 14px; font-weight: 700; color: var(--ink); }
.stop p { font-size: 15px; color: var(--ink-dim); }
.stop.is-here { background: var(--navy); color: #fff; box-shadow: 0 20px 40px -24px rgba(13, 29, 65, 0.7); }
.stop.is-here::before { border-color: var(--pink); background: var(--pink); box-shadow: 0 0 0 6px rgba(224, 18, 136, 0.18); }
.stop.is-here .stop-logo { height: 104px; display: flex; align-items: center; margin-bottom: 6px; }
.stop-logo img { height: 100%; width: auto; max-width: 80%; object-fit: contain; }
.stop-logo img.wordmark { height: 46px; }
.stop-when { color: var(--cyan); }
.stop.is-here .stop-where { color: #fff; }
.stop.is-here p { color: rgba(255, 255, 255, 0.78); }
.stop-flag { position: absolute; top: -11px; right: 14px; background: var(--grad); color: #fff; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
@media (max-width: 900px) {
  .season-track { grid-template-columns: 1fr; row-gap: 14px; padding: 0 0 0 26px; }
  .season-track::before { top: 0; bottom: 0; left: 6px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--pink), var(--cyan)); }
  .stop { grid-row: auto; grid-template-rows: none; }
  .stop::before { top: 20px; left: -26px; }
}

/* ---------- Events bento ---------- */
.events { background: var(--navy); color: #fff; }
.events::before { content: ""; position: absolute; inset: 0; background: url("../img/palm-neon.jpg") center / cover; opacity: 0.22; mix-blend-mode: screen; pointer-events: none; }
.events .wrap { position: relative; }
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 240px; gap: 14px; }
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-2);
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  isolation: isolate;
  text-decoration: none;
  color: #fff;
}
.tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.9s var(--ease); }
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(13, 29, 65, 0.92) 0%, rgba(13, 29, 65, 0.25) 55%, rgba(13, 29, 65, 0.05) 100%); transition: opacity 0.4s; }
.tile:hover > img { transform: scale(1.07); }
.tile-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }
.tile h3 { font-family: var(--font-cond); font-weight: 800; font-size: clamp(26px, 2.4vw, 34px); text-transform: uppercase; letter-spacing: 0.01em; margin-top: 6px; }
.tile p { font-size: 15px; color: rgba(255, 255, 255, 0.78); margin-top: 6px; max-height: 0; opacity: 0; transition: max-height 0.5s var(--ease), opacity 0.4s; }
.tile:hover p, .tile:focus-within p { max-height: 120px; opacity: 1; }
.tile.flagship { grid-column: span 8; grid-row: span 2; padding: clamp(20px, 2.2vw, 28px); }
.tile.flagship h3 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 56px); }
.tile.flagship p { max-height: none; opacity: 1; font-size: 17px; max-width: 52ch; }
.tile.flagship .tile-kicker { color: var(--sun); }
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 6; }
.tile.type { background: var(--grad); }
.tile.type::before { background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.25), transparent 50%); }
.tile.type.blue { background: linear-gradient(135deg, var(--blue), var(--navy-2)); }
.tile.type.sun { background: linear-gradient(135deg, var(--sun), #ffc36b); color: var(--navy); }
.tile.type.sun .tile-kicker { color: var(--pink); }
.tile.type.sun p { color: rgba(13, 29, 65, 0.8); }
.tile.type .big-glyph { position: absolute; top: 14px; right: 18px; font-family: var(--font-cond); font-weight: 900; font-size: 88px; line-height: 1; opacity: 0.2; }
.tile.type p { max-height: none; opacity: 1; }
.badge-army { display: inline-flex; align-self: flex-start; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 8px; border-radius: 6px; background: rgba(255, 255, 255, 0.16); margin-bottom: 8px; }
.note { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; margin-top: 22px; }
@media (hover: none) { .tile p { max-height: none; opacity: 1; } }
@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px; }
  .tile, .tile.wide { grid-column: span 3; }
  .tile.flagship { grid-column: span 6; }
}
@media (max-width: 1000px) and (min-width: 621px) {
  .bento .tile { order: var(--o, 0); }
  .bento .tile.tall { grid-row: span 1; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .tile, .tile.wide, .tile.flagship { grid-column: span 1; }
  .tile.tall { grid-row: span 1; }
  .tile.flagship { grid-row: span 2; }
}

.tile.type .big-glyph.small { font-size: 52px; text-transform: uppercase; }
.tbc { margin-top: 14px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 28px; padding: clamp(18px, 2.2vw, 28px); border-radius: var(--radius); border: 2px dashed rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.04); }
.tbc > div { display: grid; gap: 8px; max-width: 62ch; }
.tbc-flag { justify-self: start; font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); background: var(--sun); padding: 5px 10px; border-radius: 6px; }
.tbc h3 { font-family: var(--font-cond); font-weight: 900; font-size: clamp(28px, 3vw, 40px); text-transform: uppercase; }
.tbc p { color: rgba(255, 255, 255, 0.78); font-size: 16px; }

/* ---------- Weekend strip ---------- */
.weekend { background: var(--paper); padding-bottom: clamp(32px, 4vw, 52px); }
.days { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.alldays { grid-column: 2 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; padding: 14px 18px; border-radius: var(--radius); background: var(--grad); color: #fff; }
.alldays-label { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(255, 255, 255, 0.2); padding: 5px 10px; border-radius: 6px; }
.alldays ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; font-weight: 700; }
.alldays li::before { content: "✓ "; }
.day { border-radius: var(--radius); padding: 16px 18px; background: var(--mist); display: grid; grid-template-rows: auto auto 1fr; gap: 12px; position: relative; overflow: hidden; }
.day.load { background: var(--sand); border: 2px dashed rgba(13, 29, 65, 0.2); }
.day.peak { background: var(--navy); color: #fff; }
.day.peak .day-date small { color: var(--cyan); }
.day-date { font-family: var(--font-cond); font-weight: 900; font-size: 44px; line-height: 0.9; text-transform: uppercase; }
.day-date small { display: block; font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; color: var(--pink); margin-bottom: 6px; }
.day-title { font-weight: 800; font-size: 16px; }
.day ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; font-size: 15px; color: var(--ink-dim); align-content: start; }
.day.peak ul { color: rgba(255, 255, 255, 0.78); }
.day li::before { content: "→ "; color: var(--pink); }
.day .flag { position: absolute; top: 14px; right: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; background: var(--pink); color: #fff; padding: 4px 8px; border-radius: 6px; }
.day.free { box-shadow: inset 0 0 0 2px var(--cyan); }
.day.free .flag { background: var(--cyan); color: var(--navy); }
.day.free li:first-child { color: var(--ink); font-weight: 700; }
@media (max-width: 1000px) { .days { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); } .alldays { grid-column: 1 / -1; } }

/* ---------- Audience ---------- */
.audience { background: var(--sand); padding-block: clamp(32px, 4vw, 52px) clamp(36px, 4.5vw, 60px); }
.aud-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card { background: var(--paper); border-radius: var(--radius); padding: clamp(16px, 1.8vw, 22px); border: 1px solid var(--line); }
.card h3 { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); font-weight: 500; margin-bottom: 12px; }
.aud-gender { grid-column: span 4; display: grid; align-content: start; }
.aud-age { grid-column: span 8; }
.aud-geo { grid-column: span 6; }
.aud-travel { grid-column: span 6; background: var(--navy); color: #fff; border: 0; position: relative; overflow: hidden; display: grid; align-content: end; min-height: 240px; }
.aud-travel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.aud-travel > *:not(img) { position: relative; }
.aud-travel h3 { color: rgba(255, 255, 255, 0.8); }
.big-pct { font-family: var(--font-cond); font-weight: 900; font-size: clamp(72px, 9vw, 132px); line-height: 0.85; }
.donut { width: 190px; aspect-ratio: 1; border-radius: 50%; margin: 6px auto 18px; position: relative; background: conic-gradient(var(--pink) calc(var(--p, 0) * 1%), var(--cyan) 0); transition: --p 1.6s var(--ease); }
.donut::after { content: ""; position: absolute; inset: 26px; border-radius: 50%; background: var(--paper); }
.legend { display: flex; justify-content: center; gap: 24px; }
.legend div { text-align: center; }
.legend b { font-family: var(--font-cond); font-size: 40px; font-weight: 900; line-height: 1; display: block; }
.legend span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.legend .w b { color: var(--pink); } .legend .m b { color: var(--blue); }
@property --p { syntax: "<number>"; inherits: false; initial-value: 0; }
.bars { display: grid; gap: 14px; }
.bar { display: grid; grid-template-columns: 84px 1fr 48px; gap: 14px; align-items: center; font-family: var(--font-mono); font-size: 14px; }
.bar-track { height: 16px; border-radius: 99px; background: var(--mist); overflow: hidden; }
.bar-fill { height: 100%; width: 0; border-radius: 99px; background: var(--grad); transition: width 1.4s var(--ease); }
.bar b { text-align: right; font-weight: 600; }
.geo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.geo-cols h4 { font-family: var(--font-cond); font-size: 22px; text-transform: uppercase; font-weight: 800; margin-bottom: 10px; }
.geo-list { list-style: none; margin: 0; padding: 0; }
.geo-list li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.geo-list li b { font-family: var(--font-mono); font-weight: 600; }
.source { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); margin-top: 18px; }
@media (max-width: 900px) {
  .aud-gender, .aud-age, .aud-geo, .aud-travel { grid-column: span 12; }
}
@media (max-width: 480px) { .geo-cols { grid-template-columns: 1fr; } }

/* ---------- Why exhibit ---------- */
.why { background: var(--paper); padding-block: clamp(32px, 4vw, 52px) clamp(36px, 4.5vw, 60px); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-card { border-radius: var(--radius); overflow: hidden; background: var(--mist); display: grid; grid-template-rows: 170px 1fr; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(13, 29, 65, 0.5); }
.why-card figure { margin: 0; overflow: hidden; }
.why-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.why-card:hover img { transform: scale(1.06); }
.why-card .body { padding: 14px 16px 16px; display: grid; gap: 6px; align-content: start; }
.why-card .k { font-family: var(--font-cond); font-weight: 900; font-size: 44px; line-height: 0.9; color: var(--pink); text-transform: uppercase; }
.why-card h3 { font-family: var(--font-cond); font-weight: 800; font-size: 24px; text-transform: uppercase; }
.why-card p { color: var(--ink-dim); font-size: 15px; }
@media (max-width: 1000px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.proof { margin-top: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proof-item { border-radius: var(--radius); padding: 16px 18px; background: var(--navy); color: #fff; display: grid; grid-template-rows: auto 1fr auto; gap: 10px; }
.proof-item b { font-family: var(--font-cond); font-weight: 900; font-size: clamp(44px, 4.4vw, 60px); line-height: 0.9; }
.proof-item p { font-size: 15px; color: rgba(255, 255, 255, 0.82); }
.proof-item small { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); margin-top: auto; }
.proof-item small a { color: inherit; }
.proof.light .proof-item { background: var(--mist); color: var(--ink); }
.proof.light .proof-item b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.proof.light .proof-item p { color: var(--ink-dim); }
.proof.light .proof-item small { color: var(--blue); }
@media (max-width: 1000px) { .proof { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .proof { grid-template-columns: 1fr; } }

/* ---------- Digital ---------- */
.digital { background: var(--grad-night); color: #fff; overflow: hidden; padding-block: clamp(36px, 4.5vw, 60px); }
.digital-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.dig-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dig-stat { border: 1px solid var(--line-light); border-radius: var(--radius); padding: 16px 18px; background: rgba(255, 255, 255, 0.04); }
.dig-stat b { font-family: var(--font-cond); font-weight: 900; font-size: clamp(44px, 4.8vw, 68px); line-height: 0.9; display: block; }
.dig-stat span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); }
.dig-stat:nth-child(1) b { color: var(--cyan); } .dig-stat:nth-child(2) b { color: var(--pink-soft); } .dig-stat:nth-child(3) b { color: var(--sun); } .dig-stat:nth-child(4) b { color: var(--mint); }
.includes { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 12px; }
.includes li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; }
.includes li::before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; background: var(--pink); display: grid; place-items: center; font-size: 13px; font-weight: 800; }
@media (max-width: 900px) { .digital-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .dig-stats { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing { background: var(--sand); }
.windows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); padding: 5px; margin-bottom: 18px; }
.window { border: 0; background: transparent; border-radius: 999px; padding: 8px 10px; text-align: center; cursor: pointer; color: var(--ink); transition: background 0.3s, color 0.3s; }
.window b { display: block; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.window span { font-size: 13px; color: var(--ink-dim); }
.window[aria-pressed="true"] { background: var(--navy); color: #fff; }
.window[aria-pressed="true"] span { color: rgba(255, 255, 255, 0.7); }
.window .now { display: none; margin-left: 6px; font-size: 10px; padding: 2px 6px; border-radius: 4px; background: var(--pink); color: #fff; vertical-align: 2px; }
.window.is-current .now { display: inline-block; }
@media (max-width: 640px) {
  .windows { grid-template-columns: 1fr; border-radius: var(--radius); }
  .window { border-radius: 12px; }
}
.no-pay { display: flex; align-items: center; gap: 14px; max-width: 820px; margin: -8px auto 22px; padding: 14px 18px; border-radius: var(--radius-sm); background: #e6f8ee; border: 1.5px solid #9ee0bb; color: var(--navy); }
.no-pay p { font-size: 16px; }
.no-pay-icon { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #1f9d5b; color: #fff; font-weight: 800; }
.booths { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; column-gap: 16px; row-gap: 0; }
.booths > .booth { margin-bottom: 16px; }
.booth { background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line); padding: clamp(18px, 2vw, 24px); display: grid; grid-row: span 5; grid-template-rows: subgrid; row-gap: 12px; position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.booth:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(13, 29, 65, 0.45); }
.booth.featured { background: var(--navy); color: #fff; border-color: transparent; }
.booth.featured .booth-list li { border-color: var(--line-light); }
.booth.featured .booth-list span { color: rgba(255, 255, 255, 0.7); }
.booth .pop { position: absolute; top: -12px; right: 22px; background: var(--grad); color: #fff; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.booth-size { font-family: var(--font-cond); font-weight: 900; font-size: 64px; line-height: 0.85; }
.booth-size small { font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; margin-left: 6px; opacity: 0.7; }
.booth-price { font-family: var(--font-display); font-size: clamp(34px, 3.4vw, 46px); line-height: 1; }
.booth-price .odo { display: inline-block; transition: opacity 0.25s, transform 0.25s; }
.booth-price .odo.swap { opacity: 0; transform: translateY(8px); }
.booth-price small { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; opacity: 0.65; }
.booth-list { list-style: none; margin: 0; padding: 0; align-self: start; }
.booth-list li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.booth-list span { color: var(--ink-dim); }
.booth-list b { font-weight: 700; }
.booth .btn { width: 100%; }
.booth.featured .btn { --bg: #fff; color: var(--navy); }
.booth.featured .btn:hover { color: #fff; }
.booth-foot { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; margin-top: 16px; align-items: start; }
.booth-foot .card h3 { margin-bottom: 12px; }
.addons { display: flex; flex-wrap: wrap; gap: 8px; }
.custom-ask { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px; }
.custom-ask b { font-weight: 800; }
.custom-ask p { color: var(--ink-dim); font-size: 15px; margin-top: 2px; max-width: 48ch; }
.addons span { padding: 7px 12px; border-radius: 999px; background: var(--mist); font-size: 14px; }
.seed { background: var(--pink); color: #fff; border: 0; }
.seed h3 { color: rgba(255, 255, 255, 0.85); }
.seed { text-align: center; display: grid; gap: 8px; }
.seed h3 { margin-bottom: 0; }
.seed p { font-size: 16px; }
.seed-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 6px; }
.seed-stats div { display: grid; gap: 2px; padding: 10px 6px; border-radius: 12px; background: rgba(255, 255, 255, 0.14); }
.seed-stats span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.seed b { font-family: var(--font-cond); font-size: clamp(30px, 3vw, 40px); font-weight: 900; line-height: 1; }
@media (max-width: 960px) { .booths, .booth-foot { grid-template-columns: 1fr; } }

/* ---------- Map ---------- */
.map { background: var(--paper); }
.map-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--mist); cursor: zoom-in; }
.map-frame img { width: 100%; height: auto; transition: transform 0.8s var(--ease); }
.map-frame:hover img { transform: scale(1.02); }
.stamp { position: absolute; top: 18px; left: 18px; background: var(--pink); color: #fff; font-family: var(--font-display); font-size: clamp(14px, 1.6vw, 20px); text-transform: uppercase; padding: 10px 16px; border-radius: 10px; transform: rotate(-3deg); box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5); }
.stamp-year { left: auto; right: 18px; background: var(--navy); transform: rotate(2deg); }
.map-callout { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-bottom: 14px; padding: 12px 16px; border-radius: var(--radius-sm); background: var(--sun); color: var(--navy); }
.map-callout-flag { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; background: var(--navy); color: var(--sun); padding: 5px 10px; border-radius: 6px; white-space: nowrap; }
.map-callout p { font-size: 16px; flex: 1 1 320px; }
.map-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 18px; align-items: center; }
.map-meta strong { font-weight: 800; }
.map-keys { display: flex; flex-wrap: wrap; gap: 8px; }
.map-keys span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 10px; border-radius: 8px; background: var(--mist); }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(13, 29, 65, 0.94); display: none; overflow: auto; cursor: zoom-out; }
.lightbox.open { display: block; }
.lightbox img { width: 2400px; max-width: none; margin: 40px; }
.lightbox button { position: fixed; top: 16px; right: 16px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: #fff; color: var(--navy); font-size: 22px; cursor: pointer; }

/* ---------- Steps ---------- */
.steps { background: var(--navy); color: #fff; overflow: hidden; }
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.steps-list::before { content: ""; position: absolute; top: 30px; left: 30px; right: 30px; height: 2px; background: var(--line-light); }
.steps-list::after { content: ""; position: absolute; top: 30px; left: 30px; height: 2px; width: 0; background: var(--grad); transition: width 1.8s var(--ease); }
.steps-list.in::after { width: calc(100% - 60px); }
.step { position: relative; display: grid; gap: 12px; align-content: start; }
.step-n { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); border: 2px solid var(--cyan); font-family: var(--font-cond); font-size: 24px; font-weight: 900; position: relative; z-index: 1; }
.step h3 { font-family: var(--font-cond); font-weight: 800; font-size: 26px; text-transform: uppercase; }
.step p { color: rgba(255, 255, 255, 0.75); font-size: 15px; }
.deadline { margin-top: clamp(24px, 3vw, 36px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 16px clamp(16px, 2vw, 24px); border-radius: var(--radius); background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-light); }
.deadline b { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px); text-transform: uppercase; }
.deadline p { color: rgba(255, 255, 255, 0.75); }
@media (max-width: 1000px) {
  .steps-list { grid-template-columns: 1fr; gap: 26px; }
  .steps-list::before, .steps-list::after { top: 30px; bottom: 30px; left: 29px; right: auto; width: 2px; height: auto; }
  .steps-list::after { height: 0; transition: height 1.8s var(--ease); }
  .steps-list.in::after { width: 2px; height: calc(100% - 60px); }
  .step { grid-template-columns: 60px 1fr; column-gap: 18px; }
  .step-n { grid-row: span 2; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--sand); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; font-weight: 800; font-size: 18px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--font-mono); font-size: 24px; line-height: 1; color: var(--pink); transition: transform 0.3s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .ans { padding: 0 0 16px; color: var(--ink-dim); display: grid; gap: 10px; max-width: 62ch; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- Partner band + CTA ---------- */
.partner-band { background: var(--sand); padding-block: 0 clamp(36px, 4.5vw, 60px); }
.partner-card { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: clamp(22px, 3vw, 36px); border-radius: calc(var(--radius) + 8px); background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.partner-card::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; border: 50px solid rgba(255, 255, 255, 0.12); }
.partner-card > * { position: relative; z-index: 1; }
.partner-card .h-lg { font-size: clamp(28px, 3.6vw, 48px); }
.partner-card p { margin-top: 12px; color: rgba(255, 255, 255, 0.9); max-width: 56ch; }
@media (max-width: 760px) { .partner-card { grid-template-columns: 1fr; } }

.final { color: #fff; overflow: hidden; min-height: 60vh; display: grid; align-items: center; text-align: center; background: var(--navy); }
.final > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.final::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at center, rgba(13, 29, 65, 0.35), rgba(13, 29, 65, 0.9) 75%); }
.final .wrap { position: relative; z-index: 2; display: grid; justify-items: center; gap: 24px; }
.final .script { font-size: clamp(40px, 5vw, 72px); line-height: 1; }

/* ---------- Footer ---------- */
.footer { background: #081330; color: rgba(255, 255, 255, 0.75); padding-block: 40px 28px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer img { height: 84px; width: auto; margin-bottom: 14px; }
.footer h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 12px; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--cyan); }
.legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line-light); font-size: 12px; line-height: 1.6; color: rgba(255, 255, 255, 0.5); display: grid; gap: 8px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll reveals ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal-scale.in { opacity: 1; transform: none; }
[data-parallax] { will-change: transform; }

/* ---------- Forms (apply + partner pages) ---------- */
.page-hero { background: var(--grad-night); color: #fff; padding-block: 112px 48px; position: relative; overflow: hidden; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero .wrap { position: relative; display: grid; gap: 18px; }
.page-hero .h-xl { font-size: clamp(38px, 6vw, 84px); }
.form-shell { background: var(--sand); padding-block: clamp(28px, 4vw, 52px); }
.form-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
@media (max-width: 980px) { .form-layout { grid-template-columns: 1fr; } }
.form-card { background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line); padding: clamp(18px, 2.4vw, 30px); }
.progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; }
.progress div { display: grid; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); }
.progress div::before { content: ""; height: 5px; border-radius: 99px; background: var(--mist); transition: background 0.4s; }
.progress div.done::before, .progress div.active::before { background: var(--grad); }
.progress div.active { color: var(--ink); font-weight: 600; }
@media (max-width: 520px) { .progress div { font-size: 0; gap: 0; } }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.form-step { display: none; }
.form-step.active { display: grid; gap: 16px; animation: fadeUp 0.5s var(--ease); }
.form-step legend { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); text-transform: uppercase; margin-bottom: 4px; }
.form-step .hint { color: var(--ink-dim); margin-top: -12px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label, .field .label { font-weight: 700; font-size: 14px; }
.field label .opt { font-weight: 500; color: var(--ink-dim); }
.field input:not([type="checkbox"]):not([type="radio"]), .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:not([type="checkbox"]):not([type="radio"]):focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(44, 146, 213, 0.18); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--pink); }
.field .err { color: var(--pink); font-size: 13px; display: none; }
.req { color: var(--pink); margin-left: 2px; }
.form-error { background: #ffe8f3; border: 1.5px solid var(--pink); color: #a1005f; border-radius: 12px; padding: 12px 14px; font-weight: 600; }
.sign { display: grid; gap: 12px; padding: 16px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--mist); }
.sign .field input { background: #fff; }
.sign .check { background: #fff; }
.known { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: 14px; background: var(--mist); }
.known b { display: block; font-size: 18px; }
.known span { color: var(--ink-dim); font-size: 15px; }
.known-label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 2px; }
.known .btn { min-height: 38px; padding: 0 16px; }
.field.solo { max-width: 320px; }
.link-error { background: var(--sun); color: var(--navy); border-radius: 10px; padding: 10px 14px; margin-bottom: 16px; font-size: 15px; }
.field-note { font-size: 13px; color: var(--ink-dim); }
.field.invalid .req { color: var(--pink); margin-left: 2px; }
.field-note { display: none; }
.field.invalid .err { display: block; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choice-grid.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 720px) { .choice-grid, .choice-grid.two { grid-template-columns: 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice .face { display: grid; gap: 4px; height: 100%; padding: 12px 14px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--paper); transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.choice .face b { font-family: var(--font-cond); font-size: 30px; font-weight: 900; line-height: 1; }
.choice .face span { font-size: 14px; color: var(--ink-dim); }
.choice .face .price { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.choice input:checked + .face { border-color: var(--pink); background: #fff3f9; box-shadow: 0 0 0 3px rgba(224, 18, 136, 0.15); }
.choice input:focus-visible + .face { outline: 3px solid var(--cyan); outline-offset: 2px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 620px) { .checks { grid-template-columns: 1fr; } }
.check { display: flex; gap: 10px; align-items: flex-start; padding: 9px 12px; border-radius: 12px; border: 1.5px solid var(--line); cursor: pointer; font-size: 15px; }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--pink); flex: none; }
.check:has(input:checked) { border-color: var(--pink); background: #fff3f9; }
.check.invalid, [data-required-group].invalid .face { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(224, 18, 136, 0.15); }
.quick-form { display: grid; gap: 16px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pill span { display: inline-block; padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line); font-weight: 700; font-size: 15px; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.pill input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.pill input:focus-visible + span { outline: 3px solid var(--cyan); outline-offset: 2px; }
.hint-sm { font-size: 14px; color: var(--ink-dim); align-self: center; }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; }
.btn-plain { --bg: var(--mist); color: var(--ink); }
.btn-plain:hover { color: #fff; }
.summary { position: sticky; top: 96px; display: grid; gap: 16px; }
.summary .card { padding: 18px; }
.summary .card.dark { background: var(--navy); color: #fff; border: 0; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-light); font-size: 15px; }
.sum-row span { color: rgba(255, 255, 255, 0.7); }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; }
.sum-total b { font-family: var(--font-display); font-size: 30px; }
.deposit-pill { margin-top: 14px; padding: 14px; border-radius: 12px; background: rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.deposit-pill b { font-family: var(--font-cond); font-size: 30px; font-weight: 900; color: var(--sun); }
.review { display: grid; gap: 4px; border-radius: 14px; background: var(--mist); padding: 18px; font-size: 15px; }
.review div { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; border-bottom: 1px solid var(--line); }
.review div:last-child { border-bottom: 0; }
.review span { color: var(--ink-dim); }
.review b { text-align: right; overflow-wrap: anywhere; }
.success { display: none; text-align: center; padding: 20px 0; }
.success.show { display: grid; gap: 16px; justify-items: center; animation: fadeUp 0.6s var(--ease); }
.success .tick { width: 84px; height: 84px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-size: 40px; }
.preview-note { font-family: var(--font-mono); font-size: 12px; background: var(--sun); color: var(--navy); padding: 8px 12px; border-radius: 8px; }
.pay-box { width: 100%; max-width: 460px; text-align: left; border-radius: var(--radius); border: 1px solid var(--line); padding: 20px; display: grid; gap: 12px; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-scale, .fade-up { opacity: 1; transform: none; }
  .hero h1 .line > span { transform: none; }
  .marquee-track { animation: none; }
}
