/* =========================================================
   GROMVAL — cinematic dark-fantasy storm theme
   Pure CSS. No frameworks, no external assets required.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #05030B;
  --purple-dark: #120A2A;
  --purple: #3D1A7A;
  --neon: #7B3CFF;
  --blue: #3AA7FF;
  --crystal: #66E6FF;
  --text: #F4F7FF;
  --muted: rgba(244, 247, 255, 0.62);
  --dim: rgba(244, 247, 255, 0.38);

  --line: rgba(123, 60, 255, 0.22);
  --line-strong: rgba(123, 60, 255, 0.55);
  --glass: rgba(18, 10, 42, 0.55);
  --glass-solid: rgba(10, 6, 24, 0.92);

  --grad-cta: linear-gradient(105deg, var(--neon) 0%, #5B5BFF 48%, var(--blue) 100%);
  --grad-text: linear-gradient(180deg, #FFFFFF 30%, #C9B6FF 100%);

  --glow-sm: 0 0 18px rgba(123, 60, 255, 0.45);
  --glow-md: 0 0 34px rgba(123, 60, 255, 0.55);
  --glow-cyan: 0 0 28px rgba(102, 230, 255, 0.45);

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --header-h: 74px;
  --wrap: 1320px;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--crystal); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 3vw, 2.5rem); }
.center { text-align: center; }

.skip-link {
  position: absolute; top: -200%; left: 1rem; z-index: 999;
  background: var(--neon); color: #fff; padding: .7rem 1.1rem; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--crystal); margin-bottom: .55rem;
}

.section__title {
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  font-weight: 900; letter-spacing: .01em; line-height: 1.08; text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section__lede { color: var(--muted); max-width: 46rem; margin-top: .85rem; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-py: .95rem; --btn-px: 2.1rem;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--btn-py) var(--btn-px);
  border-radius: 10px; border: 1px solid transparent;
  font-weight: 800; font-size: .88rem; letter-spacing: .12em; text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
  overflow: hidden;
}
.btn--sm { --btn-py: .62rem; --btn-px: 1.35rem; font-size: .76rem; border-radius: 8px; }

.btn--primary { background: var(--grad-cta); color: #fff; box-shadow: var(--glow-sm), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s ease;
}
.btn--primary:hover, .btn--primary:focus-visible { transform: translateY(-2px); box-shadow: var(--glow-md), inset 0 1px 0 rgba(255,255,255,.3); }
.btn--primary:hover::after, .btn--primary:focus-visible::after { transform: translateX(120%); }

.btn--ghost { background: rgba(18, 10, 42, .55); border-color: var(--line-strong); color: var(--text); backdrop-filter: blur(8px); }
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--crystal); color: var(--crystal); transform: translateY(-2px); box-shadow: var(--glow-cyan); }

.btn__caret { font-size: .7em; }
.btn__play { font-size: .7em; color: var(--crystal); }

.round-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(18,10,42,.6);
  font-size: 1.4rem; line-height: 1; color: var(--muted);
  display: grid; place-items: center;
  transition: color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.round-btn:hover { color: var(--crystal); border-color: var(--crystal); box-shadow: var(--glow-cyan); transform: translateY(-2px); }

.link-arrow { color: var(--crystal); font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: opacity .2s ease; }
.link-arrow:hover { opacity: .75; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: rgba(5, 3, 11, .32);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.header.is-scrolled {
  background: rgba(5, 3, 11, .78);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.header__inner {
  max-width: var(--wrap); margin-inline: auto;
  min-height: var(--header-h);
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

/* Logo (image with text fallback) */
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 44px; width: auto; filter: drop-shadow(0 0 14px rgba(123, 60, 255, .6)); }
.logo__img.is-missing { display: none; }
.logo__text {
  display: none;
  font-size: 1.5rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(120deg, #fff 10%, var(--crystal) 55%, var(--neon) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 12px rgba(123, 60, 255, .65));
}
.logo__img.is-missing ~ .logo__text { display: block; }
.logo--footer .logo__img { height: 36px; }
.logo--footer .logo__text { font-size: 1.2rem; }

/* Nav */
.nav__list { display: none; gap: clamp(1rem, 2vw, 2rem); }
.nav__link {
  position: relative; display: block; padding: .35rem 0;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); transition: color .25s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; border-radius: 2px;
  background: var(--grad-cta); box-shadow: var(--glow-sm); transition: right .3s ease;
}
.nav__link:hover, .nav__link:focus-visible, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link:focus-visible::after, .nav__link.is-active::after { right: 0; }

