/* Keep these runtime tokens aligned with DESIGN.md. */
:root {
  --blue: #092bc2;
  --blue-dark: #06156f;
  --yellow: #ffb400;
  --coral: #ff8f4e;
  --ink: #07070a;
  --magenta: #ef6dbb;
  --muted: #5f626b;
  --line: #dedfe5;
  --paper: #fffdf8;
  --surface: #f5f2e9;
  --white: #ffffff;
  --benefits-night: #070a18;
  --ambient-cyan: #8ce6d7;
  --ambient-cyan-bright: #1fd6e6;
  --ambient-violet: #5c41ec;
  --how-card-mint: #b9efbd;
  --how-card-sky: #51b5df;
  --watermelon-red: #ff315c;
  --watermelon-pink: #ff7aa2;
  --watermelon-green: #23c267;
  --watermelon-rind: #063f28;
  --shadow: 0 24px 70px rgba(8, 16, 60, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding-top: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 182px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand-small {
  transform: scale(0.72);
  transform-origin: left center;
}

.site-footer .brand {
  color: var(--blue);
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(8, 12, 26, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px) saturate(1.08);
  font-size: 0.95rem;
  font-weight: 720;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.36);
}

.nav-links a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
}

.instagram-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 180, 0, 0.16);
  border-color: rgba(255, 220, 140, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 24px rgba(255, 180, 0, 0.18);
  outline: none;
  transform: translateY(-1px);
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: clamp(112px, 14vw, 170px) max(20px, calc((100vw - 1180px) / 2))
    clamp(40px, 6vw, 72px);
  color: var(--white);
  background: #090d18;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero-art svg {
  width: 100%;
  height: 100%;
}

.hero-art-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.7;
  animation: hero-line-drift 9s ease-in-out infinite alternate;
}

.hero-art-line--gold {
  stroke: rgba(255, 185, 61, 0.68);
  stroke-width: 3;
  filter: drop-shadow(0 0 14px rgba(255, 180, 0, 0.52));
}

.hero-art-line--blue {
  stroke: rgba(81, 110, 255, 0.44);
  stroke-width: 2.4;
  filter: drop-shadow(0 0 18px rgba(61, 87, 255, 0.42));
  animation-delay: -2.4s;
}

.hero-art-line--cream {
  stroke: rgba(255, 239, 196, 0.38);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 12px rgba(255, 239, 196, 0.3));
  animation-delay: -4s;
}

@keyframes hero-line-drift {
  from {
    stroke-dashoffset: 0;
    transform: translate3d(0, 0, 0);
  }

  to {
    stroke-dashoffset: 24;
    transform: translate3d(10px, -6px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art-line {
    animation: none;
  }
}

.hero-lamps {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.hero-lamps svg {
  width: 100%;
  height: 100%;
}

.lamp-wire {
  fill: none;
  stroke: rgba(255, 235, 188, 0.2);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.lamp-wire--back {
  stroke: rgba(255, 235, 188, 0.14);
}

.lamp-bulbs--back {
  opacity: 0.62;
}

.lamp-glow {
  fill: rgba(255, 216, 132, 0.18);
  filter: drop-shadow(0 0 14px rgba(255, 214, 132, 0.82));
  animation: lamp-breathe var(--lamp-glow-speed, 520ms) ease-in-out var(--lamp-delay, -120ms) infinite alternate;
}

.lamp-core {
  fill: rgba(255, 244, 198, 0.92);
  filter:
    drop-shadow(0 0 5px rgba(255, 246, 205, 0.96))
    drop-shadow(0 0 16px rgba(255, 185, 69, 0.82));
  animation: lamp-breathe var(--lamp-core-speed, 720ms) ease-in-out var(--lamp-delay, -120ms) infinite alternate;
}

.lamp-bulbs circle:nth-child(1),
.lamp-bulbs circle:nth-child(2) {
  --lamp-glow-speed: 330ms;
  --lamp-core-speed: 470ms;
  --lamp-delay: -80ms;
}

.lamp-bulbs circle:nth-child(3),
.lamp-bulbs circle:nth-child(4) {
  --lamp-glow-speed: 620ms;
  --lamp-core-speed: 840ms;
  --lamp-delay: -370ms;
}

.lamp-bulbs circle:nth-child(5),
.lamp-bulbs circle:nth-child(6) {
  --lamp-glow-speed: 410ms;
  --lamp-core-speed: 560ms;
  --lamp-delay: -690ms;
}

.lamp-bulbs circle:nth-child(7),
.lamp-bulbs circle:nth-child(8) {
  --lamp-glow-speed: 780ms;
  --lamp-core-speed: 990ms;
  --lamp-delay: -210ms;
}

.lamp-bulbs circle:nth-child(9),
.lamp-bulbs circle:nth-child(10) {
  --lamp-glow-speed: 520ms;
  --lamp-core-speed: 730ms;
  --lamp-delay: -1010ms;
}

.lamp-bulbs circle:nth-child(11),
.lamp-bulbs circle:nth-child(12) {
  --lamp-glow-speed: 290ms;
  --lamp-core-speed: 390ms;
  --lamp-delay: -540ms;
}

.lamp-bulbs circle:nth-child(13),
.lamp-bulbs circle:nth-child(14) {
  --lamp-glow-speed: 690ms;
  --lamp-core-speed: 910ms;
  --lamp-delay: -1230ms;
}

.lamp-bulbs circle:nth-child(15),
.lamp-bulbs circle:nth-child(16) {
  --lamp-glow-speed: 450ms;
  --lamp-core-speed: 640ms;
  --lamp-delay: -310ms;
}

.lamp-bulbs circle:nth-child(17),
.lamp-bulbs circle:nth-child(18) {
  --lamp-glow-speed: 860ms;
  --lamp-core-speed: 1120ms;
  --lamp-delay: -760ms;
}

.lamp-bulbs--back circle:nth-child(1),
.lamp-bulbs--back circle:nth-child(2) {
  --lamp-glow-speed: 760ms;
  --lamp-core-speed: 1030ms;
  --lamp-delay: -520ms;
}

.lamp-bulbs--back circle:nth-child(3),
.lamp-bulbs--back circle:nth-child(4) {
  --lamp-glow-speed: 350ms;
  --lamp-core-speed: 510ms;
  --lamp-delay: -910ms;
}

.lamp-bulbs--back circle:nth-child(5),
.lamp-bulbs--back circle:nth-child(6) {
  --lamp-glow-speed: 590ms;
  --lamp-core-speed: 790ms;
  --lamp-delay: -140ms;
}

.lamp-bulbs--back circle:nth-child(7),
.lamp-bulbs--back circle:nth-child(8) {
  --lamp-glow-speed: 430ms;
  --lamp-core-speed: 620ms;
  --lamp-delay: -1180ms;
}

.lamp-bulbs--back circle:nth-child(9),
.lamp-bulbs--back circle:nth-child(10) {
  --lamp-glow-speed: 910ms;
  --lamp-core-speed: 1180ms;
  --lamp-delay: -430ms;
}

.lamp-bulbs--back circle:nth-child(11),
.lamp-bulbs--back circle:nth-child(12) {
  --lamp-glow-speed: 310ms;
  --lamp-core-speed: 460ms;
  --lamp-delay: -710ms;
}

.lamp-bulbs--back circle:nth-child(13),
.lamp-bulbs--back circle:nth-child(14) {
  --lamp-glow-speed: 670ms;
  --lamp-core-speed: 870ms;
  --lamp-delay: -250ms;
}

.lamp-bulbs--back circle:nth-child(15),
.lamp-bulbs--back circle:nth-child(16) {
  --lamp-glow-speed: 480ms;
  --lamp-core-speed: 680ms;
  --lamp-delay: -1040ms;
}

@keyframes lamp-breathe {
  from {
    opacity: 0.68;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lamp-glow,
  .lamp-core {
    animation: none;
  }
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, 100%);
}

.hero-copy {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  align-content: center;
  align-self: center;
  justify-content: start;
  width: 100%;
  max-width: none;
}

.hero-copy > * {
  grid-column: 1;
}

.hero-kicker {
  width: fit-content;
  margin: 0 0 clamp(22px, 3vw, 34px);
  padding: 10px 18px;
  color: rgba(255, 205, 92, 0.96);
  background: rgba(255, 180, 0, 0.11);
  border: 1px solid rgba(255, 180, 0, 0.3);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(255, 180, 0, 0.12);
  font-size: clamp(0.92rem, 1.25vw, 1.1rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: none;
  text-shadow: 0 0 20px rgba(255, 180, 0, 0.34);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8vw, 8.8rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0;
}

#hero-title {
  max-width: 780px;
  font-size: clamp(3.25rem, 5.7vw, 5.55rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-copy #hero-title {
  margin-bottom: clamp(14px, 2.2vw, 22px);
}

.hero-lede {
  max-width: 660px;
  margin: 0 0 clamp(22px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.04rem, 1.38vw, 1.25rem);
  font-weight: 700;
  line-height: 1.48;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.hero-actions {
  display: grid;
  align-items: start;
  gap: 22px;
  max-width: 760px;
  margin: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-join-button {
  min-width: min(100%, 220px);
}

.hero-format-button {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-script {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2px;
  width: fit-content;
  max-width: min(440px, 100%);
  margin: 2px 0 18px;
  padding: 18px 24px 16px;
  justify-self: end;
  color: #102aa0;
  background-color: #f4e5c2;
  background-image:
    linear-gradient(156deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04) 38%, rgba(141, 91, 20, 0.13) 100%),
    radial-gradient(ellipse at 22% 18%, rgba(255, 255, 255, 0.56), transparent 34%),
    url("assets/paper-sticker-texture.svg");
  background-size: 100% 100%, 100% 100%, cover;
  border: 0;
  border-radius: 4px 7px 5px 6px;
  box-shadow:
    0 26px 38px rgba(0, 0, 0, 0.22),
    9px 14px 18px rgba(0, 0, 0, 0.12),
    -3px 5px 12px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    inset 0 -20px 28px rgba(122, 82, 24, 0.08);
  font-family: "Caveat", "Bradley Hand", "Snell Roundhand", "Segoe Script", cursive;
  font-size: clamp(2.15rem, 2.7vw, 2.95rem);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.36),
    0 2px 4px rgba(9, 43, 194, 0.12);
  transform: rotate(-3.4deg);
}

.hero-script--inline {
  width: fit-content;
  max-width: min(320px, 100%);
  margin: 0;
  padding: 14px 20px 13px;
  font-size: clamp(1.45rem, 1.7vw, 1.85rem);
  line-height: 0.88;
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.2),
    8px 11px 15px rgba(0, 0, 0, 0.11),
    -3px 5px 11px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    inset 0 -12px 18px rgba(122, 82, 24, 0.08);
  transform: rotate(-3.4deg);
}

.hero-script.hero-script--inline::before {
  top: -8px;
  width: 82px;
  height: 18px;
}

.hero-script span {
  position: relative;
  z-index: 1;
  display: block;
  white-space: nowrap;
}

.hero-script::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  width: 104px;
  height: 23px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.48) 46%, rgba(255, 255, 255, 0.12)),
    rgba(239, 222, 171, 0.62);
  border: 0;
  border-radius: 2px;
  box-shadow:
    0 6px 13px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(1px);
  transform: translateX(-50%) rotate(2.6deg);
  z-index: 2;
}

.hero-script::after {
  content: "";
  position: absolute;
  inset: 5px 7px 7px;
  background:
    linear-gradient(100deg, transparent 0 35%, rgba(255, 255, 255, 0.18) 48%, transparent 62%),
    radial-gradient(circle at 14% 82%, rgba(113, 76, 27, 0.1), transparent 24%);
  border-radius: inherit;
  mix-blend-mode: multiply;
  opacity: 0.52;
  pointer-events: none;
  z-index: 0;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-events {
  display: grid;
  grid-row: auto;
  width: 100%;
  max-width: none;
}

.hero-events-panel {
  justify-self: end;
  align-self: center;
  padding: 22px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
}

.hero-events-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-event-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-event-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 13px 16px;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: none;
  appearance: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.hero-event-card:hover,
.hero-event-card:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  border-color: color-mix(in srgb, var(--hero-event-accent) 38%, rgba(255, 255, 255, 0.18));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--hero-event-accent) 16%, transparent),
    0 0 28px color-mix(in srgb, var(--hero-event-glow) 34%, transparent),
    0 18px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  outline: none;
  transform: translateX(5px);
}

