/* ============================================================
   FLUX Charging Stations — Landing page styles
   Brand: electric blue #0fa8d2 · deep navy #191831
   Type: Space Grotesk (display) + Manrope (body)
   Rhythm: dark nightlife  ⇄  clean corporate-tech
   ============================================================ */

:root {
  /* brand */
  --accent: #0fa8d2;            /* tweakable */
  --accent-2: #2b6fe0;          /* gradient partner */
  --accent-bright: #38ccf2;
  --navy: #191831;
  --ink: #110f25;
  --ink-2: #0a0917;
  --ice: #e9f7fc;
  --ice-dim: #9fb6c9;

  /* light surfaces */
  --paper: #eef4f8;
  --paper-2: #ffffff;
  --line-light: #dde7ee;
  --text: #14182b;
  --muted: #5c6678;

  /* derived */
  --grad: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --glow: 0 0 60px -8px var(--accent);

  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 11px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-d: "Space Grotesk", system-ui, sans-serif;
  --font-b: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  background: var(--ink);
  color: var(--ice);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
section { position: relative; }

/* ---------- typographic scale ---------- */
.eyebrow {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
h1, h2, h3 { font-family: var(--font-d); font-weight: 700; line-height: 1.02; letter-spacing: -.02em; }
h2.sec-title { font-size: clamp(32px, 4.4vw, 58px); text-wrap: balance; }
.lede { font-size: clamp(16px, 1.5vw, 19px); color: var(--ice-dim); max-width: 56ch; text-wrap: pretty; }
.sec--light .lede { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-d); font-weight: 600; font-size: 15px;
  padding: 14px 24px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px -10px var(--accent); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px var(--accent); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--ice); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -14px var(--navy); }
.btn--light-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-light); }
.btn--light-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,12,30,.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255,255,255,.07);
  padding-block: 12px;
}
.nav__logo { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ice);
  opacity: .8; transition: opacity .2s; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { padding: 11px 18px; font-size: 14px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 11px; background: rgba(255,255,255,.08); }
.nav__burger span { display: block; width: 19px; height: 2px; background: var(--ice); margin: 4px auto; transition: .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(10,9,23,.97); backdrop-filter: blur(14px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 40px;
  transform: translateY(-100%); transition: transform .45s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-d); font-weight: 600; font-size: 30px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .btn { margin-top: 18px; justify-content: center; }

/* =========================================================
   HERO (3 switchable variants via [data-hero])
   ========================================================= */
.hero { display: none; position: relative; overflow: hidden; }
body[data-hero="a"] .hero--a,
body[data-hero="b"] .hero--b,
body[data-hero="c"] .hero--c { display: block; }

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 620px at 50% -10%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 60%),
    radial-gradient(800px 500px at 85% 110%, color-mix(in srgb, var(--accent-2) 20%, transparent), transparent 60%),
    var(--ink);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(1000px 700px at 50% 30%, #000 30%, transparent 80%);
}
.hero-noise { position:absolute; inset:0; z-index:0; opacity:.5; mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.4px); background-size: 5px 5px; }

/* glowing ray accent */
.hero-ray {
  position: absolute; z-index: 1; pointer-events: none;
  filter: drop-shadow(0 0 40px color-mix(in srgb, var(--accent) 70%, transparent));
  animation: floaty 7s var(--ease) infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-16px) } }
@keyframes pulse-glow { 0%,100%{ opacity:.55 } 50%{ opacity:1 } }

/* ---- Variant A: Spotlight (centered) ---- */
.hero--a { min-height: 100svh; display: none; align-items: center; text-align: center; }
body[data-hero="a"] .hero--a { display: flex; }
.hero--a .hero-ray { top: 14vh; left: 50%; transform: translateX(-50%); width: 120px; opacity: .9; animation: floaty 7s var(--ease) infinite, pulse-glow 4s ease-in-out infinite; }
.hero--a .wrap { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 60px; }
.hero--a h1 { font-size: clamp(46px, 8.2vw, 116px); margin: 22px auto 0; max-width: 14ch; }
.hero--a h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero--a .lede { margin: 26px auto 0; text-align: center; font-size: clamp(17px,1.6vw,21px); }
.hero--a .hero-cta { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero--a .hero-foot { margin-top: 54px; display: flex; gap: 38px; justify-content: center; flex-wrap: wrap; }

/* ---- Variant B: Split (text + station card) ---- */
.hero--b { min-height: 100svh; }
.hero--b .wrap { position: relative; z-index: 2; min-height: 100svh; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; padding-top: 110px; padding-bottom: 60px; }
.hero--b h1 { font-size: clamp(44px, 5.6vw, 86px); margin: 22px 0 0; }
.hero--b h1 .accent { color: var(--accent); }
.hero--b .lede { margin-top: 24px; }
.hero--b .hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero--b .hero-foot { margin-top: 46px; display: flex; gap: 34px; flex-wrap: wrap; }
.hero--b .hero-ray { top: 8%; right: 6%; width: 90px; opacity: .8; }
.hero-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7), inset 0 0 0 1px rgba(255,255,255,.03);
}

