/* ================================================================
   KATHA KOSH · Gates of Ayodhya × Cosmic India
   Visual system v3 · April 2026
   ================================================================ */

/* ─── PALETTE ─── */
:root {
  --bg:          #080B1A;
  --bg-alt:      #060814;
  --bg-card:     #0D1028;
  --gold:        #D4952A;
  --gold-light:  #F0B84A;
  --gold-dark:   #8A5A12;
  --gold-pale:   #F8DFA0;
  --cream:       #EDE8E0;
  --cream-dim:   #B8A898;
  --text:        #EDE8E0;
  --text-dim:    #7A7A9A;
  --saffron:     #E8541A;
  --indigo:      #2A1F6B;
  --lavender:    #C8BEFF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.1rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(8,11,26,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,149,42,0.12);
}
.nav-logo {
  text-decoration: none; display: flex; align-items: center;
}
.nav-logo-img { height: 34px; width: auto; display: block; }
.nav-deva { font-size: 0.85rem; color: var(--gold-dark); font-family: 'Tiro Devanagari', serif; }
.nav-tag {
  font-family: 'Syne', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 9rem 5rem 5rem;
  position: relative; overflow: hidden; gap: 3rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(42,31,107,0.38) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(212,149,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-deva {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 32vw; line-height: 1;
  color: rgba(212,149,42,0.02);
  font-family: 'Tiro Devanagari', serif; pointer-events: none;
  user-select: none; white-space: nowrap;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Syne', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.4em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; height: 1px; width: 2.5rem;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 300; font-style: italic;
  line-height: 1.1; color: var(--cream);
  margin-bottom: 1.6rem;
}
.hero-h1 strong { font-style: normal; color: var(--gold); font-weight: 600; }
.hero-sub {
  font-size: 1rem; font-weight: 300; color: var(--cream-dim);
  line-height: 1.75; max-width: 460px; margin-bottom: 3rem;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.95rem 2.4rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Syne', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  position: relative; overflow: hidden; transition: color 0.3s;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta:hover { color: var(--bg); }
.hero-cta span { position: relative; z-index: 1; }

/* ─── HERO GATES WRAP ─── */
.hero-card-wrap {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
}
.gates-svg {
  width: 100%; max-width: 460px; height: auto;
  filter: drop-shadow(0 0 80px rgba(212,149,42,0.15));
}

/* Gate panel breathing animations */
.gate-panel-left {
  animation: gateBreathLeft 9s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: right center;
}
.gate-panel-right {
  animation: gateBreathRight 9s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: left center;
}
@keyframes gateBreathLeft {
  0%, 100% { transform: rotateY(-8deg); }
  50% { transform: rotateY(-4deg); }
}
@keyframes gateBreathRight {
  0%, 100% { transform: rotateY(8deg); }
  50% { transform: rotateY(4deg); }
}
.gate-glow-pulse {
  animation: glowPulse 9s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.diya-flame {
  animation: flameFlicker 2.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center bottom;
}
.diya-flame:last-child { animation-delay: -1.2s; }
@keyframes flameFlicker {
  0%, 100% { opacity: 0.8; transform: scaleX(1) scaleY(1); }
  33% { opacity: 1; transform: scaleX(1.12) scaleY(1.18); }
  66% { opacity: 0.9; transform: scaleX(0.88) scaleY(1.06); }
}
.star-dot {
  animation: starPulse 4s ease-in-out infinite;
}
.star-dot:nth-child(2n) { animation-delay: -1.5s; }
.star-dot:nth-child(3n) { animation-delay: -2.8s; }
.star-dot:nth-child(5n) { animation-delay: -0.7s; animation-duration: 3.5s; }
.star-dot:nth-child(7n) { animation-delay: -3.4s; animation-duration: 5s; }
@keyframes starPulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 1; }
}

/* ─── HERO STARS ─── */
.hero-stars {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.hero-stars::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 12%, rgba(200,190,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 18% 25%, rgba(200,190,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 32% 8%, rgba(212,149,42,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 47% 18%, rgba(200,190,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 5%, rgba(200,190,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 14%, rgba(200,190,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 9%, rgba(212,149,42,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 22%, rgba(200,190,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 12% 38%, rgba(200,190,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 32%, rgba(200,190,255,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 63% 28%, rgba(200,190,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 35%, rgba(200,190,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 42%, rgba(200,190,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 55%, rgba(200,190,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 48%, rgba(200,190,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 38% 52%, rgba(212,149,42,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 58%, rgba(200,190,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 4% 70%, rgba(200,190,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 16% 65%, rgba(200,190,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 96% 72%, rgba(200,190,255,0.35) 0%, transparent 100%);
  animation: starsFade1 5s ease-in-out infinite;
}
.hero-stars::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 14% 20%, rgba(200,190,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 24% 6%, rgba(212,149,42,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 14%, rgba(200,190,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 22%, rgba(200,190,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 68% 10%, rgba(200,190,255,0.65) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 19%, rgba(200,190,255,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 30%, rgba(212,149,42,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 42%, rgba(200,190,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 45%, rgba(200,190,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 52% 38%, rgba(200,190,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 44%, rgba(200,190,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 6% 58%, rgba(200,190,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 62%, rgba(212,149,42,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 55%, rgba(200,190,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 60%, rgba(200,190,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 72%, rgba(200,190,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 68%, rgba(200,190,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 93% 65%, rgba(200,190,255,0.3) 0%, transparent 100%);
  animation: starsFade2 7s ease-in-out infinite;
}
@keyframes starsFade1 {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
@keyframes starsFade2 {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.2; }
}

/* ─── HOOK ─── */
.hook {
  padding: 9rem 5rem;
  background: #060814;
  position: relative; overflow: hidden;
}
.hook::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,149,42,0.2), transparent);
}
.hook-label {
  font-family: 'Syne', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.4em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 2.5rem;
}
.hook-stat {
  font-family: 'Syne', sans-serif;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 900; line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-dark);
  position: relative; display: inline-block;
  margin-bottom: 0.5rem;
}
.hook-stat-fill {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #D4952A 20%, #F0B84A 50%, #D4952A 80%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.12;
  font-family: 'Syne', sans-serif;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 900; line-height: 0.9;
}
.hook-challenge {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--cream); line-height: 1.5;
  max-width: 780px;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}
.hook-challenge em { font-style: italic; color: var(--gold); }
.hook-challenge strong { font-weight: 600; font-style: normal; }

/* ─── CARDS SECTION ─── */
.cards-sec {
  padding: 9rem 3rem;
  background: var(--bg);
  position: relative;
}
.sec-header { text-align: center; margin-bottom: 5rem; }
.sec-eyebrow {
  font-family: 'Syne', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.42em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.sec-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.15; color: var(--cream);
}
.sec-h2 em { font-style: italic; color: var(--gold); }

.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1040px; margin: 0 auto;
}

/* ─── KCARD ─── */
.kcard {
  position: relative; cursor: pointer;
}
.kcard-inner {
  width: 100%;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1), filter 0.35s;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.5));
}
.kcard:hover .kcard-inner { transform: translateY(-10px) scale(1.018); filter: drop-shadow(0 20px 45px rgba(212,149,42,0.18)); }

.kcard-art {
  position: relative; flex-shrink: 0;
}
.kcard-svg { width: 100%; height: 100%; display: block; }
.kcard-num-overlay {
  position: absolute; top: 12px; right: 14px;
  font-family: 'Syne', sans-serif; font-size: 0.5rem;
  color: rgba(255,255,255,0.14); letter-spacing: 0.2em;
}

.kcard-info {
  flex: 1; padding: 0.95rem 0.2rem 0.85rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.kcard-name {
  font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700;
  color: #EDE8E0; margin-bottom: 0.18rem; line-height: 1.2;
}
.kcard-deva {
  font-family: 'Tiro Devanagari', serif; font-size: 0.78rem;
  font-style: italic; color: rgba(212,149,42,0.5);
}
.kcard-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.65rem;
}
.kcard-rarity {
  font-family: 'Outfit', sans-serif; font-size: 0.42rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.16rem 0.55rem; border-radius: 2px;
}
.kcard-rarity-amar  { color: #F0B84A; border: 1px solid rgba(240,184,74,0.32); background: rgba(240,184,74,0.04); }
.kcard-rarity-maha  { color: #C8BEFF; border: 1px solid rgba(200,190,255,0.32); background: rgba(200,190,255,0.04); }
.kcard-rarity-echo  { color: #7FD8D0; border: 1px solid rgba(127,216,208,0.32); background: rgba(127,216,208,0.04); }
.kcard-series {
  font-family: 'Outfit', sans-serif; font-size: 0.4rem;
  color: rgba(255,255,255,0.14); letter-spacing: 0.1em;
}
.kcard-img { width: 100%; height: auto; display: block; object-fit: contain; }

/* ─── KCARD: MORE COMING SOON ─── */
.kcard-more-inner {
  width: 100%; aspect-ratio: 3/4;
  border: 1.5px dashed rgba(212,149,42,0.3);
  border-radius: 6px;
  background: rgba(212,149,42,0.02);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 0 40px rgba(212,149,42,0.03);
  transition: border-color 0.35s, box-shadow 0.35s, background 0.35s;
}
.kcard:hover .kcard-more-inner {
  border-color: rgba(212,149,42,0.55);
  background: rgba(212,149,42,0.045);
  box-shadow: 0 20px 50px rgba(212,149,42,0.1), inset 0 0 40px rgba(212,149,42,0.05);
}
.kcard-lock-icon { width: 34px; height: 34px; color: rgba(212,149,42,0.5); }
.kcard-more-text {
  font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.04em; text-align: center; line-height: 1.5;
  color: rgba(232,224,208,0.45);
}

.kcard-actions {
  position: absolute; bottom: 22%; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.45rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.28s, transform 0.28s;
  z-index: 10;
}
.kcard:hover .kcard-actions { opacity: 1; transform: translateY(0); }
.kcard-btn {
  width: 38px; height: 38px;
  background: rgba(8,11,26,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  padding: 0;
}
.kcard-btn:hover { background: rgba(212,149,42,0.12); border-color: rgba(212,149,42,0.45); color: var(--gold); }
.kcard-btn svg { width: 16px; height: 16px; }

/* ─── RARITY SECTION ─── */
.rarity-sec {
  padding: 9rem 5rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #070A1C 100%);
}
.rarity-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem; margin-top: 4rem;
}
.rtier {
  padding: 2.5rem 1.8rem;
  border: 1px solid rgba(212,149,42,0.09);
  position: relative; transition: all 0.35s ease;
}
.rtier:hover {
  border-color: rgba(212,149,42,0.35);
  background: rgba(212,149,42,0.02);
  transform: translateY(-5px);
}
.rtier::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
}
.rt1::after { background: rgba(212,149,42,0.25); }
.rt2::after { background: linear-gradient(90deg, transparent, rgba(212,149,42,0.5), transparent); }
.rt3::after { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.rt4::after {
  background: linear-gradient(90deg, transparent, #F0B84A, #FFF5DC, #F0B84A, transparent);
  animation: topShimmer 2.5s ease-in-out infinite;
}
@keyframes topShimmer {
  0%,100% { opacity: 0.7; }
  50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(240,184,74,0.6)); }
}
.rtier-sym { font-size: 2.2rem; margin-bottom: 1.2rem; display: block; }
.rtier-sym-img { width: 56px; height: auto; margin-bottom: 1.2rem; display: block; }
.rtier-name { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.rtier-deva { font-size: 1.1rem; color: var(--gold-dark); display: block; margin-bottom: 0.35rem; font-family: 'Tiro Devanagari', serif; }
.rtier-eng { font-family: 'Outfit', sans-serif; font-size: 0.56rem; letter-spacing: 0.25em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 1rem; display: block; }
.rtier-desc { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-style: italic; color: var(--cream-dim); line-height: 1.65; }

/* ─── UNIVERSE ─── */
.universe-sec { padding: 6rem 5rem 9rem; background: var(--bg); }
.uni-box {
  margin-top: 4rem; padding: 3rem 3.5rem;
  border: 1px solid rgba(212,149,42,0.14);
  position: relative;
}
.uni-box::before {
  content: 'रामायण';
  position: absolute; top: -1.4rem; left: 3rem;
  background: var(--bg); padding: 0 1rem;
  font-size: 2rem; color: rgba(212,149,42,0.18);
  font-family: 'Tiro Devanagari', serif;
}
.uni-name { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; }
.uni-sub { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-style: italic; color: var(--cream-dim); margin-bottom: 2.5rem; }
.types-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-bottom: 3rem; }
.tpill {
  padding: 1.3rem 1.1rem;
  background: rgba(212,149,42,0.03);
  border: 1px solid rgba(212,149,42,0.08);
}
.tpill-n { font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 0.2rem; }
.tpill-l { font-family: 'Outfit', sans-serif; font-size: 0.6rem; letter-spacing: 0.18em; color: var(--cream-dim); text-transform: uppercase; }
.ornament { text-align: center; color: rgba(212,149,42,0.25); font-size: 1rem; letter-spacing: 1.2rem; margin: 0.5rem 0; }

.coming { margin-top: 4rem; }
.coming-label { font-family: 'Syne', sans-serif; font-size: 0.62rem; letter-spacing: 0.4em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 1.8rem; }
.coming-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.citem {
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(212,149,42,0.07);
  opacity: 0.48; position: relative;
  transition: opacity 0.3s;
}
.citem:hover { opacity: 0.7; }
.citem::after {
  content: 'COMING SOON'; position: absolute; top: 0.7rem; right: 0.8rem;
  font-family: 'Outfit', sans-serif; font-size: 0.42rem; letter-spacing: 0.15em;
  color: var(--gold-dark); text-transform: uppercase;
}
.citem-name { font-family: 'Syne', sans-serif; font-size: 0.9rem; color: var(--cream-dim); margin-bottom: 0.25rem; }
.citem-sub { font-family: 'Cormorant Garamond', serif; font-size: 0.82rem; font-style: italic; color: var(--text-dim); }

/* ─── PACKS ─── */
.packs-sec {
  padding: 9rem 5rem;
  background: linear-gradient(180deg, #060814 0%, #080B1A 100%);
}
.packs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4.5rem; max-width: 860px; margin-left: auto; margin-right: auto; }
.pack {
  padding: 2.4rem 2rem; position: relative;
  border: 1px solid rgba(212,149,42,0.13);
  background: rgba(212,149,42,0.018);
  transition: all 0.35s ease;
}
.pack:hover { border-color: rgba(212,149,42,0.4); transform: translateY(-7px); background: rgba(212,149,42,0.04); }
.pack.hot {
  border-color: rgba(212,149,42,0.38);
  background: rgba(212,149,42,0.055);
}
.pack.hot::before {
  content: 'MOST POPULAR';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg);
  font-family: 'Outfit', sans-serif; font-size: 0.48rem; letter-spacing: 0.2em;
  padding: 0.3rem 1.1rem; white-space: nowrap;
}
.pack-ico { font-size: 2.4rem; margin-bottom: 1.1rem; display: block; }
.pack-name { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); margin-bottom: 0.25rem; }
.pack-deva { font-size: 0.9rem; color: var(--gold-dark); display: block; margin-bottom: 1.1rem; font-family: 'Tiro Devanagari', serif; }
.pack-feats { list-style: none; margin-bottom: 2rem; margin-top: 1.6rem; }
.pack-feats li {
  font-size: 0.82rem; color: var(--cream-dim);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(212,149,42,0.06);
  display: flex; align-items: center; gap: 0.65rem;
}
.pack-feats li::before { content: '✦'; color: var(--gold); font-size: 0.45rem; flex-shrink: 0; }
.pack-btn {
  width: 100%; padding: 0.85rem;
  background: transparent;
  border: 1px solid rgba(212,149,42,0.38); color: var(--gold);
  font-family: 'Syne', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.pack-btn:hover { background: var(--gold); color: var(--bg); }
.pack.hot .pack-btn { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.pack.hot .pack-btn:hover { background: var(--gold-light); }
.pack-btn { margin-top: auto; }
.pack { display: flex; flex-direction: column; }
.pack-feats { flex: 1; }

/* ─── PACKS: SHARED PREORDER FORM ─── */
.packs-form { display: flex; flex-direction: column; align-items: center; }
.packs-shipping-note { text-align: center; margin-top: 2rem; }
.packs-waitlist-note {
  text-align: center; margin-top: 1.5rem;
  font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--text-dim);
}
.waitlist-link {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
  font-family: inherit; font-size: inherit;
}
.waitlist-link:hover { color: var(--gold-light); }
.waitlist-box {
  max-width: 480px; margin: 0 auto; overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}
.waitlist-box.open { max-height: 1200px; opacity: 1; margin-top: 1.8rem; }
.tally-embed { border: none; background: transparent; display: block; width: 100%; }

/* ─── ART NOTE, UNDER SET COUNT ─── */
.art-note-under-count {
  max-width: 700px; margin: 2rem auto 0;
  justify-content: center; text-align: center;
}

/* ─── MANIFESTO ─── */
.manifesto {
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 5rem;
  background: var(--bg);
  position: relative; overflow: hidden; text-align: center;
}
.manifesto::before {
  content: 'ॐ';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 45vw; color: rgba(212,149,42,0.018);
  pointer-events: none; line-height: 1;
  font-family: 'Tiro Devanagari', serif;
}
.manifesto::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(42,31,107,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.mani-inner { max-width: 860px; position: relative; z-index: 2; }
.mani-eyebrow { font-family: 'Syne', sans-serif; font-size: 0.63rem; letter-spacing: 0.45em; color: var(--gold); text-transform: uppercase; margin-bottom: 3rem; }
.mani-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 3.3rem);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.45; margin-bottom: 3rem;
}
.mani-quote strong { font-style: normal; color: var(--gold); font-weight: 600; }
.mani-rule { width: 90px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 3rem; }
.mani-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--cream-dim);
  line-height: 2; font-style: italic;
  margin-bottom: 3rem;
}
.mani-body strong { font-style: normal; color: var(--cream); font-weight: 500; }
.mani-sign { font-family: 'Syne', sans-serif; font-size: 0.65rem; letter-spacing: 0.35em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 1.5rem; }
.mani-deva { font-family: 'Tiro Devanagari', serif; font-size: 2.8rem; color: rgba(212,149,42,0.28); display: block; letter-spacing: 0.1em; }

/* ─── FOOTER ─── */
footer {
  padding: 2.5rem 4rem;
  border-top: 1px solid rgba(212,149,42,0.1);
  display: flex; justify-content: space-between; align-items: center;
}
.foot-logo { font-family: 'Syne', sans-serif; font-size: 1.05rem; color: var(--gold); letter-spacing: 0.25em; }
.foot-tag { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-style: italic; color: var(--text-dim); }
.foot-copy { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.04em; }

/* ─── FADE IN SCROLL ─── */
.fi { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }
.fi.d1 { transition-delay: 0.1s; }
.fi.d2 { transition-delay: 0.22s; }
.fi.d3 { transition-delay: 0.34s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 8rem 2rem 5rem; text-align: center; }
  .hero-card-wrap { display: none; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto 3rem; }
  .hook { padding: 6rem 2rem; grid-template-columns: 1fr; gap: 3rem; }
  .hook-stat-block { text-align: center; }
  .cards-sec { padding: 6rem 1.5rem; }
  .cards-grid { grid-template-columns: 1fr; max-width: 300px; }
  .rarity-sec { padding: 6rem 2rem; }
  .rarity-grid { grid-template-columns: 1fr 1fr; }
  .universe-sec { padding: 6rem 2rem; }
  .types-grid { grid-template-columns: 1fr 1fr; }
  .coming-grid { grid-template-columns: 1fr; }
  .packs-sec { padding: 6rem 2rem; }
  .packs-grid { grid-template-columns: 1fr; max-width: 360px; }
  .manifesto { padding: 7rem 2rem; }
  nav { padding: 1rem 1.5rem; }
  footer { flex-direction: column; gap: 0.9rem; text-align: center; padding: 2rem 1.5rem; }
}
@media (max-width: 540px) {
  .rarity-grid { grid-template-columns: 1fr; }
  .hook-stat { font-size: clamp(6rem, 30vw, 9rem); }
}
@media (max-width: 600px) {
  .nav-tag { display: none; }
  nav { padding: 0.9rem 1.2rem; gap: 0.8rem; }
}

/* ─── CANVAS TOUCH ─── */
#gCanvas { touch-action: none; }
#gOverlay { overflow: hidden; }
#gInstructions { overflow-y: auto; }
#gDilemma { overflow-y: auto; }
#gStory { overflow-y: auto; }

/* ─── VIRTUAL GAMEPAD ─── */
#gVirtualControls {
  display: none;
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 190px;
  pointer-events: none; z-index: 15;
}
.gvc-dpad {
  position: absolute; bottom: 20px; left: 14px;
  width: 152px; height: 152px; pointer-events: none;
}
.gvc-dpad .gvc-btn {
  position: absolute; width: 48px; height: 48px;
  background: rgba(8,11,26,0.82);
  border: 1.5px solid rgba(212,149,42,0.5); border-radius: 8px;
  color: var(--gold); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto; -webkit-tap-highlight-color: transparent;
  user-select: none; cursor: pointer; transition: background 0.08s;
}
.gvc-dpad .gvc-btn:active { background: rgba(212,149,42,0.32); }
.gvc-u { top: 0; left: 52px; }
.gvc-d { bottom: 0; left: 52px; }
.gvc-l { top: 52px; left: 0; }
.gvc-r { top: 52px; right: 0; }
.gvc-actbtns {
  position: absolute; bottom: 20px; right: 14px;
  display: grid; grid-template-columns: 54px 54px; gap: 10px;
  pointer-events: none;
}
.gvc-actbtns .gvc-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(8,11,26,0.82);
  font-family: 'Outfit', sans-serif; font-size: 0.44rem; letter-spacing: 0.06em;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  pointer-events: auto; -webkit-tap-highlight-color: transparent;
  user-select: none; cursor: pointer;
}
.gvc-actbtns .gvc-btn:active { filter: brightness(1.7); }
.gvc-ico { font-size: 1rem; line-height: 1; }
.gvc-a { border: 1.5px solid #D4952A; color: #D4952A; }
.gvc-b { border: 1.5px solid #F0B84A; color: #F0B84A; }
.gvc-c { border: 1.5px solid #E8541A; color: #E8541A; }
.gvc-e { border: 1.5px solid #44CC88; color: #44CC88; }

@media (pointer: coarse) {
  #gVirtualControls { display: block; }
  #gControlsHint { display: none; }
}

/* ─── GAME ENTRY SECTION ─── */
.game-entry-sec {
  padding: 9rem 5rem;
  background: linear-gradient(180deg, #060814 0%, #080B1A 100%);
  position: relative;
}
.game-entry-sec::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,149,42,0.2), transparent);
}
.game-entry-inner { max-width: 800px; }
.game-entry-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--cream-dim); line-height: 1.8;
  margin: 1.5rem 0 3rem; max-width: 600px;
}
.gef-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.gef {
  padding: 1.5rem 1rem;
  border: 1px solid rgba(212,149,42,0.1);
  background: rgba(212,149,42,0.02);
  transition: all 0.3s;
}
.gef:hover { border-color: rgba(212,149,42,0.35); transform: translateY(-4px); }
.gef-ico { font-size: 1.8rem; margin-bottom: 0.7rem; }
.gef-t { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; letter-spacing: 0.1em; }
.gef-d { font-size: 0.78rem; color: var(--cream-dim); line-height: 1.5; }
@media (max-width: 760px) { .gef-grid { grid-template-columns: 1fr 1fr; } .game-entry-sec { padding: 6rem 2rem; } }

/* ─── GAME OVERLAY ─── */
#gOverlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: #080B1A;
  flex-direction: column;
}
#gOverlay.active { display: flex; }
#gCanvas {
  flex: 1;
  display: block;
  width: 100%;
}

/* HUD */
#gHUD {
  position: absolute; top: 0; left: 0; right: 0;
  height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(8,11,26,0.92);
  border-bottom: 1px solid rgba(212,149,42,0.15);
  z-index: 10;
}
.ghud-block { display: flex; align-items: center; gap: 0.6rem; }
.ghud-label { font-family: 'Syne', sans-serif; font-size: 0.55rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.ghp-bar { width: 130px; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; border: 1px solid rgba(212,149,42,0.2); }
#gHPFill { height: 100%; width: 100%; background: linear-gradient(90deg, #D4952A, #F0B84A); border-radius: 4px; transition: width 0.3s; }
#gHPNum { font-family: 'Syne', sans-serif; font-size: 0.65rem; color: var(--cream-dim); }
#gChapterLabel { font-family: 'Syne', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
#gArrowCount { font-family: 'Syne', sans-serif; font-size: 0.65rem; color: var(--cream-dim); }
#gCloseBtn {
  background: transparent; border: 1px solid rgba(212,149,42,0.3);
  color: var(--gold); font-family: 'Syne', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem; cursor: pointer;
  transition: all 0.2s;
}
#gCloseBtn:hover { background: var(--gold); color: var(--bg); }
#gHelpBtn {
  background: transparent; border: 1px solid rgba(212,149,42,0.3);
  color: var(--gold); font-family: 'Syne', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem; cursor: pointer; transition: all 0.2s;
}
#gHelpBtn:hover { background: rgba(212,149,42,0.12); }

/* Instructions overlay */
#gInstructions {
  display: none;
  position: absolute; inset: 0; z-index: 30;
  background: rgba(8,11,26,0.88);
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
#gInstructions.active { display: flex; }
#gInstructionsBox {
  max-width: 620px; width: 92%;
  background: #0D1028;
  border: 1px solid rgba(212,149,42,0.25);
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
}
.ginst-corner {
  position: absolute; width: 14px; height: 14px;
}
.ginst-corner.tl { top:8px; left:8px; border-top:1.5px solid var(--gold); border-left:1.5px solid var(--gold); }
.ginst-corner.tr { top:8px; right:8px; border-top:1.5px solid var(--gold); border-right:1.5px solid var(--gold); }
.ginst-corner.bl { bottom:8px; left:8px; border-bottom:1.5px solid var(--gold); border-left:1.5px solid var(--gold); }
.ginst-corner.br { bottom:8px; right:8px; border-bottom:1.5px solid var(--gold); border-right:1.5px solid var(--gold); }
#gInstTitle { text-align:center; margin-bottom:1.8rem; }
.ginst-skt { display:block; font-size:1.3rem; color:rgba(212,149,42,0.4); margin-bottom:0.3rem; font-family: 'Tiro Devanagari', serif; }
.ginst-eng { display:block; font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:700; color:var(--gold); letter-spacing:0.1em; }
#gInstGrid { display:grid; grid-template-columns:1fr 1fr; gap:1.4rem 2rem; margin-bottom:2rem; }
.ginst-section {}
.ginst-head { font-family:'Syne',sans-serif; font-size:0.55rem; letter-spacing:0.25em; color:var(--gold); text-transform:uppercase; margin-bottom:0.7rem; padding-bottom:0.4rem; border-bottom:1px solid rgba(212,149,42,0.12); }
.ginst-row { display:flex; align-items:baseline; gap:0.6rem; margin-bottom:0.45rem; }
kbd {
  font-family:'Outfit',sans-serif; font-size:0.55rem; letter-spacing:0.05em;
  background:rgba(212,149,42,0.08); border:1px solid rgba(212,149,42,0.3);
  color:var(--gold); padding:0.15rem 0.45rem; border-radius:2px;
  white-space:nowrap; flex-shrink:0;
}
.ginst-row span { font-size:0.75rem; color:var(--cream-dim); line-height:1.4; }
.ginst-tip { font-family:'Cormorant Garamond',serif; font-size:0.82rem; font-style:italic; color:var(--cream-dim); line-height:1.6; }
.ginst-close {
  display:block; width:100%;
  background:transparent; border:1px solid var(--gold);
  color:var(--gold); font-family:'Syne',sans-serif;
  font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase;
  padding:0.8rem; cursor:pointer; transition:all 0.3s;
  position:relative; overflow:hidden;
}
.ginst-close::before { content:''; position:absolute; inset:0; background:var(--gold); transform:translateX(-101%); transition:transform 0.3s; }
.ginst-close:hover::before { transform:translateX(0); }
.ginst-close:hover { color:var(--bg); }
.ginst-close span { position:relative; z-index:1; }

/* Moral Dilemma */
#gDilemma { display:none; position:absolute; inset:0; z-index:25; background:rgba(8,11,26,0.97); align-items:center; justify-content:center; overflow-y:auto; }
#gDilemma.active { display:flex; }
#gDilemmaBox { max-width:660px; width:92%; background:#0D1028; border:1px solid rgba(212,149,42,0.22); padding:2.8rem 2.5rem 2.2rem; position:relative; text-align:center; }
.gdil-corner { position:absolute; width:14px; height:14px; }
.gdil-corner.tl { top:8px; left:8px; border-top:1.5px solid var(--gold); border-left:1.5px solid var(--gold); }
.gdil-corner.tr { top:8px; right:8px; border-top:1.5px solid var(--gold); border-right:1.5px solid var(--gold); }
.gdil-corner.bl { bottom:8px; left:8px; border-bottom:1.5px solid var(--gold); border-left:1.5px solid var(--gold); }
.gdil-corner.br { bottom:8px; right:8px; border-bottom:1.5px solid var(--gold); border-right:1.5px solid var(--gold); }
#gDilSkt { font-size:1.3rem; color:rgba(212,149,42,0.4); margin-bottom:0.3rem; font-family: 'Tiro Devanagari', serif; }
#gDilTitle { font-family:'Syne',sans-serif; font-size:1.15rem; font-weight:700; color:var(--gold); margin-bottom:0.3rem; letter-spacing:0.06em; }
#gDilSub { font-family:'Cormorant Garamond',serif; font-size:0.95rem; font-style:italic; color:var(--cream-dim); margin-bottom:1.5rem; }
#gDilBody { font-family:'Cormorant Garamond',serif; font-size:1rem; font-style:italic; color:var(--cream-dim); line-height:1.9; margin-bottom:1.8rem; text-align:left; }
#gDilChoices { display:flex; flex-direction:column; gap:0.8rem; margin-bottom:1.2rem; }
.gdil-choice { background:rgba(212,149,42,0.04); border:1px solid rgba(212,149,42,0.22); padding:0.9rem 1.2rem; cursor:pointer; font-family:'Cormorant Garamond',serif; font-size:0.95rem; font-style:italic; color:var(--cream); text-align:left; transition:all 0.25s; }
.gdil-choice:hover { background:rgba(212,149,42,0.1); border-color:rgba(212,149,42,0.55); }
#gDilOutcome { font-family:'Cormorant Garamond',serif; font-size:0.95rem; color:var(--cream-dim); line-height:1.85; text-align:left; margin-bottom:1.5rem; padding:1rem 1.2rem; border-left:2px solid rgba(212,149,42,0.4); font-style:italic; }
#gDilNext { background:transparent; border:1px solid var(--gold); color:var(--gold); font-family:'Syne',sans-serif; font-size:0.62rem; letter-spacing:0.2em; padding:0.8rem 2rem; cursor:pointer; transition:all 0.3s; }
#gDilNext:hover { background:var(--gold); color:var(--bg); }
/* Card reveal interstitial */
#gCardReveal { display:none; position:absolute; inset:0; z-index:40; background:rgba(8,11,26,0.97); align-items:center; justify-content:center; overflow-y:auto; }
#gCardReveal.active { display:flex; }
#gCRBox {
  max-width: 320px; width: 86%;
  background: #0D1028; border: 1px solid rgba(212,149,42,0.3);
  padding: 2.2rem 1.8rem 1.8rem; position: relative; text-align: center;
  animation: gcrPop 0.55s cubic-bezier(0.2,0.9,0.25,1.2);
}
@keyframes gcrPop { from { transform: scale(0.8) translateY(20px); opacity:0; } to { transform: scale(1) translateY(0); opacity:1; } }
#gCRLabel { font-family:'Syne',sans-serif; font-size:0.55rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(212,149,42,0.55); margin-bottom:1.3rem; }
#gCRArtWrap { border:1px solid rgba(212,149,42,0.25); margin-bottom:1.1rem; overflow:hidden; filter: drop-shadow(0 14px 34px rgba(212,149,42,0.16)); }
#gCRBox .kcard-name { font-size: 1.05rem; margin-bottom:0.2rem; }
#gCRBox .kcard-deva { font-size: 0.9rem; display:block; margin-bottom:0.9rem; }
#gCRMetaRow { display:flex; justify-content:center; align-items:center; gap:0.6rem; margin-bottom:1.6rem; }
#gCRContinue {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Syne', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em;
  padding: 0.8rem 1.6rem; cursor: pointer; text-transform: uppercase;
  transition: all 0.3s;
}
#gCRContinue:hover { background: var(--gold); color: var(--bg); }

#gControlsHint {
  position: absolute; bottom: 0.6rem; left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; color: rgba(212,149,42,0.3);
  font-family: 'Outfit', sans-serif; letter-spacing: 0.12em;
  pointer-events: none;
}

/* Chapter Instructions overlay */
#gChapterInst {
  display: none;
  position: absolute; inset: 0; z-index: 35;
  background: rgba(8,11,26,0.93);
  align-items: center; justify-content: center;
  backdrop-filter: blur(5px);
}
#gChapterInst.active { display: flex; }
#gChInstBox {
  max-width: 500px; width: 90%;
  background: #0D1028;
  border: 1px solid rgba(212,149,42,0.35);
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
}
#gChInstHeader { text-align: center; margin-bottom: 1.8rem; }
#gChInstIcon { font-size: 2rem; margin-bottom: 0.5rem; }
#gChInstSkt { font-size: 1.3rem; color: rgba(212,149,42,0.4); margin-bottom: 0.3rem; font-family: 'Tiro Devanagari', serif; }
#gChInstEng { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; margin-top: 0.2rem; }
#gChInstSteps {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  counter-reset: step;
}
#gChInstSteps li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: var(--cream-dim);
  line-height: 1.6; padding: 0.55rem 0.9rem 0.55rem 2.2rem;
  background: rgba(212,149,42,0.04);
  border-left: 2px solid rgba(212,149,42,0.25);
  position: relative;
  counter-increment: step;
}
#gChInstSteps li::before {
  content: counter(step);
  position: absolute; left: 0.6rem;
  color: rgba(212,149,42,0.5);
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  top: 50%; transform: translateY(-50%);
}

/* Story Panel */
#gStory {
  display: none;
  position: absolute; inset: 0; z-index: 20;
  background: rgba(8,11,26,0.97);
  align-items: center; justify-content: center;
  overflow-y: auto;
}
#gStory.active { display: flex; }
#gStoryBox {
  max-width: 680px;
  width: 90%;
  padding: 3rem;
  border: 1px solid rgba(212,149,42,0.2);
  background: rgba(13,16,40,0.95);
  position: relative;
  text-align: center;
}
#gStoryBox::before, #gStoryBox::after {
  content: '';
  position: absolute; left: 2rem; right: 2rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,149,42,0.3), transparent);
}
#gStoryBox::before { top: 1rem; }
#gStoryBox::after { bottom: 1rem; }
#gStorySkt { font-size: 1.4rem; color: rgba(212,149,42,0.4); margin-bottom: 0.3rem; font-family: 'Tiro Devanagari', serif; }
#gStoryEng { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 0.3rem; letter-spacing: 0.05em; }
#gStorySub { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--cream-dim); margin-bottom: 1.5rem; }
#gStoryImgWrap { margin: 1.5rem auto; max-width: 400px; border: 1px solid rgba(212,149,42,0.2); overflow: hidden; border-radius: 4px; }
#gStoryImg { width: 100%; display: block; }
#gStoryBody {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--cream-dim); line-height: 1.9;
  margin: 1.5rem 0 2rem;
}
#gStoryContinue {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  padding: 0.85rem 2.2rem;
  cursor: pointer; text-transform: uppercase;
  transition: all 0.3s; position: relative; overflow: hidden;
}
#gStoryContinue::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform 0.3s;
}
#gStoryContinue:hover::before { transform: translateX(0); }
#gStoryContinue:hover { color: var(--bg); }
#gStoryContinue span { position: relative; z-index: 1; }