.header__actions { display: flex; align-items: center; gap: clamp(.6rem, 1.4vw, 1.1rem); }
.header__cta { display: none; }

.socials { display: flex; align-items: center; gap: .55rem; }
.socials--header { display: none; }
.social {
  width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center;
  border: 1px solid transparent; color: var(--muted);
  transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s ease;
}
.social svg { width: 19px; height: 19px; fill: currentColor; }
.social:hover, .social:focus-visible {
  color: var(--crystal); border-color: var(--line-strong);
  background: rgba(123, 60, 255, .12); transform: translateY(-2px);
}

/* Burger */
.burger { width: 40px; height: 40px; display: grid; place-content: center; gap: 5px; }
.burger span {
  display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform .3s ease, opacity .25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
@media (max-width: 1079px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    /* Opaque: a translucent panel inside the blurred header samples
       the backdrop oddly and lets hero text bleed through. */
    background: #090515;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
    clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
    transition: clip-path .35s ease, opacity .25s ease;
  }
  .nav.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .nav__list { display: flex; flex-direction: column; gap: 0; padding: .5rem 0 1rem; }
  .nav__list li { border-top: 1px solid rgba(123, 60, 255, .12); }
  .nav__link { padding: .95rem clamp(1rem, 5vw, 2rem); font-size: .9rem; }
  .nav__link::after { display: none; }
}

@media (min-width: 1080px) {
  .burger { display: none; }
  .nav__list { display: flex; }
  .socials--header { display: flex; }
  .header__cta { display: inline-flex; }
}

/* =========================================================
   HERO + ANIMATED STORM
   ========================================================= */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(7rem, 14vw, 11rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; isolation: isolate;
}

.storm { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

.storm__sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 85% at 50% 32%, #3D1A7A 0%, #24104E 30%, #120A2A 62%, #05030B 100%),
    radial-gradient(60% 40% at 15% 12%, rgba(58, 167, 255, .18), transparent 70%),
    radial-gradient(55% 40% at 85% 18%, rgba(123, 60, 255, .22), transparent 70%);
}

