:root {
  --bg: #f3f0e8;
  --surface-start: #fffdf8;
  --surface-mid: #fbf7f0;
  --surface-lilac: #f7efff;
  --surface-end: #fff8ee;
  --paper: #fffdf8;
  --white: rgba(255, 255, 255, 0.92);
  --ink: #241335;
  --muted: #4e4263;
  --line: rgba(36, 19, 53, 0.18);
  --primary: #4d236f;
  --primary-soft: rgba(77, 35, 111, 0.1);
  --brown: #2a1b32;
  --yellow: #ffd44f;
  --peach: #ffb07e;
  --mint: #bbf0dd;
  --sky: #cde7ff;
  --cream: #fff0b8;
  --orange: #4d236f;
  --green: #1f8d62;
  --blue: #426ef0;
  --shadow: 0 24px 54px rgba(36, 19, 53, 0.12);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 212, 79, 0.08), transparent 0 16%, transparent 17%),
    radial-gradient(circle at 84% 8%, rgba(124, 79, 214, 0.1), transparent 0 18%, transparent 19%),
    linear-gradient(180deg, #fffdf8 0%, #faf7f2 28%, #f8f1ff 54%, #fff7ea 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(74px);
  opacity: 0.35;
  z-index: -1;
}

.page-glow-left {
  top: -110px;
  left: -90px;
  background: rgba(255, 176, 122, 0.45);
}

.page-glow-right {
  top: 30px;
  right: -110px;
  background: rgba(196, 233, 247, 0.5);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
}

.container,
.nav-bar {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
}

.nav-shell {
  padding-top: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.58) 58%, rgba(255, 253, 248, 0));
}

.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  border: 2px solid rgba(36, 19, 53, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(36, 19, 53, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 0;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: clamp(132px, 14vw, 176px);
  max-width: none;
  height: auto;
  object-fit: contain;
}

.pill,
.button,
.eyebrow,
h1,
h2,
h3,
.waitlist-ticket h3,
.waitlist-quote-head strong,
.waitlist-quote-card blockquote,
.sales-stat-card strong {
  font-family: "Funnel Display", "Nunito Sans", sans-serif;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-main {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(251, 246, 239, 0.98) 20%, rgba(248, 241, 255, 0.96) 48%, rgba(255, 250, 243, 0.98) 72%, rgba(255, 246, 232, 1) 100%);
}

.section {
  padding: 88px 0;
  background: transparent;
}

.section-tight {
  padding-top: 28px;
  padding-bottom: 28px;
}

.section-alt {
  padding-top: 100px;
  padding-bottom: 100px;
  background:
    linear-gradient(180deg, rgba(247, 239, 255, 0.22), rgba(255, 248, 238, 0.18));
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.75rem, 4.3vw, 4.9rem);
  max-width: 15ch;
  line-height: 1;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 1.08;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.28rem, 1.55vw, 1.58rem);
}

p,
span,
li {
  line-height: 1.72;
}

.hero-text,
.section-heading p {
  color: var(--muted);
}

.hero-text {
  max-width: 66ch;
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--primary);
  color: #fffefb;
  border-color: rgba(36, 19, 53, 0.12);
}

.button.compact {
  padding: 12px 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 12px 0;
}

.pill.orange {
  background: var(--orange);
  color: white;
}

.pill.blue {
  background: rgba(124, 79, 214, 0.18);
  color: var(--ink);
}

.pill.yellow {
  background: var(--yellow);
  color: var(--ink);
}

.pill.neutral {
  background: rgba(124, 79, 214, 0.12);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 40px;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 96px;
  height: 18px;
  margin-top: 26px;
  background: url("../images/doodle-swoop.svg") no-repeat left center/contain;
}

.site-footer {
  padding: 88px 0 44px;
  border-top: none;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 189, 118, 0.18), transparent 22%),
    radial-gradient(circle at 85% 24%, rgba(162, 120, 224, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(60, 29, 79, 0.98), rgba(33, 18, 46, 1));
  color: rgba(255, 251, 244, 0.96);
}

