:root {
  --ink: #f8f7ff;
  --muted: #a09aaf;
  --panel: rgba(8, 7, 15, .72);
  --panel-line: rgba(255, 255, 255, .075);
  --blue: #1687ff;
  --violet: #7338d3;
  --pink: #f51784;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #08060b;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 34px 18px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -8%, rgba(242, 23, 132, .2), transparent 33%),
    radial-gradient(circle at 7% 66%, rgba(22, 135, 255, .12), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(115, 56, 211, .13), transparent 30%),
    linear-gradient(180deg, #160812 0%, #09070d 47%, #07070b 100%);
}

.lander {
  width: min(100%, 520px);
  margin: 0 auto;
  animation: lander-in .62s cubic-bezier(.2, .9, .28, 1.12) both;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 17px;
  padding: 7px 17px;
  border: 1px solid rgba(245, 23, 132, .22);
  border-radius: 999px;
  background: rgba(39, 9, 29, .6);
  box-shadow: inset 0 0 16px rgba(245, 23, 132, .07);
  color: #eb6eb2;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .18em;
}
.eyebrow span { margin-right: 7px; color: var(--pink); }

.hero-card {
  position: relative;
  width: 100%;
  min-height: 214px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 37, 147, .74), transparent 42%),
    radial-gradient(circle at 15% 85%, rgba(0, 116, 255, .7), transparent 49%),
    linear-gradient(135deg, #0b54bd 0%, #56349d 52%, #ba136d 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .42),
    0 0 34px rgba(244, 23, 132, .2),
    inset 0 1px 0 rgba(255, 255, 255, .13);
  transition: transform .18s ease, border-color .18s ease, filter .18s ease, box-shadow .18s ease;
}
.hero-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .24);
  filter: brightness(1.03);
  box-shadow:
    0 27px 64px rgba(0, 0, 0, .44),
    0 0 38px rgba(244, 23, 132, .24),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}
.hero-card:active { transform: translateY(0) scale(.995); }
.hero-card:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent, #000 50%, transparent);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(255, 255, 255, .1), transparent 24%, transparent 72%, rgba(255, 255, 255, .05));
}
.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(9px);
  opacity: .7;
}
.hero-orb-one { width: 105px; height: 105px; right: -28px; top: -25px; background: #ff258f; }
.hero-orb-two { width: 115px; height: 115px; left: -38px; bottom: -42px; background: #007bff; }

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  border-radius: 14px;
  background: #fff;
  color: #08080b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.09em;
}
.brand-label {
  margin: 0 0 1px;
  color: rgba(255, 255, 255, .84);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.hero-card h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 11vw, 68px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.065em;
  text-shadow: 0 5px 24px rgba(0, 0, 0, .18);
}
.hero-note {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

.how-panel {
  margin-top: 20px;
  padding: 21px 23px 11px;
  border: 1px solid var(--panel-line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(12, 8, 17, .88), rgba(7, 6, 12, .82));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
}
.how-panel h2 {
  margin: 0 0 9px;
  color: #827a8d;
  text-align: center;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .18em;
}
.step-list { margin: 0; padding: 0; list-style: none; }
.step-list li {
  display: grid;
  grid-template-columns: 33px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 67px;
  padding: 11px 0;
}
.step-list li + li { border-top: 1px solid rgba(255, 255, 255, .055); }
.step-number {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff47a5, #b61680);
  box-shadow: 0 0 17px rgba(245, 23, 132, .34);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.step-copy h3 { margin: 0 0 4px; color: #fff; font-size: 13px; line-height: 1.2; }
.step-copy p { margin: 0; color: #8e8795; font-size: 10px; line-height: 1.35; }

.primary-button {
  position: relative;
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 19px;
  padding: 0 25px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--violet) 51%, var(--pink) 100%);
  box-shadow: 0 0 34px rgba(245, 23, 132, .32), 0 12px 28px rgba(0, 0, 0, .34);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.primary-button span { grid-column: 2; }
.primary-button b { grid-column: 3; justify-self: end; font-size: 21px; line-height: 1; font-weight: 500; }
.primary-button:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 0 43px rgba(245, 23, 132, .42), 0 15px 32px rgba(0, 0, 0, .38); }
.primary-button:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.primary-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 36px;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}
.primary-button.is-clicked { animation: button-press .26s ease-out; }
.primary-button.is-clicked::after { animation: button-ripple .42s ease-out; }

.availability { margin: 12px 0 0; color: #8d8593; text-align: center; font-size: 9.5px; }
.availability strong {
  color: #d66ab5;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 9px;
  letter-spacing: .04em;
}

.warning-island {
  position: relative;
  width: calc(100% - 28px);
  min-height: 116px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 13px;
  margin: 29px auto 0;
  padding: 27px 19px 18px;
  border: 1px solid rgba(239, 57, 64, .9);
  border-radius: 16px;
  background: rgba(11, 13, 15, .5);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}
.warning-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  padding: 6px 15px;
  border-radius: 6px;
  background: #ed474b;
  color: #fff;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .1em;
  transform: none;
}
.warning-icon {
  width: 22px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-top: -4px;
  color: #ff4653;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 2px 0 #6f1119, 0 0 10px rgba(255, 70, 83, .28);
  transform: rotate(-4deg);
}
.warning-title { display: block; color: #f2f0f3; font-size: 12px; line-height: 1.2; }
.warning-island p { margin: 6px 0 0; color: #7d7b80; font-size: 10px; line-height: 1.5; }
@keyframes lander-in {
  from { opacity: 0; transform: translateY(18px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes button-press {
  40% { transform: translateY(1px) scale(.97); }
  100% { transform: translateY(-1px) scale(1); }
}
@keyframes button-ripple {
  0% { opacity: .72; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(18); }
}

@media (max-width: 560px) {
  .page-shell { align-items: start; padding: 22px 13px 32px; }
  .eyebrow { margin-bottom: 14px; }
  .hero-card { min-height: 202px; border-radius: 24px; }
  .how-panel { padding-left: 19px; padding-right: 19px; }
}

@media (max-width: 380px) {
  .page-shell { padding-left: 10px; padding-right: 10px; }
  .hero-card { min-height: 190px; padding: 20px 14px; }
  .brand-mark { width: 46px; height: 46px; font-size: 28px; }
  .how-panel { padding-left: 16px; padding-right: 16px; }
  .step-list li { gap: 10px; }
  .primary-button { min-height: 57px; }
  .warning-island { width: calc(100% - 16px); padding: 27px 16px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lander, .primary-button, .primary-button::after { animation: none !important; }
  .hero-card, .primary-button { transition: none; }
}
