:root {
    --base-color: #06110d;
    --surface-color: #0b1c15;
    --surface-alt-color: #10261d;
    --accent-color: #22c55e;
    --accent-secondary: #2dd4bf;
    --text-color: #e7fff2;
    --muted-color: #89b9a1;
    --card-radius: 26px;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --shadow-soft: 0 20px 80px rgba(0, 0, 0, 0.45);
    --shadow-neon: 0 0 0 1px rgba(74, 222, 128, 0.08), 0 0 40px rgba(34, 197, 94, 0.08), 0 0 80px rgba(45, 212, 191, 0.06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top center, rgba(45, 212, 191, 0.12), transparent 26%),
        radial-gradient(circle at 50% 18%, rgba(34, 197, 94, 0.18), transparent 24%),
        linear-gradient(180deg, #030806 0%, var(--base-color) 22%, #040907 100%);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.5;
}

body[data-font="inter-space"] {
    --font-body: 'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', system-ui, sans-serif;
}

body[data-font="jakarta-manrope"] {
    --font-body: 'Manrope', system-ui, sans-serif;
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
}

body[data-font="urbanist-sora"] {
    --font-body: 'Urbanist', system-ui, sans-serif;
    --font-display: 'Sora', system-ui, sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.network-canvas,
.background-media,
.aurora-layer,
.beam-lines,
.grid-overlay,
.noise-overlay,
.orb-field,
.cursor-glow {
    position: absolute;
    inset: 0;
}

.network-canvas {
    z-index: 1;
    opacity: 0.62;
}

.background-media {
    background-position: center top;
    background-size: cover;
    mix-blend-mode: screen;
    filter: saturate(0.8) brightness(0.35);
    z-index: 2;
}

.aurora-layer {
    z-index: 3;
    filter: blur(75px);
    opacity: 0.55;
    animation: auroraDrift 16s ease-in-out infinite alternate;
}

.aurora-a {
    background: radial-gradient(circle at 35% 25%, rgba(34, 197, 94, 0.4), transparent 45%);
}

.aurora-b {
    background: radial-gradient(circle at 70% 18%, rgba(45, 212, 191, 0.25), transparent 40%);
    animation-duration: 22s;
}

.beam-lines {
    z-index: 4;
    background:
        linear-gradient(100deg, transparent 0, rgba(34, 197, 94, 0.04) 40%, transparent 70%),
        linear-gradient(80deg, transparent 10%, rgba(45, 212, 191, 0.03) 50%, transparent 80%);
    background-size: 180% 180%;
    animation: beamMove 18s linear infinite;
}

.grid-overlay {
    z-index: 5;
    background-image:
        linear-gradient(rgba(130, 255, 192, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(130, 255, 192, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 25%, transparent 80%);
    opacity: 0.2;
    animation: gridShift 24s linear infinite;
}

.noise-overlay {
    z-index: 6;
    opacity: 0.08;
    background-image: radial-gradient(circle, rgba(255,255,255,0.95) 0.7px, transparent 0.7px);
    background-size: 7px 7px;
    mix-blend-mode: soft-light;
}

.orb-field {
    z-index: 7;
}

.orb {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.95), rgba(34, 197, 94, 0.15));
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.4);
    animation: orbFloat 12s linear infinite;
}

.orb-1 { top: 12%; left: 18%; animation-duration: 12s; }
.orb-2 { top: 28%; left: 72%; animation-duration: 16s; width: 14px; height: 14px; }
.orb-3 { top: 60%; left: 14%; animation-duration: 14s; }
.orb-4 { top: 70%; left: 86%; animation-duration: 18s; }
.orb-5 { top: 48%; left: 57%; animation-duration: 17s; width: 8px; height: 8px; }
.orb-6 { top: 82%; left: 28%; animation-duration: 13s; }
.orb-7 { top: 20%; left: 88%; animation-duration: 19s; }
.orb-8 { top: 42%; left: 34%; animation-duration: 15s; width: 12px; height: 12px; }
.orb-9 { top: 88%; left: 62%; animation-duration: 11s; }
.orb-10 { top: 10%; left: 48%; animation-duration: 20s; width: 7px; height: 7px; }

.cursor-glow {
    z-index: 20;
    width: 240px;
    height: 240px;
    inset: auto;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(45, 212, 191, 0.16), transparent 65%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.page-shell {
    position: relative;
    z-index: 10;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 64px;
}

.showcase-strip {
    margin: 0 auto 20px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(99, 255, 174, 0.1);
    background: rgba(11, 28, 21, 0.8);
    backdrop-filter: blur(14px);
}

.showcase-strip img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
}

.edge-slot {
    position: fixed;
    top: 120px;
    z-index: 15;
    width: var(--slot-width, 132px);
    display: block;
    animation: floatY 5s ease-in-out infinite;
}

.edge-slot img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(99, 255, 174, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.edge-slot--left { left: 24px; }
.edge-slot--right { right: 24px; animation-delay: 1.6s; }

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 42px 0 26px;
}

.hero__mark {
    position: relative;
    width: 178px;
    height: 178px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero__logo-ring {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(99, 255, 174, 0.45);
    box-shadow: inset 0 0 40px rgba(34, 197, 94, 0.18), 0 0 70px rgba(34, 197, 94, 0.15);
    animation: spinSlow 14s linear infinite;
}

.hero__logo-img,
.hero__logo-fallback {
    position: relative;
    width: 124px;
    height: 124px;
    border-radius: 36px;
    z-index: 2;
}

.hero__logo-img {
    object-fit: cover;
}

.hero__logo-fallback {
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 20%, rgba(74, 222, 128, 0.28), rgba(7, 17, 13, 0.95));
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    border: 1px solid rgba(99, 255, 174, 0.22);
}

.hero__content {
    max-width: 760px;
}

.hero__badge,
.soft-pill,
.overlay-pill,
.hard-pill,
.section-heading__pill,
.modal__badge,
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero__badge {
    margin-bottom: 18px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(99, 255, 174, 0.18);
    color: rgba(210, 255, 225, 0.9);
}

.hero__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: transparent;
    background: linear-gradient(180deg, #f0fff7 0%, rgba(240, 255, 247, 0.74) 42%, rgba(110, 250, 174, 0.78) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 22px rgba(45, 212, 191, 0.12);
}

.hero__subtitle {
    margin: 18px auto 0;
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(231, 255, 242, 0.92);
}

.hero__description {
    margin: 12px auto 0;
    max-width: 760px;
    color: var(--muted-color);
}

.hero-note {
    margin: 20px auto 28px;
    text-align: center;
    color: rgba(188, 227, 203, 0.7);
    font-size: 0.95rem;
}

.sticky-nav {
    position: sticky;
    top: 18px;
    z-index: 40;
    padding: 12px 14px;
    margin: 0 auto 26px;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
}

.sticky-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-link {
    position: relative;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: rgba(213, 245, 223, 0.74);
    border: 1px solid rgba(99, 255, 174, 0.08);
    background: rgba(7, 17, 13, 0.4);
    transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.chip-link:hover,
.chip-link.is-active {
    color: #fff;
    transform: translateY(-2px);
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(99, 255, 174, 0.24);
}

.content-stack {
    display: grid;
    gap: 34px;
}

.content-section {
    position: relative;
    scroll-margin-top: 96px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.section-heading__eyebrow,
.modal__eyebrow,
.panel-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(174, 232, 194, 0.55);
    font-size: 0.72rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.section-heading p {
    margin: 6px 0 0;
    color: var(--muted-color);
    max-width: 640px;
}

.section-heading__pill {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(99, 255, 174, 0.12);
    color: rgba(213, 255, 225, 0.85);
    white-space: nowrap;
}

.glass-panel {
    position: relative;
    background: linear-gradient(180deg, rgba(10, 26, 19, 0.74), rgba(6, 17, 13, 0.86));
    border: 1px solid rgba(99, 255, 174, 0.08);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.neon-panel::before,
.interactive-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.neon-panel::before {
    padding: 1px;
    background: linear-gradient(120deg, rgba(34, 197, 94, 0.28), rgba(45, 212, 191, 0.06), rgba(34, 197, 94, 0.22));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0.85;
    animation: neonPulse 5.2s ease-in-out infinite;
}

.interactive-card {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

.interactive-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 255, 174, 0.16);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(74, 222, 128, 0.08);
}

.interactive-card::after {
    background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.08) 48%, transparent 76%);
    transform: translateX(-130%);
    opacity: 0;
}

.interactive-card:hover::after {
    opacity: 1;
    animation: shimmer 1.4s ease;
}

.line-card-list,
.social-list {
    display: grid;
    gap: 14px;
}

.line-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
}

