/* ============================================================
   Legends of Ascension — static HTML/CSS
   ============================================================ */

:root {
  color-scheme: dark;

  --background: oklch(0.16 0.025 255);
  --foreground: oklch(0.93 0.02 85);

  --card: oklch(0.19 0.03 258);
  --card-foreground: oklch(0.93 0.02 85);
  --popover: oklch(0.17 0.03 258);

  --primary: oklch(0.78 0.13 82);
  --primary-foreground: oklch(0.18 0.03 258);

  --secondary: oklch(0.24 0.03 258);
  --muted: oklch(0.24 0.03 258);
  --muted-foreground: oklch(0.74 0.03 85);

  --accent: oklch(0.55 0.12 245);

  --border: oklch(0.45 0.07 85 / 35%);
  --ring: oklch(0.78 0.13 82);

  --radius: 0.5rem;

  /* Fantasy palette */
  --gold: oklch(0.78 0.13 82);
  --gold-bright: oklch(0.88 0.13 88);
  --gold-deep: oklch(0.62 0.11 75);
  --jewel: oklch(0.55 0.14 245);
  --jewel-bright: oklch(0.72 0.15 240);
  --cream: oklch(0.94 0.025 85);
  --panel: oklch(0.18 0.03 258);
  --panel-light: oklch(0.23 0.035 258);

  --font-serif: 'Cinzel', 'Georgia', serif;
  --font-sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw: 80rem; /* max-w-7xl */
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
}

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

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

ul {
  list-style: none;
}

/* ---------- Reusable helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

.text-gold-gradient {
  background: linear-gradient(
    180deg,
    oklch(0.95 0.1 92) 0%,
    oklch(0.82 0.14 85) 45%,
    oklch(0.62 0.12 72) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.drop-shadow-gold {
  filter: drop-shadow(0 2px 6px oklch(0.12 0.02 255 / 0.9));
}

.panel-fantasy {
  background: linear-gradient(
    180deg,
    oklch(0.21 0.03 258) 0%,
    oklch(0.16 0.025 255) 100%
  );
  border: 1px solid oklch(0.55 0.09 85 / 0.45);
  box-shadow:
    inset 0 1px 0 oklch(0.8 0.12 85 / 0.12),
    inset 0 0 24px oklch(0 0 0 / 0.45),
    0 8px 24px oklch(0 0 0 / 0.4);
}

.panel-glow {
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.panel-glow:hover {
  border-color: oklch(0.82 0.13 85 / 0.85);
  box-shadow:
    inset 0 1px 0 oklch(0.85 0.12 85 / 0.18),
    0 0 0 1px oklch(0.8 0.12 85 / 0.3),
    0 0 28px oklch(0.7 0.12 82 / 0.35),
    0 10px 30px oklch(0 0 0 / 0.5);
}

/* Ornate divider */
.ornate-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.ornate-divider .line {
  height: 1px;
  width: 4rem;
}
.ornate-divider .line.left {
  background: linear-gradient(90deg, transparent, oklch(0.78 0.13 82 / 0.6));
}
.ornate-divider .line.right {
  background: linear-gradient(270deg, transparent, oklch(0.78 0.13 82 / 0.6));
}

.jewel {
  display: inline-block;
  transform: rotate(45deg);
  background: var(--jewel-bright);
  box-shadow: 0 0 8px oklch(0.7 0.15 240 / 0.8);
}
.jewel.sm {
  height: 0.375rem;
  width: 0.375rem;
}
.jewel.md {
  height: 0.5rem;
  width: 0.5rem;
}

/* Section title */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.section-title .rule {
  display: none;
  height: 1px;
  flex: 1;
  max-width: 8rem;
}
.section-title .rule.left {
  background: linear-gradient(90deg, transparent, oklch(0.78 0.13 82 / 0.7));
}
.section-title .rule.right {
  background: linear-gradient(270deg, transparent, oklch(0.78 0.13 82 / 0.7));
}
.section-title h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.5rem;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .section-title .rule {
    display: block;
  }
  .section-title h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 768px) {
  .section-title h2 {
    font-size: 2.25rem;
  }
}

/* Lucide-style icons */
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.3);
  background: oklch(0.16 0.025 255 / 0.9);
  backdrop-filter: blur(12px);
}
.navbar nav {
  display: flex;
  height: 4rem;
  max-width: var(--maxw);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .navbar nav {
    padding-inline: 1.5rem;
  }
}

.logo {
  display: inline-flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.logo .nav-logo-img {
  display: block;
  height: min(3.55rem, calc(4rem - 0.35rem));
  width: auto;
  max-width: 4.25rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px oklch(0.7 0.12 82 / 0.35));
}
@media (min-width: 640px) {
  .logo .nav-logo-img {
    height: min(3.7rem, calc(4rem - 0.25rem));
    max-width: 4.45rem;
  }
}


.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  position: relative;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(0.94 0.025 85 / 0.9);
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-socials {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .nav-socials {
    display: flex;
  }
}

/* Social icons */
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid oklch(0.78 0.13 82 / 0.6);
  background: oklch(0.16 0.025 255 / 0.6);
  color: var(--gold);
  transition: all 0.2s ease;
}
.social:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: 0 0 18px oklch(0.7 0.12 82 / 0.55);
}
.social.md {
  height: 2.25rem;
  width: 2.25rem;
}
.social.lg {
  height: 3rem;
  width: 3rem;
}
.social.md svg {
  height: 1rem;
  width: 1rem;
}
.social.lg svg {
  height: 1.25rem;
  width: 1.25rem;
}
.social svg {
  fill: currentColor;
}

/* Mobile menu toggle (checkbox hack) */
.menu-toggle {
  display: none;
}
.menu-btn {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid oklch(0.78 0.13 82 / 0.5);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}
.menu-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.menu-btn .icon-close {
  display: none;
}
.menu-toggle:checked ~ nav .menu-btn .icon-open {
  display: none;
}
.menu-toggle:checked ~ nav .menu-btn .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  border-top: 1px solid oklch(0.78 0.13 82 / 0.2);
  background: oklch(0.16 0.025 255 / 0.95);
}
.menu-toggle:checked ~ .mobile-menu {
  display: block;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0.5rem 1rem;
}
@media (min-width: 640px) {
  .mobile-menu ul {
    padding-inline: 1.5rem;
  }
}
.mobile-menu a {
  display: block;
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.1);
  padding-block: 0.75rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(0.94 0.025 85 / 0.9);
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-menu .mobile-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.75rem;
}
@media (min-width: 640px) {
  .mobile-menu .mobile-socials {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 88vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .vignette {
  position: absolute;
  inset: 0;
  z-index: -10;
  background: radial-gradient(
    ellipse at center,
    oklch(0.1 0.02 255 / 0.35) 0%,
    oklch(0.1 0.02 255 / 0.75) 70%,
    oklch(0.1 0.02 255 / 0.95) 100%
  );
}
.hero .bottom-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: -10;
  height: 10rem;
  background: linear-gradient(to top, var(--background), transparent);
}
.hero .hero-content {
  max-width: 56rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 1rem;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.04em;
}
.hero h1 .of {
  display: block;
  margin-block: 0.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.4em;
}
@media (min-width: 640px) {
  .hero h1 {
    font-size: 4.5rem;
  }
  .hero h1 .of {
    font-size: 1.875rem;
  }
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 6rem;
  }
  .hero h1 .of {
    font-size: 2.25rem;
  }
}
.hero .tagline {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1.625;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .hero .tagline {
    font-size: 1rem;
  }
}
.mt-6 {
  margin-top: 1.5rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}

