:root {
  color-scheme: dark;
  --bg: #100b1d;
  --bg-deep: #090710;
  --panel: rgba(31, 23, 48, 0.78);
  --panel-solid: #1d1730;
  --panel-soft: rgba(255, 255, 255, 0.045);
  --ink: #fffaf3;
  --muted: #b9b0c6;
  --muted-deep: #81788d;
  --pink: #f25ab5;
  --purple: #8251ed;
  --purple-bright: #9c66ff;
  --mint: #5ce7bd;
  --orange: #ffb45f;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.075);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 55% -15%, rgba(108, 61, 197, 0.37), transparent 34rem),
    linear-gradient(180deg, #130d23 0%, var(--bg-deep) 23%, #100a1b 61%, #09070f 100%);
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, p { margin-top: 0; }

.page-glow {
  position: absolute;
  z-index: -1;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.14;
  pointer-events: none;
}
.glow-one { top: 45rem; left: -20rem; background: var(--pink); }
.glow-two { top: 170rem; right: -21rem; background: var(--purple); }
.glow-three { top: 360rem; left: -22rem; background: var(--mint); opacity: 0.08; }

.site-header {
  width: min(var(--max), calc(100% - 40px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.site-header nav { display: flex; gap: 27px; margin-left: auto; }
.site-header nav a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 160ms ease;
}
.site-header nav a:hover { color: var(--ink); }
.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease;
}
.header-cta:hover { border-color: rgba(92,231,189,0.5); background: rgba(92,231,189,0.06); }

main { width: 100%; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c9bfd4;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(92, 231, 189, 0.75);
}
h1 em, .section-heading h2 em, .flow-intro h2 em, .organizer-copy h2 em {
  font-style: normal;
  background: linear-gradient(105deg, #ffffff 0%, #f49dce 33%, #a982f4 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 13px;
  font-size: 0.85rem;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: #130d1b;
  background: linear-gradient(110deg, #74efc8 0%, #b6efd8 100%);
  box-shadow: 0 15px 45px rgba(70, 221, 174, 0.16);
}
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,0.04); }
.app-surface {
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(150deg, rgba(54, 42, 81, 0.96), rgba(25, 19, 40, 0.98));
  box-shadow: 0 34px 90px rgba(0,0,0,0.38), inset 0 1px rgba(255,255,255,0.045);
}

/* Hero */
.hero {
  width: min(var(--max), calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 58px;
  padding: 70px 0 102px;
}
.hero-copy, .hero-product { min-width: 0; }
.hero h1 {
  max-width: 720px;
  margin: 21px 0 25px;
  font-size: clamp(3.5rem, 6.2vw, 6.45rem);
  line-height: 0.92;
  letter-spacing: -0.071em;
}
.hero-lede {
  max-width: 630px;
  color: #c8bfce;
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.66;
}
.hero-actions { width: min(620px, 100%); display: grid; gap: 14px; margin-top: 32px; }
.hero-demo-cta {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 112px;
  overflow: hidden;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 9% 20%, rgba(92,231,189,0.28), transparent 31%),
    linear-gradient(115deg, rgba(95,53,190,0.98), rgba(181,67,183,0.95) 58%, rgba(225,76,154,0.94));
  box-shadow: 0 24px 65px rgba(130,81,237,0.32), inset 0 1px rgba(255,255,255,0.18);
  font: inherit;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.hero-demo-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 24%, rgba(255,255,255,0.14) 48%, transparent 70%);
  transform: translateX(-110%);
  animation: hero-demo-sheen 5.5s 1.8s ease-in-out infinite;
}
.hero-demo-cta:hover { transform: translateY(-3px) scale(1.006); border-color: rgba(255,255,255,0.46); box-shadow: 0 30px 80px rgba(130,81,237,0.42), inset 0 1px rgba(255,255,255,0.2); }
.hero-demo-cta:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }
.hero-demo-play {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 50%;
  color: #16241f;
  background: linear-gradient(145deg, #9ff5dc, var(--mint));
  box-shadow: 0 12px 32px rgba(30,25,45,0.28), 0 0 0 7px rgba(255,255,255,0.08);
}
.hero-demo-play::after { position: absolute; inset: -8px; content: ""; border: 1px solid rgba(133,244,212,0.52); border-radius: 50%; animation: hero-demo-pulse 2.6s ease-out infinite; }
.hero-demo-play svg { width: 27px; height: 27px; fill: currentColor; }
.hero-demo-copy { min-width: 0; display: grid; gap: 4px; }
.hero-demo-copy > * { min-width: 0; overflow-wrap: anywhere; }
.hero-demo-copy small { color: #d9fff4; font-size: 0.62rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.hero-demo-copy strong { font-size: clamp(1.35rem, 2.2vw, 1.78rem); line-height: 1.05; letter-spacing: -0.035em; }
.hero-demo-copy > span { color: rgba(255,255,255,0.78); font-size: 0.72rem; line-height: 1.4; }
.hero-demo-arrow { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; background: rgba(15,10,27,0.18); font-size: 1.1rem; }
.hero-secondary-action { display: flex; align-items: center; gap: 17px; }
.hero-create-cta { flex: 0 0 auto; min-height: 48px; border-color: rgba(255,255,255,0.18); }
.hero-secondary-action p { display: flex; align-items: center; gap: 6px; margin: 0; color: #958ba1; font-size: 0.7rem; line-height: 1.4; }
.hero-secondary-action p span { color: var(--mint); font-weight: 900; }
.store-downloads { display: grid; gap: 10px; margin-top: 4px; }
.store-downloads > p { display: flex; align-items: center; gap: 8px; margin: 0; color: #a89eaf; font-size: 0.7rem; font-weight: 750; }
.store-downloads > p span { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px rgba(92,231,189,0.7); }
.store-badges { display: flex; flex-wrap: wrap; gap: 11px; }
.store-badge {
  width: 177px;
  min-height: 58px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #a6a6a6;
  border-radius: 9px;
  color: white;
  background: #050505;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.store-badge:hover { transform: translateY(-2px); border-color: white; box-shadow: 0 16px 36px rgba(0,0,0,0.32); }
.store-badge:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.store-badge svg { width: 27px; height: 32px; flex: 0 0 auto; }
.store-badge-apple { fill: white; }
.store-badge span { min-width: 0; display: grid; gap: 1px; }
.store-badge small { color: white; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1; }
.store-badge strong { color: white; font-size: 1.17rem; font-weight: 520; letter-spacing: -0.035em; line-height: 1.08; white-space: nowrap; }
.store-badge:last-child strong { font-size: 1.08rem; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 22px;
  margin-top: 30px;
  color: #9e95aa;
  font-size: 0.78rem;
}
.hero-proof b { color: var(--mint); margin-right: 5px; }

.hero-product {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  padding-top: 54px;
}
.hero-aura {
  position: absolute;
  inset: 3% -14% 2%;
  border-radius: 48%;
  background:
    radial-gradient(circle at 68% 22%, rgba(138, 80, 236, 0.66), transparent 35%),
    radial-gradient(circle at 29% 77%, rgba(232, 67, 160, 0.47), transparent 40%);
  filter: blur(55px);
  opacity: 0.72;
}
.hero-event-bar {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 3%;
  right: 1%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 17px;
  background: rgba(26, 20, 42, 0.87);
  box-shadow: 0 25px 70px rgba(0,0,0,0.25);
  backdrop-filter: blur(16px);
}
.hero-event-bar div { display: grid; gap: 3px; }
.hero-event-bar small, .match-card-heading small {
  color: #a79caf;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.hero-event-bar strong { font-size: 0.86rem; }
.event-live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 15px var(--mint); }
.live-pill, .active-pill { color: var(--mint); background: rgba(92,231,189,0.11); border-radius: 999px; font-size: 0.66rem; font-weight: 850; }
.live-pill { margin-left: auto; padding: 5px 9px; }

.hero-match-card {
  position: relative;
  z-index: 3;
  width: 91%;
  max-width: 490px;
  padding: 27px;
  border-radius: 27px;
  transform: rotate(0.8deg);
}
.match-card-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.match-card-heading h2, .match-card-heading h5 { margin: 5px 0 0; letter-spacing: -0.045em; }
.match-card-heading h2 { font-size: 1.55rem; }
.match-card-heading h5 { font-size: 1.22rem; }
.score-ring {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  position: relative;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, #46316a 55%, transparent 57%), conic-gradient(var(--mint), #65c8ea 35%, var(--purple) 63%, var(--pink) 90%, rgba(255,255,255,.13) 0);
  text-align: center;
}
.score-ring::after { content: ""; position: absolute; inset: 5px; border-radius: inherit; border: 1px solid rgba(255,255,255,0.08); }
.score-ring strong { display: inline; font-size: 1.35rem; line-height: 1; }
.score-ring span { color: #b9afc4; font-size: 0.62rem; }
.available-now { margin: -8px 0 18px; color: var(--mint); font-size: 0.71rem; font-weight: 800; }
.available-now span { margin-right: 7px; font-size: 1rem; }
.match-verdict { display: flex; gap: 11px; padding: 15px; border-radius: 15px; background: rgba(194, 76, 178, 0.13); }
.match-verdict > span { padding-top: 2px; }
.match-verdict p { margin: 0; color: #c4b9cd; font-size: 0.76rem; line-height: 1.5; }
.match-verdict strong { display: block; margin-bottom: 4px; color: white; font-size: 0.83rem; }
.match-detail-line { padding: 16px 0 15px; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--mint); font-size: 0.75rem; font-weight: 850; }
.match-detail-line span { margin-right: 8px; }
.match-action-copy { display: flex; gap: 10px; align-items: flex-start; padding: 15px 0 0; }
.match-action-copy p { margin: 0; color: #b6aabd; font-size: 0.73rem; line-height: 1.45; }
.match-action-copy strong { display: block; color: white; font-size: 0.82rem; }
.match-button {
  min-height: 48px;
  margin-top: 15px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  color: white;
  background: linear-gradient(105deg, #7a41ff, #ed4a98);
  font-size: 0.76rem;
  font-weight: 900;
}
.hero-float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(20, 15, 32, 0.9);
  box-shadow: 0 18px 48px rgba(0,0,0,0.38);
  backdrop-filter: blur(14px);
}
.hero-float-card > span { color: var(--mint); }
.hero-float-card p { margin: 0; display: grid; gap: 2px; }
.hero-float-card small { color: #8d8498; font-size: 0.48rem; font-weight: 850; letter-spacing: 0.13em; }
.hero-float-card strong { font-size: 0.66rem; }
.hero-float-left { left: -1%; bottom: 12%; transform: rotate(-3deg); }
.hero-float-right { right: -2%; bottom: 2%; transform: rotate(2.5deg); }

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #9e94a9;
  background: rgba(255,255,255,0.015);
}
.signal-strip p { margin: 0; color: white; font-size: 0.84rem; font-weight: 800; }
.signal-strip div { display: flex; align-items: center; gap: 17px; font-size: 0.74rem; font-weight: 750; letter-spacing: 0.04em; }
.signal-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--pink); }

/* Value */
.section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 132px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 0.58fr; align-items: end; column-gap: 70px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 24px; }
.section-heading h2, .flow-intro h2, .organizer-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.value-section { padding-bottom: 108px; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 65px; }
.value-card {
  position: relative;
  min-width: 0;
  min-height: 790px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
}
.attendee-value {
  background: radial-gradient(circle at 82% 95%, rgba(235,76,167,0.23), transparent 38%), linear-gradient(145deg, #24182e, #15101f);
}
.organizer-value {
  background: radial-gradient(circle at 84% 94%, rgba(92,231,189,0.16), transparent 40%), linear-gradient(145deg, #1d1935, #12101e);
}
.value-card-copy h3 { max-width: 480px; margin: 26px 0 15px; font-size: clamp(2rem, 3.4vw, 3.15rem); line-height: 1.02; letter-spacing: -0.052em; }
.value-card-copy > p { color: var(--muted); font-size: 0.98rem; line-height: 1.66; }
.value-card ul { display: grid; gap: 14px; padding: 0; margin: 28px 0 0; list-style: none; }
.value-card li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.value-card li > span { color: var(--pink); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.08em; padding-top: 3px; }
.organizer-value li > span { color: var(--mint); }
.value-card li div { display: grid; gap: 3px; }
.value-card li strong { font-size: 0.86rem; }
.value-card li small { color: #9d93a8; font-size: 0.78rem; line-height: 1.45; }
.attendee-outcome, .organizer-outcome { margin-top: auto; padding: 22px; border-radius: 23px; }
.outcome-kicker { margin-bottom: 7px; color: var(--mint); font-size: 0.64rem; font-weight: 850; letter-spacing: 0.13em; }
.attendee-outcome h4 { margin-bottom: 17px; font-size: 1.13rem; letter-spacing: -0.03em; }
.outcome-person { display: grid; grid-template-columns: 42px 1fr 18px; align-items: center; gap: 11px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.outcome-person p { display: grid; gap: 3px; margin: 0; }
.outcome-person strong { font-size: 0.82rem; }
.outcome-person small { color: #a79dac; font-size: 0.69rem; }
.outcome-person > b { color: var(--mint); font-size: 0.8rem; }
.person-avatar { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; color: white; font-size: 0.63rem; font-weight: 900; }
.avatar-maya { background: linear-gradient(145deg, var(--pink), var(--purple)); }
.avatar-jordan { background: linear-gradient(145deg, var(--mint), #4c6ed7); }
.avatar-sam { background: linear-gradient(145deg, var(--orange), #ca4f7b); }
.outcome-note { margin: 14px 0 0; color: #968c9f; font-size: 0.68rem; line-height: 1.45; }
.outcome-note span { color: var(--mint); margin-right: 5px; }
.mini-dashboard-head { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.mini-dashboard-head > div { display: grid; gap: 8px; }
.mini-dashboard-head strong { font-size: 1rem; }
.active-pill { width: max-content; padding: 6px 9px; letter-spacing: 0.04em; }
.event-mark { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); font-size: 1.2rem; }
.mini-metric-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 19px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.09); border-bottom: 1px solid rgba(255,255,255,0.09); }
.mini-metric-row div { display: grid; gap: 3px; padding: 0 10px; border-right: 1px solid rgba(255,255,255,0.08); }
.mini-metric-row div:last-child { border-right: 0; }
.mini-metric-row span { color: var(--mint); font-size: 0.65rem; }
.mini-metric-row strong { font-size: 1.15rem; }
.mini-metric-row small { color: #9c92a8; font-size: 0.62rem; }
.mini-impact { margin-top: 17px; }
.mini-impact > p { display: flex; justify-content: space-between; margin-bottom: 13px; }
.mini-impact > p strong { font-size: 0.74rem; }
.mini-impact > p span { color: var(--mint); font-size: 0.55rem; font-weight: 800; }
.mini-impact > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mini-impact > div span { display: grid; gap: 3px; padding: 10px; border-radius: 11px; background: rgba(255,255,255,0.045); }
.mini-impact b { font-size: 0.95rem; }
.mini-impact small { color: #9c92a8; font-size: 0.59rem; }

/* Flow */
.flow-section { position: relative; padding-top: 118px; }
.flow-intro { max-width: 830px; margin: 0 auto 64px; text-align: center; }
.flow-intro .eyebrow { justify-content: center; margin-bottom: 25px; }
.flow-intro h2 { font-size: clamp(3rem, 6vw, 5.9rem); }
.flow-intro > p { max-width: 680px; margin: 25px auto 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.flow-rail { position: absolute; top: 380px; bottom: 190px; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(255,255,255,0.12) 6%, rgba(255,255,255,0.12) 94%, transparent); pointer-events: none; }
.flow-rail span { position: sticky; top: 45vh; display: block; width: 7px; height: 7px; margin-left: -3px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 18px var(--mint); }
.flow-step {
  position: relative;
  min-height: 750px;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 82px;
  align-items: center;
  padding: 92px 0;
  border-top: 1px solid var(--line-soft);
}
.flow-step:last-child { border-bottom: 1px solid var(--line-soft); }
.flow-step-ai, .flow-step-result { grid-template-columns: 1.17fr 0.83fr; }
.flow-step-ai .flow-visual, .flow-step-result .flow-visual { order: -1; }
.flow-copy { position: relative; z-index: 3; }
.flow-number { display: block; margin-bottom: 36px; color: #655c6e; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }
.flow-copy h3 { margin: 24px 0 20px; font-size: clamp(2.55rem, 4.5vw, 4.5rem); line-height: 0.96; letter-spacing: -0.061em; }
.flow-copy > p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.flow-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.flow-proof span { padding: 8px 10px; border: 1px solid rgba(92,231,189,0.17); border-radius: 999px; color: #bcdacf; background: rgba(92,231,189,0.055); font-size: 0.72rem; font-weight: 750; }
.privacy-inline { margin-top: 24px; padding: 15px; border: 1px solid rgba(92,231,189,0.13); border-radius: 14px; background: rgba(92,231,189,0.05); font-size: 0.78rem; }
.privacy-inline > span { color: var(--mint); margin-right: 7px; }
.privacy-inline strong { color: white; }
.fine-print { margin-top: 23px; color: #92889d !important; font-size: 0.75rem !important; }
.flow-visual { position: relative; min-width: 0; min-height: 620px; display: grid; place-items: center; }
.product-capture {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  display: grid;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 31px;
  background: linear-gradient(150deg, rgba(52,40,78,0.96), rgba(20,15,33,0.98));
  box-shadow: 0 42px 100px rgba(0,0,0,0.52), inset 0 1px rgba(255,255,255,0.06);
}
.product-capture::before {
  position: absolute;
  z-index: -1;
  inset: 12% -11%;
  content: "";
  border-radius: 42%;
  background: radial-gradient(circle, rgba(130,81,237,0.38), transparent 68%);
  filter: blur(35px);
}
.product-capture-label {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(92,231,189,0.18);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(92,231,189,0.07);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-capture img { width: 100%; height: auto; border-radius: 23px; }
.product-capture-matches { width: min(390px, 100%); }

/* QR step */
.qr-stage::before, .ai-stage::before, .result-stage::before {
  content: "";
  position: absolute;
  inset: 7% 5%;
  border-radius: 45%;
  background: radial-gradient(circle, rgba(123,75,221,0.27), transparent 65%);
  filter: blur(30px);
}
.phone-shell {
  position: relative;
  z-index: 2;
  width: 330px;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 48px;
  background:
    radial-gradient(circle at 75% 25%, rgba(104,61,203,0.62), transparent 39%),
    radial-gradient(circle at 15% 80%, rgba(224,65,148,0.34), transparent 42%),
    #17112b;
  box-shadow: 0 42px 100px rgba(0,0,0,0.55), inset 0 0 0 7px rgba(0,0,0,0.3);
}
.phone-island { position: absolute; z-index: 3; top: 14px; left: 50%; width: 104px; height: 29px; border-radius: 999px; background: #030304; transform: translateX(-50%); }
.phone-content { position: relative; z-index: 2; padding: 58px 25px 30px; }
.phone-brand { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 850; }
.phone-brand img { width: 26px; height: 26px; border-radius: 8px; }
.phone-eyebrow { margin: 42px 0 12px; color: #b7a9c4; font-size: 0.61rem; font-weight: 850; letter-spacing: 0.14em; }
.phone-content h4 { margin-bottom: 20px; font-size: 1.82rem; line-height: 1.02; letter-spacing: -0.055em; }
.qr-card { position: relative; width: 218px; height: 218px; margin: 30px auto 15px; padding: 16px; border-radius: 25px; background: white; box-shadow: 0 22px 60px rgba(0,0,0,0.32); }
.qr-code { width: 100%; height: 100%; }
.qr-corner { position: absolute; width: 24px; height: 24px; border-color: var(--mint); border-style: solid; }
.qr-corner-one { top: -8px; left: -8px; border-width: 3px 0 0 3px; border-radius: 8px 0 0; }
.qr-corner-two { top: -8px; right: -8px; border-width: 3px 3px 0 0; border-radius: 0 8px 0 0; }
.qr-corner-three { bottom: -8px; left: -8px; border-width: 0 0 3px 3px; border-radius: 0 0 0 8px; }
.qr-corner-four { right: -8px; bottom: -8px; border-width: 0 3px 3px 0; border-radius: 0 0 8px; }
.event-code { margin: 24px 0 4px; color: var(--mint); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1rem; font-weight: 900; letter-spacing: 0.11em; text-align: center; }
.qr-phone .phone-content > small { display: block; color: #9b90a7; font-size: 0.68rem; text-align: center; }
.scan-beam { position: absolute; z-index: 4; top: 46%; left: 17%; right: 17%; height: 2px; background: linear-gradient(90deg, transparent, var(--mint), transparent); box-shadow: 0 0 18px var(--mint); animation: scan 3.2s ease-in-out infinite; }
.scan-success, .result-toast {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 15px;
  background: rgba(18,13,30,0.92);
  box-shadow: 0 22px 55px rgba(0,0,0,0.45);
  backdrop-filter: blur(15px);
}
.scan-success { right: 2%; bottom: 13%; }
.scan-success > span, .result-toast > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #0e1714; background: var(--mint); font-size: 0.75rem; font-weight: 900; }
.scan-success p, .result-toast p { display: grid; gap: 2px; margin: 0; }
.scan-success small, .result-toast small { color: #8f849a; font-size: 0.48rem; font-weight: 850; letter-spacing: 0.12em; }
.scan-success strong, .result-toast strong { font-size: 0.7rem; }

/* AI step */
.ai-stage { display: block; min-height: 665px; padding: 25px 16px; }
.ai-stage-top { position: relative; z-index: 2; display: grid; gap: 4px; margin: 0 20px 17px; }
.ai-stage-top span { font-size: 1.05rem; font-weight: 850; }
.ai-stage-top small { color: #93899d; font-size: 0.67rem; }
.ai-options { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.ai-option { min-width: 0; min-height: 125px; padding: 15px 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; border: 1px solid var(--line); border-radius: 18px; background: rgba(25,19,39,0.86); box-shadow: 0 15px 35px rgba(0,0,0,0.22); }
.ai-option p { min-width: 0; display: grid; gap: 3px; margin: 0; }
.ai-option strong { font-size: 0.78rem; }
.ai-option small { color: #a097aa; font-size: 0.59rem; }
.ai-option > b { margin-top: auto; color: var(--mint); font-size: 0.72rem; }
.ai-mark { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 10px; font-size: 1rem; font-weight: 900; }
.chatgpt-mark { color: #e9fff8; background: #1d8f76; }
.claude-mark { color: #36261d; background: #d99067; }
.gemini-mark { color: white; background: linear-gradient(145deg, #4b82ef, #9a5bdd 58%, #e16aaf); }
.profile-draft { position: relative; z-index: 3; width: 88%; margin: -2px auto 0; padding: 20px; border-radius: 23px; transform: translateY(20px); }
.draft-head { display: flex; justify-content: space-between; gap: 15px; align-items: center; margin-bottom: 15px; }
.draft-head p { display: grid; gap: 4px; margin: 0; }
.draft-head small { color: var(--mint); font-size: 0.5rem; font-weight: 850; letter-spacing: 0.13em; }
.draft-head strong { font-size: 0.83rem; }
.draft-head > span { padding: 5px 8px; border-radius: 999px; color: #c6b7d3; background: rgba(255,255,255,0.07); font-size: 0.52rem; }
.draft-field { display: grid; gap: 5px; padding: 13px; margin-top: 9px; border: 1px solid rgba(255,255,255,0.08); border-radius: 13px; background: rgba(255,255,255,0.035); }
.draft-field small { color: #9c90a8; font-size: 0.61rem; }
.draft-field strong { font-size: 0.74rem; line-height: 1.48; }
.draft-consent { display: flex; gap: 9px; align-items: center; margin-top: 13px; padding: 11px; border-radius: 12px; background: rgba(92,231,189,0.07); }
.draft-consent > span { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #101a17; background: var(--mint); font-size: 0.65rem; font-weight: 900; }
.draft-consent p { display: grid; gap: 2px; margin: 0; }
.draft-consent strong { font-size: 0.7rem; }
.draft-consent small { color: #91a9a0; font-size: 0.59rem; }
.approve-button { min-height: 40px; margin-top: 12px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border-radius: 11px; color: #121817; background: linear-gradient(110deg, #73ebc4, #b2e8d4); font-size: 0.66rem; font-weight: 900; }

/* Matching engine step */
.engine-stage { overflow: hidden; border: 1px solid var(--line); border-radius: 31px; background: radial-gradient(circle at 50% 45%, rgba(124,73,221,0.27), transparent 26%), linear-gradient(145deg, rgba(28,21,44,0.88), rgba(13,10,22,0.94)); }
.engine-grid { position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 33px 33px; mask-image: radial-gradient(circle, #000 25%, transparent 75%); }
.engine-core { position: absolute; z-index: 5; left: 50%; top: 45%; width: 142px; height: 142px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; background: rgba(23,17,39,0.92); box-shadow: 0 0 70px rgba(132,78,234,0.38), inset 0 0 30px rgba(255,255,255,0.035); transform: translate(-50%,-50%); }
.engine-core img { width: 43px; height: 43px; border-radius: 13px; }
.engine-core strong { margin-top: 7px; font-size: 0.8rem; }
.engine-core small { margin-top: 3px; color: #90859c; font-size: 0.5rem; }
.engine-core i { position: absolute; bottom: 17px; width: 35px; height: 3px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,0.09); }
.engine-core i::after { content: ""; display: block; width: 50%; height: 100%; border-radius: inherit; background: var(--mint); animation: engine-progress 2s ease-in-out infinite alternate; }
.engine-orbit { position: absolute; z-index: 2; left: 50%; top: 45%; border: 1px solid rgba(255,255,255,0.09); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 290px; height: 290px; animation: orbit-spin 18s linear infinite; }
.orbit-two { width: 455px; height: 455px; border-style: dashed; animation: orbit-spin-reverse 28s linear infinite; }
.engine-orbit span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 13px var(--mint); }
.engine-orbit span:first-child { top: -4px; left: 50%; }
.engine-orbit span:nth-child(2) { right: 9%; bottom: 19%; background: var(--pink); box-shadow: 0 0 13px var(--pink); }
.engine-orbit span:last-child { left: 5%; top: 29%; background: var(--purple-bright); box-shadow: 0 0 13px var(--purple-bright); }
.profile-node { position: absolute; z-index: 4; min-width: 122px; display: flex; align-items: center; gap: 9px; padding: 9px 11px; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; background: rgba(26,20,42,0.92); box-shadow: 0 15px 40px rgba(0,0,0,0.32); }
.profile-node > span { width: 31px; height: 31px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; color: white; background: linear-gradient(145deg, var(--pink), var(--purple)); font-size: 0.68rem; font-weight: 900; }
.profile-node p { display: grid; gap: 2px; margin: 0; }
.profile-node strong { font-size: 0.7rem; }
.profile-node small { color: #9a90a4; font-size: 0.55rem; }
.node-alex { left: 5%; top: 11%; }
.node-maya { right: 4%; top: 14%; }
.node-jordan { left: 4%; bottom: 22%; }
.node-sam { right: 5%; bottom: 20%; }
.node-maya > span { background: linear-gradient(145deg, var(--mint), #4e68d2); }
.node-jordan > span { background: linear-gradient(145deg, var(--orange), #d04d83); }
.node-sam > span { background: linear-gradient(145deg, #6287ef, var(--purple)); }
.match-signal { position: absolute; z-index: 6; display: flex; align-items: center; gap: 9px; padding: 9px 12px; border: 1px solid rgba(92,231,189,0.16); border-radius: 13px; background: rgba(19,15,31,0.92); box-shadow: 0 15px 40px rgba(0,0,0,0.34); animation: signal-float 3.4s ease-in-out infinite; }
.match-signal > span { color: var(--mint); font-size: 0.78rem; font-weight: 900; }
.match-signal p { display: grid; gap: 2px; margin: 0; }
.match-signal small { color: #95899f; font-size: 0.49rem; font-weight: 850; letter-spacing: 0.11em; }
.match-signal strong { font-size: 0.63rem; }
.signal-shared { left: 17%; top: 33%; }
.signal-value { right: 10%; top: 36%; animation-delay: -1.1s; }
.signal-score { left: 37%; bottom: 7%; animation-delay: -2.2s; }
.signal-score > span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(92,231,189,0.36); border-radius: 50%; font-size: 0.56rem; }

/* Result step */
.result-stage { min-height: 785px; }
.result-phone { width: 352px; min-height: 755px; }
.result-content { padding-left: 20px; padding-right: 20px; }
.result-content .phone-eyebrow { margin-top: 30px; }
.mint-text { color: var(--mint); }
.result-content > h4 { margin-bottom: 8px; font-size: 1.8rem; }
.phone-subhead { margin-bottom: 19px; color: #b8aec2; font-size: 0.74rem; line-height: 1.5; }
.app-match-card { padding: 17px; border-radius: 21px; }
.compact-ring { width: 60px; height: 60px; }
.compact-ring strong { font-size: 1.1rem; }
.app-match-card .available-now { margin-top: -5px; margin-bottom: 12px; font-size: 0.63rem; }
.app-match-card .match-verdict { padding: 12px; }
.app-match-card .match-verdict p { font-size: 0.66rem; }
.app-match-card .match-verdict strong { font-size: 0.73rem; }
.app-match-card .match-detail-line { padding: 13px 0; font-size: 0.62rem; }
.app-match-card .match-action-copy { padding-top: 12px; }
.app-match-card .match-action-copy p { font-size: 0.64rem; }
.app-match-card .match-action-copy strong { font-size: 0.72rem; }
.app-match-card .match-button { min-height: 42px; font-size: 0.65rem; }
.rank-note { display: block; margin-top: 12px; color: #9a8fa5; font-size: 0.62rem; line-height: 1.4; text-align: center; }
.result-toast { right: -1%; bottom: 11%; }

/* Organizer dashboard */
.organizer-section {
  position: relative;
  overflow: hidden;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 78% 40%, rgba(109,63,203,0.24), transparent 32%), radial-gradient(circle at 20% 100%, rgba(92,231,189,0.09), transparent 34%), rgba(255,255,255,0.018);
}
.organizer-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; min-height: 980px; padding: 130px 0; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 68px; align-items: center; }
.organizer-copy h2 { margin-top: 26px; }
.organizer-lede { margin: 25px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.organizer-features { display: grid; gap: 0; margin: 36px 0 38px; border-top: 1px solid var(--line); }
.organizer-features > div { display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.organizer-features > div > span { color: var(--mint); font-size: 0.61rem; font-weight: 900; padding-top: 3px; }
.organizer-features p { display: grid; gap: 5px; margin: 0; }
.organizer-features strong { font-size: 0.9rem; }
.organizer-features small { color: #9d93a8; font-size: 0.78rem; line-height: 1.5; }
.organizer-platform-note { display: flex; align-items: flex-start; gap: 8px; margin: 17px 0 0; color: #9f95aa; font-size: 0.74rem; line-height: 1.5; }
.organizer-platform-note span { color: var(--mint); font-weight: 900; }
.dashboard-shell { position: relative; padding: 28px; border-radius: 32px; }
.dashboard-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 29px; color: #8f859a; }
.dashboard-event-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 21px; }
.dashboard-event-head h3 { margin: 11px 0 4px; font-size: 2rem; line-height: 1; letter-spacing: -0.055em; }
.dashboard-event-head p { margin: 0; color: #a99fb4; font-size: 0.75rem; }
.dashboard-event-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); font-size: 1.8rem; }
.dashboard-card { margin-top: 13px; padding: 20px; border: 1px solid rgba(255,255,255,0.11); border-radius: 22px; background: rgba(255,255,255,0.048); }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); }
.dashboard-metrics > div { display: grid; gap: 5px; padding: 3px 17px; border-right: 1px solid rgba(255,255,255,0.08); }
.dashboard-metrics > div:first-child { padding-left: 4px; }
.dashboard-metrics > div:last-child { border-right: 0; }
.dashboard-metrics span { color: var(--mint); font-size: 0.8rem; }
.dashboard-metrics strong { font-size: 1.65rem; }
.dashboard-metrics small { color: #a69bad; font-size: 0.72rem; }
.dashboard-card-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dashboard-card-title strong { font-size: 0.88rem; }
.dashboard-card-title span { color: var(--mint); font-size: 0.62rem; font-weight: 800; }
.secondary-metrics > div { padding-top: 5px; padding-bottom: 5px; }
.dashboard-private { margin: 17px 0 0; color: #a198aa; font-size: 0.69rem; line-height: 1.45; }
.topic-card > p { margin-bottom: 20px; color: #958b9f; font-size: 0.66rem; }
.topic-row { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; margin-top: 14px; }
.topic-row p { display: grid; gap: 3px; margin: 0; }
.topic-row strong { font-size: 0.7rem; }
.topic-row small { color: #918697; font-size: 0.61rem; }
.topic-row > span { color: var(--mint); font-size: 0.64rem; font-weight: 850; }
.topic-row i { grid-column: 1 / -1; height: 5px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,0.07); }
.topic-row i b { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--mint), #7ccfeb); }
.dashboard-privacy { display: flex; gap: 11px; margin-top: 15px; padding: 13px 15px; border: 1px solid rgba(92,231,189,0.12); border-radius: 14px; background: rgba(92,231,189,0.05); }
.dashboard-privacy > span { color: var(--mint); }
.dashboard-privacy p { display: grid; gap: 3px; margin: 0; }
.dashboard-privacy strong { font-size: 0.69rem; }
.dashboard-privacy small { color: #91a59f; font-size: 0.64rem; }
.organizer-product-captures { position: relative; display: grid; grid-template-columns: 1.03fr 0.82fr; gap: 16px; align-items: start; }
.organizer-product-captures::before { position: absolute; inset: 9% 0 4%; content: ""; border-radius: 42%; background: radial-gradient(circle, rgba(130,81,237,0.31), transparent 69%); filter: blur(42px); }
.organizer-capture {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin: 0;
  padding: 11px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(49,38,75,0.96), rgba(20,15,33,0.98));
  box-shadow: 0 35px 90px rgba(0,0,0,0.42), inset 0 1px rgba(255,255,255,0.05);
}
.organizer-capture-impact { margin-top: 74px; }
.organizer-capture img { width: 100%; height: auto; border-radius: 20px; }
.organizer-capture figcaption { padding: 2px 3px 5px; color: #9f94a9; font-size: 0.68rem; line-height: 1.5; }

/* Safety and closing */
.safety { display: grid; grid-template-columns: 0.3fr 1fr 0.82fr; gap: 50px; align-items: start; }
.safety-mark { width: 105px; height: 105px; padding: 18px; border: 1px solid var(--line); border-radius: 29px; background: rgba(255,255,255,0.035); transform: rotate(-6deg); }
.safety-mark img { width: 100%; height: 100%; border-radius: 18px; }
.safety h2 { margin: 28px 0 20px; font-size: clamp(2.6rem, 4.4vw, 4.5rem); line-height: 0.98; letter-spacing: -0.06em; }
.safety > div:nth-child(2) > p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.safety-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.safety-links a { color: var(--mint); font-size: 0.75rem; font-weight: 800; }
.safety-links a span { margin-left: 6px; }
.safety-points { display: grid; border-top: 1px solid var(--line); }
.safety-points > div { display: grid; grid-template-columns: 35px 1fr; gap: 12px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.safety-points span { color: var(--pink); font-size: 0.65rem; font-weight: 850; }
.safety-points p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.6; }
.safety-points strong { display: block; margin-bottom: 4px; color: white; font-size: 0.9rem; }
.closing { width: min(var(--max), calc(100% - 40px)); margin: 25px auto 120px; padding: 95px 30px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; text-align: center; background: radial-gradient(circle at 50% 0%, rgba(134,78,234,0.35), transparent 42%), radial-gradient(circle at 15% 100%, rgba(236,73,168,0.21), transparent 40%), #171022; }
.closing::before, .closing::after { content: ""; position: absolute; width: 250px; height: 250px; border: 1px solid rgba(255,255,255,0.06); border-radius: 50%; }
.closing::before { left: -110px; top: -80px; }
.closing::after { right: -100px; bottom: -120px; }
.closing-orb { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 18px; color: white; background: linear-gradient(145deg, var(--pink), var(--purple)); font-size: 1.45rem; }
.closing .eyebrow { display: block; }
.closing h2 { margin: 20px auto 17px; font-size: clamp(2.8rem, 5.5vw, 5.6rem); line-height: 0.95; letter-spacing: -0.065em; }
.closing > p:not(.eyebrow) { color: var(--muted); }
.closing .button { position: relative; margin-top: 16px; }

footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 55px 0 30px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.footer-brand p { margin: 17px 0 0; color: #81778a; font-size: 0.78rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.footer-links div { display: flex; flex-direction: column; gap: 11px; }
.footer-links strong { margin-bottom: 3px; font-size: 0.72rem; }
.footer-links a { color: #968c9f; font-size: 0.78rem; }
.footer-links a:hover { color: white; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 27px; border-top: 1px solid rgba(255,255,255,0.07); color: #696171; font-size: 0.64rem; }

@keyframes scan {
  0%, 100% { transform: translateY(-85px); opacity: 0.35; }
  50% { transform: translateY(95px); opacity: 1; }
}
@keyframes orbit-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbit-spin-reverse { to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes engine-progress { from { transform: translateX(0); } to { transform: translateX(100%); } }
@keyframes signal-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes hero-demo-sheen { 0%, 62%, 100% { transform: translateX(-110%); } 78% { transform: translateX(110%); } }
@keyframes hero-demo-pulse { 0% { opacity: 0.72; transform: scale(0.82); } 70%, 100% { opacity: 0; transform: scale(1.28); } }

@media (max-width: 1040px) {
  .site-header nav { gap: 18px; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 780px; }
  .hero-product { width: min(610px, 100%); margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; }
  .flow-rail { display: none; }
  .flow-step, .flow-step-ai, .flow-step-result { grid-template-columns: 1fr; gap: 45px; }
  .flow-step-ai .flow-visual, .flow-step-result .flow-visual { order: initial; }
  .flow-copy { max-width: 720px; }
  .flow-visual { width: min(700px, 100%); margin: 0 auto; }
  .organizer-inner { grid-template-columns: 1fr; gap: 60px; }
  .organizer-copy { max-width: 760px; }
  .dashboard-shell { width: min(720px, 100%); margin: 0 auto; }
  .organizer-product-captures { width: min(760px, 100%); margin: 0 auto; }
  .safety { grid-template-columns: 120px 1fr; }
  .safety-points { grid-column: 2; }
}

@media (max-width: 760px) {
  .site-header { width: min(100% - 28px, var(--max)); height: 72px; }
  .site-header nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero, .section, .closing, footer, .organizer-inner { width: min(100% - 28px, var(--max)); }
  .hero { min-height: 0; padding: 60px 0 76px; gap: 35px; }
  .eyebrow { flex-wrap: wrap; line-height: 1.5; }
  .hero h1 { font-size: clamp(2.8rem, 13.5vw, 4.35rem); }
  .hero-lede { font-size: 1.05rem; }
  .hero-actions { width: 100%; }
  .hero-demo-cta { max-width: 100%; min-height: 104px; padding: 14px 15px; grid-template-columns: 54px minmax(0, 1fr); gap: 13px; border-radius: 21px; }
  .hero-demo-play { width: 50px; height: 50px; }
  .hero-demo-play svg { width: 24px; height: 24px; }
  .hero-demo-copy small { font-size: 0.54rem; }
  .hero-demo-copy strong { font-size: 1.37rem; }
  .hero-demo-copy > span { font-size: 0.65rem; }
  .hero-demo-arrow { display: none; }
  .hero-secondary-action { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-secondary-action p { justify-content: center; }
  .store-downloads > p { justify-content: center; text-align: center; }
  .store-badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .store-badge { width: 100%; min-width: 0; padding: 7px 9px; gap: 8px; }
  .store-badge svg { width: 24px; height: 29px; }
  .store-badge strong { font-size: clamp(0.94rem, 4.4vw, 1.12rem); }
  .store-badge:last-child strong { font-size: clamp(0.9rem, 4.1vw, 1.03rem); }
  .button { width: 100%; }
  .hero-proof { align-items: flex-start; flex-direction: column; gap: 9px; }
  .hero-product { min-height: 560px; transform: scale(0.96); transform-origin: top center; }
  .hero-event-bar { left: 0; right: 0; }
  .hero-event-bar div { min-width: 0; }
  .hero-event-bar strong { overflow-wrap: anywhere; }
  .hero-match-card { width: 97%; padding: 20px; }
  .hero-float-left { left: 0; }
  .hero-float-right { right: 0; }
  .signal-strip { align-items: flex-start; flex-direction: column; }
  .signal-strip div { flex-wrap: wrap; gap: 9px 13px; }
  .section { padding: 90px 0; }
  .section-heading h2 { font-size: 3rem; }
  .value-grid { margin-top: 42px; }
  .value-card { display: flex; padding: 30px 23px; border-radius: 24px; }
  .value-card-copy h3 { font-size: 2.4rem; }
  .attendee-outcome, .organizer-outcome { width: 100%; padding: 18px; }
  .mini-metric-row div { padding: 0 7px; }
  .flow-section { padding-top: 85px; }
  .flow-intro { margin-bottom: 20px; text-align: left; }
  .flow-intro .eyebrow { justify-content: flex-start; }
  .flow-intro h2 { font-size: 3.35rem; }
  .flow-intro > p { margin-left: 0; }
  .flow-step { min-height: 0; padding: 80px 0; gap: 28px; }
  .flow-copy h3 { font-size: 3rem; }
  .flow-visual { min-height: 580px; overflow: visible; }
  .phone-shell { width: min(330px, 94vw); }
  .scan-success { right: -1%; }
  .ai-stage { min-height: 640px; padding-left: 0; padding-right: 0; }
  .ai-options { gap: 6px; }
  .ai-option { padding: 12px 9px; }
  .ai-option strong { font-size: 0.72rem; }
  .profile-draft { width: 94%; }
  .product-capture { width: min(520px, 94vw); }
  .product-capture-matches { width: min(380px, 90vw); }
  .engine-stage { min-height: 590px; }
  .orbit-two { width: 420px; height: 420px; }
  .profile-node { min-width: 107px; padding: 8px; }
  .node-alex { left: 2%; }
  .node-maya { right: 2%; }
  .node-jordan { left: 2%; }
  .node-sam { right: 2%; }
  .signal-shared { left: 6%; }
  .signal-value { right: 4%; }
  .signal-score { left: 29%; }
  .result-stage { min-height: 780px; }
  .result-phone { width: min(352px, 95vw); }
  .result-toast { right: -1%; }
  .organizer-inner { min-height: 0; padding: 90px 0; }
  .organizer-copy h2 { font-size: 3.2rem; }
  .dashboard-shell { padding: 19px; border-radius: 25px; }
  .dashboard-event-head h3 { font-size: 1.55rem; }
  .dashboard-event-icon { width: 50px; height: 50px; font-size: 1.3rem; }
  .dashboard-card { padding: 16px; }
  .dashboard-metrics > div { padding: 3px 9px; }
  .dashboard-metrics strong { font-size: 1.3rem; }
  .dashboard-metrics small { font-size: 0.64rem; }
  .organizer-product-captures { grid-template-columns: 1fr; gap: 18px; }
  .organizer-capture { width: min(560px, 100%); margin: 0 auto; }
  .organizer-capture-impact { width: min(490px, 92%); margin-top: 0; }
  .safety { grid-template-columns: 1fr; gap: 30px; }
  .safety-mark { width: 80px; height: 80px; }
  .safety-points { grid-column: 1; }
  .closing { margin-bottom: 85px; padding: 70px 20px; }
  footer { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { grid-column: 1; flex-direction: column; gap: 8px; }
}

@media (max-width: 390px) {
  .hero-product { transform: scale(0.9); margin-bottom: -40px; }
  .value-card { padding: 27px 19px; }
  .mini-metric-row small { font-size: 0.58rem; }
  .flow-copy h3 { font-size: 2.7rem; }
  .qr-stage, .result-stage { transform: scale(0.92); margin: -20px 0 -25px; }
  .engine-stage { transform: scale(0.94); }
  .ai-stage { transform: scale(0.96); }
  .dashboard-shell { padding: 15px; }
  .dashboard-card { padding: 14px; }
  .dashboard-metrics > div { padding: 3px 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-demo-cta::before, .hero-demo-play::after { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Cinematic homepage demo */
.demo-launch {
  appearance: none;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
}
.demo-launch span { color: var(--mint); font-size: 0.72rem; }
.demo-launch:hover { border-color: rgba(92,231,189,0.46); background: rgba(92,231,189,0.07); transform: translateY(-2px); }
.demo-launch:focus-visible,
.mixer-demo button:focus-visible,
.mixer-demo a:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}
body.demo-open { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.mixer-demo {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 6%, rgba(242,90,181,0.23), transparent 30rem),
    radial-gradient(circle at 9% 92%, rgba(92,231,189,0.14), transparent 27rem),
    linear-gradient(145deg, #130c24 0%, #090710 52%, #160b22 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.mixer-demo[open] { display: block; animation: demo-overlay-in 360ms ease-out both; }
.mixer-demo::backdrop { background: #090710; }
.demo-backdrop { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.demo-backdrop::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.21;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}
.demo-backdrop i { position: absolute; width: 34rem; height: 34rem; border-radius: 50%; filter: blur(95px); opacity: 0.17; animation: demo-orb-drift 9s ease-in-out infinite alternate; }
.demo-backdrop i:nth-child(1) { top: -18rem; left: 5%; background: var(--purple); }
.demo-backdrop i:nth-child(2) { right: -15rem; top: 27%; background: var(--pink); animation-delay: -3s; }
.demo-backdrop i:nth-child(3) { bottom: -21rem; left: 23%; background: var(--mint); animation-delay: -6s; }
.demo-topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  padding: max(14px, env(safe-area-inset-top)) max(22px, env(safe-area-inset-right)) 10px max(22px, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: 1fr minmax(200px, 340px) 1fr;
  align-items: center;
  gap: 20px;
  background: linear-gradient(180deg, rgba(9,7,16,0.9), rgba(9,7,16,0));
}
.demo-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.demo-brand img { width: 32px; height: 32px; border-radius: 9px; }
.demo-brand span { font-weight: 900; letter-spacing: -0.035em; }
.demo-brand small { padding-left: 10px; border-left: 1px solid rgba(255,255,255,0.15); color: #968ba2; font-size: 0.66rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.1em; }
.demo-progress-wrap { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 11px; }
.demo-progress-wrap > span { color: #998fa4; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; }
.demo-progress { height: 4px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,0.1); }
.demo-progress i { display: block; width: 9.09%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--mint), #76c5ef, var(--purple-bright), var(--pink)); box-shadow: 0 0 18px rgba(92,231,189,0.45); transition: width 420ms cubic-bezier(.2,.9,.2,1); }
.mixer-demo[data-demo-index="1"] .demo-progress i { width: 18.18%; }
.mixer-demo[data-demo-index="2"] .demo-progress i { width: 27.27%; }
.mixer-demo[data-demo-index="3"] .demo-progress i { width: 36.36%; }
.mixer-demo[data-demo-index="4"] .demo-progress i { width: 45.45%; }
.mixer-demo[data-demo-index="5"] .demo-progress i { width: 54.55%; }
.mixer-demo[data-demo-index="6"] .demo-progress i { width: 63.64%; }
.mixer-demo[data-demo-index="7"] .demo-progress i { width: 72.73%; }
.mixer-demo[data-demo-index="8"] .demo-progress i { width: 81.82%; }
.mixer-demo[data-demo-index="9"] .demo-progress i { width: 90.91%; }
.mixer-demo[data-demo-index="10"] .demo-progress i { width: 100%; }
.demo-controls { justify-self: end; display: flex; align-items: center; gap: 7px; }
.demo-controls button,
.demo-final-actions button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #d5cddd;
  background: rgba(255,255,255,0.055);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(14px);
}
.demo-controls button:hover { color: white; border-color: rgba(92,231,189,0.44); background: rgba(92,231,189,0.08); }
.demo-controls .demo-close { width: 37px; min-height: 37px; padding: 0; font-size: 1.4rem; font-weight: 450; line-height: 1; }
.demo-controls button:disabled { opacity: 0.32; cursor: default; }
.mixer-demo[data-demo-manual="true"] #demo-pause { display: none; }
.demo-stage { position: absolute; z-index: 2; inset: 72px 0 66px; overflow: auto; overscroll-behavior: contain; outline: none; scrollbar-width: none; }
.demo-stage::-webkit-scrollbar { display: none; }
.demo-scene {
  width: min(1160px, calc(100% - 52px));
  min-height: 100%;
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  opacity: 0;
  transform: translateY(16px) scale(0.992);
}
.demo-scene[hidden] { display: none !important; }
.demo-scene.is-active { animation: demo-scene-in 620ms cubic-bezier(.16,.84,.23,1) forwards; }
.demo-copy { position: relative; z-index: 3; max-width: 530px; }
.demo-copy > p,
.demo-title-card > p {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.demo-copy h2,
.demo-title-card h2 {
  display: flow-root;
  font-size: clamp(3.3rem, 6vw, 6.6rem);
  line-height: 0.97;
  letter-spacing: -0.07em;
  padding: 0.04em 0.04em 0.11em;
  margin: -0.04em -0.04em -0.11em;
  text-wrap: balance;
  background: linear-gradient(110deg, white 0%, #f7b3db 48%, #b28af8 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.demo-copy > span,
.demo-title-card > span {
  display: block;
  max-width: 610px;
  margin-top: 24px;
  color: #c3b8cc;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.62;
  text-wrap: balance;
}
.demo-copy-centered { grid-column: 1 / -1; max-width: 850px; justify-self: center; text-align: center; }
.demo-copy-centered > span { margin-left: auto; margin-right: auto; }
.demo-glass {
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(145deg, rgba(56,43,82,0.88), rgba(22,17,35,0.94));
  box-shadow: 0 38px 110px rgba(0,0,0,0.44), inset 0 1px rgba(255,255,255,0.06);
  backdrop-filter: blur(26px) saturate(1.2);
}
.demo-caption {
  position: absolute;
  z-index: 22;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  min-width: min(510px, calc(100% - 32px));
  padding: 10px 18px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(19,14,30,0.78);
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
  backdrop-filter: blur(22px) saturate(1.3);
  text-align: center;
}
.demo-caption small { color: var(--mint); font-size: 0.58rem; font-weight: 900; letter-spacing: 0.12em; }
.demo-caption strong { font-size: 0.73rem; }

/* Demo intro */
.demo-scene-intro,
.demo-scene-final { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.demo-title-card { position: relative; z-index: 4; max-width: 970px; }
.demo-intro-crowd { position: absolute; inset: 3% 0; pointer-events: none; }
.demo-intro-crowd span {
  position: absolute;
  width: clamp(42px, 5vw, 68px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  background: linear-gradient(145deg, rgba(242,90,181,0.38), rgba(130,81,237,0.35));
  box-shadow: 0 14px 40px rgba(0,0,0,0.24);
  font-size: clamp(0.65rem, 1vw, 0.83rem);
  font-weight: 900;
  animation: demo-person-float 3.8s ease-in-out infinite;
}
.demo-intro-crowd span:nth-child(1) { left: 3%; top: 8%; }
.demo-intro-crowd span:nth-child(2) { left: 18%; top: 26%; animation-delay: -.5s; }
.demo-intro-crowd span:nth-child(3) { left: 7%; top: 70%; animation-delay: -1s; }
.demo-intro-crowd span:nth-child(4) { left: 27%; top: 76%; animation-delay: -1.5s; }
.demo-intro-crowd span:nth-child(5) { left: 35%; top: 6%; animation-delay: -2s; }
.demo-intro-crowd span:nth-child(6) { right: 35%; top: 76%; animation-delay: -2.5s; }
.demo-intro-crowd span:nth-child(7) { right: 26%; top: 9%; animation-delay: -3s; }
.demo-intro-crowd span:nth-child(8) { right: 17%; top: 70%; animation-delay: -3.5s; }
.demo-intro-crowd span:nth-child(9) { right: 5%; top: 20%; animation-delay: -.8s; }
.demo-intro-crowd span:nth-child(10) { right: 2%; top: 74%; animation-delay: -1.8s; }
.demo-intro-crowd span:nth-child(11) { left: 14%; top: 48%; animation-delay: -2.8s; }
.demo-intro-crowd span:nth-child(12) { right: 13%; top: 45%; animation-delay: -3.8s; }
.demo-scene-intro.is-active .demo-title-card { animation: demo-title-rise 780ms 130ms cubic-bezier(.16,.84,.23,1) both; }
.demo-scene-intro .demo-title-card > p { color: #71f1ca; font-size: clamp(0.82rem, 1.05vw, 0.98rem); text-shadow: 0 0 28px rgba(92,231,189,0.28); }
.demo-scene-intro .demo-title-card > span { max-width: 700px; margin-right: auto; margin-left: auto; color: #ddd4e3; font-size: clamp(1.1rem, 1.65vw, 1.4rem); font-weight: 620; line-height: 1.5; }

/* Organizer creation */
.demo-organizer-shell { width: min(650px, 100%); padding: 21px 25px 23px; border-radius: 30px; }
.demo-device-strip { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 13px; margin-bottom: 17px; padding: 11px 13px; border: 1px solid rgba(92,231,189,0.17); border-radius: 16px; background: linear-gradient(135deg, rgba(92,231,189,0.085), rgba(130,81,237,0.08)); opacity: 0; transform: translateY(10px); }
.demo-device-strip > span { min-width: 0; display: flex; align-items: center; gap: 10px; }
.demo-device-strip svg { width: 31px; height: 31px; flex: 0 0 auto; padding: 6px; border-radius: 9px; color: var(--mint); background: rgba(92,231,189,0.1); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.demo-device-strip p { min-width: 0; display: grid; gap: 2px; margin: 0; }
.demo-device-strip b { font-size: 0.68rem; }.demo-device-strip small { color: #9e93a9; font-size: 0.55rem; }
.demo-device-strip > i { color: #756b80; font-size: 0.7rem; font-style: normal; }
.demo-window-bar { display: flex; align-items: center; gap: 7px; padding-bottom: 19px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.demo-window-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.demo-window-bar span:first-child { background: #f25ab5; }.demo-window-bar span:nth-child(2) { background: #ffb45f; }.demo-window-bar span:nth-child(3) { background: #5ce7bd; }
.demo-window-bar b { margin-left: auto; color: #998fa4; font-size: 0.66rem; }
.demo-form-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 2px 22px; }
.demo-form-heading div { display: grid; gap: 7px; }
.demo-form-heading small,
.demo-form-field small,
.demo-form-grid small,
.demo-review-card label small,
.demo-review-head small,
.demo-result-top small,
.demo-opener small,
.demo-dashboard-head small { color: #9e93a9; font-size: 0.58rem; font-weight: 900; letter-spacing: 0.12em; }
.demo-form-heading strong { font-size: 1.5rem; letter-spacing: -0.035em; }
.demo-form-heading > span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: var(--mint); font-size: 1.55rem; }
.demo-form-field,
.demo-question-field { display: grid; gap: 8px; padding: 15px 17px; border: 1px solid rgba(255,255,255,0.11); border-radius: 16px; background: rgba(255,255,255,0.045); }
.demo-form-field b,
.demo-question-field b { font-size: 0.78rem; line-height: 1.5; }
.demo-question-field { position: relative; min-height: 92px; margin-top: 10px; border-color: rgba(92,231,189,0.38); background: radial-gradient(circle at 95% 10%, rgba(92,231,189,0.13), transparent 34%), rgba(255,255,255,0.055); box-shadow: 0 0 0 3px rgba(92,231,189,0.045); }
.demo-question-field small { color: var(--mint); font-size: 0.56rem; font-weight: 900; letter-spacing: 0.1em; }
.demo-question-field b { min-height: 24px; color: #f3edf5; font-weight: 800; }
.demo-question-field b > i { display: inline-block; width: 1px; height: 1em; margin-left: 2px; transform: translateY(2px); background: var(--mint); animation: demo-cursor-blink 760ms steps(1,end) infinite; }
.demo-question-field em { color: #9e93a9; font-size: 0.58rem; font-style: normal; font-weight: 760; }
.demo-zones-field { margin-top: 10px; padding-top: 11px; padding-bottom: 11px; }
.demo-created { display: flex; align-items: center; gap: 12px; margin-top: 14px; padding: 13px 15px; border: 1px solid rgba(92,231,189,0.22); border-radius: 15px; background: rgba(92,231,189,0.08); opacity: 0; transform: translateY(12px); }
.demo-created > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #10241d; background: var(--mint); font-weight: 950; }
.demo-created p { display: grid; gap: 3px; margin: 0; }
.demo-created strong { font-size: 0.75rem; }.demo-created small { color: #97afa8; font-size: 0.64rem; }
.demo-scene-organizer.is-active .demo-organizer-shell { animation: demo-card-rise 680ms 120ms cubic-bezier(.16,.84,.23,1) both; }
.demo-scene-organizer.is-active .demo-device-strip { animation: demo-small-rise 430ms 620ms ease-out forwards; }
.demo-scene-organizer.is-active .demo-question-field { animation: demo-question-focus 520ms 1.05s ease-out both; }
.demo-scene-organizer.is-active .demo-created { animation: demo-small-rise 430ms 3.55s ease-out forwards; }

/* Scan and App Clip */
.demo-scene-scan { grid-template-columns: minmax(0, 0.72fr) minmax(430px, 0.8fr); justify-content: center; }
.demo-scan-visual { position: relative; justify-self: center; width: min(510px, 100%); min-height: 620px; display: grid; place-items: center; }
.demo-phone { position: relative; z-index: 2; justify-self: end; width: min(330px, 76%); min-height: 570px; padding: 19px 22px 24px; border-radius: 48px; border-width: 2px; text-align: center; opacity: 0; }
.demo-phone-island { width: 94px; height: 25px; margin: -8px auto 18px; border-radius: 999px; background: #08070c; }
.demo-phone-brand { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; }
.demo-phone-brand img { width: 27px; height: 27px; border-radius: 8px; }
.demo-phone-brand small { margin-left: auto; padding: 5px 7px; border-radius: 999px; color: var(--mint); background: rgba(92,231,189,0.09); font-size: 0.46rem; font-weight: 900; letter-spacing: 0.08em; }
.demo-event-art { position: relative; height: 180px; margin: 22px 0 18px; overflow: hidden; display: grid; place-items: center; border-radius: 26px; background: radial-gradient(circle at 36% 30%, rgba(255,255,255,0.26), transparent 22%), linear-gradient(145deg, #49cfa9, #6c72ec 62%, #d84da4); }
.demo-event-art span { position: relative; z-index: 2; font-size: 4rem; filter: drop-shadow(0 18px 20px rgba(0,0,0,0.24)); }
.demo-event-art i { position: absolute; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,0.24); border-radius: 50%; animation: demo-ring-pulse 2.3s ease-out infinite; }
.demo-phone > small { color: var(--mint); font-size: 0.57rem; font-weight: 900; letter-spacing: 0.12em; }
.demo-phone h3 { margin: 11px 0 11px; font-size: 1.8rem; line-height: 1; letter-spacing: -0.05em; }
.demo-phone > p { margin: 0; color: #a99fb4; font-size: 0.72rem; line-height: 1.5; }
.demo-primary-action { min-height: 46px; margin-top: 18px; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; border-radius: 14px; color: #11231e; background: linear-gradient(135deg, var(--mint), #76d7e7); font-size: 0.75rem; font-weight: 900; }
.demo-no-install { display: block; margin-top: 12px; color: #93899d; font-size: 0.6rem; }
.demo-qr-placard { position: absolute; z-index: 4; left: 0; top: 18%; width: 190px; padding: 16px; border-radius: 23px; text-align: center; opacity: 0; transform: translateX(-20px) rotate(-4deg); }
.demo-qr-placard > small { color: var(--mint); font-size: 0.52rem; font-weight: 900; letter-spacing: 0.14em; }.demo-qr-placard > b { display: block; margin-top: 10px; font-size: 0.64rem; }
.demo-qr-code { position: relative; width: 138px; height: 138px; margin: 11px auto 0; overflow: hidden; padding: 8px; border-radius: 13px; background: white; box-shadow: 0 17px 45px rgba(0,0,0,0.32); }
.demo-qr-code svg { width: 100%; height: 100%; display: block; }
.demo-qr-code > i { position: absolute; left: 5px; right: 5px; top: 7px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, transparent, var(--mint) 18%, #fff 50%, var(--mint) 82%, transparent); box-shadow: 0 0 16px 5px rgba(92,231,189,0.55); opacity: 0; }
.demo-scan-chip { position: absolute; right: 1%; bottom: 12%; z-index: 5; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(92,231,189,0.28); border-radius: 15px; background: rgba(18,14,29,0.96); box-shadow: 0 20px 50px rgba(0,0,0,0.38); opacity: 0; transform: translateY(12px); }
.demo-scan-chip > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #10241d; background: var(--mint); font-weight: 950; }
.demo-scan-chip p { display: grid; gap: 3px; margin: 0; }.demo-scan-chip small { color: #918699; font-size: 0.48rem; letter-spacing: 0.12em; }.demo-scan-chip strong { font-size: 0.72rem; }
.demo-scene-scan.is-active .demo-qr-placard { animation: demo-qr-in 600ms 160ms cubic-bezier(.16,.84,.23,1) forwards; }
.demo-scene-scan.is-active .demo-qr-code > i { animation: demo-scan-beam 1.1s 850ms cubic-bezier(.4,0,.2,1) forwards; }
.demo-scene-scan.is-active .demo-phone { animation: demo-phone-in 730ms 1.55s cubic-bezier(.16,.84,.23,1) forwards; }
.demo-scene-scan.is-active .demo-scan-chip { animation: demo-small-rise 430ms 2.35s ease-out forwards; }

/* AI choice */
.demo-scene-ai { grid-template-columns: 1fr; align-content: center; gap: 44px; }
.demo-ai-row { width: min(920px, 100%); margin: 0; padding: 0; justify-self: center; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; list-style: none; }
.demo-ai-card { position: relative; min-height: 245px; padding: 30px 25px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.13); border-radius: 27px; background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)); box-shadow: 0 25px 70px rgba(0,0,0,0.25); opacity: 0; transform: translateY(25px); }
.demo-ai-card::before { position: absolute; inset: 0; content: ""; opacity: 0; background: radial-gradient(circle at 50% 20%, rgba(92,231,189,0.18), transparent 45%); transition: opacity 300ms ease; }
.demo-ai-card i { position: relative; width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 9px; border-radius: 22px; color: white; background: linear-gradient(145deg, #34303e, #18141f); font-size: 1.8rem; font-style: normal; box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.demo-ai-card:nth-child(2) i { color: #ffb07a; }.demo-ai-card:nth-child(3) i { color: #9ba9ff; }
.demo-ai-card strong { font-size: 1rem; }.demo-ai-card small { color: #958a9f; font-size: 0.68rem; }
.demo-ai-card b { margin-top: 14px; padding: 8px 13px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; color: #b9aec2; font-size: 0.62rem; }
.demo-ai-chatgpt b { opacity: 0; transform: scale(0.88); }
.demo-scene-ai.is-active .demo-ai-card { animation: demo-ai-arrive 650ms cubic-bezier(.16,.84,.23,1) forwards; }
.demo-scene-ai.is-active .demo-ai-card:nth-child(1) { animation-delay: 280ms; }.demo-scene-ai.is-active .demo-ai-card:nth-child(2) { animation-delay: 720ms; }.demo-scene-ai.is-active .demo-ai-card:nth-child(3) { animation-delay: 1.16s; }
.demo-scene-ai.is-active .demo-ai-chatgpt { animation-name: demo-ai-arrive, demo-ai-selected; animation-duration: 650ms, 420ms; animation-delay: 280ms, 1.75s; animation-fill-mode: forwards; }
.demo-scene-ai.is-active .demo-ai-chatgpt::before { animation: demo-fade-in 350ms 1.75s ease-out forwards; }
.demo-scene-ai.is-active .demo-ai-chatgpt i { animation: demo-ai-icon-selected 420ms 1.75s ease-out forwards; }
.demo-scene-ai.is-active .demo-ai-chatgpt b { animation: demo-score-pop 420ms 1.84s cubic-bezier(.16,.84,.23,1) forwards; }
.demo-product-capture {
  position: relative;
  min-width: 0;
  padding: 9px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 25px;
  background: linear-gradient(150deg, rgba(53,41,79,0.96), rgba(18,14,29,0.98));
  box-shadow: 0 30px 80px rgba(0,0,0,0.42);
  opacity: 0;
  transform: translateY(22px) scale(0.97);
}
.demo-product-capture > span { padding: 4px 5px 0; color: var(--mint); font-size: 0.5rem; font-weight: 900; letter-spacing: 0.12em; }
.demo-product-capture img { width: 100%; height: auto; max-height: 54vh; border-radius: 18px; object-fit: contain; }
.demo-ai-capture { width: min(510px, 90vw); justify-self: center; }
.demo-ai-capture img { max-height: 46vh; }
.demo-scene-ai.is-active .demo-product-capture { animation: demo-card-rise 650ms 260ms cubic-bezier(.16,.84,.23,1) forwards; }

/* Profile review */
.demo-review-card { width: min(640px, 100%); padding: 26px; border-radius: 29px; }
.demo-review-head { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-bottom: 14px; }
.demo-review-head div { display: grid; gap: 6px; }.demo-review-head strong { font-size: 1.18rem; }.demo-review-head > span { padding: 6px 10px; border-radius: 999px; color: #d9c9e1; background: rgba(242,90,181,0.13); font-size: 0.61rem; font-weight: 850; }
.demo-review-card label { position: relative; display: grid; gap: 7px; margin-top: 9px; padding: 13px 45px 13px 15px; border: 1px solid rgba(255,255,255,0.11); border-radius: 15px; background: rgba(255,255,255,0.045); opacity: 0; transform: translateX(16px); }
.demo-review-card label b { font-size: 0.72rem; line-height: 1.45; }.demo-review-card label i { position: absolute; right: 14px; top: 50%; width: 23px; height: 23px; transform: translateY(-50%); display: grid; place-items: center; border-radius: 50%; color: #10241d; background: var(--mint); font-size: 0.68rem; font-style: normal; }
.demo-consent { display: flex; gap: 11px; margin-top: 12px; padding: 12px 14px; border-radius: 14px; background: rgba(92,231,189,0.07); }
.demo-consent > span { color: var(--mint); }.demo-consent p { display: grid; gap: 3px; margin: 0; }.demo-consent strong { font-size: 0.68rem; }.demo-consent small { color: #91a69f; font-size: 0.61rem; }
.demo-approve { min-height: 45px; margin-top: 13px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border-radius: 13px; color: #12241e; background: linear-gradient(135deg, var(--mint), #78d3ec); font-size: 0.72rem; font-weight: 900; }
.demo-approved { position: relative; display: none; min-height: 45px; margin-top: -45px; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(92,231,189,0.24); border-radius: 13px; color: var(--mint); background: #202b31; font-size: 0.72rem; font-weight: 900; }
.demo-scene-review.is-active .demo-review-card { animation: demo-card-rise 650ms 90ms cubic-bezier(.16,.84,.23,1) both; }
.demo-scene-review.is-active label { animation: demo-field-in 430ms ease-out forwards; }.demo-scene-review.is-active label:nth-of-type(1) { animation-delay: 600ms; }.demo-scene-review.is-active label:nth-of-type(2) { animation-delay: 780ms; }.demo-scene-review.is-active label:nth-of-type(3) { animation-delay: 960ms; }
.demo-scene-review.is-active .demo-approve { animation: demo-approve-tap 500ms 1.8s ease-out both; }
.demo-scene-review.is-active .demo-approve { animation-name: demo-approve-tap, demo-approve-away; animation-duration: 500ms, 180ms; animation-delay: 1.8s, 2.65s; animation-fill-mode: both; }
.demo-scene-review.is-active .demo-approved { display: flex; animation: demo-small-rise 420ms 2.72s ease-out both; }

/* Matching engine */
.demo-scene-match { grid-template-columns: 1fr; align-content: center; gap: 14px; }
.demo-match-engine { position: relative; justify-self: center; width: min(780px, 100%); height: min(440px, 46vh); min-height: 390px; }
.demo-engine-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(137,100,225,0.24); border-radius: 50%; transform: translate(-50%,-50%); }
.demo-engine-ring-a { width: 275px; height: 275px; animation: demo-engine-spin 8s linear infinite; }.demo-engine-ring-b { width: 430px; height: 430px; border-style: dashed; animation: demo-engine-spin-reverse 13s linear infinite; }
.demo-engine-ring::after { position: absolute; top: 12%; left: 10%; width: 10px; height: 10px; content: ""; border-radius: 50%; background: var(--mint); box-shadow: 0 0 20px var(--mint); }
.demo-engine-core { position: absolute; z-index: 4; left: 50%; top: 50%; width: 156px; height: 156px; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid rgba(255,255,255,0.17); border-radius: 50%; background: radial-gradient(circle at 35% 25%, rgba(242,90,181,0.31), transparent 45%), #201631; box-shadow: 0 0 80px rgba(130,81,237,0.24), inset 0 1px rgba(255,255,255,0.08); }
.demo-engine-core img { width: 45px; height: 45px; border-radius: 13px; }.demo-engine-core strong { font-size: 0.82rem; }.demo-engine-core small { color: #95899e; font-size: 0.54rem; }
.demo-person { position: absolute; z-index: 3; min-width: 142px; padding: 9px 12px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; background: rgba(28,21,43,0.92); box-shadow: 0 16px 45px rgba(0,0,0,0.3); opacity: 0; }
.demo-person > span { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, var(--pink), var(--purple)); font-size: 0.72rem; font-weight: 900; }
.demo-person p { display: grid; gap: 3px; margin: 0; }.demo-person b { font-size: 0.68rem; }.demo-person small { color: #91869b; font-size: 0.55rem; }
.demo-person-a { left: 4%; top: 15%; }.demo-person-m { right: 3%; top: 14%; }.demo-person-j { left: 7%; bottom: 13%; }.demo-person-s { right: 6%; bottom: 12%; }
.demo-person-m > span { color: #10241d; background: var(--mint); }.demo-person-j > span { background: linear-gradient(145deg, var(--orange), #d04d83); }.demo-person-s > span { background: linear-gradient(145deg, #658bf1, var(--purple)); }
.demo-fit-signal { position: absolute; z-index: 5; padding: 8px 11px; border: 1px solid rgba(92,231,189,0.2); border-radius: 999px; color: var(--mint); background: rgba(17,13,27,0.94); box-shadow: 0 12px 35px rgba(0,0,0,0.28); font-size: 0.59rem; font-weight: 850; opacity: 0; }
.demo-fit-one { left: 23%; top: 24%; }.demo-fit-two { right: 20%; bottom: 24%; }.demo-fit-three { left: calc(50% - 55px); bottom: 5%; color: #101f1a; background: var(--mint); }
.demo-scene-match.is-active .demo-person { animation: demo-node-in 460ms ease-out forwards; }.demo-scene-match.is-active .demo-person-a { animation-delay: 300ms; }.demo-scene-match.is-active .demo-person-m { animation-delay: 480ms; }.demo-scene-match.is-active .demo-person-j { animation-delay: 660ms; }.demo-scene-match.is-active .demo-person-s { animation-delay: 840ms; }
.demo-scene-match.is-active .demo-fit-signal { animation: demo-signal-in 420ms ease-out forwards; }.demo-scene-match.is-active .demo-fit-one { animation-delay: 1.25s; }.demo-scene-match.is-active .demo-fit-two { animation-delay: 1.65s; }.demo-scene-match.is-active .demo-fit-three { animation-delay: 2.1s; }

/* Ranked result */
.demo-scene-result { grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr); gap: clamp(38px, 5vw, 76px); }
.demo-scene-result .demo-copy > p { font-size: 0.76rem; }
.demo-scene-result .demo-copy h2 { font-size: clamp(4rem, 5.7vw, 6.4rem); line-height: 0.97; }
.demo-scene-result .demo-copy > span { font-size: clamp(1rem, 1.25vw, 1.12rem); }
.demo-results-visual { position: relative; width: min(720px, 100%); display: grid; gap: 13px; }
.demo-match-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.demo-match-choice { position: relative; min-width: 0; min-height: 92px; padding: 12px; display: grid; grid-template-columns: 44px minmax(0,1fr) auto; align-items: center; gap: 10px; overflow: visible; border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; color: #dcd4e1; background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)); box-shadow: 0 16px 45px rgba(0,0,0,0.18); font: inherit; text-align: left; cursor: pointer; opacity: 0; transform: translateY(14px); transition: border-color 200ms ease, background 200ms ease, transform 200ms ease, box-shadow 200ms ease; }
.demo-match-choice:hover,.demo-match-choice:focus-visible { border-color: rgba(92,231,189,0.38); background: rgba(92,231,189,0.07); outline: 0; }
.demo-match-choice.is-selected { border-color: rgba(92,231,189,0.52); background: linear-gradient(135deg, rgba(92,231,189,0.17), rgba(130,81,237,0.1)); box-shadow: 0 18px 52px rgba(58,209,165,0.13); }
.demo-match-choice > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: #161f1c; background: var(--mint); font-size: 0.66rem; font-weight: 950; }
.demo-match-choice:nth-child(2) > span { color: white; background: linear-gradient(145deg,#f25ab5,#8251ed); }.demo-match-choice:nth-child(3) > span { color: white; background: linear-gradient(145deg,#ff9d5c,#d44b91); }
.demo-match-choice p { min-width: 0; display: grid; gap: 3px; margin: 0; }.demo-match-choice strong { overflow: hidden; font-size: 0.78rem; text-overflow: ellipsis; white-space: nowrap; }.demo-match-choice small { overflow: hidden; color: #9d92a7; font-size: 0.57rem; text-overflow: ellipsis; white-space: nowrap; }.demo-match-choice em { margin-top: 3px; color: #aea3b9; font-size: 0.54rem; font-style: normal; font-weight: 820; }.demo-match-choice em i { color: var(--mint); font-style: normal; }.demo-match-choice > b { align-self: start; color: var(--mint); font-size: 0.78rem; }
.demo-match-choice::after { position: absolute; z-index: 2; left: 38px; top: 35px; width: 26px; height: 26px; content: ""; border: 2px solid var(--mint); border-radius: 50%; opacity: 0; pointer-events: none; }
.demo-match-pointer { position: absolute; z-index: 8; left: 112px; top: 61px; width: 23px; height: 30px; opacity: 0; transform: translate(36px, 25px) rotate(-18deg) scale(0.82); pointer-events: none; filter: drop-shadow(0 6px 8px rgba(0,0,0,0.45)); }
.demo-match-pointer::before { display: block; width: 0; height: 0; content: ""; border-top: 18px solid white; border-right: 8px solid transparent; border-left: 8px solid transparent; transform: rotate(-28deg); }
.demo-match-pointer i { position: absolute; width: 8px; height: 13px; left: 10px; top: 13px; transform: rotate(-28deg); border-radius: 2px; background: white; }
.demo-result-card { width: 100%; padding: 24px 27px; overflow: hidden; border-radius: 30px; opacity: 0; clip-path: inset(0 0 100% 0 round 30px); transform: translateY(-8px) scale(0.985); transform-origin: 16% top; }
.demo-result-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.demo-result-top > div { display: grid; gap: 6px; }.demo-result-top > div strong { font-size: 1.55rem; letter-spacing: -0.04em; }
.demo-result-top > span { width: 74px; height: 74px; display: grid; place-content: center; border-radius: 50%; background: radial-gradient(circle at center, #3d2d5a 54%, transparent 56%), conic-gradient(var(--mint), #71cee7 35%, var(--purple) 66%, var(--pink) 90%, rgba(255,255,255,0.1) 0); text-align: center; }
.demo-result-top > span b { font-size: 1.35rem; line-height: 1; }.demo-result-top > span small { color: #b7adbf; font-size: 0.6rem; }
.demo-available { margin: -8px 0 17px; color: var(--mint); font-size: 0.69rem; font-weight: 850; }
.demo-verdict { display: flex; gap: 12px; padding: 15px; border-radius: 16px; background: rgba(242,90,181,0.11); }
.demo-verdict p { display: grid; gap: 4px; margin: 0; }.demo-verdict strong { font-size: 0.78rem; }.demo-verdict small { color: #b4a9bd; font-size: 0.68rem; line-height: 1.5; }
.demo-why { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }.demo-why span { padding: 7px 10px; border: 1px solid rgba(92,231,189,0.15); border-radius: 999px; color: #a8c6bc; background: rgba(92,231,189,0.055); font-size: 0.58rem; font-weight: 800; }
.demo-opener { display: grid; gap: 7px; margin-top: 13px; padding: 14px 15px; border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; background: rgba(255,255,255,0.04); }.demo-opener b { font-size: 0.73rem; line-height: 1.45; }
.demo-request-button { min-height: 46px; margin-top: 13px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border-radius: 14px; color: #10241d; background: linear-gradient(135deg, var(--mint), #73d7e8); font-size: 0.72rem; font-weight: 900; }
.demo-private-note { display: block; margin-top: 10px; color: #91869b; font-size: 0.58rem; text-align: center; }
.demo-scene-result.is-active .demo-match-choice { animation: demo-small-rise 440ms cubic-bezier(.16,.84,.23,1) forwards; }.demo-scene-result.is-active .demo-match-choice:nth-child(1) { animation-delay: 180ms; }.demo-scene-result.is-active .demo-match-choice:nth-child(2) { animation-delay: 360ms; }.demo-scene-result.is-active .demo-match-choice:nth-child(3) { animation-delay: 540ms; }
.demo-results-visual[data-demo-result-state="point"] .demo-match-pointer,.demo-results-visual[data-demo-result-state="press"] .demo-match-pointer { animation: demo-pointer-in 400ms cubic-bezier(.16,.84,.23,1) forwards; }
.demo-results-visual[data-demo-result-state="press"] .demo-match-choice,.demo-results-visual[data-demo-result-state="open"] .demo-match-choice { animation: none; opacity: 1; transform: translateY(0); }
.demo-results-visual[data-demo-result-state="press"] .demo-match-choice.is-selected { animation: demo-match-press 270ms ease-out both; border-color: rgba(92,231,189,0.72); filter: brightness(1.08); }
.demo-results-visual[data-demo-result-state="press"] .demo-match-choice.is-selected::after { animation: demo-choice-tap 620ms ease-out forwards; }
.demo-results-visual[data-demo-result-state="open"] .demo-match-pointer { animation: demo-pointer-out 260ms ease-out forwards; }
.demo-results-visual[data-demo-result-state="open"] .demo-match-choice.is-selected { animation: demo-match-lift 380ms cubic-bezier(.16,.84,.23,1) both; }
.demo-results-visual[data-demo-result-state="open"] .demo-result-card { animation: demo-detail-open 650ms cubic-bezier(.16,.84,.23,1) forwards; }
.demo-results-visual[data-demo-result-state="open"] .demo-result-top > span { animation: demo-score-pop 650ms 430ms cubic-bezier(.16,.84,.23,1) both; }

/* Mutual connection */
.demo-chat { width: min(620px, 100%); padding: 24px; border-radius: 29px; }
.demo-chat-head { display: flex; align-items: center; gap: 11px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.demo-chat-head > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #10241d; background: var(--mint); font-size: 0.7rem; font-weight: 900; }
.demo-chat-head p { display: grid; gap: 3px; margin: 0; }.demo-chat-head strong { font-size: 0.74rem; }.demo-chat-head small { color: #91869b; font-size: 0.59rem; }.demo-chat-head > b { margin-left: auto; padding: 6px 9px; border-radius: 999px; color: var(--mint); background: rgba(92,231,189,0.1); font-size: 0.57rem; }
.demo-chat-lock { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 16px 0; padding: 11px; border-radius: 13px; background: rgba(92,231,189,0.07); text-align: center; opacity: 0; }.demo-chat-lock p { display: grid; gap: 3px; margin: 0; }.demo-chat-lock strong { font-size: 0.67rem; }.demo-chat-lock small { color: #8fa59d; font-size: 0.57rem; }
.demo-message { width: fit-content; max-width: 78%; margin-top: 10px; padding: 11px 13px; border-radius: 16px; font-size: 0.7rem; line-height: 1.45; opacity: 0; transform: translateY(10px); }
.demo-message-them { border-bottom-left-radius: 5px; background: rgba(255,255,255,0.09); }.demo-message-you { margin-left: auto; border-bottom-right-radius: 5px; color: #10241d; background: var(--mint); }
.demo-meetup { display: flex; align-items: center; gap: 10px; margin-top: 17px; padding: 12px 13px; border: 1px solid rgba(130,81,237,0.27); border-radius: 14px; background: rgba(130,81,237,0.1); opacity: 0; transform: translateY(10px); }.demo-meetup p { display: grid; gap: 4px; margin: 0; }.demo-meetup small { color: #a293ae; font-size: 0.51rem; letter-spacing: 0.1em; }.demo-meetup strong { font-size: 0.66rem; }.demo-meetup b { margin-left: auto; padding: 7px 10px; border-radius: 999px; color: #15221e; background: var(--mint); font-size: 0.58rem; }
.demo-scene-consent.is-active .demo-chat { animation: demo-card-rise 650ms 100ms cubic-bezier(.16,.84,.23,1) both; }
.demo-scene-consent.is-active .demo-chat-lock { animation: demo-small-rise 400ms 650ms ease-out forwards; }.demo-scene-consent.is-active .demo-message-them { animation: demo-small-rise 400ms 1.15s ease-out forwards; }.demo-scene-consent.is-active .demo-message-you { animation: demo-small-rise 400ms 1.65s ease-out forwards; }.demo-scene-consent.is-active .demo-meetup { animation: demo-small-rise 400ms 2.2s ease-out forwards; }

/* Live audience Q&A */
.demo-scene-qna { grid-template-columns: minmax(0, .72fr) minmax(560px, 1.28fr); gap: clamp(35px, 5vw, 70px); }
.demo-qna-visual { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(330px, 1.08fr); gap: 16px; align-items: center; }
.demo-qna-phone { width: 100%; padding: 17px 18px 21px; border-radius: 42px; opacity: 0; transform: translateY(22px); }
.demo-qna-brand { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.demo-qna-brand > span { display: flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 850; }
.demo-qna-brand img { width: 24px; height: 24px; border-radius: 7px; }
.demo-qna-brand > small { padding: 4px 6px; border-radius: 999px; color: var(--mint); background: rgba(92,231,189,.09); font-size: .43rem; font-weight: 900; letter-spacing: .08em; }
.demo-qna-phone > p { margin: 29px 0 8px; color: var(--mint); font-size: .5rem; font-weight: 900; letter-spacing: .13em; }
.demo-qna-phone > h3 { margin: 0 0 8px; font-size: 1.5rem; letter-spacing: -.05em; }
.demo-qna-phone > small { display: block; color: #a99daf; font-size: .58rem; line-height: 1.45; }
.demo-qna-composer { margin-top: 15px; padding: 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.055); }
.demo-qna-composer > b { display: block; min-height: 76px; font-size: .68rem; line-height: 1.5; }
.demo-qna-composer > span { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.demo-qna-composer > span small { color: #91869b; font-size: .5rem; }
.demo-qna-composer > span strong { padding: 7px 9px; border-radius: 9px; color: #10241d; background: var(--mint); font-size: .52rem; }
.demo-qna-sent { display: flex; gap: 7px; align-items: center; margin-top: 11px; color: var(--mint); font-size: .55rem; opacity: 0; }
.demo-qna-sent span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #10241d; background: var(--mint); font-weight: 950; }
.demo-qna-dashboard { width: 100%; padding: 22px; border-radius: 25px; opacity: 0; transform: translateY(22px); }
.demo-qna-dashboard-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.demo-qna-dashboard-head > div { display: grid; gap: 5px; }
.demo-qna-dashboard-head small { color: var(--mint); font-size: .5rem; font-weight: 900; letter-spacing: .11em; }
.demo-qna-dashboard-head strong { font-size: 1.05rem; }
.demo-qna-dashboard-head > span { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: #10241d; background: var(--mint); font-size: 1rem; font-weight: 950; }
.demo-qna-dashboard > p { margin: 9px 0 15px; color: #9f94aa; font-size: .58rem; }
.demo-qna-dashboard article { display: flex; gap: 10px; align-items: flex-start; margin-top: 8px; padding: 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(255,255,255,.04); opacity: 0; }
.demo-qna-dashboard article > span { width: 24px; height: 24px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #10241d; background: var(--mint); font-size: .62rem; font-weight: 950; }
.demo-qna-dashboard article > div { display: grid; gap: 4px; }
.demo-qna-dashboard article strong { font-size: .63rem; line-height: 1.4; }
.demo-qna-dashboard article small { color: #8f8499; font-size: .5rem; }
.demo-scene-qna.is-active .demo-qna-phone { animation: demo-card-rise 650ms 100ms cubic-bezier(.16,.84,.23,1) forwards; }
.demo-scene-qna.is-active .demo-qna-sent { animation: demo-small-rise 400ms 1.25s ease-out forwards; }
.demo-scene-qna.is-active .demo-qna-dashboard { animation: demo-card-rise 650ms 640ms cubic-bezier(.16,.84,.23,1) forwards; }
.demo-scene-qna.is-active .demo-qna-dashboard article { animation: demo-small-rise 400ms ease-out forwards; }
.demo-scene-qna.is-active .demo-qna-dashboard article:nth-of-type(1) { animation-delay: 1.35s; }
.demo-scene-qna.is-active .demo-qna-dashboard article:nth-of-type(2) { animation-delay: 1.65s; }
.demo-scene-qna.is-active .demo-qna-dashboard article:nth-of-type(3) { animation-delay: 1.95s; }

/* Organizer outcome */
.demo-dashboard { width: min(680px, 100%); padding: 27px; border-radius: 30px; }
.demo-dashboard-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }.demo-dashboard-head > div { display: grid; gap: 7px; }.demo-dashboard-head strong { font-size: 1.35rem; letter-spacing: -0.035em; }.demo-dashboard-head > span { padding: 7px 10px; border-radius: 999px; color: var(--mint); background: rgba(92,231,189,0.1); font-size: 0.61rem; font-weight: 850; }
.demo-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 18px; }
.demo-metrics > div { min-width: 0; padding: 13px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,0.11); border-radius: 17px; background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)); }
.demo-metric-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--mint); background: linear-gradient(145deg, rgba(92,231,189,0.17), rgba(92,231,189,0.06)); box-shadow: inset 0 1px rgba(255,255,255,0.08); }
.demo-metrics > div:nth-child(2) .demo-metric-icon { color: #c8a8ff; background: linear-gradient(145deg, rgba(130,81,237,0.22), rgba(130,81,237,0.07)); }.demo-metrics > div:nth-child(3) .demo-metric-icon { color: #ff9bd7; background: linear-gradient(145deg, rgba(242,90,181,0.2), rgba(242,90,181,0.06)); }
.demo-metric-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.demo-metrics p { min-width: 0; display: grid; gap: 1px; margin: 0; }.demo-metrics b { font-size: 1.35rem; line-height: 1; }.demo-metrics small { margin-top: 2px; color: #d7cedd; font-size: 0.56rem; font-weight: 780; }.demo-metrics em { color: #887d92; font-size: 0.5rem; font-style: normal; }
.demo-impact { margin-top: 11px; padding: 15px; border: 1px solid rgba(255,255,255,0.1); border-radius: 17px; background: rgba(255,255,255,0.04); }.demo-impact > p { display: flex; justify-content: space-between; margin: 0 0 11px; font-size: 0.7rem; }.demo-impact > p span { color: var(--mint); font-size: 0.58rem; }.demo-impact > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }.demo-impact > div > span { position: relative; min-width: 0; padding: 10px 11px 9px 32px; display: grid; gap: 2px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; background: rgba(255,255,255,0.04); }.demo-impact > div > span::after { position: absolute; left: 0; bottom: 0; width: 74%; height: 2px; content: ""; background: linear-gradient(90deg,var(--mint),transparent); }.demo-impact > div > span:nth-child(2)::after { width: 57%; background: linear-gradient(90deg,#b68bf9,transparent); }.demo-impact > div > span:nth-child(3)::after { width: 32%; background: linear-gradient(90deg,#f25ab5,transparent); }.demo-impact i { position: absolute; left: 10px; top: 13px; color: var(--mint); font-size: 0.62rem; font-style: normal; font-weight: 950; }.demo-impact > div > span:nth-child(2) i { color: #b68bf9; }.demo-impact > div > span:nth-child(3) i { color: #f58bc8; }.demo-impact b { font-size: 1.08rem; }.demo-impact small { color: #9d92a7; font-size: 0.54rem; }
.demo-dashboard-bars { margin-top: 11px; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; background: rgba(255,255,255,0.04); }.demo-dashboard-bars p { display: flex; justify-content: space-between; margin: 0 0 10px; font-size: 0.66rem; }.demo-dashboard-bars p span { color: var(--mint); }.demo-dashboard-bars > i { display: block; height: 6px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,0.08); }.demo-dashboard-bars > i b { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--mint), #77d0e8, var(--purple)); }
.demo-dashboard-private { display: flex; gap: 10px; margin-top: 11px; padding: 12px 14px; border: 1px solid rgba(92,231,189,0.13); border-radius: 14px; background: rgba(92,231,189,0.055); }.demo-dashboard-private > span { color: var(--mint); }.demo-dashboard-private p { display: grid; gap: 3px; margin: 0; }.demo-dashboard-private strong { font-size: 0.66rem; }.demo-dashboard-private small { color: #8fa39d; font-size: 0.59rem; }
.demo-scene-outcome.is-active .demo-dashboard { animation: demo-card-rise 700ms 100ms cubic-bezier(.16,.84,.23,1) both; }.demo-scene-outcome.is-active .demo-dashboard-bars > i b { animation: demo-bar-fill 1.2s 1s cubic-bezier(.2,.9,.2,1) forwards; }
.demo-organizer-captures { width: min(720px, 100%); display: grid; grid-template-columns: 1.06fr 0.8fr; gap: 12px; align-items: center; }
.demo-organizer-captures .demo-product-capture img { max-height: 56vh; }
.demo-organizer-captures .demo-product-capture:nth-child(2) img { max-height: 49vh; }
.demo-scene-outcome.is-active .demo-product-capture { animation: demo-card-rise 620ms 120ms cubic-bezier(.16,.84,.23,1) forwards; }
.demo-scene-outcome.is-active .demo-product-capture:nth-child(2) { animation-delay: 430ms; }

/* Final card */
.demo-final-mark { position: relative; width: 100px; height: 100px; z-index: 4; margin-bottom: -15px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.17); border-radius: 30px; background: rgba(255,255,255,0.055); box-shadow: 0 30px 90px rgba(130,81,237,0.25); }
.demo-final-mark img { position: relative; z-index: 2; width: 72px; height: 72px; border-radius: 21px; }.demo-final-mark i { position: absolute; inset: -18px; border: 1px solid rgba(92,231,189,0.3); border-radius: 38px; animation: demo-final-pulse 2s ease-out infinite; }
.demo-scene-final .demo-title-card h2 { font-size: clamp(3.8rem, 7.7vw, 8rem); }
.demo-final-actions { display: flex; justify-content: center; gap: 11px; margin-top: 28px; }
.demo-final-actions a,
.demo-final-actions button { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border-radius: 14px; font-size: 0.76rem; font-weight: 900; }
.demo-final-actions a { color: #10241d; background: linear-gradient(135deg, var(--mint), #73d7e8); }.demo-final-actions button { color: white; background: rgba(255,255,255,0.06); }
.demo-final-account-note { display: block; max-width: 590px; margin: 14px auto 0; color: #94899f; font-size: 0.64rem; line-height: 1.5; }
.demo-scene-final.is-active .demo-final-mark { animation: demo-score-pop 680ms 80ms cubic-bezier(.16,.84,.23,1) both; }.demo-scene-final.is-active .demo-title-card { animation: demo-title-rise 700ms 240ms cubic-bezier(.16,.84,.23,1) both; }

@keyframes demo-overlay-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes demo-scene-in { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes demo-title-rise { from { opacity: 0; transform: translateY(24px); filter: blur(12px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes demo-card-rise { from { opacity: 0; transform: translateY(30px) scale(0.96); filter: blur(9px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
@keyframes demo-phone-in { from { opacity: 0; transform: translateY(38px) rotate(3deg) scale(0.94); filter: blur(10px); } to { opacity: 1; transform: translateY(0) rotate(0) scale(1); filter: blur(0); } }
@keyframes demo-small-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes demo-fade-in { to { opacity: 1; } }
@keyframes demo-field-in { to { opacity: 1; transform: translateX(0); } }
@keyframes demo-question-focus { 50%,100% { border-color: rgba(92,231,189,0.55); box-shadow: 0 0 0 3px rgba(92,231,189,0.07), 0 16px 44px rgba(58,209,165,0.08); } }
@keyframes demo-cursor-blink { 0%,45% { opacity: 1; } 46%,100% { opacity: 0; } }
@keyframes demo-person-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes demo-orb-drift { to { transform: translate3d(50px,-32px,0) scale(1.12); } }
@keyframes demo-ring-pulse { from { opacity: 0.65; transform: scale(0.6); } to { opacity: 0; transform: scale(1.4); } }
@keyframes demo-qr-in { to { opacity: 1; transform: translateX(0) rotate(-2deg); } }
@keyframes demo-scan-beam { 0% { top: 7px; opacity: 0; } 15%,82% { opacity: 1; } 100% { top: calc(100% - 10px); opacity: 0; } }
@keyframes demo-ai-arrive { from { opacity: 0; transform: translateY(28px) scale(0.94); filter: blur(8px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
@keyframes demo-ai-selected { to { border-color: rgba(92,231,189,0.48); box-shadow: 0 25px 75px rgba(58,209,165,0.13); } }
@keyframes demo-ai-icon-selected { to { color: #16241f; background: var(--mint); transform: scale(1.04); } }
@keyframes demo-engine-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes demo-engine-spin-reverse { to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes demo-node-in { from { opacity: 0; transform: scale(0.78); filter: blur(6px); } to { opacity: 1; transform: scale(1); filter: blur(0); } }
@keyframes demo-signal-in { from { opacity: 0; transform: translateY(9px) scale(0.92); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes demo-score-pop { from { opacity: 0; transform: scale(0.65); } 70% { transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
@keyframes demo-choice-tap { 0% { opacity: 0; transform: scale(0.55); } 35% { opacity: 0.9; } 100% { opacity: 0; transform: scale(2.3); } }
@keyframes demo-match-press { from { opacity: 1; transform: translateY(0) scale(1); } 72% { opacity: 1; transform: translateY(3px) scale(0.965); } to { opacity: 1; transform: translateY(2px) scale(0.975); } }
@keyframes demo-match-lift { from { opacity: 1; transform: translateY(2px) scale(0.975); } 70% { opacity: 1; transform: translateY(-4px) scale(1.012); } to { opacity: 1; transform: translateY(-2px) scale(1); } }
@keyframes demo-pointer-in { from { opacity: 0; transform: translate(36px,25px) rotate(-18deg) scale(0.82); } to { opacity: 1; transform: translate(0,0) rotate(-18deg) scale(1); } }
@keyframes demo-pointer-out { from { opacity: 1; transform: translate(0,0) rotate(-18deg) scale(1); } to { opacity: 0; transform: translate(-3px,-5px) rotate(-18deg) scale(0.9); } }
@keyframes demo-detail-open { from { opacity: 0; clip-path: inset(0 0 100% 0 round 30px); transform: translateY(-8px) scale(0.985); } to { opacity: 1; clip-path: inset(0 round 30px); transform: translateY(0) scale(1); } }
@keyframes demo-approve-tap { 0%,100% { transform: scale(1); } 55% { transform: scale(0.97); filter: brightness(1.16); } }
@keyframes demo-approve-away { to { display: none; opacity: 0; transform: translateY(-5px); } }
@keyframes demo-bar-fill { to { width: 90%; } }
@keyframes demo-final-pulse { from { opacity: 0.65; transform: scale(0.82); } to { opacity: 0; transform: scale(1.25); } }

@media (max-width: 900px) {
  .demo-topbar { grid-template-columns: auto 1fr auto; gap: 12px; }
  .demo-progress-wrap { width: min(250px, 100%); justify-self: center; }
  .demo-brand small { display: none; }
  .demo-controls #demo-back,
  .demo-controls #demo-next { width: 37px; padding: 0; overflow: hidden; color: transparent; }
  .demo-controls #demo-back::after { content: "←"; color: #d5cddd; }
  .demo-controls #demo-next::after { content: "→"; color: #d5cddd; }
  .demo-scene { grid-template-columns: minmax(0, 0.78fr) minmax(390px, 1.1fr); gap: 35px; }
  .demo-copy h2 { font-size: clamp(3rem, 7vw, 5rem); }
}

@media (max-width: 700px) {
  .demo-topbar { min-height: 70px; grid-template-columns: auto 1fr; align-items: start; padding: max(10px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) 8px max(12px, env(safe-area-inset-left)); }
  .demo-brand { padding-top: 4px; }.demo-brand img { width: 28px; height: 28px; }.demo-brand span { font-size: 0.88rem; }
  .demo-progress-wrap { position: absolute; left: 13px; right: 13px; bottom: 4px; width: auto; grid-template-columns: auto 1fr; }
  .demo-controls { gap: 5px; }
  .demo-controls button { min-height: 33px; padding: 0 10px; font-size: 0.64rem; }.demo-controls .demo-close { width: 34px; min-height: 34px; }
  .demo-stage { inset: 70px 0 59px; }
  .demo-scene { width: 100%; min-height: 100%; padding: 24px 17px 42px; grid-template-columns: 1fr; align-content: center; gap: 25px; }
  .demo-copy { width: min(520px, 100%); max-width: none; justify-self: center; text-align: center; }
  .demo-copy > p { margin-bottom: 11px; font-size: 0.58rem; }.demo-copy h2 { font-size: clamp(2.45rem, 12vw, 4rem); }.demo-copy > span { margin: 14px auto 0; font-size: 0.88rem; line-height: 1.48; }
  .demo-copy-centered { grid-column: 1; }
  .demo-title-card h2 { font-size: clamp(3rem, 15vw, 5.2rem); }.demo-title-card > span { margin-top: 18px; font-size: 0.9rem; }
  .demo-caption { bottom: max(9px, env(safe-area-inset-bottom)); min-width: 0; width: calc(100% - 24px); padding: 8px 12px; gap: 8px; }.demo-caption small { font-size: 0.48rem; }.demo-caption strong { font-size: 0.61rem; }
  .demo-intro-crowd { inset: 7% 0; opacity: 0.65; }.demo-intro-crowd span { width: 42px; }.demo-intro-crowd span:nth-child(5),.demo-intro-crowd span:nth-child(6),.demo-intro-crowd span:nth-child(11),.demo-intro-crowd span:nth-child(12) { display: none; }
  .demo-organizer-shell,.demo-review-card,.demo-result-card,.demo-chat,.demo-dashboard { padding: 17px; border-radius: 23px; }
  .demo-device-strip { gap: 8px; padding: 9px 10px; }.demo-device-strip svg { width: 27px; height: 27px; }.demo-device-strip small { display: none; }
  .demo-form-heading { padding: 15px 0 12px; }.demo-form-heading strong { font-size: 1.1rem; }.demo-form-heading > span { width: 43px; height: 43px; border-radius: 14px; font-size: 1.2rem; }.demo-form-field,.demo-question-field { padding: 11px 13px; }.demo-question-field { min-height: 82px; }.demo-created { margin-top: 10px; padding: 10px 12px; }
  .demo-scene-scan { grid-template-columns: 1fr; }.demo-scan-visual { min-height: 500px; }.demo-phone { width: min(280px, 76%); min-height: 470px; padding: 14px 16px 18px; border-radius: 39px; }.demo-phone-island { height: 20px; margin-bottom: 12px; }.demo-event-art { height: 116px; margin: 15px 0 12px; }.demo-event-art span { font-size: 3rem; }.demo-phone h3 { font-size: 1.45rem; }.demo-qr-placard { left: 0; top: 14%; width: 145px; padding: 12px; }.demo-qr-code { width: 105px; height: 105px; padding: 6px; }.demo-qr-placard > b { font-size: 0.55rem; }.demo-scan-chip { right: 0; bottom: 7%; }
  .demo-scene-ai { gap: 18px; }.demo-ai-row { grid-template-columns: 1fr; gap: 8px; }.demo-ai-card { min-height: 82px; padding: 12px 15px; display: grid; grid-template-columns: 45px 1fr auto; grid-template-rows: auto auto; column-gap: 12px; justify-items: start; }.demo-ai-card i { grid-row: 1 / 3; width: 43px; height: 43px; margin: 0; border-radius: 14px; font-size: 1.15rem; }.demo-ai-card strong { align-self: end; }.demo-ai-card small { align-self: start; }.demo-ai-card b { grid-row: 1 / 3; grid-column: 3; align-self: center; margin: 0; }
  .demo-ai-capture { width: min(390px, 88vw); }.demo-ai-capture img { max-height: 42vh; }
  .demo-review-card label { padding: 10px 38px 10px 12px; }.demo-review-card label b { font-size: 0.64rem; }.demo-consent { padding: 10px 12px; }
  .demo-match-engine { height: 365px; min-height: 365px; }.demo-engine-ring-a { width: 205px; height: 205px; }.demo-engine-ring-b { width: 315px; height: 315px; }.demo-engine-core { width: 126px; height: 126px; }.demo-engine-core img { width: 38px; height: 38px; }.demo-person { min-width: 113px; padding: 7px 8px; }.demo-person > span { width: 29px; height: 29px; }.demo-person small { display: none; }.demo-person-a { left: 0; top: 12%; }.demo-person-m { right: 0; top: 11%; }.demo-person-j { left: 0; bottom: 12%; }.demo-person-s { right: 0; bottom: 11%; }.demo-fit-one { left: 8%; top: 35%; }.demo-fit-two { right: 4%; bottom: 34%; }
  .demo-scene-result { grid-template-columns: 1fr; gap: 25px; }.demo-scene-result .demo-copy h2 { font-size: clamp(2.75rem, 13vw, 4.2rem); }.demo-scene-result .demo-copy > p { font-size: 0.62rem; }
  .demo-results-visual { width: min(520px, 100%); gap: 11px; }.demo-match-list { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 5px; }.demo-match-choice { min-height: 72px; padding: 8px 7px; grid-template-columns: 32px minmax(0,1fr); gap: 6px; }.demo-match-choice > span { width: 32px; height: 32px; }.demo-match-choice strong { padding-right: 2px; font-size: 0.61rem; }.demo-match-choice small,.demo-match-choice em { display: none; }.demo-match-choice > b { position: absolute; right: 8px; bottom: 7px; font-size: 0.59rem; }.demo-match-pointer { left: 73px; right: auto; top: 42px; }
  .demo-result-top > div strong { font-size: 1.2rem; }.demo-result-top > span { width: 62px; height: 62px; }.demo-result-top > span b { font-size: 1.1rem; }.demo-available { margin-top: -4px; }.demo-verdict { padding: 12px; }.demo-opener { padding: 11px 12px; }
  .demo-message { max-width: 88%; }.demo-meetup { padding: 10px; }
  .demo-scene-qna { grid-template-columns: 1fr; }.demo-qna-visual { width: min(440px, 100%); grid-template-columns: 1fr; justify-self: center; }.demo-qna-phone { width: min(280px, 76vw); justify-self: center; padding: 14px 15px 17px; }.demo-qna-phone > p { margin-top: 19px; }.demo-qna-composer > b { min-height: 58px; }.demo-qna-dashboard { padding: 16px; }.demo-qna-dashboard article:nth-of-type(n+2) { display: none; }
  .demo-dashboard-head strong { font-size: 1.05rem; }.demo-metrics { margin-top: 12px; gap: 5px; }.demo-metrics > div { padding: 8px 5px; grid-template-columns: 1fr; justify-items: center; gap: 5px; text-align: center; }.demo-metric-icon { width: 36px; height: 36px; }.demo-metric-icon svg { width: 20px; height: 20px; }.demo-metrics b { font-size: 1.2rem; }.demo-metrics em { display: none; }.demo-impact { padding: 12px; }.demo-impact > div { gap: 5px; }.demo-impact > div > span { padding: 8px 5px 7px; justify-items: center; text-align: center; }.demo-impact i { position: static; }.demo-dashboard-private { padding: 10px 11px; }
  .demo-organizer-captures { width: min(500px, 100%); gap: 7px; }.demo-organizer-captures .demo-product-capture { padding: 6px; border-radius: 18px; }.demo-organizer-captures .demo-product-capture img,.demo-organizer-captures .demo-product-capture:nth-child(2) img { max-height: 36vh; border-radius: 13px; }.demo-organizer-captures .demo-product-capture > span { font-size: 0.4rem; }
  .demo-final-mark { width: 78px; height: 78px; border-radius: 24px; }.demo-final-mark img { width: 56px; height: 56px; }.demo-scene-final .demo-title-card h2 { font-size: clamp(3.2rem, 16vw, 5.7rem); }.demo-final-actions { flex-direction: column; align-items: stretch; }.demo-final-actions a,.demo-final-actions button { width: 100%; }
}

@media (max-width: 390px) {
  .demo-controls #demo-skip { display: none; }
  .demo-stage { bottom: 57px; }
  .demo-scene { padding-left: 13px; padding-right: 13px; }
  .demo-copy h2 { font-size: 2.35rem; }
  .demo-phone { min-height: 450px; }.demo-event-art { height: 105px; }.demo-phone h3 { font-size: 1.35rem; }.demo-phone > p { font-size: 0.64rem; }
  .demo-scan-visual { min-height: 470px; }.demo-qr-placard { width: 128px; }.demo-qr-code { width: 90px; height: 90px; }.demo-scan-chip { padding: 9px 10px; }
  .demo-match-engine { height: 330px; min-height: 330px; }.demo-engine-ring-b { width: 280px; height: 280px; }.demo-person { min-width: 99px; }.demo-person p b { font-size: 0.6rem; }.demo-fit-signal { font-size: 0.51rem; }
  .demo-result-card { padding: 14px; }.demo-result-top > span { width: 56px; height: 56px; }.demo-available { margin-bottom: 11px; }.demo-verdict { padding: 10px 11px; }.demo-verdict small { line-height: 1.4; }.demo-why { margin-top: 8px; }.demo-opener { margin-top: 10px; padding: 10px 11px; }.demo-request-button { min-height: 43px; margin-top: 10px; }.demo-private-note { margin-top: 7px; }
  .demo-why span { font-size: 0.52rem; }.demo-chat-head > b { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mixer-demo[open],
  .demo-scene.is-active,
  .demo-scene.is-active *,
  .demo-backdrop i { animation: none !important; }
  .demo-scene { opacity: 1; transform: none; }
  .demo-ai-card,.demo-product-capture,.demo-person,.demo-fit-signal,.demo-review-card label,.demo-created,.demo-device-strip,.demo-qr-placard,.demo-phone,.demo-scan-chip,.demo-match-choice,.demo-result-card,.demo-chat-lock,.demo-message,.demo-meetup,.demo-qna-phone,.demo-qna-dashboard,.demo-qna-sent,.demo-qna-dashboard article { opacity: 1; transform: none; filter: none; }
  .demo-qr-code > i,.demo-match-choice::after,.demo-match-pointer { display: none; }
  .demo-results-visual .demo-result-card { opacity: 1; clip-path: none; transform: none; }
  .demo-ai-chatgpt { border-color: rgba(92,231,189,0.48); box-shadow: 0 25px 75px rgba(58,209,165,0.13); }.demo-ai-chatgpt::before { opacity: 1; }.demo-ai-chatgpt i { color: #16241f; background: var(--mint); }.demo-ai-chatgpt b { opacity: 1; transform: none; color: #10251e; border-color: transparent; background: var(--mint); }
  .demo-question-field b > i { display: none; }
  .demo-approved { display: none !important; }
  .demo-approve { display: flex !important; opacity: 1; transform: none; }
  .demo-dashboard-bars > i b { width: 90%; }
}
