:root {
    --bg-base: #0c111f;
    --bg-deep: #060a14;
    --bg-panel: rgba(12, 17, 31, 0.94);
    --bg-panel-soft: rgba(12, 17, 31, 0.78);
    --text-main: #f5f7ff;
    --text-soft: #8e9ab8;
    --cyan: #22d3ee;
    --magenta: #e879f9;
    --cyan-rgb: 34, 211, 238;
    --magenta-rgb: 232, 121, 249;
    --line-cyan: rgba(34, 211, 238, 0.36);
    --line-magenta: rgba(232, 121, 249, 0.34);
    --glow-cyan: 0 0 24px rgba(34, 211, 238, 0.32);
    --glow-cyan-strong: 0 0 54px rgba(34, 211, 238, 0.28);
    --glow-magenta: 0 0 24px rgba(232, 121, 249, 0.28);
    --glow-magenta-strong: 0 0 56px rgba(232, 121, 249, 0.26);
}

html {
    scroll-behavior: smooth;
}

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

body.site-body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-main);
    font-family: 'Chakra Petch', sans-serif;
    background:
        radial-gradient(circle at 14% 16%, rgba(34, 211, 238, 0.2), transparent 25%),
        radial-gradient(circle at 88% 12%, rgba(232, 121, 249, 0.24), transparent 24%),
        radial-gradient(circle at 50% 74%, rgba(34, 211, 238, 0.08), transparent 30%),
        linear-gradient(140deg, #050815 0%, #0c111f 42%, #060913 100%);
}

body.site-body::before,
body.site-body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body.site-body::before {
    background:
        linear-gradient(rgba(34, 211, 238, 0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.075) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 47%, rgba(232, 121, 249, 0.055) 48%, transparent 52%);
    background-size: 80px 80px, 80px 80px, 240px 240px;
    mask-image: radial-gradient(circle at center, black 28%, transparent 96%);
    opacity: 0.78;
    animation: gridDrift 26s linear infinite;
}

body.site-body::after {
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.04) 0 1px,
            transparent 1px 4px
        ),
        radial-gradient(circle at 50% 50%, transparent 48%, rgba(232, 121, 249, 0.08) 70%, transparent 78%);
    mix-blend-mode: screen;
    opacity: 0.36;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease,
        opacity 0.24s ease;
}

::selection {
    color: #fff;
    background: rgba(232, 121, 249, 0.32);
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

.site-shell {
    position: relative;
    min-height: 100vh;
    padding: clamp(0.95rem, 2.6vw, 2rem);
    isolation: isolate;
}

.site-shell::before,
.site-shell::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.site-shell::before {
    inset: 0.75rem;
    border-radius: 1.9rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.05), transparent 36%),
        linear-gradient(315deg, rgba(232, 121, 249, 0.08), transparent 34%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 0 60px rgba(34, 211, 238, 0.04);
}

.site-shell::after {
    top: 8rem;
    right: max(1rem, 4vw);
    width: min(34vw, 24rem);
    aspect-ratio: 1;
    border-radius: 2rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
    transform: rotate(45deg);
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 48%),
        linear-gradient(315deg, rgba(232, 121, 249, 0.08), transparent 40%);
    box-shadow:
        0 0 42px rgba(34, 211, 238, 0.12),
        0 0 64px rgba(232, 121, 249, 0.1);
    opacity: 0.64;
}

.site-shell > * {
    position: relative;
    z-index: 1;
}

.site-header {
    position: relative;
    overflow: hidden;
    width: min(1240px, 100%);
    margin: 0 auto 3rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(15, 20, 38, 0.96), rgba(8, 11, 22, 0.86));
    backdrop-filter: blur(24px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(34, 211, 238, 0.04),
        var(--glow-cyan),
        var(--glow-magenta);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
    opacity: 0.92;
}

.brand-lockup {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    flex: 1 1 auto;
}

.brand-lockup:hover .brand-mark {
    transform: translateY(-2px) rotate(-2deg);
    box-shadow:
        0 0 26px rgba(34, 211, 238, 0.34),
        0 0 34px rgba(232, 121, 249, 0.3);
}

