:root {
    --black: #050505;
    --gold: #f0e3b2;
    --gray: #d8d1c5;
    --green: rgba(70, 120, 70, 0.22);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--black);
    color: var(--gray);
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center, var(--green) 0%, rgba(5,5,5,0.96) 58%),
        linear-gradient(to bottom, #000 0%, #071008 52%, #000 100%);
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.44;
    background-image:
        url("data:image/svg+xml,%3Csvg width='1200' height='800' viewBox='0 0 1200 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23f0e3b2' stroke-width='1' opacity='0.18'%3E%3Cpath d='M70 150 H1140 M120 220 H1020 M40 310 H1120 M150 420 H1060 M90 540 H1160 M220 660 H1030'/%3E%3Cpath d='M160 80 V720 M300 120 V700 M470 60 V760 M650 110 V730 M820 70 V720 M1010 140 V690'/%3E%3Cpath d='M300 220 L470 310 L650 310 L820 420 L1010 420'/%3E%3Cpath d='M160 540 L300 420 L470 420 L650 540 L820 540 L1010 660'/%3E%3Crect x='230' y='250' width='54' height='42'/%3E%3Crect x='560' y='245' width='70' height='50'/%3E%3Crect x='895' y='350' width='58' height='46'/%3E%3Crect x='390' y='500' width='62' height='48'/%3E%3Crect x='725' y='570' width='76' height='52'/%3E%3C/g%3E%3Cg fill='%23f0e3b2' opacity='0.38'%3E%3Ccircle cx='620' cy='415' r='5'/%3E%3C/g%3E%3Cg fill='%23f0e3b2' font-family='Arial' font-size='15' letter-spacing='3' opacity='0.36'%3E%3Ctext x='642' y='421'%3ESHADOW HOUSE%3C/text%3E%3Ctext x='80' y='128'%3ETHE BADLANDS SIGNAL MAP%3C/text%3E%3Ctext x='890' y='690'%3EARCHIVE GRID%3C/text%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: min(1100px, 125vw) auto;
    mix-blend-mode: screen;
}

.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.25rem;
    text-align: center;
}

.brand-card {
    width: min(760px, 100%);
}

.logo {
    width: min(390px, 78vw);
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    border: 1px solid rgba(240, 227, 178, 0.12);
    background: rgba(255,255,255,0.015);
    padding: 14px;
    box-shadow:
        0 0 24px rgba(240, 227, 178, 0.10),
        0 0 120px rgba(70, 120, 70, 0.12);
    filter:
        grayscale(100%)
        contrast(1.08)
        brightness(0.94);
}