.waitlist-header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.waitlist-hero {
  padding-top: 56px;
  padding-bottom: 72px;
}

.waitlist-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}

.waitlist-hero-copy {
  display: grid;
  gap: 18px;
}

.waitlist-hero-brand {
  width: clamp(140px, 18vw, 300px);
  margin-bottom: 8px;
}

.waitlist-hero-copy .hero-text {
  max-width: 58ch;
}

.waitlist-note {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
}

.waitlist-ticket {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 34px 44px 44px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.09), transparent 0 14%, transparent 15%),
    radial-gradient(circle at 82% 72%, rgba(255, 212, 79, 0.18), transparent 0 10%, transparent 11%),
    radial-gradient(circle at 38% 82%, rgba(124, 79, 214, 0.14), transparent 0 22%, transparent 23%),
    linear-gradient(135deg, #4d236f 0%, #341b4a 48%, #241335 100%);
  color: #fffdf8;
  box-shadow: 0 32px 72px rgba(36, 19, 53, 0.22);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  min-height: 100%;
}

.waitlist-ticket.has-locked-height {
  height: var(--waitlist-ticket-height);
  min-height: var(--waitlist-ticket-height);
}

.waitlist-ticket::before {
  content: "";
  position: relative;
  z-index: 1;
  order: 4;
  display: block;
  width: 100%;
  height: 1px;
  margin: 2px 0 4px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0 11px,
    transparent 11px 21px
  );
  opacity: 0.9;
}

.waitlist-ticket::after {
  content: "";
  position: absolute;
  top: clamp(220px, 43%, 272px);
  right: -28px;
  width: 76px;
  height: 76px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--surface-start);
  box-shadow: -14px 0 28px rgba(36, 19, 53, 0.08);
  z-index: 0;
}

.waitlist-ticket > * {
  position: relative;
  z-index: 1;
}

.waitlist-ticket-top {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.waitlist-ticket-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 251, 244, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist-ticket h3 {
  order: 2;
  max-width: 18ch;
  color: #fffdf8;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.waitlist-ticket p {
  max-width: 100%;
  margin: 0 0 1rem;
  color: rgba(255, 251, 244, 0.8);
  line-height: 1.6;
}

.waitlist-ticket-intro {
  order: 3;
}

.waitlist-ticket-fields {
  order: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1rem;
}

.waitlist-ticket-field {
  display: grid;
  gap: 8px;
}

.waitlist-ticket-field.full {
  grid-column: 1 / -1;
}

.waitlist-ticket-field span {
  color: rgba(255, 251, 244, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.waitlist-ticket-field input,
.waitlist-ticket-field select,
.waitlist-ticket-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
  color: #fffdf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.waitlist-ticket-field textarea {
  min-height: 96px;
  resize: vertical;
}

.waitlist-ticket-field input::placeholder,
.waitlist-ticket-field textarea::placeholder {
  color: rgba(255, 251, 244, 0.5);
}

.waitlist-ticket-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-color: rgba(255, 255, 255, 0.09);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23fffdf8' stroke-opacity='0.82' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  cursor: pointer;
}

.waitlist-ticket-field select option {
  color: var(--ink);
}

.waitlist-ticket-bottom {
  order: 6;
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.waitlist-ticket-submit {
  min-height: 58px;
  width: 100%;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--yellow), #fff099);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.waitlist-ticket-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.2);
}

.waitlist-form-feedback {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.waitlist-ticket-bottom .waitlist-form-feedback.is-success {
  color: #b8f5c8;
}

.waitlist-ticket-bottom .waitlist-form-feedback.is-error {
  color: #ffb4a8;
}

.waitlist-ticket-bottom p {
  max-width: none;
  color: rgba(255, 251, 244, 0.7);
  font-size: 0.88rem;
}

.waitlist-ticket.is-success::before,
.waitlist-ticket.is-success::after,
.waitlist-ticket.is-success .waitlist-ticket-top,
.waitlist-ticket.is-success > h3,
.waitlist-ticket.is-success .waitlist-ticket-intro,
.waitlist-ticket.is-success .waitlist-ticket-fields,
.waitlist-ticket.is-success .waitlist-ticket-bottom {
  display: none;
}

.waitlist-ticket.is-success {
  place-content: center;
}

.waitlist-ticket-success {
  display: none;
  order: 1;
  grid-column: 1 / -1;
  justify-items: center;
  text-align: center;
  gap: 18px;
  padding: clamp(18px, 4vw, 42px) clamp(12px, 3vw, 24px);
}

.waitlist-ticket.is-success .waitlist-ticket-success {
  display: grid;
  min-height: 100%;
  align-content: center;
}

.waitlist-ticket-success-icon {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 8px;
}

.waitlist-ticket-success-glow {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 114, 255, 0.42), transparent 68%);
}

