/* THEC1RCLE — Design tokens */
:root {
  --bg: #000000;
  --surface-0: #0a0a0a;
  --surface-1: #111111;
  --surface-2: #161616;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

  --text: #ffffff;
  --text-dim: #a1a1a1;
  --text-mute: #6b6b6b;

  --orange: #F44A22;
  --orange-glow: #FF6B4A;
  --orange-dim: #CC3311;
  --orange-soft: rgba(244, 74, 34, 0.12);

  --green: #2ECC71;
  --purple: #7B5BFF;
  --pink: #FF4D8F;
  --yellow: #FFD23F;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html, body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--orange); color: #000; }

/* ── Top progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-glow));
  z-index: 200; transition: width 60ms linear;
  box-shadow: 0 0 12px var(--orange);
}

/* ── Layout */
.shell { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .shell { padding: 0 20px; } }

/* ── Nav */
.nav-wrap {
  position: sticky; top: 18px; z-index: 100;
  display: flex; justify-content: center;
  padding: 0 24px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 18px;
  padding: 8px 8px 8px 18px;
  background: rgba(12,12,12,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  width: min(1100px, calc(100% - 8px));
}
.nav-brand { display: flex; align-items: center; gap: 12px; padding-right: 6px; }
.nav-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a0a06, #000);
  border: 1px solid var(--orange);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 9px; font-weight: 900;
  color: var(--orange); letter-spacing: 0.5px;
  box-shadow: 0 0 18px rgba(244,74,34,0.35);
}
.nav-brand-name {
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  letter-spacing: 0.3px;
}
.nav-links { display: flex; flex: 1; justify-content: center; gap: 4px; }
.nav-link {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.6px; padding: 10px 18px; border-radius: var(--r-pill);
  color: var(--text-dim); transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--text); }
.nav-link.is-active {
  background: linear-gradient(180deg, #fff, #d9d9d9);
  color: #000;
  box-shadow: 0 0 24px rgba(255,255,255,0.18);
}
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-login {
  background: #fff; color: #000;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.6px; padding: 11px 22px; border-radius: var(--r-pill);
  transition: transform .15s, box-shadow .15s;
}
.nav-login:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,255,255,0.15); }
.theme-toggle {
  width: 56px; height: 32px; border-radius: var(--r-pill);
  background: #0a0a0a; border: 1px solid var(--line);
  display: flex; align-items: center; padding: 3px;
  position: relative;
}
.theme-toggle::after {
  content: ""; width: 24px; height: 24px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a1a1a, #000);
  border: 1px solid var(--line-strong);
  margin-left: auto;
}
/* Hamburger hidden on desktop; shown via mobile.css at ≤1024px */
.nav-hamburger { display: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav { padding: 8px 10px 8px 14px; }
  .nav-brand-name { font-size: 14px; }
  .theme-toggle { display: none; }
}

/* ── Hero */
.hero {
  position: relative;
  padding: 80px 0 60px;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 0% 100%, rgba(244,74,34,0.18), transparent 60%),
    radial-gradient(50% 40% at 100% 0%, rgba(123,91,255,0.12), transparent 60%);
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}
.hero-grid-deco {
  position: absolute; left: 24px; top: 90px; width: 130px; height: 130px; opacity: .6;
  background-image: radial-gradient(circle, rgba(255,255,255,0.25) 1px, transparent 1.5px);
  background-size: 14px 14px;
}

.hero-inner { position: relative; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: var(--surface-1); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px; color: var(--text-dim);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.85); } }

.hero-kicker {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-mute);
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 18px;
}

h1.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-title .accent { color: var(--orange); }
.hero-title .stroke {
  -webkit-text-stroke: 2px rgba(255,255,255,0.7);
  color: transparent;
}

.hero-sub {
  max-width: 620px; margin: 32px auto 0;
  font-size: 18px; color: var(--text-dim); line-height: 1.5;
}

