:root{
  --violet:#834DFB;
  --violet-soft:#EFE9FF;
  --violet-line:#E2D6FF;
  --turbo:#F0E100;
  --haiti:#1B1033;

  --bg:#F5F3FF;
  --surface:#FFFFFF;
  --surface-2:#EEEBFA;
  --ink:#1B1033;
  --mut:#615A75;
  --mut-2:#8880A0;
  --line:#EAE6F8;
  --line-2:#E2DEEF;

  --shadow:0 1px 2px rgba(24,16,43,.03),0 4px 14px rgba(24,16,43,.035);
  --shadow-2:0 1px 2px rgba(24,16,43,.03),0 10px 30px rgba(24,16,43,.055);

  --r-s:14px; --r-m:22px; --r-l:30px;
  --maxw:1080px;
}
[data-theme="dark"]{
  --violet-soft:#241A3C;
  --violet-line:#332450;
  --bg:#100A1C;
  --surface:#171029;
  --surface-2:#1C1433;
  --ink:#F3F0FB;
  --mut:#A79FC0;
  --mut-2:#8880A0;
  --line:#241A3C;
  --line-2:#2E2249;
  --shadow:0 1px 2px rgba(0,0,0,.28),0 4px 14px rgba(0,0,0,.24);
  --shadow-2:0 1px 2px rgba(0,0,0,.3),0 10px 30px rgba(0,0,0,.36);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font-family:'DM Sans',-apple-system,system-ui,sans-serif;
  font-weight:400;font-size:16px;line-height:1.6;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
  transition:background .35s,color .35s;
}
svg{display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer}
.sb{font-weight:600}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
section{position:relative;padding:104px 0}

svg.ic{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
svg.ic.sm{width:16px;height:16px;stroke-width:1.85}
svg.ic.lg{width:24px;height:24px;stroke-width:1.6}
/* the brand mark is a filled shape, not a stroked icon; currentColor lets it
   sit on any background without a contrast clash */
svg.ic.fill{fill:currentColor;stroke:none}

:focus-visible{outline:2px solid var(--violet);outline-offset:3px;border-radius:6px}
input:focus-visible{outline-offset:2px}

h1,h2,h3{margin:0;font-weight:600;letter-spacing:-.032em;line-height:1.14}
h1{font-size:clamp(34px,5.2vw,54px);line-height:1.1}
h2{font-size:clamp(26px,3.5vw,38px)}
h3{font-size:18px;letter-spacing:-.02em;line-height:1.35}
.lead{font-size:clamp(15.5px,1.6vw,17.5px);color:var(--mut);line-height:1.65}
.accent{color:var(--violet)}
.eyebrow{display:inline-block;font-size:12px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--mut-2);margin-bottom:18px}
.sectionhead{max-width:620px;margin:0 auto 56px;text-align:center}
.sectionhead .lead{margin-top:16px}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:0;border-radius:999px;
  padding:13px 24px;font-size:15px;font-weight:600;background:var(--haiti);color:#F5F3FF;
  transition:opacity .18s,background .18s}