/* ==========================================================
   V2 STYLES
   ========================================================== */

/* NAV v2 */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--bg);
  background: var(--gold);
  padding: 0.55rem 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* HERO v2 */
.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.cta-arrow { transition: transform 0.2s; }
.hero-cta-primary:hover .cta-arrow { transform: translateX(3px); }
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta-secondary:hover { color: var(--text); border-color: rgba(255,255,255,0.4); }
.hero-game-strip {
  display: block;
  margin-top: 2.5rem;
  padding: 1rem 1.4rem;
  background: rgba(42,31,107,0.08);
  border: 1px solid rgba(42,31,107,0.25);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  max-width: 420px;
}
.hero-game-strip:hover {
  background: rgba(42,31,107,0.15);
  border-color: rgba(42,31,107,0.45);
}
.hgs-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--lavender);
  letter-spacing: 0.02em;
}
.hgs-sub {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* HERO COLLECTION LINK */
.hero-collection-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(212,149,42,0.7);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.hero-collection-link:hover { color: var(--gold); }

/* UNIVERSE COLLECTION LINK */
.universe-collection-link {
  margin-top: 3rem;
  text-align: center;
}

/* HOOK v2 */
.hook-stat-block {
  text-align: center;
  margin-bottom: 3rem;
}
.hook-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.hook-stat-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}
.hook-challenge-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.hook-questions {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hook-closing {
  font-family: 'Syne', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* CARDS HEADER ROW */
.cards-sec .sec-header { text-align: left; }
.cards-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.collection-tab-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,149,42,0.35);
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
.collection-tab-btn:hover {
  background: rgba(212,149,42,0.08);
  border-color: rgba(212,149,42,0.6);
}
.ghost-btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  text-transform: uppercase;
}
.ghost-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }

/* GAME SECTION v2 */
.game-chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  margin: 2.5rem 0;
}
.gchapter {
  background: var(--bg);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: background 0.2s;
}
.gchapter:hover { background: rgba(255,255,255,0.03); }
.gchapter-last { grid-column: span 1; }
.gch-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.gch-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
.gch-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.game-entry-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.game-begin-btn {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.9rem 1.8rem !important;
}
.game-begin-btn:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}
.game-platform-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-dim);
}

/* PREORDER SECTION */
.preorder-sec {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.preorder-sec .sec-header {
  margin-bottom: 3.5rem;
}
.preorder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) {
  .preorder-grid { grid-template-columns: 1fr; }
}
.preorder-card {
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.preorder-featured {
  border-color: rgba(212,149,42,0.3);
  background: rgba(212,149,42,0.03);
}
.preorder-secondary {
  background: rgba(255,255,255,0.01);
}
.preorder-card-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.preorder-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 500;
}
.preorder-card-body {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}
.preorder-form,
.follow-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}
.preorder-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}
.preorder-input:focus { border-color: rgba(212,149,42,0.4); }
.preorder-input::placeholder { color: var(--text-dim); opacity: 0.5; }
.preorder-submit {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: none;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.preorder-submit:hover { background: var(--gold-light); }
.follow-submit {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  align-self: flex-start;
}
.follow-submit:hover { border-color: rgba(255,255,255,0.35); color: var(--text); }
.art-note {
  margin-top: 3rem;
  padding: 1.2rem 1.8rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
}
.art-note-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
}
.art-note-body {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: var(--text-dim);
  opacity: 0.7;
  line-height: 1.6;
}

