/* ── hopprlive.com shared stylesheet (new-design pages) ──────────────────
   Used by index, features, partners, cities. Older pages (support, privacy,
   terms, contact, events, greek-life...) still use site.css / hoppr.css.
   Every value traces back to the app's design system (@hoppr/design-system):
   dark violet canvas, one electric purple accent, Satoshi + Clash Display. */

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('fonts/ClashDisplay-Variable.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --hop-purple: #c47aff;
  --hop-purple-deep: #7c6aff;
  --hop-purple-border: rgba(196,122,255,0.22);
  --hop-purple-hair: rgba(196,122,255,0.07);
  --hop-purple-fill: rgba(196,122,255,0.10);

  --hop-bg-deep: #06060c;
  --hop-bg: #080810;
  --hop-bg-raised: #0f0f1a;
  --hop-bg-raised-2: #16161f;
  --hop-surface: rgba(255,255,255,0.03);

  --hop-text: #ffffff;
  --hop-text-mid: #a6a6b2;
  --hop-text-dim: #7c7c8a;
  --hop-text-faint: #55555f;

  --hop-success: #4ade80;
  --hop-gold: #ffd700;
  --hop-info: #56b3ff;

  --hop-gradient-brand: linear-gradient(135deg, #c47aff, #7c6aff);

  --hop-font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --hop-font-display: 'Clash Display', 'Satoshi', sans-serif;

  --hop-glow: 0.55;

  /* z scale: nav < hud < sheet < menu < modal < toast */
  --z-nav: 100;
  --z-hud: 200;
  --z-sheet: 500;
  --z-menu: 900;
  --z-modal: 1000;
  --z-toast: 1100;
}

/* overflow-x: clip (not hidden) so the ambient glows can't widen the page
   while position: sticky (nav, map stage) keeps working */
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--hop-bg);
  color: var(--hop-text);
  font-family: var(--hop-font-sans);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--hop-purple); }
a:hover { color: #d9a6ff; }
img { max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }

.hop-page { position: relative; }

@keyframes hopglow {
  0%, 100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: .8; transform: translate(-50%,-50%) scale(1.1); }
}
@keyframes pinpulse {
  0%   { box-shadow: 0 0 0 0 rgba(196,122,255,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(196,122,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(196,122,255,0); }
}

/* ambient glows */
.hop-ambient { position: absolute; pointer-events: none; z-index: 0; filter: blur(30px); opacity: var(--hop-glow, 0.55); }
.hop-ambient--top {
  top: -120px; left: 50%; width: 900px; height: 900px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(196,122,255,0.22), transparent 62%);
}
.hop-ambient--mid {
  top: 1600px; right: -200px; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(124,106,255,0.16), transparent 65%);
}

/* ── primitives ────────────────────────────────────────────────────────── */

.hop-btn {
  font-family: var(--hop-font-sans); font-weight: 700; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center; gap: 8px; line-height: 1;
  padding: 11px 18px; font-size: 14px; text-decoration: none;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease;
}
.hop-btn--primary { background: var(--hop-purple); color: #14061f; }
.hop-btn--primary:hover { background: #d093ff; color: #14061f; }
.hop-btn--ghost { background: var(--hop-surface); color: var(--hop-text); border-color: var(--hop-purple-border); }
.hop-btn--ghost:hover { background: rgba(255,255,255,0.06); color: var(--hop-text); }
.hop-btn--lg { padding: 14px 22px; font-size: 15px; }

.hop-card {
  background: var(--hop-surface);
  border: 1px solid var(--hop-purple-hair);
  border-radius: 18px; padding: 16px;
}
.hop-card--raised { background: var(--hop-bg-raised); }
.hop-card--glow { box-shadow: 0 4px 20px rgba(196,122,255,0.15); }

.hop-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--hop-text-dim);
}
.hop-label--accent { color: var(--hop-purple); }

.hop-badge {
  font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 999px;
  display: inline-block;
  background: rgba(196,122,255,0.12); border: 1px solid rgba(196,122,255,0.40);
  color: var(--hop-purple);
}
.hop-badge--gold {
  background: rgba(255,215,0,0.12); border-color: rgba(255,215,0,0.40); color: var(--hop-gold);
}

.hop-chip {
  font-family: var(--hop-font-sans); font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: 999px; display: inline-block;
  background: var(--hop-surface); border: 1px solid var(--hop-purple-hair);
  color: var(--hop-text-mid);
}
.hop-chip--active {
  background: var(--hop-purple-fill); border-color: var(--hop-purple-border);
  color: var(--hop-purple);
}

.hop-input, .hop-textarea {
  width: 100%; box-sizing: border-box; font-family: var(--hop-font-sans);
  font-size: 15px; color: var(--hop-text);
  background: var(--hop-surface); border: 1px solid var(--hop-purple-hair);
  border-radius: 12px; padding: 11px 13px; outline: none;
}
.hop-input:focus, .hop-textarea:focus { border-color: var(--hop-purple-border); }
.hop-input::placeholder, .hop-textarea::placeholder { color: #8f8f9c; }
.hop-textarea { line-height: 1.5; resize: vertical; }
.hop-field { display: flex; flex-direction: column; gap: 7px; }

.hop-alert-success {
  font-size: 13px; line-height: 1.45; padding: 11px 14px; border-radius: 12px;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.22);
  color: var(--hop-success);
}