.line-card__media,
.logo-chip,
.popup-logo-chip,
.mini-logo-chip {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(34, 197, 94, 0.22), rgba(11, 28, 21, 0.9));
    border: 1px solid rgba(99, 255, 174, 0.16);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #f4fff8;
    box-shadow: inset 0 0 30px rgba(34, 197, 94, 0.12);
}

.logo-chip.has-image img,
.popup-logo-chip.has-image img,
.mini-logo-chip.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-chip strong,
.popup-logo-chip strong,
.mini-logo-chip strong {
    position: absolute;
    opacity: 0;
}

.logo-chip .icon,
.popup-logo-chip .icon,
.mini-logo-chip .icon {
    width: 24px;
    height: 24px;
    color: rgba(240, 255, 247, 0.9);
}

.line-card__body h3,
.vip-card h3,
.mini-card h3,
.social-card h3,
.popup-card h4,
.modal h3 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
}

.line-card__subtitle {
    display: inline-block;
    margin-top: 4px;
    color: rgba(190, 233, 204, 0.66);
}

.line-card__body p,
.vip-card p,
.mini-card p,
.social-card p,
.popup-card p,
.modal p {
    margin: 6px 0 0;
    color: var(--muted-color);
}

.line-card__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.line-card__actions,
.social-card__actions,
.vip-card__bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-button,
.mini-card__link {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, 0.09);
    border: 1px solid rgba(99, 255, 174, 0.12);
    color: rgba(234, 255, 243, 0.94);
    transition: transform 0.28s ease, background 0.28s ease;
}

