@font-face {
  font-family: "Wurt Anton";
  src: url("/fonts/anton.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --midnight: #050817;
  --midnight-soft: #0b1029;
  --ink: #f5f6ff;
  --muted: #a9b3d5;
  --muted-dark: #737fa7;
  --line: rgba(196, 208, 255, 0.16);
  --blue: #315dff;
  --blue-bright: #6084ff;
  --blue-deep: #112690;
  --red: #f02d4f;
  --red-hot: #ff4b52;
  --pink: #ff6a85;
  --violet: #9f64ff;
  --cream: #f8f3e8;
  --display: "Wurt Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--midnight);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--midnight);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

button,
a {
  touch-action: manipulation;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 12px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--midnight);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.vip-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 4%, rgba(48, 84, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 3% 44%, rgba(240, 45, 79, 0.13), transparent 28rem),
    linear-gradient(180deg, #050817 0%, #080c1e 45%, #08091a 100%);
}

.vip-page::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(174, 191, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174, 191, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

.vip-page::after {
  position: absolute;
  z-index: -1;
  top: 12rem;
  right: -16rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(78, 106, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(78, 106, 255, 0.018), 0 0 0 7rem rgba(78, 106, 255, 0.012);
  content: "";
  transform: rotate(21deg) skewX(-12deg);
}

.page-glow {
  position: absolute;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.19;
  pointer-events: none;
}

.page-glow-blue {
  top: 26rem;
  left: -18rem;
  background: var(--blue);
}

.page-glow-red {
  top: 102rem;
  right: -17rem;
  background: var(--red);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(193, 204, 255, 0.12);
  background: rgba(5, 8, 23, 0.74);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(240, 45, 79, 0.16);
}

.brand-fullstop {
  color: var(--red-hot);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav > a:not(.header-cta) {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav > a:not(.header-cta):hover,
.site-nav > a:not(.header-cta):focus-visible {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 12px 17px;
  background: var(--red);
  box-shadow: 0 7px 20px rgba(240, 45, 79, 0.22);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-hot);
  box-shadow: 0 12px 28px rgba(240, 45, 79, 0.32);
  transform: translateY(-2px);
}

.hero,
.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  min-height: 720px;
  padding: 90px 0 108px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--blue-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-mark {
  color: var(--red-hot);
  font-size: 1rem;
}

.eyebrow-number {
  color: var(--red-hot);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(4.8rem, 9.5vw, 8.7rem);
}

h1 span,
h2 span,
h2 em {
  color: var(--red-hot);
  font-style: normal;
}

h1 span {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
  color: transparent;
  background: linear-gradient(105deg, var(--blue-bright) 4%, #b6c3ff 47%, var(--blue) 93%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 530px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  padding: 17px 23px;
}

.button-primary {
  background: var(--red);
  box-shadow: 0 9px 26px rgba(240, 45, 79, 0.26);
}

.button-quiet {
  border-color: rgba(172, 188, 255, 0.23);
  color: var(--muted);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(172, 188, 255, 0.64);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 570px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  position: relative;
  min-width: 0;
  padding: 0 14px;
  border-left: 1px solid var(--line);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.07em;
}

.hero-facts li:first-child strong,
.hero-facts li:nth-child(3) strong {
  color: var(--red-hot);
}

.hero-facts span {
  margin-top: 4px;
  color: var(--muted-dark);
  font-size: 0.68rem;
  line-height: 1.3;
}

.video-stage {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 13px 13px 0;
}

.video-stage::before,
.video-stage::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.video-stage::before {
  top: 8%;
  right: -3%;
  bottom: 8%;
  left: 4%;
  border: 1px solid rgba(240, 45, 79, 0.43);
  transform: skewY(-7deg);
}

.video-stage::after {
  top: -4%;
  right: 9%;
  width: 64%;
  height: 112%;
  border: 1px solid rgba(76, 113, 255, 0.34);
  transform: skewX(-14deg) rotate(8deg);
}

.stage-surface {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(180, 194, 255, 0.4);
  background:
    linear-gradient(150deg, rgba(26, 41, 120, 0.76), transparent 46%),
    radial-gradient(circle at 50% 40%, rgba(79, 98, 255, 0.53), transparent 36%),
    linear-gradient(160deg, #101b5a 0%, #0b1033 43%, #050816 100%);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.36),
    inset 0 0 0 7px rgba(4, 7, 25, 0.58),
    inset 0 0 85px rgba(89, 107, 255, 0.18);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}

.stage-surface::before {
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(217, 224, 255, 0.34);
  content: "";
  pointer-events: none;
}

.stage-surface::after {
  position: absolute;
  z-index: 1;
  top: -18%;
  left: 31%;
  width: 13%;
  height: 148%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  content: "";
  transform: rotate(21deg);
  animation: stage-shine 8s ease-in-out infinite;
  pointer-events: none;
}

.stage-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.54;
  background-image:
    linear-gradient(rgba(169, 186, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 186, 255, 0.16) 1px, transparent 1px);
  background-position: center;
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 74%, transparent 100%);
  transform: perspective(450px) rotateX(54deg) scale(1.5) translateY(35%);
  transform-origin: center bottom;
}

.stage-light {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.72;
  pointer-events: none;
}

.stage-light-left {
  top: 13%;
  left: -19%;
  width: 48%;
  height: 56%;
  background: rgba(38, 90, 255, 0.7);
  transform: rotate(18deg);
}

.stage-light-right {
  right: -14%;
  bottom: 14%;
  width: 43%;
  height: 52%;
  background: rgba(243, 39, 75, 0.42);
  transform: rotate(-22deg);
}

.stage-rim {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(163, 180, 255, 0.3);
  pointer-events: none;
}

.stage-rim-back {
  top: 15%;
  left: 14%;
  width: 67%;
  height: 63%;
  border-color: rgba(240, 45, 79, 0.42);
  transform: rotate(-9deg) skewX(-18deg);
}

.stage-rim-front {
  right: 13%;
  bottom: 10%;
  width: 60%;
  height: 48%;
  border-color: rgba(74, 109, 255, 0.68);
  transform: rotate(11deg) skewX(14deg);
}

.stage-corner {
  position: absolute;
  z-index: 4;
  width: 31px;
  height: 31px;
  border-color: rgba(242, 246, 255, 0.86);
  border-style: solid;
}

.stage-corner-tl {
  top: 28px;
  left: 28px;
  border-width: 2px 0 0 2px;
}

.stage-corner-tr {
  top: 28px;
  right: 28px;
  border-width: 2px 2px 0 0;
}

.stage-corner-bl {
  bottom: 28px;
  left: 28px;
  border-width: 0 0 2px 2px;
}

.stage-corner-br {
  right: 28px;
  bottom: 28px;
  border-width: 0 2px 2px 0;
}

.stage-label {
  position: absolute;
  z-index: 5;
  color: rgba(233, 238, 255, 0.78);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stage-label-top {
  top: 33px;
  left: 76px;
}

.stage-label-side {
  top: 44%;
  right: -37px;
  color: rgba(243, 130, 146, 0.9);
  transform: rotate(90deg);
  transform-origin: center;
}

.stage-ticker {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(220, 229, 255, 0.68);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-ticker span + span::before {
  margin-right: 9px;
  color: var(--red-hot);
  content: "·";
}

.stage-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(178, 193, 255, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.stage-orbit-one {
  top: 5%;
  left: -11%;
  width: 92%;
  height: 72%;
  transform: rotate(28deg);
}

.stage-orbit-two {
  top: 20%;
  right: -21%;
  width: 83%;
  height: 68%;
  border-color: rgba(240, 45, 79, 0.45);
  transform: rotate(-35deg);
}

.mascot-shadow {
  position: absolute;
  z-index: 3;
  bottom: 61px;
  left: 26%;
  width: 47%;
  height: 7%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  filter: blur(13px);
  transform: rotate(-2deg);
}

.mascot {
  position: absolute;
  z-index: 4;
  bottom: 45px;
  left: 20%;
  width: min(58%, 360px);
  height: auto;
  filter: drop-shadow(18px 25px 0 rgba(2, 4, 20, 0.4)) drop-shadow(0 0 24px rgba(242, 49, 76, 0.13));
  animation: mascot-float 5s ease-in-out infinite;
}

.crown {
  position: absolute;
  z-index: 6;
  top: 5%;
  left: 54%;
  font-size: clamp(4.4rem, 8vw, 7.8rem);
  line-height: 1;
  filter: drop-shadow(7px 9px 0 rgba(17, 38, 144, 0.7)) drop-shadow(0 0 26px rgba(255, 201, 62, 0.35));
  transform: rotate(10deg);
  animation: crown-bob 4.2s ease-in-out infinite;
}

.stage-sticker {
  position: absolute;
  z-index: 7;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  line-height: 1.02;
  text-align: center;
  transform: rotate(-11deg);
}

.stage-sticker-red {
  top: 20%;
  right: 12%;
  background: var(--red);
  box-shadow: 8px 11px 0 rgba(14, 22, 91, 0.72);
}

.stage-sticker-blue {
  bottom: 20%;
  left: 8%;
  background: var(--blue);
  box-shadow: 8px 11px 0 rgba(240, 45, 79, 0.7);
  transform: rotate(12deg);
}

.stage-status {
  position: absolute;
  z-index: 7;
  bottom: 29px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(242, 246, 255, 0.77);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.status-light {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5dffb4;
  box-shadow: 0 0 0 4px rgba(93, 255, 180, 0.12), 0 0 14px rgba(93, 255, 180, 0.65);
}

.video-stage figcaption {
  margin: 18px 6px 0;
  color: var(--muted-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.signal-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(187, 200, 255, 0.15);
  border-bottom: 1px solid rgba(187, 200, 255, 0.15);
  background: linear-gradient(90deg, var(--red), #c91d58 39%, #2b4cf5 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transform: rotate(-1.4deg) scale(1.03);
}

.signal-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  min-width: max-content;
  padding: 15px 28px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(0.84rem, 1.5vw, 1.05rem);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.signal-track i {
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--body);
  font-style: normal;
}

.pass-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 8vw, 128px);
  padding-top: 166px;
  padding-bottom: 148px;
}

.section-intro h2,
.launch-copy h2,
.faq-intro h2 {
  color: var(--ink);
  font-size: clamp(3.5rem, 6.4vw, 6.5rem);
}

.section-intro > p:last-child,
.launch-copy > p:last-of-type {
  max-width: 445px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 25px 25px 27px;
  border: 1px solid rgba(196, 208, 255, 0.18);
  background: rgba(16, 23, 61, 0.72);
  box-shadow: 13px 16px 0 rgba(3, 6, 21, 0.38);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card::before {
  position: absolute;
  right: -31px;
  bottom: -50px;
  width: 145px;
  height: 145px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.2;
  content: "";
}

.feature-card:hover {
  border-color: rgba(200, 213, 255, 0.44);
  transform: translate(-3px, -4px);
}

.feature-card-blue {
  color: var(--blue-bright);
}

.feature-card-red {
  color: var(--red-hot);
}

.feature-card-pink {
  color: var(--pink);
}

.feature-card-violet {
  color: var(--violet);
}

.feature-index {
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.feature-icon {
  margin: 21px 0 13px;
  color: currentColor;
  font-family: var(--display);
  font-size: 2.65rem;
  line-height: 0.8;
}

.feature-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card p {
  max-width: 250px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.feature-line {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 33px;
  height: 2px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor;
}

.launch-section {
  padding-bottom: 150px;
}

.launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(45px, 8vw, 120px);
  padding: clamp(45px, 7vw, 80px);
  border: 1px solid rgba(158, 178, 255, 0.26);
  background:
    linear-gradient(128deg, rgba(56, 79, 239, 0.66), transparent 47%),
    linear-gradient(315deg, rgba(229, 33, 77, 0.55), transparent 53%),
    #111843;
  box-shadow: 24px 26px 0 rgba(3, 5, 22, 0.5);
}

.launch-panel .eyebrow {
  color: #c5d0ff;
}

.launch-copy h2 span {
  color: #fff;
}

.launch-copy > p:last-of-type {
  color: #d3daf8;
}

.launch-copy .button {
  margin-top: 30px;
}

.launch-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-steps li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 21px;
  align-items: start;
  min-height: 130px;
  padding: 0 0 25px;
  border-bottom: 1px solid rgba(229, 237, 255, 0.2);
}

.launch-steps li + li {
  padding-top: 25px;
}

.launch-steps li:last-child {
  min-height: auto;
  padding-bottom: 0;
  border-bottom: 0;
}

.step-number {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  border: 1px solid rgba(244, 247, 255, 0.62);
  border-radius: 50%;
  color: #fff;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.launch-steps h3 {
  margin: 1px 0 6px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.launch-steps p {
  max-width: 340px;
  margin: 0;
  color: #c0c9ec;
  font-size: 0.85rem;
  line-height: 1.55;
}

.creator-section {
  padding-bottom: 150px;
}

.creator-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 8vw, 120px);
  padding: clamp(42px, 6vw, 70px);
  border: 1px solid rgba(244, 228, 205, 0.32);
  background:
    linear-gradient(134deg, rgba(240, 45, 79, 0.82), transparent 48%),
    linear-gradient(315deg, rgba(31, 80, 244, 0.82), transparent 58%),
    #201443;
  box-shadow: 20px 22px 0 rgba(3, 5, 20, 0.45);
}

.creator-copy {
  max-width: 660px;
}

.creator-copy .eyebrow {
  color: #ffe3d8;
}

.creator-copy h2 {
  color: #fff;
  font-size: clamp(3.7rem, 7vw, 7.1rem);
}

.creator-copy h2 span {
  color: #ffd05c;
}

.creator-copy > p:last-child {
  max-width: 510px;
  margin: 25px 0 0;
  color: #f2dddf;
  font-size: 1rem;
  line-height: 1.68;
}

.creator-stamps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  transform: rotate(5deg);
}

.creator-stamps span {
  display: grid;
  place-items: center;
  min-height: 106px;
  border: 1px solid rgba(255, 240, 231, 0.4);
  background: rgba(9, 15, 64, 0.47);
  color: #fff;
  font-family: var(--display);
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.creator-stamps span:nth-child(1),
.creator-stamps span:nth-child(4) {
  color: #ffd05c;
}

.creator-stamps span:nth-child(2),
.creator-stamps span:nth-child(3) {
  color: #b8c7ff;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 128px);
  padding-bottom: 150px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 42px 23px 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.38rem;
  letter-spacing: 0.035em;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  color: var(--red-hot);
  content: "+";
  font-family: var(--body);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--blue-bright);
}

.faq-list details p {
  max-width: 590px;
  margin: -3px 42px 24px 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.final-cta {
  padding-bottom: 128px;
}

.final-cta-frame {
  position: relative;
  isolation: isolate;
  min-height: 465px;
  overflow: hidden;
  padding: clamp(44px, 7vw, 76px);
  border: 1px solid rgba(245, 247, 255, 0.29);
  background:
    linear-gradient(131deg, rgba(23, 52, 195, 0.94), rgba(18, 32, 113, 0.86) 49%, rgba(232, 36, 72, 0.94) 100%);
  box-shadow: 20px 23px 0 rgba(3, 5, 20, 0.53);
}

.final-cta-frame::before,
.final-cta-frame::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  content: "";
  pointer-events: none;
}

.final-cta-frame::before {
  top: 16%;
  right: -10%;
  width: 70%;
  height: 170%;
  transform: rotate(26deg);
}

.final-cta-frame::after {
  right: 8%;
  bottom: -24%;
  width: 55%;
  height: 90%;
  border-radius: 50%;
  transform: rotate(-18deg);
}

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

.final-cta-copy .eyebrow {
  color: #d9e0ff;
}

.final-cta-copy h2 {
  color: #fff;
  font-size: clamp(4.1rem, 8vw, 8rem);
}

.final-cta-copy h2 span {
  color: var(--cream);
  text-shadow: 2px 2px 0 rgba(16, 26, 101, 0.45);
}

.final-cta-copy p:not(.eyebrow) {
  max-width: 510px;
  margin: 25px 0 0;
  color: #f1f3ff;
  font-size: 1rem;
  line-height: 1.65;
}

.button-light {
  margin-top: 31px;
  background: var(--cream);
  color: #111a55;
  box-shadow: 0 9px 26px rgba(6, 10, 57, 0.27);
}

.button-light:hover,
.button-light:focus-visible {
  background: #fff;
  box-shadow: 0 13px 30px rgba(6, 10, 57, 0.35);
  transform: translateY(-2px);
}

.final-crown {
  position: absolute;
  z-index: 1;
  right: 8%;
  bottom: 3%;
  font-size: clamp(7rem, 17vw, 16rem);
  line-height: 1;
  filter: drop-shadow(12px 16px 0 rgba(16, 26, 101, 0.44));
  opacity: 0.93;
  transform: rotate(11deg);
  animation: crown-bob 5.4s ease-in-out infinite reverse;
}

.final-cta-burst {
  position: absolute;
  z-index: 0;
  top: -25%;
  right: 14%;
  width: 56%;
  height: 160%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: rotate(21deg) skewX(-20deg);
}

.site-footer {
  border-top: 1px solid rgba(190, 201, 255, 0.14);
  background: #040611;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(1240px, calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.75rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 17px;
}

.footer-inner nav a {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid #ffd05c;
  outline-offset: 4px;
}

@keyframes mascot-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(1.2deg);
  }
}

@keyframes crown-bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes stage-shine {
  0%,
  28% {
    opacity: 0;
    translate: -160% 0;
  }
  45%,
  62% {
    opacity: 0.6;
  }
  80%,
  100% {
    opacity: 0;
    translate: 420% 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 0.84fr) minmax(390px, 1.16fr);
    gap: 42px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .hero-facts li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-facts li:nth-child(3),
  .hero-facts li:nth-child(4) {
    padding-top: 2px;
  }

  .pass-section,
  .faq-section {
    gap: 54px;
  }
}

@media (max-width: 800px) {
  .header-inner,
  .hero,
  .section-shell,
  .footer-inner {
    width: min(100% - 34px, 620px);
  }

  .header-inner {
    align-items: flex-start;
    min-height: auto;
    padding: 18px 0;
  }

  .site-nav {
    gap: 14px 17px;
  }

  .site-nav > a:not(.header-cta) {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
    min-height: auto;
    padding: 77px 0 95px;
  }

  h1 {
    font-size: clamp(4.2rem, 18vw, 7.5rem);
  }

  .hero-lede {
    max-width: 600px;
  }

  .video-stage {
    width: min(100%, 590px);
    margin: 0 auto;
  }

  .stage-surface {
    min-height: min(112vw, 590px);
  }

  .pass-section,
  .faq-section {
    display: block;
    padding-top: 112px;
    padding-bottom: 110px;
  }

  .section-intro > p:last-child {
    max-width: 600px;
    margin-bottom: 44px;
  }

  .feature-grid {
    gap: 13px;
  }

  .launch-section,
  .creator-section,
  .final-cta {
    padding-bottom: 110px;
  }

  .launch-panel {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 42px 34px 48px;
  }

  .creator-card {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 42px 34px 48px;
  }

  .creator-stamps {
    width: min(100%, 430px);
    margin-left: auto;
  }

  .faq-intro {
    margin-bottom: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    padding: 26px 0;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 520px) {
  .header-cta {
    padding: 11px 13px;
    font-size: 0.875rem;
  }

  .hero {
    padding-top: 61px;
  }

  .eyebrow {
    margin-bottom: 17px;
    letter-spacing: 0.13em;
  }

  h1 {
    font-size: clamp(3.9rem, 20vw, 6.3rem);
  }

  .hero-lede {
    margin-top: 23px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-facts {
    margin-top: 41px;
  }

  .hero-facts li {
    padding-right: 7px;
  }

  .hero-facts strong {
    font-size: 0.83rem;
  }

  .hero-facts span {
    font-size: 0.64rem;
  }

  .video-stage {
    padding: 7px 7px 0;
  }

  .stage-surface {
    min-height: 118vw;
  }

  .stage-surface::before {
    inset: 9px;
  }

  .stage-corner {
    width: 21px;
    height: 21px;
  }

  .stage-corner-tl,
  .stage-corner-tr {
    top: 20px;
  }

  .stage-corner-bl,
  .stage-corner-br {
    bottom: 20px;
  }

  .stage-corner-tl,
  .stage-corner-bl {
    left: 20px;
  }

  .stage-corner-tr,
  .stage-corner-br {
    right: 20px;
  }

  .stage-label-top {
    top: 24px;
    left: 54px;
  }

  .stage-label-side {
    display: none;
  }

  .stage-ticker {
    right: 20px;
    bottom: 21px;
    gap: 5px;
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }

  .stage-ticker span + span::before {
    margin-right: 5px;
  }

  .stage-status {
    bottom: 20px;
    left: 20px;
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

  .mascot {
    bottom: 34px;
    left: 17%;
    width: 66%;
  }

  .mascot-shadow {
    bottom: 45px;
    left: 22%;
    width: 57%;
  }

  .crown {
    top: 7%;
    left: 47%;
    font-size: clamp(3rem, 15vw, 5.6rem);
  }

  .stage-sticker {
    width: 65px;
    height: 65px;
    font-size: 0.61rem;
  }

  .stage-sticker-red {
    right: 8%;
  }

  .stage-sticker-blue {
    left: 6%;
  }

  .signal-track {
    justify-content: flex-start;
    gap: 18px;
    padding: 13px 20px;
    font-size: 0.77rem;
  }

  .pass-section,
  .faq-section {
    padding-top: 93px;
    padding-bottom: 93px;
  }

  .section-intro h2,
  .launch-copy h2,
  .faq-intro h2 {
    font-size: clamp(3.3rem, 16vw, 5.1rem);
  }

  .section-intro > p:last-child,
  .launch-copy > p:last-of-type {
    margin-top: 23px;
    font-size: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 205px;
  }

  .launch-panel {
    gap: 46px;
    padding: 35px 23px 39px;
  }

  .creator-card {
    gap: 37px;
    padding: 35px 23px 39px;
  }

  .creator-copy h2 {
    font-size: clamp(3.5rem, 16vw, 5.3rem);
  }

  .creator-copy > p:last-child {
    font-size: 1rem;
  }

  .creator-stamps {
    gap: 8px;
  }

  .creator-stamps span {
    min-height: 78px;
    font-size: 1rem;
  }

  .launch-steps li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    min-height: 125px;
  }

  .step-number {
    width: 43px;
    height: 43px;
    font-size: 0.86rem;
  }

  .launch-steps h3 {
    font-size: 1.27rem;
  }

  .launch-steps p {
    font-size: 1rem;
  }

  .faq-list summary {
    padding: 20px 34px 20px 0;
    font-size: 1.17rem;
  }

  .faq-list summary::after {
    top: 19px;
    font-size: 1.35rem;
  }

  .faq-list details p {
    margin-right: 20px;
    font-size: 1rem;
  }

  .final-cta-frame {
    min-height: 510px;
    padding: 36px 24px 45px;
  }

  .final-cta-copy h2 {
    font-size: clamp(3.9rem, 17vw, 6rem);
  }

  .final-cta-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .video-stage figcaption {
    font-size: 1rem;
  }

  .footer-inner p,
  .footer-inner nav a {
    font-size: 0.875rem;
  }

  .final-crown {
    right: -2%;
    bottom: 2%;
    font-size: clamp(7rem, 31vw, 11rem);
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}
