/* ============================================
   DDAZZL.com - Memphis + Sci-Fi HUD Fusion
   ============================================ */

/* CSS Custom Properties */
:root {
    --primary-terracotta: #C2703E;
    --deep-terracotta: #8B4226;
    --sand-light: #F5E6D3;
    --desert-rose: #D4856A;
    --hud-cyan: #4AEADC;
    --hud-amber: #F5A623;
    --memphis-violet: #7B61C1;
    --deep-charcoal: #2A2025;
    --noise-white: #FAF7F2;

    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-hero: 'Bungee Shade', cursive;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --elastic-ease: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --elastic-ease-out: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--deep-charcoal);
    background-color: var(--noise-white);
    line-height: 1.75;
    overflow-x: hidden;
}

/* Noise Overlay for all scenes */
.scene-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: url(#noiseOnly);
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* ============================================
   HUD STATUS BAR
   ============================================ */
.hud-status-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(42, 32, 37, 0.85);
    backdrop-filter: blur(8px);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
}

.hud-status-item {
    color: var(--hud-amber);
}

.hud-status-divider {
    color: var(--hud-cyan);
    opacity: 0.5;
}

.hud-status-fabulous {
    color: var(--hud-cyan);
    text-shadow: 0 0 8px rgba(74, 234, 220, 0.6);
    animation: hudPulse 2s ease-in-out infinite;
}

@keyframes hudPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   SCENES (Common)
   ============================================ */
.scene {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

/* HUD Scanline */
.hud-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.hud-scanline::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--hud-cyan) 20%, var(--hud-cyan) 80%, transparent 100%);
    opacity: 0.3;
    animation: scanlineMove 4s linear infinite;
}

@keyframes scanlineMove {
    0% { top: -2px; }
    100% { top: 100%; }
}

/* Scene Titles */
.scene-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--deep-charcoal);
    text-align: center;
    position: relative;
    z-index: 5;
    padding-top: 60px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.8s var(--elastic-ease);
}

.scene-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Breathing animation for scenes */
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
}

/* ============================================
   SCENE 1: SIGNAL ACQUIRED (Hero)
   ============================================ */
.scene-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-light);
    padding-top: 40px;
}

/* Memphis Shape Cluster */
.memphis-cluster {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vmin;
    height: 80vmin;
    transform: translate(-50%, -50%);
    animation: clusterWobble 12s ease-in-out infinite;
    z-index: 2;
}

@keyframes clusterWobble {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    25% { transform: translate(-50%, -50%) rotate(3deg) scale(1.02); }
    50% { transform: translate(-50%, -50%) rotate(-1deg) scale(0.98); }
    75% { transform: translate(-50%, -50%) rotate(2deg) scale(1.01); }
    100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
}

/* Individual Memphis Shapes */
.memphis-shape {
    position: absolute;
    cursor: grab;
    transition: transform 0.1s linear;
    will-change: transform;
}

.memphis-shape:active {
    cursor: grabbing;
}

.shape-circle.shape-1 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--primary-terracotta);
    border: 3px solid var(--deep-charcoal);
    top: 10%;
    left: 15%;
    opacity: 0.85;
}

.shape-triangle.shape-2 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--memphis-violet);
    top: 5%;
    right: 20%;
    filter: drop-shadow(2px 2px 0px var(--deep-charcoal));
}

.shape-squiggle.shape-3 {
    width: 200px;
    height: 60px;
    bottom: 25%;
    left: 10%;
}

.shape-rect.shape-4 {
    width: 120px;
    height: 80px;
    background: var(--desert-rose);
    border: 3px solid var(--deep-charcoal);
    transform: rotate(15deg);
    bottom: 15%;
    right: 15%;
}

.shape-dotcircle.shape-5 {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--deep-charcoal);
    top: 55%;
    left: 55%;
    background-image: radial-gradient(circle, var(--deep-charcoal) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    background-color: var(--noise-white);
}

.shape-polygon.shape-6 {
    width: 100px;
    height: 100px;
    background: var(--hud-amber);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    border: 3px solid var(--deep-charcoal);
    top: 60%;
    left: 5%;
    opacity: 0.9;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 12vw, 10rem);
    color: var(--deep-charcoal);
    letter-spacing: 0.05em;
    line-height: 1;
    text-shadow: 4px 4px 0px var(--primary-terracotta);
    animation: heroEntrance 1.2s var(--elastic-ease) both;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* HUD Boot Text */