.brand-mark {
    position: relative;
    width: clamp(4.5rem, 7vw, 5.8rem);
    aspect-ratio: 1;
    padding: 0.8rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(34, 211, 238, 0.22);
    background:
        linear-gradient(145deg, rgba(34, 211, 238, 0.2), rgba(12, 17, 31, 0.2) 42%),
        linear-gradient(315deg, rgba(232, 121, 249, 0.18), rgba(12, 17, 31, 0.94));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 24px rgba(34, 211, 238, 0.22),
        0 0 32px rgba(232, 121, 249, 0.14);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.brand-mark::before,
.brand-mark::after {
    content: '';
    position: absolute;
    inset: 0.4rem;
    border-radius: 1rem;
    transform: rotate(45deg);
    pointer-events: none;
}

.brand-mark::before {
    border: 1px solid rgba(34, 211, 238, 0.36);
}

.brand-mark::after {
    inset: 0.8rem;
    border: 1px solid rgba(232, 121, 249, 0.34);
}

.brand-mark img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 0 16px rgba(34, 211, 238, 0.32))
        drop-shadow(0 0 18px rgba(232, 121, 249, 0.2));
}

.brand-copy {
    min-width: 0;
}

.brand-title {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.96rem, 1.7vw, 1.3rem);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #fbfdff;
    text-shadow:
        0 0 14px rgba(34, 211, 238, 0.32),
        0 0 18px rgba(232, 121, 249, 0.22);
}

.brand-subtitle {
    display: block;
    margin-top: 0.34rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.95rem;
    padding: 0.76rem 1.08rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(15, 20, 38, 0.96), rgba(8, 11, 22, 0.8));
    color: #dce7ff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 700;
    box-shadow:
        inset 0 0 0 1px rgba(34, 211, 238, 0.04),
        inset 0 0 24px rgba(34, 211, 238, 0.02);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), transparent 50%, rgba(232, 121, 249, 0.14));
    opacity: 0;
    transition: opacity 0.24s ease;
}

.nav-link:hover {
    color: #fff;
    border-color: rgba(34, 211, 238, 0.32);
    transform: translateY(-1px);
    box-shadow:
        0 0 22px rgba(34, 211, 238, 0.18),
        0 0 26px rgba(232, 121, 249, 0.14);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.is-active {
    color: #0c111f;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), #a7effb 35%, var(--magenta));
    box-shadow:
        0 0 24px rgba(34, 211, 238, 0.34),
        0 0 28px rgba(232, 121, 249, 0.28);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.82rem 1.28rem;
    border-radius: 999px;
    border: 1px solid rgba(232, 121, 249, 0.34);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(232, 121, 249, 0.32));
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
    box-shadow:
        0 0 24px rgba(34, 211, 238, 0.18),
        0 0 30px rgba(232, 121, 249, 0.2);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 32px rgba(34, 211, 238, 0.24),
        0 0 38px rgba(232, 121, 249, 0.28);
}

.menu-toggle {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
    background: rgba(8, 11, 22, 0.92);
    color: var(--cyan);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 16px rgba(34, 211, 238, 0.12);
}

.menu-toggle:hover {
    border-color: rgba(232, 121, 249, 0.28);
    color: #fff;
    box-shadow:
        0 0 20px rgba(34, 211, 238, 0.16),
        0 0 28px rgba(232, 121, 249, 0.16);
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu {
    width: min(1240px, 100%);
    margin: 0 auto 2rem;
}

.mobile-menu-panel {
    padding: 1rem;
    display: grid;
    gap: 0.85rem;
    border-radius: 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(12, 17, 31, 0.97), rgba(7, 10, 20, 0.92));
    backdrop-filter: blur(18px);
    box-shadow:
        var(--glow-cyan),
        var(--glow-magenta);
}

.mobile-menu .nav-link,
.mobile-menu .header-cta {
    width: 100%;
    justify-content: center;
}