.tagline {
    margin: 0;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.6vw, 2rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.statement {
    max-width: 660px;
    margin: 1.6rem auto 0;
    color: var(--gray);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
}

@media (max-width: 700px) {
    .logo {
        width: min(420px, 94vw);
        margin-bottom: 1.6rem;
    }

    .tagline {
        letter-spacing: 0.04em;
    }
}

.signal-link {
    display: inline-block;
    margin-top: 2.4rem;
    color: var(--gold);
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.72;
    animation: signalFade 3.8s ease-in-out infinite;
}

.signal-link:hover {
    opacity: 1;
    text-shadow: 0 0 18px rgba(240, 227, 178, 0.45);
}

@keyframes signalFade {
    0%, 100% {
        opacity: 0.38;
    }

    50% {
        opacity: 0.92;
    }
}

.signal-link {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(240, 227, 178, 0.28);
    background: rgba(0, 0, 0, 0.18);
    color: var(--gold);
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 0.78;
    animation: signalFade 3.8s ease-in-out infinite;
}

.signal-link:hover {
    opacity: 1;
    text-shadow: 0 0 18px rgba(240, 227, 178, 0.55);
    box-shadow: 0 0 22px rgba(70, 120, 70, 0.28);
}

.signal-active::before {
    animation: signalPulse 1.4s ease-in-out forwards;
}

.signal-active .brand-card {
    animation: entryDistort 0.9s ease-in-out forwards;
}

.hide-landing {
    display: none;
}

.home-panel {
    display: none;
    width: min(760px, 100%);
    text-align: center;
    opacity: 0;
}

.home-panel.show-home {
    display: block;
    animation: homeReveal 1.2s ease-out forwards;
}

.home-panel h2 {
    margin: 0;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-panel p {
    max-width: 620px;
    margin: 1.5rem auto 0;
    color: var(--gray);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.home-links {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.home-links a {
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(240, 227, 178, 0.22);
    padding: 0.75rem 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.home-links a:hover {
    box-shadow: 0 0 24px rgba(70, 120, 70, 0.28);
}

@keyframes signalFade {
    0%, 100% {
        opacity: 0.42;
    }

    50% {
        opacity: 0.95;
    }
}

@keyframes signalPulse {
    0% {
        filter: brightness(1);
    }

    45% {
        filter: brightness(1.8) contrast(1.25);
    }

    100% {
        filter: brightness(1.05);
    }
}

@keyframes entryDistort {
    0% {
        opacity: 1;
        transform: scale(1) skewX(0deg);
        filter: blur(0);
    }

    45% {
        opacity: 0.9;
        transform: scale(1.02) skewX(-3deg);
        filter: blur(1px);
    }
 
    100% {
        opacity: 0;
        transform: scale(0.97) skewX(3deg);
        filter: blur(6px);
    }
}

@keyframes homeReveal {
    0% {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.page-shell {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 100vh;
    padding: 7rem 1.5rem 5rem;
}

.top-nav {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.top-nav a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;/* =========================
   OVERWATCH EFFECTS V1
========================= */

.logo {
    position: relative;
    animation: vinylFloat 6s ease-in-out infinite;
}

.logo::after {
    content: "";
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.signal-active .logo {
    animation:
        vinylSpin 8s linear infinite,
        vinylFloat 6s ease-in-out infinite;
}

.signal-active .logo::after {
    animation: radarPulse 2.2s infinite;
}

.signal-active .signal-card::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(124,255,178,0.18);
    animation: radarExpand 3s infinite;
    pointer-events: none;
    z-index: 0;
}

.signal-active .signal-card::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(124,255,178,0.08);
    animation: radarExpand 3s infinite 1.2s;
    pointer-events: none;
    z-index: 0;
}

.signal-locked .signal-link {
    box-shadow:
        0 0 18px rgba(229,212,140,0.35),
        0 0 42px rgba(124,255,178,0.18);
}

@keyframes vinylSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes vinylFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes radarPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(124,255,178,0.28),
            0 0 0 0 rgba(124,255,178,0.18);
        opacity: 0.7;
    }

    100% {
        box-shadow:
            0 0 0 36px rgba(124,255,178,0),
            0 0 0 72px rgba(124,255,178,0);
        opacity: 0;
    }
}

@keyframes radarExpand {
    0% {
        transform: scale(0.82);
        opacity: 0.22;
    }

    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}
    border: 1px solid rgba(240, 227, 178, 0.16);
    padding: 0.7rem 0.95rem;
    background: rgba(0,0,0,0.18);
}

.top-nav a:hover {
    box-shadow: 0 0 20px rgba(70, 120, 70, 0.24);
}

.content-panel {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: 2.5rem;
    border: 1px solid rgba(240, 227, 178, 0.08);
    background: rgba(0,0,0,0.38);
    backdrop-filter: blur(4px);
}

.content-panel h1 {
    margin-top: 0;
    margin-bottom: 2rem;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.content-panel h2 {
    margin-top: 3rem;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.content-panel p {
    color: var(--gray);
    font-size: 1.06rem;
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.contact-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(240, 227, 178, 0.12);
}

.contact-block p {
    margin: 0.4rem 0;
}

@media (max-width: 700px) {
    .content-panel {
        padding: 1.5rem;
    }

    .content-panel h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2.5rem;
}

.release-card {
    border: 1px solid rgba(240, 227, 178, 0.12);
    background: rgba(0, 0, 0, 0.34);
    padding: 1.5rem;
    box-shadow: 0 0 32px rgba(70, 120, 70, 0.08);
}

.release-card h2 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.release-status {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.release-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.release-links a {
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(240, 227, 178, 0.18);
    padding: 0.65rem 0.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.release-links a:hover {
    box-shadow: 0 0 22px rgba(70, 120, 70, 0.25);
}

@media (max-width: 800px) {
    .release-grid {
        grid-template-columns: 1fr;
    }
}

.release-note {
    color: var(--gold);
    font-size: 0.92rem;
    letter-spacing: 0.08em;
}

.release-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(240, 227, 178, 0.12);
    box-shadow: 0 0 28px rgba(70, 120, 70, 0.10);
}

/* =========================
   SIGNAL SEQUENCE V1 - VISIBILITY FIX
========================= */

.signal-map {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 28px auto 0;
    min-height: 24px;
    opacity: 1;
    visibility: visible;
}

.signal-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #7cffb2;
    box-shadow: 0 0 14px #7cffb2, 0 0 28px rgba(124, 255, 178, 0.45);
    opacity: 0.18;
}

.signal-status {
    min-height: 18px;
    margin-top: 24px;
    color: #7cffb2;
    text-shadow: 0 0 12px rgba(124, 255, 178, 0.65);
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;/* =========================
   OVERWATCH EFFECTS V1
========================= */

.logo {
    position: relative;
    animation: vinylFloat 6s ease-in-out infinite;
}

.logo::after {
    content: "";
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.signal-active .logo {
    animation:
        vinylSpin 8s linear infinite,
        vinylFloat 6s ease-in-out infinite;
}

.signal-active .logo::after {
    animation: radarPulse 2.2s infinite;
}

.signal-active .signal-card::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(124,255,178,0.18);
    animation: radarExpand 3s infinite;
    pointer-events: none;
    z-index: 0;
}

.signal-active .signal-card::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(124,255,178,0.08);
    animation: radarExpand 3s infinite 1.2s;
    pointer-events: none;
    z-index: 0;
}

.signal-locked .signal-link {
    box-shadow:
        0 0 18px rgba(229,212,140,0.35),
        0 0 42px rgba(124,255,178,0.18);
}

@keyframes vinylSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes vinylFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes radarPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(124,255,178,0.28),
            0 0 0 0 rgba(124,255,178,0.18);
        opacity: 0.7;
    }

    100% {
        box-shadow:
            0 0 0 36px rgba(124,255,178,0),
            0 0 0 72px rgba(124,255,178,0);
        opacity: 0;
    }
}

@keyframes radarExpand {
    0% {
        transform: scale(0.82);
        opacity: 0.22;
    }

    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}
}

.show-status {
    opacity: 1;
    visibility: visible;
}

.signal-active .signal-dot {
    animation: signalPulse 0.9s infinite ease-in-out;
}

.signal-active .dot-1 {
    animation-delay: 0s;
}

.signal-active .dot-2 {
    animation-delay: 0.18s;
}

.signal-active .dot-3 {
    animation-delay: 0.36s;
}

.signal-active .dot-4 {
    animation-delay: 0.54s;
}

.signal-active .brand-card {
    box-shadow: 0 0 35px rgba(124, 255, 178, 0.22);
}

@keyframes signalPulse {
    0% {
        opacity: 0.18;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.65);
    }

    100% {
        opacity: 0.18;
        transform: scale(1);
    }
}

/* =========================
   SIGNAL ENTRY OVERRIDE V1
========================= */

body {
    margin: 0;
    background: #020604;
}

.signal-entry {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    box-sizing: border-box;
    background:
        radial-gradient(circle at center, rgba(21, 78, 39, 0.34), transparent 42%),
        linear-gradient(rgba(124,255,178,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,255,178,0.035) 1px, transparent 1px),
        #020604;
    background-size: auto, 120px 120px, 120px 120px, auto;
}

.signal-card {
    position: relative;
    width: min(720px, 94vw);
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    overflow: hidden;
}

.map-label {
    position: absolute;
    top: 36px;
    left: 20px;
    color: rgba(224, 211, 151, 0.42);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
}

.logo {
    width: min(320px, 72vw);
    height: auto;
    z-index: 3;
    box-shadow: 0 0 30px rgba(124, 255, 178, 0.08);
}

.tagline {
    z-index: 3;
    margin: 8px 0 0;
    color: #e5d48c;
    font-size: 1rem;
    letter-spacing: 0.16em;
}

.statement {
    z-index: 3;
    max-width: 520px;
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.6;
}

.signal-link {
    z-index: 4;
    margin-top: 8px;
    padding: 14px 34px;
    border: 1px solid rgba(229, 212, 140, 0.7);
    background: rgba(0,0,0,0.28);
    color: #f1df9a;
    letter-spacing: 0.22em;
    cursor: pointer;
}

.signal-link:hover {
    box-shadow: 0 0 24px rgba(229, 212, 140, 0.3);
}

.signal-path {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f1df9a;
    box-shadow: 0 0 15px #f1df9a;
    opacity: 0;
}

.n1 { left: 24%; top: 56%; }
.n2 { left: 32%; top: 50%; }
.n3 { left: 44%; top: 52%; }
.n4 { left: 57%; top: 60%; }
.n5 { left: 73%; top: 56%; }

.signal-status {
    z-index: 4;
    min-height: 20px;
    margin: 4px 0 0;
    color: #f1df9a;
    border: 1px solid rgba(229, 212, 140, 0.55);
    padding: 10px 18px;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    opacity: 0;
    visibility: hidden;
}

.show-status {
    opacity: 1;
    visibility: visible;
}

.signal-active .signal-link {
    opacity: 0.75;
}

.signal-active .node {
    animation: nodePulse 1.4s infinite ease-in-out;
}

.signal-active .n1 { animation-delay: 0s; }
.signal-active .n2 { animation-delay: 0.2s; }
.signal-active .n3 { animation-delay: 0.4s; }
.signal-active .n4 { animation-delay: 0.6s; }
.signal-active .n5 { animation-delay: 0.8s; }

@keyframes nodePulse {
    0% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(2.2);
    }
    100% {
        opacity: 0.15;
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .signal-card {
        min-height: 560px;
    }

    .tagline {
        font-size: 0.82rem;
    }

    .statement {
        font-size: 0.82rem;
    }

    .signal-link {
        padding: 12px 22px;
        font-size: 0.72rem;
    }
}

/* =========================
   SIGNAL MYTHOLOGY EFFECTS V2
========================= */

.logo {
    position: relative;
    z-index: 4;
    animation: vinylFloat 7s ease-in-out infinite;
}

.signal-card::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            rgba(229, 212, 140, 0.16) 28deg,
            transparent 52deg,
            transparent 130deg,
            rgba(124, 255, 178, 0.11) 165deg,
            transparent 205deg,
            transparent 360deg
        );
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
}

