:root {
    --indigo: #4A3984;
    --purple: #7F6AAC;
    --lavender: #BCADD4;
    --snow: #FAF9FD;
    --graphite: #4A4A55;

    --bg: #0b0815;
    --bg-2: #130d27;
    --bg-3: #1b1338;
    --ink: #f4f0fb;
    --ink-soft: #cabfe4;
    --ink-dim: #9a8ec0;
    --violet: #9b7ce6;
    --violet-bright: #c4a6ff;
    --magenta: #e972cf;
    --amber: #ffb27a;

    --line: rgba(188, 173, 212, 0.16);
    --line-strong: rgba(188, 173, 212, 0.32);
    --glass: rgba(124, 106, 172, 0.10);
    --glass-2: rgba(18, 13, 38, 0.62);
    --glow: 0 0 44px rgba(123, 92, 214, 0.45);
    --glow-soft: 0 0 30px rgba(123, 92, 214, 0.28);

    --radius: 20px;
    --radius-sm: 13px;
    --maxw: 1180px;
    --font-display: 'Unbounded', system-ui, sans-serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; margin: 0; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 2px solid var(--violet-bright); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }

.bg-layers { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-base { position: absolute; inset: 0; background:
        radial-gradient(120% 80% at 50% -10%, rgba(74, 57, 132, 0.55), transparent 60%),
        radial-gradient(90% 60% at 85% 10%, rgba(123, 92, 214, 0.22), transparent 55%),
        linear-gradient(180deg, #0b0815 0%, #0d0a1c 45%, #0a0713 100%); }
.bg-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.bg-glow--1 { width: 46vw; height: 46vw; left: -12vw; top: 18vh; background: radial-gradient(circle, rgba(127, 106, 172, 0.6), transparent 70%); }
.bg-glow--2 { width: 38vw; height: 38vw; right: -10vw; top: 4vh; background: radial-gradient(circle, rgba(233, 114, 207, 0.28), transparent 70%); }

.bg-sun {
    position: absolute;
    top: 6vh; left: 50%;
    width: min(620px, 78vw); height: min(620px, 78vw);
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(180deg, #d7b4ff 0%, #a87de8 34%, #8a5fd0 52%, #e36fb6 78%, #ff9e72 100%);
    opacity: 0.85;
    filter: drop-shadow(0 0 90px rgba(168, 125, 232, 0.55));
    -webkit-mask-image: linear-gradient(180deg, #000 0 52%, transparent 53%),
        repeating-linear-gradient(180deg, #000 0 9px, transparent 9px 15px);
    -webkit-mask-composite: source-over;
    mask-image: linear-gradient(180deg, #000 0 52%, transparent 53%),
        repeating-linear-gradient(180deg, #000 0 9px, transparent 9px 15px);
    mask-composite: add;
}

.bg-grid {
    position: absolute; bottom: -2vh; left: 50%;
    width: 240vw; height: 70vh;
    transform: translateX(-50%) perspective(340px) rotateX(74deg);
    transform-origin: bottom center;
    background-image:
        linear-gradient(90deg, rgba(168, 125, 232, 0.5) 1px, transparent 1px),
        linear-gradient(0deg, rgba(168, 125, 232, 0.45) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(to top, #000 8%, transparent 78%);
    mask-image: linear-gradient(to top, #000 8%, transparent 78%);
    animation: gridrun 9s linear infinite;
    opacity: 0.55;
}

@keyframes gridrun { from { background-position: 0 0; } to { background-position: 0 64px; } }

.bg-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.045; mix-blend-mode: overlay;
}

.site-main, .site-header, .social-strip, .site-footer { position: relative; z-index: 1; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--indigo); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; }

.site-header { position: sticky; top: 0; z-index: 100; transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(11, 8, 21, 0.78); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 0 0 1.5px var(--line-strong), 0 0 26px rgba(123, 92, 214, 0.5); overflow: hidden; flex: none; background: #0c0a18; }
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.06rem; letter-spacing: -0.01em; }
.brand-tag { font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--violet-bright); }

.site-nav { display: flex; align-items: center; gap: 30px; }
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-list a { display: inline-block; padding: 9px 14px; border-radius: 999px; font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); transition: color .2s, background .2s; }
.nav-list a:hover { color: var(--ink); background: var(--glass); }
.nav-list a.is-active { color: #fff; background: linear-gradient(120deg, rgba(127, 106, 172, 0.35), rgba(123, 92, 214, 0.2)); box-shadow: inset 0 0 0 1px var(--line-strong); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.btn { --btn-bg: var(--glass); display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em; padding: 13px 24px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s; white-space: nowrap; }
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary { background: linear-gradient(120deg, var(--indigo), #7d5cd6 60%, var(--magenta)); color: #fff; box-shadow: 0 10px 30px rgba(74, 57, 132, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(123, 92, 214, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn--ghost { background: rgba(124, 106, 172, 0.08); color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--violet); background: rgba(124, 106, 172, 0.18); box-shadow: var(--glow-soft); }
.btn svg { width: 19px; height: 19px; fill: currentColor; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 42px; padding: 0; align-items: center; justify-content: center; background: var(--glass); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--violet-bright); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--violet-bright)); }
.section-head.is-center .eyebrow::before { display: none; }
.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); letter-spacing: -0.02em; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; }

.hero { position: relative; padding-top: clamp(40px, 7vw, 72px); padding-bottom: clamp(50px, 8vw, 90px); }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px; background: rgba(124, 106, 172, 0.12); border: 1px solid var(--line-strong); font-size: 0.86rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 24px; backdrop-filter: blur(6px); }
.hero-kicker .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 0 0 rgba(233, 114, 207, 0.6); animation: pulse 2.2s infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(233, 114, 207, 0.55); } 70% { box-shadow: 0 0 0 12px rgba(233, 114, 207, 0); } 100% { box-shadow: 0 0 0 0 rgba(233, 114, 207, 0); } }

.hero-title { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 900; letter-spacing: -0.03em; line-height: 0.98; }
.hero-title .grad { background: linear-gradient(110deg, #fff 8%, var(--lavender) 40%, var(--violet-bright) 70%, var(--magenta)); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 60px rgba(123, 92, 214, 0.35); }
.hero-title .t-line, .hero-title .grad { display: block; }
.hero-subtitle { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink-soft); max-width: 46ch; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-logo { width: min(380px, 78%); aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 1px var(--line-strong), 0 30px 80px rgba(74, 57, 132, 0.55), 0 0 120px rgba(123, 92, 214, 0.5); animation: floaty 7s ease-in-out infinite; }
.hero-logo img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floaty { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(10px); } }
.hero-ring { position: absolute; width: min(440px, 92%); aspect-ratio: 1; border: 1px dashed rgba(196, 166, 255, 0.4); border-radius: 50%; animation: spin 26s linear infinite; }
.hero-ring::after { content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--violet-bright); box-shadow: 0 0 16px var(--violet-bright); transform: translateX(-50%); }
@keyframes spin { to { transform: rotate(360deg); } }

.player-pill { position: absolute; bottom: 6%; right: 2%; display: inline-flex; align-items: center; gap: 13px; padding: 12px 20px; border-radius: 16px; background: var(--glass-2); border: 1px solid var(--line-strong); backdrop-filter: blur(12px); box-shadow: var(--glow-soft); }
.player-dot { width: 11px; height: 11px; border-radius: 50%; background: #46d39a; box-shadow: 0 0 0 0 rgba(70, 211, 154, 0.6); animation: pulse-green 2s infinite; flex: none; }
.player-dot.is-off { background: var(--graphite); animation: none; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(70, 211, 154, 0.5); } 70% { box-shadow: 0 0 0 10px rgba(70, 211, 154, 0); } 100% { box-shadow: 0 0 0 0 rgba(70, 211, 154, 0); } }
.player-pill .pnum { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; line-height: 1; }
.player-pill .plabel { display: block; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); }

.panel { background: linear-gradient(160deg, rgba(124, 106, 172, 0.12), rgba(18, 13, 38, 0.5)); border: 1px solid var(--line); border-radius: var(--radius); backdrop-filter: blur(10px); }

.announce-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.announce { padding: clamp(26px, 4vw, 46px); }
.announce .lead { font-size: 1.18rem; color: var(--ink); font-weight: 500; }
.announce p { color: var(--ink-soft); }
.announce p:last-child { margin-bottom: 0; }

.phase-list { display: grid; gap: 20px; counter-reset: phase; }
.phase { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: clamp(22px, 3vw, 32px); border-radius: var(--radius); background: linear-gradient(150deg, rgba(124, 106, 172, 0.12), rgba(18, 13, 38, 0.45)); border: 1px solid var(--line); overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.phase::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(180deg, var(--violet-bright), var(--magenta)); opacity: 0.85; }
.phase:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--glow-soft); }
.phase__index { counter-increment: phase; width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; background: linear-gradient(140deg, var(--indigo), #7d5cd6); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 24px rgba(74, 57, 132, 0.5); }
.phase__index::before { content: counter(phase, decimal-leading-zero); }
.phase__tag { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: rgba(196, 166, 255, 0.14); color: var(--violet-bright); border: 1px solid var(--line-strong); margin-bottom: 12px; }
.phase__tag.is-live { color: #7ff0c0; background: rgba(70, 211, 154, 0.12); border-color: rgba(70, 211, 154, 0.3); }
.phase__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.phase__title { font-size: 1.3rem; margin-bottom: 8px; }
.phase__body { color: var(--ink-soft); margin: 0; }
.phase__items { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.phase__items li { display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 11px; background: rgba(124, 106, 172, 0.14); border: 1px solid var(--line); font-size: 0.92rem; color: var(--ink); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); grid-auto-rows: 200px; gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; background: var(--bg-2); }
.gallery-item:nth-child(7n+1) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11, 8, 21, 0.75)); opacity: 0; transition: opacity .35s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item__cap { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; font-size: 0.9rem; color: #fff; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s; }
.gallery-item:hover .gallery-item__cap { opacity: 1; transform: none; }
.gallery-empty { display: grid; place-items: center; gap: 14px; text-align: center; padding: clamp(40px, 7vw, 80px); border: 1px dashed var(--line-strong); border-radius: var(--radius); color: var(--ink-dim); background: rgba(124, 106, 172, 0.05); }
.gallery-empty svg { width: 54px; height: 54px; fill: var(--violet); opacity: 0.7; }

.join { position: relative; }
.join-card { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(28px, 5vw, 60px); align-items: center; padding: clamp(30px, 5vw, 60px); border-radius: calc(var(--radius) + 6px); background: linear-gradient(135deg, rgba(74, 57, 132, 0.42), rgba(18, 13, 38, 0.6)); border: 1px solid var(--line-strong); overflow: hidden; box-shadow: var(--glow); }
.join-card::before { content: ""; position: absolute; width: 360px; height: 360px; right: -80px; top: -120px; background: radial-gradient(circle, rgba(233, 114, 207, 0.3), transparent 70%); }
.join-card__text { position: relative; z-index: 1; }
.join-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.join-stat { position: relative; z-index: 1; display: grid; gap: 6px; padding: 26px; border-radius: var(--radius); background: var(--glass-2); border: 1px solid var(--line-strong); text-align: center; backdrop-filter: blur(8px); }
.join-stat .pnum { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem, 7vw, 3.8rem); line-height: 1; background: linear-gradient(120deg, #fff, var(--violet-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.join-stat .plabel { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.join-stat .pstate { display: inline-flex; align-items: center; gap: 8px; justify-content: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 6px; }

.social-strip { margin-top: clamp(20px, 4vw, 40px); padding-block: clamp(34px, 5vw, 54px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(13, 9, 26, 0.5); }
.social-strip__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.social-strip__eyebrow { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--violet-bright); }
.social-strip__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 6px 0 0; }
.social-strip__links { display: flex; flex-wrap: wrap; gap: 12px; }
.social-chip { display: inline-flex; align-items: center; gap: 11px; padding: 11px 18px; border-radius: 14px; background: var(--glass); border: 1px solid var(--line); font-weight: 500; transition: transform .2s, border-color .2s, box-shadow .25s, background .25s; }
.social-chip__icon { display: grid; place-items: center; width: 22px; height: 22px; }
.social-chip__icon svg { width: 22px; height: 22px; fill: var(--ink-soft); transition: fill .25s; }
.social-chip:hover { transform: translateY(-3px); border-color: var(--violet); box-shadow: var(--glow-soft); background: rgba(124, 106, 172, 0.2); }
.social-chip:hover .social-chip__icon svg { fill: #fff; }
.social-chip--discord:hover { border-color: #7d8cf6; }
.social-chip--youtube:hover { border-color: #ff6a82; }
.social-chip--tiktok:hover { border-color: #6af0e0; }
.social-chip--instagram:hover { border-color: #f48ad0; }
.social-chip--twitter:hover { border-color: #cfd3ff; }
.social-strip__empty, .footer-soon { color: var(--ink-dim); font-style: italic; }

.site-footer { padding-top: clamp(48px, 6vw, 72px); padding-bottom: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-wordmark { width: 200px; max-width: 70%; filter: drop-shadow(0 0 18px rgba(123, 92, 214, 0.5)); margin-bottom: 18px; }
.footer-desc { color: var(--ink-soft); max-width: 38ch; }
.footer-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav__title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 4px; }
.footer-nav a { color: var(--ink-soft); transition: color .2s; width: fit-content; }
.footer-nav a:hover { color: var(--violet-bright); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 22px; color: var(--ink-dim); font-size: 0.88rem; }
.footer-admin { color: var(--ink-dim); transition: color .2s; }
.footer-admin:hover { color: var(--violet-bright); }

.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--glass-2); border: 1px solid var(--line-strong); backdrop-filter: blur(10px); cursor: pointer; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .3s, transform .3s, box-shadow .3s; z-index: 90; }
.to-top svg { width: 22px; height: 22px; fill: var(--ink); }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { box-shadow: var(--glow-soft); border-color: var(--violet); }

.page-hero { padding-top: clamp(60px, 9vw, 120px); padding-bottom: clamp(50px, 8vw, 100px); text-align: center; }
.page-hero__icon { width: 86px; height: 86px; margin: 0 auto 26px; border-radius: 24px; display: grid; place-items: center; background: linear-gradient(140deg, var(--indigo), #7d5cd6); box-shadow: var(--glow); }
.page-hero__icon svg { width: 42px; height: 42px; fill: #fff; }
.soon-tag { display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; border-radius: 999px; background: rgba(196, 166, 255, 0.12); border: 1px solid var(--line-strong); color: var(--violet-bright); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 22px; }
.page-hero__title { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-hero__title .grad { background: linear-gradient(110deg, #fff, var(--violet-bright) 60%, var(--magenta)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero__text { max-width: 56ch; margin: 22px auto 0; color: var(--ink-soft); font-size: 1.12rem; }
.soon-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 40px auto 0; max-width: 720px; }
.soon-list li { padding: 12px 20px; border-radius: 13px; background: var(--glass); border: 1px solid var(--line); color: var(--ink-soft); }

.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(7, 5, 14, 0.92); backdrop-filter: blur(8px); }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(123, 92, 214, 0.4); }
.lightbox__close { position: absolute; top: 24px; right: 28px; width: 46px; height: 46px; border-radius: 12px; background: var(--glass); border: 1px solid var(--line-strong); color: #fff; font-size: 1.4rem; cursor: pointer; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-logo { width: min(300px, 70%); }
    .join-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .site-nav { position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 18px; padding: 24px clamp(18px, 5vw, 40px) 34px; background: rgba(11, 8, 21, 0.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .4s cubic-bezier(.2, .7, .2, 1); }
    .site-nav.is-open { transform: none; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-list a { padding: 13px 16px; border-radius: 12px; }
    .nav-cta { flex-direction: column; }
    .nav-cta .btn { width: 100%; }
    .player-pill { position: static; margin-top: 22px; }
    .social-strip__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
    .phase { grid-template-columns: 1fr; }
    .phase__index { width: 52px; height: 52px; font-size: 1.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-auto-rows: 170px; }
    .gallery-item:nth-child(7n+1) { grid-row: span 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; }
    .bg-grid { animation: none; }
}
