
:root {
    --bg: #0A0A10;
    --bg-2: #0E0D15;
    --surface: #141320;
    --surface-2: #1A1826;
    --stroke: #24222F;
    --stroke-2: #38334C;
    --purple: #BEA8F4;
    --purple-d: #8B6FE0;
    --purple-ink: #2A2340;
    --yellow: #F3E9AA;
    --text: #ECEAF6;
    --dim: #9C99AE;
    --dim-2: #807D96;   /* small labels: nudged lighter to clear WCAG AA (~4.8:1) on the near-black bg */
    --ok: #7FE0A8;
    --radius: 14px;
    --radius-sm: 10px;
    --nav-h: 68px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1120px;
    font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, .wordmark, .nav-btn, .btn { font-family: "Outfit", system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* keyboard focus: a single visible ring for every interactive element (mouse clicks stay clean via
   :focus-visible). The theme is dark and buttons carry no default border, so without this keyboard
   users get no focus indicator at all. */
:where(a, button, [tabindex]):focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 3px;
    border-radius: 8px;
}
:where(a, button):focus:not(:focus-visible) { outline: none; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; font-variant-numeric: tabular-nums; }

#stars {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    width: 100%; height: 100%;
}
.bg-glow {
    position: fixed; z-index: 0; pointer-events: none; border-radius: 50%;
    filter: blur(90px); opacity: .5;
}
.bg-glow.a { top: -180px; left: 50%; transform: translateX(-50%);
    width: 720px; height: 520px; background: radial-gradient(closest-side, rgba(139,111,224,.42), transparent); }
.bg-glow.b { bottom: -240px; left: -120px; width: 520px; height: 520px;
    background: radial-gradient(closest-side, rgba(190,168,244,.18), transparent); }

.wrap { position: relative; z-index: 1; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 40; height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 0 24px;
    transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(10, 10, 16, .72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--stroke);
}
.nav-left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 30px; height: 34px; filter: drop-shadow(0 0 10px rgba(190,168,244,.5)); }
.brand span { font-family: "Outfit", sans-serif; font-weight: 800; letter-spacing: .08em;
    font-size: 15px; color: var(--text); }

.pills { display: flex; align-items: center; gap: 4px;
    padding: 5px; border: 1px solid var(--stroke); border-radius: 999px;
    background: rgba(20, 19, 32, .6); }