.signal-active .signal-card::before {
    opacity: 0.75;
    animation: grooveShine 5.5s linear infinite;
}

.signal-active .signal-card::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(124, 255, 178, 0.16);
    box-shadow: 0 0 38px rgba(124, 255, 178, 0.08);
    animation: slowRadar 4.8s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

.signal-locked .signal-link {
    color: #f7e8a5;
    box-shadow:
        0 0 18px rgba(229, 212, 140, 0.45),
        0 0 48px rgba(124, 255, 178, 0.24);
}

@keyframes grooveShine {
    from {
        transform: rotate(0deg) scale(0.82);
    }

    to {
        transform: rotate(360deg) scale(0.82);
    }
}

@keyframes slowRadar {
    0% {
        transform: scale(0.65);
        opacity: 0;
    }

    18% {
        opacity: 0.32;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes vinylFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   SHADOW HOUSE SIGNAL MYTHOLOGY V3
========================= */

.logo-stack {
    position: relative;
    width: min(330px, 74vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    z-index: 5;
}

.logo-stack .logo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
}

.vinyl-groove {
    position: absolute;
    width: 92%;
    height: 92%;
    border-radius: 50%;
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    background:
        conic-gradient(from 0deg,
            transparent 0deg,
            rgba(255, 230, 150, 0.22) 18deg,
            transparent 38deg,
            transparent 135deg,
            rgba(124, 255, 178, 0.16) 160deg,
            transparent 190deg,
            transparent 360deg);
    mix-blend-mode: screen;
}

.gold-shimmer,
.green-letter-lock {
    position: absolute;
    inset: 18%;
    z-index: 7;
    pointer-events: none;
    opacity: 0;
    border-radius: 18px;
    mix-blend-mode: screen;
}

.gold-shimmer {
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 224, 128, 0.0) 35%,
        rgba(255, 224, 128, 0.9) 48%,
        rgba(255, 244, 190, 0.75) 52%,
        rgba(255, 224, 128, 0.0) 65%,
        transparent 100%
    );
    transform: translateX(-80%);
}