/* ============================================================
   SIGNUP / CTA BUTTON
   ============================================================ */
.signup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.signup-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cream);
  transition: transform 0.2s ease;
  clip-path: polygon(4% 0, 96% 0, 100% 50%, 96% 100%, 4% 100%, 0 50%);
}
.signup-btn:hover {
  transform: scale(1.03);
}
.signup-btn:active {
  transform: scale(1);
}
.signup-btn.lg {
  font-size: 1.125rem;
}
@media (min-width: 640px) {
  .signup-btn.lg {
    font-size: 1.25rem;
  }
}
.signup-btn .frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.9 0.13 88) 0%,
    oklch(0.7 0.12 78) 50%,
    oklch(0.55 0.1 72) 100%
  );
  clip-path: polygon(4% 0, 96% 0, 100% 50%, 96% 100%, 4% 100%, 0 50%);
}
.signup-btn .center {
  position: absolute;
  inset: 2px;
  background: linear-gradient(
    180deg,
    oklch(0.5 0.13 245) 0%,
    oklch(0.32 0.1 250) 100%
  );
  clip-path: polygon(4% 0, 96% 0, 100% 50%, 96% 100%, 4% 100%, 0 50%);
  box-shadow:
    inset 0 1px 0 oklch(0.8 0.1 240 / 0.6),
    inset 0 -6px 14px oklch(0 0 0 / 0.5);
  transition: filter 0.2s ease;
}
.signup-btn:hover .center {
  filter: brightness(1.25);
}
.signup-btn .glow {
  position: absolute;
  inset: -0.5rem;
  opacity: 0;
  filter: blur(20px);
  background: oklch(0.7 0.12 82 / 0.5);
  transition: opacity 0.2s ease;
}
.signup-btn:hover .glow {
  opacity: 0.7;
}
.signup-btn .label {
  position: relative;
  z-index: 10;
  padding: 0.875rem 3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.signup-note {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
}

/* ============================================================
   SELLING POINTS
   ============================================================ */
.selling-points {
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.2);
  background: var(--background);
}
.selling-grid {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.5rem;
  row-gap: 2rem;
  padding: 3rem 1rem;
}
@media (min-width: 640px) {
  .selling-grid {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 768px) {
  .selling-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .selling-grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 0;
  }
}
.selling-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 0.75rem;
}
@media (min-width: 1024px) {
  .selling-item {
    padding-inline: 1.25rem;
  }
  .selling-item + .selling-item {
    border-left: 1px solid oklch(0.78 0.13 82 / 0.2);
  }
}
.selling-item .icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px oklch(0.7 0.12 82 / 0.45));
}
.selling-item h3 {
  margin-bottom: 0.375rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.selling-item p {
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

/* ============================================================
   FEATURES WALL
   ============================================================ */
.features {
  background: var(--background);
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .features {
    padding-block: 5rem;
  }
}
.features .intro {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1.625;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.features-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
}
.feature-card .card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.4);
}
.feature-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-card:hover .card-image img {
  transform: scale(1.05);
}
.feature-card .card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.16 0.025 255 / 0.8),
    oklch(0.16 0.025 255 / 0.1) 50%,
    transparent
  );
}
.feature-card .card-image .badge-pos {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}
.feature-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}
.feature-card .card-body h3 {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.feature-card .card-body p {
  margin-top: 0.5rem;
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
.feature-card .learn-more {
  margin: 0.75rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  transition: color 0.2s ease;
}
.feature-card .learn-more:hover {
  color: var(--gold-bright);
}
.feature-card .learn-more .icon {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s ease;
}
.feature-card:hover .learn-more .icon {
  transform: translateX(2px);
}

/* Icon badge */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid oklch(0.78 0.13 82 / 0.6);
  background: oklch(0.16 0.025 255 / 0.8);
  color: var(--gold);
  box-shadow: inset 0 1px 0 oklch(0.8 0.12 85 / 0.2);
  backdrop-filter: blur(4px);
}
.icon-badge.md {
  height: 2.5rem;
  width: 2.5rem;
}
.icon-badge.lg {
  height: 3rem;
  width: 3rem;
}
.icon-badge.md .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.icon-badge.lg .icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* ============================================================
   EXPLORE WORLD (detail sections)
   ============================================================ */
.explore {
  scroll-margin-top: 5rem;
  border-top: 1px solid oklch(0.78 0.13 82 / 0.2);
  background: var(--background);
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .explore {
    padding-block: 5rem;
  }
}
.featured-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.rest-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .rest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.detail {
  scroll-margin-top: 6rem;
  overflow: hidden;
  border-radius: var(--radius);
}

/* Featured variant: 3 columns on lg */
.detail.featured .detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}
@media (min-width: 1024px) {
  .detail.featured .detail-grid {
    grid-template-columns: 1.1fr 1fr 0.9fr;
  }
}
.detail .detail-image {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .detail.featured .detail-image {
    min-height: 300px;
  }
}
.detail .detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail.featured .detail-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, oklch(0.16 0.025 255 / 0.7));
}
.detail .detail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}
.detail.featured .detail-text {
  border-block: 1px solid oklch(0.78 0.13 82 / 0.2);
}
@media (min-width: 1024px) {
  .detail.featured .detail-text {
    border-block: 0;
    border-inline: 1px solid oklch(0.78 0.13 82 / 0.2);
  }
}
.detail .detail-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.detail .detail-head h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
@media (min-width: 640px) {
  .detail.featured .detail-head h3 {
    font-size: 1.5rem;
  }
}
.detail .detail-desc {
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.bullet-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1.5rem;
  row-gap: 0.625rem;
}
@media (min-width: 640px) {
  .bullet-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.bullet-list .diamond {
  margin-top: 0.375rem;
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  flex-shrink: 0;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 6px oklch(0.7 0.12 82 / 0.6);
}
.bullet-list span {
  font-size: 0.875rem;
  line-height: 1.375;
  color: oklch(0.94 0.025 85 / 0.9);
}

/* Preview panel */
.detail .detail-preview {
  display: flex;
  align-items: center;
  padding: 1.5rem;
}
.preview-panel {
  width: 100%;
  border-radius: calc(var(--radius) * 0.8);
  border: 1px solid oklch(0.78 0.13 82 / 0.3);
  background: oklch(0.16 0.025 255 / 0.6);
  padding: 0.75rem;
  box-shadow: inset 0 0 20px oklch(0 0 0 / 0.5);
}
.preview-panel .preview-head {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.2);
  padding-bottom: 0.5rem;
}
.preview-panel .preview-head .title {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.preview-panel .preview-head .live {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}
.preview-panel .rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.preview-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.25rem;
  border: 1px solid oklch(0.78 0.13 82 / 0.15);
  background: oklch(0.23 0.035 258 / 0.5);
  padding: 0.5rem 0.625rem;
}
.preview-row .num {
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border: 1px solid oklch(0.78 0.13 82 / 0.3);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
}
.preview-row .row-label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.7rem;
  color: oklch(0.94 0.025 85 / 0.85);
}
.preview-row .dot {
  height: 0.375rem;
  width: 0.375rem;
  transform: rotate(45deg);
  background: var(--jewel-bright);
}