.icon-button:hover,
.mini-card__link:hover,
.soft-button:hover,
.modal__button:hover {
    transform: translateY(-2px);
    background: rgba(34, 197, 94, 0.16);
}

.icon {
    width: 18px;
    height: 18px;
}

.soft-pill {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(99, 255, 174, 0.14);
    color: rgba(214, 255, 227, 0.8);
}

.soft-pill--tight {
    font-size: 0.68rem;
    padding: 0.34rem 0.72rem;
}

.hard-pill {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.14);
    color: rgba(255, 214, 214, 0.88);
}

.hard-pill--live {
    box-shadow: inset 0 0 14px rgba(239, 68, 68, 0.18), 0 0 18px rgba(239, 68, 68, 0.08);
}

.overlay-pill {
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.18);
    color: rgba(202, 255, 247, 0.86);
    letter-spacing: 0.06em;
    text-transform: none;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.vip-grid > .vip-card:last-child:nth-child(odd) {
    grid-column: 1 / span 2;
    justify-self: center;
    width: min(100%, 520px);
}

.vip-card {
    padding: 18px;
    display: grid;
    gap: 16px;
    min-height: 190px;
}

.vip-grid--compact .vip-card {
    min-height: 168px;
}

.vip-card__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.vip-card__logo {
    width: 74px;
    height: 74px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.mini-card {
    padding: 16px 14px;
    display: grid;
    gap: 12px;
    min-height: 224px;
    position: relative;
}

.mini-card__logo {
    width: 100%;
    max-width: 82px;
    height: 82px;
}

.mini-card__link {
    position: absolute;
    top: 16px;
    right: 14px;
}

.line-card--wide {
    min-height: 92px;
}

.social-card {
    padding: 16px 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    background:
        linear-gradient(180deg, var(--social-bg, rgba(34, 197, 94, 0.08)), rgba(7, 17, 13, 0.9));
}

.social-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--social-icon-bg, rgba(34, 197, 94, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-card__icon .icon {
    width: 22px;
    height: 22px;
}

.page-footer {
    padding: 42px 0 18px;
    text-align: center;
    color: rgba(186, 228, 201, 0.58);
    display: grid;
    gap: 8px;
}

.page-footer p,
.page-footer span {
    margin: 0;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    background: var(--loader-bg, #000);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__center {
    position: relative;
    width: calc(var(--loader-size, 132px) + 96px);
    height: calc(var(--loader-size, 132px) + 96px);
    display: grid;
    place-items: center;
}

.page-loader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(99, 255, 174, 0.18);
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.08), inset 0 0 40px rgba(34, 197, 94, 0.08);
}

.page-loader__logo-wrap,
.page-loader__fallback {
    width: var(--loader-size, 132px);
    height: var(--loader-size, 132px);
    border-radius: 34px;
    overflow: hidden;
    display: grid;
    place-items: center;
    position: relative;
}

.page-loader__logo-wrap {
    background: rgba(4, 10, 7, 0.6);
    border: 1px solid rgba(99, 255, 174, 0.18);
}

.page-loader__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-loader__fallback {
    background: radial-gradient(circle at 30% 20%, rgba(74, 222, 128, 0.25), rgba(4, 10, 7, 0.95));
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.loader-orbit .page-loader__ring {
    animation: spinSlow 2.5s linear infinite;
}

.loader-pulse .page-loader__ring {
    animation: pulseRing 1.8s ease-in-out infinite;
}

.loader-glitch .page-loader__logo-wrap {
    animation: glitchJump 1.8s linear infinite;
}

.loader-zoom .page-loader__logo-wrap {
    animation: zoomPulse 1.7s ease-in-out infinite;
}

.loader-spectrum .page-loader__ring {
    animation: hueShift 3s linear infinite;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(14px);
}

.modal__dialog {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(10, 26, 19, 0.94), rgba(6, 17, 13, 0.96));
    border: 1px solid rgba(99, 255, 174, 0.12);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

.modal__dialog--wide {
    width: min(940px, 100%);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: rgba(232, 255, 241, 0.9);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.modal__badge {
    margin-bottom: 14px;
    background: rgba(34, 197, 94, 0.12);
    color: rgba(232, 255, 241, 0.88);
    border: 1px solid rgba(99, 255, 174, 0.14);
}

.modal__logo {
    margin-bottom: 16px;
}

.modal__logo .logo-chip,
.modal__logo .popup-logo-chip {
    width: 82px;
    height: 82px;
}

.modal__button,
.soft-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    border-radius: 16px;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(45, 212, 191, 0.16));
    border: 1px solid rgba(99, 255, 174, 0.18);
    color: #f4fff8;
    font-weight: 700;
}

.modal__lead {
    margin-bottom: 18px;
}

.popup-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.popup-card {
    padding: 18px;
    display: grid;
    gap: 10px;
    min-height: 220px;
}

.popup-card__logo {
    width: 72px;
    height: 72px;
}

.modal-slot {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(99, 255, 174, 0.12);
}

.modal-slot--bottom {
    margin: 20px 0 0;
}

.modal__footnote {
    margin-top: 20px;
    color: rgba(188, 227, 203, 0.68);
}

.reveal-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animations-disabled-network .network-canvas,
.animations-disabled-cursor_glow .cursor-glow,
.animations-disabled-aurora .aurora-layer,
.animations-disabled-beam_lines .beam-lines,
.animations-disabled-grid_overlay .grid-overlay,
.animations-disabled-noise_overlay .noise-overlay,
.animations-disabled-particle_orbs .orb-field {
    display: none;
}

.animations-disabled-neon_borders .neon-panel::before,
.animations-disabled-shimmer .interactive-card::after,
.animations-disabled-float_cards .interactive-card,
.animations-disabled-tilt .interactive-card,
.animations-disabled-reveal .reveal-section {
    animation: none !important;
}

.animations-disabled-float_cards .interactive-card {
    transform: none !important;
}

body.animations-disabled-reveal .reveal-section {
    opacity: 1;
    transform: none;
}

@keyframes auroraDrift {
    0% { transform: translate3d(-2%, 0, 0) scale(1); }
    100% { transform: translate3d(2%, 4%, 0) scale(1.12); }
}

@keyframes beamMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes gridShift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(24px, 24px, 0); }
}