main {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.page-shell {
    width: 100%;
    padding-bottom: 4rem;
    gap: 4rem;
}

.page-shell > section {
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 2rem;
    align-items: start;
    width: 100%;
}

.hero-copy,
.signal-stack {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-copy {
    gap: 1.3rem;
    padding-top: 0.8rem;
    text-align: left;
}

.hero-copy::before {
    content: '';
    position: absolute;
    top: -3.4rem;
    left: -4rem;
    width: min(36vw, 22rem);
    height: min(36vw, 22rem);
    background: radial-gradient(circle, rgba(232, 121, 249, 0.18), transparent 68%);
    filter: blur(18px);
    pointer-events: none;
    z-index: -1;
}

.hero-copy::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 0;
    width: 7rem;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    box-shadow:
        0 0 16px rgba(34, 211, 238, 0.38),
        0 0 18px rgba(232, 121, 249, 0.28);
}

.signal-stack {
    gap: 1.15rem;
}

.page-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    padding: 0.48rem 0.96rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.22);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(232, 121, 249, 0.08));
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 18px rgba(34, 211, 238, 0.08);
}

.page-kicker::before {
    content: '';
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow:
        0 0 10px rgba(232, 121, 249, 0.84),
        0 0 18px rgba(34, 211, 238, 0.36);
    animation: beaconPulse 1.8s ease-in-out infinite;
}

.glitch {
    position: relative;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    line-height: 0.88;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    text-shadow:
        0 0 12px rgba(34, 211, 238, 0.5),
        0 0 18px rgba(34, 211, 238, 0.42),
        0 0 24px rgba(232, 121, 249, 0.34),
        0 0 40px rgba(232, 121, 249, 0.2);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glitch::before {
    color: rgba(34, 211, 238, 0.72);
    transform: translate3d(0.02em, -0.01em, 0);
    clip-path: inset(0 0 58% 0);
    animation: glitchShift 3.8s steps(2, end) infinite;
}

.glitch::after {
    color: rgba(232, 121, 249, 0.72);
    transform: translate3d(-0.03em, 0.01em, 0);
    clip-path: inset(62% 0 0 0);
    animation: glitchShiftAlt 4.5s steps(2, end) infinite;
}

.hero-title {
    max-width: 9.5ch;
    font-size: clamp(3.55rem, 8.9vw, 6.9rem);
    letter-spacing: 0.05em;
    text-shadow: 
    0 0 8px rgb(34 211 238), 
    0 0 14px rgb(34 211 238 / 36%), 
    0 0 18px rgb(232 121 249);
}

.hero-title::before {
    opacity: 0.46;
    transform: translate3d(0.012em, -0.004em, 0);
    clip-path: inset(0 0 64% 0);
    animation-duration: 7.2s;
}

.hero-title::after {
    opacity: 0.44;
    transform: translate3d(-0.016em, 0.006em, 0);
    clip-path: inset(66% 0 0 0);
    animation-duration: 8.2s;
}

.hero-lead {
    max-width: 38rem;
    font-size: clamp(1.05rem, 2vw, 1.46rem);
    line-height: 1.58;
    color: #dfe8ff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.92rem;
}

.action-chip {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    padding: 0.88rem 1.28rem;
    border-radius: 999px;
    border: 1px solid var(--line-cyan);
    background: linear-gradient(180deg, rgba(15, 20, 38, 0.92), rgba(8, 11, 20, 0.78));
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 0 24px rgba(34, 211, 238, 0.03);
}

.action-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), transparent 42%, rgba(232, 121, 249, 0.16));
    opacity: 0;
    transition: opacity 0.24s ease;
}

.action-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 121, 249, 0.28);
    box-shadow:
        0 0 28px rgba(34, 211, 238, 0.16),
        0 0 32px rgba(232, 121, 249, 0.18);
}

.action-chip:hover::before {
    opacity: 1;
}

.action-chip.action-primary {
    color: #0c111f;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), #94f0fd 34%, var(--magenta));
    box-shadow:
        0 0 28px rgba(34, 211, 238, 0.28),
        0 0 36px rgba(232, 121, 249, 0.24);
}

.action-chip.action-primary::before {
    display: none;
}

.story-panel {
    position: relative;
    max-width: 38rem;
    padding: 1.3rem 1.38rem;
    border-radius: 1.42rem;
    border: 1px solid rgba(232, 121, 249, 0.18);
    background: linear-gradient(180deg, rgba(16, 22, 39, 0.88), rgba(9, 13, 25, 0.7));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 24px rgba(232, 121, 249, 0.08);
}