.hop-appbadge {
  display: inline-flex; align-items: center; text-decoration: none;
  background: var(--hop-gradient-brand); font-family: var(--hop-font-sans);
  white-space: nowrap;
}
.hop-appbadge:hover { color: inherit; filter: brightness(1.08); }
.hop-appbadge--large {
  gap: 12px; padding: 15px 26px; border-radius: 14px;
  box-shadow: 0 4px 30px rgba(196,122,255,0.45);
}
.hop-appbadge--compact {
  gap: 9px; padding: 10px 17px; border-radius: 12px;
  box-shadow: 0 2px 18px rgba(196,122,255,0.4);
}
.hop-appbadge .ab-text { display: flex; flex-direction: column; line-height: 1.1; }
.hop-appbadge .ab-kicker { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }
.hop-appbadge .ab-store { font-size: 21px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.hop-appbadge--compact .ab-text { line-height: 1.05; }
.hop-appbadge--compact .ab-kicker { font-size: 9px; }
.hop-appbadge--compact .ab-store { font-size: 15px; }

/* avatar stacks */
.hop-avatars { display: flex; }
.hop-avatars > * { border-radius: 50%; border: 2px solid var(--hop-bg); flex-shrink: 0; }
.hop-avatars > * + * { margin-left: -9px; }
.hop-av { width: 28px; height: 28px; }
.hop-av-grad-a { background: linear-gradient(135deg, #c47aff, #7c6aff); }
.hop-av-grad-b { background: linear-gradient(135deg, #7c6aff, #56b3ff); }
.hop-av-grad-c { background: linear-gradient(135deg, #7c6aff, #c47aff); }
.hop-av-grad-d { background: linear-gradient(135deg, #c47aff, #56b3ff); }
.hop-av-more {
  background: var(--hop-bg-raised-2); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--hop-purple);
}

/* live pill */
.hop-live-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  border-radius: 999px; background: rgba(196,122,255,0.12);
  border: 1px solid rgba(196,122,255,0.28);
  backdrop-filter: blur(8px);
}
.hop-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hop-success); box-shadow: 0 0 8px var(--hop-success);
}
.hop-live-text { font-size: 12px; font-weight: 700; color: var(--hop-purple); letter-spacing: 0.3px; }

.hop-grad-text {
  background: var(--hop-gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── nav ───────────────────────────────────────────────────────────────── */
.hop-nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(18px, 5vw, 56px);
  transition: background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.hop-nav.is-scrolled {
  background: rgba(8,8,16,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.07);
}
.hop-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.hop-brand-mark { width: 30px; height: 30px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(196,122,255,0.55)); }
.hop-brand-word {
  font-family: var(--hop-font-display); font-weight: 700; font-size: 26px;
  color: var(--hop-text); letter-spacing: -0.02em;
}
.hop-navlinks { display: flex; align-items: center; gap: 34px; }
.hop-navlinks a { text-decoration: none; color: var(--hop-text-mid); font-size: 15px; font-weight: 600; }
.hop-navlinks a:hover { color: var(--hop-text); }
.hop-navlinks a[aria-current="page"] { color: var(--hop-purple); }
.hop-nav-actions { display: flex; align-items: center; gap: 12px; }

/* hamburger (mobile) */
.hop-menu-btn {
  display: none; background: var(--hop-surface); border: 1px solid var(--hop-purple-border);
  border-radius: 12px; width: 42px; height: 42px; cursor: pointer;
  align-items: center; justify-content: center; flex-shrink: 0; padding: 0;
}
.hop-menu-btn span { display: block; width: 17px; height: 2px; background: var(--hop-text); border-radius: 2px; position: relative; }
.hop-menu-btn span::before, .hop-menu-btn span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px;
  background: var(--hop-text); border-radius: 2px;
}
.hop-menu-btn span::before { top: -5px; }
.hop-menu-btn span::after { top: 5px; }

/* full-screen menu */
.hop-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: rgba(6,6,12,0.92); backdrop-filter: blur(18px);
  display: none; flex-direction: column; padding: 90px clamp(24px,7vw,48px) 40px;
}
.hop-menu.is-open { display: flex; }
.hop-menu a.menu-link {
  font-family: var(--hop-font-display); font-weight: 700;
  font-size: clamp(34px, 9vw, 52px); letter-spacing: -0.02em;
  color: var(--hop-text); text-decoration: none; padding: 10px 0;
}
.hop-menu a.menu-link[aria-current="page"] { color: var(--hop-purple); }
.hop-menu .menu-foot { margin-top: auto; display: flex; flex-direction: column; gap: 18px; }
.hop-menu .menu-foot .small-links { display: flex; flex-wrap: wrap; gap: 22px; }
.hop-menu .menu-foot .small-links a { color: var(--hop-text-mid); text-decoration: none; font-size: 15px; }
.hop-menu-close {
  position: absolute; top: 18px; right: clamp(18px, 5vw, 56px);
  background: var(--hop-surface); border: 1px solid rgba(255,255,255,0.1);
  color: var(--hop-text); width: 42px; height: 42px; border-radius: 12px;
  cursor: pointer; font-size: 20px; line-height: 1;
}
body.menu-open { overflow: hidden; }

@media (max-width: 880px) {
  .hop-navlinks { display: none; }
  .hop-menu-btn { display: inline-flex; }
  .hop-nav .hop-appbadge--compact { display: none; }
}

/* ── page hero (interior pages) ────────────────────────────────────────── */
.hop-pagehero {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 56px) clamp(28px, 4vw, 48px);
}
.hop-pagehero h1 {
  font-family: var(--hop-font-display); font-weight: 700;
  font-size: clamp(40px, 6.5vw, 76px); line-height: 1; letter-spacing: -0.025em;
  margin: 0 0 18px; max-width: 16ch;
}
.hop-pagehero .lede { font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: var(--hop-text-mid); max-width: 56ch; margin: 0; }
.hop-pagehero .dim { color: var(--hop-text-dim); }

/* ── homepage: the map act ─────────────────────────────────────────────── */
.mapact { position: relative; height: 340vh; z-index: 1; }
.mapact-stage {
  position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden;
  background: radial-gradient(130% 100% at 50% 12%, #16132e, #0a0916 55%, #06060c);
}
.mapact-map {
  position: absolute; inset: -6%; /* bleed so the scroll drift never shows an edge */
  transform: scale(1.14);
  will-change: transform;
}
.mapact-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }

/* the real Mapbox map fills the stage; sits under the scrim/hero/hud */
.mapact-gl { position: absolute; inset: 0; z-index: 0; }
.mapact-gl .mapboxgl-map { position: absolute; inset: 0; font: inherit; }
.mapact-gl .mapboxgl-ctrl-bottom-left,
.mapact-gl .mapboxgl-ctrl-bottom-right { z-index: 3; }
.mapact-gl .mapboxgl-ctrl-attrib { font-size: 10px; opacity: 0.6; }
.mapact-gl .mapboxgl-ctrl-attrib.mapboxgl-compact { background: rgba(16,16,26,0.7); }
.mapact-gl .mapboxgl-ctrl-attrib a { color: var(--hop-text-mid); }
.mapact-gl .mapboxgl-ctrl-group {
  background: rgba(16,16,26,0.82); border: 1px solid var(--hop-purple-hair);
  border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.mapact-gl .mapboxgl-ctrl-group button + button { border-top: 1px solid rgba(255,255,255,0.06); }
.mapact-gl .mapboxgl-ctrl-group button { background: transparent; }
.mapact-gl .mapboxgl-ctrl-group button .mapboxgl-ctrl-icon { filter: invert(1) hue-rotate(180deg) brightness(1.1); }
.mapact-gl .mapboxgl-ctrl-bottom-right { margin-bottom: 4px; }
@media (max-width: 700px) {
  .mapact-gl .mapboxgl-ctrl-bottom-right { display: none; } /* pinch to zoom on touch */
}

/* bottom fade so the live map melts into the page background */
.mapact-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 16%; z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #080810);
}
.mapact-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 68% 58% at 50% 44%, rgba(8,8,16,0.45), rgba(8,8,16,0.85) 82%),
    linear-gradient(180deg, rgba(8,8,16,0.72) 0%, rgba(8,8,16,0.2) 30%, rgba(8,8,16,0.2) 62%, #080810 100%);
  will-change: opacity;
}
.mapact-hero {
  position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 clamp(20px, 5vw, 56px); will-change: transform, opacity;
}
.mapact-hero .hero-logo { width: clamp(64px, 9vw, 96px); margin-bottom: 20px; filter: drop-shadow(0 0 34px rgba(196,122,255,0.5)); }
.mapact-hero h1 {
  font-family: var(--hop-font-display); font-weight: 700;
  font-size: clamp(44px, 8vw, 96px); line-height: 0.97; letter-spacing: -0.03em;
  margin: 0 0 20px; max-width: 12ch;
}
.mapact-hero .sub {
  font-size: clamp(17px, 2vw, 21px); line-height: 1.5; color: #c9c9d4;
  max-width: 560px; margin: 0 0 32px;
}
.mapact-hero .ctas { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.mapact-hero .scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--hop-text-mid); font-size: 13px; font-weight: 600;
}
.mapact-hero .scroll-cue .wheel {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.25); border-radius: 12px; position: relative;
}
.mapact-hero .scroll-cue .wheel::after {
  content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px;
  margin-left: -1.5px; border-radius: 3px; background: var(--hop-purple);
  animation: cue-drop 1.6s ease-out infinite;
}
@keyframes cue-drop { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 100% { opacity: 0; } }