/* ---- Variant C: Full-bleed statement ---- */
.hero--c { min-height: 100svh; }
.hero--c .hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero--c .hero-photo .ph { width: 100%; height: 100%; }
.hero--c .hero-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,9,23,.55) 0%, rgba(10,9,23,.35) 35%, rgba(10,9,23,.92) 100%); }
.hero--c .wrap { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 120px; padding-bottom: 64px; }
.hero--c h1 { font-size: clamp(52px, 9.5vw, 150px); max-width: 16ch; margin-top: 18px; }
.hero--c h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero--c .lede { margin-top: 22px; }
.hero--c .hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero--c .hero-ray { top: 16%; right: 10%; width: 80px; opacity: .55; }

.hero-stat { text-align: left; }
.hero-stat b { display: block; font-family: var(--font-d); font-size: 30px; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat span { font-size: 13.5px; color: var(--ice-dim); letter-spacing: .02em; }
.hero--a .hero-stat { text-align: center; }

/* scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--ice-dim); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); animation: cue 1.8s infinite; }
@keyframes cue { 0%{ transform: scaleY(0); transform-origin: top } 50%{ transform: scaleY(1); transform-origin: top } 51%{ transform-origin: bottom } 100%{ transform: scaleY(0); transform-origin: bottom } }

/* =========================================================
   PLACEHOLDER (for user photos)
   ========================================================= */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 11px),
    color-mix(in srgb, var(--navy) 88%, #000);
  display: flex; align-items: center; justify-content: center;
}
.ph--light { background:
    repeating-linear-gradient(135deg, rgba(20,24,43,.05) 0 2px, transparent 2px 11px),
    #e3edf3; }
.ph__tag {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11.5px; letter-spacing: .04em;
  color: var(--ice-dim); background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.14);
  padding: 7px 12px; border-radius: 8px; text-align: center; max-width: 80%;
}
.ph--light .ph__tag { color: #5c6678; background: rgba(255,255,255,.7); border-color: #cdd9e2; }

/* =========================================================
   MARQUEE trust strip
   ========================================================= */
.marquee {
  border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08);
  background: var(--ink-2); padding: 22px 0; overflow: hidden; position: relative; z-index: 5;
}
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marq 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: 14px; font-family: var(--font-d); font-weight: 600; font-size: 18px; color: rgba(233,247,252,.55); white-space: nowrap; }
.marquee__item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
@keyframes marq { to { transform: translateX(-50%); } }

/* =========================================================
   Generic section padding + theme surfaces
   ========================================================= */
.sec { padding: clamp(72px, 9vw, 130px) 0; }
.sec--dark { background: var(--ink); }
.sec--ink { background: var(--ink-2); }
.sec--light { background: var(--paper); color: var(--text); }
.sec--light .eyebrow { color: var(--accent); }
.sec-head { max-width: 720px; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head .lede { margin-top: 20px; }

/* =========================================================
   HOW IT WORKS  (dark)
   ========================================================= */
.steps { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; padding: 28px 24px 30px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.step::before { counter-increment: step; content: "0" counter(step);
  font-family: var(--font-d); font-weight: 700; font-size: 13px; letter-spacing: .1em; color: var(--accent); }
.step:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 50%, transparent); box-shadow: 0 24px 50px -28px var(--accent); }
.step__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin: 16px 0 18px;
  background: color-mix(in srgb, var(--accent) 16%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 36%, transparent); }
.step__icon svg { width: 26px; height: 26px; stroke: var(--accent-bright); }
.step h3 { font-size: 20px; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--ice-dim); }
.step__conn { position: absolute; top: 46px; right: -10px; z-index: 2; color: color-mix(in srgb, var(--accent) 60%, transparent); }
.steps .step:last-child .step__conn { display: none; }