.waitlist-ticket-success-circle {
  position: absolute;
  inset: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #9b7cff 0%, #7b5dfa 58%, #6a4de8 100%);
  color: #fffdf8;
  box-shadow: 0 18px 40px rgba(77, 35, 111, 0.35);
}

.waitlist-ticket-success-circle svg {
  width: 42px;
  height: 42px;
}

.waitlist-ticket-success-accent {
  position: absolute;
  border-radius: 999px;
}

.waitlist-ticket-success-accent--line-one {
  top: 18px;
  right: 8px;
  width: 18px;
  height: 4px;
  transform: rotate(38deg);
  background: var(--sky);
}

.waitlist-ticket-success-accent--line-two {
  bottom: 24px;
  left: 4px;
  width: 16px;
  height: 4px;
  transform: rotate(-32deg);
  background: #c084fc;
}

.waitlist-ticket-success-accent--dot-one {
  top: 42px;
  left: 8px;
  width: 8px;
  height: 8px;
  background: #c084fc;
}

.waitlist-ticket-success-accent--dot-two {
  right: 18px;
  bottom: 18px;
  width: 7px;
  height: 7px;
  background: var(--sky);
}

.waitlist-ticket-success h3 {
  order: unset;
  max-width: 16ch;
  margin: 0;
  font-size: clamp(1.85rem, 2.5vw, 2.5rem);
  line-height: 1.08;
}

.waitlist-ticket-success p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 251, 244, 0.78);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.waitlist-ticket-success-reset {
  margin-top: 8px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf8;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.waitlist-ticket-success-reset:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.waitlist-hero-ticket {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  padding: 18px 0 0 18px;
}

.waitlist-hero-ticket::before {
  content: "";
  position: absolute;
  inset: 28px 14px 10px 0;
  border-radius: 34px 44px 44px 34px;
  border: 1px solid rgba(77, 35, 111, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(95, 52, 133, 0.96) 0%, rgba(58, 30, 85, 0.96) 50%, rgba(31, 18, 46, 0.96) 100%);
  box-shadow: 0 24px 54px rgba(36, 19, 53, 0.14);
  transform: rotate(-6deg) translate(-10px, 8px);
  z-index: 0;
  opacity: 0.7;
}

.waitlist-hero-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
  z-index: 0;
}

.waitlist-hero-shape.shape-one {
  top: -18px;
  right: -22px;
  width: min(18vw, 168px);
  transform: rotate(10deg);
}

.waitlist-preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.waitlist-product-visual {
  margin-top: 10px;
}

.hero-media {
  position: relative;
  padding: clamp(10px, 2vw, 24px) 0 clamp(10px, 2vw, 24px);
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.hero-visual-stage {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(420px, 46vw, 640px);
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.hero-visual-image-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  border-radius: clamp(20px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 20px 44px rgba(36, 19, 53, 0.14);
  backdrop-filter: blur(24px) saturate(1.25);
  z-index: 1;
}

.hero-visual-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 28px;
  border: 1px solid #eee;
}

.hero-visual-image-wrap picture {
  display: block;
}

.waitlist-product-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.waitlist-product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 212, 79, 0.14), transparent 0 16%, transparent 17%),
    radial-gradient(circle at 84% 20%, rgba(124, 79, 214, 0.14), transparent 0 18%, transparent 19%),
    radial-gradient(circle at 52% 110%, rgba(77, 35, 111, 0.08), transparent 0 28%, transparent 29%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(247, 241, 252, 0.9));
  z-index: -2;
}

