:root {
  --c-void:      #0A0414;
  --c-bg:        #14082A;
  --c-bg-deep:   #1A0B2E;
  --c-surface:   #241541;
  --c-surface-2: #2E1A52;
  --c-line:      rgba(245, 232, 255, .09);
  --c-line-2:    rgba(245, 232, 255, .16);
  --c-gold:      #F5B829;
  --c-gold-soft: #F59E0B;
  --c-amber:     #FFC857;
  --c-magenta:   #EC4899;
  --c-violet:    #8B5CF6;
  --c-emerald:   #10B981;
  --c-text:      #F4E8FF;
  --c-mute:      #B3A4D1;
  --c-mute-2:    #8E7CB8;
  --c-grad:      linear-gradient(135deg, #F5B829 0%, #EC4899 50%, #8B5CF6 100%);
  --c-grad-rev:  linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F5B829 100%);
  --c-grad-soft: linear-gradient(135deg, rgba(245,184,41,.22) 0%, rgba(236,72,153,.22) 50%, rgba(139,92,246,.22) 100%);
  --ease:        cubic-bezier(.22, 1, .36, 1);
  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --shadow-1:    0 1px 0 rgba(255,255,255,.03), 0 24px 40px -20px rgba(0,0,0,.6);
  --shadow-glow: 0 0 40px rgba(245, 184, 41, .25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--c-void);
}
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(15px, 1vw + 12px, 17px);
  line-height: 1.6;
  color: var(--c-text);
  background:
    radial-gradient(1400px 700px at 80% -10%, rgba(245, 184, 41, .08), transparent 60%),
    radial-gradient(1100px 600px at 10% 30%, rgba(139, 92, 246, .14), transparent 60%),
    radial-gradient(900px 500px at 60% 100%, rgba(236, 72, 153, .1), transparent 60%),
    var(--c-bg);
  background-attachment: fixed;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { flex: 1; position: relative; z-index: 1; }

img, svg, video { display: block; max-width: 100%; height: auto; }
video { background: var(--c-bg-deep); }

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
button, a, .btn, .burger, .chat__toggle, .nav a, .wheel__spin, .onboarding__dot {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.01em;
  overflow-wrap: break-word;
  word-break: break-word;
  padding-bottom: .08em;
}
h1 { font-size: clamp(2.4rem, 5.4vw + .5rem, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 2.6vw + .5rem, 2.8rem); }
h3 { font-size: clamp(1.4rem, 1.4vw + .8rem, 2rem); }
h4 { font-size: clamp(1.1rem, .6vw + .9rem, 1.35rem); font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0; }

p { overflow-wrap: break-word; word-break: break-word; }

::selection { background: var(--c-magenta); color: #fff; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
}
.container--wide { max-width: 1640px; }
@media (max-width: 820px) { .container { padding-inline: 20px; } }
@media (max-width: 430px) { .container { padding-inline: 16px; } }

.section {
  padding-block: clamp(60px, 7vw, 100px);
  position: relative;
}
.section--tight { padding-block: clamp(48px, 5vw, 72px); }
@media (max-width: 820px) {
  .section { padding-block: clamp(30px, 4vw, 50px); }
  .section--tight { padding-block: clamp(24px, 3vw, 36px); }
}
.section__head {
  margin-bottom: clamp(40px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section__head--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.section__title {
  background: var(--c-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: .14em;
}
.section__lead {
  font-size: clamp(1.05rem, .5vw + .9rem, 1.3rem);
  color: var(--c-mute);
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border-radius: 100px;
  border: 1px solid transparent;
  position: relative;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), color .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  color: #1A0B2E;
  background: var(--c-grad);
  box-shadow: 0 12px 28px -10px rgba(245, 184, 41, .55), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFE9A8 0%, #F8AEDF 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity .35s var(--ease);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover { box-shadow: 0 18px 38px -10px rgba(236, 72, 153, .55); }

.btn--ghost {
  color: var(--c-text);
  background: rgba(245, 232, 255, .04);
  border-color: var(--c-line-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(245, 232, 255, .08);
  border-color: rgba(245, 184, 41, .5);
  color: var(--c-amber);
}

.btn--soft {
  color: var(--c-amber);
  background: rgba(245, 184, 41, .08);
  border-color: rgba(245, 184, 41, .35);
}
.btn--soft:hover { background: rgba(245, 184, 41, .14); border-color: var(--c-amber); }

.btn--lg { padding: 20px 40px; font-size: 1.05rem; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease), -webkit-backdrop-filter .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header.is-scrolled {
  background-color: rgba(10, 4, 20, .82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--c-line-2);
  box-shadow: 0 14px 30px -18px rgba(0, 0, 0, .65);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  padding-block: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-text);
  transition: opacity .25s var(--ease);
}
.brand:hover { opacity: .85; }
.brand__mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(245, 184, 41, .55));
  transition: transform .5s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.04); }