.story-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.06), transparent 45%, rgba(232, 121, 249, 0.08));
    pointer-events: none;
}

.story-quote,
.story-copy {
    position: relative;
    z-index: 1;
}

.story-quote {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.55;
    color: #fdf4ff;
}

.story-copy {
    margin: 0.82rem 0 0;
    line-height: 1.7;
    color: var(--text-soft);
}

.status-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    padding: 0.66rem 0.92rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 17, 31, 0.74);
    color: #e8efff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    font-weight: 700;
    box-shadow:
        inset 0 0 0 1px rgba(34, 211, 238, 0.03),
        0 0 18px rgba(34, 211, 238, 0.06);
}

.status-chip:nth-child(even) {
    border-color: rgba(232, 121, 249, 0.2);
    box-shadow:
        inset 0 0 0 1px rgba(232, 121, 249, 0.03),
        0 0 18px rgba(232, 121, 249, 0.06);
}

.signal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.signal-link {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.74rem 1.08rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.18);
    background: linear-gradient(180deg, rgba(15, 20, 38, 0.92), rgba(8, 11, 20, 0.78));
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 18px rgba(34, 211, 238, 0.06);
}

.signal-link:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 121, 249, 0.28);
    box-shadow:
        0 0 24px rgba(34, 211, 238, 0.14),
        0 0 30px rgba(232, 121, 249, 0.14);
}

.signal-link.is-static {
    border-style: dashed;
    color: var(--text-soft);
    pointer-events: none;
}

.uplink-feed {
    margin-top: 1rem;
}

.uplink-feed li {
    align-items: center;
}

.uplink-feed .track-copy strong {
    font-size: 0.94rem;
}

.uplink-feed .track-copy a:hover strong {
    color: var(--cyan);
    text-shadow:
        0 0 10px rgba(34, 211, 238, 0.24),
        0 0 14px rgba(232, 121, 249, 0.14);
}

.neon-box,
.signal-card,
.info-card,
.site-footer {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(16, 22, 39, 0.95), rgba(8, 11, 22, 0.82));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 0 1px rgba(34, 211, 238, 0.04),
        var(--glow-cyan),
        var(--glow-magenta);
    backdrop-filter: blur(24px);
}

.signal-card::before,
.info-card::before,
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(34, 211, 238, 0.1), transparent 42%),
        linear-gradient(320deg, rgba(232, 121, 249, 0.12), transparent 34%);
    pointer-events: none;
}

.signal-card::after,
.info-card::after {
    content: '';
    position: absolute;
    top: 1.2rem;
    right: -3.8rem;
    width: 10rem;
    aspect-ratio: 1;
    border-radius: 1.3rem;
    border: 1px solid rgba(34, 211, 238, 0.12);
    transform: rotate(45deg);
    box-shadow:
        0 0 24px rgba(34, 211, 238, 0.08),
        0 0 28px rgba(232, 121, 249, 0.06);
    opacity: 0.9;
    pointer-events: none;
}

.signal-card > *,
.info-card > *,
.site-footer > * {
    position: relative;
    z-index: 1;
}

.signal-card,
.info-card {
    padding: 1.45rem;
}

.signal-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.signal-label {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--cyan);
    text-shadow: 0 0 12px rgba(34, 211, 238, 0.32);
}

.signal-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.74rem;
    border-radius: 999px;
    border: 1px solid rgba(232, 121, 249, 0.3);
    background: rgba(232, 121, 249, 0.16);
    color: #fceeff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.66rem;
    font-weight: 700;
    box-shadow:
        0 0 16px rgba(232, 121, 249, 0.18),
        inset 0 0 12px rgba(34, 211, 238, 0.08);
    animation: hotPulse 1.8s ease-in-out infinite;
}