/* HUD: appears once the map is live */
.mapact-hud { position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: 0; will-change: opacity; }
.mapact-hud .hud-top {
  position: absolute; top: 74px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  padding: 9px 14px; border-radius: 14px;
  background: rgba(16,16,26,0.72); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
}
.mapact-hud .hud-city { font-size: 15px; font-weight: 800; }
.mapact-hud .hud-kicker { font-size: 9px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--hop-text-dim); }
.mapact-hud .hud-live {
  display: flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px;
  background: rgba(74,222,128,0.10); border: 1px solid rgba(74,222,128,0.28);
  font-size: 11px; font-weight: 700; color: var(--hop-success);
}
.mapact-hud .hud-hint {
  position: absolute; bottom: 104px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(16,16,26,0.8); backdrop-filter: blur(10px);
  border: 1px solid var(--hop-purple-border);
  font-size: 13px; font-weight: 700; color: var(--hop-text);
  white-space: nowrap;
}
.mapact-hud .hud-hint .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--hop-purple); box-shadow: 0 0 8px var(--hop-purple); }

/* the Hop button: the app's glowing bunny nav button. "Can't decide? Tap Hop"
   flies to the hottest spot and opens it. Lives in the map act, above the HUD. */
.hop-fab {
  position: absolute; z-index: 6; bottom: 24px; left: 50%;
  transform: translateX(-50%) scale(0.8);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.mapact-stage.is-live .hop-fab { opacity: 1; pointer-events: auto; transform: translateX(-50%) scale(1); }
.hop-fab .fab-orb {
  width: 66px; height: 66px; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #d9a6ff, #c47aff 45%, #7c6aff 100%);
  box-shadow: 0 0 30px rgba(196,122,255,0.75), 0 8px 24px rgba(0,0,0,0.5),
    inset 0 2px 6px rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  animation: fabpulse 2.6s ease-in-out infinite;
}
.hop-fab .fab-orb img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4)); }
.hop-fab .fab-label {
  font-size: 12px; font-weight: 800; letter-spacing: 0.3px; color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hop-fab:hover .fab-orb { box-shadow: 0 0 40px rgba(196,122,255,0.9), 0 8px 24px rgba(0,0,0,0.5), inset 0 2px 6px rgba(255,255,255,0.4); }
.hop-fab:focus-visible { outline: none; }
.hop-fab:focus-visible .fab-orb { box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 0 30px rgba(196,122,255,0.8); }
.hop-fab.is-hopping .fab-orb { animation: fabhop .7s cubic-bezier(.34,1.56,.64,1); }
@keyframes fabpulse { 0%,100% { box-shadow: 0 0 26px rgba(196,122,255,0.6), 0 8px 24px rgba(0,0,0,0.5), inset 0 2px 6px rgba(255,255,255,0.4); } 50% { box-shadow: 0 0 40px rgba(196,122,255,0.9), 0 8px 24px rgba(0,0,0,0.5), inset 0 2px 6px rgba(255,255,255,0.4); } }
@keyframes fabhop { 0% { transform: scale(1) rotate(0); } 40% { transform: scale(1.18) rotate(-12deg); } 100% { transform: scale(1) rotate(0); } }
@media (max-width: 640px) { .hop-fab { bottom: 20px; } .hop-fab .fab-orb { width: 60px; height: 60px; } }
@media (prefers-reduced-motion: reduce) { .hop-fab .fab-orb { animation: none; } .hop-fab.is-hopping .fab-orb { animation: none; } }

/* deal card (Find the best deals) — mirrors the app's venue deal tile */
.deal-card {
  border-radius: 18px; overflow: hidden; border: 1px solid rgba(196,122,255,0.16);
  background: var(--hop-bg-raised); max-width: 420px;
}
.deal-ribbon {
  background: linear-gradient(90deg, #c47aff, #7c6aff); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 7px 14px;
}
.deal-body { padding: 16px; }
.deal-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.deal-title { font-size: 19px; font-weight: 800; color: var(--hop-text); }
.deal-rating { color: var(--hop-gold); font-weight: 800; font-size: 13px; white-space: nowrap; }
.deal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.deal-tag {
  font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px;
  background: var(--hop-surface); border: 1px solid var(--hop-purple-hair); color: var(--hop-text-mid);
}
.deal-tag--going { color: var(--hop-success); border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.08); }
.deal-tag--deal { color: #ff8a3c; border-color: rgba(255,138,60,0.35); background: rgba(255,138,60,0.1); }
.deal-game {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #b9f5c8;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.25);
  padding: 9px 13px; border-radius: 12px;
}

/* Hop feature tile: the glowing button + the spot it lands on */
.hop-demo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; text-align: center; }
.hop-demo .demo-orb {
  width: 84px; height: 84px; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #d9a6ff, #c47aff 45%, #7c6aff 100%);
  box-shadow: 0 0 40px rgba(196,122,255,0.7), inset 0 2px 8px rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  animation: fabpulse 2.6s ease-in-out infinite;
}
.hop-demo .demo-orb img { width: 48px; height: 48px; object-fit: contain; }
.hop-demo .demo-result {
  width: 100%; padding: 14px 16px; border-radius: 14px;
  background: rgba(196,122,255,0.08); border: 1px solid rgba(196,122,255,0.22);
}
.hop-demo .demo-result .r-kicker { font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--hop-purple); }
.hop-demo .demo-result .r-name { font-size: 20px; font-weight: 800; color: var(--hop-text); margin: 4px 0 2px; }
.hop-demo .demo-result .r-sub { font-size: 13px; color: var(--hop-text-mid); }