.hero-event-card::before {
  display: none;
}

.hero-event-card::after {
  content: "→";
  position: relative;
  z-index: 1;
  color: var(--hero-event-accent);
  font-size: 1.12rem;
  line-height: 1;
  opacity: 0.72;
  text-shadow: 0 0 16px var(--hero-event-glow);
  animation: event-arrow-nudge 1.3s ease-in-out infinite;
}

.hero-event-card:hover::after,
.hero-event-card:focus-visible::after {
  opacity: 1;
}

.hero-event-icon {
  display: none;
}

.hero-event-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-event-copy {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

@keyframes event-arrow-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-event-card::after,
  .event-card span:last-child::after {
    animation: none;
  }
}

.hero-event-day {
  flex: 0 0 auto;
  color: var(--hero-event-accent);
  min-width: 24px;
  font-size: 0.98rem;
  font-weight: 850;
}

.hero-event-name {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.16;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero-event-card--english {
  --hero-event-tint: rgba(74, 103, 255, 0.2);
  --hero-event-accent: #9aaeff;
  --hero-event-glow: rgba(104, 132, 255, 0.58);
}

.hero-event-card--ideas {
  --hero-event-tint: rgba(255, 191, 71, 0.2);
  --hero-event-accent: #f4c45f;
  --hero-event-glow: rgba(244, 196, 95, 0.58);
}

.hero-event-card--drinks {
  --hero-event-tint: rgba(90, 218, 199, 0.18);
  --hero-event-accent: #8ce6d7;
  --hero-event-glow: rgba(140, 230, 215, 0.5);
}

.hero-event-card--ladies {
  --hero-event-tint: rgba(255, 119, 151, 0.17);
  --hero-event-accent: #ffb0c1;
  --hero-event-glow: rgba(255, 176, 193, 0.52);
}

.hero-event-card--walk {
  --hero-event-tint: rgba(118, 213, 128, 0.16);
  --hero-event-accent: #abe6af;
  --hero-event-glow: rgba(171, 230, 175, 0.48);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 720;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button-primary {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    #1237db;
  box-shadow:
    0 18px 42px rgba(18, 55, 219, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-primary::before {
  display: none;
}

.button-primary svg {
  color: var(--yellow);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 68% 36%, rgba(255, 226, 172, 0.13), transparent 34%),
    linear-gradient(105deg, rgba(6, 10, 23, 0.94) 0%, rgba(6, 10, 23, 0.76) 30%, rgba(6, 10, 23, 0.24) 57%, rgba(6, 10, 23, 0.08) 72%, rgba(6, 10, 23, 0.34) 100%),
    linear-gradient(180deg, rgba(6, 10, 23, 0.54), rgba(6, 10, 23, 0.03) 30%, rgba(6, 10, 23, 0.18) 68%, rgba(6, 10, 23, 0.82) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 75%, rgba(255, 180, 0, 0.2), transparent 30%),
    radial-gradient(ellipse at 78% 24%, rgba(255, 238, 196, 0.08), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(6, 10, 23, 0.12) 58%, rgba(6, 10, 23, 0.5) 100%);
}

section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 128px) 0;
}

.section-band {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section-copy {
  color: #292b36;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
}

.section-copy p:last-child,
.solution-copy p:last-child,
.waitlist-copy p:last-child {
  margin-bottom: 0;
}

.show-up {
  position: relative;
  min-height: 100svh;
  padding-block: clamp(78px, 8vw, 118px);
  padding-inline: max(20px, calc((100vw - 1320px) / 2));
  background:
    linear-gradient(180deg, #fbf8f2 0%, #f5f1e9 100%);
  overflow: hidden;
}

.show-up-inner {
  display: grid;
  grid-template-columns: minmax(390px, 0.84fr) minmax(520px, 1fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  min-height: clamp(660px, 76svh, 820px);
}

.show-up-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.show-up-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 42px;
}

.show-up-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 22px;
  color: #111116;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 999px;
  box-shadow:
    0 12px 28px rgba(33, 30, 25, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  font-size: 1.14rem;
  font-weight: 900;
}

.show-up-title {
  max-width: 610px;
  margin-bottom: 28px;
  font-family: "Manrope", "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  font-size: 4.3rem;
  font-weight: 880;
  line-height: 1.02;
  letter-spacing: 0;
}

.show-up-title span {
  display: block;
  color: #d9826b;
  background: none;
}

.show-up-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: #5f5d5b;
  font-size: 1.2rem;
  font-weight: 760;
  line-height: 1.6;
}

.show-up-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 500px;
  margin-bottom: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 22, 0.06);
  border-radius: 18px;
  box-shadow:
    0 20px 48px rgba(33, 30, 25, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.proof-item {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  min-height: 176px;
  padding: 26px 24px 24px;
  color: var(--ink);
  text-align: left;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(17, 17, 22, 0.07);
}

.proof-item strong {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.proof-item > span {
  margin-top: 0;
  color: #898886;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.22;
}

.proof-item small {
  color: rgba(95, 93, 91, 0.54);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

.proof-stars {
  display: flex;
  gap: 6px;
  color: #111116;
  font-size: clamp(1.42rem, 2vw, 1.9rem);
  line-height: 1;
}

.proof-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
}

.proof-avatars span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: -8px;
  color: var(--white);
  background: #0d37c4;
  border: 2px solid #f5f1e9;
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.proof-avatars span:first-child {
  margin-left: 0;
  background: #5f44d8;
}

.proof-avatars span:nth-child(2) {
  background: #ffb400;
  color: var(--ink);
}

.proof-avatars span:nth-child(3) {
  background: #b73761;
}

.show-up-action {
  display: flex;
  align-items: center;
  gap: 28px;
}

.show-up-action p {
  max-width: 220px;
  margin: 0;
  color: #858482;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.22;
}

.show-up .show-up-button {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent),
    linear-gradient(100deg, #ff9a64 0%, #f8badb 100%);
  box-shadow:
    0 18px 40px rgba(239, 109, 187, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.show-up .show-up-button svg {
  color: var(--ink);
}

.show-up-visual {
  position: relative;
  display: grid;
  min-height: 0;
}

.show-up-flow {
  position: relative;
  display: grid;
  gap: 0;
  width: min(650px, 100%);
  padding: 42px 38px 44px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 26px;
  box-shadow:
    0 26px 70px rgba(33, 30, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.show-up-flow .eyebrow {
  margin-bottom: 26px;
}

.flow-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(17, 17, 22, 0.08);
}

.show-up-flow .eyebrow + .flow-step {
  border-top: 0;
  padding-top: 8px;
}

.flow-step > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #555351;
  background: #efebe5;
  border-radius: 50%;
  font-weight: 900;
}

.flow-step h3 {
  margin: 0 0 5px;
  color: #111116;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.12;
}

.flow-step p {
  margin: 0;
  color: #858482;
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.38;
}

.phone {
  position: absolute;
  width: min(305px, 32vw);
  aspect-ratio: 390 / 780;
  padding: 10px;
  background: rgba(236, 231, 220, 0.9);
  border: 1px solid rgba(118, 112, 101, 0.18);
  border-radius: 36px;
  box-shadow:
    0 30px 70px rgba(37, 35, 29, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.phone--front {
  left: 2%;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%) rotate(-3.5deg);
}

.phone--back {
  right: 0;
  top: 53%;
  z-index: 1;
  opacity: 0.9;
  transform: translateY(-50%) rotate(7deg);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  background: #fffcf6;
  border-radius: 28px;
  overflow: hidden;
}

.phone-status,
.phone-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #141414;
  font-size: 0.72rem;
  font-weight: 900;
}

.phone-status span:last-child {
  font-size: 0.54rem;
}

.phone-hello {
  margin: 20px 0 8px;
  color: #24242a;
  font-size: 0.8rem;
  font-weight: 850;
}

.phone h3 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 1.08;
}

.phone h3 span {
  display: block;
  color: #a2a2a7;
}

.phone-panel,
.phone-event {
  background: var(--white);
  border: 1px solid rgba(16, 16, 18, 0.05);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(33, 30, 25, 0.07);
}

.phone-panel {
  padding: 14px;
}

.phone-panel--feedback {
  display: grid;
  justify-items: center;
  margin-bottom: 20px;
  padding: 18px 14px 14px;
  background: #f0ede6;
  text-align: center;
}

.phone-avatar-row {
  display: flex;
  justify-content: center;
  margin-bottom: 9px;
}

.phone-avatar-row span {
  width: 24px;
  height: 24px;
  margin-left: -6px;
  background: #8ba2ff;
  border: 2px solid #fff8ed;
  border-radius: 50%;
}

.phone-avatar-row span:first-child {
  margin-left: 0;
  background: #ffbd68;
}

.phone-avatar-row span:nth-child(2) {
  background: #6ad0a8;
}

.phone-avatar-row span:nth-child(3) {
  background: #6c6fe5;
}

.phone-avatar-row span:nth-child(4) {
  background: #f29ab9;
}

.phone-avatar-row span:nth-child(5) {
  background: #24242a;
}

.phone-panel strong,
.phone-event strong {
  display: block;
  color: #18181d;
  font-size: 0.98rem;
  line-height: 1.15;
}

.phone-panel p,
.phone-event span {
  margin: 5px 0 0;
  color: #676970;
  font-size: 0.78rem;
  font-weight: 750;
}

.phone-pill {
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: #111114;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.phone-label {
  margin: 0 0 10px;
  color: #111116;
  font-size: 0.82rem;
  font-weight: 900;
}

.phone-event {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  padding: 12px;
}

.phone-event-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 154, 100, 0.2);
  border-radius: 50%;
  font-size: 1rem;
}

.phone-event--green .phone-event-icon {
  background: rgba(106, 208, 168, 0.2);
}

.phone-arrow {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white) !important;
  background: #222226;
  border-radius: 50%;
  font-size: 0.9rem !important;
}

.phone-tabs {
  gap: 18px;
  margin-top: auto;
  padding: 14px 16px 2px;
}

.phone-tabs span {
  width: 19px;
  height: 19px;
  border: 2px solid #a7a7ad;
  border-radius: 50%;
}

.phone-tabs span:first-child {
  background: #151519;
  border-color: #151519;
  border-radius: 6px;
}

.phone-countdown {
  margin: 16px 0 8px;
  padding: 10px;
  color: #ff8f4e;
  background: var(--white);
  border-radius: 999px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.phone-panel--booking {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.phone-map {
  position: relative;
  height: 94px;
  margin-top: 12px;
  background:
    linear-gradient(35deg, transparent 44%, #ded8cc 45%, #ded8cc 48%, transparent 49%),
    linear-gradient(115deg, transparent 38%, #e6dfd3 39%, #e6dfd3 43%, transparent 44%),
    linear-gradient(0deg, rgba(13, 55, 196, 0.09), rgba(255, 180, 0, 0.1));
  border: 1px solid #ece5da;
  border-radius: 8px;
  overflow: hidden;
}

.phone-map span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  background: #ff8f4e;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(255, 143, 78, 0.32);
  transform: translate(-50%, -50%);
}

.poster-page {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  margin: 0;
  padding: clamp(72px, 8vw, 122px) max(20px, calc((100vw - 1320px) / 2));
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 180, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f5f1e9 100%);
  overflow: hidden;
}

.poster-heading {
  display: grid;
  justify-items: center;
  max-width: 780px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.poster-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.poster-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  align-items: center;
}

.poster-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(10px, 1.2vw, 16px);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(34, 31, 24, 0.08);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(34, 31, 24, 0.13);
  transform-origin: center;
}

.poster-card--girls {
  transform: rotate(-4deg) translateY(22px);
}

.poster-card--ready {
  z-index: 2;
  transform: translateY(-18px);
}

.poster-card--meet {
  transform: rotate(4deg) translateY(24px);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(34, 31, 24, 0.09);
}

.poster-card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 0 2px 2px;
}

.poster-card-copy span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 950;
}