/* STAT SOURCE */
.hook-stat-source {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  color: rgba(237,232,224,0.25);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

/* ─── HOOK GRID LAYOUT ─── */
.hook {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 6rem;
  align-items: center;
}
.hook-stat-block {
  text-align: left;
  margin-bottom: 0;
}

/* ─── HERO SCROLL CUE ─── */
.hero-scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 3; pointer-events: none;
}
.hsc-label {
  font-family: 'Outfit', sans-serif; font-size: 0.48rem;
  letter-spacing: 0.35em; color: rgba(212,149,42,0.28);
  text-transform: uppercase;
  animation: hscFade 2.6s ease-in-out infinite;
}
.hsc-line {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(212,149,42,0.5) 0%, rgba(212,149,42,0) 100%);
  transform-origin: top;
  animation: hscDrop 2.6s ease-in-out infinite;
}
@keyframes hscFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
@keyframes hscDrop {
  0% { transform: scaleY(0); opacity: 0; }
  25% { opacity: 1; }
  65% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ─── HERO FLOAT CARD ─── */
.hero-fc {
  width: clamp(230px, 26vw, 320px);
  position: relative;
  animation: heroCardFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 50px rgba(212,149,42,0.12));
}
@keyframes heroCardFloat {
  0%, 100% { transform: rotate(-3deg) translateY(0px); }
  50% { transform: rotate(-2deg) translateY(-18px); }
}
.hfc-shine { display: none; }
.hfc-art {
  position: relative;
}
.hfc-art .kcard-svg { width: 100%; height: 100%; display: block; }
.hfc-num {
  position: absolute; top: 10px; right: 12px;
  font-family: 'Syne', sans-serif; font-size: 0.5rem;
  color: rgba(255,255,255,0.14); letter-spacing: 0.2em;
}
.hfc-info {
  padding: 0.9rem 0.2rem 0.85rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.hfc-title-wrap { display: flex; flex-direction: column; gap: 0.15rem; }
.hfc-name {
  font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700;
  color: #EDE8E0; line-height: 1.2;
}
.hfc-deva {
  font-family: 'Tiro Devanagari', serif; font-size: 0.75rem;
  font-style: italic; color: rgba(212,149,42,0.5);
}
.hfc-meta {
  display: flex; justify-content: space-between; align-items: center;
}
.hfc-rarity {
  font-family: 'Outfit', sans-serif; font-size: 0.42rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #F0B84A; border: 1px solid rgba(240,184,74,0.32);
  background: rgba(240,184,74,0.04); padding: 0.16rem 0.55rem; border-radius: 2px;
}
.hfc-series {
  font-family: 'Outfit', sans-serif; font-size: 0.4rem;
  color: rgba(255,255,255,0.14); letter-spacing: 0.1em;
}
.hfc-img { width: 100%; height: auto; display: block; object-fit: contain; }

/* ─── HERO ROTATOR ─── */
.hero-rotator { position: relative; width: clamp(230px, 26vw, 320px); }
.hero-rotator .hero-fc {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; pointer-events: none;
  transition: opacity 0.9s ease;
}
.hero-rotator .hero-fc.hero-fc-active {
  position: relative; opacity: 1; pointer-events: auto;
}

/* ─── SET COUNT LINE ─── */
.set-count-line {
  text-align: center; margin-top: 4rem;
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream-dim); letter-spacing: 0.02em;
}
.set-count-line em { font-style: italic; color: var(--gold); }