.hud-boot-text {
    margin-top: 30px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--hud-cyan);
    text-align: left;
    display: inline-block;
    text-shadow: 0 0 6px rgba(74, 234, 220, 0.4);
}

.hud-line {
    display: block;
    opacity: 0;
    margin-bottom: 4px;
}

.hud-line.typed {
    opacity: 1;
    animation: typeIn 0.4s ease-out both;
}

@keyframes typeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.hud-cyan {
    color: var(--hud-cyan);
    text-shadow: 0 0 8px rgba(74, 234, 220, 0.6);
}

/* HUD Corner Brackets */
.hud-bracket {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 5;
    opacity: 0.5;
}

.hud-bracket::before,
.hud-bracket::after {
    content: '';
    position: absolute;
    background: var(--hud-cyan);
}

.hud-bracket-tl { top: 30px; left: 30px; }
.hud-bracket-tl::before { top: 0; left: 0; width: 20px; height: 2px; }
.hud-bracket-tl::after { top: 0; left: 0; width: 2px; height: 20px; }

.hud-bracket-tr { top: 30px; right: 30px; }
.hud-bracket-tr::before { top: 0; right: 0; width: 20px; height: 2px; }
.hud-bracket-tr::after { top: 0; right: 0; width: 2px; height: 20px; }

.hud-bracket-bl { bottom: 30px; left: 30px; }
.hud-bracket-bl::before { bottom: 0; left: 0; width: 20px; height: 2px; }
.hud-bracket-bl::after { bottom: 0; left: 0; width: 2px; height: 20px; }

.hud-bracket-br { bottom: 30px; right: 30px; }
.hud-bracket-br::before { bottom: 0; right: 0; width: 20px; height: 2px; }
.hud-bracket-br::after { bottom: 0; right: 0; width: 2px; height: 20px; }

/* ============================================
   SCENE 2: SCANNING FREQUENCIES
   ============================================ */
.scene-scanning {
    background: var(--noise-white);
    padding: 80px 5vw 120px;
    min-height: 100vh;
}

.blob-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 5;
}

/* Content Blobs */
.content-blob {
    position: relative;
    max-width: 550px;
    padding: 50px 45px;
    background: var(--sand-light);
    border: 2px solid var(--deep-charcoal);
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: opacity 0.6s ease, transform 0.8s var(--elastic-ease);
}

.content-blob.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.blob-1 {
    clip-path: polygon(5% 0%, 95% 3%, 100% 90%, 8% 100%);
    align-self: flex-start;
    margin-left: 8vw;
}

.blob-2 {
    clip-path: polygon(3% 5%, 98% 0%, 92% 95%, 0% 100%);
    align-self: flex-end;
    margin-right: 8vw;
}

.blob-3 {
    clip-path: polygon(0% 2%, 100% 0%, 97% 98%, 4% 95%);
    align-self: flex-start;
    margin-left: 15vw;
}

.content-blob h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--deep-terracotta);
}

.content-blob p {
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 38em;
}

/* HUD Target Brackets on Blobs */
.hud-target-bracket {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.content-blob.is-visible .hud-target-bracket {
    opacity: 1;
}

.hud-target-bracket::before,
.hud-target-bracket::after {
    content: '';
    position: absolute;
    border: 2px solid var(--hud-cyan);
}

.hud-target-bracket::before {
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-right: none;
    border-bottom: none;
}

.hud-target-bracket::after {
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    border-left: none;
    border-top: none;
}

/* HUD Wire SVG */
.hud-wire {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0.4;
}

/* ============================================
   SCENE 3: DECODING PATTERNS
   ============================================ */
.scene-decoding {
    background: var(--sand-light);
    padding: 80px 5vw 120px;
    min-height: 100vh;
}

/* Terrazzo Background */
.terrazzo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle 2px, var(--primary-terracotta) 100%, transparent 100%),
        radial-gradient(circle 1.5px, var(--memphis-violet) 100%, transparent 100%),
        radial-gradient(circle 1px, var(--desert-rose) 100%, transparent 100%),
        radial-gradient(circle 2px, var(--deep-terracotta) 100%, transparent 100%);
    background-size: 80px 90px, 60px 70px, 45px 55px, 100px 80px;
    background-position: 10px 20px, 35px 45px, 50px 10px, 70px 60px;
}