.nav-btn {
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    padding: 8px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
    color: var(--dim); border: 0; background: transparent;
    transition: color .18s var(--ease), background .18s var(--ease);
}
.nav-btn svg { width: 16px; height: 16px; }
.nav-btn:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-btn.active { color: var(--text); background: var(--purple-ink);
    box-shadow: inset 0 0 0 1px rgba(190,168,244,.28); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.cart {
    position: relative; display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    padding: 9px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--text);
    background: rgba(20, 19, 32, .7); border: 1px solid var(--stroke);
    transition: border-color .18s var(--ease), transform .18s var(--ease); font-family: "Outfit", sans-serif;
}
.cart:hover { border-color: var(--stroke-2); }
.cart svg { width: 16px; height: 16px; }
.cart .badge {
    position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px;
    display: grid; place-items: center; border-radius: 999px; font-size: 11px; font-weight: 700;
    background: var(--yellow); color: #2a260c; box-shadow: 0 0 0 3px var(--bg);
}
.btn {
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer; white-space: nowrap;
    padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 700; border: 0;
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { color: #17121f; background: linear-gradient(180deg, #cbb8fb, var(--purple));
    box-shadow: 0 8px 24px -8px rgba(139,111,224,.7), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(139,111,224,.85), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-ghost { color: var(--text); background: rgba(20,19,32,.7); border: 1px solid var(--stroke-2); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--purple); }
.btn:active { transform: translateY(0); transition-duration: .06s; }
.btn-admin { color: var(--yellow); background: rgba(243,233,170,.08); border: 1px solid rgba(243,233,170,.32); }
.btn-admin:hover { transform: translateY(-2px); border-color: var(--yellow); background: rgba(243,233,170,.14); }
.btn-admin svg { width: 16px; height: 16px; }

.hamburger { display: none; width: 42px; height: 42px; border-radius: 12px; cursor: pointer;
    align-items: center; justify-content: center; background: rgba(20,19,32,.7); border: 1px solid var(--stroke); }
.hamburger svg { width: 20px; height: 20px; color: var(--text); }

.hero {
    min-height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: calc(var(--nav-h) + 40px) 24px 80px; position: relative;
}
.discord-pill {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; max-width: 100%;
    padding: 7px 8px 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
    background: rgba(20,19,32,.7); border: 1px solid var(--stroke-2);
    transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.discord-pill:hover { transform: translateY(-2px); border-color: var(--purple);
    box-shadow: 0 8px 26px -12px rgba(139,111,224,.8); }
.discord-pill > svg { width: 18px; height: 18px; color: var(--purple); flex-shrink: 0; }
.discord-pill .pill-msg { color: var(--dim); }
.discord-pill .pill-sep { color: var(--dim-2); }
.discord-pill .pill-cta {
    display: inline-flex; align-items: center; gap: 4px; color: var(--purple); font-weight: 700;
    padding: 3px 10px; border-radius: 999px; background: var(--purple-ink);
    box-shadow: inset 0 0 0 1px rgba(190,168,244,.22);
}
.discord-pill .pill-cta svg { width: 14px; height: 14px; }

.hero-orb-wrap { position: relative; z-index: 1; display: grid; place-items: center; margin-bottom: 4px; isolation: isolate; }
.hero-orb {
    position: relative; z-index: 1; width: min(340px, 74vw); height: auto; aspect-ratio: 1;
    filter: drop-shadow(0 10px 42px rgba(139,111,224,.45));
    animation: float 6s ease-in-out infinite;
}
.hero-aura {
    position: absolute; z-index: 0; width: min(500px, 104vw); aspect-ratio: 1; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(139,111,224,.32), rgba(139,111,224,.08) 58%, transparent 74%);
    filter: blur(14px); animation: aura 7s ease-in-out infinite;
}
.hero-aura::before {
    content: ""; position: absolute; inset: -4%; border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(190,168,244,0), rgba(190,168,244,.26),
        rgba(243,233,170,.1), rgba(139,111,224,.26), rgba(190,168,244,0));
    filter: blur(28px); animation: spin 20s linear infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes aura { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

.wordmark {
    position: relative; z-index: 2; font-weight: 800; letter-spacing: .03em; line-height: .95; margin: 12px 0 0;
    font-size: clamp(46px, 10.5vw, 100px); color: var(--text);
    text-shadow: 0 4px 26px rgba(5,4,10,.62), 0 1px 2px rgba(5,4,10,.5);
}
.wordmark b { color: var(--purple); font-weight: 800;
    text-shadow: 0 0 30px rgba(190,168,244,.55), 0 0 8px rgba(190,168,244,.4); }
.tagline { max-width: 560px; margin: 22px auto 0; color: var(--dim); font-size: clamp(15px, 2.2vw, 18px); text-wrap: balance; }
.tagline b { color: var(--text); font-weight: 700; }
.tagline .y { color: var(--yellow); font-weight: 700; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    color: var(--dim-2); animation: bob 2.2s ease-in-out infinite; }
.scroll-hint svg { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

section.block { padding: 96px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
    font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--purple); }
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--purple); opacity: .6; }
.kicker::after { content: ""; width: 22px; height: 1px; background: var(--purple); opacity: .6; }
h2.title { font-size: clamp(28px, 4.6vw, 44px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 12px; text-wrap: balance; }
h2.title b { color: var(--purple); font-weight: 800; }
.section-head p { color: var(--dim); margin: 0 auto; font-size: 16.5px; max-width: 52ch; text-wrap: pretty; }

.sep { position: relative; height: 1px; max-width: 940px; margin: 4px auto;
    background: linear-gradient(90deg, transparent, var(--stroke-2) 24%, var(--stroke-2) 76%, transparent); }
.sep::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 300px; height: 100px; border-radius: 50%; pointer-events: none;
    background: radial-gradient(closest-side, rgba(139,111,224,.2), transparent 70%); filter: blur(10px); }