/* ─── RARITY GRID (3-tier) ─── */
.rarity-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
.rarity-philosophy {
  max-width: 700px; margin: 3rem auto 0; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem;
  color: var(--cream-dim); line-height: 1.75;
}
.rarity-philosophy em { display: block; margin-top: 0.8rem; font-size: 0.85rem; not-italic: none; color: var(--text-dim); font-style: normal; }
.echoes-feature {
  max-width: 560px; margin: 4rem auto 0;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(127,216,208,0.28);
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(127,216,208,0.08) 0%, rgba(212,149,42,0.02) 60%, transparent 100%);
  box-shadow: 0 0 60px rgba(127,216,208,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}
.echoes-feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #7FD8D0, #C9A84C, #7FD8D0, transparent);
  animation: topShimmer 2.5s ease-in-out infinite;
}
.echoes-feature-sym { width: 92px; height: auto; margin: 0 auto 1.2rem; display: block; filter: drop-shadow(0 0 18px rgba(127,216,208,0.35)); }
.echoes-feature-name {
  font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #7FD8D0, #E8C96B, #7FD8D0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.9rem;
}
.echoes-feature-desc { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--cream-dim); line-height: 1.7; max-width: 460px; margin: 0 auto; }

/* ─── SHIPPING NOTE ─── */
.shipping-note {
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; letter-spacing: 0.04em;
  color: var(--gold-dark); margin-top: 0.6rem;
}