/* --- Lightning bolts --- */
.bolts { position: absolute; inset: 0; width: 100%; height: 100%; }
.bolt path { fill: #EAE2FF; }
.bolt {
  opacity: 0;
  filter: drop-shadow(0 0 10px #7B3CFF) drop-shadow(0 0 26px #3AA7FF) drop-shadow(0 0 50px rgba(102, 230, 255, .8));
}
.bolt.is-striking { animation: strike .55s steps(1, end) 1; }
@keyframes strike {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  16%  { opacity: .15; }
  26%  { opacity: .95; }
  38%  { opacity: .1; }
  48%  { opacity: .7; }
  62%  { opacity: 0; }
  100% { opacity: 0; }
}
/* Full-screen flash that accompanies a strike */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(80% 60% at 50% 20%, rgba(160, 130, 255, .5), transparent 70%);
  opacity: 0;
}
.hero.is-flash::before { animation: skyflash .5s ease-out 1; }
@keyframes skyflash {
  0% { opacity: 0; } 10% { opacity: .55; } 22% { opacity: .08; }
  34% { opacity: .38; } 60% { opacity: 0; } 100% { opacity: 0; }
}

/* --- Clouds --- */
.cloud { position: absolute; border-radius: 50%; filter: blur(42px); pointer-events: none; }
.cloud--1 {
  width: 60vw; max-width: 820px; height: 300px; top: 2%; left: -14%;
  background: radial-gradient(ellipse at center, rgba(61, 26, 122, .85), transparent 70%);
  animation: drift-x 46s linear infinite;
}
.cloud--2 {
  width: 55vw; max-width: 760px; height: 260px; top: 34%; right: -16%;
  background: radial-gradient(ellipse at center, rgba(58, 167, 255, .3), transparent 70%);
  animation: drift-x 62s linear infinite reverse;
}
.cloud--3 {
  width: 70vw; max-width: 950px; height: 320px; bottom: -6%; left: 8%;
  background: radial-gradient(ellipse at center, rgba(18, 10, 42, .95), transparent 72%);
  animation: drift-x 78s linear infinite;
}
@keyframes drift-x {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(9vw, -18px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* --- Central vortex --- */
.vortex {
  position: absolute; top: 30%; left: 50%;
  width: min(78vw, 780px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.vortex__ring {
  position: absolute; inset: 0; border-radius: 50%;
  will-change: transform;
}
.vortex__ring--1 {
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(150, 95, 255, .55) 26deg, transparent 72deg,
    transparent 120deg, rgba(58, 167, 255, .42) 150deg, transparent 194deg,
    rgba(150, 95, 255, .50) 258deg, transparent 306deg);
  -webkit-mask-image: radial-gradient(circle, transparent 40%, #000 58%, #000 70%, transparent 84%);
          mask-image: radial-gradient(circle, transparent 40%, #000 58%, #000 70%, transparent 84%);
  filter: blur(16px);
  animation: spin 26s linear infinite;
}
.vortex__ring--2 {
  inset: 13%;
  background: conic-gradient(from 180deg,
    transparent 0deg, rgba(102, 230, 255, .48) 44deg, transparent 108deg,
    rgba(160, 100, 255, .52) 206deg, transparent 274deg);
  -webkit-mask-image: radial-gradient(circle, transparent 42%, #000 60%, #000 72%, transparent 86%);
          mask-image: radial-gradient(circle, transparent 42%, #000 60%, #000 72%, transparent 86%);
  filter: blur(12px);
  animation: spin 17s linear infinite reverse;
}
.vortex__ring--3 {
  inset: 28%;
  background: conic-gradient(from 90deg,
    transparent 0deg, rgba(150, 240, 255, .45) 50deg, transparent 132deg,
    rgba(130, 130, 255, .48) 236deg, transparent 312deg);
  -webkit-mask-image: radial-gradient(circle, transparent 44%, #000 62%, #000 74%, transparent 88%);
          mask-image: radial-gradient(circle, transparent 44%, #000 62%, #000 74%, transparent 88%);
  filter: blur(8px);
  animation: spin 11s linear infinite;
}
.vortex__glow {
  position: absolute; inset: 34%; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(190, 235, 255, .34) 0%,
    rgba(102, 230, 255, .20) 32%,
    rgba(123, 60, 255, .12) 58%,
    transparent 76%);
  filter: blur(10px);
  animation: pulse 5s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: .65; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.07); }
}

/* --- Floating islands --- */
.islands { position: absolute; inset: 0; pointer-events: none; }
.island {
  position: absolute;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .75)) drop-shadow(0 0 34px rgba(123, 60, 255, .28));
  animation: float 11s ease-in-out infinite;
}
.island::before { /* crystal-lit plateau */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 62%;
  border-radius: 50%;
  background:
    radial-gradient(72% 140% at 38% 4%, rgba(150, 235, 255, .5), transparent 60%),
    linear-gradient(178deg, #46376F 0%, #291C4A 46%, #1A1030 100%);
}
.island::after { /* jagged rock underside */
  content: ""; position: absolute; left: 7%; right: 7%; top: 40%; height: 72%;
  background: linear-gradient(178deg, #241747 0%, #150C28 52%, #0A0514 100%);
  clip-path: polygon(0 0, 100% 0, 94% 30%, 83% 52%, 71% 78%, 60% 46%, 47% 92%, 35% 52%, 21% 70%, 9% 34%);
}
.island--1 { width: clamp(150px, 17vw, 260px); height: clamp(58px, 6.5vw, 100px); top: 16%; left: 4%;  animation-delay: 0s; }
.island--2 { width: clamp(120px, 13vw, 200px); height: clamp(46px, 5vw, 78px);   top: 25%; right: 5%;  animation-delay: -2.4s; }
.island--3 { width: clamp(96px, 10vw, 150px);  height: clamp(38px, 4vw, 60px);   top: 58%; left: 13%;  animation-delay: -4.8s; }
.island--4 { width: clamp(84px, 9vw, 130px);   height: clamp(32px, 3.4vw, 52px); top: 66%; right: 15%; animation-delay: -7.2s; }
.island--5 { width: clamp(180px, 22vw, 340px); height: clamp(60px, 7vw, 108px);  bottom: 4%; left: 50%; transform: translateX(-50%); animation-delay: -9s; opacity: .55; }
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -22px, 0); }
}
.island--5 { animation-name: float-center; }
@keyframes float-center {
  0%, 100% { transform: translate3d(-50%, 0, 0); }
  50%      { transform: translate3d(-50%, -18px, 0); }
}

/* --- Fog + vignette --- */
.storm__fog {
  position: absolute; inset: auto 0 0 0; height: 55%;
  background: linear-gradient(180deg, transparent, rgba(18, 10, 42, .72) 55%, var(--bg) 100%);
  animation: fog 9s ease-in-out infinite alternate;
}
@keyframes fog { from { opacity: .8; } to { opacity: 1; } }

.storm__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 42%, transparent 34%, rgba(5, 3, 11, .82) 100%);
}

/* --- Roster flanking the hero --- */
.hero__roster { position: absolute; bottom: clamp(5rem, 12vw, 9rem); z-index: 1; display: none; pointer-events: none; }
.hero__roster--left  { left: 0;  }
.hero__roster--right { right: 0; }

.roster-fig { position: relative; }
.roster-fig img {
  width: 100%; height: 100%; object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .8)) drop-shadow(0 0 26px color-mix(in srgb, var(--accent) 55%, transparent));
  animation: float 13s ease-in-out infinite;
}
.roster-fig img.is-missing { display: none; }
/* Soft accent haze — stands in for the artwork until it is supplied */
.roster-fig::before {
  content: ""; position: absolute; inset: 18% 14% 0 14%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 34%, transparent), transparent 74%);
  border-radius: 46% 46% 22% 22% / 34% 34% 8% 8%;
  filter: blur(30px); opacity: .28;
}