/* =========================================================
   WHY / value cards  (light)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-list { display: grid; gap: 14px; margin-top: 34px; }
.feature {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: var(--radius-sm);
  background: var(--paper-2); border: 1px solid var(--line-light); transition: transform .25s var(--ease), box-shadow .25s;
}
.feature:hover { transform: translateX(6px); box-shadow: -8px 12px 30px -20px rgba(20,24,43,.4); }
.feature__ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 12%, #fff); }
.feature__ic svg { width: 22px; height: 22px; stroke: var(--accent); }
.feature h4 { font-family: var(--font-d); font-size: 16.5px; font-weight: 600; margin-bottom: 3px; }
.feature p { font-size: 14px; color: var(--muted); }
.media-card { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 5/6; box-shadow: 0 40px 80px -40px rgba(20,24,43,.5); border: 1px solid var(--line-light); }
.media-badge { position: absolute; left: 18px; bottom: 18px; z-index: 3; background: rgba(13,12,30,.7); backdrop-filter: blur(8px); color:#fff;
  border:1px solid rgba(255,255,255,.18); border-radius: 12px; padding: 12px 16px; display:flex; gap:12px; align-items:center; }
.media-badge b { font-family: var(--font-d); font-size: 22px; display:block; line-height:1; }
.media-badge span { font-size: 12px; color: var(--ice-dim); }

/* =========================================================
   FOR VENUES  (light, B2B)
   ========================================================= */
.venue-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: stretch; margin-top: 56px; }
.venue-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vb {
  padding: 26px 22px; border-radius: var(--radius); background: var(--paper-2); border: 1px solid var(--line-light);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.vb:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line-light)); box-shadow: 0 24px 46px -30px rgba(15,168,210,.55); }
.vb__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; background: var(--grad); }
.vb__ic svg { width: 23px; height: 23px; stroke: #fff; }
.vb h4 { font-family: var(--font-d); font-size: 18px; font-weight: 600; margin-bottom: 7px; }
.vb p { font-size: 14px; color: var(--muted); }

.venue-cta-card {
  border-radius: var(--radius); padding: 40px 36px; color: #fff; position: relative; overflow: hidden;
  background:
    radial-gradient(420px 240px at 80% 0%, color-mix(in srgb, var(--accent) 55%, transparent), transparent 70%),
    var(--navy);
  display: flex; flex-direction: column; justify-content: space-between; gap: 30px;
}
.venue-cta-card .hero-ray { position: absolute; top: -10px; right: -6px; width: 120px; opacity: .25; filter:none; }
.venue-cta-card h3 { font-size: clamp(26px, 2.4vw, 36px); position: relative; z-index: 2; }
.venue-cta-card p { color: var(--ice-dim); font-size: 15px; position: relative; z-index: 2; }
.venue-points { list-style: none; display: grid; gap: 12px; position: relative; z-index: 2; }
.venue-points li { display: flex; gap: 12px; align-items: center; font-size: 15px; }
.venue-points li svg { width: 19px; height: 19px; flex: 0 0 auto; stroke: var(--accent-bright); }
.venue-cta-card .btn { position: relative; z-index: 2; align-self: flex-start; }

/* =========================================================
   STATS band (blue full-bleed)
   ========================================================= */
.stats { background: var(--grad); color: #fff; padding: clamp(56px,7vw,84px) 0; position: relative; overflow: hidden; }
.stats::after { content:""; position:absolute; inset:0; opacity:.5; mix-blend-mode: soft-light;
  background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1.4px); background-size: 6px 6px; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 2; }
.stat { text-align: center; padding: 8px; }
.stat b { font-family: var(--font-d); font-weight: 700; font-size: clamp(40px, 5vw, 66px); display: block; line-height: 1; letter-spacing: -.02em; }
.stat span { font-size: 14.5px; opacity: .9; margin-top: 10px; display: block; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.18); }

/* =========================================================
   FIND A STATION (dark map)
   ========================================================= */