.waitlist-product-section .container {
  position: relative;
  z-index: 1;
}

.waitlist-product-section .section-heading {
  max-width: 780px;
}

.waitlist-product-section .section-heading .eyebrow {
  color: #7c4fd6;
}

.waitlist-product-section .section-heading h2 {
  max-width: 16ch;
}

.waitlist-product-section .section-heading p {
  max-width: 62ch;
}

.waitlist-product-section .hero-media {
  margin-top: 12px;
  margin-bottom: 10px;
}

.waitlist-product-section .hero-visual-stage {
  min-height: auto;
  padding: 0;
}

.waitlist-product-section .hero-visual-stage::before {
  content: "";
  position: absolute;
  inset: 10px 0 0;
  border-radius: 42px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 212, 79, 0.16), transparent 0 16%, transparent 17%),
    radial-gradient(circle at 86% 20%, rgba(124, 79, 214, 0.16), transparent 0 16%, transparent 17%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 239, 255, 0.8));
  box-shadow: 0 28px 70px rgba(36, 19, 53, 0.1);
  z-index: -1;
}

.waitlist-product-section .hero-visual-stage::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10px;
  height: 16%;
  border-radius: 50%;
  background: rgba(36, 19, 53, 0.14);
  filter: blur(32px);
  z-index: -2;
}

.waitlist-product-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.waitlist-product-flow .sales-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding-top: 30px;
}

.waitlist-flow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(77, 35, 111, 0.08);
  color: var(--primary);
  font-family: "Funnel Display", "Nunito Sans", sans-serif;
  font-weight: 900;
}

.waitlist-trust-strip {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(77, 35, 111, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(36, 19, 53, 0.08);
}

.waitlist-trust-strip-copy {
  margin: 0;
  color: var(--primary);
  font-family: "Funnel Display", "Nunito Sans", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1.08;
}

.waitlist-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.waitlist-trust-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(77, 35, 111, 0.06);
  border: 1px solid rgba(77, 35, 111, 0.08);
  color: var(--ink);
  font-weight: 900;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.site-map-card {
  display: grid;
  min-height: 200px;
  padding: 24px;
  gap: 0;
  border-radius: 30px;
  border: 1px solid rgba(77, 35, 111, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 248, 242, 0.88));
  box-shadow: 0 12px 26px rgba(36, 19, 53, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-map-card > .pill.neutral {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  margin: 0;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(77, 35, 111, 0.08);
  color: var(--primary);
  text-align: left;
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.site-map-card h3 {
  position: relative;
  z-index: 1;
  max-width: 18ch;
}

.site-map-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-map-card:hover,
.site-map-card:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(77, 35, 111, 0.14);
  box-shadow: 0 18px 34px rgba(36, 19, 53, 0.1);
  transform: translateY(-3px);
}

.site-map-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -20px;
  bottom: -24px;
  width: 80px;
  height: 80px;
  border-radius: 42px;
  background: transparent;
  border: none;
  color: rgba(77, 35, 111, 0.08);
  box-shadow: none;
  transition: all 180ms ease;
}

.site-map-card:hover .site-map-icon,
.site-map-card:focus-visible .site-map-icon {
  transform: rotate(-3deg) scale(1.54);
  color: rgba(77, 35, 111, 0.12);
  bottom: -5px;
  right: -5px;
  transition: all 180ms ease;
}

.site-map-icon svg {
  width: 104px;
  height: 104px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waitlist-section-divider {
  width: 100%;
  height: 88px;
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(77, 35, 111, 0.14) 0 16px, transparent 17px),
    radial-gradient(circle at 50% 0%, rgba(255, 212, 79, 0.24) 0 16px, transparent 17px),
    radial-gradient(circle at 80% 0%, rgba(124, 79, 214, 0.16) 0 16px, transparent 17px),
    linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(77, 35, 111, 0.05) 42%, rgba(255, 253, 248, 0));
}