.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 16px; max-width: 940px; margin: 0 auto; }
.feat {
    display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; border-radius: 14px;
    background: var(--surface); border: 1px solid var(--stroke);
    transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.feat:hover { transform: translateY(-3px); border-color: var(--stroke-2); background: var(--surface-2); }
.feat .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    color: var(--purple); background: var(--purple-ink); box-shadow: inset 0 0 0 1px rgba(190,168,244,.2); }
.feat .ic svg { width: 22px; height: 22px; }
.feat.accent .ic { color: #d8ca7a; background: rgba(243,233,170,.1); box-shadow: inset 0 0 0 1px rgba(243,233,170,.24); }
.feat-body h3 { margin: 0 0 4px; font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.feat-body p { margin: 0; font-size: 13.5px; color: var(--dim); line-height: 1.55; }

.why-head { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
    max-width: 1040px; margin: 0 auto 52px; }
.why-head .section-head { grid-column: 2; text-align: center; margin: 0; max-width: 520px; }
.why-head .section-head p { margin: 0 auto; max-width: 46ch; }
.why-media { grid-column: 3; justify-self: end; width: 200px; }
.panel-shot { position: relative; display: block; width: 100%; padding: 0; border: 0; background: transparent;
    cursor: zoom-in; border-radius: 14px; }
.panel-shot img { width: 100%; display: block; border-radius: 12px; border: 1px solid var(--stroke);
    box-shadow: 0 18px 40px -24px rgba(0,0,0,.7); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.panel-shot:hover img { transform: translateY(-3px); border-color: var(--stroke-2); box-shadow: 0 26px 50px -26px rgba(139,111,224,.4); }
.zoom-hint { position: absolute; bottom: 12px; right: 12px; display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 11px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--text);
    background: rgba(10,10,16,.74); backdrop-filter: blur(6px); border: 1px solid var(--stroke-2);
    opacity: 0; transform: translateY(4px); transition: opacity .2s var(--ease), transform .2s var(--ease); }
.zoom-hint svg { width: 14px; height: 14px; color: var(--purple); }
.panel-shot:hover .zoom-hint, .panel-shot:focus-visible .zoom-hint { opacity: 1; transform: none; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,4,10,.82); backdrop-filter: blur(4px);
    animation: fade .2s var(--ease); }
.modal-body { position: relative; z-index: 1; margin: 0; max-width: min(760px, 94vw); animation: pop .22s var(--ease); }
.modal-body img { width: 100%; border-radius: 16px; border: 1px solid var(--stroke-2);
    box-shadow: 0 40px 90px -30px rgba(0,0,0,.9); }
.modal-close { position: absolute; top: -14px; right: -14px; width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    display: grid; place-items: center; color: var(--text); background: var(--surface-2); border: 1px solid var(--stroke-2);
    transition: transform .18s var(--ease), border-color .18s var(--ease); }
.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover { transform: scale(1.08); border-color: var(--purple); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.94); } }

.assurance { position: relative; z-index: 1; width: 100%; max-width: 640px; margin: 32px auto 0;
    padding-top: 28px; border-top: 1px solid var(--stroke);
    display: flex; flex-direction: column; align-items: center; gap: 20px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; }
.trust { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--dim); }
.trust svg { width: 16px; height: 16px; }
.trust .g { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.trust .star { color: var(--yellow); display: inline-flex; }
.trust .zap { color: var(--purple); display: inline-flex; }
.pay-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.pay-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dim-2); }
.pay-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.pay-chip { display: inline-flex; align-items: center; justify-content: center; height: 36px; min-width: 54px;
    padding: 0 12px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--stroke); }
.pay-chip .mk { height: 22px; width: auto; }
.visa { font-family: "Outfit", sans-serif; font-weight: 800; font-style: italic; letter-spacing: .06em; font-size: 14px; color: #f3f5ff; }
.paypal { font-family: "Outfit", sans-serif; font-weight: 800; font-style: italic; font-size: 13.5px; color: #8fb4e8; }
.paypal b { color: #2b9bd6; font-weight: 800; }

.cta-card {
    position: relative; overflow: hidden; text-align: center; padding: 66px 32px; border-radius: 24px;
    background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
    border: 1px solid var(--stroke-2);
}
.cta-card::before { content: ""; position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px; border-radius: 50%; pointer-events: none;
    background: radial-gradient(closest-side, rgba(139,111,224,.4), transparent); filter: blur(20px); }
.cta-card h2 { position: relative; font-size: clamp(26px, 4.4vw, 40px); font-weight: 800; margin: 0 0 12px; letter-spacing: -.02em; }
.cta-card p { position: relative; color: var(--dim); margin: 0 auto 30px; max-width: 460px; }
.cta-card .hero-cta { margin-top: 0; }

footer.foot { border-top: 1px solid var(--stroke); padding: 34px 0; margin-top: 40px; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot .brand span { font-size: 14px; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: var(--dim); font-size: 13.5px; font-weight: 600; transition: color .18s; }
.foot-links a:hover { color: var(--text); }
.foot small { color: var(--dim-2); font-size: 12.5px; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

@media (max-width: 1024px) {
    .why-head { display: block; max-width: 560px; }
    .why-media { width: 100%; max-width: 380px; margin: 26px auto 0; }
}

.mobile-menu {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 39;
    background: rgba(10,10,16,.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--stroke);
    padding: 12px 16px 20px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { display: flex; align-items: center; gap: 10px; padding: 13px 12px; border-radius: 10px;
    color: var(--text); font-weight: 600; font-size: 15px; }
.mobile-menu a:hover { background: rgba(255,255,255,.05); }
.mobile-menu a svg { width: 18px; height: 18px; color: var(--purple); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

@media (max-width: 720px) {
    .nav { padding: 0 16px; }
    .pills { display: none; }
    .hamburger { display: flex; }
    .nav-right .cart { display: none; }
    section.block { padding: 72px 0; }
    .mobile-menu { display: block; }
}

/* narrow phones: the hero pill's full sentence overflows, so collapse it to just the mark + CTA */
@media (max-width: 560px) {
    .discord-pill .pill-msg, .discord-pill .pill-sep { display: none; }
    .discord-pill { padding-left: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}