/* Compact variant */
.detail.compact .detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 768px) {
  .detail.compact .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail.compact.reverse .detail-image {
    order: 2;
  }
}
.detail.compact .detail-image {
  min-height: 200px;
}
.detail.compact .detail-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.16 0.025 255 / 0.6), transparent);
}

/* ============================================================
   CTA FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid oklch(0.78 0.13 82 / 0.3);
  background: linear-gradient(to bottom, var(--background), oklch(0.13 0.02 255));
}
.footer .footer-top {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 4rem 1rem;
}
@media (min-width: 640px) {
  .footer .footer-top {
    padding-inline: 1.5rem;
  }
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer .ascension {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .ascension {
    align-items: flex-start;
    text-align: left;
  }
}
.footer .ascension h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 640px) {
  .footer .ascension h2 {
    font-size: 2.25rem;
  }
}
.footer .ascension p {
  margin-top: 0.75rem;
  max-width: 28rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.footer .community {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer .community {
    align-items: flex-end;
  }
}
.footer .community h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.footer .community .socials {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.social-labeled {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.social-labeled span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.footer .legal {
  border-top: 1px solid oklch(0.78 0.13 82 / 0.2);
}
.footer .legal .legal-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer .legal .legal-inner {
    flex-direction: row;
    padding-inline: 1.5rem;
    text-align: left;
  }
}
.footer .legal p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.footer .legal nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
}
.footer .legal nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.footer .legal nav a:hover {
  color: var(--gold);
}

/* Utility margins used inline */
.mt-3 {
  margin-top: 0.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}

/* ============================================================
   MEDIA / YOUTUBE
   ============================================================ */
.media-section {
  scroll-margin-top: 5rem;
  border-top: 1px solid oklch(0.78 0.13 82 / 0.2);
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.2);
  background:
    radial-gradient(circle at 20% 10%, oklch(0.42 0.12 245 / 0.18), transparent 34rem),
    radial-gradient(circle at 80% 20%, oklch(0.65 0.12 82 / 0.1), transparent 28rem),
    var(--background);
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .media-section {
    padding-block: 5rem;
  }
}
.media-section .intro {
  max-width: 46rem;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1.625;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.media-feature {
  position: relative;
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 1rem;
}
.media-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, oklch(0.55 0.14 245 / 0.18), transparent 32%),
    linear-gradient(315deg, oklch(0.78 0.13 82 / 0.12), transparent 40%);
}
@media (min-width: 1024px) {
  .media-feature {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
    align-items: center;
    padding: 1.25rem;
  }
}
.media-feature-copy,
.media-embed-shell {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--jewel-bright);
}
.media-feature-copy h3,
.media-latest-head h3 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
@media (min-width: 640px) {
  .media-feature-copy h3,
  .media-latest-head h3 {
    font-size: 1.5rem;
  }
}
.media-feature-copy p {
  margin-top: 0.875rem;
  color: var(--muted-foreground);
  font-size: 0.925rem;
  line-height: 1.7;
}
.media-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
}
.signup-btn.sm {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}
.signup-btn.sm .label {
  padding: 0.625rem 1.35rem;
}
.media-link {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  transition: color 0.2s ease;
}
.media-link:hover {
  color: var(--gold-bright);
}
.media-embed-shell {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid oklch(0.78 0.13 82 / 0.5);
  background: oklch(0.09 0.02 255);
  box-shadow:
    inset 0 1px 0 oklch(0.8 0.12 85 / 0.12),
    0 0 24px oklch(0.55 0.14 245 / 0.18),
    0 12px 32px oklch(0 0 0 / 0.5);
}
.youtube-playlist {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.media-latest-head {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .media-latest-head {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
}
.media-latest-head p {
  max-width: 28rem;
  color: var(--muted-foreground);
  font-size: 0.825rem;
  line-height: 1.6;
}
.youtube-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .youtube-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.video-card {
  overflow: hidden;
  border-radius: var(--radius);
}
.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.32);
  background: oklch(0.1 0.02 255);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.video-card:hover .video-thumb img {
  transform: scale(1.05);
  filter: brightness(1.08);
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.12 0.02 255 / 0.75), transparent 55%);
}
.play-button {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--cream);
}
.play-button svg {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.875rem;
  border-radius: 999px;
  fill: currentColor;
  background: oklch(0.16 0.025 255 / 0.78);
  border: 1px solid oklch(0.78 0.13 82 / 0.6);
  box-shadow: 0 0 20px oklch(0.7 0.12 82 / 0.32);
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-card:hover .play-button svg {
  transform: scale(1.08);
  background: oklch(0.5 0.13 245 / 0.86);
}
.video-body {
  padding: 1rem;
}
.video-date {
  color: var(--jewel-bright);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.video-body h4 {
  margin-top: 0.45rem;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.45;
  text-wrap: balance;
}
.video-body .learn-more {
  margin-top: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.video-body .learn-more:hover {
  color: var(--gold-bright);
}
.video-body .learn-more .icon {
  width: 0.8rem;
  height: 0.8rem;
}
.loading-card {
  min-height: 14rem;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, transparent, oklch(0.78 0.13 82 / 0.08), transparent),
    linear-gradient(180deg, oklch(0.21 0.03 258), oklch(0.16 0.025 255));
}
.loading-card::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, oklch(0.95 0.02 85 / 0.08), transparent);
  animation: media-shimmer 1.35s infinite;
}
@keyframes media-shimmer {
  to {
    transform: translateX(100%);
  }
}
.media-noscript {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  text-align: center;
  font-size: 0.875rem;
}
.media-noscript a {
  color: var(--gold);
  text-decoration: underline;
}


/* ============================================================
   MONETIZATION
   ============================================================ */