/* ─── GATE ENTRANCE ─── */
#gate-entrance {
  position: fixed; inset: 0; z-index: 10000;
  background: #060814;
  pointer-events: all; overflow: hidden;
}
.ge-sky {
  position: absolute; top: 0; left: 0; right: 0; height: 55vh;
  background:
    radial-gradient(ellipse 50% 55% at 50% -5%, rgba(42,31,107,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 20% 25% at 28% 12%, rgba(212,149,42,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 20% 25% at 72% 12%, rgba(212,149,42,0.04) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.ge-burst {
  position: absolute; inset: 0; z-index: 8; pointer-events: none; opacity: 0;
  background: radial-gradient(ellipse 18% 35% at 50% 50%,
    rgba(248,223,160,0.75) 0%, rgba(212,149,42,0.35) 35%, transparent 70%);
}
#gate-entrance.opening .ge-burst { animation: geBurst 0.55s ease-out forwards; }
@keyframes geBurst {
  0% { opacity: 0; } 18% { opacity: 1; } 100% { opacity: 0; }
}
.ge-torana {
  position: absolute; top: 0; left: 0; right: 0; height: 160px;
  z-index: 7; pointer-events: none;
  transition: opacity 0.5s ease;
}
#gate-entrance.opening .ge-torana { opacity: 0; }
.ge-panel {
  position: absolute; top: 0; bottom: 0; width: calc(50% + 1px);
  transition: transform 1.65s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.ge-panel-left {
  left: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent 0, transparent 79px,
      rgba(212,149,42,0.033) 79px, rgba(212,149,42,0.033) 80px),
    linear-gradient(100deg, #07091A 0%, #0A0E24 100%);
  border-right: 1px solid rgba(212,149,42,0.65);
  box-shadow: inset -60px 0 120px rgba(212,149,42,0.04);
}
.ge-panel-right {
  right: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(212,149,42,0.033) 0, rgba(212,149,42,0.033) 1px,
      transparent 1px, transparent 80px),
    linear-gradient(80deg, #0A0E24 0%, #07091A 100%);
  border-left: 1px solid rgba(212,149,42,0.65);
  box-shadow: inset 60px 0 120px rgba(212,149,42,0.04);
}
.ge-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(180deg, rgba(212,149,42,0.055) 0%, transparent 100%);
  pointer-events: none;
}
.ge-panel::after {
  content: '';
  position: absolute; top: 33%; left: 5%; right: 5%; height: 1px;
  background: rgba(212,149,42,0.22);
  box-shadow: 0 0 10px rgba(212,149,42,0.08);
}
.ge-col-inner {
  position: absolute; top: 0; bottom: 0; width: 22px; z-index: 2;
}
.ge-panel-left .ge-col-inner {
  right: 0;
  background: linear-gradient(270deg, rgba(212,149,42,0.1) 0%, rgba(212,149,42,0.03) 60%, transparent 100%);
  border-right: 1px solid rgba(212,149,42,0.55);
}
.ge-panel-right .ge-col-inner {
  left: 0;
  background: linear-gradient(90deg, rgba(212,149,42,0.1) 0%, rgba(212,149,42,0.03) 60%, transparent 100%);
  border-left: 1px solid rgba(212,149,42,0.55);
}
.ge-handle {
  position: absolute; top: 47%;
  width: 11px; height: 26px;
  border: 1px solid rgba(212,149,42,0.52);
  background: rgba(212,149,42,0.07);
  border-radius: 2px; z-index: 3;
}
.ge-panel-left .ge-handle  { right: 26px; }
.ge-panel-right .ge-handle { left: 26px; }
.ge-band2 {
  position: absolute; top: 68%; left: 5%; right: 5%; height: 1px;
  background: rgba(212,149,42,0.13); pointer-events: none;
}
.ge-band3 {
  position: absolute; top: 54%; left: 5%; right: 5%; height: 1px;
  background: rgba(212,149,42,0.09); pointer-events: none;
}
.ge-star {
  position: absolute; width: 2px; height: 2px;
  background: rgba(200,190,255,0.7); border-radius: 50%;
  animation: starPulse 4s ease-in-out infinite;
}
.ge-star.gs-gold { background: rgba(212,149,42,0.9); width: 3px; height: 3px; }
.ge-star:nth-child(2n) { animation-delay: -1.8s; }
.ge-star:nth-child(3n) { animation-delay: -3.1s; animation-duration: 5.5s; }
.ge-star:nth-child(5n) { animation-delay: -0.9s; animation-duration: 3s; width: 1.5px; height: 1.5px; }
.ge-star:nth-child(7n) { animation-delay: -2.4s; animation-duration: 6.5s; }
.ge-seam-glow {
  position: absolute; top: 0; bottom: 0;
  left: calc(50% - 3px); width: 6px;
  background: linear-gradient(180deg,
    rgba(212,149,42,0) 0%,
    rgba(212,149,42,0.6) 20%,
    rgba(248,223,160,0.95) 50%,
    rgba(212,149,42,0.6) 80%,
    rgba(212,149,42,0) 100%);
  filter: blur(4px); pointer-events: none; z-index: 3;
  transform-origin: center center;
  animation: seamPulse 2.8s ease-in-out infinite;
}
@keyframes seamPulse {
  0%, 100% { opacity: 0.35; filter: blur(6px); transform: scaleX(1); }
  50% { opacity: 1; filter: blur(2.5px) brightness(1.3); transform: scaleX(1.4); }
}
#gate-entrance.pre-opening .ge-seam-glow {
  animation: seamFlare 0.28s ease-out forwards;
}
@keyframes seamFlare {
  0%   { opacity: 0.6; filter: blur(4px); transform: scaleX(1.2); }
  100% { opacity: 1; filter: blur(1px) brightness(2.5); transform: scaleX(3.5); }
}
#gate-entrance.opening .ge-seam-glow {
  animation: seamClose 0.4s ease-out forwards;
}
@keyframes seamClose {
  0%   { opacity: 1; filter: blur(2px); transform: scaleX(1); }
  100% { opacity: 0; filter: blur(14px); transform: scaleX(0.5); }
}
.ge-diya {
  position: absolute; bottom: 3.8rem; z-index: 5;
  width: 8px; height: 18px; border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at 50% 85%,
    rgba(248,220,100,1) 0%, rgba(232,84,26,0.85) 50%, transparent 100%);
  animation: geDiyaFlicker 2.2s ease-in-out infinite;
  filter: blur(0.4px);
  transition: opacity 0.2s ease;
}
.ge-diya::after {
  content: '';
  position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 7px;
  background: rgba(212,149,42,0.2);
  border-radius: 50%; filter: blur(2px);
}
.ge-diya-l { left: calc(50% - 24px); }
.ge-diya-r { left: calc(50% + 16px); animation-delay: -1.1s; }
@keyframes geDiyaFlicker {
  0%, 100% { transform: scaleX(1) scaleY(1); opacity: 0.8; }
  33% { transform: scaleX(1.18) scaleY(1.22); opacity: 1; }
  66% { transform: scaleX(0.82) scaleY(1.05); opacity: 0.88; }
}
#gate-entrance.opening .ge-diya { opacity: 0; }
.ge-threshold {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(212,149,42,0.3) 25%,
    rgba(248,183,74,0.65) 50%,
    rgba(212,149,42,0.3) 75%, transparent 100%);
  z-index: 4; box-shadow: 0 -6px 20px rgba(212,149,42,0.08);
  transition: opacity 0.3s ease;
}
#gate-entrance.opening .ge-threshold { opacity: 0; }
.ge-skip {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.22em;
  color: rgba(212,149,42,0.42); text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  border: 1px solid rgba(212,149,42,0.18);
  cursor: pointer; z-index: 10001; opacity: 0;
  animation: geFadeIn 0.45s ease 1.0s forwards;
  transition: color 0.2s, border-color 0.2s;
  user-select: none;
}
.ge-skip:hover { color: rgba(212,149,42,0.85); border-color: rgba(212,149,42,0.48); }
@keyframes geFadeIn { to { opacity: 1; } }
#gate-entrance.opening .ge-panel-left  { transform: translateX(-100%); }
#gate-entrance.opening .ge-panel-right { transform: translateX(100%); }

