:root {
  color-scheme: dark;
}

.skip_link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 120;
  transform: translateY(-200%);
  border-radius: .75rem;
  background: #fff;
  color: #08070b;
  padding: .75rem 1rem;
  font-weight: 700;
  transition: transform .2s ease;
}

.skip_link:focus {
  transform: translateY(0);
}

.page_glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 18%, rgba(201, 8, 18, .2), transparent 30rem),
    radial-gradient(circle at 15% 72%, rgba(153, 27, 80, .13), transparent 34rem);
}

.site_header {
  isolation: isolate;
}

.nav_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .7rem 1rem;
  color: rgba(255, 255, 255, .68);
  font-size: .875rem;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease;
}

.nav_link:hover,
.nav_link_active {
  background: rgba(201, 8, 18, .12);
  color: #fff;
}

.nav_link:focus-visible,
.mobile_menu_button:focus-visible {
  outline: 2px solid #ff8b9b;
  outline-offset: 3px;
}

.mobile_nav {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  background: rgba(21, 16, 23, .96);
  padding: .5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.mobile_nav:not(.hidden) {
  display: grid;
}

.mobile_nav .nav_link {
  justify-content: flex-start;
  border-radius: .75rem;
}

.page_hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.eyebrow {
  color: #ff8b9b;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.filter_panel,
.content_panel {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .035);
}

.form_control {
  min-height: 3rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .8rem;
  background: rgba(0, 0, 0, .28);
  padding: .7rem .9rem;
  color: #fff;
  outline: none;
}

.form_control:focus {
  border-color: #ff3347;
  box-shadow: 0 0 0 4px rgba(201, 8, 18, .18);
}

.form_control option {
  background: #151017;
}

.profile_card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.25rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
  transition: transform .25s ease, border-color .25s ease;
}

.profile_card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 51, 71, .38);
}

.profile_art {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 139, 155, .42), transparent 22%),
    linear-gradient(145deg, #3a0d1c, #110b13 70%);
}

.profile_art::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 18%;
  width: 5.75rem;
  height: 5.75rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.profile_art::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 15rem;
  height: 15rem;
  transform: translateX(-50%);
  border-radius: 45% 45% 20% 20%;
  background: rgba(255, 255, 255, .13);
}

.profile_art_alt {
  background:
    radial-gradient(circle at 50% 35%, rgba(198, 132, 255, .38), transparent 22%),
    linear-gradient(145deg, #25103c, #0d0a13 70%);
}

.profile_art_gold {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 189, 89, .38), transparent 22%),
    linear-gradient(145deg, #39250d, #110d0a 70%);
}