.monetization-section {
  scroll-margin-top: 5rem;
  border-top: 1px solid oklch(0.78 0.13 82 / 0.2);
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.18);
  background:
    radial-gradient(circle at 15% 8%, oklch(0.55 0.14 245 / 0.14), transparent 26rem),
    radial-gradient(circle at 86% 18%, oklch(0.78 0.13 82 / 0.10), transparent 26rem),
    var(--background);
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .monetization-section {
    padding-block: 5rem;
  }
}
.monetization-section .intro {
  max-width: 56rem;
  margin: 1.25rem auto 0;
  text-align: center;
  color: var(--muted-foreground);
  line-height: 1.8;
  font-size: 0.95rem;
  text-wrap: pretty;
}
.monetization-feature {
  margin-top: 3rem;
}
.monetization-feature .detail-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .monetization-feature .detail-grid {
    grid-template-columns: 0.85fr 1.25fr 0.9fr;
  }
}
.monetization-emblem {
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, oklch(0.78 0.13 82 / 0.18), transparent 10rem),
    linear-gradient(180deg, oklch(0.15 0.03 255), oklch(0.1 0.02 255));
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.2);
}
@media (min-width: 1024px) {
  .monetization-emblem {
    border-bottom: 0;
    border-right: 1px solid oklch(0.78 0.13 82 / 0.2);
  }
}
.emblem-ring {
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  border: 1px solid oklch(0.78 0.13 82 / 0.55);
  background:
    radial-gradient(circle at 50% 34%, oklch(0.78 0.13 82 / 0.16), transparent 4rem),
    oklch(0.12 0.024 255 / 0.85);
  box-shadow:
    inset 0 0 32px oklch(0 0 0 / 0.6),
    0 0 30px oklch(0.78 0.13 82 / 0.18);
}
.emblem-value {
  font-family: var(--font-serif);
  color: var(--gold-bright);
  font-size: 3rem;
  line-height: 1;
  text-shadow: 0 0 16px oklch(0.78 0.13 82 / 0.5);
}
.emblem-label {
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}
.monetization-preview .row-label {
  font-size: 0.78rem;
}
.monetization-card-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 900px) {
  .monetization-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.skin-showcase {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  padding: 1.25rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .skin-showcase {
    padding: 1.75rem;
  }
}
.cosmetic-showcase-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
}
@media (min-width: 900px) {
  .cosmetic-showcase-head {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}
.cosmetic-showcase-head h3 {
  margin-top: 0.35rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
}
.cosmetic-showcase-head p,
.skin-family-head p {
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 0.92rem;
}
.skin-family {
  margin-top: 1.25rem;
  border: 1px solid oklch(0.78 0.13 82 / 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, oklch(0.55 0.14 245 / 0.10), transparent 16rem),
    oklch(0.1 0.02 255 / 0.64);
  padding: 1rem;
}
.skin-family-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}
@media (min-width: 760px) {
  .skin-family-head {
    grid-template-columns: 12rem 1fr;
    align-items: end;
  }
}
.skin-family-head h4 {
  color: var(--gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.skin-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(4.5rem, 1fr));
  gap: 0.65rem;
  align-items: start;
}
@media (max-width: 640px) {
  .skin-row {
    grid-template-columns: repeat(3, minmax(4.5rem, 1fr));
  }
}
.skin-sprite {
  margin: 0;
  min-width: 0;
  border-radius: calc(var(--radius) * 0.85);
  border: 1px solid oklch(0.78 0.13 82 / 0.20);
  background:
    linear-gradient(180deg, oklch(0.16 0.025 255 / 0.72), oklch(0.1 0.02 255 / 0.86));
  padding: 0.55rem 0.35rem 0.45rem;
  text-align: center;
}
.skin-sprite.premium {
  border-color: oklch(0.78 0.13 82 / 0.34);
}
.skin-sprite img {
  height: 78px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
  image-rendering: auto;
  filter: drop-shadow(0 8px 12px oklch(0 0 0 / 0.45));
}
@media (min-width: 900px) {
  .skin-sprite img {
    height: 92px;
  }
}
.skin-sprite figcaption {
  margin-top: 0.45rem;
  color: var(--muted-foreground);
  font-size: 0.68rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap-section {
  scroll-margin-top: 5rem;
  border-top: 1px solid oklch(0.78 0.13 82 / 0.2);
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.18);
  background:
    radial-gradient(circle at 18% 16%, oklch(0.42 0.12 245 / 0.18), transparent 30rem),
    radial-gradient(circle at 86% 20%, oklch(0.55 0.12 20 / 0.14), transparent 26rem),
    linear-gradient(180deg, oklch(0.15 0.025 255), var(--background));
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .roadmap-section {
    padding-block: 5rem;
  }
}
.roadmap-section .intro,
.faq-section .intro {
  max-width: 54rem;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.roadmap-banner {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.roadmap-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.55 0.14 245 / 0.18), transparent 55%),
    radial-gradient(circle at 90% 20%, oklch(0.82 0.13 85 / 0.15), transparent 18rem);
  pointer-events: none;
}
.roadmap-banner > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .roadmap-banner {
    grid-template-columns: 1fr auto;
    padding: 2rem;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--jewel-bright);
}
.eyebrow::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 8px oklch(0.7 0.12 82 / 0.6);
}
.roadmap-banner h3,
.faq-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
@media (min-width: 640px) {
  .roadmap-banner h3,
  .faq-cta h3 {
    font-size: 1.75rem;
  }
}
.roadmap-banner p {
  margin-top: 0.75rem;
  max-width: 52rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}
.roadmap-timeline {
  position: relative;
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, oklch(0.78 0.13 82 / 0.45), oklch(0.55 0.14 245 / 0.45), transparent);
}
@media (min-width: 900px) {
  .roadmap-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .roadmap-timeline::before {
    display: none;
  }
}
.roadmap-card {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.75rem;
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
}
.roadmap-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, oklch(0.55 0.14 245 / 0.12), transparent 16rem);
  pointer-events: none;
}
.roadmap-card.active::before {
  background:
    radial-gradient(circle at 100% 0%, oklch(0.82 0.13 85 / 0.17), transparent 18rem),
    radial-gradient(circle at 0% 100%, oklch(0.55 0.14 245 / 0.12), transparent 14rem);
}
.roadmap-card.beta::before {
  background: radial-gradient(circle at 100% 0%, oklch(0.55 0.12 20 / 0.13), transparent 15rem);
}
.roadmap-card.open-beta::before {
  background:
    radial-gradient(circle at 100% 0%, oklch(0.55 0.14 245 / 0.18), transparent 16rem),
    radial-gradient(circle at 0% 0%, oklch(0.82 0.13 85 / 0.14), transparent 14rem);
}
@media (min-width: 640px) {
  .roadmap-card {
    grid-template-columns: 9rem 1fr;
    padding: 1.25rem;
  }
}
.roadmap-date {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: start;
  justify-self: center;
  border-radius: 999px;
  border: 1px solid oklch(0.78 0.13 82 / 0.35);
  background: oklch(0.13 0.02 255 / 0.7);
  padding: 0.75rem 0.35rem;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  box-shadow: inset 0 0 14px oklch(0 0 0 / 0.35);
}
@media (min-width: 640px) {
  .roadmap-date {
    writing-mode: initial;
    transform: none;
    justify-self: start;
    padding: 0.5rem 0.75rem;
  }
}
.roadmap-content {
  position: relative;
  z-index: 1;
}
.roadmap-phase {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--jewel-bright);
}
.roadmap-content h3 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.05rem;
}
.roadmap-content p {
  margin-top: 0.6rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.9rem;
}
.roadmap-content ul {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.4rem;
}
.roadmap-content li {
  position: relative;
  padding-left: 1rem;
  color: oklch(0.94 0.025 85 / 0.9);
  font-size: 0.82rem;
}
.roadmap-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.38rem;
  height: 0.38rem;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 6px oklch(0.7 0.12 82 / 0.55);
}
.roadmap-note {
  max-width: 46rem;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  scroll-margin-top: 5rem;
  border-top: 1px solid oklch(0.78 0.13 82 / 0.2);
  background:
    radial-gradient(circle at 50% 0%, oklch(0.55 0.14 245 / 0.12), transparent 30rem),
    var(--background);
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .faq-section {
    padding-block: 5rem;
  }
}
.faq-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.faq-card {
  border-radius: var(--radius);
  padding: 1.25rem;
}
.faq-card h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1rem;
}
.faq-card p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 0.9rem;
}
.faq-cta {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.25rem;
  border-radius: var(--radius);
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .faq-cta {
    grid-template-columns: 1fr auto;
    padding: 1.75rem;
  }
}


/* ============================================================
   Monetization final transparent sprite / No-P2W fixes
   ============================================================ */
.monetization-emblem {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.no-p2w-symbol {
  width: min(72%, 14rem);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px oklch(0 0 0 / 0.45));
}