.poster-card-copy strong {
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: right;
}

.solution {
  width: 100%;
  padding: 0;
  background: var(--white);
}

.solution-section-photo {
  width: 100%;
  height: auto;
  min-height: clamp(520px, 46vw, 940px);
  object-fit: cover;
  object-position: center center;
}

.testimonials-section {
  width: 100%;
  max-width: none;
  padding: 80px 0;
  background: #f5f0eb;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-heading {
  margin: 0 0 40px;
  color: #111;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 0.5px solid #e8e4df;
  border-radius: 16px;
}

.testimonial-text {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-name {
  margin: 0 0 2px;
  color: #111;
  font-size: 13px;
  font-weight: 600;
}

.testimonial-event {
  margin: 0;
  color: #999;
  font-size: 11px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.steps,
.benefit-grid,
.event-grid {
  display: grid;
  gap: 16px;
}

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

.step,
.benefit-grid article {
  background: var(--white);
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(8, 16, 60, 0.07);
}

.step {
  padding: 26px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 950;
}

.step p,
.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.how {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding: clamp(72px, 8vw, 116px) max(20px, calc((100vw - 1320px) / 2))
    clamp(78px, 8vw, 128px);
  background: #f5f1e9;
  overflow: hidden;
}

.how::before,
.how::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.how::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 86% 32%, rgba(255, 255, 255, 0.62), transparent 28%),
    radial-gradient(ellipse at 12% 72%, rgba(229, 221, 204, 0.58), transparent 34%);
}

.how::after {
  right: max(14px, calc((100vw - 1320px) / 2));
  top: 18%;
  z-index: 0;
  width: min(210px, 22vw);
  height: 64%;
  background:
    linear-gradient(132deg, transparent 0 18%, rgba(34, 31, 24, 0.1) 18.4% 19%, transparent 19.4% 100%),
    linear-gradient(28deg, transparent 0 42%, rgba(34, 31, 24, 0.08) 42.4% 43%, transparent 43.4% 100%),
    linear-gradient(118deg, transparent 0 58%, rgba(34, 31, 24, 0.07) 58.3% 58.9%, transparent 59.3% 100%),
    radial-gradient(circle at 42% 36%, rgba(34, 31, 24, 0.08) 0 1.5px, transparent 2px),
    radial-gradient(circle at 64% 52%, rgba(34, 31, 24, 0.07) 0 1.2px, transparent 1.8px);
  opacity: 0.68;
  transform: rotate(-4deg);
}

.how-heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 20px;
  margin-bottom: clamp(34px, 5vw, 70px);
  text-align: center;
}

.how-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.how-eyes {
  display: flex;
  gap: 8px;
  padding: 8px 9px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(34, 31, 24, 0.12);
}

.how-eyes span {
  width: 16px;
  height: 16px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: inset -4px 4px 0 rgba(255, 255, 255, 0.18);
}

.how-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1fr) minmax(260px, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.how-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(460px, 47vw, 560px);
  padding: clamp(26px, 3vw, 42px);
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42) inset,
    0 10px 24px rgba(34, 31, 24, 0.08),
    0 30px 52px rgba(34, 31, 24, 0.1);
}

.how-card--left {
  transform: rotate(7deg) translateX(-18px);
}

.how-card--middle {
  z-index: 2;
  overflow: hidden;
  justify-content: flex-start;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.54), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(255, 180, 0, 0.46), transparent 32%),
    radial-gradient(circle at 66% 76%, rgba(81, 181, 223, 0.92), transparent 36%),
    radial-gradient(circle at 18% 82%, rgba(31, 214, 230, 0.46), transparent 30%),
    linear-gradient(180deg, var(--how-card-mint) 0%, var(--how-card-sky) 100%);
  background-size: 185% 185%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 10px 24px rgba(37, 132, 175, 0.16),
    0 28px 54px rgba(37, 132, 175, 0.18);
  animation: how-card-gradient-flow 2.2s ease-in-out infinite alternate;
  will-change: background-position, filter;
}

.how-card--middle::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.58), transparent 24%),
    radial-gradient(circle at 74% 58%, rgba(255, 180, 0, 0.48), transparent 28%),
    radial-gradient(circle at 46% 74%, rgba(31, 214, 230, 0.34), transparent 32%),
    linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.3) 46%, transparent 68%);
  opacity: 0.82;
  transform: translate3d(-10%, -8%, 0) rotate(-10deg);
  animation: how-card-glow-drift 1.8s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.how-card--middle > * {
  position: relative;
  z-index: 1;
}

.how-card--right {
  transform: rotate(-7deg) translateX(18px);
}

.how-card h3 {
  margin-bottom: clamp(22px, 3vw, 34px);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.03;
}

.how-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: #15161c;
  font-size: clamp(1.16rem, 1.65vw, 1.62rem);
  line-height: 1.36;
}

.how-card-kicker {
  margin-bottom: 26px !important;
  color: #8b8782 !important;
  font-weight: 850;
}

.how-icon-row {
  display: flex;
  margin-bottom: 26px;
}

.how-icon {
  display: grid;
  place-items: center;
  width: clamp(54px, 5vw, 76px);
  height: clamp(54px, 5vw, 76px);
  margin-left: -10px;
  color: var(--white);
  border-radius: 50%;
}

.how-icon:first-child {
  margin-left: 0;
}