[data-theme="dark"] .btn{background:#F3F0FB;color:#18102B}
.btn:hover{opacity:.88}
.btn.v{background:var(--violet);color:#fff}
.btn.ghost{background:transparent;color:var(--ink);border:1px solid var(--line-2)}
.btn.ghost:hover{background:var(--surface-2);opacity:1}
.btn.lg{padding:16px 30px;font-size:16px}
.btn.full{width:100%}

header{position:sticky;top:0;z-index:100;padding:16px 0 0;background:var(--bg);
  border-bottom:1px solid transparent;transition:border-color .3s,background .35s}
header>.wrap.nav{padding-bottom:16px}
header.menu-open{border-bottom-color:var(--line)}
header.stuck{border-bottom-color:var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:44px}
.logo{display:flex;align-items:center;gap:9px;font-weight:600;font-size:18px;letter-spacing:-.03em;white-space:nowrap;flex:0 0 auto}
/* the logo mark stands on its own in brand violet, no container behind it */
.mark{display:inline-flex;align-items:center;color:var(--violet);flex:0 0 auto}
.mark svg.ic{width:23px;height:22px}
.navlinks{display:flex;gap:26px}
.navlinks a{font-size:15px;color:var(--mut);transition:color .18s}
.navlinks a:hover{color:var(--ink)}
.navlinks a.on{color:var(--violet);font-weight:600}
.navright{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.navright .btn{white-space:nowrap}

/* ---------- hamburger + mobile menu ---------- */
.burger{display:none;width:42px;height:42px;border-radius:13px;border:1px solid var(--line-2);
  background:transparent;padding:0;align-items:center;justify-content:center;gap:5px;
  flex-direction:column;flex:0 0 auto;transition:border-color .18s}
.burger:hover{border-color:var(--mut-2)}
.burger span{display:block;width:17px;height:2px;border-radius:2px;background:var(--ink);
  transition:transform .26s cubic-bezier(.2,.8,.3,1),opacity .18s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobmenu{overflow:hidden;max-height:0;transition:max-height .32s cubic-bezier(.2,.8,.3,1)}
.mobmenu.open{max-height:70vh}
.mobmenu-in{display:flex;flex-direction:column;padding:8px 24px 22px;
  max-width:var(--maxw);margin:0 auto}
.mobmenu-in a{font-size:16px;color:var(--ink);padding:14px 2px}
.mobmenu-in a+a{border-top:1px solid var(--line)}
.mobmenu-cta{margin-top:18px;padding:15px 24px;font-size:15px;border-top:0!important}
.navscrim{position:fixed;inset:0;z-index:90;background:rgba(24,16,43,.34);
  opacity:0;transition:opacity .26s;backdrop-filter:blur(2px)}
.navscrim.on{opacity:1}
.toggle{width:36px;height:36px;border-radius:50%;border:1px solid var(--line-2);background:transparent;
  color:var(--mut);display:grid;place-items:center;transition:color .18s,border-color .18s}
.toggle:hover{color:var(--ink);border-color:var(--mut-2)}

.hero{padding:64px 0 56px;text-align:center;overflow:hidden}
.hero:before{content:'';position:absolute;width:760px;height:420px;left:50%;top:-60px;transform:translateX(-50%);
  background:radial-gradient(ellipse at center,var(--violet-soft),transparent 68%);pointer-events:none;opacity:.85}
.hero .inner{position:relative}
.hero h1{max-width:22ch;margin:0 auto}
.hero .lead{max-width:46ch;margin:22px auto 0}

.capture{display:flex;gap:8px;max-width:420px;margin:34px auto 0;background:var(--surface);
  border:1px solid var(--line-2);border-radius:999px;padding:6px 6px 6px 20px;align-items:center;box-shadow:var(--shadow)}
.capture input{flex:1;border:0;outline:0;background:0;font:inherit;font-size:15px;color:var(--ink);min-width:0}
.capture input::placeholder{color:var(--mut-2)}
.capture input:focus-visible{outline:none}
.capture:focus-within{border-color:var(--violet)}

.trustline{display:flex;align-items:center;justify-content:center;gap:11px;margin-top:20px;
  font-size:14px;color:var(--mut);flex-wrap:wrap}
.facepile{display:flex}
.facepile span{width:29px;height:29px;border-radius:50%;margin-left:-7px;border:2px solid var(--bg);
  display:grid;place-items:center;font-size:11px;font-weight:600;color:#fff;letter-spacing:-.03em}
.facepile span:first-child{margin-left:0}

.viz{position:relative;margin:64px auto 0}


.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-m);padding:26px}
.card h3{margin-bottom:9px}
.card p{margin:0;color:var(--mut);font-size:14px;line-height:1.65}


.step{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-m);padding:26px;position:relative}
.stepno{font-size:13px;font-weight:600;color:var(--mut-2);letter-spacing:.08em;margin-bottom:16px}

.dark{background:var(--haiti);color:#F3F0FB;border-radius:var(--r-l);padding:64px 52px;position:relative;overflow:hidden}
.dark h2{color:#fff}
.dark .lead{color:#A79FC0}
.dark:before{content:'';position:absolute;width:520px;height:520px;right:-160px;top:-200px;border-radius:50%;
  background:radial-gradient(circle,rgba(131,77,251,.34),transparent 68%)}
.darkgrid{position:relative;display:grid;grid-template-columns:1.05fr 1fr;gap:52px;align-items:center}
.live{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--haiti);background:var(--turbo);padding:5px 11px;border-radius:999px}
.live i{width:6px;height:6px;border-radius:50%;background:var(--haiti);animation:blink 1.8s infinite}
@keyframes blink{50%{opacity:.3}}
@media (prefers-reduced-motion:reduce){.live i{animation:none}}


.srow{display:flex;gap:16px;padding:22px 0;align-items:flex-start}
.srow+.srow{border-top:1px solid var(--line)}
.srow .ic-wrap{width:38px;height:38px;border-radius:12px;background:var(--violet-soft);color:var(--violet);
  display:grid;place-items:center;flex:0 0 auto}
.srow p{margin:6px 0 0;color:var(--mut);font-size:14px;line-height:1.6}

.faq{max-width:720px;margin:0 auto}
.q{border-bottom:1px solid var(--line)}
.q summary{list-style:none;padding:22px 4px;display:flex;justify-content:space-between;align-items:center;gap:20px;
  font-size:16px;font-weight:500;cursor:pointer}
.q summary::-webkit-details-marker{display:none}
.q .plus{width:24px;height:24px;border-radius:50%;display:grid;place-items:center;color:var(--violet);
  flex:0 0 auto;transition:transform .25s}
.q[open] .plus{transform:rotate(45deg)}
.q .a{padding:0 4px 24px;color:var(--mut);font-size:15px;line-height:1.7;max-width:60ch}

.cta{background:var(--violet);border-radius:var(--r-l);padding:72px 40px;text-align:center;color:#fff;overflow:hidden;position:relative}
.cta h2{color:#fff;max-width:16ch;margin:0 auto}
.cta .lead{color:rgba(255,255,255,.84)}
.form{max-width:440px;margin:34px auto 0;text-align:left}
.form label{display:block;font-size:12px;font-weight:600;letter-spacing:.09em;text-transform:uppercase;
  color:rgba(255,255,255,.76);margin-bottom:10px}
.form input{width:100%;border:1px solid transparent;border-radius:var(--r-s);padding:15px 17px;
  font:inherit;font-size:15px;background:#fff;color:var(--haiti);outline:0;margin-bottom:20px}
.form input:focus-visible{outline:2px solid #fff;outline-offset:2px}

footer{padding:72px 0 0;border-top:1px solid var(--line)}
.footgrid{display:flex;justify-content:space-between;gap:44px;flex-wrap:wrap;padding-bottom:56px}
.footcol h4{margin:0 0 14px;font-size:12px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--mut-2)}
.footcol a{display:block;font-size:14px;color:var(--mut);padding:5px 0}
.footcol a:hover{color:var(--violet)}
.wordmark{font-size:clamp(56px,16vw,190px);font-weight:600;letter-spacing:-.055em;line-height:.82;
  color:var(--line);text-align:center;padding-bottom:20px;user-select:none;white-space:nowrap;overflow:hidden}
.footbot{border-top:1px solid var(--line);padding:24px 0 36px;display:flex;justify-content:space-between;
  font-size:13px;color:var(--mut-2);flex-wrap:wrap;gap:12px}

.rv{opacity:0;transform:translateY(16px);transition:opacity .55s cubic-bezier(.2,.7,.3,1),transform .55s cubic-bezier(.2,.7,.3,1)}
.rv.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){.rv{opacity:1;transform:none;transition:none}}

@media (max-width:980px){
  .navlinks{display:none}
  .burger{display:flex}
  .navright .desk-cta{display:none}
  .grid3,.grid2,.darkgrid{grid-template-columns:1fr}
  .darkgrid{gap:36px}
  .dark{padding:44px 26px}
}
@media (max-width:620px){
  .wrap{padding:0 18px}
  .mobmenu-in{padding:8px 18px 22px}
  section{padding:68px 0}
  .hero{padding:32px 0 40px}
  .hero:before{width:120vw}
  .hero h1{max-width:100%}
  .capture{flex-direction:column;border-radius:var(--r-m);padding:14px;gap:11px}
  .capture input{width:100%;text-align:center;padding:6px 0 2px}
  .capture .btn{width:100%;border-radius:var(--r-s)}
  .cta{padding:48px 22px}
  .card,.step,  .sectionhead{margin-bottom:40px}
  .trustline{gap:9px}
  .footgrid{gap:30px 36px}
  .footcol{min-width:132px}
  .q summary{font-size:15px;gap:14px;padding:20px 2px}
  .q .a{font-size:14px}
  .srow{gap:13px;padding:20px 0}
  .dark{padding:36px 20px;border-radius:var(--r-m)}
  .cta{border-radius:var(--r-m)}
}
@media (max-width:400px){
  .wrap{padding:0 16px}
  .mobmenu-in{padding:8px 16px 22px}
  .logo{font-size:16px}
  .mark{width:26px;height:26px}
  .toggle{width:34px;height:34px}
  .burger{width:38px;height:38px}
  .btn.lg{padding:15px 22px;font-size:15px}
  .footbot{font-size:12px}
}

/* ---------- real app embeds ----------
   The marketing page renders the actual app in a phone frame rather than a
   drawing of it. The iframe is laid out at true device size and scaled down, so
   type and spacing stay exactly as they are on a phone. --crop trims the frame
   to a shorter window on the app so a section doesn't cost a full screen of
   scrolling. */
.appshot{--s:.6;--crop:844px;position:relative;flex:0 0 auto;margin:0 auto;
  width:calc(390px * var(--s) + 16px);height:calc(var(--crop) * var(--s) + 16px);
  padding:8px;border-radius:calc(46px * var(--s) + 8px);background:#0B0713;
  box-shadow:0 26px 60px rgba(27,16,51,.28),0 2px 8px rgba(27,16,51,.1)}
.appshot-clip{position:relative;overflow:hidden;background:#F5F3FF;
  width:calc(390px * var(--s));height:calc(var(--crop) * var(--s));
  border-radius:calc(46px * var(--s))}
.appshot iframe{width:390px;height:844px;border:0;display:block;
  transform:scale(var(--s));transform-origin:top left}
/* previews are illustrations: only the hero is meant to be poked at */
.darkgrid .appshot-clip{pointer-events:none}


@media (max-width:980px){
  .appshot{--s:.56}
  .darkgrid .show-app{justify-self:center}
}
@media (max-width:620px){
  .appshot{--s:.5}
}
@media (max-width:400px){
  .appshot{--s:.46}
}

/* ---------- app-accurate illustrations ----------
   Drawn from the app's own components rather than approximated: same pin
   construction, same peek card, same booking card. */
.mapart,.illmap{position:absolute;inset:0;width:100%;height:100%;display:block}

.heromap{position:absolute;inset:0 0 auto;height:min(760px,94%);overflow:hidden;pointer-events:none;
  opacity:.34;filter:blur(1.5px);
  -webkit-mask-image:linear-gradient(to bottom,transparent,#000 18%,rgba(0,0,0,.6) 60%,transparent 95%);
          mask-image:linear-gradient(to bottom,transparent,#000 18%,rgba(0,0,0,.6) 60%,transparent 95%)}

/* Dark mode needs a dark map, not a faded light one. White roads stay legible
   as hard edges at any opacity, so recolour rather than just turning it down. */
[data-theme="dark"] .heromap{opacity:.5;filter:blur(2.5px)}
[data-theme="dark"] .mapart g[fill] rect,
[data-theme="dark"] .illmap g[fill] rect{fill:#241A3C}
[data-theme="dark"] .mapart g[stroke] path,
[data-theme="dark"] .illmap g[stroke] path{stroke:#2B2046}
[data-theme="dark"] .ill{background:var(--surface-2)}

/* pin, matching the app: photo, white ring, count pill, yellow diamond, label */
.ipin{position:absolute;display:flex;flex-direction:column;align-items:center;pointer-events:none}
.ipin-b{position:relative;width:46px;height:46px;border-radius:50%;background:var(--surface);
  border:2.5px solid var(--surface);box-shadow:0 5px 15px rgba(27,16,51,.18)}
.ipin-b img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:50%}
.ipin-b .ini{position:absolute;inset:0;display:grid;place-items:center;border-radius:50%;
  color:#fff;font-size:13px;font-weight:600;letter-spacing:-.01em}
.ipin-b:after{content:'';position:absolute;bottom:-6px;left:50%;transform:translateX(-50%) rotate(45deg);
  width:11px;height:11px;background:var(--turbo);border-radius:2px;box-shadow:0 2px 4px rgba(27,16,51,.2)}
.ipin-c{position:absolute;top:-8px;right:-13px;min-width:29px;height:21px;padding:0 7px;border-radius:999px;
  background:var(--violet);color:#fff;font-size:11px;font-weight:600;display:grid;place-items:center;
  border:2px solid var(--surface);z-index:2}
.ipin-c.y{background:var(--turbo);color:var(--haiti)}
.ipin-l{margin-top:9px;font-size:11px;font-weight:600;letter-spacing:-.01em;padding:5px 10px;border-radius:10px;
  background:var(--surface);box-shadow:0 3px 11px rgba(27,16,51,.14);white-space:nowrap}

.heropins{position:absolute;inset:0;pointer-events:none;max-width:1320px;margin:0 auto;display:none}
.heropins .p1{left:4%;top:20%}
.heropins .p2{left:9%;top:56%}
.heropins .p3{right:5%;top:26%}
.heropins .p4{right:10%;top:62%}
@media (min-width:1120px){.heropins{display:block}}

/* card illustrations */
.ill{position:relative;height:186px;border-radius:var(--r-s);overflow:hidden;margin-bottom:24px;
  background:var(--surface-2)}
.ill-plain{display:grid;place-items:center;padding:16px;background:var(--surface-2)}
/* proportional so the pins keep their footing when the card shortens */
.ill .i1{left:7%;top:14%}
.ill .i2{left:38%;top:50%}
.ill .i3{right:8%;top:18%}

.ipeek{width:100%;background:var(--surface);border-radius:16px;padding:14px;
  box-shadow:0 2px 6px rgba(27,16,51,.05),0 12px 30px rgba(27,16,51,.11)}
.ipeek-s{font-size:13px;font-weight:600;letter-spacing:-.02em;line-height:1.4}
.ipeek-s b{color:var(--violet);font-weight:600}
.ipeek-f{display:flex;margin-top:11px}
.ipeek-f span{width:26px;height:26px;border-radius:50%;margin-left:-6px;border:2px solid var(--surface);
  display:grid;place-items:center;font-size:9px;font-weight:600;color:#fff;letter-spacing:-.02em}
.ipeek-f span:first-child{margin-left:0}
.ipeek-f .more{background:var(--violet-soft);color:var(--violet)}
.ipeek-m{font-size:11px;color:var(--mut);margin-top:9px}
.ipeek-btns{display:flex;gap:7px;margin-top:12px;font-size:11px;font-weight:600}
.ipeek-btns span{flex:1;text-align:center;padding:9px 4px;border-radius:11px}
.ipeek-btns .gh{background:var(--surface);border:1px solid var(--line-2);color:var(--ink)}
.ipeek-btns .pr{flex:1.35;background:var(--violet);color:#fff}

.ibook{width:100%;background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:14px;
  box-shadow:0 2px 6px rgba(27,16,51,.05)}
.ibook-h{display:flex;justify-content:space-between;align-items:center;margin-bottom:9px;font-size:11px;font-weight:600}
.ibook-h .bl{color:var(--violet)}
.ibook-h .bp{color:var(--mut-2)}
.ibook-r{display:flex;justify-content:space-between;gap:10px;font-size:11px;color:var(--mut);padding:4px 0}
.ibook-r b{color:var(--ink);font-weight:600}
.ibook-r b.pos{color:#1E9E7E}
.ibook-t{display:flex;justify-content:space-between;align-items:baseline;gap:10px;
  margin-top:8px;padding-top:10px;border-top:1px solid var(--line);font-size:12px;font-weight:500}
.ibook-t b{font-size:18px;font-weight:600;letter-spacing:-.03em;color:var(--violet)}

/* hero cards: image-led, no device frame */
.herocards{display:flex;justify-content:center;flex-wrap:wrap;gap:12px;margin-top:44px}
.hcard{display:flex;align-items:center;gap:11px;padding:9px 16px 9px 9px;border-radius:16px;
  background:var(--surface);border:1px solid var(--line);box-shadow:var(--shadow);text-align:left}
.hcard img{width:42px;height:42px;border-radius:11px;object-fit:cover;flex:0 0 auto;display:block}
.hc-b{display:flex;flex-direction:column;gap:3px;min-width:0}
.hc-b b{font-size:13px;font-weight:600;letter-spacing:-.015em;white-space:nowrap}
.hc-b i{font-size:11px;font-style:normal;color:var(--mut-2);white-space:nowrap}
@media (max-width:620px){
  /* centring an overflowing flex row clips the first item out of reach */
  .herocards{margin-top:34px;gap:9px;flex-wrap:nowrap;justify-content:flex-start;overflow-x:auto;
    padding:2px 18px;margin-left:-18px;margin-right:-18px;scrollbar-width:none}
  .herocards::-webkit-scrollbar{display:none}
  .hcard{flex:0 0 auto}
  .ill{height:168px}
}

/* ---------- hero refinements ---------- */
.tag{display:inline-flex;align-items:center;gap:7px;font-size:12px;font-weight:600;letter-spacing:.02em;
  color:var(--mut);background:var(--surface);border:1px solid var(--line);
  padding:7px 14px;border-radius:999px;margin-bottom:22px;box-shadow:var(--shadow)}
.tag i{width:6px;height:6px;border-radius:50%;background:#2FB49C;
  box-shadow:0 0 0 3px rgba(47,180,156,.18)}
.herobtns{display:flex;gap:11px;justify-content:center;flex-wrap:wrap;margin-top:32px}
@media (max-width:460px){
  .herobtns{flex-direction:column;align-items:stretch}
  .herobtns .btn{width:100%}
}

/* ---------- waitlist ---------- */
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}
.wait{display:flex;gap:8px;max-width:430px;margin:30px auto 0;background:#fff;
  border-radius:999px;padding:6px 6px 6px 20px;align-items:center;
  box-shadow:0 2px 8px rgba(27,16,51,.08)}
.wait input{flex:1;min-width:0;border:0;outline:0;background:0;font:inherit;font-size:15px;color:var(--haiti)}
.wait input::placeholder{color:#9A93AD}
.wait .btn{flex:0 0 auto;background:var(--violet);color:#fff;padding:13px 22px}
.wait.is-bad{box-shadow:0 0 0 2px #E8617D}
.waitmsg{min-height:22px;margin:12px 0 0;font-size:13.5px;color:rgba(255,255,255,.9)}
.waitalt{margin:22px 0 0;font-size:14px;color:rgba(255,255,255,.72)}
.waitalt a{text-decoration:underline;text-underline-offset:3px}
@media (max-width:520px){
  .wait{flex-direction:column;border-radius:var(--r-m);padding:14px;gap:10px}
  .wait input{width:100%;text-align:center;padding:6px 0 2px}
  .wait .btn{width:100%;border-radius:var(--r-s)}
}

/* ---------- self-playing split ----------
   Shows the arithmetic happening instead of asking the reader to drag a slider. */
.split{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-m);padding:24px}
.sp-top{display:flex;justify-content:space-between;align-items:center;gap:14px}
.sp-venue{display:flex;align-items:center;gap:11px;min-width:0}
.sp-venue img{width:40px;height:40px;border-radius:11px;object-fit:cover;flex:0 0 auto}
.sp-venue span{display:flex;flex-direction:column;gap:2px;min-width:0}
.sp-venue b{font-size:14px;font-weight:600;letter-spacing:-.015em}
.sp-venue i{font-size:12px;font-style:normal;color:var(--mut-2)}
.sp-total{font-size:17px;font-weight:600;letter-spacing:-.03em;flex:0 0 auto}

.sp-seats{display:flex;gap:7px;margin:22px 0 16px;flex-wrap:wrap}
.sp-seat{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;
  font-size:11px;font-weight:600;color:#fff;letter-spacing:-.02em;
  background:var(--surface-2);color:transparent;
  transition:transform .42s cubic-bezier(.34,1.4,.44,1),background .3s,color .3s}
.sp-seat.in{transform:none;color:#fff}
.sp-seat.pop{animation:seatpop .5s cubic-bezier(.34,1.4,.44,1)}
@keyframes seatpop{0%{transform:scale(.4);opacity:.4}60%{transform:scale(1.12)}100%{transform:scale(1)}}

.sp-bar{height:6px;border-radius:3px;background:var(--surface-2);overflow:hidden}
.sp-bar i{display:block;height:100%;width:12.5%;border-radius:3px;background:var(--violet);
  transition:width .55s cubic-bezier(.22,.8,.3,1)}
.sp-count{display:flex;justify-content:space-between;gap:12px;margin-top:9px;
  font-size:12.5px;color:var(--mut-2)}

.sp-out{display:flex;justify-content:space-between;align-items:baseline;gap:14px;
  margin-top:20px;padding:18px 20px;border-radius:var(--r-s);background:var(--violet-soft)}
.sp-out span{font-size:13px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--mut)}
.sp-out b{font-size:clamp(28px,4.4vw,38px);font-weight:600;letter-spacing:-.04em;color:var(--violet);
  font-variant-numeric:tabular-nums;line-height:1}
.sp-out b.tick{animation:amttick .42s cubic-bezier(.34,1.4,.44,1)}
@keyframes amttick{0%{transform:translateY(-6px);opacity:.5}100%{transform:none;opacity:1}}

@media (prefers-reduced-motion:reduce){
  .sp-seat,.sp-bar i{transition:none}
  .sp-seat.pop,.sp-out b.tick{animation:none}
}

/* ---------- investor band ---------- */
.investband{display:grid;grid-template-columns:1.15fr .85fr;gap:44px;align-items:center;
  background:var(--haiti);border-radius:var(--r-l);padding:52px 48px;color:#F3F0FB;
  position:relative;overflow:hidden}
.investband:before{content:'';position:absolute;width:520px;height:520px;right:-170px;top:-210px;
  border-radius:50%;background:radial-gradient(circle,rgba(131,77,251,.36),transparent 68%)}
.ib-copy{position:relative}
.ib-copy .eyebrow{color:#A79FC0}
.ib-copy h2{color:#fff}
.ib-copy .lead{color:#A79FC0;margin-top:16px;max-width:44ch}
.ib-copy .btn{margin-top:28px}
.ib-figs{position:relative;display:grid;grid-template-columns:1fr 1fr;gap:12px}
.ib-figs div{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-s);padding:20px}
.ib-figs b{display:block;font-size:clamp(21px,2.6vw,27px);font-weight:600;letter-spacing:-.04em;color:#fff}
.ib-figs span{display:block;font-size:11px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:#8880A0;margin-top:8px}
@media (max-width:900px){
  .investband{grid-template-columns:1fr;gap:32px;padding:38px 26px}
  .ib-copy .lead{max-width:none}
}
@media (max-width:460px){
  .ib-figs{grid-template-columns:1fr 1fr;gap:9px}
  .ib-figs div{padding:15px}
}