.skin-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0.5rem;
}
.skin-sprite {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0.15rem;
}
.skin-sprite.premium {
  border-color: transparent;
}
.skin-sprite img {
  height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: auto;
  background: transparent;
  filter: drop-shadow(0 7px 10px oklch(0 0 0 / 0.45));
}
.skin-sprite figcaption {
  margin-top: 0.35rem;
  font-size: 0.62rem;
}
@media (min-width: 700px) {
  .skin-sprite img {
    height: 82px;
  }
}
@media (min-width: 1100px) {
  .skin-sprite img {
    height: 92px;
  }
}
@media (max-width: 520px) {
  .skin-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.25rem;
  }
  .skin-sprite img {
    height: 52px;
  }
  .skin-sprite figcaption {
    font-size: 0.52rem;
    letter-spacing: 0.04em;
  }
}


/* Final class skin showcase sprite fixes */
.skin-showcase .skin-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: end;
}
.skin-showcase .skin-sprite {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0.25rem 0.15rem !important;
  min-width: 0;
}
.skin-showcase .skin-sprite img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 74px !important;
  max-width: 100%;
  object-fit: contain;
  background: transparent !important;
  image-rendering: auto;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.38));
}
.skin-showcase .skin-sprite figcaption {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  text-align: center;
}
@media (min-width: 860px) {
  .skin-showcase .skin-sprite img {
    height: 84px !important;
  }
}
@media (max-width: 640px) {
  .skin-showcase .skin-row {
    gap: 0.35rem;
  }
  .skin-showcase .skin-sprite img {
    height: 54px !important;
  }
  .skin-showcase .skin-sprite figcaption {
    font-size: 0.58rem;
  }
}


/* ============================================================
   Final user-provided skin lineup section
   ============================================================ */
.p2w-headline {
  white-space: nowrap;
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
}

.monetization-emblem {
  display: grid;
  place-items: center;
  text-align: center;
}

.no-p2w-symbol {
  width: min(54%, 10.5rem) !important;
  max-width: 10.5rem !important;
  height: auto !important;
  margin-inline: auto;
  display: block;
  object-fit: contain;
}

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

.skin-lineup-card {
  border-radius: var(--radius);
  padding: 1rem;
}

.skin-lineup-art {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.skin-lineup-art img {
  display: block;
  width: min(100%, 34rem);
  height: auto;
  margin-inline: auto;
  background: transparent;
  image-rendering: auto;
  filter: drop-shadow(0 5px 10px oklch(0 0 0 / 0.35));
}

.skin-lineup-caption {
  margin-top: 0.75rem;
  border-top: 1px solid oklch(0.78 0.13 82 / 0.2);
  padding-top: 0.75rem;
  text-align: center;
}

.skin-lineup-caption h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.skin-lineup-caption p {
  margin-top: 0.35rem;
  color: var(--muted-foreground);
  font-size: 0.85rem;
  line-height: 1.45;
}

@media (min-width: 900px) {
  .skin-lineup-art img {
    width: min(100%, 38rem);
  }
}


/* ============================================================
   Final monetization lineup card sizing and centering
   ============================================================ */
.p2w-headline {
  white-space: nowrap;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
}

.no-p2w-symbol {
  width: min(40%, 7.875rem) !important;
  max-width: 7.875rem !important;
  height: auto !important;
  margin-inline: auto;
  display: block;
  object-fit: contain;
}

.skin-lineup-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.skin-lineup-card {
  border-radius: var(--radius);
  padding: 1.25rem;
  background: linear-gradient(
    180deg,
    oklch(0.21 0.03 258) 0%,
    oklch(0.16 0.025 255) 100%
  );
  border: 1px solid oklch(0.55 0.09 85 / 0.45);
  box-shadow:
    inset 0 1px 0 oklch(0.8 0.12 85 / 0.12),
    inset 0 0 24px oklch(0 0 0 / 0.45),
    0 8px 24px oklch(0 0 0 / 0.4);
}

.skin-lineup-art {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  overflow: hidden;
  background: transparent !important;
  border: 0 !important;
}

.skin-lineup-art img {
  display: block;
  width: min(75%, 25.5rem) !important;
  max-width: 25.5rem !important;
  height: auto !important;
  margin-inline: auto;
  background: transparent !important;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 5px 10px oklch(0 0 0 / 0.35));
}

.skin-lineup-caption {
  margin-top: 0.85rem;
  border-top: 1px solid oklch(0.78 0.13 82 / 0.22);
  padding-top: 0.85rem;
  text-align: center;
}

.skin-lineup-caption h4 {
  font-family: var(--font-serif);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.skin-lineup-caption p {
  margin-top: 0.35rem;
  color: var(--muted-foreground);
  line-height: 1.55;
  font-size: 0.86rem;
}

/* ============================================================
   Alpha Signup Modal
   ============================================================ */
body.alpha-modal-open {
  overflow: hidden;
}

.alpha-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.alpha-modal.is-open {
  display: flex;
}

.alpha-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, oklch(0.55 0.14 245 / 0.16), transparent 28rem),
    oklch(0 0 0 / 0.78);
  backdrop-filter: blur(6px);
}

.alpha-modal-panel {
  position: relative;
  z-index: 1;
  width: min(46rem, calc(100vw - 1.5rem));
  max-height: min(92vh, 58rem);
  overflow: auto;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.2rem;
  background:
    radial-gradient(circle at 50% -8%, oklch(0.55 0.14 245 / 0.16), transparent 16rem),
    linear-gradient(180deg, oklch(0.18 0.03 258 / 0.98), oklch(0.11 0.02 255 / 0.98));
  border: 1px solid oklch(0.78 0.13 82 / 0.55);
  box-shadow:
    inset 0 1px 0 oklch(0.95 0.03 85 / 0.12),
    inset 0 0 42px oklch(0 0 0 / 0.5),
    0 24px 80px oklch(0 0 0 / 0.76);
}

@media (min-width: 640px) {
  .alpha-modal-panel {
    padding: 1.75rem;
  }
}

.alpha-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid oklch(0.78 0.13 82 / 0.55);
  background: oklch(0.1 0.02 255 / 0.85);
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 18px oklch(0 0 0 / 0.45);
}

.alpha-modal-close:hover {
  color: var(--gold-bright);
  border-color: oklch(0.88 0.13 88 / 0.85);
}

.alpha-modal-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-inline: auto;
  max-width: 28rem;
}

.alpha-modal-ornament .rule {
  height: 1px;
  flex: 1;
}

.alpha-modal-ornament .rule.left {
  background: linear-gradient(90deg, transparent, oklch(0.78 0.13 82 / 0.7));
}

.alpha-modal-ornament .rule.right {
  background: linear-gradient(270deg, transparent, oklch(0.78 0.13 82 / 0.7));
}

.alpha-modal-header {
  margin-top: 1rem;
  text-align: center;
}

.alpha-modal-header h2 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.65rem, 4.5vw, 2.75rem);
  text-shadow: 0 0 22px oklch(0.78 0.13 82 / 0.28);
}

.alpha-modal-header p {
  margin: 0.7rem auto 0;
  max-width: 34rem;
  color: var(--cream);
  line-height: 1.65;
  font-size: 0.98rem;
}

.alpha-signup-form {
  margin-top: 1.35rem;
}

.alpha-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem 1rem;
}