.green-letter-lock {
    background:
        radial-gradient(circle at 36% 48%, rgba(124,255,178,0.65), transparent 17%),
        radial-gradient(circle at 64% 48%, rgba(124,255,178,0.65), transparent 17%),
        linear-gradient(90deg, transparent 42%, rgba(124,255,178,0.24) 50%, transparent 58%);
    filter: blur(2px);
}

.signal-active .vinyl-groove {
    opacity: 0.82;
    animation: grooveSweep 4.8s linear infinite;
}

.signal-active .gold-shimmer {
    opacity: 1;
    animation: goldShimmerSweep 2.4s ease-in-out 1;
}

.signal-locking .green-letter-lock {
    opacity: 1;
    animation: greenLockDefine 1.4s ease-out forwards;
}

.signal-path {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.dash-track {
    position: absolute;
    height: 1px;
    width: 230px;
    opacity: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(241,223,154,0.0) 0 8px,
        rgba(241,223,154,0.78) 8px 16px
    );
    filter: drop-shadow(0 0 8px rgba(241,223,154,0.5));
}

.track-1 {
    left: 12%;
    top: 58%;
    transform: rotate(-14deg);
}

.track-2 {
    left: 33%;
    top: 48%;
    transform: rotate(10deg);
}

.track-3 {
    left: 48%;
    top: 62%;
    transform: rotate(-7deg);
}