.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 30px rgba(244,74,34,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { background: var(--orange-glow); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(244,74,34,0.55); }
.btn-ghost {
  background: rgba(255,255,255,0.05); color: #fff;
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { transform: translateY(-2px); }
.btn-dark { background: #000; color: #fff; border: 1px solid var(--line-strong); }

.hero-meta {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 28px; flex-wrap: wrap;
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid #000;
  margin-left: -10px;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  display: grid; place-items: center; color: #fff;
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack .a1 { background: linear-gradient(135deg, var(--orange), #d62b00); }
.avatar-stack .a2 { background: linear-gradient(135deg, var(--purple), #4a2acc); }
.avatar-stack .a3 { background: linear-gradient(135deg, var(--pink), #cc2a5e); }
.avatar-stack .a4 { background: linear-gradient(135deg, var(--green), #1f8a4d); }
.hero-meta-text { font-size: 13px; color: var(--text-dim); }
.hero-meta-text b { color: #fff; font-weight: 700; }

.hero-rating {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  font-size: 12px; color: var(--text-dim);
  margin-bottom: 16px;
}
.hero-rating .stars { color: var(--yellow); letter-spacing: 1px; font-size: 11px; }

/* Audience toggle */
.audience-toggle {
  display: inline-flex; padding: 4px; border-radius: var(--r-pill);
  background: var(--surface-1); border: 1px solid var(--line);
  margin-bottom: 26px;
}
.audience-toggle button {
  padding: 10px 22px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-mute); transition: all .2s;
}
.audience-toggle button.is-active {
  background: var(--orange); color: #fff;
  box-shadow: 0 0 18px rgba(244,74,34,0.4);
}

/* ── Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--orange);
  color: #000;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 40px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee span {
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 40px;
}
.marquee span::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #000;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ── Section common */
section { position: relative; }
.section-pad { padding: 140px 0; }
.section-pad-sm { padding: 100px 0; }
@media (max-width: 720px) { .section-pad { padding: 80px 0; } .section-pad-sm { padding: 60px 0; } }

.section-num {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--orange); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 24px;
}
.section-num::before {
  content: "🔥"; font-size: 14px;
}
.section-num.num-purple { color: var(--purple); }
.section-num.num-purple::before { content: "♥"; color: var(--purple); }
.section-num.num-green { color: var(--green); }
.section-num.num-green::before { content: "●"; }

h2.section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.9; letter-spacing: -0.035em;
  text-transform: uppercase;
  max-width: 14ch;
  text-wrap: balance;
}
h2.section-title .stroke { -webkit-text-stroke: 1.5px rgba(255,255,255,0.5); color: transparent; }
h2.section-title .accent { color: var(--orange); }

p.section-desc {
  font-size: 18px; color: var(--text-dim); line-height: 1.55;
  max-width: 480px; margin-top: 28px;
}

/* Two-col feature row */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feature-row.reverse > :first-child { order: 2; }
.feature-row .chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  font-size: 13px; color: var(--text-dim);
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
@media (max-width: 920px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse > :first-child { order: initial; }
}

/* ── Phone preview (Discover) */
.phone-mock {
  background: linear-gradient(180deg, #1a0d08 0%, #0a0a0a 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(244,74,34,0.08);
}
.phone-mock::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.15);
}
.phone-mock-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; padding-top: 8px;
}
.phone-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase;
}
.phone-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--orange); letter-spacing: 1.5px; text-transform: uppercase;
}
.phone-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 8px var(--orange);
  animation: pulse 1.6s infinite;
}

.event-card {
  padding: 16px 18px; border-radius: var(--r-md);
  margin-bottom: 12px; position: relative;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer; transition: transform .2s, border-color .2s;
}
.event-card:hover { transform: translateX(4px); border-color: var(--line-strong); }
.event-card.purple { background: linear-gradient(135deg, #1f1640, #0f0a26); }
.event-card.deep { background: linear-gradient(135deg, #2a0f30, #0f0518); }
.event-card.orange { background: linear-gradient(135deg, #2a1208, #1a0905); }

.event-card-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.event-name {
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  letter-spacing: 0.4px; text-transform: uppercase;
}
.event-venue { font-size: 12px; color: var(--text-dim); margin-top: 4px; }
.event-heat {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  color: var(--orange);
}
.event-heat::after { content: "🔥"; font-size: 12px; }
.event-progress {
  margin-top: 14px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.08); overflow: hidden;
  position: relative;
}
.event-progress span {
  position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-glow));
  border-radius: 2px;
}
.event-pct {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); margin-top: 6px; text-align: right;
}

/* ── Plus One (match cards) */
.match-cluster {
  position: relative; height: 480px;
}
.match-card {
  position: absolute; width: 200px; padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; transition: transform .3s;
}
.match-card:hover { transform: scale(1.05) translateY(-4px); }
.match-card.c1 { background: linear-gradient(135deg, #4a1027, #1a0510); top: 0; right: 40px; }
.match-card.c2 { background: linear-gradient(135deg, #3a1450, #150528); top: 180px; right: 0; }
.match-card.c3 { background: linear-gradient(135deg, #2a1058, #0f052a); top: 280px; left: 80px; }
.match-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.4); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  margin-bottom: 30px;
}
.match-name {
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.match-going { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.match-meta {
  margin-top: 18px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 9px;
  color: rgba(255,255,255,0.7); letter-spacing: 1px;
}
.match-pct {
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  color: #FF4D8F;
}
.match-bar {
  margin-top: 8px; height: 3px; border-radius: 2px;
  background: rgba(0,0,0,0.3); overflow: hidden;
}
.match-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #FF4D8F, #FFA8C6);
}

/* ── Chats */
.chat-stack { display: flex; flex-direction: column; gap: 10px; max-width: 460px; }
.chat-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.chat-head-name { display: flex; align-items: center; gap: 14px; }
.chat-head-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.chat-title { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.chat-sub { font-size: 12px; color: var(--green); }
.chat-stack-avatars { display: flex; }
.chat-stack-avatars span {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid #000;
  margin-left: -8px; font-family: var(--font-display); font-weight: 800; font-size: 10px;
  display: grid; place-items: center;
}
.chat-stack-avatars span:first-child { margin-left: 0; }

.msg {
  padding: 12px 18px; border-radius: 20px;
  font-size: 14px; max-width: 75%; line-height: 1.4;
}
.msg.them { background: var(--surface-2); align-self: flex-start; }
.msg.me { background: var(--orange); color: #fff; align-self: flex-end; font-weight: 600; }
.msg.with-rx { position: relative; }
.msg-rx {
  display: flex; gap: 8px; margin-top: 4px;
  align-self: flex-start;
}
.msg-rx span {
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 11px; color: var(--text-dim);
}
.msg-typing { display: flex; gap: 4px; padding: 14px 18px; background: var(--surface-2); border-radius: 20px; align-self: flex-start; }
.msg-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-mute); animation: typing 1.2s infinite; }
.msg-typing span:nth-child(2) { animation-delay: .2s; }
.msg-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }
.chat-live-count {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(46,204,113,0.08); border: 1px solid rgba(46,204,113,0.3);
  font-size: 12px; color: var(--green); margin-top: 30px;
}
.chat-live-count::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

/* ── Tickets */
.ticket-stage {
  display: grid; place-items: center;
  min-height: 480px; position: relative;
}
.ticket {
  width: 440px; max-width: 100%;
  background: linear-gradient(180deg, #0d0d0d, #050505);
  border: 1px solid rgba(244,74,34,0.4);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transform: rotate(-3deg);
  box-shadow: 0 30px 80px rgba(244,74,34,0.2), 0 0 40px rgba(244,74,34,0.1);
}
.ticket::before, .ticket::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%; background: #000;
  border: 1px solid var(--line);
}
.ticket::before { left: -12px; }
.ticket::after { right: -12px; }
.ticket-tag {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
}
.ticket-verified {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.4);
  font-family: var(--font-mono); font-size: 10px;
  color: var(--green); letter-spacing: 1.5px; text-transform: uppercase;
  position: absolute; top: 20px; right: 20px;
}
.ticket-name {
  font-family: var(--font-display); font-weight: 900; font-size: 48px;
  letter-spacing: -0.02em; margin-top: 30px;
}
.ticket-venue { color: var(--text-dim); font-size: 13px; margin-top: 4px; }
.ticket-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; margin-top: 24px;
  border-top: 1px dashed var(--line); padding-top: 24px;
}
.ticket-cell-label {
  font-family: var(--font-mono); font-size: 9px; color: var(--text-mute);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.ticket-cell-val {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  margin-top: 4px;
}
.ticket-barcode {
  margin-top: 24px; height: 36px;
  background-image: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 4px, #fff 4px 5px, transparent 5px 8px, #fff 8px 9px, transparent 9px 12px);
}
.ticket-qr {
  position: absolute; right: 28px; top: 60%; transform: translateY(-50%);
  width: 60px; height: 60px;
  background: var(--orange); border-radius: 6px;
  display: grid; place-items: center;
}

/* ── Live City */
.live-stage { text-align: center; }
.live-pulse {
  margin: 30px auto 40px; width: 360px; height: 50px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 50' fill='none' stroke='%23F44A22' stroke-width='2'><path d='M0,25 L40,25 L60,15 L80,35 L100,5 L120,45 L140,15 L160,25 L200,25 L220,10 L240,40 L260,20 L280,30 L300,15 L320,25 L360,25'/></svg>");
  background-repeat: no-repeat; background-size: contain; background-position: center;
}
.live-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 760px; margin: 40px auto 0;
}
.stat {
  padding: 28px; border-radius: var(--r-md);
  background: var(--surface-0); border: 1px solid var(--line);
  text-align: center;
}
.stat-val {
  font-family: var(--font-display); font-weight: 900; font-size: 52px;
  letter-spacing: -0.03em;
}
.stat-val.green { color: var(--green); }
.stat-val.purple { color: var(--purple); }
.stat-val.orange { color: var(--orange); }
.stat-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 8px;
}
.city-pills {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px;
}
.city-pill {
  padding: 8px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  font-size: 12px; color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 8px;
}
.city-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ── How it works flow */
.flow {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px; margin-top: 60px;
}
.flow-step {
  padding: 24px; border-radius: var(--r-md);
  background: var(--surface-0); border: 1px solid var(--line);
  position: relative;
  transition: border-color .2s, transform .2s;
}
.flow-step:hover { border-color: var(--orange); transform: translateY(-2px); }
.flow-step-n {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--orange); letter-spacing: 1.5px;
}
.flow-step-t {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  margin-top: 20px; text-transform: uppercase; letter-spacing: 0.3px;
}
.flow-step-d { font-size: 12px; color: var(--text-dim); margin-top: 10px; line-height: 1.5; }
@media (max-width: 920px) { .flow { grid-template-columns: 1fr 1fr; } }

/* ── Problem split */
.problem-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 60px;
}
.problem-col {
  padding: 40px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border: 1px solid var(--line);
}
.problem-col .label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
}
.problem-col h3 {
  font-family: var(--font-display); font-weight: 900; font-size: 32px;
  margin-top: 14px; text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 1;
}
.problem-list {
  margin-top: 30px; display: flex; flex-direction: column; gap: 14px;
}
.problem-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.problem-item:last-child { border-bottom: 0; }
.problem-item .x {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(244,74,34,0.08); border: 1px solid rgba(244,74,34,0.3);
  color: var(--orange); display: grid; place-items: center;
  font-size: 11px; flex-shrink: 0;
}
.problem-item p { font-size: 14px; color: var(--text-dim); line-height: 1.5; }
.problem-item p strong { color: #fff; font-weight: 600; }
@media (max-width: 720px) { .problem-split { grid-template-columns: 1fr; } }

/* ── For Hosts (B2B) */
.hosts-section {
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(244,74,34,0.12), transparent 60%),
    var(--bg);
}
.dashboard {
  margin-top: 60px;
  background: linear-gradient(180deg, #0d0d0d, #050505);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.dashboard-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.5);
}
.dashboard-bar .dots { display: flex; gap: 6px; }
.dashboard-bar .dots span {
  width: 11px; height: 11px; border-radius: 50%; background: #2a2a2a;
}
.dashboard-bar .url {
  flex: 1; text-align: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-mute);
  letter-spacing: 1px;
}
.dashboard-grid {
  display: grid; grid-template-columns: 220px 1fr;
  min-height: 540px;
}
.dashboard-side {
  padding: 24px 16px; border-right: 1px solid var(--line);
  background: rgba(0,0,0,0.3);
}
.dashboard-side-label {
  font-family: var(--font-mono); font-size: 9px;
  color: var(--text-mute); letter-spacing: 2px; text-transform: uppercase;
  padding: 0 12px; margin-bottom: 14px;
}
.dashboard-side-label:not(:first-child) { margin-top: 24px; }
.dashboard-tab {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--text-dim); cursor: pointer;
  transition: background .15s, color .15s;
  width: 100%;
  text-align: left;
}
.dashboard-tab:hover { color: #fff; background: rgba(255,255,255,0.04); }
.dashboard-tab.is-active { background: rgba(244,74,34,0.15); color: var(--orange); }
.dashboard-tab-icon {
  width: 18px; height: 18px; border-radius: 4px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  font-size: 10px;
}
.dashboard-tab.is-active .dashboard-tab-icon { background: var(--orange); color: #000; }

.dashboard-main { padding: 28px 32px; min-height: 540px; }
.dashboard-tabhead {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.dashboard-h {
  font-family: var(--font-display); font-weight: 900; font-size: 28px;
  letter-spacing: -0.01em; text-transform: uppercase;
}
.dashboard-sub { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.dashboard-actions { display: flex; gap: 8px; }
.btn-sm {
  padding: 8px 14px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.6px; text-transform: uppercase;
}
.btn-sm.btn-primary { box-shadow: 0 4px 14px rgba(244,74,34,0.3); }

.kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 24px;
}
.kpi {
  padding: 18px; border-radius: 10px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
}
.kpi-label {
  font-family: var(--font-mono); font-size: 9px;
  color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase;
}
.kpi-val {
  font-family: var(--font-display); font-weight: 900; font-size: 28px;
  margin-top: 8px;
}
.kpi-delta { font-size: 11px; margin-top: 4px; }
.kpi-delta.up { color: var(--green); }
.kpi-delta.down { color: var(--orange); }

/* Dashboard table */
.dash-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.dash-table th {
  text-align: left; padding: 12px 14px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.dash-table td {
  padding: 14px; border-bottom: 1px solid var(--line);
}
.dash-table tr:hover td { background: rgba(255,255,255,0.02); }
.dash-table .avatar-cell { display: flex; align-items: center; gap: 10px; }
.dash-table .av {
  width: 28px; height: 28px; border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  display: grid; place-items: center;
}
.dash-name { font-weight: 600; font-size: 13px; }
.dash-email { font-size: 11px; color: var(--text-mute); margin-top: 2px; }

.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 6px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase;
}
.tag.going { background: rgba(46,204,113,0.1); color: var(--green); border: 1px solid rgba(46,204,113,0.3); }
.tag.maybe { background: rgba(255,210,63,0.1); color: var(--yellow); border: 1px solid rgba(255,210,63,0.3); }
.tag.vip { background: rgba(244,74,34,0.1); color: var(--orange); border: 1px solid rgba(244,74,34,0.3); }
.tag.pending { background: rgba(123,91,255,0.1); color: var(--purple); border: 1px solid rgba(123,91,255,0.3); }
.tag.approved { background: rgba(46,204,113,0.1); color: var(--green); border: 1px solid rgba(46,204,113,0.3); }

.action-btns { display: flex; gap: 6px; }
.icon-btn {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 11px; color: var(--text-dim);
  transition: all .15s;
}
.icon-btn:hover { background: rgba(244,74,34,0.15); color: var(--orange); border-color: var(--orange); }
.icon-btn.green:hover { background: rgba(46,204,113,0.15); color: var(--green); border-color: var(--green); }
.icon-btn.red:hover { background: rgba(244,74,34,0.15); color: #ff5a3c; border-color: #ff5a3c; }

/* Analytics chart */
.chart-block {
  padding: 24px; border-radius: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  margin-bottom: 20px;
}
.chart-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.chart-title { font-family: var(--font-display); font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; }
.chart-sub { font-size: 11px; color: var(--text-mute); font-family: var(--font-mono); letter-spacing: 1px; text-transform: uppercase; }

.funnel { display: flex; gap: 10px; align-items: flex-end; height: 200px; }
.funnel-bar {
  flex: 1; position: relative;
  background: linear-gradient(180deg, var(--orange), rgba(244,74,34,0.2));
  border-radius: 6px 6px 0 0;
  display: flex; flex-direction: column-reverse; padding: 8px 6px;
}
.funnel-bar .v {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: #fff;
}
.funnel-bar .l {
  position: absolute; bottom: -22px; left: 0; right: 0; text-align: center;
  font-family: var(--font-mono); font-size: 9px; color: var(--text-mute);
  letter-spacing: 1px; text-transform: uppercase;
}

.checkin {
  padding: 24px; border-radius: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
}
.checkin-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px;
  margin-top: 16px;
}
.checkin-cell {
  aspect-ratio: 1; border-radius: 3px;
  background: rgba(255,255,255,0.04);
}
.checkin-cell.l1 { background: rgba(244,74,34,0.2); }
.checkin-cell.l2 { background: rgba(244,74,34,0.4); }
.checkin-cell.l3 { background: rgba(244,74,34,0.7); }
.checkin-cell.l4 { background: var(--orange); }

.event-list-row {
  display: grid; grid-template-columns: 1fr auto auto auto auto;
  align-items: center; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.event-list-row:last-child { border-bottom: 0; }
.event-list-img {
  width: 64px; height: 48px; border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dim));
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  color: #fff;
}
.event-list-row .meta { display: flex; align-items: center; gap: 14px; }
.event-list-name { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.event-list-date { font-size: 12px; color: var(--text-mute); margin-top: 2px; }
.event-list-stat { text-align: right; }
.event-list-stat-v { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.event-list-stat-l { font-family: var(--font-mono); font-size: 9px; color: var(--text-mute); letter-spacing: 1.2px; text-transform: uppercase; }

@media (max-width: 920px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-side { display: none; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
}

/* ── Roles cards */
.roles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 50px;
}
.role-card {
  padding: 28px; border-radius: var(--r-md);
  background: var(--surface-0); border: 1px solid var(--line);
  transition: all .2s;
  cursor: pointer;
}
.role-card:hover {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(244,74,34,0.06), transparent 60%);
  transform: translateY(-4px);
}
.role-tag {
  display: inline-block;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(244,74,34,0.1); color: var(--orange);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
}
.role-card h4 {
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  margin-top: 18px; text-transform: uppercase; line-height: 1;
}
.role-card p { font-size: 13px; color: var(--text-dim); margin-top: 12px; line-height: 1.55; }
.role-card ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.role-card li { font-size: 12px; color: var(--text-dim); display: flex; gap: 8px; }
.role-card li::before { content: "↳"; color: var(--orange); }
@media (max-width: 920px) { .roles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .roles { grid-template-columns: 1fr; } }

/* ── Trust / Safety */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 50px;
}
.trust-card {
  padding: 32px; border-radius: var(--r-md);
  background: var(--surface-0); border: 1px solid var(--line);
}
.trust-card .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(244,74,34,0.08); border: 1px solid rgba(244,74,34,0.3);
  display: grid; place-items: center;
  color: var(--orange); font-size: 18px;
}
.trust-card h5 {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  margin-top: 22px; text-transform: uppercase; letter-spacing: 0.3px;
}
.trust-card p { font-size: 13px; color: var(--text-dim); margin-top: 10px; line-height: 1.55; }
@media (max-width: 920px) { .trust-grid { grid-template-columns: 1fr; } }

/* ── Pricing */
.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 50px;
}
.price-card {
  padding: 32px; border-radius: var(--r-md);
  background: var(--surface-0); border: 1px solid var(--line);
  position: relative;
}
.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(244,74,34,0.08), transparent 60%);
}
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute; top: -10px; right: 20px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--orange); color: #fff;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
}
.price-tier {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 2px; text-transform: uppercase;
}
.price-val {
  font-family: var(--font-display); font-weight: 900; font-size: 56px;
  margin-top: 16px; line-height: 1; letter-spacing: -0.03em;
}
.price-val small { font-size: 16px; color: var(--text-dim); font-weight: 500; letter-spacing: 0; }
.price-blurb { font-size: 13px; color: var(--text-dim); margin-top: 10px; }
.price-divider { height: 1px; background: var(--line); margin: 24px 0; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.price-feats li { display: flex; gap: 10px; font-size: 13px; color: var(--text-dim); }
.price-feats li::before { content: "✓"; color: var(--orange); font-weight: 700; }
.price-cta { margin-top: 24px; width: 100%; text-align: center; justify-content: center; }
@media (max-width: 920px) { .pricing { grid-template-columns: 1fr; } }

/* ── Testimonials */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 50px;
}
.testimonial {
  padding: 28px; border-radius: var(--r-md);
  background: var(--surface-0); border: 1px solid var(--line);
}
.testimonial p {
  font-size: 16px; line-height: 1.5; margin-bottom: 22px;
}
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .av {
  width: 38px; height: 38px; border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  display: grid; place-items: center;
}
.testimonial .who-name { font-weight: 700; font-size: 13px; }
.testimonial .who-role { font-size: 11px; color: var(--text-mute); margin-top: 2px; }
@media (max-width: 920px) { .testimonials { grid-template-columns: 1fr; } }