.brand-crest {
    position: relative;
    margin: 0 auto 1.35rem;
    max-width: 18rem;
    padding: 1.2rem 1.4rem;
    border-radius: 1.45rem;
    background: rgba(5, 8, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-crest::before,
.brand-crest::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: 1;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(45deg);
}

.brand-crest::before {
    width: 74%;
    border-radius: 1.2rem;
    border: 2px solid rgba(34, 211, 238, 0.5);
    box-shadow:
        0 0 18px rgba(34, 211, 238, 0.32),
        inset 0 0 18px rgba(34, 211, 238, 0.18);
}

.brand-crest::after {
    width: 92%;
    border-radius: 1.45rem;
    border: 2px solid rgba(232, 121, 249, 0.42);
    box-shadow:
        0 0 18px rgba(232, 121, 249, 0.3),
        inset 0 0 16px rgba(232, 121, 249, 0.16);
}

.brand-crest img {
    position: relative;
    z-index: 1;
    filter:
        saturate(1.12)
        drop-shadow(0 0 18px rgba(34, 211, 238, 0.24))
        drop-shadow(0 0 22px rgba(232, 121, 249, 0.22));
}

.visualizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.35rem;
    height: 118px;
    margin-bottom: 1.15rem;
}

.visualizer .bar {
    width: min(10px, 3vw);
    height: 12%;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--cyan), var(--magenta));
    box-shadow:
        0 0 16px rgba(34, 211, 238, 0.26),
        0 0 18px rgba(232, 121, 249, 0.18);
    animation: pulse 1.3s infinite ease-in-out alternate;
}

.visualizer .bar:nth-child(2) { animation-delay: 0.14s; }
.visualizer .bar:nth-child(3) { animation-delay: 0.28s; }
.visualizer .bar:nth-child(4) { animation-delay: 0.08s; }
.visualizer .bar:nth-child(5) { animation-delay: 0.42s; }
.visualizer .bar:nth-child(6) { animation-delay: 0.22s; }
.visualizer .bar:nth-child(7) { animation-delay: 0.52s; }
.visualizer .bar:nth-child(8) { animation-delay: 0.06s; }
.visualizer .bar:nth-child(9) { animation-delay: 0.24s; }
.visualizer .bar:nth-child(10) { animation-delay: 0.38s; }

.player-stage {
    position: relative;
    min-height: 15.5rem;
    margin-bottom: 1rem;
    border-radius: 1.28rem;
    border: 1px solid rgba(34, 211, 238, 0.14);
    background:
        linear-gradient(180deg, rgba(5, 8, 18, 0.88), rgba(10, 14, 26, 0.82)),
        radial-gradient(circle at top, rgba(34, 211, 238, 0.12), transparent 48%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 0 30px rgba(34, 211, 238, 0.04);
    overflow: hidden;
}

.player-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 14%, transparent 86%, rgba(232, 121, 249, 0.05)),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px);
    pointer-events: none;
}

.player-stage > * {
    position: relative;
    z-index: 1;
}

.player-placeholder {
    min-height: 15.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
}

.track-art {
    display: block;
    width: 100%;
    min-height: 15.5rem;
    max-height: 19rem;
    object-fit: cover;
    filter:
        saturate(1.08)
        contrast(1.04)
        drop-shadow(0 0 20px rgba(34, 211, 238, 0.14));
}

.video-stage {
    position: absolute;
    inset: 0;
}

#youtube-player {
    width: 100%;
    height: 100%;
}

.now-playing {
    min-height: 5rem;
    padding: 1rem 1.1rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(34, 211, 238, 0.16);
    background: rgba(5, 8, 18, 0.88);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 0 24px rgba(34, 211, 238, 0.04);
    text-align: left;
}

.now-playing-label {
    display: inline-block;
    margin-bottom: 0.38rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.68rem;
}

#track-title {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    text-shadow:
        0 0 10px rgba(34, 211, 238, 0.18),
        0 0 14px rgba(232, 121, 249, 0.14);
}

#track-artist {
    margin: 0.24rem 0 0;
    color: var(--cyan);
}

.micro-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.micro-metric {
    position: relative;
    overflow: hidden;
    padding: 1rem 1.08rem;
    border-radius: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(15, 20, 37, 0.9), rgba(8, 11, 21, 0.76));
    box-shadow:
        inset 0 0 0 1px rgba(34, 211, 238, 0.03),
        0 0 24px rgba(34, 211, 238, 0.06);
    text-align: left;
}