.find-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; margin-top: 52px; align-items: stretch; }
.map-panel {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 480px;
  background:
    radial-gradient(600px 400px at 65% 60%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%),
    linear-gradient(180deg, #14132b, #0c0b1d);
  border: 1px solid rgba(255,255,255,.08);
}
.map-panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-tx { fill: rgba(255,255,255,.035); stroke: rgba(255,255,255,.16); stroke-width: 1.4; }
.map-grid line { stroke: rgba(255,255,255,.05); stroke-width: 1; }
.pin { cursor: pointer; }
.pin .halo { fill: var(--accent); opacity: .25; transform-box: fill-box; transform-origin: center; animation: ping 2.6s ease-out infinite; }
.pin .core { fill: var(--accent-bright); }
.pin.is-soon .core { fill: #6b7891; }
.pin.is-soon .halo { display: none; }
.pin.active .core, .pin:hover .core { fill: #fff; }
.pin.active .halo { opacity: .4; }
@keyframes ping { 0%{ transform: scale(1); opacity:.5 } 80%,100%{ transform: scale(3.4); opacity:0 } }
.map-label { fill: rgba(233,247,252,.6); font-family: var(--font-b); font-size: 12px; font-weight: 600; pointer-events: none; }
.map-badge { position: absolute; left: 18px; top: 18px; z-index: 4; display: flex; align-items: center; gap: 9px;
  background: rgba(10,9,23,.6); border: 1px solid rgba(255,255,255,.12); padding: 8px 13px; border-radius: 999px; font-size: 12.5px; backdrop-filter: blur(8px); }
.map-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #38e0a3; box-shadow: 0 0 10px #38e0a3; }

.find-side { display: flex; flex-direction: column; gap: 16px; }
.city-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-family: var(--font-d); font-weight: 500; font-size: 13.5px; padding: 9px 15px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--ice-dim); transition: .2s;
}
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #04121a; font-weight: 600; }
.chip:hover { color: #fff; }
.chip[aria-pressed="true"]:hover { color: #04121a; }
.venue-cards { display: flex; flex-direction: column; gap: 12px; overflow: auto; max-height: 380px; padding-right: 4px; }
.venue-cards::-webkit-scrollbar { width: 6px; }
.venue-cards::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 99px; }
.vcard {
  display: flex; gap: 14px; align-items: center; padding: 15px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); transition: .25s var(--ease); cursor: pointer;
}
.vcard:hover, .vcard.active { background: rgba(255,255,255,.08); border-color: color-mix(in srgb, var(--accent) 55%, transparent); transform: translateX(4px); }
.vcard__ic { width: 42px; height: 42px; border-radius: 11px; flex: 0 0 auto; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 16%, transparent); }
.vcard__ic svg { width: 20px; height: 20px; stroke: var(--accent-bright); }
.vcard h4 { font-family: var(--font-d); font-size: 16px; font-weight: 600; }
.vcard p { font-size: 12.5px; color: var(--ice-dim); }
.vcard .tag { margin-left: auto; font-size: 11px; font-weight: 600; color: #38e0a3; border: 1px solid color-mix(in srgb,#38e0a3 40%, transparent); padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.vcard .tag.soon { color: var(--ice-dim); border-color: rgba(255,255,255,.18); }

/* =========================================================
   BECOME A PARTNER (light form)
   ========================================================= */
.partner-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
.partner-points { display: grid; gap: 22px; margin-top: 34px; }
.pp { display: flex; gap: 16px; }
.pp__n { font-family: var(--font-d); font-weight: 700; color: var(--accent); font-size: 15px; flex:0 0 auto; width: 30px; }
.pp h4 { font-family: var(--font-d); font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.pp p { font-size: 14px; color: var(--muted); }
.form-card { background: var(--paper-2); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 34px; box-shadow: 0 30px 70px -45px rgba(20,24,43,.45); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--font-b); font-size: 14.5px; color: var(--text);
  padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line-light); background: #fafcfe; transition: .2s;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.field.invalid input, .field.invalid select { border-color: #e5484d; }
.field .err { font-size: 12px; color: #e5484d; display: none; }
.field.invalid .err { display: block; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .check svg { width: 32px; height: 32px; stroke: #fff; }
.form-success h3 { font-size: 26px; margin-bottom: 10px; }
.form-success p { color: var(--muted); max-width: 38ch; margin: 0 auto; }

/* =========================================================
   FAQ  (light accordion)
   ========================================================= */
.faq-list { margin-top: 44px; max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left;
  padding: 24px 4px; font-family: var(--font-d); font-weight: 600; font-size: clamp(17px,1.9vw,21px); color: var(--text); }
.faq-q .pm { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; transition: .3s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; width: 13px; height: 2px; background: var(--accent); transition: .3s var(--ease); }
.faq-q .pm::after { transform: rotate(90deg); }
.faq-item.open .pm { background: var(--accent); border-color: var(--accent); transform: rotate(135deg); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: #fff; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--muted); font-size: 15.5px; max-width: 70ch; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink-2); border-top: 1px solid rgba(255,255,255,.08); padding: 72px 0 30px; }
.footer-cta { text-align: center; padding-bottom: 56px; margin-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-cta h2 { font-size: clamp(30px, 4.4vw, 60px); max-width: 18ch; margin: 0 auto 14px; }
.footer-cta .lede { margin: 0 auto 30px; text-align: center; }
.footer-cta .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { color: var(--ice-dim); font-size: 14px; max-width: 30ch; }
.footer-col h5 { font-family: var(--font-d); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ice-dim); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; color: rgba(233,247,252,.78); margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); display:grid; place-items:center; margin:0; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ice-dim); }

/* =========================================================
   reveal-on-scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step__conn { display: none !important; }
  .split, .venue-grid, .find-grid, .partner-grid { grid-template-columns: 1fr; }
  .hero--b .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 440px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .stat:nth-child(3) { border-left: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding-inline: 20px; }
  .steps, .venue-benefits, .form-row, .stats__grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.18); padding-top: 24px; }
  .hero--a .hero-foot, .hero--b .hero-foot { gap: 22px; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-cta .btn, .footer-cta .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-height: 820px) {
  .scroll-cue { display: none; }
}