@keyframes orbFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(0.96); opacity: 0.45; }
    50% { transform: translate3d(0, -20px, 0) scale(1.12); opacity: 1; }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.75; filter: drop-shadow(0 0 0 rgba(45, 212, 191, 0)); }
    50% { opacity: 1; filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.35)); }
}

@keyframes shimmer {
    0% { transform: translateX(-130%); }
    100% { transform: translateX(130%); }
}

@keyframes pulseRing {
    0%, 100% { transform: scale(0.94); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes glitchJump {
    0%, 100% { transform: translate(0); filter: drop-shadow(0 0 0 rgba(45,212,191,0)); }
    20% { transform: translate(2px, -1px); }
    21% { transform: translate(-2px, 1px); }
    22% { transform: translate(1px, 0); }
    45% { filter: drop-shadow(0 0 14px rgba(45,212,191,0.35)); }
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(0.96); }
    50% { transform: scale(1.08); }
}

@keyframes hueShift {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(360deg); }
}

@media (max-width: 1360px) {
    .edge-slot {
        display: none;
    }
}

@media (max-width: 1024px) {
    .mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .page-shell {
        width: min(100% - 22px, 1120px);
    }

    .vip-grid {
        grid-template-columns: 1fr;
    }

    .vip-grid > .vip-card:last-child:nth-child(odd) {
        grid-column: auto;
        width: 100%;
    }

    .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading {
        flex-direction: column;
        align-items: start;
    }

    .line-card,
    .social-card {
        grid-template-columns: auto 1fr;
    }

    .line-card__actions,
    .social-card__actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .sticky-nav {
        top: 12px;
        border-radius: 26px;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: 28px;
    }

    .hero__mark {
        width: 150px;
        height: 150px;
    }

    .hero__logo-img,
    .hero__logo-fallback {
        width: 108px;
        height: 108px;
    }

    .line-card,
    .social-card,
    .vip-card,
    .mini-card,
    .popup-card,
    .modal__dialog {
        border-radius: 22px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .chip-link {
        width: 100%;
        text-align: center;
    }

    .sticky-nav__inner {
        width: 100%;
    }
}


/* --- themeable premium overrides / 2026 refresh --- */
body {
    background:
        radial-gradient(circle at top center, rgba(var(--accent-secondary-rgb), 0.12), transparent 26%),
        radial-gradient(circle at 50% 18%, rgba(var(--accent-rgb), 0.18), transparent 24%),
        linear-gradient(180deg, rgba(3, 8, 6, 1) 0%, var(--base-color) 22%, rgba(4, 9, 7, 1) 100%);
}

.cursor-glow {
    background: radial-gradient(circle, rgba(var(--accent-secondary-rgb), 0.95), rgba(var(--accent-rgb), 0.15));
    box-shadow: 0 0 25px rgba(var(--accent-secondary-rgb), 0.4);
}

.aurora-a {
    background: radial-gradient(circle at 35% 25%, rgba(var(--accent-rgb), 0.38), transparent 45%);
}

.aurora-b {
    background: radial-gradient(circle at 70% 18%, rgba(var(--accent-secondary-rgb), 0.26), transparent 40%);
}

.beam-lines {
    background:
        linear-gradient(100deg, transparent 0, rgba(var(--accent-rgb), 0.04) 40%, transparent 70%),
        linear-gradient(80deg, transparent 10%, rgba(var(--accent-secondary-rgb), 0.03) 50%, transparent 80%);
}

.grid-overlay {
    background-image:
        linear-gradient(rgba(var(--accent-rgb), 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-rgb), 0.05) 1px, transparent 1px);
}

