:root {
  --ink: #0b1739;
  --ink-soft: #1f2e52;
  --blue: #1755ff;
  --blue-dark: #0d3dcb;
  --coral: #ff5a4f;
  --lime: #dfff57;
  --yellow: #ffd95a;
  --paper: #f7f8fc;
  --paper-blue: #edf2ff;
  --white: #ffffff;
  --line: #dce2ef;
  --muted: #59647c;
  --shadow: 0 24px 70px rgba(11, 23, 57, 0.14);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.25rem, 7vw, 6.9rem);
  max-width: 12ch;
}

h1 em {
  color: var(--blue);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  max-width: 14ch;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  color: var(--ink-soft);
}

.shell {
  width: var(--shell);
  width: min(var(--shell), calc(100% - env(safe-area-inset-left) - env(safe-area-inset-right)));
  min-width: 0;
  margin-inline: auto;
}

.section[id] {
  scroll-margin-top: 6rem;
}

.narrow {
  max-width: 830px;
  text-align: center;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.75rem;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 23, 57, 0.08);
  background: rgba(247, 248, 252, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark strong {
  color: var(--blue);
}

.wordmark-ball {
  width: 2.15rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--ink);
}

.wordmark-ball span {
  width: 42%;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.desktop-nav a {
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.button {
  max-width: 100%;
  min-height: 3.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 2.85rem;
  padding: 0.7rem 1.05rem;
  font-size: 0.9rem;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(23, 85, 255, 0.25);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 30px rgba(23, 85, 255, 0.3);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #162958;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.button-lime,
.button-lime:link,
.button-lime:visited {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.button-lime:hover,
.button-lime:active {
  color: var(--ink);
  background: #c9f43c;
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  padding-top: 5rem;
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 217, 90, 0.55) 0 7%, transparent 7.2%),
    linear-gradient(180deg, #f7f8fc 0%, #eef3ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  padding-bottom: 5.5rem;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 0.75rem;
  aspect-ratio: 1;
  background: var(--coral);
  border-radius: 50%;
}

.hero-lead {
  max-width: 58ch;
  margin-bottom: 1.8rem;
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
}

.hero-punchline {
  display: inline-block;
  margin: -0.35rem 0 1rem;
  padding: 0.2rem 0.45rem;
  color: var(--ink);
  background: var(--yellow);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.8vw, 1.3rem);
  font-weight: 850;
  line-height: 1.35;
  transform: rotate(-1deg);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.text-link,
.plain-link {
  color: var(--ink);
  font-weight: 800;
}

.text-link:hover,
.plain-link:hover {
  color: var(--blue);
}

.handoff-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.fact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.fact-pills li {
  min-width: 9rem;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
}

.fact-pills strong {
  font-size: 0.98rem;
}

.fact-pills span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
}

.image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 48% 48% 2rem 2rem;
  background: var(--ink);
  box-shadow: 18px 18px 0 var(--yellow), var(--shadow);
  transform: rotate(1.5deg);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 23, 57, 0.28));
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 52% center;
}

.photo-label {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.25rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-8deg);
}

.photo-label-top {
  top: -2.5rem;
  left: -2.5rem;
}

.photo-label strong {
  font-size: 1.7rem;
  line-height: 1;
}

.photo-label span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-sticker {
  position: absolute;
  right: -2rem;
  bottom: -2.4rem;
  z-index: 3;
  width: 10.5rem;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
  text-decoration: none;
  transform: rotate(7deg);
  transition: transform 160ms ease;
}

.offer-sticker:hover {
  transform: rotate(3deg) scale(1.04);
}

.offer-sticker strong {
  margin: 0.25rem 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.03;
}