/* Scattered Cards */
.cards-scattered {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.decode-card {
    position: relative;
    padding: 40px 35px;
    background: var(--noise-white);
    border: 2px solid var(--deep-charcoal);
    opacity: 0;
    transform: translateY(50px) rotate(0deg);
    transition: opacity 0.6s ease, transform 0.8s var(--elastic-ease);
}

.decode-card.is-visible {
    opacity: 1;
}

.card-1 {
    transform: rotate(-2deg) translateY(50px);
}
.card-1.is-visible {
    transform: rotate(-2deg) translateY(0);
}

.card-2 {
    transform: rotate(1.5deg) translateY(50px);
    margin-top: 40px;
}
.card-2.is-visible {
    transform: rotate(1.5deg) translateY(0);
}

.card-3 {
    transform: rotate(1deg) translateY(50px);
}
.card-3.is-visible {
    transform: rotate(1deg) translateY(0);
}

.card-4 {
    transform: rotate(-1.5deg) translateY(50px);
    margin-top: -20px;
}
.card-4.is-visible {
    transform: rotate(-1.5deg) translateY(0);
}

/* Card HUD Corners */
.card-hud-corners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.card-hud-corners::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 18px;
    height: 18px;
    border-top: 2px solid var(--hud-cyan);
    border-left: 2px solid var(--hud-cyan);
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.card-hud-corners::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    border-bottom: 2px solid var(--hud-cyan);
    border-right: 2px solid var(--hud-cyan);
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.decode-card.is-visible .card-hud-corners::before,
.decode-card.is-visible .card-hud-corners::after {
    opacity: 0.7;
}

.card-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--hud-amber);
    margin-bottom: 12px;
    padding: 2px 8px;
    background: rgba(42, 32, 37, 0.05);
}

.decode-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--deep-terracotta);
}

.decode-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 38em;
}

/* Decorative hover on cards */
.decode-card:hover {
    transform: scale(1.03) !important;
    transition: transform 0.4s var(--elastic-ease-out);
    box-shadow: 6px 6px 0px var(--primary-terracotta);
}

/* Squiggle decoration */
.decor-squiggle {
    position: absolute;
    pointer-events: none;
    z-index: 4;
}

.squiggle-1 {
    width: 300px;
    bottom: 80px;
    right: 5%;
    opacity: 0.5;
}

/* ============================================
   STATIC BAND DIVIDER
   ============================================ */
.static-band {
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--deep-charcoal) 0px,
        var(--deep-charcoal) 2px,
        transparent 2px,
        transparent 4px
    );
    opacity: 0.15;
    animation: staticFlicker 0.2s steps(2) infinite;
    position: relative;
    z-index: 10;
}

@keyframes staticFlicker {
    0% { opacity: 0.15; }
    50% { opacity: 0.25; }
    100% { opacity: 0.15; }
}

/* ============================================
   SCENE 4: SIGNAL AMPLIFIED
   ============================================ */
.scene-amplified {
    background: var(--noise-white);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5vw;
    position: relative;
}

.amplified-text {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
}

.amp-word {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1.1;
    color: var(--deep-charcoal);
    display: inline-block;
    opacity: 0;
    transform: translateY(80px) scale(0.7);
    transition: opacity 0.5s ease, transform 0.8s var(--elastic-ease);
}

.amp-word.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.amp-word:nth-child(2) {
    color: var(--primary-terracotta);
}

.amp-word:nth-child(5) {
    color: var(--memphis-violet);
}

/* Radar Ping */
.radar-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--hud-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: radarPing 3s ease-out infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

.radar-center {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--hud-cyan);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(74, 234, 220, 0.6);
}

@keyframes radarPing {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Memphis Deco Shapes in Scene 4 */
.memphis-deco {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.deco-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--desert-rose);
    border: 2px solid var(--deep-charcoal);
    top: 15%;
    left: 8%;
    opacity: 0.6;
    animation: breathe 6s ease-in-out infinite;
}

.deco-2 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 85px solid var(--primary-terracotta);
    bottom: 15%;
    right: 10%;
    opacity: 0.5;
    animation: breathe 6s ease-in-out infinite 1s;
}

.deco-3 {
    width: 160px;
    height: 50px;
    top: 70%;
    left: 5%;
    opacity: 0.4;
}