@media (min-width: 700px) {
  .alpha-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.alpha-full {
  grid-column: 1 / -1;
}

.alpha-signup-form label,
.alpha-checks {
  min-width: 0;
}

.alpha-signup-form label > span,
.alpha-checks legend {
  display: block;
  margin-bottom: 0.38rem;
  font-family: var(--font-serif);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
}

.alpha-signup-form strong,
.alpha-required strong {
  color: oklch(0.68 0.18 25);
}

.alpha-signup-form input[type="text"],
.alpha-signup-form input[type="email"],
.alpha-signup-form select,
.alpha-signup-form textarea {
  width: 100%;
  border: 1px solid oklch(0.78 0.13 82 / 0.45);
  border-radius: calc(var(--radius) * 0.8);
  background: oklch(0.08 0.018 255 / 0.92);
  color: var(--foreground);
  padding: 0.82rem 0.85rem;
  font: inherit;
  outline: none;
  box-shadow:
    inset 0 1px 0 oklch(0.95 0.02 85 / 0.06),
    inset 0 0 18px oklch(0 0 0 / 0.45);
}

.alpha-signup-form textarea {
  min-height: 5.4rem;
  resize: vertical;
}

.alpha-signup-form input:focus,
.alpha-signup-form select:focus,
.alpha-signup-form textarea:focus {
  border-color: var(--gold-bright);
  box-shadow:
    0 0 0 1px oklch(0.78 0.13 82 / 0.5),
    0 0 20px oklch(0.55 0.14 245 / 0.25),
    inset 0 0 18px oklch(0 0 0 / 0.45);
}

.alpha-checks {
  border: 1px solid oklch(0.78 0.13 82 / 0.28);
  border-radius: calc(var(--radius) * 0.8);
  padding: 0.9rem;
  background: oklch(0.08 0.018 255 / 0.58);
}

.alpha-check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .alpha-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.alpha-check-grid label,
.alpha-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted-foreground);
  line-height: 1.45;
  font-size: 0.88rem;
}

.alpha-check-grid input,
.alpha-consent input {
  margin-top: 0.2rem;
  accent-color: oklch(0.72 0.15 240);
}

.alpha-required {
  margin-top: 0.85rem;
  color: var(--muted-foreground);
  font-size: 0.82rem;
}

.alpha-consent {
  margin-top: 0.75rem;
}

.alpha-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.alpha-form-status {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.9rem;
}

.alpha-form-status[data-type="success"] {
  color: oklch(0.76 0.14 145);
}

.alpha-form-status[data-type="error"] {
  color: oklch(0.72 0.18 25);
}

.alpha-submit {
  position: relative;
  isolation: isolate;
  width: min(100%, 22rem);
  margin: 1rem auto 0;
  min-height: 3.2rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.alpha-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.alpha-submit .frame,
.alpha-submit .center,
.alpha-submit .glow {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 0.8);
  pointer-events: none;
}

.alpha-submit .frame {
  border: 1px solid oklch(0.78 0.13 82 / 0.7);
  box-shadow:
    inset 0 0 0 1px oklch(0.78 0.13 82 / 0.24),
    0 0 14px oklch(0.78 0.13 82 / 0.22);
}

.alpha-submit .center {
  background: linear-gradient(180deg, oklch(0.24 0.07 255 / 0.9), oklch(0.12 0.04 255 / 0.95));
  z-index: -2;
}

.alpha-submit .glow {
  background: radial-gradient(circle at 50% 50%, oklch(0.55 0.14 245 / 0.24), transparent 70%);
  z-index: -1;
}

.alpha-submit .label {
  position: relative;
  z-index: 1;
}

.alpha-modal-actions {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .alpha-modal-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.alpha-action {
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: var(--radius);
  border: 1px solid oklch(0.78 0.13 82 / 0.45);
  color: var(--foreground);
  text-decoration: none;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 oklch(0.95 0.02 85 / 0.08),
    0 8px 22px oklch(0 0 0 / 0.35);
}

.alpha-action.discord {
  background: linear-gradient(180deg, oklch(0.29 0.11 275 / 0.92), oklch(0.16 0.06 275 / 0.95));
}

.alpha-action.youtube {
  background: linear-gradient(180deg, oklch(0.34 0.14 25 / 0.92), oklch(0.16 0.07 25 / 0.95));
}

.alpha-action:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.alpha-action-icon {
  color: var(--gold-bright);
}


/* ============================================================
   ALPHA BENEFITS
   ============================================================ */
.alpha-benefits-section {
  scroll-margin-top: 5rem;
  background: var(--background);
  border-top: 1px solid oklch(0.78 0.13 82 / 0.18);
  border-bottom: 1px solid oklch(0.78 0.13 82 / 0.18);
  padding-block: 4rem;
}
@media (min-width: 640px) {
  .alpha-benefits-section {
    padding-block: 5rem;
  }
}
.alpha-benefits-section .intro {
  max-width: 46rem;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.alpha-benefits-feature {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
}
@media (min-width: 900px) {
  .alpha-benefits-feature {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }
}
.alpha-benefits-main-card,
.alpha-benefits-stack-card {
  position: relative;
  min-width: 0;
  background:
    radial-gradient(circle at 18% 0%, oklch(0.55 0.14 245 / 0.11), transparent 16rem),
    oklch(0.12 0.024 255 / 0.66);
  padding: 1.35rem;
}
@media (min-width: 640px) {
  .alpha-benefits-main-card,
  .alpha-benefits-stack-card {
    padding: 1.75rem;
  }
}
.alpha-benefits-main-card h3 {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 640px) {
  .alpha-benefits-main-card h3 {
    font-size: 1.7rem;
  }
}
.alpha-benefits-main-card p {
  margin-top: 0.85rem;
  max-width: 58rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  font-size: 0.92rem;
  text-wrap: pretty;
}
.alpha-benefits-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.alpha-benefits-link {
  font-family: var(--font-serif);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  transition: color 0.2s ease;
}
.alpha-benefits-link:hover {
  color: var(--gold-bright);
}
.alpha-benefits-stack-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.stack-card-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.stack-orb {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid oklch(0.78 0.13 82 / 0.55);
  background:
    radial-gradient(circle at 50% 35%, oklch(0.78 0.13 82 / 0.18), transparent 2.2rem),
    oklch(0.1 0.02 255 / 0.76);
  color: var(--jewel-bright);
  font-size: 1.35rem;
  text-shadow: 0 0 14px oklch(0.7 0.15 240 / 0.75);
  box-shadow:
    inset 0 0 18px oklch(0 0 0 / 0.5),
    0 0 22px oklch(0.55 0.14 245 / 0.22);
}
.stack-card-head span:not(.stack-orb) {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.stack-card-head strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.alpha-benefits-stack-list {
  display: grid;
  gap: 0.65rem;
}
.alpha-benefits-stack-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: calc(var(--radius) * 0.7);
  border: 1px solid oklch(0.78 0.13 82 / 0.18);
  background: oklch(0.16 0.025 255 / 0.62);
  padding: 0.7rem 0.8rem;
  color: oklch(0.94 0.025 85 / 0.88);
  font-size: 0.82rem;
  line-height: 1.35;
}
.alpha-benefits-stack-list .diamond {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 8px oklch(0.7 0.12 82 / 0.65);
}
.alpha-benefits-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .alpha-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .alpha-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.alpha-benefit-card {
  min-height: 100%;
  border-radius: var(--radius);
  padding: 1.1rem;
  text-align: center;
}
.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.85rem;
  border-radius: calc(var(--radius) * 0.8);
  border: 1px solid oklch(0.78 0.13 82 / 0.52);
  background:
    radial-gradient(circle at 50% 30%, oklch(0.78 0.13 82 / 0.14), transparent 2.2rem),
    oklch(0.12 0.024 255 / 0.85);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-weight: 800;
  box-shadow: inset 0 1px 0 oklch(0.8 0.12 85 / 0.18);
}
.benefit-icon.small {
  width: 2rem;
  height: 2rem;
  margin: 0;
  flex: 0 0 auto;
}
.alpha-benefit-card h3 {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.alpha-benefit-card p {
  margin-top: 0.65rem;
  color: var(--muted-foreground);
  font-size: 0.78rem;
  line-height: 1.6;
}
.alpha-benefits-note {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  text-align: left;
}
.alpha-benefits-note p {
  margin: 0;
  max-width: 58rem;
  font-size: 0.86rem;
}
.alpha-benefits-note strong {
  color: var(--gold-bright);
}
@media (max-width: 560px) {
  .alpha-benefits-note {
    align-items: flex-start;
  }
}


/* Footer alignment cleanup: center each CTA column inside its own side. */
.footer .ascension,
.footer .community {
  align-items: center;
  text-align: center;
}
.footer .ascension p {
  margin-left: auto;
  margin-right: auto;
}
.footer .ascension .signup-wrap {
  align-items: center;
  align-self: center;
}
.footer .community .ornate-divider {
  align-self: center;
}
.footer .community .socials {
  justify-content: center;
}
@media (min-width: 768px) {
  .footer .ascension,
  .footer .community {
    align-items: center;
    text-align: center;
  }
}


/* ============================================================
   Privacy / Terms Legal Modal
   ============================================================ */
body.legal-modal-open {
  overflow: hidden;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, oklch(0.55 0.14 245 / 0.16), transparent 28rem),
    oklch(0 0 0 / 0.8);
  backdrop-filter: blur(6px);
}

.legal-modal-panel {
  position: relative;
  z-index: 1;
  width: min(58rem, calc(100vw - 1.5rem));
  max-height: min(90vh, 62rem);
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.1rem;
  background:
    radial-gradient(circle at 50% -8%, oklch(0.55 0.14 245 / 0.16), transparent 16rem),
    linear-gradient(180deg, oklch(0.18 0.03 258 / 0.98), oklch(0.1 0.02 255 / 0.98));
  border: 1px solid oklch(0.78 0.13 82 / 0.55);
  box-shadow:
    inset 0 1px 0 oklch(0.95 0.03 85 / 0.12),
    inset 0 0 42px oklch(0 0 0 / 0.52),
    0 24px 80px oklch(0 0 0 / 0.78);
}

@media (min-width: 640px) {
  .legal-modal-panel {
    padding: 1.6rem;
  }
}

.legal-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid oklch(0.78 0.13 82 / 0.55);
  background: oklch(0.1 0.02 255 / 0.88);
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 18px oklch(0 0 0 / 0.45);
}