.brand__text {
  background: linear-gradient(180deg, #FFF7DD 0%, #F5B829 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: .02em;
}

.nav { display: flex; align-items: center; gap: clamp(24px, 2.6vw, 40px); }
.nav a {
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 10px 4px 10px 22px;
  color: var(--c-mute);
  transition: color .25s var(--ease);
  position: relative;
}
.nav a:hover, .nav a.is-active { color: var(--c-text); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 11px; height: 11px;
  transform: translateY(-50%) translateX(-6px) scale(0) rotate(45deg);
  background: var(--c-grad);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  filter: drop-shadow(0 0 8px rgba(245, 184, 41, .75));
  transition: transform .4s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after {
  transform: translateY(-50%) translateX(0) scale(1) rotate(45deg);
}

.burger {
  display: none;
  width: 46px; height: 46px;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(245, 232, 255, .04);
  border: 1px solid var(--c-line-2);
  cursor: pointer;
  touch-action: manipulation;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.burger:hover { background: rgba(245, 232, 255, .08); border-color: rgba(245, 184, 41, .5); }
.burger span {
  position: absolute;
  left: 13px; right: 13px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); background: var(--c-amber); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); background: var(--c-amber); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    width: 100%;
    max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 80px));
    z-index: 100;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 32px 40px;
    background:
      radial-gradient(800px 400px at 90% -20%, rgba(245, 184, 41, .14), transparent 60%),
      radial-gradient(700px 500px at 10% 110%, rgba(139, 92, 246, .2), transparent 60%),
      linear-gradient(180deg, #14082A 0%, #1A0B2E 100%);
    border-top: 1px solid var(--c-line-2);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .55);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s var(--ease), visibility 0s linear .35s;
  }
  .nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .35s var(--ease), opacity .3s var(--ease), visibility 0s linear 0s;
  }
  .nav a {
    width: 100%;
    padding: 20px 0;
    font-size: 1.5rem;
    font-family: 'Fraunces', serif;
    text-align: left;
    border-bottom: 1px solid var(--c-line);
    color: var(--c-text);
  }
  .nav a::after { display: none; }
  @media (max-width: 820px) {
    .nav { padding: 20px 20px 32px; }
  }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(80px, 8vw, 160px) clamp(60px, 6vw, 120px);
  min-height: clamp(640px, 86vh, 920px);
  display: flex;
  align-items: center;
}

.hero--poster {
  display: block;
  padding: 0;
  height: 100dvh;
  min-height: 640px;
  max-height: none;
  margin-top: calc(-1 * var(--header-offset, 80px));
}

.hero__poster-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-offset, 80px) + clamp(8px, 2vw, 32px)) clamp(20px, 4vw, 64px) clamp(20px, 3vw, 36px);
}
.hero__poster-stack {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 60px);
  max-width: 1180px;
  margin-inline: auto;
  width: 100%;
}
.hero__poster-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 2vw, 28px);
  max-width: 820px;
}
@media (max-width: 820px) {
  .hero__poster-stack { flex-direction: column; gap: 20px; }
  .hero__poster-main { max-width: 100%; }
}

.hero__poster-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2px, .4vw, 8px);
  position: relative;
  margin: 0;
  padding-bottom: .12em;
  width: 100%;
}
.hero__poster-title .word { text-shadow: 0 2px 20px rgba(0, 0, 0, .65), 0 1px 3px rgba(0, 0, 0, .5); }
.hero__poster-title em.word { text-shadow: none; filter: drop-shadow(0 2px 18px rgba(0, 0, 0, .55)) drop-shadow(0 0 24px rgba(245, 184, 41, .25)); }
.hero__poster-line {
  display: block;
  font-size: clamp(2.2rem, 5.4vw, 5.4rem);
  color: var(--c-text);
  padding: 0 .04em .08em;
  text-align: center;
  line-height: 1.1;
}
.hero__poster-line em {
  background: var(--c-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero__poster-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: wordIn .8s cubic-bezier(.22, 1, .36, 1) forwards;
  will-change: transform, opacity;
  padding-bottom: .04em;
}
.hero__poster-title .word em,
.hero__poster-title em.word { font-style: italic; }
.word--1 { animation-delay: 0s;   }
.word--2 { animation-delay: .08s; }
.word--3 { animation-delay: .16s; }
.word--4 { animation-delay: .26s; }
.word--5 { animation-delay: .36s; }
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__poster-lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, .8vw + .9rem, 1.5rem);
  line-height: 1.5;
  color: var(--c-text);
  text-align: center;
  margin-inline: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .65), 0 1px 3px rgba(0, 0, 0, .5);
  animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1) .45s backwards;
}
.hero__poster-lead em {
  font-style: italic;
  background: var(--c-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .55)) drop-shadow(0 0 16px rgba(245, 184, 41, .2));
}

.hero__poster-seal {
  position: relative;
  z-index: 4;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--c-line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-mute);
  flex: 0 0 auto;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px) scale(.92);
  animation: sealIn .75s cubic-bezier(.22, 1, .36, 1) .65s forwards;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