/* ── FAQ */
.faq-list { margin-top: 40px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 28px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq-q h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: -0.01em;
}
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-size: 18px; color: var(--text-dim);
  flex-shrink: 0;
  transition: transform .25s, background .25s, color .25s;
}
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); background: var(--orange); color: #fff; border-color: var(--orange); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0;
}
.faq-item.is-open .faq-a { max-height: 240px; padding: 0 0 28px; }
.faq-a p { color: var(--text-dim); font-size: 15px; line-height: 1.6; max-width: 700px; }

/* ── Big CTA */
.big-cta {
  background: var(--orange); color: #000;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(72px, 14vw, 200px);
  line-height: 0.88; letter-spacing: -0.05em;
  text-transform: uppercase;
}
.cta-form {
  display: flex; max-width: 600px; margin: 50px auto 0;
  background: #000; border-radius: var(--r-pill);
  padding: 8px;
}
.cta-form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: #fff; font-family: var(--font-display); font-size: 16px;
  padding: 12px 24px;
}
.cta-form input::placeholder { color: var(--text-mute); }
.cta-form button {
  background: #fff; color: #000;
  padding: 14px 32px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase;
}
.cta-form button:hover { transform: scale(1.02); }
.cta-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.waitlist-success {
  display: none;
  margin-top: 20px;
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.waitlist-success.is-shown { display: block; }

/* ── Footer */
.footer {
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-logo {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(72px, 16vw, 240px);
  letter-spacing: -0.04em; text-transform: uppercase;
  line-height: 0.85;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 60px;
  -webkit-text-stroke: 1px #2a2a2a;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-mute);
  letter-spacing: 1.5px; text-transform: uppercase;
  padding-top: 40px; border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 20px;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; }

/* ── Floating social proof */
.social-proof {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 90;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 10px; border-radius: var(--r-pill);
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  font-size: 12px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.social-proof.is-visible { opacity: 1; transform: translateY(0); }
.social-proof .av {
  width: 32px; height: 32px; border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  display: grid; place-items: center;
}
.social-proof .who { font-weight: 700; }
.social-proof .city { color: var(--text-dim); }
.social-proof .action { color: var(--text-dim); display: block; margin-top: 2px; }
.social-proof .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); animation: pulse 1.6s infinite; margin-left: 6px; }
@media (max-width: 640px) { .social-proof { left: 12px; bottom: 12px; padding: 8px 14px 8px 8px; font-size: 11px; } }

/* ── Right drawer (preview / waitlist) */
.drawer-trigger {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 90;
  width: 36px; height: 100px;
  background: rgba(20,20,20,0.92); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-right: 0;
  border-radius: 12px 0 0 12px;
  display: grid; place-items: center;
  font-size: 18px; color: var(--orange);
}
.drawer-trigger:hover { background: rgba(30,30,30,0.92); }

/* ── Section header common */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 30px; gap: 40px; flex-wrap: wrap;
}
.section-head .right { max-width: 460px; }