.how-icon svg {
  width: 54%;
  height: 54%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-icon--orange {
  background: #f27d21;
}

.how-icon--pink {
  background: #e877d9;
}

.how-icon--green {
  background: #44bf78;
}

.how-photo-stack {
  position: relative;
  width: min(410px, 100%);
  height: clamp(145px, 15vw, 190px);
  margin: auto auto clamp(26px, 3vw, 40px);
  align-self: center;
}

.how-photo-stack img {
  position: absolute;
  top: 22px;
  width: 42%;
  height: 72%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 15px 28px rgba(18, 33, 56, 0.16);
}

.how-photo-stack img:first-child {
  left: 1%;
  transform: rotate(-10deg);
}

.how-photo-stack img:nth-child(2) {
  left: 29%;
  z-index: 2;
  transform: rotate(0deg);
}

.how-photo-stack img:nth-child(3) {
  right: 1%;
  transform: rotate(10deg);
}

@keyframes how-card-gradient-flow {
  from {
    background-position: 0% 12%;
    filter: saturate(1.05);
  }

  to {
    background-position: 100% 88%;
    filter: saturate(1.26) brightness(1.05);
  }
}

@keyframes how-card-glow-drift {
  from {
    opacity: 0.48;
    transform: translate3d(-12%, -9%, 0) rotate(-12deg);
  }

  to {
    opacity: 0.96;
    transform: translate3d(12%, 9%, 0) rotate(10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-card--middle,
  .how-card--middle::before {
    animation: none;
  }
}

.how-bubbles {
  position: relative;
  width: min(360px, 100%);
  height: 210px;
  margin: auto auto 6px;
  align-self: center;
}

.how-face {
  position: absolute;
  display: block;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #ff9d5f 0%, #f6b7de 100%);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(34, 31, 24, 0.1);
}

.how-face::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34%;
  width: 14px;
  height: 14px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow:
    -20px 0 0 var(--ink),
    -18px -5px 0 7px var(--white),
    2px -5px 0 7px var(--white);
  transform: translateX(-50%);
}

.how-face::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: 32px;
  height: 18px;
  background: var(--ink);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.how-face--main {
  left: 50%;
  bottom: 4px;
  width: 134px;
  height: 134px;
  transform: translateX(-50%);
}

.how-face--pink {
  left: 42px;
  top: 38px;
  background: #e877d9;
}

.how-face--blue {
  right: 70px;
  top: 0;
  background: #a8b6ff;
}

.how-face--green {
  left: 20px;
  bottom: 18px;
  background: #7fcfb3;
}

.how-face--yellow {
  right: 22px;
  bottom: 42px;
  background: #f5dc68;
}

.how-face--small {
  width: 56px;
  height: 56px;
}

.how-face--small::before {
  width: 8px;
  height: 8px;
  box-shadow:
    -13px 0 0 var(--ink),
    -12px -4px 0 5px var(--white),
    1px -4px 0 5px var(--white);
}

.how-face--small::after {
  width: 20px;
  height: 10px;
}

.how-step-visual {
  margin-top: 16px;
}

.how-people-row {
  display: flex;
  gap: 0;
}

.how-person {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: -8px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.how-person:first-child {
  margin-left: 0;
}

.how-people-label {
  margin: 8px 0 0;
  color: #888;
  font-size: 11px !important;
}

.how-button {
  display: flex;
  width: fit-content;
  margin: clamp(44px, 5vw, 64px) auto 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent),
    linear-gradient(100deg, #ff9a64 0%, #f8badb 100%);
  box-shadow:
    0 18px 40px rgba(239, 109, 187, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.how-button svg {
  color: var(--ink);
}

.group-quiz {
  --quiz-accent: var(--blue);
  --quiz-accent-strong: #1237db;
  --quiz-ink-strong: #0b1324;
  --quiz-ink-muted: rgba(11, 19, 36, 0.76);
  --quiz-surface: rgba(255, 253, 248, 0.72);
  --quiz-surface-strong: rgba(255, 255, 255, 0.68);
  --quiz-progress-track: rgba(7, 7, 10, 0.1);
  --quiz-bg-1: rgba(255, 255, 255, 0.84);
  --quiz-bg-2: rgba(255, 180, 0, 0.28);
  --quiz-bg-3: rgba(255, 143, 78, 0.2);
  --quiz-bg-4: rgba(92, 65, 236, 0.16);
  --quiz-bg-5: #fffdf8;
  --quiz-bg-6: #f5f1e9;
  --quiz-bg-7: #f8f2e8;
  --quiz-glow-1: rgba(255, 255, 255, 0.4);
  --quiz-glow-2: rgba(255, 180, 0, 0.26);
  --quiz-glow-3: rgba(92, 65, 236, 0.18);
  --quiz-flow-duration: 16s;
  --quiz-overlay-duration: 12s;
  --quiz-glow-opacity: 0.84;
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding: clamp(78px, 9vw, 132px) max(20px, calc((100vw - 1180px) / 2)) clamp(84px, 9vw, 138px);
  background: #fbf8f2;
  isolation: isolate;
  overflow: hidden;
}

.group-quiz::before,
.group-quiz::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition:
    background 860ms ease,
    opacity 500ms ease,
    filter 500ms ease,
    transform 500ms ease;
}

.group-quiz::before {
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, var(--quiz-bg-1), transparent 24%),
    radial-gradient(circle at 84% 18%, var(--quiz-bg-2), transparent 28%),
    radial-gradient(circle at 72% 82%, var(--quiz-bg-3), transparent 34%),
    radial-gradient(circle at 20% 80%, var(--quiz-bg-4), transparent 30%),
    linear-gradient(132deg, var(--quiz-bg-5) 0%, var(--quiz-bg-6) 52%, var(--quiz-bg-7) 100%);
  background-size: 162% 162%, 170% 170%, 176% 176%, 166% 166%, 100% 100%;
  filter: saturate(1.08) brightness(1.03);
  opacity: 0.98;
  animation: quiz-gradient-flow var(--quiz-flow-duration) ease-in-out infinite alternate;
  will-change: background-position, transform, filter;
}

.group-quiz::after {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.34), transparent 22%),
    radial-gradient(circle at 78% 20%, var(--quiz-glow-1), transparent 26%),
    radial-gradient(circle at 24% 76%, var(--quiz-glow-2), transparent 28%),
    radial-gradient(circle at 82% 74%, var(--quiz-glow-3), transparent 26%),
    linear-gradient(108deg, transparent 0 26%, rgba(255, 255, 255, 0.3) 44%, transparent 62% 100%);
  background-size: 150% 150%, 148% 148%, 156% 156%, 144% 144%, 220% 100%;
  opacity: var(--quiz-glow-opacity);
  mix-blend-mode: screen;
  animation: quiz-overlay-flow var(--quiz-overlay-duration) ease-in-out infinite alternate;
  will-change: background-position, transform, opacity;
}

.group-quiz[data-quiz-burst="active"] {
  --quiz-flow-duration: 4.4s;
  --quiz-overlay-duration: 3.2s;
  --quiz-glow-opacity: 1;
}

.group-quiz[data-quiz-burst="active"]::before {
  filter: saturate(1.22) brightness(1.08);
  transform: scale(1.06);
}

.group-quiz[data-quiz-burst="active"]::after {
  opacity: 1;
  transform: scale(1.03);
}

.group-quiz:not([data-quiz-palette]),
.group-quiz[data-quiz-palette="intro"] {
  --quiz-accent: var(--blue);
  --quiz-accent-strong: color-mix(in srgb, var(--blue) 72%, var(--ambient-violet));
  --quiz-bg-1: rgba(255, 255, 255, 0.84);
  --quiz-bg-2: rgba(255, 180, 0, 0.28);
  --quiz-bg-3: rgba(255, 143, 78, 0.2);
  --quiz-bg-4: rgba(92, 65, 236, 0.16);
  --quiz-bg-5: #fffdf8;
  --quiz-bg-6: #f5f1e9;
  --quiz-bg-7: #f8f2e8;
  --quiz-glow-1: rgba(255, 255, 255, 0.42);
  --quiz-glow-2: rgba(255, 180, 0, 0.28);
  --quiz-glow-3: rgba(92, 65, 236, 0.18);
}

.group-quiz[data-quiz-palette="step-1"] {
  --quiz-accent: var(--blue);
  --quiz-accent-strong: color-mix(in srgb, var(--ambient-violet) 46%, var(--blue));
  --quiz-progress-track: rgba(9, 43, 194, 0.12);
  --quiz-bg-1: rgba(255, 255, 255, 0.72);
  --quiz-bg-2: rgba(31, 214, 230, 0.32);
  --quiz-bg-3: rgba(92, 65, 236, 0.28);
  --quiz-bg-4: rgba(255, 180, 0, 0.16);
  --quiz-bg-5: #f5f8ff;
  --quiz-bg-6: #e7efff;
  --quiz-bg-7: #eef3ff;
  --quiz-glow-1: rgba(140, 230, 215, 0.38);
  --quiz-glow-2: rgba(9, 43, 194, 0.24);
  --quiz-glow-3: rgba(92, 65, 236, 0.2);
}

.group-quiz[data-quiz-palette="step-2"] {
  --quiz-accent: color-mix(in srgb, var(--blue) 74%, var(--ambient-violet));
  --quiz-accent-strong: color-mix(in srgb, var(--ambient-cyan-bright) 40%, var(--blue));
  --quiz-progress-track: rgba(12, 54, 160, 0.11);
  --quiz-bg-1: rgba(255, 255, 255, 0.82);
  --quiz-bg-2: rgba(140, 230, 215, 0.34);
  --quiz-bg-3: rgba(9, 43, 194, 0.18);
  --quiz-bg-4: rgba(255, 255, 255, 0.58);
  --quiz-bg-5: #fcfdff;
  --quiz-bg-6: #edf7f8;
  --quiz-bg-7: #f2f6ff;
  --quiz-glow-1: rgba(255, 255, 255, 0.44);
  --quiz-glow-2: rgba(31, 214, 230, 0.24);
  --quiz-glow-3: rgba(9, 43, 194, 0.16);
}

.group-quiz[data-quiz-palette="step-3"] {
  --quiz-accent: var(--coral);
  --quiz-accent-strong: color-mix(in srgb, var(--magenta) 48%, var(--coral));
  --quiz-progress-track: rgba(159, 83, 31, 0.12);
  --quiz-bg-1: rgba(255, 255, 255, 0.82);
  --quiz-bg-2: rgba(255, 180, 0, 0.36);
  --quiz-bg-3: rgba(255, 143, 78, 0.32);
  --quiz-bg-4: rgba(239, 109, 187, 0.22);
  --quiz-bg-5: #fff9ef;
  --quiz-bg-6: #fbe9de;
  --quiz-bg-7: #fff3e8;
  --quiz-glow-1: rgba(255, 255, 255, 0.42);
  --quiz-glow-2: rgba(255, 143, 78, 0.26);
  --quiz-glow-3: rgba(239, 109, 187, 0.18);
}

.group-quiz[data-quiz-palette="step-4"] {
  --quiz-accent: color-mix(in srgb, var(--watermelon-green) 74%, #0b5a4e);
  --quiz-accent-strong: color-mix(in srgb, var(--ambient-cyan-bright) 42%, var(--watermelon-green));
  --quiz-progress-track: rgba(20, 94, 67, 0.12);
  --quiz-bg-1: rgba(255, 255, 255, 0.8);
  --quiz-bg-2: rgba(140, 230, 215, 0.34);
  --quiz-bg-3: rgba(35, 194, 103, 0.28);
  --quiz-bg-4: rgba(31, 214, 230, 0.18);
  --quiz-bg-5: #f4fcf8;
  --quiz-bg-6: #e2f6ee;
  --quiz-bg-7: #eefbf6;
  --quiz-glow-1: rgba(255, 255, 255, 0.42);
  --quiz-glow-2: rgba(35, 194, 103, 0.24);
  --quiz-glow-3: rgba(31, 214, 230, 0.18);
}

.group-quiz[data-quiz-palette="step-5"] {
  --quiz-accent: color-mix(in srgb, var(--ambient-violet) 72%, var(--magenta));
  --quiz-accent-strong: color-mix(in srgb, var(--blue) 38%, var(--magenta));
  --quiz-progress-track: rgba(95, 68, 216, 0.13);
  --quiz-bg-1: rgba(255, 255, 255, 0.82);
  --quiz-bg-2: rgba(239, 109, 187, 0.32);
  --quiz-bg-3: rgba(92, 65, 236, 0.28);
  --quiz-bg-4: rgba(255, 180, 0, 0.16);
  --quiz-bg-5: #fbf6ff;
  --quiz-bg-6: #ece8ff;
  --quiz-bg-7: #f4efff;
  --quiz-glow-1: rgba(255, 255, 255, 0.42);
  --quiz-glow-2: rgba(92, 65, 236, 0.24);
  --quiz-glow-3: rgba(239, 109, 187, 0.2);
}

.group-quiz[data-quiz-palette="result-energetic"] {
  --quiz-accent: var(--blue);
  --quiz-accent-strong: var(--coral);
  --quiz-progress-track: rgba(21, 47, 132, 0.12);
  --quiz-bg-1: rgba(255, 255, 255, 0.78);
  --quiz-bg-2: rgba(255, 180, 0, 0.42);
  --quiz-bg-3: rgba(255, 49, 92, 0.24);
  --quiz-bg-4: rgba(9, 43, 194, 0.24);
  --quiz-bg-5: #fff7eb;
  --quiz-bg-6: #ffe9db;
  --quiz-bg-7: #fff4ef;
  --quiz-glow-1: rgba(255, 255, 255, 0.46);
  --quiz-glow-2: rgba(255, 143, 78, 0.28);
  --quiz-glow-3: rgba(9, 43, 194, 0.22);
}

.group-quiz[data-quiz-palette="result-thoughtful"] {
  --quiz-accent: color-mix(in srgb, var(--ambient-violet) 76%, var(--blue));
  --quiz-accent-strong: color-mix(in srgb, var(--ambient-cyan) 34%, var(--ambient-violet));
  --quiz-progress-track: rgba(66, 54, 138, 0.12);
  --quiz-bg-1: rgba(255, 255, 255, 0.8);
  --quiz-bg-2: rgba(92, 65, 236, 0.24);
  --quiz-bg-3: rgba(140, 230, 215, 0.22);
  --quiz-bg-4: rgba(9, 43, 194, 0.16);
  --quiz-bg-5: #f9f8ff;
  --quiz-bg-6: #ecebfb;
  --quiz-bg-7: #f5f8ff;
  --quiz-glow-1: rgba(255, 255, 255, 0.42);
  --quiz-glow-2: rgba(92, 65, 236, 0.22);
  --quiz-glow-3: rgba(140, 230, 215, 0.18);
}

.group-quiz[data-quiz-palette="result-curious"] {
  --quiz-accent: var(--coral);
  --quiz-accent-strong: color-mix(in srgb, var(--blue) 34%, var(--coral));
  --quiz-progress-track: rgba(151, 79, 29, 0.12);
  --quiz-bg-1: rgba(255, 255, 255, 0.8);
  --quiz-bg-2: rgba(255, 180, 0, 0.38);
  --quiz-bg-3: rgba(255, 143, 78, 0.28);
  --quiz-bg-4: rgba(9, 43, 194, 0.18);
  --quiz-bg-5: #fff8ef;
  --quiz-bg-6: #fff0df;
  --quiz-bg-7: #f3f8ff;
  --quiz-glow-1: rgba(255, 255, 255, 0.44);
  --quiz-glow-2: rgba(255, 180, 0, 0.24);
  --quiz-glow-3: rgba(9, 43, 194, 0.18);
}

.group-quiz[data-quiz-palette="result-balanced"] {
  --quiz-accent: color-mix(in srgb, var(--blue) 72%, var(--ambient-violet));
  --quiz-accent-strong: color-mix(in srgb, var(--ambient-cyan) 24%, var(--ambient-violet));
  --quiz-progress-track: rgba(53, 73, 149, 0.12);
  --quiz-bg-1: rgba(255, 255, 255, 0.82);
  --quiz-bg-2: rgba(140, 230, 215, 0.24);
  --quiz-bg-3: rgba(92, 65, 236, 0.2);
  --quiz-bg-4: rgba(255, 180, 0, 0.18);
  --quiz-bg-5: #fffdf8;
  --quiz-bg-6: #eef3ff;
  --quiz-bg-7: #f4faf4;
  --quiz-glow-1: rgba(255, 255, 255, 0.42);
  --quiz-glow-2: rgba(140, 230, 215, 0.2);
  --quiz-glow-3: rgba(92, 65, 236, 0.16);
}

.quiz-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(1040px, 100%);
  color: var(--quiz-ink-strong);
  isolation: isolate;
  text-align: center;
}

.quiz-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin-bottom: clamp(24px, 3.4vw, 40px);
}

.quiz-heading h2 {
  margin-bottom: 0;
  color: var(--quiz-ink-strong);
  font-family: "Manrope", "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3rem, 6.8vw, 6.4rem);
  font-weight: 950;
  line-height: 0.9;
  text-wrap: balance;
}