@keyframes sealIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero__poster-seal::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 41, .18), transparent 70%);
  pointer-events: none;
}
.hero__poster-seal:hover {
  transform: scale(1.06);
  border-color: var(--c-amber);
}
.hero__poster-seal-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: var(--c-amber);
  opacity: 0;
  transform: scale(.85);
  animation:
    ringIn .75s cubic-bezier(.22, 1, .36, 1) .85s forwards,
    spinSlow 18s linear infinite 1.5s;
}
@keyframes ringIn {
  from { opacity: 0; transform: scale(.85) rotate(-12deg); }
  to   { opacity: 1; transform: scale(1)   rotate(0);     }
}
.hero__poster-seal-icon {
  width: 30px; height: 30px;
  color: var(--c-amber);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: iconFade .5s var(--ease-out) 1.05s forwards;
  transition: transform .35s var(--ease);
}
@keyframes iconFade {
  to { opacity: 1; }
}
.hero__poster-seal:hover .hero__poster-seal-icon { transform: scale(1.15); color: #FFF7DD; }
@keyframes spinSlow {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 520px) {
  .hero__poster-seal { width: 100px; height: 100px; }
  .hero__poster-seal-icon { width: 22px; height: 22px; }
}

.hero--poster .hero__gem {
  position: absolute;
  width: clamp(48px, 5vw, 84px);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 0 22px rgba(245, 184, 41, .7));
  animation: gemDrift 9s ease-in-out infinite;
  pointer-events: none;
}
.hero--poster .hero__gem--1 { top: 22%;  left: 22%;  animation-delay: 0s;   }
.hero--poster .hero__gem--2 { top: 20%;  right: 24%; animation-delay: 1.2s; }
.hero--poster .hero__gem--3 { bottom: 24%; left: 26%; animation-delay: 2.4s; }
.hero--poster .hero__gem--4 { bottom: 22%; right: 22%; animation-delay: 3.6s; }
.hero--poster .hero__gem--5 {
  top: 48%; left: 16%;
  width: clamp(36px, 3.4vw, 56px);
  animation-delay: 4.8s;
  filter: drop-shadow(0 0 16px rgba(236, 72, 153, .65));
}
.hero--poster .hero__gem--6 {
  top: 50%; right: 14%;
  width: clamp(36px, 3.4vw, 56px);
  animation-delay: 6s;
  filter: drop-shadow(0 0 16px rgba(139, 92, 246, .65));
}
@media (max-width: 980px) {
  .hero--poster .hero__gem--1 { top: 18%; left: 8%; }
  .hero--poster .hero__gem--2 { top: 18%; right: 10%; }
  .hero--poster .hero__gem--3 { bottom: 22%; left: 12%; }
  .hero--poster .hero__gem--4 { bottom: 20%; right: 10%; }
}
@keyframes gemDrift {
  0%, 100% { transform: translate(0, 0) rotate(0); opacity: .65; }
  25%      { transform: translate(14px, -22px) rotate(10deg); opacity: 1; }
  50%      { transform: translate(-12px, -38px) rotate(-8deg); opacity: .85; }
  75%      { transform: translate(20px, -16px) rotate(6deg); opacity: .95; }
}
@media (max-width: 520px) {
  .hero--poster .hero__gem--5, .hero--poster .hero__gem--6 { display: none; }
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  pointer-events: none;
  z-index: -2;
}
@media (max-width: 820px) {
  .hero__video { display: none; }
  .hero--poster .hero__media {
    background-image: url('/assets/img/hero/hero-bg.avif');
    background-size: cover;
    background-position: center;
    opacity: .55;
  }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 38% at 50% 50%, rgba(5, 2, 14, .72) 0%, rgba(5, 2, 14, .35) 55%, transparent 80%),
    radial-gradient(ellipse 55% 45% at 50% 55%, rgba(245, 184, 41, .1) 0%, transparent 60%),
    radial-gradient(ellipse 90% 90% at 50% 60%, transparent 0%, rgba(10, 4, 20, .5) 55%, rgba(5, 2, 14, .88) 90%, rgba(5, 2, 14, .96) 100%),
    linear-gradient(180deg, rgba(5, 2, 14, .45) 0%, transparent 22%, transparent 78%, rgba(5, 2, 14, .55) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; }
}
.hero__content { display: flex; flex-direction: column; gap: 28px; }
.hero__title {
  font-size: clamp(2.6rem, 5.4vw + .8rem, 5.8rem);
  font-weight: 600;
  line-height: 1.02;
}
.hero__title em {
  font-style: italic;
  background: var(--c-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero__title .word {
  display: inline-block;
  animation: wordRise 1.1s var(--ease-out) backwards;
}
.hero__title .word:nth-child(1) { animation-delay: .1s; }
.hero__title .word:nth-child(2) { animation-delay: .22s; }
.hero__title .word:nth-child(3) { animation-delay: .34s; }
.hero__title .word:nth-child(4) { animation-delay: .46s; }
.hero__title .word:nth-child(5) { animation-delay: .58s; }
.hero__title .word:nth-child(6) { animation-delay: .7s; }
@keyframes wordRise {
  from { opacity: 0; transform: translateY(40px) rotateX(40deg); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}
.hero__lead {
  font-size: clamp(1.05rem, .6vw + .9rem, 1.35rem);
  color: var(--c-mute);
  max-width: none;
  animation: fadeUp 1s var(--ease-out) .9s backwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 1s var(--ease-out) 1.05s backwards; }
.hero__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  animation: fadeUp 1s var(--ease-out) 1.2s backwards;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-item b {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--c-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero__meta-item span { color: var(--c-mute); font-size: .85rem; }

.hero__art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
  perspective: 1200px;
}
.hero__art img {
  width: 100%;
  max-width: 560px;
  filter:
    drop-shadow(0 30px 60px rgba(0, 0, 0, .6))
    drop-shadow(0 0 80px rgba(245, 184, 41, .35));
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-22px) rotate(1deg); }
}
.hero__gem {
  position: absolute;
  width: clamp(56px, 5vw, 84px);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(245, 184, 41, .7));
  animation: gemOrbit 9s ease-in-out infinite;
}
.hero__gem--1 { top: 8%;  left: -2%;  animation-delay: 0s; }
.hero__gem--2 { top: 26%; right: -4%; animation-delay: 1.4s; }
.hero__gem--3 { bottom: 14%; left: 4%; animation-delay: 2.6s; }
.hero__gem--4 { bottom: 4%;  right: 6%; animation-delay: 3.8s; }
@keyframes gemOrbit {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: .7; }
  25%      { transform: translate(8px, -14px) rotate(8deg); opacity: 1; }
  50%      { transform: translate(-6px, -20px) rotate(-6deg); opacity: .85; }
  75%      { transform: translate(10px, -8px) rotate(4deg); opacity: .95; }
}