/* ── Splash logo (footer-like big text background) */
.brand-mega {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -80px;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(160px, 28vw, 480px);
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.05em; text-transform: uppercase;
  pointer-events: none; z-index: 0;
  white-space: nowrap;
}

/* fade-in on view */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* hide audience-specific blocks */
.b2b-only { display: none; }
body.is-b2b .b2b-only { display: revert; }
body.is-b2b .b2c-only { display: none; }

/* Modal */
.modal-back {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.78); backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-back.is-open { display: flex; }
.modal {
  width: 100%; max-width: 460px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, #161310, #0a0807);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 32px 30px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(244,74,34,0.15), 0 0 60px rgba(244,74,34,0.08);
}
.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid var(--line);
  font-size: 20px; line-height: 1;
  display: grid; place-items: center;
  z-index: 2;
  transition: background .15s, border-color .15s;
}
.modal-close:hover { background: rgba(244,74,34,0.2); border-color: var(--orange); }
.modal-head { margin-bottom: 22px; padding-right: 36px; }
.modal-eyebrow {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px;
}
.modal h3 {
  font-family: var(--font-display); font-weight: 900; font-size: 30px;
  text-transform: uppercase; letter-spacing: -0.01em; line-height: 1;
}
.modal p { color: var(--text-dim); font-size: 13.5px; line-height: 1.5; margin-top: 10px; }