/* ── venue pins ──────────────────────────────────────────────────────────
   A 1:1 port of the app's map pin (components/VenueMap.tsx createPinEl): a dark
   circle with a heat-coloured border + glow and a white martini glyph, a crowd
   count badge, a downward arrow that points at the exact spot, and a friends
   pill above. Heat is the app's relative-crowd tier (lib/pinHeat.ts):
   hot #ff3cac, warm #ff9f43, quiet #c47aff. Selected (open) pins go bigger and
   purple, like the app. Shared by the Mapbox markers (.map-marker), the SVG
   fallback and the features mini-map (.hop-pin). */
.hop-pin, .map-marker {
  border: 0; background: none; padding: 0; cursor: pointer;
  -webkit-tap-highlight-color: transparent; text-decoration: none;
  display: flex; flex-direction: column; align-items: center;
  transform-origin: bottom center;
  opacity: 0; scale: 0.35;
  transition: opacity .5s cubic-bezier(.22,1,.36,1), scale .5s cubic-bezier(.22,1,.36,1);
  --heat: #c47aff;
}
.hop-pin { position: absolute; transform: translate(-50%, -100%); z-index: 5; pointer-events: none; }
.mapact-stage.is-live .hop-pin, .hop-map-static .hop-pin { opacity: 1; scale: 1; pointer-events: auto; }
.mapact-gl.pins-live .map-marker { opacity: 1; scale: 1; }