.quiz-heading p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--quiz-ink-muted);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  font-weight: 800;
  line-height: 1.46;
}

.quiz-topline {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 92px;
  align-items: center;
  width: min(760px, 100%);
  margin-bottom: clamp(30px, 4vw, 48px);
}

.quiz-topline::after {
  content: attr(data-quiz-step-label);
  justify-self: end;
  color: var(--quiz-ink-muted);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
}

.quiz-topline[hidden] {
  display: none;
}

.quiz-progress {
  grid-column: 2;
  height: 3px;
  overflow: hidden;
  background: var(--quiz-progress-track);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.quiz-progress-fill {
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, color-mix(in srgb, var(--quiz-accent) 74%, white), var(--quiz-accent-strong));
  border-radius: 2px;
  box-shadow: 0 0 18px color-mix(in srgb, var(--quiz-accent) 34%, transparent);
  transition:
    width 350ms cubic-bezier(0.4, 0, 0.2, 1),
    background 260ms ease,
    box-shadow 260ms ease;
}

.quiz-viewport {
  width: 100%;
  min-height: 430px;
}

.quiz-card {
  display: grid;
  gap: clamp(18px, 2.3vw, 26px);
  justify-items: center;
  width: 100%;
  animation: quiz-slide-in 280ms ease;
}

.quiz-card[hidden] {
  display: none;
}

.quiz-card--intro {
  position: relative;
  grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  max-width: 940px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34)),
    color-mix(in srgb, var(--quiz-surface) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--quiz-accent) 14%, rgba(255, 255, 255, 0.46));
  border-radius: 8px;
  box-shadow:
    0 24px 74px rgba(31, 39, 78, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(20px) saturate(1.08);
  isolation: isolate;
  text-align: left;
}

.quiz-card--intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--quiz-accent) 10%, transparent), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}

.quiz-intro-copy {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.quiz-intro-lede {
  max-width: 420px;
  margin: 0;
  color: var(--quiz-ink-strong);
  font-size: clamp(1.7rem, 3.3vw, 3.25rem);
  font-weight: 950;
  line-height: 0.98;
}

.quiz-intro-preview {
  position: relative;
  justify-self: center;
  width: min(430px, 100%);
  aspect-ratio: 1.12 / 1;
}

.quiz-preview-card {
  position: absolute;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow:
    0 20px 54px rgba(18, 26, 68, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.quiz-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(1.03);
}

.quiz-preview-card--one {
  left: 1%;
  top: 12%;
  z-index: 2;
  width: 48%;
  aspect-ratio: 4 / 5;
  transform: rotate(-7deg);
}

.quiz-preview-card--two {
  right: 2%;
  top: 2%;
  z-index: 1;
  width: 43%;
  aspect-ratio: 4 / 5;
  transform: rotate(6deg);
}

.quiz-preview-card--three {
  left: 27%;
  bottom: 0;
  z-index: 3;
  width: 58%;
  aspect-ratio: 16 / 10;
  transform: rotate(1.5deg);
}

.quiz-start {
  margin-top: 4px;
}

.quiz-step {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  color: var(--quiz-ink-muted);
  background: color-mix(in srgb, var(--quiz-surface-strong) 92%, white);
  border: 1px solid color-mix(in srgb, var(--quiz-accent) 14%, rgba(7, 7, 10, 0.08));
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 12px 30px color-mix(in srgb, var(--quiz-accent) 10%, transparent);
  backdrop-filter: blur(14px) saturate(1.08);
  font-size: 0.86rem;
  font-weight: 950;
  transition:
    color 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.quiz-card h3 {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--quiz-ink-strong);
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  width: min(840px, 100%);
  margin-inline: auto;
  margin-top: clamp(6px, 1.2vw, 14px);
}

.quiz-option {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  text-align: left;
  background: var(--quiz-option-bg, #121623);
  border: 1.5px solid rgba(7, 7, 10, 0.08);
  border-radius: 8px;
  box-shadow:
    0 22px 62px rgba(34, 31, 24, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    border-color 150ms ease,
    box-shadow 180ms ease,
    opacity 200ms ease,
    transform 150ms ease;
}

.quiz-option::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(248, 239, 222, 0.3), rgba(248, 239, 222, 0.04) 28%),
    linear-gradient(0deg, rgba(8, 10, 18, 0.18), rgba(8, 10, 18, 0.03) 58%),
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px);
  background-size: auto, auto, 36px 36px, 42px 42px;
  transition: background 180ms ease;
}

.quiz-option::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  opacity: 0.62;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(4, 13, 66, 0.18);
  font-size: 1rem;
  font-weight: 950;
  transform: translateX(-50%) scale(1);
  transition:
    opacity 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.quiz-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition:
    filter 240ms ease,
    transform 240ms ease;
}

.quiz-option:hover,
.quiz-option:focus-visible {
  border-color: color-mix(in srgb, var(--quiz-accent) 42%, transparent);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--quiz-accent) 14%, transparent),
    0 26px 70px rgba(34, 31, 24, 0.2);
  outline: none;
  transform: translateY(-3px);
}

.quiz-option:hover img,
.quiz-option:focus-visible img {
  transform: scale(1.05);
}

.quiz-option.is-selected {
  color: var(--white);
  border-color: var(--quiz-accent);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--quiz-accent) 18%, transparent),
    0 18px 42px rgba(28, 35, 64, 0.18);
  transform: scale(1.02);
}

.quiz-option.is-selected::before {
  background:
    linear-gradient(180deg, rgba(248, 239, 222, 0.16), rgba(248, 239, 222, 0.04) 42%),
    linear-gradient(0deg, color-mix(in srgb, var(--quiz-accent) 78%, transparent), rgba(8, 10, 18, 0.08) 62%);
}

.quiz-option.is-selected::after {
  content: "✓";
  opacity: 1;
  background: linear-gradient(180deg, color-mix(in srgb, white 14%, var(--quiz-accent)), var(--quiz-accent-strong));
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(-50%) scale(1);
}

.quiz-options.has-selection .quiz-option:not(.is-selected) {
  opacity: 0.45;
}

.quiz-option-key {
  display: none;
}

.quiz-option-label {
  display: none;
}