/* Demo form — dense, high-contrast, single source of vertical rhythm */
.demo-form { display: flex; flex-direction: column; gap: 13px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.modal-field { display: flex; flex-direction: column; gap: 6px; margin-top: 0; }
.modal-field label {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-dim);
  letter-spacing: 1.4px; text-transform: uppercase;
}
.modal-field input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  border-radius: 11px; padding: 13px 15px;
  color: #fff; font-size: 16px; outline: none; width: 100%;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.modal-field input::placeholder { color: var(--text-mute); }
.modal-field input:focus {
  border-color: var(--orange);
  background: rgba(244,74,34,0.06);
  box-shadow: 0 0 0 3px rgba(244,74,34,0.18);
}
.demo-submit {
  width: 100%; justify-content: center;
  margin-top: 6px; padding: 16px;
  font-size: 14px;
}
.modal-divider {
  display: flex; align-items: center; gap: 12px; margin: 24px 0 16px;
  font-family: var(--font-mono); font-size: 10px; color: var(--text-mute); letter-spacing: 2px;
}
.modal-divider::before, .modal-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.modal-social {
  display: flex; gap: 8px;
}
.modal-social button {
  flex: 1; padding: 12px; border-radius: 10px;
  background: var(--surface-1); border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  color: #fff; letter-spacing: 0.5px;
  transition: background .15s;
}
.modal-social button:hover { background: var(--surface-2); }