.video-section {
  position: relative;
  padding-block: clamp(40px, 5vw, 80px);
}
.video-section__frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--c-bg-deep);
  border: 1px solid var(--c-line-2);
  box-shadow: 0 40px 80px -30px rgba(139, 92, 246, .35);
  isolation: isolate;
}
.video-section__frame::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--c-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .45;
  pointer-events: none;
  z-index: 2;
}
.video-section__frame video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-section__caption {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--c-mute);
  font-size: .95rem;
}
.video-section__caption .dot {
  display: inline-block;
  flex-shrink: 0;
  width: 10px; height: 10px;
  margin-left: 4px;
  border-radius: 50%;
  background: var(--c-emerald);
  box-shadow: 0 0 10px var(--c-emerald);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.3); }
}

.story-teaser {
  position: relative;
  overflow: hidden;
}
.story-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .story-teaser__grid { grid-template-columns: 1fr; }
}
.story-teaser__art {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-bg-deep);
  border: 1px solid var(--c-line-2);
}
.story-teaser__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.story-teaser__art:hover img { transform: scale(1.06); }
.story-teaser__art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 4, 20, .8) 100%);
  pointer-events: none;
}
.story-teaser__art--character {
  aspect-ratio: 3 / 4;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-teaser__art--character img {
  width: 82%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.story-teaser__art--character::after { display: none; }
.story-teaser__art--character:hover img { transform: scale(1.04) translateY(-6px); }
.story-teaser__text { display: flex; flex-direction: column; gap: 24px; }
.story-teaser__quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 1.1vw + 1rem, 1.6rem);
  color: var(--c-mute);
  border-left: 2px solid var(--c-gold);
  padding-left: 24px;
  line-height: 1.5;
}

.onboarding {
  position: relative;
  overflow: hidden;
}
.section.onboarding { padding-block: clamp(72px, 9vw, 100px); }
@media (max-width: 820px) {
  .section.onboarding { padding-block: clamp(36px, 5vw, 50px); }
}
.onboarding__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(245, 184, 41, .12), transparent 60%),
    linear-gradient(135deg, var(--c-surface) 0%, var(--c-bg-deep) 100%);
  border: 1px solid var(--c-line-2);
  min-height: 360px;
}
.onboarding__track {
  display: flex;
  width: 100%;
  transition: transform .7s var(--ease);
}
.onboarding__slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
@media (max-width: 820px) {
  .onboarding__slide { grid-template-columns: 1fr; }
}
.onboarding__controls {
  padding: 0 clamp(24px, 3vw, 44px) clamp(16px, 2vw, 28px);
}
.onboarding__copy { display: flex; flex-direction: column; gap: 18px; }
.onboarding__step {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-amber);
  font-weight: 600;
}
.onboarding__title { font-size: clamp(1.6rem, 1.6vw + 1rem, 2.4rem); }
.onboarding__desc { color: var(--c-mute); font-size: 1.05rem; }
.onboarding__demo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  margin-inline: auto;
  background: rgba(10, 4, 20, .55);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 8px;
  border: 1px solid var(--c-line-2);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.onboarding__demo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 184, 41, .2), transparent 60%);
  pointer-events: none;
}
.onboarding__cell {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 8px rgba(245, 184, 41, .3));
  transition: opacity .4s var(--ease), transform .5s var(--ease);
  position: relative;
}
.onboarding__cell.is-match { animation: cellMatch .9s ease-out forwards; }
@keyframes cellMatch {
  0%   { transform: scale(1); filter: drop-shadow(0 0 8px rgba(245, 184, 41, .3)); }
  40%  { transform: scale(1.25); filter: drop-shadow(0 0 24px rgba(245, 184, 41, .9)); }
  100% { transform: scale(0); opacity: 0; }
}
.onboarding__cell.is-falling { animation: cellFall .6s ease-out backwards; }
@keyframes cellFall {
  from { transform: translateY(-200%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.onboarding__controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.onboarding__dots { display: flex; gap: 10px; }
.onboarding__dot {
  width: 36px; height: 5px;
  border-radius: 100px;
  background: var(--c-line-2);
  transition: background .3s var(--ease), width .35s var(--ease);
  cursor: pointer;
}
.onboarding__dot.is-active { background: var(--c-grad); width: 56px; }
.onboarding__arrows { display: flex; gap: 10px; }
.onboarding__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245, 232, 255, .05);
  border: 1px solid var(--c-line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.onboarding__arrow:hover {
  background: rgba(245, 184, 41, .15);
  border-color: var(--c-amber);
  color: var(--c-amber);
}
.onboarding__arrow:active { transform: scale(.92); }
.onboarding__arrow svg { width: 22px; height: 22px; }
.onboarding__arrow[disabled] { opacity: .35; cursor: not-allowed; }

.features {
  position: relative;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .features__grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(245, 232, 255, .04), rgba(245, 232, 255, .01));
  border: 1px solid var(--c-line);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--c-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.feature-card:hover { transform: translateY(-4px); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-grad-soft);
  border: 1px solid var(--c-line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-amber);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card__title { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; }
.feature-card__desc { color: var(--c-mute); font-size: .98rem; line-height: 1.6; }
.feature-card__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(245, 184, 41, .07);
  pointer-events: none;
  z-index: 0;
}

.prereg {
  position: relative;
  overflow: hidden;
}
.section.prereg { padding-block: clamp(48px, 6vw, 88px); }
.prereg__copy { gap: 16px !important; }
.prereg .form { gap: 10px; }
.prereg .form__input { padding: 12px 16px; }
.prereg .form__submit { margin-top: 4px; }
.prereg__inner {
  border-radius: 24px;
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(800px 500px at 90% -10%, rgba(245, 184, 41, .2), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(139, 92, 246, .25), transparent 60%),
    linear-gradient(135deg, var(--c-surface) 0%, var(--c-bg-deep) 100%);
  border: 1px solid var(--c-line-2);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 980px) { .prereg__inner { grid-template-columns: 1fr; } }
.prereg__copy { display: flex; flex-direction: column; gap: 24px; }
.prereg__bonus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-amber);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.prereg__bonus svg { width: 18px; height: 18px; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: .8rem; color: var(--c-mute); letter-spacing: .08em; text-transform: uppercase; }
.form__input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(10, 4, 20, .55);
  border: 1px solid var(--c-line-2);
  border-radius: 14px;
  color: var(--c-text);
  font: inherit;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  min-width: 0;
}
.form__input:focus {
  outline: none;
  border-color: var(--c-amber);
  background: rgba(10, 4, 20, .75);
  box-shadow: 0 0 0 4px rgba(245, 184, 41, .14);
}
.form__input::placeholder { color: var(--c-mute-2); }
.form__hint { font-size: .8rem; color: var(--c-mute-2); }
.form__hint a { color: var(--c-amber); text-decoration: underline; text-underline-offset: 3px; }
.form__submit { margin-top: 6px; align-self: flex-start; }