.background-media {
    mix-blend-mode: screen;
}

.showcase-strip {
    border-color: rgba(var(--accent-rgb), 0.12);
    background: rgba(var(--surface-rgb), 0.8);
}

.edge-slot {
    width: var(--slot-width, 132px);
}

.edge-slot img,
.showcase-strip img,
.modal-slot img {
    display: block;
    width: 100%;
}

.hero__logo-ring {
    border-color: rgba(var(--accent-rgb), 0.46);
    box-shadow: inset 0 0 40px rgba(var(--accent-rgb), 0.18), 0 0 70px rgba(var(--accent-rgb), 0.15);
}

.hero__logo-fallback {
    background: radial-gradient(circle at 30% 20%, rgba(var(--accent-rgb), 0.28), rgba(var(--base-rgb), 0.95));
    border-color: rgba(var(--accent-rgb), 0.22);
}

.hero__badge,
.soft-pill,
.section-heading__pill,
.modal__badge,
.pill {
    background: rgba(var(--accent-rgb), 0.12);
    border-color: rgba(var(--accent-rgb), 0.18);
    color: rgba(var(--text-rgb), 0.9);
}

.overlay-pill {
    background: rgba(var(--accent-secondary-rgb), 0.09);
    border-color: rgba(var(--accent-secondary-rgb), 0.2);
    color: rgba(var(--text-rgb), 0.86);
}