@media (min-width: 1200px) {
  .hero__roster { display: block; }
  .hero__roster--left  { width: 30vw; max-width: 460px; height: 46vh; }
  .hero__roster--right { width: 30vw; max-width: 460px; height: 46vh; }
  .roster-fig { position: absolute; bottom: 0; height: 100%; }
  .roster-fig--a { width: 46%; left: 1%;  height: 82%; z-index: 3; }
  .roster-fig--b { width: 42%; left: 26%; height: 96%; z-index: 2; }
  .roster-fig--c { width: 40%; left: 52%; height: 76%; z-index: 1; opacity: .9; }
  .hero__roster--right .roster-fig--a { left: auto; right: 1%; }
  .hero__roster--right .roster-fig--b { left: auto; right: 26%; }
  .hero__roster--right .roster-fig--c { left: auto; right: 52%; }
  .roster-fig--b img { animation-delay: -3s; }
  .roster-fig--c img { animation-delay: -6s; }
}

/* --- Hero content --- */
.hero__content { position: relative; z-index: 2; width: 100%; max-width: 880px; padding-inline: 1.25rem; }

.emblem {
  position: relative; width: clamp(112px, 15vw, 178px); aspect-ratio: 1; margin: 0 auto clamp(1rem, 2.5vw, 1.75rem);
  display: grid; place-items: center;
}
.emblem::before {
  content: ""; position: absolute; inset: -22%;
  background: radial-gradient(circle, rgba(102, 230, 255, .38), rgba(123, 60, 255, .22) 42%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
.emblem__img { position: relative; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 26px rgba(123, 60, 255, .8)); }
.emblem__img.is-missing { display: none; }
.emblem__glyph {
  display: none; position: relative;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-size: clamp(3.6rem, 8vw, 6rem); font-weight: 900; line-height: 1;
  color: #EFE9FF;
  background: linear-gradient(165deg, #6E5B9E 0%, #2A1C4C 45%, #150D2C 100%);
  border: 3px solid rgba(102, 230, 255, .5);
  border-radius: 26% 26% 32% 32% / 22% 22% 40% 40%;
  text-shadow: 0 0 24px rgba(102, 230, 255, .9), 0 3px 0 rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 40px rgba(102, 230, 255, .28), 0 0 44px rgba(123, 60, 255, .6);
}
.emblem__img.is-missing ~ .emblem__glyph { display: flex; }

.hero__title {
  font-size: clamp(2.1rem, 6.4vw, 4.6rem);
  font-weight: 900; line-height: 1.02; letter-spacing: .012em; text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 24px rgba(123, 60, 255, .55));
  animation: rise .9s cubic-bezier(.22, 1, .36, 1) both;
}
.hero__sub {
  margin: 1.1rem auto 0; max-width: 34rem;
  color: rgba(244, 247, 255, .78); font-size: clamp(.96rem, 1.5vw, 1.08rem);
  animation: rise .9s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.hero__cta {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center;
  animation: rise .9s cubic-bezier(.22, 1, .36, 1) .24s both;
}
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* Phones: let the headline wrap naturally and widen the CTAs */
@media (max-width: 620px) {
  .hero__title br { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* --- Feature strip --- */
.strip {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--wrap); margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  display: grid; gap: .9rem; grid-template-columns: 1fr;
}
.feature {
  display: flex; align-items: center; gap: .95rem; text-align: left;
  padding: 1.05rem 1.2rem; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(24, 14, 54, .75), rgba(10, 6, 24, .8));
  border: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 16px 40px rgba(61, 26, 122, .5), var(--glow-sm); }
.feature__icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(123, 60, 255, .38), rgba(10, 6, 24, .5) 70%);
  border: 1px solid var(--line-strong);
  animation: crystal-pulse 3.6s ease-in-out infinite;
}
.feature__icon svg { width: 23px; height: 23px; fill: var(--crystal); filter: drop-shadow(0 0 8px rgba(102, 230, 255, .8)); }
.feature:nth-child(2) .feature__icon { animation-delay: -.9s; }
.feature:nth-child(3) .feature__icon { animation-delay: -1.8s; }
.feature:nth-child(4) .feature__icon { animation-delay: -2.7s; }
@keyframes crystal-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(102, 230, 255, 0); }
  50%      { box-shadow: 0 0 22px rgba(102, 230, 255, .45); }
}
.feature__title { font-size: .86rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--crystal); }
.feature__text { font-size: .84rem; color: var(--muted); line-height: 1.5; }