.wheel {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
}
.wheel__disc {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  transition: transform 5s cubic-bezier(.17, .67, .15, .99);
  background:
    conic-gradient(
      from 0deg,
      #F5B829 0deg 45deg,
      #8B5CF6 45deg 90deg,
      #EC4899 90deg 135deg,
      #10B981 135deg 180deg,
      #F5B829 180deg 225deg,
      #8B5CF6 225deg 270deg,
      #EC4899 270deg 315deg,
      #10B981 315deg 360deg
    );
  border: 6px solid var(--c-gold);
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, .4),
    0 0 60px rgba(245, 184, 41, .35);
}
.wheel__disc::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .15);
  pointer-events: none;
}
.wheel__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: .95rem;
  color: #1A0B2E;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
}
.wheel__label {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  white-space: nowrap;
}
.wheel__hub {
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFF7DD, #F5B829 50%, #8B5CF6);
  box-shadow: 0 8px 22px rgba(0,0,0,.4), inset 0 -3px 6px rgba(0,0,0,.3);
  z-index: 3;
}
.wheel__pointer {
  position: absolute;
  top: -4%;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 48px;
  background: var(--c-grad);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .6));
  z-index: 4;
}
.wheel__spin {
  position: absolute;
  bottom: -68px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.wheel__result {
  position: absolute;
  bottom: -118px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  color: var(--c-amber);
  font-size: 1.1rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.wheel__result.is-on { opacity: 1; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .team__grid { grid-template-columns: 1fr; } }
.team-card {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(245, 232, 255, .04), rgba(245, 232, 255, .01));
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--c-line-2); }
.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-gold);
  box-shadow: 0 0 30px rgba(245, 184, 41, .35);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; }
.team-card__role { color: var(--c-amber); font-weight: 500; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.team-card__bio { color: var(--c-mute); font-size: .95rem; line-height: 1.6; }

.team__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(40px, 4vw, 64px);
}
@media (max-width: 820px) { .team__intro { grid-template-columns: 1fr; } }
.team__intro p { color: var(--c-mute); font-size: 1.05rem; line-height: 1.7; }

.download {
  position: relative;
  overflow: hidden;
}
.download__inner {
  border-radius: 28px;
  padding: clamp(40px, 5vw, 72px);
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(236, 72, 153, .2), transparent 60%),
    radial-gradient(700px 400px at 80% 80%, rgba(245, 184, 41, .2), transparent 60%),
    linear-gradient(135deg, var(--c-bg-deep) 0%, var(--c-surface) 100%);
  border: 1px solid var(--c-line-2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.download__title { font-size: clamp(2rem, 2.6vw + 1rem, 3.4rem); }
.download__lead { color: var(--c-mute); font-size: 1.1rem; max-width: none; }
.download__row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px 14px 20px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  color: #fff;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
  min-width: 200px;
}
.store-btn:hover { transform: translateY(-3px); border-color: var(--c-amber); }
.store-btn svg { width: 32px; height: 32px; flex-shrink: 0; }
.store-btn__txt { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.store-btn__txt small { font-size: .7rem; opacity: .75; letter-spacing: .05em; }
.store-btn__txt b { font-size: 1.15rem; font-weight: 600; margin-top: 2px; }

.site-footer {
  margin-top: clamp(60px, 8vw, 120px);
  padding-block: 56px 32px;
  border-top: 1px solid var(--c-line);
  background: linear-gradient(180deg, transparent, rgba(10, 4, 20, .65));
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-line);
}
@media (max-width: 980px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }
.footer-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-amber);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: var(--c-mute); font-size: .94rem; transition: color .2s var(--ease); }
.footer-col li a:hover { color: var(--c-text); }
.footer-col p { color: var(--c-mute); font-size: .94rem; line-height: 1.6; margin-top: 12px; }
.site-footer__bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--c-mute-2);
  font-size: .85rem;
}
.site-footer__meta { display: flex; flex-direction: column; gap: 4px; }
.site-footer .brand .brand__mark {
  animation: none;
}
.site-footer__socials {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer__socials a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 232, 255, .04);
  border: 1px solid var(--c-line);
  color: var(--c-mute);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.site-footer__socials a:hover {
  background: rgba(245, 184, 41, .14);
  border-color: var(--c-amber);
  color: var(--c-amber);
  transform: translateY(-2px);
}
.site-footer__socials a svg { width: 18px; height: 18px; }

.chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}
.chat__toggle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-grad);
  color: #1A0B2E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px -8px rgba(245, 184, 41, .55), 0 0 0 4px rgba(245, 184, 41, .15);
  position: relative;
  transition: transform .3s var(--ease);
}
.chat__toggle:hover { transform: scale(1.08); }
.chat__toggle svg { width: 28px; height: 28px; }
.chat__toggle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(245, 184, 41, .5);
  animation: ringPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0%   { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

.chat__panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  height: 460px;
  background: linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg-deep) 100%);
  border: 1px solid var(--c-line-2);
  border-radius: 22px;
  box-shadow: 0 28px 60px -16px rgba(0, 0, 0, .6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px) scale(.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .3s var(--ease), visibility 0s linear .35s;
}
.chat[data-open="true"] .chat__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .35s var(--ease), opacity .3s var(--ease), visibility 0s linear 0s;
}
.chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(10, 4, 20, .55);
  border-bottom: 1px solid var(--c-line);
}
.chat__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--c-gold);
  flex-shrink: 0;
}
.chat__avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat__title {
  display: flex; flex-direction: column;
  flex: 1;
  min-width: 0;
}
.chat__title b { font-size: .98rem; font-weight: 600; }
.chat__title small {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--c-emerald);
}
.chat__title small::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-emerald); box-shadow: 0 0 8px var(--c-emerald);
}
.chat__close {
  width: 32px; height: 32px;
  border-radius: 10px;
  color: var(--c-mute);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.chat__close:hover { background: var(--c-line); color: var(--c-text); }
.chat__close svg { width: 18px; height: 18px; }
.chat__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.chat__msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .92rem;
  line-height: 1.45;
  word-wrap: break-word;
}
.chat__msg--bot {
  background: rgba(245, 232, 255, .07);
  border: 1px solid var(--c-line);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat__msg--me {
  background: var(--c-grad);
  color: #1A0B2E;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat__typing {
  display: inline-flex; gap: 4px;
  padding: 12px 14px;
  background: rgba(245, 232, 255, .07);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat__typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-mute);
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat__typing span:nth-child(2) { animation-delay: .2s; }
.chat__typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30%           { transform: translateY(-5px); opacity: 1; }
}
.chat__form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--c-line);
  background: rgba(10, 4, 20, .4);
}
.chat__input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(10, 4, 20, .6);
  border: 1px solid var(--c-line-2);
  border-radius: 12px;
  color: var(--c-text);
  font: inherit;
  min-width: 0;
}
.chat__input:focus { outline: none; border-color: var(--c-amber); }
.chat__send {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-grad);
  color: #1A0B2E;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s var(--ease);
}
.chat__send:hover { transform: scale(1.05); }
.chat__send svg { width: 20px; height: 20px; }