/* ============================================
   SCENE 5: TRANSMISSION COMPLETE (Footer)
   ============================================ */
.scene-footer {
    background: var(--sand-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5vw;
    position: relative;
}

.footer-dissolve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--sand-light) 0%, var(--noise-white) 100%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.footer-glyph {
    margin-bottom: 50px;
}

.glyph-svg {
    width: 100px;
    height: 100px;
    animation: glyphSpin 20s linear infinite;
}

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

/* Radial Footer Links */
.footer-links-radial {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 40px;
}

.footer-link {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--deep-charcoal);
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid transparent;
    transition: all 0.3s var(--elastic-ease);
}

.footer-link:hover {
    color: var(--primary-terracotta);
    border-color: var(--primary-terracotta);
    transform: scale(1.08);
}

.link-1 { top: 0; left: 50%; transform: translateX(-50%); }
.link-2 { top: 25%; right: 0; }
.link-3 { bottom: 25%; right: 5%; }
.link-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.link-5 { bottom: 25%; left: 5%; }
.link-6 { top: 25%; left: 0; }

.footer-link:hover {
    transform: scale(1.08);
}

.footer-transmission {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--deep-charcoal);
    opacity: 0.7;
}

/* Final Memphis Shape */
.memphis-final-shape {
    position: absolute;
    bottom: 40px;
    right: 60px;
    width: 80px;
    height: 80px;
    background: var(--memphis-violet);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.6;
    z-index: 4;
    animation: finalPulse 3s ease-in-out infinite;
}

@keyframes finalPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

/* ============================================
   FLOATING NAVIGATION ASTEROID
   ============================================ */
.nav-asteroid {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: asteroidWobble 8s ease-in-out infinite;
}

@keyframes asteroidWobble {
    0% { transform: translate(0, 0); }
    25% { transform: translate(3px, -5px); }
    50% { transform: translate(-2px, 3px); }
    75% { transform: translate(4px, 2px); }
    100% { transform: translate(0, 0); }
}

.nav-asteroid-inner {
    background: var(--deep-charcoal);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    padding: 14px;
    display: flex;
    gap: 6px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(42, 32, 37, 0.3);
    transition: transform 0.4s var(--elastic-ease), border-radius 0.4s ease;
    border: 2px solid var(--primary-terracotta);
}

.nav-asteroid:hover .nav-asteroid-inner {
    transform: scale(1.15);
    border-radius: 20px;
    gap: 10px;
    padding: 16px 20px;
}

.nav-link {
    color: var(--noise-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s var(--elastic-ease);
    position: relative;
}

.nav-link:hover {
    background: var(--primary-terracotta);
    transform: scale(1.2);
}

.nav-link::after {
    content: attr(data-label);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.1em;
    color: var(--hud-cyan);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.nav-asteroid:hover .nav-link::after {
    opacity: 1;
}

/* ============================================
   PULL QUOTE STYLE (unused but ready)
   ============================================ */
.pull-quote {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    transform: rotate(-2deg);
    border-left: 6px solid var(--primary-terracotta);
    padding-left: 24px;
    margin: 40px 0;
    line-height: 1.3;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .cards-scattered {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-2 { margin-top: 0; }
    .card-4 { margin-top: 0; }

    .blob-1,
    .blob-2,
    .blob-3 {
        margin-left: 0;
        margin-right: 0;
        align-self: center;
    }

    .footer-links-radial {
        width: 250px;
        height: 250px;
    }

    .memphis-cluster {
        width: 100vmin;
        height: 100vmin;
    }

    .hud-status-bar {
        font-size: 9px;
        gap: 6px;
        padding: 6px 10px;
    }

    .nav-asteroid-inner {
        padding: 10px;
    }

    .nav-link {
        width: 28px;
        height: 28px;
    }

    .amp-word {
        font-size: clamp(2rem, 10vw, 5rem);
    }
}

@media (max-width: 480px) {
    .hud-status-bar {
        font-size: 8px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 15vw, 6rem);
    }

    .scene-title {
        font-size: clamp(1.5rem, 7vw, 3rem);
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .content-blob,
    .decode-card,
    .amp-word,
    .scene-title {
        opacity: 1;
        transform: none;
    }

    .content-blob.is-visible,
    .decode-card.is-visible,
    .amp-word.is-visible,
    .scene-title.is-visible {
        transform: none;
    }
}