.micro-metric::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 48%, rgba(232, 121, 249, 0.1));
    pointer-events: none;
}

.micro-metric > * {
    position: relative;
    z-index: 1;
}

.micro-label {
    display: block;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
}

.micro-value {
    display: block;
    margin-top: 0.42rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.58rem;
    letter-spacing: 0.08em;
    color: #fff;
    text-shadow:
        0 0 12px rgba(34, 211, 238, 0.26),
        0 0 14px rgba(232, 121, 249, 0.22);
}

.micro-copy {
    margin: 0.65rem 0 0;
    color: #d5ddf8;
    line-height: 1.55;
    font-size: 0.94rem;
}

.intel-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
    width: 100%;
}

.info-card {
    text-align: left;
}

.info-card-wide {
    grid-column: span 7;
}

.info-card-tall {
    grid-column: span 5;
}

.info-card-half {
    grid-column: span 6;
}

.section-heading {
    margin: 0.2rem 0 0;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.18rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    text-shadow:
        0 0 12px rgba(34, 211, 238, 0.28),
        0 0 16px rgba(232, 121, 249, 0.22);
}

.section-subcopy {
    margin: 1rem 0 0;
    color: #dbe6ff;
    line-height: 1.7;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.role-pill {
    position: relative;
    overflow: hidden;
    padding: 0.96rem 1rem;
    border-radius: 1.08rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(7, 10, 19, 0.76);
    box-shadow:
        inset 0 0 0 1px rgba(232, 121, 249, 0.03),
        0 0 20px rgba(232, 121, 249, 0.05);
}

.role-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(232, 121, 249, 0.1), transparent 46%, rgba(34, 211, 238, 0.08));
    pointer-events: none;
}

.role-pill > * {
    position: relative;
    z-index: 1;
}

.role-name {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--magenta);
    text-shadow: 0 0 10px rgba(232, 121, 249, 0.24);
}

.role-job {
    display: block;
    margin-top: 0.38rem;
    color: #edf4ff;
}

.track-list,
.data-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.78rem;
}

.track-list li,
.data-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.78rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.track-list li:last-child,
.data-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.track-copy strong,
.data-copy strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.track-copy span,
.data-copy span {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
}

.track-meta,
.data-meta {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    text-shadow:
        0 0 8px rgba(34, 211, 238, 0.22),
        0 0 10px rgba(232, 121, 249, 0.16);
    white-space: nowrap;
}

.track-list li:nth-child(even) .track-meta,
.data-list li:nth-child(even) .data-meta {
    color: var(--magenta);
}

.terminal-queue li {
    padding-bottom: 0;
}

.queue-item {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem;
    align-items: center;
    padding: 0.96rem 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.queue-item:hover {
    color: #fff;
}

.queue-item.is-active {
    color: #fff;
}

.queue-item.is-active .track-copy strong {
    color: var(--cyan);
    text-shadow:
        0 0 10px rgba(34, 211, 238, 0.22),
        0 0 12px rgba(232, 121, 249, 0.16);
}

.queue-index {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    color: var(--text-soft);
    letter-spacing: 0.12em;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.25rem;
    text-align: left;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.playlist-btn {
    position: relative;
    overflow: hidden;
    min-height: 4.25rem;
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(15, 20, 38, 0.96), rgba(8, 11, 21, 0.8));
    color: var(--text-main);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow:
        inset 0 0 0 1px rgba(34, 211, 238, 0.04),
        0 0 18px rgba(34, 211, 238, 0.05);
}

.playlist-btn::before,
.playlist-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
}

.playlist-btn::before {
    background: linear-gradient(145deg, rgba(34, 211, 238, 0.12), transparent 42%, rgba(232, 121, 249, 0.14));
    opacity: 0;
}

.playlist-btn::after {
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    opacity: 0.65;
}

.playlist-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 121, 249, 0.28);
    box-shadow:
        0 0 28px rgba(34, 211, 238, 0.16),
        0 0 34px rgba(232, 121, 249, 0.16);
}

.playlist-btn:hover::before {
    opacity: 1;
}