@media (max-width: 520px) {
  .chat { bottom: 16px; right: 16px; }
  .chat__panel {
    width: calc(100vw - 32px);
    max-width: 360px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 4, 20, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.modal[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s var(--ease), visibility 0s linear 0s;
}
.modal__frame {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  background: var(--c-bg-deep);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--c-line-2);
  transform: scale(.92);
  transition: transform .35s var(--ease);
}
.modal[data-open="true"] .modal__frame { transform: scale(1); }
.modal__frame video { width: 100%; height: 100%; object-fit: cover; }
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10, 4, 20, .75);
  color: var(--c-text);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.modal__close:hover { background: var(--c-amber); color: #1A0B2E; }
.modal__close svg { width: 22px; height: 22px; }

.modal--article .modal__article {
  position: relative;
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  background: linear-gradient(160deg, var(--c-surface), var(--c-bg-deep));
  border: 1px solid var(--c-line-2);
  border-radius: 22px;
  overflow: hidden;
  transform: scale(.94);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.modal--article[data-open="true"] .modal__article { transform: scale(1); }
.modal__article-body {
  overflow-y: auto;
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.modal__article-body .article-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(245, 184, 41, .12);
  color: var(--c-amber);
  border: 1px solid rgba(245, 184, 41, .3);
}
.modal__article-body h2 {
  font-size: clamp(1.5rem, 2vw + .8rem, 2.2rem);
  background: var(--c-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: .14em;
}
.modal__article-body .article-meta {
  color: var(--c-mute-2);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.modal__article-body p {
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.75;
}
.modal__article-body h3 {
  font-size: 1.2rem;
  margin-top: 8px;
  color: var(--c-amber);
}
.modal__article-body blockquote {
  border-left: 2px solid var(--c-gold);
  padding-left: 18px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--c-mute);
  font-size: 1.1rem;
}
.modal--article .modal__close {
  z-index: 3;
  background: rgba(10, 4, 20, .85);
}

.toast-host {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 4, 20, .65);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.toast-host[data-open="true"] {
  opacity: 1; visibility: visible;
  transition: opacity .3s var(--ease), visibility 0s linear 0s;
}
.toast {
  background: linear-gradient(160deg, var(--c-surface), var(--c-bg-deep));
  border: 1px solid var(--c-line-2);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 440px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .55);
  transform: translateY(20px) scale(.96);
  transition: transform .35s var(--ease);
}
.toast-host[data-open="true"] .toast { transform: translateY(0) scale(1); }
.toast__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.toast__icon svg { width: 28px; height: 28px; }
.toast--ok .toast__icon { background: rgba(16, 185, 129, .18); color: var(--c-emerald); }
.toast--err .toast__icon { background: rgba(220, 38, 38, .18); color: #f87171; }
.toast__text b { display: block; font-family: 'Fraunces', serif; font-size: 1.3rem; margin-bottom: 4px; }
.toast__text span { color: var(--c-mute); font-size: .92rem; }

.first-reveal {
  animation: revealUp 1s var(--ease-out) both;
}
.first-reveal--d1 { animation-delay: .15s; }
.first-reveal--d2 { animation-delay: .3s; }
.first-reveal--d3 { animation-delay: .45s; }
.first-reveal--d4 { animation-delay: .6s; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  -webkit-clip-path: inset(20px 0 0 0);
  clip-path: inset(20px 0 0 0);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out), clip-path 1.1s var(--ease-out);
  will-change: opacity, transform, clip-path;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__video, .video-section__frame video, .modal__frame video { display: none; }
}

.partners-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .partners-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .partners-top { grid-template-columns: 1fr; } }
.partner-card {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(245, 232, 255, .05), rgba(245, 232, 255, .01));
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: 16px;
  text-align: center;
  align-items: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
  min-height: 260px;
  justify-content: space-between;
}
.partner-card:hover { transform: translateY(-4px); border-color: var(--c-amber); }
.partner-card__logo {
  width: 100%;
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--c-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: .04em;
}
.partner-card__logo--img {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: inherit;
  height: 60px;
  padding: 4px 8px;
}
.partner-card__logo--img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
  transition: opacity .25s var(--ease);
}
.partner-card:hover .partner-card__logo--img img { opacity: 1; }
.partner-card__bonus {
  font-size: .98rem;
  color: var(--c-text);
  font-weight: 500;
}
.partner-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--c-amber);
}
.partner-card__rating svg { width: 16px; height: 16px; }

.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.articles__grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1280px) { .articles__grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1100px) { .articles__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .articles__grid, .articles__grid--4 { grid-template-columns: 1fr; } }
.article-card {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(245, 232, 255, .05), rgba(245, 232, 255, .01));
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column; gap: 14px;
}
.article-card:hover { transform: translateY(-4px); border-color: var(--c-line-2); }
.article-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(245, 184, 41, .12);
  color: var(--c-amber);
  border: 1px solid rgba(245, 184, 41, .3);
}
.article-card h3 { font-size: 1.3rem; }
.article-card p { color: var(--c-mute); font-size: .94rem; line-height: 1.6; }

.responsible {
  margin-top: 32px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(10, 4, 20, .5);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.responsible__icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
}
.responsible__text { flex: 1; min-width: 240px; color: var(--c-mute); font-size: .94rem; line-height: 1.6; }
.responsible__centers {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 16px;
}
.responsible__centers a {
  padding: 10px 16px;
  border: 1px solid var(--c-line-2);
  border-radius: 12px;
  color: var(--c-mute);
  font-size: .88rem;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.responsible__centers a:hover { color: var(--c-amber); border-color: var(--c-amber); }

.minislot {
  position: relative;
  border-radius: 28px;
  padding: clamp(12px, 4vw, 56px);
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(245, 184, 41, .14), transparent 60%),
    linear-gradient(135deg, var(--c-surface) 0%, var(--c-bg-deep) 100%);
  border: 1px solid var(--c-line-2);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 980px) { .minislot { grid-template-columns: 1fr; } }
.minislot__copy { display: flex; flex-direction: column; gap: 20px; }
.minislot__machine {
  background:
    linear-gradient(180deg, rgba(245, 184, 41, .15), rgba(139, 92, 246, .15)),
    rgba(10, 4, 20, .65);
  border: 2px solid var(--c-gold);
  border-radius: 20px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 24px 40px -12px rgba(0, 0, 0, .5);
}
.minislot__reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 88px;
  background: rgba(10, 4, 20, .8);
  border-radius: 14px;
  padding: 10px;
  border: 1px solid var(--c-line-2);
  overflow: hidden;
  position: relative;
}
.minislot__reel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(245, 232, 255, .03);
}
.minislot__reel-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 1.8s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}
.minislot__reel-track img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(245, 184, 41, .35));
}
.minislot__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.minislot__balance {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(10, 4, 20, .6);
  border: 1px solid var(--c-line-2);
  border-radius: 12px;
  font-size: .92rem;
}
.minislot__balance b {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--c-amber);
  font-weight: 700;
}