.legal-modal-close:hover {
  color: var(--gold-bright);
  border-color: oklch(0.88 0.13 88 / 0.85);
}

.legal-modal-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-inline: auto;
  max-width: 28rem;
}

.legal-modal-ornament .rule {
  height: 1px;
  flex: 1;
}

.legal-modal-ornament .rule.left {
  background: linear-gradient(90deg, transparent, oklch(0.78 0.13 82 / 0.7));
}

.legal-modal-ornament .rule.right {
  background: linear-gradient(270deg, transparent, oklch(0.78 0.13 82 / 0.7));
}

.legal-modal-header {
  margin-top: 1rem;
  text-align: center;
}

.legal-modal-header h2 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  text-shadow: 0 0 22px oklch(0.78 0.13 82 / 0.28);
}

.legal-modal-header p {
  margin: 0.65rem auto 0;
  max-width: 40rem;
  color: var(--cream);
  line-height: 1.65;
  font-size: 0.95rem;
}

.legal-modal-scroll {
  margin-top: 1.1rem;
  max-height: min(62vh, 42rem);
  overflow: auto;
  padding: 0.95rem;
  border: 1px solid oklch(0.78 0.13 82 / 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, oklch(0.08 0.02 255 / 0.72), oklch(0.06 0.015 255 / 0.82));
  box-shadow: inset 0 0 24px oklch(0 0 0 / 0.45);
}

@media (min-width: 640px) {
  .legal-modal-scroll {
    padding: 1.2rem 1.4rem;
  }
}

.legal-modal-document[hidden] {
  display: none;
}

.legal-modal-document {
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 0.93rem;
}

.legal-modal-document .legal-effective {
  color: var(--cream);
  margin-bottom: 1rem;
}

.legal-modal-document h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-modal-document h3:first-of-type {
  margin-top: 0;
}

.legal-modal-document p {
  margin: 0 0 0.75rem;
}

.legal-modal-document a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}


/* Added pages: nav links, title ornaments, and matched card styling */
.nav-links li.added-page-nav-link {
  margin-left: clamp(18px, 2.2vw, 34px);
}

.nav-links li.added-page-nav-link + li.added-page-nav-link {
  margin-left: clamp(8px, 1.2vw, 18px);
}

.added-hero {
  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.testers-added-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 8, 14, 0.84) 0%, rgba(5, 10, 17, 0.52) 42%, rgba(5, 10, 17, 0.14) 100%),
    url("testers hall/mainbg.png");
}

.alpha-stats-added-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 8, 14, 0.84) 0%, rgba(5, 10, 17, 0.52) 42%, rgba(5, 10, 17, 0.14) 100%),
    url("alpha stats/mainbg.png");
}

.added-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 34%, rgba(219, 159, 63, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(3, 6, 10, 0.02) 0%, rgba(3, 6, 10, 0.08) 55%, rgba(3, 6, 10, 0.42) 100%);
  pointer-events: none;
}

.added-hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 92px;
  text-align: center;
}

.added-title-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.added-page-title {
  margin: 0 auto .18em;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff4c7 0%, #f6c85f 42%, #b97822 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(244, 199, 102, 0.18), 0 4px 26px rgba(0, 0, 0, 0.55);
}

.title-ornament {
  width: min(420px, 72vw);
  height: 24px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-ornament::before,
.title-ornament::after {
  content: "";
  height: 1px;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(210, 151, 42, .9));
}

.title-ornament::after {
  background: linear-gradient(90deg, rgba(210, 151, 42, .9), transparent);
}

.title-ornament span {
  width: 9px;
  height: 9px;
  margin: 0 16px;
  background: #24bfff;
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(36, 191, 255, .75);
}

.title-ornament-bottom {
  margin-top: 12px;
}

.added-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.subpage-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(202, 158, 70, 0.30);
  background:
    linear-gradient(180deg, rgba(18, 27, 39, 0.96) 0%, rgba(9, 15, 23, 0.94) 55%, rgba(5, 8, 13, 0.96) 100%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  border-radius: 18px;
  padding: clamp(18px, 2.3vw, 28px);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.subpage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 213, 110, 0.08), rgba(255, 213, 110, 0.00) 48%, rgba(39, 184, 255, 0.04));
  opacity: .75;
  pointer-events: none;
}

.subpage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 199, 102, 0.70);
  box-shadow: 0 0 28px rgba(246, 199, 102, 0.22), 0 26px 70px rgba(0, 0, 0, 0.42);
}

.hero-copy-card {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: left;
}

.hero-copy-card p,
.section-heading-card p {
  position: relative;
  z-index: 1;
  color: rgba(236, 229, 209, 0.88);
  line-height: 1.75;
}

.card-kicker {
  position: relative;
  z-index: 1;
  color: #27b8ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading-card {
  margin-bottom: 24px;
  text-align: center;
}