.quiz-option.is-selected .quiz-option-key {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.quiz-option--stub {
  border-color: rgba(255, 255, 255, 0.12);
}

.quiz-option--freddie {
  --quiz-option-bg:
    radial-gradient(circle at 74% 20%, rgba(255, 232, 74, 0.78), transparent 22%),
    radial-gradient(circle at 28% 68%, rgba(240, 56, 147, 0.72), transparent 26%),
    linear-gradient(135deg, #24104d, #101531 54%, #07070d);
}

.quiz-option--jazz {
  --quiz-option-bg:
    radial-gradient(circle at 72% 28%, rgba(244, 184, 88, 0.58), transparent 24%),
    linear-gradient(145deg, #07262a, #0a1524 58%, #03070d);
}

.quiz-option--weeknd {
  --quiz-option-bg:
    radial-gradient(circle at 76% 24%, rgba(255, 86, 114, 0.54), transparent 22%),
    linear-gradient(145deg, #34141d, #140f17 56%, #050509);
}

.quiz-option--bmw {
  --quiz-option-bg:
    radial-gradient(circle at 74% 22%, rgba(147, 215, 255, 0.48), transparent 24%),
    radial-gradient(circle at 24% 78%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #18293b, #dce7f1 48%, #0c1118 100%);
}

.quiz-option--tesla {
  --quiz-option-bg:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.34), transparent 22%),
    radial-gradient(circle at 22% 78%, rgba(232, 41, 41, 0.18), transparent 24%),
    linear-gradient(135deg, #f3f0eb, #d7d2cb 52%, #b70d1d 100%);
}

.quiz-option--burger {
  --quiz-option-bg:
    radial-gradient(circle at 28% 34%, rgba(255, 213, 91, 0.76), transparent 26%),
    radial-gradient(circle at 74% 72%, rgba(205, 69, 37, 0.72), transparent 24%),
    linear-gradient(135deg, #5f2b13, #14100b 58%, #070604);
}

.quiz-option--cheese {
  --quiz-option-bg:
    radial-gradient(circle at 24% 72%, rgba(255, 224, 103, 0.78), transparent 24%),
    radial-gradient(circle at 78% 26%, rgba(98, 143, 82, 0.54), transparent 24%),
    linear-gradient(135deg, #362011, #7d4f1f 54%, #18100b);
}

.quiz-option--juice {
  --quiz-option-bg:
    radial-gradient(circle at 26% 30%, rgba(255, 232, 78, 0.8), transparent 23%),
    radial-gradient(circle at 76% 70%, rgba(98, 222, 143, 0.62), transparent 24%),
    linear-gradient(135deg, #116047, #12231e 58%, #07100e);
}

.quiz-option--wine {
  --quiz-option-bg:
    radial-gradient(circle at 70% 24%, rgba(255, 184, 120, 0.56), transparent 24%),
    radial-gradient(circle at 32% 72%, rgba(126, 18, 53, 0.76), transparent 25%),
    linear-gradient(135deg, #3a0719, #160a10 58%, #080407);
}

.quiz-option--mafia {
  --quiz-option-bg:
    radial-gradient(circle at 70% 24%, rgba(255, 199, 83, 0.6), transparent 24%),
    radial-gradient(circle at 28% 72%, rgba(70, 124, 255, 0.52), transparent 24%),
    linear-gradient(135deg, #222833, #111317 58%, #060607);
}

.quiz-option--poker {
  --quiz-option-bg:
    radial-gradient(circle at 26% 70%, rgba(37, 93, 255, 0.66), transparent 22%),
    radial-gradient(circle at 76% 30%, rgba(255, 58, 90, 0.56), transparent 24%),
    linear-gradient(135deg, #123a23, #111813 58%, #050706);
}

.quiz-option--photo {
  background: #f1eadf;
  border-color: rgba(103, 85, 58, 0.18);
  box-shadow:
    0 18px 46px rgba(34, 31, 24, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.quiz-option--photo::before {
  background:
    linear-gradient(180deg, rgba(248, 239, 222, 0.36), rgba(248, 239, 222, 0.06) 24%),
    linear-gradient(0deg, rgba(67, 51, 32, 0.14), rgba(255, 255, 255, 0.03) 58%),
    radial-gradient(circle at 26% 18%, rgba(255, 197, 96, 0.18), transparent 22%),
    radial-gradient(circle at 74% 72%, rgba(78, 124, 214, 0.16), transparent 24%),
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px);
  background-size: auto, auto, auto, auto, 34px 34px, 40px 40px;
}

.quiz-option--photo img {
  filter: saturate(0.8) contrast(1.08) brightness(1.02) sepia(0.08);
}

.quiz-option--photo:hover img,
.quiz-option--photo:focus-visible img,
.quiz-option--photo.is-selected img {
  filter: saturate(0.86) contrast(1.1) brightness(1.03) sepia(0.06);
}

.quiz-option--logo {
  background: var(--quiz-option-bg);
}

.quiz-option--logo::before {
  background:
    linear-gradient(180deg, rgba(248, 239, 222, 0.28), rgba(248, 239, 222, 0.05) 24%),
    linear-gradient(0deg, rgba(67, 51, 32, 0.08), rgba(255, 255, 255, 0.02) 58%),
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px);
  background-size: auto, auto, 34px 34px, 40px 40px;
}

.quiz-option--logo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 72%;
  height: 72%;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(17, 22, 34, 0.2));
  transform: scale(1);
}

.quiz-option--logo:hover img,
.quiz-option--logo:focus-visible img {
  transform: scale(1.04);
}

.quiz-option--logo.is-selected img {
  transform: scale(1.04);
}

.quiz-option--logo.quiz-option--bmw img {
  width: 76%;
  height: 76%;
  padding: 4%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow:
    0 18px 30px rgba(14, 20, 35, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.quiz-option--logo.quiz-option--tesla img {
  width: 58%;
  height: 58%;
  filter:
    drop-shadow(0 18px 28px rgba(17, 22, 34, 0.16))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.65));
}

.quiz-card--result {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(26px, 4.4vw, 50px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    color-mix(in srgb, var(--quiz-surface) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--quiz-accent) 14%, rgba(255, 255, 255, 0.46));
  border-radius: 8px;
  box-shadow:
    0 26px 80px rgba(31, 39, 78, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(20px) saturate(1.08);
  isolation: isolate;
}

.quiz-card--result::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, color-mix(in srgb, var(--quiz-accent) 12%, transparent), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}

.quiz-card--result p {
  max-width: 620px;
  margin: 0;
  color: var(--quiz-ink-muted);
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  font-weight: 800;
  line-height: 1.46;
}

.quiz-result-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.quiz-back {
  justify-self: start;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--quiz-ink-strong);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    color 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.quiz-back:disabled {
  color: rgba(11, 19, 36, 0.38);
  cursor: not-allowed;
}

.quiz-back:not(:disabled):hover,
.quiz-back:not(:disabled):focus-visible,
.quiz-reset:hover,
.quiz-reset:focus-visible {
  background: color-mix(in srgb, var(--quiz-accent) 10%, rgba(255, 255, 255, 0.46));
  border-color: color-mix(in srgb, var(--quiz-accent) 18%, rgba(7, 7, 10, 0.12));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--quiz-accent) 12%, transparent);
  outline: none;
}

.quiz-reset {
  min-height: 52px;
  padding: 12px 18px;
  color: var(--quiz-ink-strong);
  background: color-mix(in srgb, var(--quiz-surface) 92%, white);
  border: 1.5px solid color-mix(in srgb, var(--quiz-accent) 14%, rgba(7, 7, 10, 0.1));
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 18px 40px color-mix(in srgb, var(--quiz-accent) 10%, transparent);
  backdrop-filter: blur(18px) saturate(1.06);
  font-weight: 950;
  cursor: pointer;
  transition:
    color 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 180ms ease;
}

.group-quiz .button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    linear-gradient(135deg, color-mix(in srgb, var(--quiz-accent) 84%, white), var(--quiz-accent-strong));
  box-shadow:
    0 18px 42px color-mix(in srgb, var(--quiz-accent) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.group-quiz .button-primary:hover,
.group-quiz .button-primary:focus-visible {
  box-shadow:
    0 24px 54px color-mix(in srgb, var(--quiz-accent) 34%, transparent),
    0 0 0 3px color-mix(in srgb, var(--quiz-accent) 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.group-quiz .button-primary svg {
  color: color-mix(in srgb, var(--yellow) 78%, white);
}

@keyframes quiz-slide-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes quiz-gradient-flow {
  from {
    background-position: 0% 16%, 100% 20%, 74% 82%, 18% 78%, 0% 50%;
    transform: scale(1);
  }

  to {
    background-position: 100% 30%, 0% 26%, 22% 64%, 86% 24%, 100% 50%;
    transform: scale(1.08);
  }
}

@keyframes quiz-overlay-flow {
  from {
    background-position: 0% 14%, 100% 18%, 18% 80%, 88% 74%, 0% 50%;
    transform: translate3d(-1.2%, -1%, 0);
  }

  to {
    background-position: 100% 24%, 0% 30%, 82% 56%, 12% 26%, 100% 50%;
    transform: translate3d(1.2%, 1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .group-quiz::before,
  .group-quiz::after {
    animation: none;
    transform: none;
    transition:
      background 260ms ease,
      opacity 260ms ease,
      filter 260ms ease;
  }

  .group-quiz[data-quiz-burst="active"]::before,
  .group-quiz[data-quiz-burst="active"]::after {
    transform: none;
  }

  .quiz-card {
    animation: none;
  }

  .quiz-progress-fill,
  .quiz-option,
  .quiz-reset,
  .quiz-back,
  .group-quiz .button-primary {
    transition: none;
  }
}

.faq {
  background: var(--white);
}

.faq-heading {
  max-width: 900px;
}

.faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.faq-item {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(8, 16, 60, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.faq-item[open] {
  background: var(--white);
  border-color: rgba(9, 43, 194, 0.16);
  box-shadow:
    0 22px 58px rgba(8, 16, 60, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 22px clamp(20px, 2.6vw, 30px);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(9, 43, 194, 0.16);
  outline-offset: -3px;
}

.faq-item summary span {
  font-size: clamp(1.12rem, 1.45vw, 1.45rem);
  font-weight: 900;
  line-height: 1.12;
}

.faq-item summary svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--blue);
  background: rgba(9, 43, 194, 0.08);
  border: 1px solid rgba(9, 43, 194, 0.12);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.faq-item[open] summary svg {
  color: var(--white);
  background: var(--blue);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 clamp(20px, 2.6vw, 30px) 24px;
}

.faq-answer p {
  margin-bottom: 0;
  color: #292b36;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e8e8e8;
}

.faq-cta-text {
  margin: 0;
  color: #888;
  font-size: 14px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  color: #fff;
  background: #3B5BDB;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.faq-cta-btn:hover {
  background: #2f4cc2;
}

.benefits {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(86px, 10vw, 148px) max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--benefits-night);
  overflow: hidden;
  isolation: isolate;
}

.benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.benefits::before {
  background:
    radial-gradient(circle at 70% 16%, color-mix(in srgb, var(--ambient-cyan-bright) 100%, transparent), transparent 27%),
    radial-gradient(circle at 88% 66%, color-mix(in srgb, var(--ambient-violet) 96%, transparent), transparent 30%),
    radial-gradient(circle at 17% 70%, color-mix(in srgb, var(--yellow) 82%, transparent), transparent 29%),
    radial-gradient(circle at 46% 82%, rgba(31, 86, 255, 0.94), transparent 32%),
    radial-gradient(circle at 24% 34%, rgba(255, 89, 130, 0.56), transparent 26%),
    radial-gradient(circle at 56% 22%, rgba(0, 221, 255, 0.34), transparent 28%),
    linear-gradient(115deg, #050713 0%, #081c55 34%, #1331bf 68%, #07146c 100%);
  background-size: 178% 178%;
  filter: saturate(1.48) brightness(1.18);
  animation: benefits-gradient-flow 4s ease-in-out infinite alternate;
  will-change: background-position, transform;
}

.benefits::after {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 74%, rgba(255, 180, 0, 0.12), transparent 26%),
    radial-gradient(circle at 78% 28%, rgba(46, 227, 255, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 19, 0.58), rgba(5, 7, 19, 0.08) 48%, rgba(5, 7, 19, 0.62));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), inset 0 -1px rgba(255, 255, 255, 0.06);
}

.benefits .section-heading {
  position: relative;
  z-index: 1;
}

.benefits .eyebrow {
  color: var(--ambient-cyan);
}

.benefits h2 {
  color: var(--white);
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
}

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

.benefit-grid article {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.105);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.075),
    0 28px 76px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.benefit-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 44%),
    radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--ambient-cyan) 18%, transparent), transparent 38%);
  opacity: 0.78;
  pointer-events: none;
}

.benefit-grid article:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--ambient-cyan) 34%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--ambient-cyan) 12%, transparent),
    0 30px 82px rgba(0, 0, 0, 0.38);
}

.icon {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: var(--ambient-cyan);
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--ambient-cyan) 42%, transparent));
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid h3 {
  color: var(--white);
}

.benefit-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.icebreaker-card-strip {
  position: absolute;
  top: 50%;
  right: 48px;
  z-index: 2;
  width: min(220px, calc(100% - 96px));
  margin: 0;
  pointer-events: auto;
  transform: translateY(-50%) rotate(3deg);
  transform-origin: 50% 42%;
  transition:
    right 0.3s ease,
    transform 0.3s ease;
}

.icebreaker-card-strip:hover {
  right: 48px;
  transform: translateY(-50%) rotate(1deg);
}

.icebreaker-card-strip::before {
  content: "";
  position: absolute;
  inset: 12%;
  background:
    radial-gradient(circle at 42% 56%, rgba(255, 180, 0, 0.24), transparent 40%),
    radial-gradient(circle at 70% 42%, rgba(46, 227, 255, 0.18), transparent 36%);
  filter: blur(24px);
  opacity: 0.9;
  pointer-events: none;
  transform: translateY(18px);
}

.icebreaker-card {
  position: relative;
  overflow: visible;
  width: 100%;
  margin: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 24px 58px rgba(0, 0, 0, 0.34),
    0 0 46px color-mix(in srgb, var(--ambient-cyan-bright) 18%, transparent);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.icebreaker-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 32%, rgba(255, 255, 255, 0.24) 45%, transparent 60% 100%),
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.2), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.icebreaker-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes benefits-gradient-flow {
  from {
    background-position: 0% 48%;
    transform: scale(1);
  }

  to {
    background-position: 100% 58%;
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefits::before {
    animation: none;
  }

  .benefit-grid article:hover {
    transform: none;
  }

  .icebreaker-card,
  .icebreaker-card-strip {
    transition: none;
  }
}

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

.event-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 232px;
  padding: 24px;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.42);
  border: 1px solid color-mix(in srgb, var(--event-accent) 28%, rgba(255, 255, 255, 0.44));
  border-radius: 18px;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 34px color-mix(in srgb, var(--event-accent) 18%, transparent),
    0 18px 40px rgba(8, 16, 60, 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(160deg, var(--event-tint), rgba(255, 255, 255, 0.06));
  opacity: 0.78;
  pointer-events: none;
}

.event-card > * {
  position: relative;
  z-index: 1;
}

.event-card:hover,
.event-card:focus-visible,
.event-card.is-selected {
  border-color: color-mix(in srgb, var(--event-accent) 68%, var(--blue));
  background: rgba(255, 253, 248, 0.6);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--event-accent) 26%, rgba(255, 255, 255, 0.18)),
    0 0 42px color-mix(in srgb, var(--event-accent) 32%, transparent),
    0 24px 54px rgba(8, 16, 60, 0.13);
  outline: none;
  transform: translateY(-5px);
}

.event-card.is-selected {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--event-accent) 36%, rgba(255, 255, 255, 0.2)),
    0 0 44px color-mix(in srgb, var(--event-accent) 36%, transparent),
    0 18px 44px rgba(9, 43, 194, 0.18);
}

.event-day {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  color: var(--event-accent);
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.event-card strong {
  max-width: 14ch;
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  line-height: 1.02;
}

.event-card p {
  margin: 0;
  color: rgba(24, 24, 32, 0.76);
  font-size: 0.98rem;
  line-height: 1.45;
}

.event-card .event-who {
  margin: 6px 0 0;
  color: #aaa;
  font-size: 11px;
  font-style: italic;
}

.event-card span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: rgba(24, 24, 32, 0.72);
  font-weight: 750;
}

.event-card span:last-child::after {
  content: "→";
  color: var(--event-accent);
  font-size: 1.08rem;
  line-height: 1;
  text-shadow: 0 0 14px color-mix(in srgb, var(--event-accent) 48%, transparent);
  animation: event-arrow-nudge 1.3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .event-card span:last-child::after {
    animation: none;
  }
}

.event-card--english {
  --event-tint: rgba(9, 43, 194, 0.22);
  --event-accent: #0d37c4;
}

.event-card--ideas {
  --event-tint: rgba(136, 88, 255, 0.2);
  --event-accent: #5f44d8;
}