.playlist-btn.is-selected {
    color: #0c111f;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), #95f0fd 34%, var(--magenta));
    box-shadow:
        0 0 32px rgba(34, 211, 238, 0.32),
        0 0 40px rgba(232, 121, 249, 0.28);
}

.playlist-btn.is-selected::before {
    opacity: 0;
}

.playlist-btn.is-selected::after {
    opacity: 1;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
}

.media-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 0 1rem;
}

.media-btn {
    position: relative;
    overflow: hidden;
    width: 3.55rem;
    height: 3.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.15rem;
    border: 1px solid var(--line-cyan);
    background: rgba(7, 11, 21, 0.92);
    color: var(--cyan);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 18px rgba(34, 211, 238, 0.12);
}

.media-btn svg {
    position: relative;
    z-index: 1;
}

.media-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), transparent 44%, rgba(232, 121, 249, 0.14));
    opacity: 0;
    transition: opacity 0.24s ease;
}

.media-btn:hover::before {
    opacity: 1;
}

.media-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 22px rgba(34, 211, 238, 0.18),
        0 0 28px rgba(232, 121, 249, 0.14);
}

#play-pause-btn,
#uplink-play-pause-btn {
    width: 4.35rem;
    height: 4.35rem;
    border-color: rgba(232, 121, 249, 0.34);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(232, 121, 249, 0.26));
    color: #fff;
    box-shadow:
        0 0 28px rgba(34, 211, 238, 0.18),
        0 0 36px rgba(232, 121, 249, 0.22);
}

#play-pause-btn:hover,
#uplink-play-pause-btn:hover {
    box-shadow:
        0 0 34px rgba(34, 211, 238, 0.22),
        0 0 42px rgba(232, 121, 249, 0.3);
}

.media-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

#player,
#uplink-player {
    width: 0;
    height: 0;
    overflow: hidden;
}

#audio-player {
    display: none;
}