.hero__title {
    background: linear-gradient(180deg, rgba(var(--text-rgb), 1) 0%, rgba(var(--text-rgb), 0.78) 42%, rgba(var(--accent-rgb), 0.86) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 22px rgba(var(--accent-secondary-rgb), 0.12);
}

.hero__subtitle {
    color: rgba(var(--text-rgb), 0.92);
}

.hero-note,
.modal__footnote {
    color: rgba(var(--muted-rgb), 0.78);
}

.chip-link {
    color: rgba(var(--text-rgb), 0.76);
    border-color: rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.1);
    background: rgba(var(--base-rgb), 0.42);
}

.chip-link:hover,
.chip-link.is-active {
    color: rgba(var(--text-rgb), 0.98);
    background: rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.16);
    border-color: rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.28);
    box-shadow: 0 0 0 1px rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.08), 0 0 22px rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.08);
}

.content-section {
    --section-accent: var(--accent-color);
    --section-accent-rgb: var(--accent-rgb);
}

.content-section .section-heading__eyebrow {
    color: rgba(var(--section-accent-rgb), 0.72);
}

.section-heading__pill {
    background: rgba(var(--section-accent-rgb), 0.14);
    border-color: rgba(var(--section-accent-rgb), 0.2);
}

.glass-panel {
    background: linear-gradient(180deg, rgba(var(--surface-rgb), 0.84), rgba(var(--base-rgb), 0.92));
    border-color: rgba(var(--accent-rgb), 0.1);
}

.neon-panel::before {
    background: linear-gradient(120deg, rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.3), rgba(var(--accent-secondary-rgb), 0.08), rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.22));
}

.interactive-card {
    cursor: pointer;
}

.interactive-card:hover {
    border-color: rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.18);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.1);
}

.interactive-card:focus-visible {
    outline: 2px solid rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.44);
    outline-offset: 4px;
}

.interactive-card.has-card-media {
    background:
        linear-gradient(180deg, rgba(var(--surface-rgb), calc(0.94 - (var(--card-media-opacity, 0.22) * 0.34))), rgba(var(--base-rgb), calc(0.97 - (var(--card-media-opacity, 0.22) * 0.22)))),
        var(--card-media);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.line-card__media,
.logo-chip,
.popup-logo-chip,
.mini-logo-chip {
    background: linear-gradient(160deg, rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.22), rgba(var(--surface-rgb), 0.92));
    border-color: rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.16);
    color: rgba(var(--text-rgb), 0.96);
    box-shadow: inset 0 0 30px rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.12);
}

.logo-chip .icon,
.popup-logo-chip .icon,
.mini-logo-chip .icon {
    color: rgba(var(--text-rgb), 0.9);
}

.line-card__subtitle {
    color: rgba(var(--text-rgb), 0.66);
}

.card-cta-group,
.mini-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.mini-card {
    align-content: start;
}

.mini-card__actions {
    margin-top: auto;
}

.action-button,
.ghost-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 42px;
    border-radius: 14px;
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.18);
    color: rgba(var(--text-rgb), 0.95);
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.action-button {
    background: linear-gradient(135deg, rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.22), rgba(var(--accent-secondary-rgb), 0.16));
}

.ghost-action {
    background: rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.1);
}

.action-button:hover,
.ghost-action:hover,
.modal__button:hover,
.soft-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.28), rgba(var(--accent-secondary-rgb), 0.2));
}

.icon-button,
.mini-card__link {
    background: rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.09);
    border-color: rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.12);
    color: rgba(var(--text-rgb), 0.94);
}

.social-card {
    background: linear-gradient(180deg, var(--social-bg, rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.1)), rgba(var(--base-rgb), 0.9));
}