.event-card--drinks {
  --event-tint: rgba(255, 164, 0, 0.24);
  --event-accent: #a45f00;
}

.event-card--ladies {
  --event-tint: rgba(255, 125, 152, 0.22);
  --event-accent: #b73761;
}

.event-card--walk {
  --event-tint: rgba(50, 161, 112, 0.24);
  --event-accent: #15714a;
}

.waitlist {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 0.92fr);
  gap: clamp(46px, 7vw, 112px);
  align-items: center;
  width: 100%;
  min-height: 100svh;
  padding-block: clamp(86px, 9vw, 142px);
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: #15120d;
  color: var(--white);
}

.waitlist::before,
.waitlist::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.waitlist::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 8, 0.94) 0%, rgba(16, 13, 9, 0.86) 31%, rgba(16, 13, 9, 0.54) 58%, rgba(10, 8, 7, 0.76) 100%),
    linear-gradient(128deg, rgba(238, 179, 77, 0.2) 0%, rgba(238, 179, 77, 0.06) 36%, transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(12, 8, 6, 0.62) 100%);
  opacity: 1;
}

.waitlist::after {
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 44%, rgba(255, 243, 216, 0.08) 50%, transparent 62% 100%),
    linear-gradient(180deg, rgba(255, 246, 230, 0.04), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.48;
}

.waitlist-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.06) brightness(1.02);
}

.waitlist .eyebrow {
  color: var(--yellow);
  letter-spacing: 0;
}

.waitlist-copy {
  position: sticky;
  top: 110px;
  z-index: 1;
  max-width: 590px;
}

.waitlist-copy h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 4.45rem;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.waitlist-copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 1.55;
}

.waitlist-footnotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 210px));
  gap: 18px 34px;
  margin-top: 38px;
}

.waitlist-footnotes > span {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.22;
}

.waitlist-footnotes svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waitlist-visual {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: clamp(520px, 48vw, 680px);
}

.booking-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  justify-self: end;
  align-self: center;
  display: grid;
  gap: 22px;
  width: min(560px, 100%);
  margin: 0;
  padding: 36px;
  color: #11131d;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 242, 0.92)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.46) inset,
    0 0 0 1px rgba(16, 34, 92, 0.05);
  backdrop-filter: blur(24px) saturate(1.18);
}

.booking-panel::before,
.booking-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.booking-panel > * {
  position: relative;
  z-index: 1;
}

.booking-panel::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 20% 80%, rgba(255, 255, 255, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 34%);
  opacity: 0.76;
}

.booking-panel::after {
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 22px;
  opacity: 0.58;
}