.legal-content { display: flex; flex-direction: column; gap: 28px; }
.legal-content h2 { font-size: clamp(1.6rem, 1.4vw + 1rem, 2.2rem); margin-top: 18px; }
.legal-content h3 { font-size: clamp(1.2rem, .8vw + 1rem, 1.5rem); margin-top: 12px; }
.legal-content p { color: var(--c-text); font-size: 1rem; line-height: 1.75; }
.legal-content ul { padding-left: 28px; color: var(--c-mute); line-height: 1.7; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--c-amber); text-decoration: underline; text-underline-offset: 3px; }
.legal-hero {
  padding-block: clamp(72px, 8vw, 120px) clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--c-line);
}
.legal-hero h1 {
  font-size: clamp(2.4rem, 3.4vw + 1rem, 4rem);
  background: var(--c-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.legal-hero p { color: var(--c-mute); margin-top: 12px; font-size: 1.05rem; }

.story-page-hero {
  padding-block: clamp(80px, 8vw, 140px);
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.story-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--c-bg-deep) url('/assets/img/story/story-hero-bg.avif') center/cover no-repeat;
}
.story-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 30% 30%, rgba(245, 184, 41, .12), transparent 60%),
    linear-gradient(180deg, rgba(10, 4, 20, .55) 0%, rgba(10, 4, 20, .9) 100%);
}
.story-page-hero__content { display: flex; flex-direction: column; gap: 24px; max-width: 760px; }
.story-page-hero h1 { font-size: clamp(2.6rem, 4vw + 1rem, 5rem); }
.story-page-hero h1 em {
  font-style: italic;
  background: var(--c-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.chapters { display: flex; flex-direction: column; gap: clamp(48px, 6vw, 96px); }
.chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.chapter--reverse { grid-template-columns: 1fr 1fr; }
.chapter--reverse .chapter__art { order: 2; }
@media (max-width: 980px) {
  .chapter, .chapter--reverse { grid-template-columns: 1fr; }
  .chapter--reverse .chapter__art { order: 0; }
}
.chapter__art {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--c-line-2);
}
.chapter__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.chapter:hover .chapter__art img { transform: scale(1.05); }
.chapter__num {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 700;
  background: var(--c-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -.04em;
}
.chapter__body { display: flex; flex-direction: column; gap: 18px; }
.chapter__body h2 { font-size: clamp(1.8rem, 1.8vw + 1rem, 2.6rem); }
.chapter__body p { color: var(--c-mute); font-size: 1.05rem; line-height: 1.75; }

.characters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .characters { grid-template-columns: 1fr; } }
.character {
  position: relative;
  border-radius: 26px;
  background:
    radial-gradient(500px 400px at 50% 0%, rgba(245, 184, 41, .18), transparent 60%),
    linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg-deep) 100%);
  border: 1px solid var(--c-line-2);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease);
}
.character:hover { transform: translateY(-6px); }
.character--villain {
  background:
    radial-gradient(500px 400px at 50% 0%, rgba(16, 185, 129, .2), transparent 60%),
    linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg-deep) 100%);
}
.character__art {
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.character__art img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .5));
  transition: transform .5s var(--ease);
}
.character:hover .character__art img { transform: translateY(-8px) scale(1.04); }
.character__name {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.character__role {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-amber);
}
.character--villain .character__role { color: var(--c-emerald); }
.character__bio { color: var(--c-mute); font-size: .96rem; line-height: 1.6; }
.character__stats { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.character__stat {
  display: grid;
  grid-template-columns: 90px 1fr 38px;
  gap: 12px;
  align-items: center;
  font-size: .85rem;
  color: var(--c-mute);
}
.character__bar {
  height: 6px;
  border-radius: 100px;
  background: rgba(245, 232, 255, .08);
  overflow: hidden;
  position: relative;
}
.character__bar::after {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: var(--v, 50%);
  background: var(--c-grad);
  border-radius: 100px;
  transition: width 1.2s var(--ease) .2s;
}
.character--villain .character__bar::after {
  background: linear-gradient(90deg, var(--c-emerald), #34D399);
}
.character__stat b { color: var(--c-text); text-align: right; font-family: 'Fraunces', serif; font-size: 1rem; }

.prereg__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  isolation: isolate;
}
.prereg__art img {
  max-width: 100%;
  max-height: 540px;
  width: auto;
  height: auto;
  filter:
    drop-shadow(0 30px 50px rgba(0, 0, 0, .55))
    drop-shadow(0 0 80px rgba(245, 184, 41, .35));
  animation: heroFloat 7s ease-in-out infinite;
}
.prereg__art-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(28px);
  opacity: .75;
  animation: orbDrift 8s ease-in-out infinite;
}
.prereg__art-orb--1 {
  width: 220px; height: 220px;
  top: 10%; left: 5%;
  background: radial-gradient(circle, var(--c-amber), transparent 65%);
  animation-delay: 0s;
}
.prereg__art-orb--2 {
  width: 180px; height: 180px;
  bottom: 14%; right: 10%;
  background: radial-gradient(circle, var(--c-magenta), transparent 65%);
  animation-delay: 1.6s;
}
.prereg__art-orb--3 {
  width: 140px; height: 140px;
  top: 50%; right: 0%;
  background: radial-gradient(circle, var(--c-violet), transparent 65%);
  animation-delay: 3.2s;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .6; }
  50%      { transform: translate(20px, -28px) scale(1.15); opacity: .9; }
}

.fortune-tickers {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.fortune-tickers div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--c-mute);
}
.fortune-tickers svg { width: 16px; height: 16px; color: var(--c-amber); }