/* heat tiers (relative crowd) — exact hexes from lib/pinHeat.ts PIN_COLORS */
.tier-hot   { --heat: #ff3cac; }  /* packed */
.tier-warm  { --heat: #ff9f43; }  /* warming up */
.tier-quiet { --heat: #c47aff; }  /* default */
.is-selected { --heat: #c47aff; } /* what you tapped */

/* friends pill above the pin */
.pin-friends {
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,16,0.92); border: 1.5px solid rgba(196,122,255,0.5);
  border-radius: 20px; padding: 3px 6px 3px 4px; margin-bottom: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 0 10px rgba(196,122,255,0.3);
  white-space: nowrap;
}
.pin-friends .pf-av {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid #080810; position: relative;
  background: linear-gradient(135deg, #c47aff, #7c6aff);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
}
.pin-friends .pf-av + .pf-av, .pin-friends .pf-extra { margin-left: -7px; }
.pin-friends .pf-extra {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid #080810; background: rgba(196,122,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; color: #c47aff;
}
.pin-friends .pf-n { font-size: 9px; font-weight: 700; color: #c47aff; margin-left: 5px; letter-spacing: 0.2px; }

/* the circle + its rings/glow */
.pin-cw { position: relative; display: flex; align-items: center; justify-content: center; }
.pin-circle {
  position: relative; border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--heat);
  background: linear-gradient(135deg, rgba(196,122,255,0.18), rgba(8,8,20,0.9));
  box-shadow: 0 0 6px color-mix(in srgb, var(--heat) 30%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: width .25s ease, height .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tier-hot .pin-circle {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(255,60,172,0.22), rgba(8,8,20,0.85));
  box-shadow: 0 0 20px color-mix(in srgb, var(--heat) 55%, transparent),
    0 0 40px color-mix(in srgb, var(--heat) 20%, transparent), inset 0 1px 0 rgba(255,255,255,0.12);
}
.tier-warm .pin-circle {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, rgba(255,159,67,0.2), rgba(8,8,20,0.88));
  box-shadow: 0 0 12px color-mix(in srgb, var(--heat) 40%, transparent), inset 0 1px 0 rgba(255,255,255,0.12);
}
.is-selected .pin-circle {
  width: 48px; height: 48px; border-width: 2.5px;
  background: linear-gradient(135deg, rgba(196,122,255,0.3), rgba(124,106,255,0.18));
  box-shadow: 0 0 28px color-mix(in srgb, var(--heat) 70%, transparent),
    0 0 56px color-mix(in srgb, var(--heat) 26%, transparent), inset 0 1px 0 rgba(255,255,255,0.12);
}
.pin-glass { width: 46%; height: 46%; display: block; }
.pin-count {
  position: absolute; top: -8px; right: -8px;
  min-width: 20px; height: 20px; padding: 0 5px; box-sizing: border-box;
  border-radius: 999px; background: var(--heat); color: #fff;
  border: 2px solid #080810; font-family: var(--hop-font-sans);
  font-size: 9px; font-weight: 800; letter-spacing: -0.3px; line-height: 16px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 0 8px color-mix(in srgb, var(--heat) 53%, transparent);
  white-space: nowrap;
}
/* the arrow that points at the spot */
.pin-tail {
  width: 0; height: 0; margin-top: 1px;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 8px solid var(--heat);
  filter: drop-shadow(0 2px 4px color-mix(in srgb, var(--heat) 53%, transparent));
}
/* pulse rings on hot / selected; a soft glow on warm */
.tier-hot .pin-cw::before, .tier-hot .pin-cw::after,
.is-selected .pin-cw::before, .is-selected .pin-cw::after {
  content: ""; position: absolute; top: 50%; left: 50%; border-radius: 50%;
  border: 1.5px solid var(--heat); pointer-events: none;
  transform: translate(-50%, -50%) scale(0.55); opacity: 0;
  animation: pulseRing 1.8s ease-out infinite;
  width: 108px; height: 108px;
}
.tier-hot .pin-cw::after, .is-selected .pin-cw::after { width: 80px; height: 80px; animation-delay: .6s; }
.tier-warm .pin-cw::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, color-mix(in srgb, var(--heat) 13%, transparent) 0%, transparent 70%);
}
@keyframes pulseRing {
  0% { transform: translate(-50%,-50%) scale(0.55); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.05); opacity: 0; }
}
.hop-pin:hover .pin-circle, .map-marker:hover .pin-circle { transform: scale(1.08); }
.hop-pin:focus-visible, .map-marker:focus-visible { outline: none; }
.hop-pin:focus-visible .pin-circle, .map-marker:focus-visible .pin-circle {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 0 20px var(--heat);
}
/* stagger the pop-in */
.hop-pin:nth-child(odd), .mapact-gl .map-marker:nth-child(odd) { transition-delay: .04s; }
.hop-pin:nth-child(3n), .mapact-gl .map-marker:nth-child(3n) { transition-delay: .1s; }
.hop-pin:nth-child(4n), .mapact-gl .map-marker:nth-child(4n) { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  .hop-pin, .map-marker { opacity: 1; scale: 1; transition: none; }
  .tier-hot .pin-cw::before, .tier-hot .pin-cw::after,
  .is-selected .pin-cw::before, .is-selected .pin-cw::after { animation: none; opacity: 0; }
}

/* venue bottom sheet (the app's signature surface) */
.venue-sheet {
  position: absolute; z-index: var(--z-sheet);
  left: 50%; bottom: 0; transform: translate(-50%, 112%);
  width: min(440px, calc(100% - 24px));
  background: rgba(15,15,26,0.92); backdrop-filter: blur(20px);
  border: 1px solid var(--hop-purple-border); border-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -14px 50px rgba(0,0,0,0.6), 0 0 40px rgba(196,122,255,0.12);
  padding: 10px 20px 22px; box-sizing: border-box;
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.venue-sheet.is-open { transform: translate(-50%, 0); }
.venue-sheet.is-dragging { transition: none; }
.venue-sheet .sheet-handle {
  width: 44px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.22);
  margin: 4px auto 14px; cursor: grab; touch-action: none;
}
.venue-sheet .sheet-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.venue-sheet h3 { font-family: var(--hop-font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; margin: 0; }
.venue-sheet .sheet-meta { font-size: 13px; color: var(--hop-text-mid); margin-top: 3px; }
.venue-sheet .sheet-x {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--hop-text-mid); width: 30px; height: 30px; border-radius: 10px;
  cursor: pointer; font-size: 16px; line-height: 1; flex-shrink: 0;
}
.venue-sheet .sheet-live {
  display: flex; align-items: center; gap: 8px; margin: 14px 0;
  font-size: 14px; font-weight: 700;
}
.venue-sheet .sheet-live .n { color: var(--hop-success); }
.venue-sheet .sheet-friends {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px;
  border-radius: 12px; background: rgba(196,122,255,0.08);
  border: 1px solid rgba(196,122,255,0.2); margin-bottom: 10px;
  font-size: 13px; font-weight: 600; color: var(--hop-text);
}
.venue-sheet .sheet-fluffle {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 13px; border-radius: 12px;
  background: rgba(124,106,255,0.10); border: 1px solid rgba(124,106,255,0.3);
  margin-bottom: 14px; font-size: 13px; font-weight: 700;
}
.venue-sheet .sheet-fluffle .t { color: #b9aeff; }
.venue-sheet .sheet-cta { display: flex; gap: 10px; }
.venue-sheet .sheet-cta .hop-btn { flex: 1; }

/* live activity toasts (chip idiom: leading dot, pill shape) */
.hop-toasts {
  position: absolute; top: 74px; left: clamp(14px, 3vw, 28px); z-index: var(--z-toast);
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
  max-width: min(330px, 78vw);
}
.hop-toast {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px; border-radius: 999px;
  background: rgba(16,16,26,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 13px; font-weight: 600; color: var(--hop-text);
  box-shadow: 0 4px 20px rgba(196,122,255,0.15);
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s cubic-bezier(.22,1,.36,1);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%; box-sizing: border-box;
}
.hop-toast.is-in { opacity: 1; transform: translateY(0); }
.hop-toast .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
/* on narrow screens the centered HUD pill and the toasts share the top band;
   drop the toasts below it so they never overlap */
@media (max-width: 640px) {
  .hop-toasts { top: 120px; left: 50%; transform: translateX(-50%); align-items: center; max-width: calc(100% - 28px); }
}

/* reduced motion / no-JS: unpin the act, stack hero over a static map */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mapact { height: auto; }
  .mapact-stage { position: relative; height: auto; min-height: 620px; }
  .mapact-map { position: relative; inset: 0; transform: none; height: 72vh; min-height: 500px; }
  /* real map fills the (now static) stage under reduced motion */
  .mapact-gl { position: absolute; inset: 0; }
  .mapact-hero { position: relative; inset: auto; padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 56px) 48px; }
  .mapact-scrim { display: none; }
  .mapact-hud { opacity: 1; }
  .mapact-hud .hud-hint { display: none; }
  .mapact-hero .scroll-cue { display: none; }
  .hop-pin { opacity: 1; scale: 1; pointer-events: auto; transition: none; }
  .hop-toast { transition: none; }
  .venue-sheet { transition: none; }
  .mapact-hero .scroll-cue .wheel::after, .hop-pin .pin-count, .hop-ambient, .fluffle-glow { animation: none !important; }
}

/* ── shared sections ───────────────────────────────────────────────────── */
.hop-hook {
  position: relative; z-index: 2; padding: clamp(48px, 7vw, 90px) clamp(20px, 5vw, 56px);
  text-align: center; background: var(--hop-bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hop-hook p {
  font-family: var(--hop-font-display); font-weight: 600;
  font-size: clamp(28px, 4.4vw, 54px); line-height: 1.08; letter-spacing: -0.02em;
  max-width: 960px; margin: 0 auto;
}
.hop-hook .dim { color: var(--hop-text-dim); }
.hop-hook .accent { color: var(--hop-purple); }

.hop-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 56px); scroll-margin-top: 90px; }
.hop-section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.hop-section-head h2 {
  font-family: var(--hop-font-display); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -0.02em;
  margin: 0; color: var(--hop-text);
}
.hop-section-head .sub { font-size: 17px; line-height: 1.55; color: var(--hop-text-mid); max-width: 56ch; margin: 14px 0 0; }
.hop-section-head--center { text-align: center; }
.hop-section-head--center .sub { margin-left: auto; margin-right: auto; }

/* steps */
.hop-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.hop-step-num {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(196,122,255,0.12);
  border: 1px solid var(--hop-purple-border); display: flex; align-items: center;
  justify-content: center; font-family: var(--hop-font-display); font-weight: 700;
  font-size: 20px; color: var(--hop-purple); margin-bottom: 18px;
}
.hop-steps h3 { font-size: 22px; font-weight: 800; margin: 0 0 8px; color: var(--hop-text); }
.hop-steps p { font-size: 15px; line-height: 1.55; color: var(--hop-text-mid); margin: 0; }

/* feature rows */
.hop-feat { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 5vw, 72px); margin-bottom: clamp(48px, 7vw, 96px); }
.hop-feat:last-child { margin-bottom: 0; }
.hop-feat--rev { flex-wrap: wrap-reverse; }
.hop-feat > div { flex: 1 1 320px; min-width: 0; }
.hop-feat h3 {
  font-family: var(--hop-font-display); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -0.02em;
  margin: 16px 0 12px; color: var(--hop-text);
}
.hop-feat .feat-copy { font-size: 17px; line-height: 1.6; color: var(--hop-text-mid); margin: 0; max-width: 52ch; }
.hop-feat .feat-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: 15px; font-weight: 700; text-decoration: none; }