.waitlist-proof-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(255, 248, 238, 0.82)),
    url("../images/section-divider.webp") center top / cover no-repeat;
}

.waitlist-proof-section .container {
  position: relative;
  z-index: 1;
}

.waitlist-proof-section .sales-stat-grid {
  margin-top: 6px;
}

.waitlist-benefit-section {
  position: relative;
}

.waitlist-benefit-section .section-heading p {
  max-width: 58ch;
}

.waitlist-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.waitlist-benefit-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(77, 35, 111, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 212, 79, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(36, 19, 53, 0.08);
}

.waitlist-benefit-card.accent {
  background:
    radial-gradient(circle at top right, rgba(124, 79, 214, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.9);
}

.waitlist-benefit-card h3 {
  max-width: 18ch;
}

.waitlist-benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

#who-for {
  position: relative;
  background:
    linear-gradient(180deg, rgba(248, 241, 255, 0.98) 0%, rgba(255, 251, 245, 0.98) 24%, rgba(254, 251, 248, 1) 100%);
}

#who-for::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(77, 35, 111, 0.08), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 82%, rgba(254, 251, 248, 1));
  pointer-events: none;
}

#who-for .container {
  position: relative;
  z-index: 1;
}

.waitlist-preview-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.waitlist-shot {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(77, 35, 111, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(36, 19, 53, 0.1);
}

.waitlist-shot.large {
  min-height: 100%;
}

.waitlist-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.waitlist-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.who-for-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* .who-for-card h3 {
  max-width: 18ch;
} */

.who-for-card p {
  max-width: 34ch;
}

.waitlist-quote-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(77, 35, 111, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(36, 19, 53, 0.08);
}

.waitlist-quote-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.waitlist-quote-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  background: #fff7ec;
  box-shadow: 0 12px 24px rgba(36, 19, 53, 0.12);
}

.waitlist-quote-head strong {
  display: block;
  font-size: 1.02rem;
}

.waitlist-quote-head span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.waitlist-quote-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.16;
}

.waitlist-builder-section {
  position: relative;
  overflow: hidden;
}

.waitlist-builder-section::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 79, 0.22), transparent 68%);
  pointer-events: none;
}

.waitlist-builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.waitlist-builder-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.waitlist-builder-copy h2 {
  max-width: 20ch;
}

.waitlist-builder-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.72;
}

.waitlist-builder-panel {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 38px;
  border: 1px solid rgba(77, 35, 111, 0.12);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 212, 79, 0.28), transparent 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 242, 255, 0.86));
  box-shadow: 0 28px 60px rgba(36, 19, 53, 0.12);
  overflow: hidden;
}

.waitlist-builder-panel::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 35, 111, 0.16), transparent 70%);
  pointer-events: none;
}