@media (min-width: 640px)  { .strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .strip { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { position: relative; padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, #0A0518 50%, var(--bg) 100%); }

.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(1.6rem, 3vw, 2.5rem); }
.section__head--center { justify-content: center; text-align: center; }
.section__head--center .section__lede { margin-inline: auto; }

/* =========================================================
   HEROES CAROUSEL
   ========================================================= */
.carousel__nav { display: flex; gap: .6rem; }

.carousel {
  display: flex; gap: 1rem;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .5rem .25rem 1.5rem;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }

.hero-card {
  position: relative; flex: 0 0 auto;
  width: clamp(158px, 42vw, 216px);
  scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(24, 14, 54, .9), rgba(8, 5, 18, .95));
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), border-color .32s ease, box-shadow .32s ease;
}
.hero-card::before { /* accent wash */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(85% 55% at 50% 8%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 70%);
  opacity: .75; transition: opacity .32s ease;
}
.hero-card:hover, .hero-card:focus-within {
  transform: translateY(-8px) scale(1.03);
  border-color: color-mix(in srgb, var(--accent) 65%, transparent);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .6), 0 0 34px color-mix(in srgb, var(--accent) 45%, transparent);
}
.hero-card:hover::before { opacity: 1; }

.hero-card__art { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.hero-card__art img {
  position: relative; width: 100%; height: 100%; object-fit: contain; object-position: bottom center;
  transition: transform .35s ease;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .7));
}
.hero-card:hover .hero-card__art img { transform: scale(1.06); }
.hero-card__art img.is-missing { display: none; }
.hero-card__art::after { /* accent haze behind the portrait */
  content: ""; position: absolute; inset: 24% 16% 0 16%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 46%, transparent), transparent 76%);
  border-radius: 46% 46% 20% 20% / 32% 32% 8% 8%;
  filter: blur(18px); opacity: .38; pointer-events: none;
}