.profile_art_blue {
  background:
    radial-gradient(circle at 50% 35%, rgba(85, 180, 255, .35), transparent 22%),
    linear-gradient(145deg, #0d263a, #090d12 70%);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  padding: .35rem .7rem;
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  font-weight: 700;
}

.tag_accent {
  border-color: rgba(255, 51, 71, .28);
  background: rgba(201, 8, 18, .13);
  color: #ffacb8;
}

.tab_button {
  border-radius: 999px;
  padding: .7rem 1rem;
  color: rgba(255, 255, 255, .62);
  font-size: .875rem;
  font-weight: 700;
}

.tab_button[aria-selected="true"] {
  background: #c90812;
  color: #fff;
}

.prototype_notice {
  border-left: 3px solid #ff3347;
  background: rgba(201, 8, 18, .09);
  padding: 1rem;
  color: #d8cfd7;
  font-size: .875rem;
  line-height: 1.6;
}

.text_gradient {
  background: linear-gradient(100deg, #ff9baa 0%, #ff3347 45%, #c90812 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.button_primary,
.button_secondary {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .8rem 1.4rem;
  font-size: .95rem;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.button_primary {
  background: linear-gradient(135deg, #ff3347, #a9000a);
  color: #fff;
  box-shadow: 0 12px 35px rgba(201, 8, 18, .3);
}

.button_secondary {
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.button_primary:hover,
.button_secondary:hover {
  transform: translateY(-2px);
}

.button_primary:hover {
  box-shadow: 0 16px 42px rgba(201, 8, 18, .42);
}

.button_secondary:hover {
  border-color: rgba(255, 51, 71, .58);
  background: rgba(201, 8, 18, .1);
}

.button_primary:focus-visible,
.button_secondary:focus-visible {
  outline: 2px solid #ff8b9b;
  outline-offset: 4px;
}

.brand_stage {
  position: relative;
  width: min(88vw, 30rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.brand_stage::before {
  content: '';
  position: absolute;
  inset: 9%;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 30px 80px rgba(0, 0, 0, .42);
  transform: rotate(-3deg);
}

.brand_image {
  position: relative;
  z-index: 3;
  width: 84%;
  height: auto;
  border-radius: 22%;
  object-fit: contain;
  filter: drop-shadow(0 28px 25px rgba(0, 0, 0, .5));
  animation: brand_float 5s ease-in-out infinite;
}

.brand_glow {
  position: absolute;
  inset: 24%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(201, 8, 18, .42);
  filter: blur(52px);
  animation: glow_breathe 4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.orbit_one {
  inset: 4%;
  animation: orbit_spin 22s linear infinite;
}

.orbit_two {
  inset: 14%;
  border-style: dashed;
  border-color: rgba(255, 51, 71, .24);
  animation: orbit_spin_reverse 16s linear infinite;
}

.status_chip {
  position: absolute;
  right: 1%;
  bottom: 7%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(8, 7, 11, .84);
  padding: .65rem .85rem;
  color: rgba(255, 255, 255, .78);
  font-size: .7rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.status_pulse {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: #ff3347;
  box-shadow: 0 0 0 0 rgba(255, 51, 71, .75);
  animation: pulse_ring 2s ease-out infinite;
}

.feature_card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 1.25rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  padding: 1.5rem;
  transition: transform .25s ease, border-color .25s ease;
}

.feature_card::after {
  content: '';
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: rgba(201, 8, 18, .18);
  filter: blur(30px);
  transition: transform .3s ease;
}

.feature_card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 51, 71, .35);
}

.feature_card:hover::after {
  transform: translate(-1rem, -1rem) scale(1.15);
}

.feature_number {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: .8rem;
  background: rgba(201, 8, 18, .16);
  color: #ff8b9b;
  font-size: .75rem;
  font-weight: 800;
}

.signup_panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.5rem;
  background:
    linear-gradient(120deg, rgba(201, 8, 18, .12), transparent 42%),
    rgba(255, 255, 255, .035);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.age_gate {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 50% 25%, rgba(201, 8, 18, .24), transparent 28rem),
    rgba(8, 7, 11, .98);
}

.age_gate[hidden] {
  display: none;
}

.age_gate__panel {
  width: min(100%, 34rem);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .55);
}

.age_gate__logo {
  width: min(62vw, 12rem);
  margin: 0 auto 1rem;
  border-radius: 1rem;
}

.reveal_up {
  animation: reveal_up .7s cubic-bezier(.2, .75, .25, 1) both;
}

.reveal_up:nth-child(2) { animation-delay: .08s; }
.reveal_up:nth-child(3) { animation-delay: .16s; }
.reveal_up:nth-child(4) { animation-delay: .24s; }
.reveal_up:nth-child(5) { animation-delay: .32s; }

@keyframes brand_float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes glow_breathe {
  0%, 100% { opacity: .45; transform: scale(.92); }
  50% { opacity: .9; transform: scale(1.08); }
}

@keyframes orbit_spin {
  to { transform: rotate(360deg); }
}

@keyframes orbit_spin_reverse {
  to { transform: rotate(-360deg); }
}

@keyframes pulse_ring {
  70% { box-shadow: 0 0 0 .5rem rgba(255, 51, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 51, 71, 0); }
}

@keyframes reveal_up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 640px) {
  .status_chip {
    right: 4%;
    bottom: 9%;
    padding: .75rem 1rem;
    font-size: .78rem;
  }

  .feature_card,
  .age_gate__panel {
    padding: 2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