.signal-active .dash-track {
    opacity: 1;
    animation: dashMove 1.8s linear infinite;
}

.node {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f1df9a;
    box-shadow: 0 0 15px #f1df9a;
    opacity: 0;
}

.n1 { left: 24%; top: 56%; }
.n2 { left: 32%; top: 50%; }
.n3 { left: 44%; top: 52%; }
.n4 { left: 57%; top: 60%; }
.n5 { left: 73%; top: 56%; }

.signal-active .node {
    animation: nodePulse 1.35s infinite ease-in-out;
}

.signal-active .n1 { animation-delay: 0s; }
.signal-active .n2 { animation-delay: 0.18s; }
.signal-active .n3 { animation-delay: 0.36s; }
.signal-active .n4 { animation-delay: 0.54s; }
.signal-active .n5 { animation-delay: 0.72s; }

.burst {
    position: absolute;
    color: rgba(124,255,178,0.85);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    opacity: 0;
    text-shadow: 0 0 12px rgba(124,255,178,0.8);
}

.b1 { left: 18%; top: 35%; }
.b2 { left: 70%; top: 39%; }
.b3 { left: 22%; top: 72%; color: rgba(95,170,255,0.95); }
.b4 { left: 65%; top: 74%; color: rgba(255,120,120,0.9); }

.signal-active .burst {
    animation: burstBlink 2.2s infinite steps(1);
}

.signal-active .b1 { animation-delay: 0.2s; }
.signal-active .b2 { animation-delay: 0.7s; }
.signal-active .b3 { animation-delay: 1.1s; }
.signal-active .b4 { animation-delay: 1.6s; }

.lock-point {
    position: absolute;
    left: 73%;
    top: 56%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    opacity: 0;
    background: rgba(95, 170, 255, 0.95);
    box-shadow:
        0 0 18px rgba(95,170,255,1),
        0 0 42px rgba(95,170,255,0.7),
        0 0 80px rgba(124,255,178,0.32);
}

.signal-locking .lock-point {
    animation: lockFlash 0.9s ease-out forwards;
}

.signal-locking .signal-card::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(124, 255, 178, 0.18);
    box-shadow: 0 0 42px rgba(124, 255, 178, 0.08);
    animation: slowRadar 4.8s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

.signal-locked .signal-link {
    color: #f7e8a5;
    box-shadow:
        0 0 18px rgba(229,212,140,0.48),
        0 0 52px rgba(124,255,178,0.28);
}

@keyframes grooveSweep {
    from { transform: rotate(0deg) scale(0.94); }
    to { transform: rotate(360deg) scale(0.94); }
}

@keyframes goldShimmerSweep {
    0% { transform: translateX(-85%); opacity: 0; }
    20% { opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translateX(85%); opacity: 0; }
}

@keyframes greenLockDefine {
    0% {
        transform: scale(0.88);
        filter: blur(8px);
        opacity: 0;
    }

    55% {
        opacity: 1;
    }

    100% {
        transform: scale(1.18);
        filter: blur(1.5px);
        opacity: 0.9;
    }
}

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

@keyframes nodePulse {
    0% { opacity: 0.12; transform: scale(1); }
    50% { opacity: 1; transform: scale(2.2); }
    100% { opacity: 0.12; transform: scale(1); }
}

@keyframes burstBlink {
    0% { opacity: 0; }
    10% { opacity: 1; }
    15% { opacity: 0; }
    42% { opacity: 1; }
    46% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes lockFlash {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }

    28% {
        opacity: 1;
        transform: scale(2.7);
    }

    100% {
        opacity: 0.92;
        transform: scale(1);
    }
}