.hop-feat-tile {
  border-radius: 22px; border: 1px solid rgba(196,122,255,0.16);
  background: var(--hop-bg-raised); padding: 22px; min-height: 240px;
  box-sizing: border-box;
}

/* fluffle showcase */
.fluffle-stage { position: relative; }
.fluffle-glow {
  position: absolute; top: 50%; left: 50%; width: 480px; height: 480px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(124,106,255,0.30), transparent 60%);
  filter: blur(24px); pointer-events: none; animation: hopglow 5s ease-in-out infinite;
}
.fluffle-card { position: relative; display: flex; flex-direction: column; gap: 16px; }
.fluffle-head { display: flex; align-items: center; justify-content: space-between; }
.hop-tile-kicker { font-size: 13px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--hop-purple); }
.hop-going { font-size: 12px; font-weight: 700; color: var(--hop-success); }
.hop-av--tile { width: 40px; height: 40px; border: 2px solid var(--hop-bg-raised); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #fff; border-radius: 50%; flex-shrink: 0; }
.hop-av--tile + .hop-av--tile { margin-left: -12px; }
.fluffle-vote { display: flex; flex-direction: column; gap: 8px; }
.fluffle-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 14px; border-radius: 12px; width: 100%; box-sizing: border-box;
  background: var(--hop-surface); border: 1px solid var(--hop-purple-hair);
  color: var(--hop-text); font-family: var(--hop-font-sans); font-size: 14px; font-weight: 700;
  cursor: pointer; text-align: left;
  transition: background .15s ease, border-color .15s ease;
}
.fluffle-opt .votes { font-size: 12px; font-weight: 700; color: var(--hop-text-dim); }
.fluffle-opt.is-lead { background: rgba(196,122,255,0.10); border-color: var(--hop-purple-border); }
.fluffle-opt.is-lead .votes { color: var(--hop-purple); }
.fluffle-push {
  display: flex; align-items: center; gap: 11px; padding: 12px 14px; border-radius: 14px;
  background: rgba(16,16,26,0.9); border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.fluffle-push img { width: 30px; height: 30px; object-fit: contain; }
.fluffle-push .pt { font-size: 13px; font-weight: 800; }
.fluffle-push .pb { font-size: 12px; color: var(--hop-text-mid); margin-top: 1px; }

/* passport stamps */
.stamp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: clamp(12px, 2vw, 22px); }
.stamp-cell { display: flex; flex-direction: column; }
.stamp {
  aspect-ratio: 1; border-radius: 18px; box-sizing: border-box; position: relative;
  background: var(--hop-surface); border: 1px solid var(--hop-purple-hair);
  transition: transform .25s cubic-bezier(.22,1,.36,1), border-color .25s ease, box-shadow .25s ease;
}
/* absolutely positioned so a portrait PNG can't stretch the square
   (percentage heights don't resolve against aspect-ratio boxes) */
