/* ============================================================
   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: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo .mark {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid oklch(0.78 0.13 82 / 0.7);
  background: oklch(0.16 0.025 255 / 0.7);
  color: var(--gold);
  box-shadow: 0 0 14px oklch(0.7 0.12 82 / 0.4);
}
.logo .mark .icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.75;
}
.logo .wordmark {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.18em;
}
.logo .wordmark .of {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold-deep);
}

.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;
}