.section-heading-card h2 {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fff4c7 0%, #f6c85f 42%, #b97822 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.subpage-grid {
  display: grid;
  gap: 22px;
}

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

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

.subpage-card h3 {
  position: relative;
  z-index: 1;
  margin: 10px 0 18px;
  color: #f3dfb0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tester-slot-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.tester-slot-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(202, 158, 70, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.tester-slot-list li span {
  white-space: nowrap;
  color: rgba(245, 236, 212, 0.9);
  letter-spacing: 0.04em;
}

.tester-slot-list li em {
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(202, 158, 70, 0.32), rgba(202, 158, 70, 0.05));
}

.record-card p,
.record-card span {
  position: relative;
  z-index: 1;
}

.record-card p {
  margin: 14px 0 6px;
  color: rgba(255, 255, 255, 0.9);
}

.record-card span {
  color: rgba(216, 178, 95, 0.75);
}

.stat-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.stat-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(202, 158, 70, 0.12);
  color: rgba(238, 231, 214, 0.82);
}

.stat-list li strong {
  color: #f4c766;
}

@media (max-width: 980px) {
  .subpage-grid.two-col,
  .subpage-grid.three-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .tester-slot-list li,
  .stat-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .tester-slot-list li em {
    width: 100%;
  }
}


/* FONT MATCH FIX: Testers Hall and Alpha Stats use the same typography as the main website */
.testers-hall-page,
.alpha-stats-page {
  font-family: inherit !important;
}

.testers-hall-page h1,
.testers-hall-page h2,
.testers-hall-page h3,
.testers-hall-page h4,
.alpha-stats-page h1,
.alpha-stats-page h2,
.alpha-stats-page h3,
.alpha-stats-page h4,
.testers-hall-page .added-page-title,
.alpha-stats-page .added-page-title,
.testers-hall-page .page-gradient-title,
.alpha-stats-page .page-gradient-title,
.testers-hall-page .section-heading h2,
.alpha-stats-page .section-heading h2,
.testers-hall-page .section-card-heading h2,
.alpha-stats-page .section-card-heading h2,
.testers-hall-page .subpage-card h3,
.alpha-stats-page .subpage-card h3,
.testers-hall-page .loa-panel h3,
.alpha-stats-page .loa-panel h3 {
  font-family: var(--font-serif) !important;
  font-weight: 700;
}

.testers-hall-page .added-page-title,
.alpha-stats-page .added-page-title,
.testers-hall-page .page-gradient-title,
.alpha-stats-page .page-gradient-title,
.testers-hall-page .page-title-text,
.alpha-stats-page .page-title-text {
  font-family: var(--font-serif) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.testers-hall-page .eyebrow,
.alpha-stats-page .eyebrow,
.testers-hall-page .card-kicker,
.alpha-stats-page .card-kicker,
.testers-hall-page .loa-panel__kicker,
.alpha-stats-page .loa-panel__kicker {
  font-family: var(--font-serif) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.testers-hall-page .navbar a,
.alpha-stats-page .navbar a,
.testers-hall-page .nav-links a,
.alpha-stats-page .nav-links a,
.testers-hall-page .main-nav a,
.alpha-stats-page .main-nav a {
  font-family: var(--font-serif) !important;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testers-hall-page p,
.testers-hall-page li,
.testers-hall-page span,
.testers-hall-page .hero-copy-card,
.testers-hall-page .section-heading-card,
.alpha-stats-page p,
.alpha-stats-page li,
.alpha-stats-page span,
.alpha-stats-page .hero-copy-card,
.alpha-stats-page .section-heading-card {
  font-family: inherit;
}

/* keep tester/stat content from accidentally inheriting browser serif defaults */
.testers-hall-page .tester-slot-list li,
.alpha-stats-page .stat-list li,
.testers-hall-page .record-card p,
.testers-hall-page .record-card span,
.alpha-stats-page .record-card p,
.alpha-stats-page .record-card span {
  font-family: inherit;
}


/* Title shadow/glow match for Testers Hall and Alpha Stats */
.testers-hall-page .added-page-title,
.alpha-stats-page .added-page-title,
.testers-hall-page .page-gradient-title,
.alpha-stats-page .page-gradient-title,
.testers-hall-page .page-title-text,
.alpha-stats-page .page-title-text {
  text-shadow:
    0 0 30px rgba(244, 199, 102, 0.18),
    0 4px 26px rgba(0, 0, 0, 0.55) !important;
}

.testers-hall-page .added-page-title,
.alpha-stats-page .added-page-title {
  background: linear-gradient(180deg, #fff4c7 0%, #f6c85f 42%, #b97822 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}


/* CONTINUITY FIX: use original nav structure and original font treatment on added pages */
.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.testers-hall-page,
.alpha-stats-page {
  font-family: inherit;
}

.testers-hall-page h1,
.testers-hall-page h2,
.testers-hall-page h3,
.testers-hall-page h4,
.alpha-stats-page h1,
.alpha-stats-page h2,
.alpha-stats-page h3,
.alpha-stats-page h4 {
  font-family: var(--font-serif);
}

.testers-hall-page .added-page-title,
.alpha-stats-page .added-page-title,
.testers-hall-page .page-gradient-title,
.alpha-stats-page .page-gradient-title,
.testers-hall-page .page-title-text,
.alpha-stats-page .page-title-text {
  font-family: var(--font-serif) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 30px rgba(244, 199, 102, 0.18),
    0 4px 26px rgba(0, 0, 0, 0.55) !important;
}

.testers-hall-page .eyebrow,
.alpha-stats-page .eyebrow,
.testers-hall-page .card-kicker,
.alpha-stats-page .card-kicker,
.testers-hall-page .loa-panel__kicker,
.alpha-stats-page .loa-panel__kicker {
  font-family: var(--font-serif) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.testers-hall-page .navbar a,
.alpha-stats-page .navbar a,
.testers-hall-page .nav-links a,
.alpha-stats-page .nav-links a {
  font-family: var(--font-serif) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Make sure the added menu items participate in the same nav spacing as every other li */
.nav-links {
  column-gap: clamp(1.35rem, 2.4vw, 2.25rem);
  row-gap: 0.5rem;
}

@media (max-width: 1280px) {
  .nav-links {
    column-gap: 1.15rem;
  }

  .nav-links > li > a {
    font-size: 0.78rem;
    letter-spacing: 0.09em;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    column-gap: 0.85rem;
  }

  .nav-links > li > a {
    font-size: 0.7rem;
    letter-spacing: 0.065em;
  }
}


/* NAV FIX: remove logo space and force one-line menu labels */
.navbar nav {
  display: flex;
  align-items: center;
}

.navbar .logo,
.navbar .nav-logo-img {
  display: none !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  gap: clamp(1.05rem, 1.65vw, 2rem) !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

.nav-links > li {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  min-width: max-content !important;
  white-space: nowrap !important;
}

.nav-links > li > a {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.nav-right {
  flex: 0 0 auto !important;
  margin-left: clamp(1rem, 1.6vw, 2rem) !important;
}

@media (max-width: 1280px) {
  .nav-links {
    gap: 1rem !important;
  }

  .nav-links > li > a {
    font-size: 0.75rem !important;
    letter-spacing: 0.075em !important;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 0.7rem !important;
  }

  .nav-links > li > a {
    font-size: 0.66rem !important;
    letter-spacing: 0.045em !important;
  }
}