.stamp img { position: absolute; inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); object-fit: contain; }
.stamp-cell:hover .stamp { transform: translateY(-4px) rotate(-1.5deg); border-color: var(--hop-purple-border); box-shadow: 0 10px 30px rgba(196,122,255,0.18); }
.stamp--locked { opacity: 0.35; border-style: dashed; }
.stamp--gold { border-color: rgba(255,215,0,0.35); box-shadow: 0 0 22px rgba(255,215,0,0.14); }
.stamp-cell:hover .stamp--gold { border-color: rgba(255,215,0,0.6); box-shadow: 0 10px 34px rgba(255,215,0,0.22); }
.stamp-name { text-align: center; font-size: 12px; font-weight: 700; color: var(--hop-text-mid); margin-top: 8px; }

/* friends tile */
.hop-friend { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 14px; background: rgba(255,255,255,0.03); }
.hop-friend + .hop-friend { margin-top: 10px; }
.hop-friend-av { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.hop-friend-av--initials { background: var(--hop-bg-raised-2); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--hop-text-dim); }
.hop-friend-meta { flex: 1; }
.hop-friend-name { font-size: 15px; font-weight: 700; color: var(--hop-text); }
.hop-friend-sub { font-size: 12px; color: var(--hop-text-dim); }
.hop-follow {
  padding: 7px 14px; border-radius: 999px; background: rgba(196,122,255,0.12);
  border: 1px solid rgba(196,122,255,0.28); font-size: 13px; font-weight: 800; color: var(--hop-purple);
}
.hop-follow--invite { background: transparent; border-color: rgba(255,255,255,0.14); color: var(--hop-text-mid); }

/* game tile */
.hop-game { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.hop-game-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hop-game-bar {
  display: flex; align-items: center; justify-content: space-between; padding: 14px;
  border-radius: 14px; background: rgba(196,122,255,0.08); border: 1px solid rgba(196,122,255,0.2);
}
.hop-game-bar .name { font-size: 15px; font-weight: 800; color: var(--hop-text); }
.hop-game-bar .sub { font-size: 12px; color: var(--hop-text-mid); margin-top: 2px; }
.hop-game-bar .ball { font-size: 22px; }

/* feature rail (homepage teasers) */
.hop-rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.hop-rail a.rail-card {
  text-decoration: none; color: var(--hop-text); display: flex; flex-direction: column;
  border-radius: 18px; padding: 20px; background: var(--hop-surface);
  border: 1px solid var(--hop-purple-hair);
  transition: border-color .2s ease, transform .25s cubic-bezier(.22,1,.36,1);
}
.hop-rail a.rail-card:hover { border-color: var(--hop-purple-border); transform: translateY(-3px); color: var(--hop-text); }
.hop-rail .rail-art { height: 96px; display: flex; align-items: center; margin-bottom: 16px; }
.hop-rail .rail-art img { height: 100%; width: auto; object-fit: contain; }
.hop-rail h3 { font-size: 19px; font-weight: 800; margin: 0 0 6px; }
.hop-rail p { font-size: 14px; line-height: 1.5; color: var(--hop-text-mid); margin: 0; }
.hop-rail .rail-go { margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--hop-purple); }

/* trust strip */
.hop-trust { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 56px); }
.hop-trust-card {
  border-radius: 22px; border: 1px solid rgba(196,122,255,0.16);
  background: rgba(255,255,255,0.03); padding: clamp(26px, 4vw, 44px); text-align: center;
}
.hop-trust-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.hop-trust-card p {
  font-size: clamp(17px, 2.2vw, 22px); line-height: 1.5; font-weight: 600;
  color: var(--hop-text); margin: 0 auto; max-width: 720px;
}

/* final CTA */
.hop-final { position: relative; z-index: 1; overflow: hidden; text-align: center; padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 56px); }
.hop-final-glow {
  position: absolute; top: 50%; left: 50%; width: 1000px; height: 700px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(196,122,255,0.28), transparent 62%);
  filter: blur(30px); pointer-events: none; opacity: var(--hop-glow, 0.55);
}
.hop-final .mascot { position: relative; width: clamp(84px, 12vw, 128px); margin-bottom: 8px; filter: drop-shadow(0 0 34px rgba(196,122,255,0.55)); }
.hop-final h2 {
  position: relative; font-family: var(--hop-font-display); font-weight: 700;
  font-size: clamp(38px, 6.4vw, 82px); line-height: 1; letter-spacing: -0.03em;
  margin: 0 0 34px; color: var(--hop-text);
}
.hop-final .cta-row { position: relative; display: flex; justify-content: center; }

/* footer */
.hop-footer { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,0.07); background: var(--hop-bg-deep); }
.hop-footer-inner { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 56px); }
.hop-footer-cols { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; }
.hop-footer-brand { flex: 1 1 280px; max-width: 340px; }
.hop-footer-brand .tagline { font-size: 16px; color: var(--hop-text-mid); margin: 0 0 22px; }
.hop-footer-links { display: flex; flex-wrap: wrap; gap: 48px; }
.hop-footer-col-h {
  font-size: 12px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--hop-text-dim); margin-bottom: 16px;
}
.hop-footer-col { display: flex; flex-direction: column; gap: 12px; }
.hop-footer-col a { text-decoration: none; color: var(--hop-text-mid); font-size: 15px; }
.hop-footer-col a:hover { color: var(--hop-text); }
.hop-footer-legal {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--hop-text-faint);
}