.waitlist-builder-marquee {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.work-logo-tile {
  position: relative;
  display: inline-flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(77, 35, 111, 0.08);
  cursor: default;
  outline: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.work-logo-tile img {
  width: min(100%, 94px);
  height: 34px;
  object-fit: contain;
}

.work-logo-tile::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translate(-50%, 6px);
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fffdf8;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.work-logo-tile:hover,
.work-logo-tile:focus-visible {
  z-index: 3;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(77, 35, 111, 0.16);
  box-shadow: 0 14px 28px rgba(36, 19, 53, 0.1);
}

.work-logo-tile:hover::after,
.work-logo-tile:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.waitlist-builder-cards {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.waitlist-builder-cards article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(77, 35, 111, 0.1);
}

.waitlist-builder-cards strong {
  font-family: "Funnel Display", "Nunito Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.waitlist-builder-cards span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.waitlist-about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.waitlist-about-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(77, 35, 111, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(36, 19, 53, 0.08);
}

.waitlist-about-card h2 {
  max-width: 14ch;
}

.waitlist-about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.waitlist-cta-panel {
  display: grid;
  grid-template-columns: 1.15fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 38px;
  border: 1px solid rgba(77, 35, 111, 0.12);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 79, 0.24), transparent 0 16%, transparent 17%),
    radial-gradient(circle at 86% 20%, rgba(124, 79, 214, 0.22), transparent 0 18%, transparent 19%),
    radial-gradient(circle at 84% 82%, rgba(255, 176, 122, 0.18), transparent 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 240, 255, 0.86) 50%, rgba(255, 247, 235, 0.92));
  box-shadow: 0 28px 60px rgba(36, 19, 53, 0.12);
  position: relative;
  overflow: hidden;
}

.waitlist-cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 35, 111, 0.12), transparent 68%);
  pointer-events: none;
}

.waitlist-cta-copy,
.waitlist-cta-action {
  position: relative;
  z-index: 1;
}

.waitlist-cta-action {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 28px;
  background: rgba(77, 35, 111, 0.08);
  border: 1px solid rgba(77, 35, 111, 0.08);
  min-width: min(100%, 240px);
}

.waitlist-cta-action .button {
  min-width: 220px;
  justify-content: center;
}

.waitlist-cta-action p {
  max-width: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(36, 19, 53, 0.68);
}

.waitlist-cta-panel h2 {
  max-width: 35ch;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.waitlist-cta-panel p {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
}

.waitlist-grand-summary {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 212, 79, 0.22), transparent 0 18%, transparent 19%),
    radial-gradient(circle at 86% 8%, rgba(255, 176, 122, 0.16), transparent 0 14%, transparent 15%),
    radial-gradient(circle at 76% 74%, rgba(124, 79, 214, 0.22), transparent 0 24%, transparent 25%),
    linear-gradient(180deg, #4a2368 0%, #2f1843 52%, #21122e 100%);
  color: rgba(255, 251, 244, 0.96);
}

.waitlist-grand-summary::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(33, 18, 46, 0), rgba(18, 10, 25, 0.3));
  pointer-events: none;
}

.waitlist-grand-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.waitlist-grand-copy {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.waitlist-grand-copy .eyebrow {
  color: var(--yellow);
}

.waitlist-grand-copy h2 {
  max-width: 20ch;
  color: #fffdf8;
}

.waitlist-grand-copy p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 251, 244, 0.78);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
}

.waitlist-grand-benefits {
  display: grid;
  gap: 12px;
}

.waitlist-grand-benefits article {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.waitlist-grand-benefits .pill {
  justify-self: start;
  width: auto;
  margin: 0;
  padding: 6px 10px;
  font-size: 0.74rem;
  line-height: 1;
}

.waitlist-grand-benefits .pill.blue {
  background: #d9ecff;
  color: #241335;
}

.waitlist-grand-benefits .pill.orange {
  background: #ffd2b8;
  color: #241335;
}

.waitlist-grand-benefits h3 {
  max-width: 24ch;
  color: #fffdf8;
  line-height: 1.14;
}

.waitlist-grand-action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(6px, 1.8vw, 18px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.waitlist-grand-action .button.primary {
  background: var(--yellow);
  color: var(--ink);
  min-width: 220px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.waitlist-grand-action p {
  margin: 0;
  color: rgba(255, 251, 244, 0.68);
  font-weight: 800;
}

.sales-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sales-card-grid.col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sales-card-grid.with-top-margin,
.waitlist-testimonial-grid.with-top-margin {
  margin-top: 20px;
}

.sales-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sales-stat-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 212, 79, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(77, 35, 111, 0.12);
  box-shadow: 0 18px 40px rgba(36, 19, 53, 0.08);
}

.sales-stat-card strong {
  display: block;
  color: var(--primary);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1;
}

.sales-stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 500;
}

.sales-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(77, 35, 111, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(36, 19, 53, 0.08);
}

.sales-card h3 {
  max-width: 24ch;
}

.sales-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.waitlist-footer {
  position: relative;
  z-index: 1;
  padding: 30px 0 34px;
  margin-top: clamp(38px, 5vw, 64px);
}

.waitlist-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.waitlist-footer-inner .brand-logo {
  flex: 0 0 auto;
  width: clamp(126px, 14vw, 168px);
  border-radius: 4px;
  background: white;
  padding: 5px;
}

.waitlist-footer-inner p {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 251, 244, 0.68);
  font-size: 0.95rem;
  text-align: right;
}