.social-card__icon {
    background: var(--social-icon-bg, rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.18));
}

.social-card__icon.has-image {
    overflow: hidden;
}

.social-card__icon.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.modal__dialog {
    background: linear-gradient(180deg, rgba(var(--surface-rgb), 0.94), rgba(var(--base-rgb), 0.96));
    border-color: rgba(var(--accent-rgb), 0.12);
}

.modal__close {
    color: rgba(var(--text-rgb), 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.modal__button,
.soft-button {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-secondary-rgb), 0.16));
    border-color: rgba(var(--accent-rgb), 0.18);
    color: rgba(var(--text-rgb), 0.95);
}

.modal-slot {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(var(--accent-rgb), 0.12);
}

.modal-slot--bottom {
    margin: 20px 0 0;
}

.visitor-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.78rem 1rem;
    margin: 2px auto;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.16);
    background: rgba(var(--surface-rgb), 0.68);
    box-shadow: inset 0 0 26px rgba(var(--accent-rgb), 0.08), 0 12px 30px rgba(0, 0, 0, 0.16);
}

.visitor-counter__label {
    color: rgba(var(--text-rgb), 0.72);
    font-size: 0.86rem;
}

.visitor-counter__value {
    color: rgba(var(--text-rgb), 0.95);
    font-size: 1rem;
}

.page-footer {
    color: rgba(var(--muted-rgb), 0.7);
}

.page-loader__ring {
    border-color: rgba(var(--accent-rgb), 0.18);
    box-shadow: 0 0 40px rgba(var(--accent-secondary-rgb), 0.08), inset 0 0 40px rgba(var(--accent-rgb), 0.08);
}

.page-loader__logo-wrap {
    border-color: rgba(var(--accent-rgb), 0.18);
}

.page-loader__fallback {
    background: radial-gradient(circle at 30% 20%, rgba(var(--accent-rgb), 0.25), rgba(4, 10, 7, 0.95));
}

@media (max-width: 1280px) {
    .edge-slot {
        display: none;
    }
}

@media (max-width: 640px) {
    .card-cta-group,
    .mini-card__actions,
    .line-card__actions,
    .social-card__actions,
    .vip-card__bottom {
        width: 100%;
    }

    .action-button,
    .ghost-action {
        flex: 1 1 auto;
    }
}

/* --- incremental fixes: card media + controls --- */
.action-button,
.ghost-action {
    cursor: pointer;
    font: inherit;
}

.social-card.has-card-media {
    background:
        linear-gradient(180deg, var(--social-bg, rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.12)), rgba(var(--base-rgb), calc(0.96 - (var(--card-media-opacity, 0.22) * 0.18)))),
        var(--card-media);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- v3 card click, icon-only go control, stronger per-card backgrounds, footer counters --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.card-hitbox {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.card-hitbox:focus-visible {
    outline: 2px solid rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.44);
    outline-offset: 4px;
}

.line-card__actions,
.social-card__actions,
.vip-card__bottom,
.mini-card__actions,
.card-cta-group,
.ghost-action,
.card-go-link {
    position: relative;
    z-index: 4;
}

.card-cta-group {
    gap: 10px;
}

.card-go-link {
    flex: 0 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 18px rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.08), 0 10px 24px rgba(0, 0, 0, 0.22);
}

.card-go-link.is-disabled {
    opacity: 0.38;
    pointer-events: none;
}

.interactive-card.has-card-media,
.popup-card.has-card-media {
    background:
        linear-gradient(180deg, rgba(var(--surface-rgb), calc(0.78 - (var(--card-media-opacity, 0.22) * 0.26))), rgba(var(--base-rgb), calc(0.84 - (var(--card-media-opacity, 0.22) * 0.18)))),
        var(--card-media);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.social-card.has-card-media {
    background:
        linear-gradient(180deg, var(--social-bg, rgba(var(--section-accent-rgb, var(--accent-rgb)), 0.1)), rgba(var(--base-rgb), calc(0.84 - (var(--card-media-opacity, 0.22) * 0.16)))),
        var(--card-media);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.popup-card.has-card-media {
    overflow: hidden;
}

.visitor-counter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 640px) {
    .visitor-counter-wrap {
        width: 100%;
    }
}