.hero-card__meta {
  position: relative; padding: .85rem 1rem 1.05rem; text-align: center;
  background: linear-gradient(180deg, transparent, rgba(5, 3, 11, .92) 42%);
  margin-top: -2.4rem;
}
.hero-card__meta h3 {
  font-size: .98rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); text-shadow: 0 0 16px color-mix(in srgb, var(--accent) 70%, transparent);
}
.hero-card__meta p { font-size: .72rem; color: var(--dim); letter-spacing: .06em; text-transform: uppercase; margin-top: .2rem; }

/* =========================================================
   ARENAS
   ========================================================= */
.arenas { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .arenas { grid-template-columns: repeat(3, 1fr); } }

.arena {
  position: relative; overflow: hidden;
  min-height: clamp(240px, 30vw, 340px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.arena::before {
  content: ""; position: absolute; inset: 0; transition: transform .6s ease;
}
.arena::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(5, 3, 11, .92) 100%);
}
.arena--1::before { background: radial-gradient(circle at 32% 24%, rgba(123, 60, 255, .55), transparent 58%), linear-gradient(165deg, #2A1550, #0A0618 76%); }
.arena--2::before { background: radial-gradient(circle at 62% 30%, rgba(102, 230, 255, .45), transparent 58%), linear-gradient(165deg, #10284A, #0A0618 76%); }
.arena--3::before { background: radial-gradient(circle at 48% 20%, rgba(58, 167, 255, .48), transparent 58%), linear-gradient(165deg, #1B1240, #0A0618 76%); }
.arena:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 22px 46px rgba(0, 0, 0, .55), var(--glow-sm); }
.arena:hover::before { transform: scale(1.07); }

.arena__tag, .arena__name, .arena__text { position: relative; z-index: 1; }
.arena__tag {
  align-self: flex-start; margin-bottom: .6rem;
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--crystal);
  padding: .3rem .7rem; border-radius: 999px;
  background: rgba(5, 3, 11, .6); border: 1px solid var(--line-strong);
}
.arena__name { font-size: 1.18rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.arena__text { font-size: .88rem; color: var(--muted); margin-top: .3rem; }

/* =========================================================
   NEWS
   ========================================================= */
.news { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .news { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  display: flex; gap: 1rem; align-items: stretch;
  padding: .8rem; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(24, 14, 54, .7), rgba(8, 5, 18, .85));
  border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 18px 40px rgba(0, 0, 0, .5), var(--glow-sm); }

.news-card__thumb { flex: 0 0 92px; border-radius: 10px; min-height: 92px; position: relative; overflow: hidden; }
.news-card__thumb--1 { background: radial-gradient(circle at 35% 30%, rgba(123, 60, 255, .8), transparent 62%), linear-gradient(160deg, #2A1550, #0A0618); }
.news-card__thumb--2 { background: radial-gradient(circle at 55% 40%, rgba(102, 230, 255, .7), transparent 62%), linear-gradient(160deg, #12284A, #0A0618); }
.news-card__thumb--3 { background: radial-gradient(circle at 45% 35%, rgba(58, 167, 255, .7), transparent 62%), linear-gradient(160deg, #1B1240, #0A0618); }

.news-card__body { display: flex; flex-direction: column; justify-content: center; gap: .28rem; }
.news-card__body h3 { font-size: .92rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--crystal); }
.news-card__body p { font-size: .84rem; color: var(--muted); line-height: 1.5; }
.news-card__body time { font-size: .72rem; color: var(--dim); }

/* =========================================================
   MEDIA
   ========================================================= */
.media { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .media { grid-template-columns: repeat(2, 1fr); } }

.shot {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10; border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.shot::before { content: ""; position: absolute; inset: 0; transition: transform .6s ease; }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(5, 3, 11, .9) 100%); }
.shot--1::before { background: radial-gradient(circle at 28% 26%, rgba(102, 230, 255, .5), transparent 60%), linear-gradient(158deg, #241A44, #0A0618 78%); }
.shot--2::before { background: radial-gradient(circle at 68% 32%, rgba(123, 60, 255, .55), transparent 58%), linear-gradient(158deg, #2B1638, #0A0618 78%); }
.shot--3::before { background: radial-gradient(circle at 40% 68%, rgba(58, 167, 255, .5), transparent 58%), linear-gradient(158deg, #191233, #0A0618 78%); }
.shot--4::before { background: radial-gradient(circle at 60% 62%, rgba(102, 230, 255, .45), transparent 58%), linear-gradient(158deg, #12182F, #0A0618 78%); }
.shot:hover { transform: translateY(-5px); border-color: rgba(102, 230, 255, .5); box-shadow: 0 22px 46px rgba(0, 0, 0, .55), var(--glow-cyan); }
.shot:hover::before { transform: scale(1.06); }

.shot__tag, .shot__cap { position: relative; z-index: 1; }
.shot__tag {
  align-self: flex-start; margin-bottom: .5rem;
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--crystal);
  padding: .28rem .66rem; border-radius: 999px;
  background: rgba(5, 3, 11, .6); border: 1px solid var(--line-strong);
}
.shot__cap { font-size: 1.02rem; font-weight: 800; letter-spacing: .03em; }

@media (min-width: 700px) { .shot--wide { grid-column: span 2; aspect-ratio: 21 / 8; } }

/* =========================================================
   COMMUNITY
   ========================================================= */
.community {
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(61, 26, 122, .5), transparent 70%),
    linear-gradient(180deg, var(--bg), #0A0518);
}
.community__inner {
  display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center;
  padding-block: clamp(1rem, 3vw, 2rem);
}
@media (min-width: 1000px) {
  .community__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .community__inner .section__lede { margin-inline: 0; }
}

.community__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; width: 100%; max-width: 560px; }
@media (min-width: 620px) { .community__links { grid-template-columns: repeat(4, 1fr); } }

.cbtn {
  --c: var(--neon);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.3rem .8rem; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(24, 14, 54, .8), rgba(8, 5, 18, .9));
  border: 1px solid var(--line);
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, color .3s ease;
}
.cbtn svg { width: 26px; height: 26px; fill: var(--c); filter: drop-shadow(0 0 10px var(--c)); transition: transform .3s ease; }
.cbtn:hover, .cbtn:focus-visible {
  transform: translateY(-6px); color: #fff;
  border-color: var(--c); box-shadow: 0 18px 40px rgba(0, 0, 0, .5), 0 0 30px color-mix(in srgb, var(--c) 55%, transparent);
}
.cbtn:hover svg { transform: scale(1.14); }
.cbtn--discord { --c: #7B8CFF; }
.cbtn--vk      { --c: #3AA7FF; }
.cbtn--tg      { --c: #66E6FF; }
.cbtn--yt      { --c: #B06CFF; }

/* =========================================================
   ABOUT + FOOTER
   ========================================================= */
.about { text-align: center; }
.about .section__lede { margin-inline: auto; }

.footer { border-top: 1px solid var(--line); background: linear-gradient(180deg, #05030B, #020106); padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; text-align: center; }
.legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; padding-top: 1.3rem; border-top: 1px solid var(--line); width: 100%; max-width: 40rem; }
.legal a { font-size: .78rem; color: var(--dim); transition: color .25s ease; }
.legal a:hover { color: var(--crystal); }
.footer__copy { font-size: .78rem; color: var(--dim); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