@keyframes slowRadar {
    0% { transform: scale(0.65); opacity: 0; }
    18% { opacity: 0.32; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* =========================
   LAYERED LOGO ANIMATION V1
========================= */

.logo-stack {
    position: relative;
    width: min(340px, 74vw);
    aspect-ratio: 1 / 0.78;
    display: grid;
    place-items: center;
    z-index: 8;
    overflow: visible;
}

.logo-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.base-logo {
    z-index: 4;
    filter: drop-shadow(0 0 18px rgba(124,255,178,0.08));
}

.groove-overlay {
    z-index: 5;
    opacity: 0;
    mix-blend-mode: screen;
    transform-origin: center center;
}

.shimmer-overlay {
    z-index: 6;
    opacity: 0;
    mix-blend-mode: screen;
    transform-origin: center center;
}

.green-overlay {
    z-index: 7;
    opacity: 0;
    mix-blend-mode: screen;
    transform-origin: center center;
    filter: blur(1.5px);
}

.lock-overlay {
    z-index: 8;
    opacity: 0;
    mix-blend-mode: screen;
    transform-origin: center center;
}

.signal-active .groove-overlay {
    opacity: 0.95;
    animation: grooveLayerSpin 2.8s linear infinite;
}

.signal-active .shimmer-overlay {
    animation: goldLayerShimmer 2.7s ease-in-out 1;
}

.signal-locking .green-overlay {
    animation: greenLayerLock 1.8s ease-out forwards;
}

.signal-locked .lock-overlay {
    animation: finalLockFlash 1.2s ease-out forwards;
}

.signal-locked .base-logo {
    filter:
        drop-shadow(0 0 12px rgba(241,223,154,0.25))
        drop-shadow(0 0 28px rgba(124,255,178,0.18));
}

@keyframes grooveLayerSpin {
    from {
        transform: rotate(0deg) scale(1.02);
    }

    to {
        transform: rotate(360deg) scale(1.02);
    }
}

@keyframes goldLayerShimmer {
    0% {
        opacity: 0;
        transform: translateX(-18%) scale(1);
    }

    18% {
        opacity: 1;
    }

    68% {
        opacity: 0.95;
    }

    100% {
        opacity: 0;
        transform: translateX(18%) scale(1);
    }
}

@keyframes greenLayerLock {
    0% {
        opacity: 0;
        transform: scale(0.92);
        filter: blur(8px);
    }

    45% {
        opacity: 0.95;
    }

    100% {
        opacity: 0.82;
        transform: scale(1.12);
        filter: blur(1px);
    }
}

@keyframes finalLockFlash {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    22% {
        opacity: 1;
        transform: scale(1.14);
    }

    100% {
        opacity: 0.28;
        transform: scale(1);
    }
}

/* =========================
   FINAL INTRO CLEANUP OVERRIDE
   removes fake vinyl spin feel
========================= */

.signal-active .vinyl-groove {
    opacity: 0.22 !important;
    animation: groovePulseClean 5.8s ease-in-out infinite !important;
}

@keyframes groovePulseClean {
    0% {
        opacity: 0.10;
        transform: scale(0.94);
        filter: brightness(1);
    }

    50% {
        opacity: 0.32;
        transform: scale(0.955);
        filter: brightness(1.12);
    }

    100% {
        opacity: 0.10;
        transform: scale(0.94);
        filter: brightness(1);
    }
}

.signal-locking .green-letter-lock {
    opacity: 0.75 !important;
    animation: greenLockDefineClean 2.2s ease-out forwards !important;
}

@keyframes greenLockDefineClean {
    0% {
        transform: scale(0.9);
        filter: blur(7px);
        opacity: 0;
    }

    60% {
        opacity: 0.75;
    }

    100% {
        transform: scale(1.12);
        filter: blur(2px);
        opacity: 0.72;
    }
}

/* =========================
   FINAL FREEZE — REMOVE RECORD BUMPER EFFECTS
========================= */

.vinyl-groove,
.gold-shimmer,
.green-letter-lock {
    display: none !important;
    opacity: 0 !important;
    animation: none !important;
}

/* =========================
   KILL ROTATING RECORD LIGHTS
========================= */

.vinyl-groove,
.gold-shimmer,
.green-letter-lock {
    display: none !important;
    opacity: 0 !important;
    animation: none !important;
    background: none !important;
}

.signal-active .vinyl-groove,
.signal-active .gold-shimmer,
.signal-active .green-letter-lock {
    display: none !important;
    opacity: 0 !important;
    animation: none !important;
}