@media (max-width: 1080px) {
  .waitlist-hero-grid,
  .waitlist-builder-grid,
  .waitlist-about-grid,
  .waitlist-cta-panel,
  .waitlist-grand-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-preview-grid {
    grid-template-columns: 1fr;
  }

  .who-for-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waitlist-builder-copy h2 {
    max-width: 14ch;
  }

  .waitlist-grand-copy h2 {
    max-width: 20ch;
  }

  .waitlist-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .sales-card-grid,
  .sales-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-bar {
    width: calc(100% - 12px);
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 6px;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .site-main {
    padding-top: 0;
  }

  .section,
  .section-alt {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7.6vw, 2.45rem);
  }

  .brand-logo {
    width: clamp(118px, 34vw, 148px);
  }

  .waitlist-ticket {
    padding: 20px 20px 22px;
    border-radius: 30px 36px 36px 30px;
  }

  .waitlist-hero-ticket {
    padding: 12px 0 0 12px;
  }

  .waitlist-hero-ticket::before {
    inset: 18px 10px 6px 0;
    transform: rotate(-3deg) translate(-6px, 6px);
  }

  .waitlist-ticket::before {
    margin: 0 0 2px;
  }

  .waitlist-ticket::after {
    top: clamp(214px, 40%, 258px);
    width: 58px;
    height: 58px;
    right: -22px;
  }

  .waitlist-ticket-fields {
    grid-template-columns: 1fr;
  }

  .waitlist-hero {
    padding-top: 24px;
  }

  .hero-media {
    padding: 12px 0 0;
  }

  .hero-visual-stage {
    min-height: auto;
    gap: 12px;
  }

  .hero-visual-image-wrap {
    transform: none;
  }

  .waitlist-ticket-field input,
  .waitlist-ticket-field select,
  .waitlist-ticket-field textarea,
  .waitlist-ticket-submit {
    min-height: 54px;
  }

  .waitlist-ticket-field textarea {
    min-height: 88px;
  }

  .waitlist-builder-panel {
    border-radius: 30px;
  }

  .waitlist-builder-marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waitlist-builder-marquee span:last-child {
    grid-column: 1 / -1;
  }

  .waitlist-grand-summary {
    padding: 64px 0 0;
  }

  .waitlist-grand-summary::before {
    inset: 14px 10px 14px;
    border-radius: 30px;
    display: none;
  }

  .waitlist-grand-action {
    align-items: stretch;
    flex-direction: column;
  }

  .waitlist-grand-action .button.primary {
    width: 100%;
  }

  .waitlist-footer {
    margin-top: 36px;
    padding: 0 0 28px;
  }

  .waitlist-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .waitlist-footer-inner p {
    text-align: left;
  }

  .sales-card-grid,
  .sales-stat-grid,
  .waitlist-product-flow,
  .waitlist-benefit-grid,
  .site-map-grid {
    grid-template-columns: 1fr;
  }

  .who-for-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-trust-logos {
    gap: 8px;
  }

  .waitlist-trust-logos span {
    min-height: 42px;
    padding: 9px 12px;
  }

  .waitlist-hero-brand {
    width: clamp(250px, 34vw, 270px);
  }

  .header-actions {
    display: none;
  }
}