.offer-small {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.hero-ticker {
  overflow: hidden;
  border-block: 3px solid var(--ink);
  color: var(--ink);
  background: var(--coral);
  font-weight: 950;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero-ticker div {
  min-width: max-content;
  padding: 0.85rem 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-align: center;
}

.hero-ticker span {
  margin-inline: 1.2rem;
  color: var(--white);
}

.ticker-mobile {
  display: none;
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-intro {
  max-width: 68ch;
  margin-inline: auto;
  font-size: 1.15rem;
}

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

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.fit-card {
  position: relative;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 7px 7px 0 var(--ink);
}

.fit-card-yes {
  background: var(--lime);
}

.fit-card-think {
  background: var(--paper-blue);
}

.card-icon {
  width: 2.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.25rem;
  font-weight: 950;
}

.fit-card ul {
  margin: 1.4rem 0 0;
  padding-left: 1.25rem;
}

.fit-card li + li {
  margin-top: 0.5rem;
}

.package-section {
  background: var(--paper-blue);
}

.package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.kicker-blue {
  color: var(--blue);
}

.kicker-lime {
  color: var(--lime);
}

.kicker-coral {
  color: var(--coral);
}

.kicker-dark {
  color: var(--ink);
}

.selector {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
  margin-top: 2rem;
}

.selector button {
  min-height: 3.5rem;
  border: 2px solid var(--ink);
  border-radius: 0.9rem;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 120ms ease, color 120ms ease, background 120ms ease;
}

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

.selector button[aria-pressed="true"] {
  color: var(--white);
  background: var(--blue);
  box-shadow: 4px 4px 0 var(--ink);
}

.selector-caption {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.price-panel {
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--blue);
}

.price-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.price-panel-top span {
  color: var(--muted);
  font-weight: 750;
}

.price-panel-top strong {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  line-height: 1;
  white-space: nowrap;
}

.price-panel > p {
  margin: 1.2rem 0;
}

.offer-unlock {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: 1rem;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.9rem;
}

.offer-unlock > span:first-child {
  flex: 0 0 auto;
  width: 1.4rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
}

.offer-unlock.is-locked {
  color: var(--muted);
  background: #edf0f5;
}

.offer-unlock.is-locked > span:first-child {
  background: var(--muted);
}

.price-panel small {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 5rem;
}

.included-grid article {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.mini-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-label-coral {
  background: #ffd3cf;
}

.check-list,
.dot-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.dot-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li + li,
.dot-list li + li {
  margin-top: 0.65rem;
}

.check-list li::before,
.dot-list li::before {
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 1.15rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.dot-list li::before {
  width: 0.65rem;
  top: 0.48rem;
  color: transparent;
  background: var(--coral);
  content: "";
}

.run-sheet {
  background: var(--white);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 3rem;
}

.section-heading-row > p {
  max-width: 38rem;
  margin-left: auto;
  font-size: 1.05rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  padding: 4.2rem 1.4rem 0 0;
  border-top: 3px solid var(--ink);
}

.timeline li::before {
  position: absolute;
  top: -0.75rem;
  left: 0;
  width: 1.25rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.timeline li:nth-child(2)::before {
  background: var(--yellow);
}

.timeline li:nth-child(3)::before {
  background: var(--coral);
}

.timeline li:nth-child(4)::before {
  background: var(--blue);
}

.timeline .time {
  position: absolute;
  top: 1rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.timeline strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hall-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(23, 85, 255, 0.55), transparent 26rem),
    var(--ink);
}

.hall-section h2,
.hall-section p,
.hall-section a {
  color: var(--white);
}

.hall-section .mini-label {
  color: var(--ink);
  background: var(--lime);
}

.hall-section .button-light,
.hall-section .button-light:link,
.hall-section .button-light:visited {
  color: var(--ink);
  background: var(--white);
}

.hall-section .button-light:hover,
.hall-section .button-light:active {
  color: var(--ink);
  background: var(--lime);
}

.hall-section .button-light span {
  color: inherit;
}

.hall-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.large-copy {
  max-width: 58ch;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.number-list {
  margin: 2.2rem 0;
  padding: 0;
  list-style: none;
}

.number-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.number-list li + li {
  margin-top: 1rem;
}

.number-list span {
  flex: 0 0 auto;
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
}

.number-list p {
  margin: 0.15rem 0 0;
}

.hall-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hall-actions .plain-link {
  font-size: 0.88rem;
}

.hall-facts {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hall-facts dl {
  margin: 1rem 0 1.5rem;
}

.hall-facts dl div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hall-facts dd {
  margin: 0;
  color: var(--lime);
  font-weight: 900;
  white-space: nowrap;
}

.hall-facts > p:not(.mini-label) {
  font-size: 0.9rem;
}

.source-note {
  padding: 1rem;
  border-radius: 0.9rem;
  color: #dce5ff;
  background: rgba(0, 0, 0, 0.23);
  font-size: 0.82rem;
}

.grownups-section {
  background: var(--white);
}

.grownups-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.grownups-photo {
  position: relative;
}

.grownups-photo img {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: 2rem 8rem 2rem 2rem;
  box-shadow: 13px 13px 0 var(--coral);
}

.image-caption {
  position: absolute;
  right: -1.5rem;
  bottom: 1.5rem;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  transform: rotate(-3deg);
}

.size-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0 1rem;
}

.size-cards > div {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
}

.size-cards > div:first-child {
  background: var(--paper-blue);
}

.size-cards > div:last-child {
  background: #fff0ee;
}

.size-cards strong {
  margin-bottom: 0.45rem;
}

.size-cards span {
  color: var(--muted);
  font-size: 0.88rem;
}

.small-copy {
  color: var(--muted);
  font-size: 0.88rem;
}

.offer-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  border-block: 3px solid var(--ink);
  background: var(--yellow);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
  gap: clamp(3rem, 5vw, 5rem);
}

.offer-grid h2 {
  max-width: 100%;
  font-size: clamp(3.25rem, 4.2vw, 4.5rem);
  line-height: 0.98;
  hyphens: manual;
}

.offer-details > p:first-child {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.promo-code {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  margin: 1.8rem 0 0;
  padding: 0.65rem 0.65rem 0.65rem 1.15rem;
  border: 3px solid var(--ink);
  border-radius: 1.1rem;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.promo-code code {
  min-width: 0;
}

.promo-code > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-code code {
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
}

.promo-code button {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  border: 0;
  border-radius: 0.75rem;
  color: var(--white);
  background: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.promo-code button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.copy-status {
  min-height: 1.4rem;
  margin: 0.45rem 0 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.offer-terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.offer-terms li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-size: 0.88rem;
}

.offer-terms li::before {
  position: absolute;
  left: 0;
  content: "✓";
  font-weight: 950;
}

.safety-section {
  background: var(--paper);
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.safety-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
}

.safety-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.safety-list article > span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.safety-list h3 {
  margin-bottom: 0.35rem;
}

.safety-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading {
  position: sticky;
  top: 8rem;
}

.faq-heading p:last-child {
  max-width: 38ch;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.4rem 3.5rem 1.4rem 0;
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 2.15rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "+";
  font-family: system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
  color: var(--white);
  background: var(--blue);
}

.faq-list details p {
  max-width: 62ch;
  padding: 0 3.5rem 1.5rem 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 13vw, 11rem);
  color: var(--white);
  background: var(--blue);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  width: 34rem;
  aspect-ratio: 1;
  top: -15rem;
  right: -9rem;
}

.final-cta::after {
  width: 18rem;
  aspect-ratio: 1;
  bottom: -10rem;
  left: -5rem;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta h2 {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(2.9rem, 7vw, 6.5rem);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .eyebrow {
  justify-content: center;
  color: var(--white);
}

.site-footer {
  padding: 3.5rem 0 7rem;
  color: #d8deeb;
  background: #071026;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 4rem;
}

.hero-grid > *,
.package-grid > *,
.hall-grid > *,
.grownups-grid > *,
.offer-grid > *,
.safety-grid > *,
.faq-grid > *,
.footer-inner > * {
  min-width: 0;
}

.wordmark-footer {
  color: var(--white);
}

.footer-inner p {
  margin: 0.75rem 0 0;
  color: #aab5cc;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: right;
}

.footer-links a {
  color: var(--white);
  font-weight: 750;
}

.privacy-note {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.mobile-dock {
  display: none;
}

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .offer-grid h2 {
    max-width: 14ch;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .package-grid,
  .hall-grid,
  .grownups-grid,
  .offer-grid,
  .safety-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 680px;
    margin: 2rem auto 0;
  }

  .image-frame img {
    min-height: auto;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading-row > p {
    margin-left: 0;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 0;
  }

  .faq-heading {
    position: static;
  }

  .grownups-photo {
    max-width: 650px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }

  .section {
    padding-block: clamp(4.25rem, 16vw, 5.5rem);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.65rem);
  }

  h1 em {
    white-space: normal;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .site-header .button-small {
    display: none;
  }

  .header-inner {
    min-height: 4.4rem;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4.5rem;
  }

  .image-frame {
    box-shadow: 10px 10px 0 var(--yellow), var(--shadow);
    transform: rotate(0.75deg);
  }

  .hero-ticker {
    white-space: normal;
  }

  .hero-ticker .ticker-desktop {
    display: none;
  }

  .hero-ticker .ticker-mobile {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 0.35rem;
    padding: 0.8rem max(0.5rem, env(safe-area-inset-right)) 0.8rem max(0.5rem, env(safe-area-inset-left));
    font-size: clamp(0.78rem, 3.8vw, 0.95rem);
    letter-spacing: 0.035em;
  }

  .ticker-mobile .ticker-word,
  .ticker-mobile .ticker-star {
    margin: 0;
    white-space: nowrap;
  }

  .ticker-mobile .ticker-word {
    color: var(--ink);
  }

  .ticker-mobile .ticker-star {
    color: var(--white);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .text-link {
    text-align: center;
  }

  .handoff-note {
    text-align: center;
  }

  .fact-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .fact-pills li {
    min-width: 0;
    padding: 0.7rem;
  }

  .fact-pills strong {
    font-size: 0.8rem;
  }

  .fact-pills span {
    font-size: 0.68rem;
  }

  .photo-label-top {
    top: -1.5rem;
    left: -0.5rem;
  }

  .photo-label {
    width: 5.25rem;
  }

  .offer-sticker {
    right: -0.2rem;
    bottom: -2.5rem;
    width: 8.8rem;
  }

  .offer-sticker strong {
    font-size: 1.05rem;
  }

  .fit-grid,
  .included-grid,
  .offer-grid,
  .size-cards {
    grid-template-columns: 1fr;
  }

  .fit-card,
  .price-panel {
    box-shadow: 5px 5px 0 var(--ink);
  }

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

  .price-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0.65rem;
  }

  .timeline li {
    padding: 0 0 2.1rem 3.1rem;
    border-top: 0;
    border-left: 3px solid var(--ink);
  }

  .timeline li::before {
    top: 0;
    left: -0.75rem;
  }

  .timeline .time {
    position: static;
    display: block;
    margin-bottom: 0.35rem;
  }

  .hall-actions,
  .hall-actions .button {
    width: 100%;
  }

  .hall-grid {
    gap: 2.75rem;
  }

  .hall-section h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    line-height: 1;
  }

  .number-list li {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .number-list p {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .hall-actions {
    gap: 1rem;
  }

  .hall-actions .button {
    min-height: 3.75rem;
    padding-inline: 1rem;
  }

  .hall-facts dl div {
    align-items: baseline;
    gap: 1rem;
  }

  .hall-facts .mini-label {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.25;
    letter-spacing: 0.045em;
    text-align: center;
    text-wrap: balance;
  }

  .hall-actions .plain-link {
    text-align: center;
  }

  .image-caption {
    right: 0.5rem;
    bottom: 0.75rem;
  }

  .promo-code {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .offer-grid h2 {
    font-size: clamp(2.65rem, 11vw, 3.35rem);
  }

  .promo-code > span {
    grid-column: 1 / -1;
  }

  .promo-code code {
    overflow-wrap: anywhere;
  }

  .offer-terms {
    grid-template-columns: 1fr;
  }

  .button-wide-mobile {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    text-align: left;
  }

  .mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: block;
    padding: 0.65rem max(0.75rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(7, 16, 38, 0.95);
    backdrop-filter: blur(14px);
  }

  .mobile-dock a,
  .mobile-dock a:link,
  .mobile-dock a:visited {
    min-height: 3.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  .mobile-dock a:hover,
  .mobile-dock a:active {
    color: var(--ink);
    background: #c9f43c;
  }

  .mobile-dock a span {
    color: inherit;
  }
}

@media (max-width: 390px) {
  .wordmark {
    font-size: 0.94rem;
  }

  .wordmark-ball {
    width: 1.9rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  .fact-pills {
    grid-template-columns: 1fr;
  }

  .fact-pills li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .offer-sticker {
    width: 8rem;
  }

  .hall-grid {
    gap: 2.25rem;
  }

  .hall-facts {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }

  .hall-facts dl div {
    gap: 0.75rem;
  }

  .hall-facts dt {
    font-size: 0.92rem;
  }

  .hall-facts dd {
    font-size: 0.9rem;
  }

  .promo-code {
    gap: 0.65rem;
    padding: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