.booking-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.booking-label {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-selection-status {
  color: rgba(17, 19, 29, 0.46);
  font-size: 0.84rem;
  font-weight: 850;
}

.booking-options {
  display: grid;
  gap: 11px;
}

.booking-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 68px;
  width: 100%;
  padding: 14px 18px;
  color: #11131d;
  text-align: left;
  background: rgba(255, 255, 255, 0.76);
  border: 2px solid rgba(17, 19, 29, 0.09);
  border-radius: 16px;
  box-shadow:
    0 8px 24px rgba(17, 19, 29, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.booking-option:hover,
.booking-option:focus-visible,
.booking-option.is-selected {
  background: rgba(240, 244, 255, 0.94);
  border-color: rgba(45, 77, 217, 0.9);
  box-shadow:
    0 14px 30px rgba(45, 77, 217, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.booking-option:focus-visible {
  outline: 3px solid rgba(45, 77, 217, 0.2);
  outline-offset: 3px;
}

.booking-option.is-selected {
  transform: translateY(-1px);
}

.booking-option-day {
  color: var(--blue);
  font-size: 1.02rem;
  font-weight: 900;
}

.booking-option-name {
  min-width: 0;
  color: #11131d;
  font-size: 1.18rem;
  font-weight: 880;
  line-height: 1.12;
}

.booking-guarantee {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 2px;
  padding: 16px 18px;
  color: #765014;
  background: #fff7e6;
  border: 1px solid rgba(229, 176, 68, 0.16);
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 880;
  line-height: 1.3;
}

.booking-guarantee svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 60px;
  margin-top: 2px;
  padding: 15px 17px;
  color: var(--white);
  background: linear-gradient(180deg, #244cff, #1234c7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow:
    0 16px 28px rgba(18, 52, 199, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.booking-submit:hover,
.booking-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(18, 52, 199, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.booking-submit:focus-visible {
  outline: 3px solid rgba(45, 77, 217, 0.22);
  outline-offset: 3px;
}

.booking-submit[aria-disabled="true"] {
  color: rgba(17, 19, 29, 0.38);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(17, 19, 29, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  cursor: not-allowed;
}

.booking-submit[aria-disabled="true"]:hover,
.booking-submit[aria-disabled="true"]:focus-visible {
  transform: none;
}

.booking-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.booking-submit:not([aria-disabled="true"]):hover svg,
.booking-submit:not([aria-disabled="true"]):focus-visible svg {
  transform: translateX(4px);
}

.signup-form {
  padding: clamp(20px, 3vw, 34px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.form-split {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 14px;
}

label,
legend {
  color: #22242e;
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd1d8;
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(9, 43, 194, 0.12);
  outline: none;
}

.field-hint {
  color: var(--muted);
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2px 0 18px;
  padding: 0;
  border: 0;
}

.availability legend {
  width: 100%;
  margin-bottom: 4px;
}

.availability label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.availability input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--blue);
}

.form-error {
  min-height: 24px;
  margin-bottom: 14px;
  color: #b00020;
  font-weight: 800;
}

.form-button {
  width: 100%;
}

.form-success {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding: 16px;
  background: rgba(9, 43, 194, 0.08);
  border: 1px solid rgba(9, 43, 194, 0.18);
  border-radius: 8px;
}

.form-success[hidden] {
  display: none;
}

.form-success a {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 110px;
  margin: 0 auto;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.site-footer p {
  margin: 0;
  font-weight: 750;
}

.footer-sticker {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2px;
  width: fit-content;
  padding: 14px 20px 13px;
  color: #102aa0;
  background-color: #f4e5c2;
  background-image:
    linear-gradient(156deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04) 38%, rgba(141, 91, 20, 0.13) 100%),
    radial-gradient(ellipse at 22% 18%, rgba(255, 255, 255, 0.56), transparent 34%),
    url("assets/paper-sticker-texture.svg");
  background-size: 100% 100%, 100% 100%, cover;
  border-radius: 4px 7px 5px 6px;
  box-shadow:
    0 18px 30px rgba(8, 16, 60, 0.12),
    5px 9px 14px rgba(8, 16, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    inset 0 -16px 24px rgba(122, 82, 24, 0.08);
  font-family: "Caveat", "Bradley Hand", "Snell Roundhand", "Segoe Script", cursive;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0;
  text-align: left;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.36),
    0 2px 4px rgba(9, 43, 194, 0.12);
  transform: rotate(-3.4deg);
}

.footer-sticker span {
  position: relative;
  z-index: 1;
  display: block;
  white-space: nowrap;
}

.footer-sticker::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  z-index: 2;
  width: 82px;
  height: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.48) 46%, rgba(255, 255, 255, 0.12)),
    rgba(239, 222, 171, 0.62);
  border-radius: 2px;
  box-shadow:
    0 5px 10px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(1px);
  transform: translateX(-50%) rotate(2.6deg);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 850;
}

.footer-links a {
  color: var(--blue);
}

.footer-instagram-link {
  width: 36px;
  height: 36px;
  color: var(--blue);
  background: rgba(9, 43, 194, 0.06);
  border: 1px solid rgba(9, 43, 194, 0.14);
  border-radius: 999px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-instagram-link:hover,
.footer-instagram-link:focus-visible {
  background: rgba(9, 43, 194, 0.1);
  border-color: rgba(9, 43, 194, 0.24);
  outline: none;
  transform: translateY(-1px);
}

.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  position: absolute;
}

.legal-page .brand {
  filter: none;
}

.legal-page .nav-links {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(9, 43, 194, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 32px rgba(8, 16, 60, 0.08);
  text-shadow: none;
}

.legal-page .nav-links a:hover,
.legal-page .nav-links a:focus-visible {
  color: var(--blue);
  background: rgba(9, 43, 194, 0.08);
  border-color: rgba(9, 43, 194, 0.16);
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(120px, 14vw, 170px) 0 clamp(64px, 8vw, 110px);
}

.legal-main h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-updated {
  margin-bottom: 46px;
  color: var(--muted);
  font-weight: 800;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-family: "Manrope", "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.legal-section p,
.legal-section li {
  color: #292b36;
  font-size: 1.05rem;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 1040px) {
  .hero {
    align-items: flex-end;
    min-height: 100svh;
  }

  .show-up-inner {
    grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1fr);
    gap: 30px;
  }

  .show-up-visual {
    min-height: 0;
  }

  .show-up-title {
    font-size: 3.6rem;
  }

  .show-up-flow {
    padding: 34px 30px 38px;
  }

  .flow-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
  }

  .flow-step h3 {
    font-size: 1.18rem;
  }

  .flow-step p {
    font-size: 0.98rem;
  }

  .how {
    padding-inline: 20px;
  }

  .how-card {
    min-height: 500px;
    padding: 28px;
  }

  .how-card--left {
    transform: rotate(4deg) translateX(-8px);
  }

  .how-card--right {
    transform: rotate(-4deg) translateX(8px);
  }

  .how-card h3 {
    font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  }

  .how-card p {
    font-size: clamp(1rem, 1.45vw, 1.34rem);
  }

  .group-quiz {
    padding-inline: 20px;
  }

  .quiz-shell {
    width: min(820px, 100%);
  }

  .quiz-option {
    min-height: 136px;
  }

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

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-inner {
    padding: 0 24px;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .nav-links {
    display: none;
  }

  .brand {
    transform: scale(0.78);
    transform-origin: left center;
  }

  .hero,
  section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    width: 100%;
    padding-inline: 14px;
    padding-top: 118px;
  }

  .hero-art {
    opacity: 0.44;
  }

  .hero-lamps {
    opacity: 0.54;
    transform: translateY(-5%) scale(0.92);
    transform-origin: center top;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(680px, 100%);
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1fr;
    order: 1;
  }

  .hero-copy > * {
    grid-column: 1;
  }

  .hero-kicker {
    order: 1;
    margin-bottom: 18px;
  }

  #hero-title {
    order: 2;
    min-width: 0;
    max-width: min(100%, 640px);
    text-wrap: balance;
  }

  .hero-lede {
    order: 3;
    max-width: 620px;
    margin-bottom: 20px;
  }

  .hero-actions {
    order: 4;
    align-items: flex-start;
    gap: 16px 22px;
    margin-bottom: 18px;
  }

  .hero-buttons {
    width: fit-content;
  }

  .hero-events {
    order: 2;
    grid-row: auto;
    margin-bottom: 24px;
    max-width: none;
  }

  .section-band,
  .benefits,
  .waitlist {
    width: 100%;
    padding-inline: 14px;
  }

  .how {
    width: 100%;
    min-height: 0;
    padding-inline: 14px;
  }

  .group-quiz {
    width: 100%;
    min-height: 100svh;
    padding-inline: 14px;
  }

  .quiz-topline {
    grid-template-columns: 76px minmax(0, 1fr) 76px;
    width: min(620px, 100%);
  }

  .quiz-card--intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quiz-intro-copy {
    justify-items: center;
  }

  .quiz-intro-preview {
    order: -1;
    width: min(380px, 100%);
  }

  .quiz-options {
    grid-template-columns: 1fr;
    width: min(540px, 100%);
  }

  .quiz-option {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  h1 {
    font-size: clamp(3.15rem, 14vw, 5.7rem);
  }

  h2 {
    font-size: clamp(2.15rem, 9.5vw, 4rem);
  }

  .section-grid,
  .show-up-inner,
  .solution,
  .steps,
  .benefit-grid,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .waitlist {
    min-height: auto;
    padding-block: 82px;
  }

  .waitlist::before {
    background:
      linear-gradient(180deg, rgba(13, 11, 8, 0.9) 0%, rgba(16, 13, 9, 0.72) 46%, rgba(10, 8, 7, 0.84) 100%),
      linear-gradient(128deg, rgba(238, 179, 77, 0.16) 0%, transparent 48%);
  }

  .waitlist-copy h2 {
    font-size: 3.8rem;
  }

  .waitlist-copy p {
    font-size: 1.12rem;
  }

  .waitlist-footnotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .icebreaker-card-strip {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    width: min(320px, 74vw);
    margin: clamp(24px, 7vw, 42px) auto 0;
    pointer-events: auto;
    transform: rotate(3deg);
  }

  .show-up-inner {
    min-height: 0;
  }

  .show-up-copy {
    max-width: none;
  }

  .show-up-visual {
    width: min(680px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .show-up-title {
    max-width: 680px;
    font-size: 3.9rem;
  }

  .show-up-lead {
    max-width: 620px;
  }

  .show-up-proof {
    max-width: 620px;
  }

  .show-up-flow {
    width: 100%;
  }

  .poster-page {
    min-height: 0;
    padding-inline: 14px;
  }

  .poster-card-row {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
    margin: 0 auto;
  }

  .poster-card,
  .poster-card--girls,
  .poster-card--ready,
  .poster-card--meet {
    transform: none;
  }

  .how-cards {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .how-card,
  .how-card--left,
  .how-card--right {
    min-height: auto;
    transform: none;
  }

  .how-photo-stack,
  .how-bubbles,
  .how-step-visual {
    margin-top: 34px;
  }

  .poster-line {
    margin-bottom: -24px;
  }

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

  .waitlist-copy {
    position: static;
    max-width: 760px;
  }

  .waitlist-visual {
    width: min(860px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .booking-panel {
    justify-self: center;
    width: min(560px, calc(100% - 36px));
    margin: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 0;
  }

  .footer-copy {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .hero {
    width: 100%;
    min-height: 100svh;
    padding-top: 108px;
    padding-bottom: 30px;
  }

  .hero-layout {
    width: min(640px, calc(100vw - 56px));
    margin: 0 auto;
    padding-right: 0;
  }

  .hero-art {
    opacity: 0.28;
  }

  .hero-lamps {
    opacity: 0.42;
    transform: translateY(-8%) scale(0.78);
    transform-origin: center top;
  }

  .hero-copy {
    align-content: start;
    width: min(100%, calc(100vw - 84px));
    max-width: calc(100vw - 84px);
  }

  #hero-title {
    order: 3;
    max-width: calc(100vw - 84px);
    margin-bottom: 14px;
    font-size: clamp(2rem, 8.8vw, 2.7rem);
    line-height: 0.95;
    text-wrap: wrap;
  }

  .hero-kicker {
    order: 2;
    padding: 8px 13px;
    font-size: 0.82rem;
  }

  .hero-lede {
    order: 4;
    max-width: calc(100vw - 84px);
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .hero-actions {
    display: contents;
  }

  .hero-buttons {
    order: 5;
    align-items: flex-start;
    flex-direction: column;
    width: min(100%, calc(100vw - 84px));
    max-width: calc(100vw - 84px);
    gap: 10px;
  }

  .hero-script--inline {
    order: 1;
    justify-self: end;
    max-width: min(100%, 240px);
    padding: 12px 15px 11px;
    margin: 0 2px 20px 0;
    font-size: clamp(1.28rem, 6vw, 1.55rem);
    line-height: 0.88;
    transform: rotate(3deg);
  }

  .hero-script.hero-script--inline::before {
    top: -7px;
    width: 70px;
    height: 16px;
  }

  .hero-media {
    width: 100%;
    border-radius: 0;
  }

  .hero-media img {
    object-position: 90% 44%;
    filter: brightness(0.82) saturate(1.06);
    transform: scale(1.04) translateY(1%);
    transform-origin: 90% 44%;
  }

  .hero-media::before {
    background:
      radial-gradient(ellipse at 66% 24%, rgba(255, 226, 172, 0.12), transparent 32%),
      linear-gradient(180deg, rgba(6, 10, 23, 0.68), rgba(6, 10, 23, 0.3) 31%, rgba(6, 10, 23, 0.38) 58%, rgba(6, 10, 23, 0.92) 100%),
      linear-gradient(100deg, rgba(6, 10, 23, 0.86), rgba(6, 10, 23, 0.42) 58%, rgba(6, 10, 23, 0.32) 100%);
  }

  .show-up {
    padding-block: 58px;
  }

  .how {
    padding-block: 54px 68px;
  }

  .group-quiz {
    padding-block: 58px 72px;
  }

  .poster-page {
    padding-block: 54px 68px;
  }

  .poster-heading {
    margin-bottom: 28px;
  }

  .poster-heading h2 {
    font-size: clamp(2.05rem, 10vw, 3.15rem);
  }

  .poster-card-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .poster-card-copy strong {
    text-align: left;
  }

  .quiz-heading {
    margin-bottom: 24px;
  }

  .quiz-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3.3rem);
  }

  .quiz-heading p {
    font-size: 1rem;
  }

  .quiz-viewport {
    min-height: 0;
  }

  .quiz-topline {
    grid-template-columns: 68px minmax(0, 1fr) 42px;
    gap: 10px;
    margin-bottom: 28px;
  }

  .quiz-topline::after {
    font-size: 0.76rem;
  }

  .quiz-progress {
    grid-column: 2;
  }

  .quiz-card--intro,
  .quiz-card--result {
    padding: 22px;
  }

  .quiz-intro-lede {
    font-size: 1.7rem;
  }

  .quiz-intro-preview {
    width: min(300px, 100%);
  }

  .quiz-card h3 {
    font-size: 1.38rem;
  }

  .quiz-option {
    min-height: 0;
    padding: 0;
  }

  .quiz-option-label {
    left: 14px;
    top: 14px;
    max-width: calc(100% - 64px);
    font-size: 1.48rem;
  }

  .quiz-option-key {
    top: 12px;
    right: 12px;
  }

  .quiz-result-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .quiz-result-actions .button,
  .quiz-reset {
    width: 100%;
    min-height: 46px;
  }

  .how-heading {
    gap: 14px;
    margin-bottom: 28px;
  }

  .how-heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .how-card {
    padding: 22px;
  }

  .how-card h3 {
    margin-bottom: 18px;
    font-size: 1.78rem;
  }

  .how-card p {
    font-size: 1rem;
  }

  .how-card-kicker {
    margin-bottom: 20px !important;
  }

  .how-icon {
    width: 52px;
    height: 52px;
  }

  .how-photo-stack {
    height: 140px;
  }

  .how-bubbles {
    height: 178px;
    transform: scale(0.92);
    transform-origin: center bottom;
  }

  .show-up-chips {
    gap: 10px;
    margin: 24px 0 32px;
  }

  .show-up-chips span {
    min-height: 44px;
    padding: 9px 16px;
    font-size: 0.98rem;
  }

  .show-up-title {
    font-size: 2.78rem;
  }

  .show-up-lead {
    font-size: 1rem;
  }

  .show-up-proof {
    grid-template-columns: 1fr;
    max-width: none;
    margin-bottom: 28px;
    border-radius: 16px;
  }

  .proof-item {
    min-height: 0;
    padding: 20px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid rgba(17, 17, 22, 0.07);
    border-left: 0;
  }

  .proof-item strong {
    font-size: 1.8rem;
  }

  .proof-item > span {
    font-size: 0.86rem;
  }

  .show-up-action {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .show-up-action p {
    max-width: none;
    font-size: 0.98rem;
  }

  .show-up-visual {
    min-height: 0;
    margin-top: 4px;
  }

  .show-up-flow {
    padding: 24px 20px 32px;
    border-radius: 22px;
  }

  .flow-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .flow-step > span {
    width: 40px;
    height: 40px;
  }

  .flow-step h3 {
    font-size: 1.02rem;
  }

  .flow-step p {
    font-size: 0.92rem;
  }

  .hero-event-list {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-events {
    justify-self: start;
    width: min(100%, calc(100vw - 84px));
    max-width: calc(100vw - 84px);
    margin-bottom: 22px;
  }

  .hero-events-panel {
    padding: 14px;
  }

  .hero-events-label {
    margin-bottom: 10px;
    font-size: 0.75rem;
  }

  .hero-event-card {
    grid-template-columns: minmax(0, 1fr) 14px;
    min-height: 78px;
    padding: 11px 10px;
    align-content: space-between;
  }

  .hero-event-icon {
    display: none;
  }

  .hero-event-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-event-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-event-day {
    min-width: 22px;
    font-size: 0.84rem;
  }

  .hero-event-name {
    font-size: 0.82rem;
    line-height: 1.12;
  }

  .site-footer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 14px 16px;
    padding: 26px 0;
  }

  .site-footer .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-copy {
    display: contents;
  }

  .footer-sticker {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    padding: 7px 10px 7px;
    font-size: clamp(0.8rem, 3.4vw, 1.08rem);
    line-height: 0.86;
    box-shadow:
      0 9px 16px rgba(8, 16, 60, 0.1),
      3px 5px 8px rgba(8, 16, 60, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.54),
      inset 0 -8px 12px rgba(122, 82, 24, 0.08);
    transform: rotate(-3deg);
  }

  .footer-sticker::before {
    top: -5px;
    width: 42px;
    height: 9px;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .mechanics-list,
  .form-split {
    grid-template-columns: 1fr;
  }

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

  .event-card {
    min-height: 150px;
    padding: 16px;
  }

  .event-card strong {
    max-width: none;
    font-size: 1.08rem;
  }

  .event-card p:not(.event-who) {
    display: none;
  }

  .event-card .event-who {
    display: block;
    font-size: 10px;
    line-height: 1.35;
  }

  .event-card span:last-child {
    font-size: 0.88rem;
  }

  .signup-form {
    padding: 18px;
  }

  .booking-panel {
    width: 100%;
    margin: 0;
    padding: 20px;
    border-radius: 24px;
  }

  .booking-panel::after {
    inset: 9px;
    border-radius: 17px;
  }

  .booking-label {
    font-size: 0.76rem;
  }

  .booking-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .booking-selection-status {
    font-size: 0.78rem;
  }

  .booking-options {
    gap: 8px;
  }

  .booking-option {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 12px;
    min-height: 64px;
    padding: 12px;
    border-radius: 14px;
  }

  .booking-option-day {
    font-size: 0.92rem;
  }

  .booking-option-name {
    font-size: 1rem;
  }

  .booking-guarantee {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 14px;
    border-radius: 15px;
    font-size: 0.9rem;
  }

  .booking-guarantee svg {
    width: 22px;
    height: 22px;
  }

  .booking-submit {
    min-height: 56px;
    font-size: 0.94rem;
  }

  .waitlist-visual {
    display: grid;
    gap: 18px;
    min-height: 0;
  }

  .waitlist-background {
    object-position: 58% center;
  }

  .waitlist-copy h2 {
    font-size: 2.9rem;
  }

  .waitlist-copy p {
    font-size: 1rem;
  }

  .waitlist-footnotes {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 26px;
  }

  .waitlist-footnotes > span {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    font-size: 0.94rem;
  }

  .waitlist-footnotes svg {
    width: 22px;
    height: 22px;
  }

  .legal-main {
    width: min(100% - 28px, 920px);
    padding-top: 108px;
  }
}