/* lead modal */
.hop-modal-overlay {
  position: fixed; inset: 0; z-index: var(--z-modal); background: rgba(4,4,10,0.72);
  backdrop-filter: blur(6px); display: none; align-items: center;
  justify-content: center; padding: 20px;
}
.hop-modal-overlay.is-open { display: flex; }
.hop-modal { width: 100%; max-width: 460px; max-height: calc(100vh - 40px); overflow-y: auto; }
.hop-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.hop-modal-head h3 {
  font-family: var(--hop-font-display); font-weight: 700; font-size: 26px;
  letter-spacing: -0.02em; margin: 0; color: var(--hop-text);
}
.hop-modal-head .sub { font-size: 14px; color: var(--hop-text-mid); margin: 6px 0 0; }
.hop-modal-x {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--hop-text-mid); width: 32px; height: 32px; border-radius: 10px;
  cursor: pointer; font-size: 18px; line-height: 1; flex-shrink: 0;
}
.hop-modal form { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.hop-modal .hop-btn[type="submit"] { width: 100%; }
.hop-modal-done { margin-top: 18px; display: none; flex-direction: column; gap: 16px; }
#hop-modal.is-submitted form { display: none; }
#hop-modal.is-submitted .hop-modal-done { display: flex; }
.hop-modal-done .hop-btn { align-self: flex-start; }

/* cities */
.hop-city-form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 480px; }
.hop-city-form .grow { flex: 1 1 240px; min-width: 200px; }
.hop-city-done { max-width: 420px; }
.city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.city-list .hop-chip { font-size: 14px; padding: 10px 18px; }

/* partner rows */
.partner-row {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px);
  padding: clamp(32px, 5vw, 52px) 0; border-top: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.partner-row:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.06); }
.partner-row .pr-head { flex: 1 1 300px; }
.partner-row .pr-head h3 {
  font-family: var(--hop-font-display); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.02em; margin: 6px 0 0;
}
.partner-row .pr-body { flex: 1.4 1 380px; }
.partner-row .pr-body p { font-size: 16px; line-height: 1.6; color: var(--hop-text-mid); margin: 0 0 18px; max-width: 56ch; }
.partner-row ul { margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.partner-row li { display: flex; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--hop-text); }
.partner-row li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--hop-purple); box-shadow: 0 0 8px rgba(196,122,255,0.7); margin-top: 7px; flex-shrink: 0; }

/* ── long-form legal / policy pages (terms, privacy) ───────────────────── */
.legal {
  position: relative; z-index: 1; max-width: 760px; margin: 0 auto;
  padding: clamp(96px, 13vw, 150px) clamp(20px, 5vw, 40px) clamp(64px, 9vw, 110px);
}
.legal-head { margin-bottom: 40px; }
.legal-kicker {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--hop-purple); margin-bottom: 16px;
}
.legal-head h1 {
  font-family: var(--hop-font-display); font-weight: 700;
  font-size: clamp(38px, 6.5vw, 62px); line-height: 1.02; letter-spacing: -0.03em;
  margin: 0 0 18px; text-wrap: balance;
}
.legal-lede { font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: var(--hop-text-mid); max-width: 60ch; margin: 0 0 20px; }
.legal-meta { font-size: 13px; color: var(--hop-text-dim); line-height: 1.7; margin: 0; }
.legal-toc {
  background: var(--hop-surface); border: 1px solid var(--hop-purple-hair);
  border-radius: 18px; padding: 22px 26px; margin: 0 0 48px;
}
.legal-toc h2 { font-family: var(--hop-font-sans); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--hop-text-dim); margin: 0 0 14px; }
.legal-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; columns: 2; column-gap: 34px; }
.legal-toc li { counter-increment: toc; margin: 0 0 11px; break-inside: avoid; font-size: 14px; line-height: 1.4; }
.legal-toc li::before { content: counter(toc) ". "; color: var(--hop-text-dim); font-variant-numeric: tabular-nums; }
.legal-toc a { color: var(--hop-text-mid); text-decoration: none; }
.legal-toc a:hover { color: var(--hop-purple); }
.legal-body section { scroll-margin-top: 88px; margin-bottom: 36px; }
.legal-body h2 {
  font-family: var(--hop-font-display); font-weight: 700; font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em; margin: 0 0 14px; color: var(--hop-text); text-wrap: balance;
}
.legal-body h3 { font-size: 16px; font-weight: 800; margin: 24px 0 10px; color: var(--hop-text); }
.legal-body p { font-size: 16px; line-height: 1.7; color: #c9c9d4; margin: 0 0 14px; }
.legal-body ul { margin: 0 0 16px; padding: 0; list-style: none; }
.legal-body li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 16px; line-height: 1.6; color: #c9c9d4; }
.legal-body li::before { content: ""; position: absolute; left: 3px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--hop-purple); box-shadow: 0 0 7px rgba(196,122,255,0.6); }
.legal-body strong { color: var(--hop-text); font-weight: 700; }
.legal-body a { color: var(--hop-purple); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: #d9a6ff; }
.legal-body address { font-style: normal; font-size: 16px; line-height: 1.8; color: #c9c9d4; margin: 6px 0 14px; }
.legal-body .callout {
  background: rgba(196,122,255,0.08); border: 1px solid var(--hop-purple-border);
  border-radius: 14px; padding: 16px 18px; margin: 18px 0; line-height: 1.6;
}
.legal-body .meta { font-size: 13px; color: var(--hop-text-dim); margin: 20px 0 0; }
@media (max-width: 560px) { .legal-toc ol { columns: 1; } }