@media (max-width: 560px) {
  .modal-back { padding: 0; align-items: flex-end; }
  .modal {
    max-width: 100%;
    max-height: 92dvh;
    border-radius: 22px 22px 0 0;
    border-bottom: 0;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
  }
  .modal-head { margin-bottom: 16px; }
  .modal h3 { font-size: 26px; }
  .modal p { font-size: 13px; }
  .demo-form { gap: 11px; }
  .modal-field input { padding: 12px 14px; }
}

/* ── About section */
.about-head { max-width: 900px; margin: 0 auto 56px; text-align: center; }
.about-head .section-num { justify-content: center; }
.about-head .section-title { max-width: none; margin: 24px auto 0; }
.about-head .section-desc { margin: 28px auto 0; text-align: center; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.about-card {
  padding: 36px 32px; border-radius: var(--r-md);
  background: var(--surface-0); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.about-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.about-tag {
  display: inline-block; padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--orange-soft); color: var(--orange);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.about-card p { font-size: 17px; line-height: 1.55; color: var(--text-dim); }
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }

/* ── Book a demo CTA */
.demo-cta {
  position: relative;
  padding: 80px 40px;
  border-radius: 28px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(244,74,34,0.14), transparent 70%),
    var(--surface-0);
  border: 1px solid var(--line);
  overflow: hidden;
}
.demo-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.6), transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.6), transparent 75%);
  pointer-events: none;
}
.demo-cta-inner { position: relative; z-index: 1; text-align: center; }

.demo-success {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.4);
  color: var(--green);
  font-size: 14px; font-weight: 600;
  text-align: center;
}
.demo-success.is-shown { display: block; }
@media (max-width: 720px) { .demo-cta { padding: 56px 24px; } }