.hidden-player-host {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.deck-alert {
    margin: 0.92rem 0 0;
    color: var(--text-soft);
    line-height: 1.6;
    min-height: 1.6em;
}

.deck-alert.is-error {
    color: #ff9dbb;
}

.detail-actions {
    margin-bottom: 1rem;
}

.track-story {
    line-height: 1.7;
}

.track-story p,
.track-story ul,
.track-story ol {
    margin: 0 0 0.9rem;
}

.track-story > *:last-child {
    margin-bottom: 0;
}

main input[type="text"],
main input[type="email"],
main input[type="number"],
main select,
main textarea {
    border-radius: 1rem !important;
    border: 1px solid rgba(34, 211, 238, 0.22) !important;
    background: rgba(5, 8, 18, 0.86) !important;
    color: var(--text-main) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 0 transparent !important;
}

main input[type="text"]::placeholder,
main input[type="email"]::placeholder,
main input[type="number"]::placeholder,
main textarea::placeholder {
    color: rgba(142, 154, 184, 0.8) !important;
}

main input[type="text"]:focus,
main input[type="email"]:focus,
main input[type="number"]:focus,
main select:focus,
main textarea:focus {
    border-color: rgba(232, 121, 249, 0.36) !important;
    box-shadow:
        0 0 0 1px rgba(34, 211, 238, 0.16),
        0 0 28px rgba(232, 121, 249, 0.16) !important;
}

main input[type="checkbox"] {
    accent-color: var(--magenta);
}

main ul.list-disc,
main ol.list-decimal {
    color: #dfe6ff;
}

.site-footer {
    width: min(1240px, 100%);
    margin: 4rem auto 0;
    padding: 1.45rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 1.5rem;
}

.footer-kicker {
    display: inline-flex;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-family: 'Orbitron', sans-serif;
}

.footer-brand {
    margin: 0.45rem 0 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.28rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #fff;
    text-shadow:
        0 0 12px rgba(34, 211, 238, 0.22),
        0 0 16px rgba(232, 121, 249, 0.16);
}

.footer-copy {
    margin: 0.92rem 0 0;
    max-width: 30rem;
    color: var(--text-soft);
    line-height: 1.72;
}

.footer-heading {
    display: block;
    margin-bottom: 0.85rem;
    color: var(--magenta);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-family: 'Orbitron', sans-serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-link {
    color: #e6efff;
}

.footer-link:hover {
    color: #fff;
    text-shadow:
        0 0 10px rgba(34, 211, 238, 0.24),
        0 0 14px rgba(232, 121, 249, 0.16);
}

.footer-meta {
    margin-top: 1.45rem;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
    font-size: 0.92rem;
}

.site-page-privacy .glitch,
.site-page-mailing_list .glitch {
    font-size: clamp(2.8rem, 9vw, 5.4rem);
}

.text-cyan-200,
.text-cyan-300,
.text-cyan-400 {
    color: var(--cyan) !important;
}

.text-fuchsia-300,
.text-fuchsia-400,
.text-orange-300 {
    color: var(--magenta) !important;
}

.text-gray-300,
.text-slate-200 {
    color: #dde6ff !important;
}

.text-gray-400,
.text-gray-500 {
    color: var(--text-soft) !important;
}

.text-red-200,
.text-red-300 {
    color: #ffd4fb !important;
}

.bg-cyan-900\/20 {
    background: rgba(34, 211, 238, 0.12) !important;
}

.bg-red-900\/20 {
    background: rgba(232, 121, 249, 0.12) !important;
}

.border-cyan-500\/50,
.border-cyan-400\/30,
.border-cyan-400 {
    border-color: rgba(34, 211, 238, 0.34) !important;
}

.border-fuchsia-500\/50,
.border-fuchsia-500\/30,
.border-fuchsia-500\/20,
.border-fuchsia-400\/30,
.border-fuchsia-400 {
    border-color: rgba(232, 121, 249, 0.3) !important;
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

@keyframes pulse {
    0% {
        height: 10%;
        opacity: 0.45;
    }
    45% {
        height: 100%;
        opacity: 1;
    }
    100% {
        height: 22%;
        opacity: 0.72;
    }
}

@keyframes hotPulse {
    0%, 100% {
        box-shadow:
            0 0 8px rgba(232, 121, 249, 0.1),
            inset 0 0 8px rgba(34, 211, 238, 0.04);
    }
    50% {
        box-shadow:
            0 0 22px rgba(232, 121, 249, 0.22),
            inset 0 0 12px rgba(34, 211, 238, 0.1);
    }
}

@keyframes beaconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

@keyframes glitchShift {
    0%, 100% {
        transform: translate3d(0.02em, -0.01em, 0);
    }
    18% {
        transform: translate3d(-0.024em, 0.01em, 0);
    }
    42% {
        transform: translate3d(0.028em, 0.012em, 0);
    }
}

@keyframes glitchShiftAlt {
    0%, 100% {
        transform: translate3d(-0.03em, 0.01em, 0);
    }
    26% {
        transform: translate3d(0.018em, -0.014em, 0);
    }
    54% {
        transform: translate3d(-0.024em, 0.012em, 0);
    }
}

@keyframes gridDrift {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: -80px -80px, -80px -80px, 180px 180px;
    }
}

@media (max-width: 1100px) {
    .site-header,
    .hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        flex-wrap: wrap;
    }

    .site-shell::after {
        width: min(52vw, 20rem);
        top: 10rem;
    }

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

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

    .info-card-wide,
    .info-card-tall,
    .info-card-half {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .site-shell {
        padding: 0.88rem;
    }

    .site-shell::before {
        inset: 0.45rem;
        border-radius: 1.35rem;
    }

    .site-shell::after {
        top: 8.5rem;
        right: 0.2rem;
        width: 12rem;
        opacity: 0.38;
    }

    .site-header,
    .site-footer {
        padding: 1rem;
        border-radius: 1.35rem;
    }

    .site-header {
        margin-bottom: 2rem;
    }

    .brand-title {
        letter-spacing: 0.18em;
        font-size: 0.92rem;
    }

    .brand-subtitle {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(2.95rem, 14vw, 5rem);
    }

    .hero-actions,
    .section-head,
    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .micro-grid,
    .role-grid,
    .playlist-grid {
        grid-template-columns: 1fr;
    }

    .status-strip {
        flex-direction: column;
        align-items: stretch;
    }

    .visualizer {
        height: 96px;
        gap: 0.24rem;
    }
}