/* PREORDER SEC SUB */
.preorder-sec-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(237,232,224,0.5);
  margin-top: 0.6rem;
  font-style: italic;
}

/* EARLY ACCESS BAR */
.early-access-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(212,149,42,0.05);
  border: 1px solid rgba(212,149,42,0.18);
  padding: 1rem 1.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.eab-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  white-space: nowrap;
}
.eab-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: rgba(237,232,224,0.55);
  line-height: 1.5;
}

/* PREORDER PAYMENT NOTE */
.preorder-payment-note {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  color: rgba(237,232,224,0.3);
  line-height: 1.5;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* UNIVERSE SECTION v2 */
.universe-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.7;
  margin: 0.75rem auto 0;
}
.universe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  margin-top: 3rem;
}
.ucard {
  background: var(--bg);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.2s;
}
.ucard:hover { background: rgba(255,255,255,0.025); }
.ucard-active { background: rgba(212,149,42,0.03); }
.ucard-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}
.ucard-deva {
  font-family: 'Tiro Devanagari', serif;
  font-size: 0.9rem;
  color: var(--text-dim);
  opacity: 0.6;
}
.ucard-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0.2rem 0 0.5rem;
  flex: 1;
}
.ucard-status {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  align-self: flex-start;
  margin-top: auto;
}
.ucard-open { background: rgba(212,149,42,0.12); color: var(--gold); border: 1px solid rgba(212,149,42,0.25); }
.ucard-soon { background: rgba(100,180,100,0.08); color: #7acc7a; border: 1px solid rgba(100,180,100,0.2); }
.ucard-works { background: rgba(255,255,255,0.04); color: var(--text-dim); border: 1px solid rgba(255,255,255,0.08); }
.ucard-vote {
  border: 1px dashed rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.01) !important;
}
.ucard-vote-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* MANIFESTO v2 */
.mani-closing {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* FOOTER v2 */
.foot-top {
  margin-bottom: 1.5rem;
}
.foot-deva {
  font-family: 'Tiro Devanagari', serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-left: 0.5rem;
  opacity: 0.5;
}
.foot-links {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.foot-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-decoration: none;
  opacity: 0.5;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.foot-link:hover { opacity: 0.9; }
