/* ==========================================================================
   YEHH.STUDIO — ELECTRIC COBALT BLUE, NEON LIME & CRISP WHITE SYSTEM
   PALETTE: ELECTRIC BLUE (#0136FE), NEON LIME (#C6FF00), CRISP WHITE (#FFFFFF), MIDNIGHT (#030922)
   ZERO GRADIENTS — INFINITE HORIZONTAL WORK MARQUEE, SPACIOUS RADAR COMPASS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

:root {
    /* Electric Blue Brand Palette */
    --blue-primary: #0136FE;
    --blue-hover: #0028D4;
    --blue-deep: #001F9E;
    --blue-midnight: #03081E;
    --blue-surface: #061138;
    --blue-surface-subtle: #08174D;
    --blue-glow: rgba(1, 54, 254, 0.45);

    --lime: #C6FF00;
    --lime-hover: #D4FF26;
    --lime-dark: #1E3300;
    --lime-subtle: rgba(198, 255, 0, 0.15);

    /* Backgrounds */
    --bg-base: #0136FE;
    --bg-surface: #040C2B;
    --bg-surface-subtle: #071444;
    --bg-dark: #020617;
    --bg-dark-surface: #050D2E;

    /* Typography */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.82);
    --text-muted: rgba(255, 255, 255, 0.55);
    --text-inverted: #0136FE;
    --text-dark: #020617;

    /* Borders & Grid */
    --border-hairline: rgba(255, 255, 255, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.20);
    --border-medium: rgba(255, 255, 255, 0.35);
    --border-dark: #020617;
    --border-lime: #C6FF00;
    --border-blue: #0136FE;
    --grid-line: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Motion & Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-smooth: 0.4s var(--ease-out-expo);
    --transition-slow: 0.7s var(--ease-out-expo);
}

/* ==================== GLOBAL RESET & FOUNDATION ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
    background-color: var(--bg-base);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: clip;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Editorial Minimalist Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--lime);
}

::selection {
    background: var(--lime);
    color: var(--text-primary);
}

/* ==================== 1. PRELOADER SEQUENCE ==================== */
.preloader-stagger-wrap {
    position: fixed;
    inset: 0;
    z-index: 999999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3vw;
}

.preloader-columns-layer {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 1;
}

.preloader-column-box {
    flex: 1;
    background: var(--blue-primary);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transform-origin: top center;
    transition: transform 0.85s var(--ease-in-out-expo);
}

.preloader-column-box:nth-child(even) {
    background: #002CD1;
}

.preloader-column-box:last-child {
    border-right: none;
}

.preloader-column-box:nth-child(1) { transition-delay: 0.00s; }
.preloader-column-box:nth-child(2) { transition-delay: 0.06s; }
.preloader-column-box:nth-child(3) { transition-delay: 0.12s; }
.preloader-column-box:nth-child(4) { transition-delay: 0.18s; }
.preloader-column-box:nth-child(5) { transition-delay: 0.24s; }
.preloader-column-box:nth-child(6) { transition-delay: 0.30s; }
.preloader-column-box:nth-child(7) { transition-delay: 0.36s; }

.preloader-stagger-wrap.is-loaded .preloader-column-box {
    transform: scaleY(0);
}

.preloader-ui-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.4s ease;
}

.preloader-stagger-wrap.is-loaded .preloader-ui-content {
    opacity: 0;
}

.preloader-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.preloader-top-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 0.9;
}

.preloader-center-number {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-giant-digits {
    font-family: var(--font-display);
    font-size: clamp(6rem, 24vw, 20rem);
    font-weight: 800;
    line-height: 0.85;
    color: #FFFFFF;
    position: relative;
}

.preloader-percent-symbol {
    position: absolute;
    top: 5%;
    right: -15%;
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--lime);
}

.preloader-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 100px;
}

.preloader-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--lime);
    box-shadow: 0 0 10px var(--lime);
    transition: width 0.08s linear;
}

.preloader-bottom-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* ==================== 2. SLEEK FLOATING STATUS BAR ==================== */
.floating-status-bar {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    z-index: 99900;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.live-clock-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.live-beacon-dot {
    width: 7px;
    height: 7px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--lime);
    animation: beacon-blink 1.8s infinite;
}

@keyframes beacon-blink {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.sound-toggle-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 0.45rem 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-transform: uppercase;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.sound-toggle-btn:hover {
    background: var(--lime);
    border-color: var(--lime);
}

/* ==================== 3. FLUID CUSTOM CONTRAST CURSOR ==================== */
.cursor-dot, .cursor-ring {
    display: none !important;
}

@media (max-width: 992px) {
    .cursor-dot, .cursor-ring, .floating-status-bar {
        display: none !important;
    }
}

/* ==================== 4. 3D ROLLING TEXT INTERACTION ==================== */
.roll-btn-3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    overflow: hidden;
    transition: var(--transition-fast);
}

.roll-text-track {
    display: inline-block;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.roll-text-front,
.roll-text-back {
    display: block;
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease-out-expo);
}

.roll-text-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
}

.roll-btn-3d:hover .roll-text-front,
a:hover > .roll-text-track .roll-text-front,
.dock-nav-item:hover .roll-text-front {
    transform: translateY(-100%);
}

.roll-btn-3d:hover .roll-text-back,
a:hover > .roll-text-track .roll-text-back,
.dock-nav-item:hover .roll-text-back {
    transform: translateY(0);
}

/* ==================== 5. SLEEK DYNAMIC ISLAND DOCK ==================== */
.dock-nav-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99990;
    background: rgba(3, 8, 30, 0.90);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(1, 54, 254, 0.45);
    border-radius: 100px;
    padding: 0.4rem 0.55rem 0.4rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 24px rgba(1, 54, 254, 0.25);
    transition: transform 0.35s var(--ease-bounce), box-shadow 0.3s ease, border-color 0.3s ease;
}

.dock-nav-bar:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 32px rgba(1, 54, 254, 0.45);
    border-color: rgba(1, 54, 254, 0.85);
}

.dock-nav-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.25rem 0.25rem;
}

.dock-menu-pill-beacon {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 0.35rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-bounce);
}

.dock-nav-left:hover .dock-menu-pill-beacon {
    background: var(--lime);
    border-color: var(--lime);
    transform: scale(1.06);
}

.dock-burger-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 6px var(--lime);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.dock-nav-left:hover .dock-burger-dot {
    background: #0136FE;
    box-shadow: none;
}

.dock-burger-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dock-burger-bar {
    width: 12px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: background-color 0.2s ease, width 0.2s ease;
}

.dock-nav-left:hover .dock-burger-bar {
    background: #0136FE;
}

.dock-nav-left:hover .dock-burger-bar:last-child {
    width: 8px;
}

.dock-menu-text {
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
}

.dock-nav-left:hover .dock-menu-text {
    color: var(--lime);
}

.dock-segment-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
}

.dock-nav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.15rem 0.5rem;
    line-height: 1;
}

.dock-brand-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
    animation: beaconPulse 2.2s infinite;
}

.dock-cta-btn {
    background: var(--lime);
    color: #0136FE;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.6rem 1.4rem;
    box-shadow: 0 4px 18px rgba(198, 255, 0, 0.35);
    transition: all 0.25s var(--ease-out-expo);
}

.dock-cta-btn:hover {
    background: #FFFFFF;
    color: #0136FE;
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.45);
    transform: scale(1.04);
}

/* ==================== 5. SPATIAL FULLSCREEN KINETIC MENU ==================== */
.spatial-menu-curtain {
    position: fixed;
    inset: 0;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spatial-menu-curtain.is-active {
    opacity: 1;
    pointer-events: auto;
}

.spatial-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.spatial-menu-container {
    position: relative;
    z-index: 2;
    width: 92vw;
    max-width: 1200px;
    height: 88vh;
    max-height: 780px;
    background: #0A0A0A;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 2rem 2.75rem;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    scrollbar-width: none;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.45s var(--ease-out-expo);
}

.spatial-menu-curtain.is-active .spatial-menu-container {
    transform: scale(1) translateY(0);
}

.spatial-menu-container::-webkit-scrollbar {
    display: none;
}

/* Top HUD */
.spatial-menu-hud-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spatial-hud-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 0.06em;
}

.spatial-menu-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 800;
    transition: color 0.2s ease, transform 0.2s ease;
}

.spatial-menu-close-btn:hover {
    color: var(--lime);
}

.close-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: transform 0.3s var(--ease-bounce), background-color 0.2s ease, color 0.2s ease;
}

.spatial-menu-close-btn:hover .close-icon-circle {
    transform: rotate(90deg) scale(1.1);
    background: var(--lime);
    color: #0A0A0A;
}

/* Menu Body */
.spatial-menu-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3.5rem;
    padding: 1.25rem 0;
    align-items: center;
}

@media (max-width: 900px) {
    .spatial-menu-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.spatial-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.spatial-nav-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.55rem 0.85rem;
    border-radius: 14px;
    text-decoration: none;
    color: #FFFFFF;
    transition: background-color 0.25s ease, transform 0.25s var(--ease-out-expo);
    position: relative;
}

.spatial-nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
}

.spatial-nav-link.link-highlight {
    background: rgba(198, 255, 0, 0.08);
    border: 1px solid rgba(198, 255, 0, 0.3);
}

.spatial-nav-link.link-highlight:hover {
    background: var(--lime);
    color: #0A0A0A;
}

.spatial-link-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--lime);
    width: 24px;
    transition: color 0.2s ease;
}

.spatial-nav-link.link-highlight:hover .spatial-link-num {
    color: #0A0A0A;
}

.spatial-link-main {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.spatial-link-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.65rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.spatial-link-desc {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s ease;
}

.spatial-nav-link:hover .spatial-link-desc {
    color: rgba(255, 255, 255, 0.85);
}

.spatial-nav-link.link-highlight:hover .spatial-link-desc {
    color: rgba(10, 10, 10, 0.75);
}

.spatial-link-arrow {
    font-size: 1rem;
    color: var(--lime);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, color 0.2s ease;
}

.spatial-nav-link:hover .spatial-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.spatial-nav-link.link-highlight:hover .spatial-link-arrow {
    color: #0A0A0A;
}

/* Right Sidebar HUD */
.spatial-sidebar-hud {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
    .spatial-sidebar-hud {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 1.5rem;
    }
}

.spatial-hud-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.spatial-hud-heading {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.spatial-hud-p {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.spatial-hud-mail {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
    margin-top: 0.25rem;
    border-bottom: 1.5px solid var(--lime);
    width: max-content;
    padding-bottom: 2px;
}

.spatial-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.spatial-soc-link {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.spatial-soc-link:hover {
    color: var(--lime);
    transform: translateY(-2px);
}

.btn-spatial-admin {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #181818;
    color: var(--lime);
    border: 1px solid rgba(198, 255, 0, 0.35);
    border-radius: 100px;
    padding: 0.5rem 1.2rem;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    width: max-content;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-spatial-admin:hover {
    background: var(--lime);
    color: #0A0A0A;
    transform: scale(1.04);
}

/* Footer of modal */
.spatial-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ==================== 6. TYPOGRAPHY & GENERAL UTILITIES ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.text-lime {
    background: var(--lime);
    color: var(--text-primary);
    padding: 0 0.35rem;
    border-radius: 4px;
    display: inline-block;
}

.tag-mono {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.container-lab {
    width: 100%;
    max-width: 1360px;
    padding: 0 4vw;
    margin: 0 auto;
    position: relative;
}

.btn-lab-lime {
    background: var(--lime);
    color: #0136FE;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.9rem 2.25rem;
    box-shadow: 0 4px 20px rgba(198, 255, 0, 0.35);
    transition: var(--transition-fast);
}

.btn-lab-lime:hover {
    background: #FFFFFF;
    color: #0136FE;
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.btn-lab-dark {
    background: #03081E;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.9rem 2.25rem;
    transition: var(--transition-fast);
}

.btn-lab-dark:hover {
    background: var(--lime);
    color: #0136FE;
    border-color: var(--lime);
    box-shadow: 0 8px 24px rgba(198, 255, 0, 0.35);
    transform: translateY(-2px);
}

/* ==================== 7. HERO SECTION ==================== */
.hero-lab-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4vw 0 6rem;
    background: var(--blue-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

#heroInteractiveCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hairline-v-center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--grid-line);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.hairline-h-center {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--grid-line);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.cross-plus-marker {
    position: absolute;
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.45);
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
}

.plus-tl { top: 2vw; left: 2vw; }
.plus-tr { top: 2vw; right: 2vw; }
.plus-bl { bottom: 2vw; left: 2vw; }
.plus-br { bottom: 2vw; right: 2vw; }

.hero-lab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left-editorial {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 520px;
}

.hero-body-manifesto {
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.65;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-right-monumental h1 {
    font-size: clamp(3.25rem, 7vw, 7.25rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

/* ==================== 8. COMPACT & BALANCED RADAR COMPASS SECTION ==================== */
.services-radar-section {
    padding: 7rem 0 8.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(1, 54, 254, 0.35);
    background: var(--blue-midnight);
    overflow: hidden;
}

.radar-heading-title {
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.radar-compass-stage {
    position: relative;
    width: clamp(280px, 32vw, 420px);
    height: clamp(280px, 32vw, 420px);
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-dashed-circle {
    position: absolute;
    inset: 0;
    border: 1.5px dashed rgba(198, 255, 0, 0.35);
    border-radius: 50%;
    animation: radar-spin 40s linear infinite;
}

@keyframes radar-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.radar-radial-tick {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    margin-top: -0.5px;
    margin-left: -50%;
    pointer-events: none;
}

.radar-radial-tick::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 10px;
    height: 4px;
    background: var(--lime);
    border-radius: 1px;
}

/* Center Live Capability Card with Balanced Compact Proportions */
.radar-center-card {
    position: absolute;
    width: 175px;
    background: #061138;
    border-radius: 12px;
    border: 1.5px solid rgba(1, 54, 254, 0.5);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(1, 54, 254, 0.25);
    padding: 1rem 0.85rem;
    text-align: center;
    z-index: 10;
    transition: var(--transition-fast);
}

.radar-center-card-title {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.radar-center-card-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* 4 Radar Beacons Snugly Placed Around the Circle Perimeter */
.radar-beacon-anchor {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(0.82rem, 1.05vw, 1rem);
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 10;
    cursor: pointer;
    background: #061138;
    color: #FFFFFF;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 0.45rem 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s var(--ease-bounce), background-color 0.25s ease, box-shadow 0.25s ease;
}

.radar-beacon-anchor:hover, .radar-beacon-anchor.active {
    background: var(--lime);
    color: #0136FE;
    border-color: var(--lime);
    box-shadow: 0 8px 20px rgba(198, 255, 0, 0.45);
}

.radar-ping-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    display: inline-block;
}

.radar-beacon-anchor.active .radar-ping-dot,
.radar-beacon-anchor:hover .radar-ping-dot {
    background: #0136FE;
}

.radar-ping-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--lime);
    animation: radar-ping-wave 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes radar-ping-wave {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Precise In-Place Scaling for Each Anchor (Zero Sideways Shifting & Snug Layout) */
.anchor-top {
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%) scale(1);
    transform-origin: center center;
}
.anchor-top:hover, .anchor-top.active {
    transform: translateX(-50%) scale(1.12);
}

.anchor-bottom {
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%) scale(1);
    transform-origin: center center;
}
.anchor-bottom:hover, .anchor-bottom.active {
    transform: translateX(-50%) scale(1.12);
}

.anchor-left {
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
}
.anchor-left:hover, .anchor-left.active {
    transform: translate(-50%, -50%) scale(1.12);
}

.anchor-right {
    right: 0;
    top: 50%;
    transform: translate(50%, -50%) scale(1);
    transform-origin: center center;
}
.anchor-right:hover, .anchor-right.active {
    transform: translate(50%, -50%) scale(1.12);
}

/* ==================== 9. PROCESS SECTION ==================== */
.process-lab-section {
    padding: 8rem 0;
    position: relative;
    background: var(--blue-midnight);
    border-bottom: 1px solid rgba(1, 54, 254, 0.35);
}

.process-lab-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5vw;
    margin-bottom: 6rem;
}

.process-cards-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-card-unit {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background: #040C2B;
    transition: var(--transition-fast);
}

.process-card-unit:last-child {
    border-right: none;
}

.process-card-unit:hover {
    background: #07154A;
}

.process-unit-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(1, 54, 254, 0.7);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.process-card-unit:hover .process-unit-num {
    color: var(--lime);
}

/* ==================== 10. TRUE 3D CIRCULAR RING CAROUSEL (BULAT SEMPURNA & CONTINUOUS ROTATION) ==================== */
.work-ring-section {
    background: var(--lime);
    padding: 6rem 0 7.5rem;
    position: relative;
    overflow: hidden;
}

.work-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.work-header-title {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    color: #FFFFFF;
}

/* ==================== 10. STICKY STACKING CARDS (OPTION 3) ==================== */
.work-stack-section {
    background: var(--blue-primary);
    padding: 4.5rem 0 7rem;
    position: relative;
    overflow: visible;
}

.stack-cards-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 1060px;
    margin: 1.5rem auto 0;
}

.stack-card-item {
    position: sticky;
    top: clamp(55px, 8vh, 85px);
    width: 100%;
    z-index: calc(10 + var(--stack-idx));
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
    will-change: transform;
}

.stack-card-inner {
    display: grid;
    grid-template-columns: 1.15fr 1.35fr;
    background: #03081E;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
    min-height: 420px;
    max-height: calc(100vh - 150px);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
}

.stack-card-inner:hover {
    border-color: var(--lime);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 30px rgba(198, 255, 0, 0.3);
}

@media (max-width: 900px) {
    .stack-card-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
    }
}

/* Left Info Column */
.stack-info-side {
    padding: 2.2rem 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    background: #03081E;
    position: relative;
    z-index: 2;
}

@media (max-width: 600px) {
    .stack-info-side {
        padding: 1.75rem 1.4rem;
    }
}

.stack-badge-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.stack-badge-category {
    background: rgba(255, 255, 255, 0.08);
    color: var(--lime);
    border: 1px solid rgba(198, 255, 0, 0.35);
    border-radius: 100px;
    padding: 0.32rem 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.stack-badge-num {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 0.32rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.stack-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 2.05rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.stack-card-summary {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.65rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stack-tags-cloud {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}

.stack-tag-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.18rem 0.55rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.03em;
}

.stack-info-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stack-meta-grid {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stack-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.btn-stack-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lime);
    color: #0A0A0A;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(198, 255, 0, 0.3);
    transition: var(--transition-fast);
}

.btn-stack-cta:hover {
    background: #FFFFFF;
    color: #0A0A0A;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Right Media Column */
.stack-media-side {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
    background: #111111;
}

.stack-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    transition: transform 0.8s var(--ease-out-expo);
}

.stack-card-inner:hover .stack-media-img {
    transform: scale(1.06);
}

.stack-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0) 30%);
    pointer-events: none;
}

@media (max-width: 900px) {
    .stack-media-overlay {
        background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0) 30%);
    }
}

.stack-fallback-art {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--lime);
    background: #161616;
}

.stack-hover-pill {
    position: absolute;
    bottom: 1.75rem;
    right: 1.75rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    color: var(--lime);
    border: 1px solid rgba(198, 255, 0, 0.35);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s var(--ease-bounce), background-color 0.2s ease, color 0.2s ease;
}

.stack-card-inner:hover .stack-hover-pill {
    transform: scale(1.08);
    background: var(--lime);
    color: #0A0A0A;
}

.work-horizontal-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.card-thumb-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: var(--bg-surface-subtle);
}

.card-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-expo);
}

.work-horizontal-card:hover .card-thumb-img {
    transform: scale(1.08);
}

.card-floating-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 0.35rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
}

.card-info-footer {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: var(--bg-surface);
}

.card-title-text {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
}

.card-meta-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.card-action-link {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* ==================== 11. MONOLITHIC DARK HORIZON & SCROLL-DRIVEN STATEMENTS ==================== */
.dark-horizon-section {
    background: var(--bg-dark);
    color: var(--text-inverted);
    height: 350vh;
    position: relative;
    overflow: visible;
}

.horizon-sticky-viewport {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem 3rem;
    overflow: hidden;
    background: var(--bg-dark);
}

.horizon-statements-viewport {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    perspective-origin: 50% 50%;
    z-index: 10;
}

.horizon-statement-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: rotateX(50deg) translateZ(-150px) scale(0.78);
    filter: blur(18px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    will-change: transform, opacity, filter;
    transform-style: preserve-3d;
}

.horizon-statement-item.is-active {
    opacity: 1;
    transform: rotateX(0deg) translateZ(0px) scale(1);
    filter: blur(0px);
    pointer-events: auto;
}

.horizon-statement-item.is-passed {
    opacity: 0;
    transform: rotateX(-50deg) translateZ(150px) scale(1.22);
    filter: blur(18px);
}

.statement-text {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7.8vw, 7.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.92;
    color: #FFFFFF;
    letter-spacing: -0.04em;
    position: relative;
    display: inline-block;
    transition: letter-spacing 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizon-statement-item.is-active .statement-text {
    letter-spacing: -0.015em;
    color: #FFFFFF;
    text-shadow: 0 0 60px rgba(198, 255, 0, 0.35), 0 0 120px rgba(255, 255, 255, 0.18);
}

.watermark-yehh-giant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 28vw, 32rem);
    font-weight: 800;
    line-height: 0.8;
    text-align: center;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.06em;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s ease, color 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizon-bottom-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
}

.scroll-prompt-text {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.horizon-scroll-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    overflow: hidden;
}

.horizon-scroll-fill {
    width: 20%;
    height: 100%;
    background: var(--lime);
    border-radius: 100px;
    transition: width 0.15s ease-out;
}

/* ==================== 12. ULTRA-MODERN EDITORIAL INQUIRY FORM ==================== */
.modern-inquiry-section {
    background: var(--blue-midnight);
    padding: 9rem 0 11rem;
    position: relative;
    border-top: 1px solid rgba(1, 54, 254, 0.35);
}

.modern-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Live Scope Estimator Ribbon */
.modern-estimator-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #061138;
    border: 1.5px solid rgba(1, 54, 254, 0.5);
    border-radius: 100px;
    padding: 0.6rem 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.estimator-scope-tag {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.estimator-scope-val {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: #0136FE;
    background: var(--lime);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* Modern Clean Form Layout */
.modern-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Modern Clean Underline & Surface Inputs */
.modern-input-group {
    margin-bottom: 2.75rem;
    position: relative;
}

.modern-input-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
}

.modern-input-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    padding: 0.75rem 0 1rem;
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 500;
    color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.modern-input-field:focus {
    outline: none;
    border-bottom-color: var(--lime);
}

.modern-input-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.modern-select-field {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C6FF00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.25em;
    padding-right: 2rem;
}

textarea.modern-input-field {
    min-height: 100px;
    resize: vertical;
}

/* Interactive Budget Tier Matrix */
.budget-tiers-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 0.6rem;
}

.budget-tier-pill.budget-tier-custom {
    grid-column: span 2;
}

@media (max-width: 500px) {
    .budget-tiers-matrix {
        grid-template-columns: 1fr;
    }
    .budget-tier-pill.budget-tier-custom {
        grid-column: span 1;
    }
}

.budget-tier-pill {
    background: #061138;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 0.6rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
    text-align: left;
    transition: transform 0.2s var(--ease-bounce), border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    color: #FFFFFF;
}

.budget-tier-pill:hover {
    border-color: var(--lime);
    background: #08174D;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.budget-tier-pill.is-selected {
    background: var(--lime);
    border-color: var(--lime);
    color: #0136FE;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(198, 255, 0, 0.35);
    transform: scale(1.02);
}

.budget-tier-pill .tier-icon {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.budget-tier-pill.is-selected .tier-icon {
    color: #0136FE;
}

.budget-tier-pill .tier-val {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.budget-tier-pill .tier-badge {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.18rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.budget-tier-pill.is-selected .tier-badge {
    background: #0136FE;
    color: #FFFFFF;
    font-weight: 800;
}

/* Custom Budget Input Box */
.custom-budget-input-wrap {
    display: none;
    margin-top: 0.75rem;
    animation: fadeInSlide 0.3s var(--ease-out-expo);
}

.custom-budget-input-wrap.is-visible {
    display: block;
}

.custom-budget-inner {
    display: flex;
    align-items: center;
    background: #061138;
    border: 2px solid rgba(1, 54, 254, 0.6);
    border-radius: 12px;
    padding: 0.4rem 0.85rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    gap: 0.65rem;
}

.custom-currency-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    background: var(--lime);
    color: #0136FE;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.custom-budget-input {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    background: transparent;
}

.custom-budget-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

/* ==================== 13. COMPREHENSIVE RESPONSIVE BREAKPOINTS ==================== */

/* Tablet & Smaller Laptops (<= 1024px) */
@media (max-width: 1024px) {
    .container-lab {
        padding: 0 5vw;
    }

    /* Hero Section */
    .hero-lab-section {
        padding: 4rem 0 6rem;
    }

    .hero-lab-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right-monumental {
        order: 1;
    }

    .hero-left-editorial {
        order: 2;
        max-width: 100%;
    }

    /* Process Section */
    .process-lab-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .process-cards-matrix {
        grid-template-columns: 1fr 1fr;
    }

    .process-card-unit:nth-child(2) {
        border-right: none;
    }

    .process-card-unit:nth-child(1),
    .process-card-unit:nth-child(2) {
        border-bottom: 1px solid var(--border-subtle);
    }

    /* Stacking Cards */
    .stack-card-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
    }

    .stack-media-side {
        min-height: 280px;
        height: 280px;
        order: 1;
    }

    .stack-info-side {
        order: 2;
        padding: 2rem 1.75rem;
    }

    /* Spatial Menu */
    .spatial-menu-container {
        width: 94vw;
        height: 90vh;
        max-height: 90vh;
        padding: 1.75rem 2rem;
    }

    .spatial-menu-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .spatial-sidebar-hud {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 1.5rem;
    }
}

/* Medium Tablets & Large Smartphones (<= 900px) */
@media (max-width: 900px) {
    /* Dock Navigation */
    .dock-nav-bar {
        width: auto;
        max-width: calc(100vw - 2.5rem);
        padding: 0.38rem 0.6rem 0.38rem 0.8rem;
        gap: 0.85rem;
    }

    .dock-nav-brand {
        font-size: 0.95rem;
    }

    .dock-cta-btn {
        padding: 0.55rem 1.15rem;
        font-size: 0.78rem;
    }

    /* Case Study Detail Grid */
    .case-study-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cs-body-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cs-sidebar-card {
        position: static;
    }
}

/* Standard Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {
    /* Global Mobile Foundation */
    :root {
        --safe-bottom: env(safe-area-inset-bottom, 0px);
    }

    html, body {
        overflow-x: clip;
        width: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    /* Typography & Utilities */
    h1, h2, h3, h4, h5, h6 {
        word-break: break-word;
    }

    .container-lab {
        padding: 0 1.25rem;
    }

    /* Preloader Mobile */
    .preloader-stagger-wrap {
        padding: 1.5rem 1.25rem;
    }

    .preloader-top-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .preloader-giant-digits {
        font-size: clamp(4.5rem, 24vw, 12rem);
    }

    .preloader-percent-symbol {
        font-size: clamp(1.6rem, 8vw, 3.5rem);
        right: -10%;
        top: 2%;
    }

    .preloader-bottom-meta {
        font-size: 0.72rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    /* Floating Dock Mobile Capsule */
    .dock-nav-bar {
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        width: calc(100% - 2rem);
        max-width: 420px;
        padding: 0.35rem 0.45rem 0.35rem 0.65rem;
        gap: 0.6rem;
        border-radius: 100px;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
        justify-content: space-between;
    }

    .dock-nav-left {
        gap: 0.45rem;
        padding: 0.15rem 0.15rem;
    }

    .dock-menu-pill-beacon {
        padding: 0.3rem 0.48rem;
        gap: 0.35rem;
    }

    .dock-burger-bar {
        width: 10px;
    }

    .dock-menu-text {
        font-size: 0.72rem;
        letter-spacing: 0.05em;
    }

    .dock-segment-divider {
        height: 14px;
        margin: 0 -0.15rem;
    }

    .dock-nav-brand {
        font-size: 0.85rem;
        gap: 0.4rem;
        letter-spacing: -0.01em;
    }

    .dock-brand-live-dot {
        width: 6px;
        height: 6px;
    }

    .dock-cta-btn {
        padding: 0.5rem 0.95rem;
        font-size: 0.75rem;
        letter-spacing: 0.02em;
    }

    /* Spatial Fullscreen Kinetic Menu HUD */
    .spatial-menu-curtain {
        padding: 0.75rem;
    }

    .spatial-menu-container {
        width: 100%;
        height: 94vh;
        max-height: 94vh;
        padding: 1.25rem 1.25rem;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .spatial-menu-hud-top {
        padding-bottom: 0.85rem;
    }

    .spatial-hud-tag {
        font-size: 0.68rem;
        gap: 0.45rem;
    }

    .spatial-menu-close-btn {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .close-icon-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .spatial-menu-body {
        padding: 0.5rem 0;
        gap: 1.5rem;
    }

    .spatial-nav-list {
        gap: 0.35rem;
    }

    .spatial-nav-link {
        padding: 0.65rem 0.65rem;
        border-radius: 12px;
        gap: 0.85rem;
    }

    .spatial-link-num {
        font-size: 0.72rem;
        width: 20px;
    }

    .spatial-link-title {
        font-size: 1.05rem;
        line-height: 1.15;
    }

    .spatial-link-desc {
        font-size: 0.65rem;
    }

    .spatial-link-arrow {
        opacity: 1;
        transform: translateX(0);
        font-size: 0.85rem;
    }

    .spatial-sidebar-hud {
        gap: 1.25rem;
        padding-top: 1.25rem;
    }

    .spatial-hud-heading {
        font-size: 0.65rem;
    }

    .spatial-hud-p {
        font-size: 0.75rem;
    }

    .spatial-hud-mail {
        font-size: 0.82rem;
    }

    .btn-spatial-admin {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1.2rem;
        font-size: 0.78rem;
    }

    .spatial-menu-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        font-size: 0.62rem;
        padding-top: 0.75rem;
    }

    /* 1. Hero Section */
    .hero-lab-section {
        min-height: calc(100svh - 40px);
        padding: 3rem 0 6.5rem;
    }

    .cross-plus-marker {
        display: none;
    }

    .hero-lab-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-right-monumental {
        order: 1;
    }

    .hero-right-monumental h1 {
        font-size: clamp(2.4rem, 11vw, 4.75rem);
        line-height: 0.95;
        letter-spacing: -0.04em;
    }

    .hero-left-editorial {
        order: 2;
        gap: 1.75rem;
    }

    .hero-body-manifesto {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .btn-lab-lime,
    .btn-lab-dark {
        font-size: 0.95rem;
        padding: 0.85rem 1.85rem;
    }

    /* 2. Services Radar Section */
    .services-radar-section {
        padding: 4.5rem 0 6rem;
    }

    .radar-heading-title {
        font-size: clamp(2.2rem, 8vw, 3.8rem);
        margin-bottom: 2rem;
    }

    .services-radar-section {
        padding: 4.5rem 0 6rem;
        overflow-x: clip;
    }

    .radar-compass-stage {
        width: clamp(260px, 72vw, 300px);
        height: clamp(260px, 72vw, 300px);
        margin: 1.75rem auto 2.25rem;
    }

    .radar-center-card {
        width: clamp(124px, 34vw, 140px);
        padding: 0.85rem 0.65rem;
        border-radius: 12px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    }

    .radar-center-card-title {
        font-size: 0.78rem;
        font-weight: 800;
        margin-bottom: 0.3rem;
    }

    .radar-center-card-desc {
        font-size: 0.65rem;
        line-height: 1.35;
    }

    .radar-beacon-anchor {
        font-size: 0.7rem;
        padding: 0.32rem 0.68rem;
        gap: 0.38rem;
        white-space: nowrap;
    }

    .radar-ping-dot {
        width: 6px;
        height: 6px;
    }

    .anchor-top {
        top: -1.35rem;
        left: 50%;
        transform: translateX(-50%) scale(1);
    }
    .anchor-bottom {
        bottom: -1.35rem;
        left: 50%;
        transform: translateX(-50%) scale(1);
    }
    .anchor-left {
        left: 0;
        top: 50%;
        transform: translate(-50%, -50%) scale(1);
    }
    .anchor-right {
        right: 0;
        top: 50%;
        transform: translate(50%, -50%) scale(1);
    }
    .anchor-left:hover, .anchor-left.active { transform: translate(-50%, -50%) scale(1.06); }
    .anchor-right:hover, .anchor-right.active { transform: translate(50%, -50%) scale(1.06); }

    /* 3. Process Section */
    .process-lab-section {
        padding: 4.5rem 0 6rem;
    }

    .process-cards-matrix {
        grid-template-columns: 1fr;
    }

    .process-card-unit {
        padding: 2rem 1.25rem;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }

    .process-card-unit:last-child {
        border-bottom: none;
    }

    .process-unit-num {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
        color: var(--lime);
    }

    /* 4. Featured Work Section */
    .work-stack-section {
        padding: 4rem 0 6.5rem;
    }

    .work-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .work-header-title {
        font-size: clamp(2.2rem, 8vw, 3.8rem);
    }

    .stack-cards-container {
        gap: 2.25rem;
        margin-top: 1rem;
    }

    .stack-card-item {
        top: clamp(60px, 9vh, 85px);
    }

    .stack-card-inner {
        border-radius: 18px;
    }

    .stack-media-side {
        min-height: 220px;
        height: 220px;
    }

    .stack-info-side {
        padding: 1.5rem 1.25rem;
        gap: 1rem;
    }

    .stack-card-title {
        font-size: 1.25rem;
    }

    .stack-card-summary {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .stack-meta-grid {
        gap: 1.25rem;
        padding-top: 0.85rem;
    }

    .btn-stack-cta {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.84rem;
    }

    .stack-hover-pill {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.65rem;
        padding: 0.35rem 0.85rem;
    }

    /* 5. Dark Horizon Section Mobile */
    /* 5. Dark Horizon Section Mobile */
    .dark-horizon-section {
        height: 350vh;
    }

    .horizon-sticky-viewport {
        height: 100vh;
        height: 100svh;
        height: 100dvh;
        padding: 1.5rem 1rem;
        justify-content: center;
        align-items: center;
    }

    .horizon-statements-viewport {
        height: 240px;
        max-width: 92vw;
        perspective: 900px;
    }

    .horizon-statement-item {
        transform: rotateX(45deg) translateZ(-100px) scale(0.82);
        filter: blur(12px);
    }

    .horizon-statement-item.is-active {
        transform: rotateX(0deg) translateZ(0px) scale(1);
        filter: blur(0px);
    }

    .horizon-statement-item.is-passed {
        transform: rotateX(-45deg) translateZ(100px) scale(1.18);
        filter: blur(12px);
    }

    .statement-text {
        font-size: clamp(2.2rem, 9.5vw, 4.2rem);
        line-height: 0.92;
        letter-spacing: -0.03em;
        text-align: center;
    }

    .watermark-yehh-giant {
        font-size: clamp(6rem, 28vw, 16rem);
    }

    .horizon-bottom-indicator {
        bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
        width: calc(100% - 2.5rem);
        max-width: 300px;
        gap: 0.45rem;
    }

    .scroll-prompt-text {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }

    /* 6. Modern Inquiry Section */
    .modern-inquiry-section {
        padding: 4.5rem 0 7rem;
    }

    .modern-form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modern-estimator-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.75rem 1.25rem;
        border-radius: 14px;
        margin-bottom: 2.5rem;
    }

    .estimator-scope-tag {
        font-size: 0.7rem;
    }

    .estimator-scope-val {
        font-size: 0.85rem;
        padding: 0.25rem 0.75rem;
        width: 100%;
        text-align: center;
    }

    .modern-input-group {
        margin-bottom: 2rem;
    }

    .modern-input-label {
        font-size: 0.72rem;
        margin-bottom: 0.5rem;
    }

    .modern-input-field {
        font-size: 1rem;
        padding: 0.6rem 0 0.85rem;
    }

    .budget-tiers-matrix {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .budget-tier-pill.budget-tier-custom {
        grid-column: span 1;
    }

    .budget-tier-pill {
        padding: 0.65rem 0.85rem;
    }

    .budget-tier-pill .tier-val {
        font-size: 0.82rem;
    }

    .custom-budget-inner {
        padding: 0.4rem 0.65rem;
    }

    .custom-budget-input {
        font-size: 0.85rem;
    }

    /* 7. Monumental Studio Footer */
    .monumental-studio-footer {
        padding: 4rem 0 8.5rem;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .btn-footer-backtop {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .footer-directory-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .footer-giant-wordmark-wrap {
        margin: 2.5rem 0 2rem;
        padding: 1.5rem 0;
    }

    .footer-giant-wordmark {
        font-size: clamp(2.5rem, 13vw, 7.5rem);
        letter-spacing: -0.03em;
    }

    .footer-bottom-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
        font-size: 0.7rem;
    }

    /* 8. Portfolio Archive Page */
    .archive-spatial-hero {
        padding: 3rem 0 3.5rem;
    }

    .archive-breadcrumb {
        margin-bottom: 1.75rem;
        font-size: 0.72rem;
    }

    .archive-hero-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .archive-hero-title {
        font-size: clamp(2.5rem, 9.5vw, 5.5rem);
    }

    .archive-hero-desc {
        font-size: 0.95rem;
    }

    .archive-gallery-stage {
        padding: 2.5rem 0 7rem;
    }

    .archive-filter-bar {
        margin-bottom: 2.5rem;
    }

    .archive-filter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .archive-search-capsule {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .archive-filter-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.4rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .archive-filter-pills::-webkit-scrollbar {
        display: none;
    }

    .filter-pill {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 0.4rem 0.85rem;
        font-size: 0.74rem;
    }

    .archive-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* 9. Case Study Detail Page */
    .case-study-hero {
        padding: 3rem 0 0;
    }

    .cs-hero-left {
        padding-bottom: 1.5rem;
    }

    .cs-hero-title {
        font-size: clamp(1.85rem, 7vw, 3.2rem);
        margin-bottom: 1rem;
    }

    .cs-hero-summary {
        font-size: 0.98rem;
    }

    .cs-hero-media {
        border-radius: 14px 14px 0 0;
    }

    .cs-hero-media img {
        min-height: 220px;
        max-height: 340px;
    }

    .case-study-body {
        padding: 3rem 0 7rem;
    }

    .cs-body-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cs-content-block {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .cs-block-heading {
        font-size: 1.15rem;
    }

    .cs-description-text {
        font-size: 0.95rem;
    }

    .cs-sidebar-card {
        padding: 1.5rem;
        border-radius: 14px;
        position: static;
    }

    .cs-action-btn {
        width: 100%;
    }
}

/* Extra Small Mobile Devices (<= 480px) */
@media (max-width: 480px) {
    .container-lab {
        padding: 0 1rem;
    }

    /* Dock Bar Extra Small */
    .dock-nav-bar {
        width: calc(100% - 1.5rem);
        padding: 0.3rem 0.35rem 0.3rem 0.55rem;
        gap: 0.45rem;
    }

    .dock-nav-brand {
        font-size: 0.8rem;
    }

    .dock-cta-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.72rem;
    }

    .dock-segment-divider {
        display: none;
    }

    /* Radar Compass Extra Small (<= 480px) */
    .radar-compass-stage {
        width: clamp(246px, 70vw, 276px);
        height: clamp(246px, 70vw, 276px);
        margin: 1.75rem auto 2.25rem;
    }

    .radar-center-card {
        width: clamp(116px, 32vw, 130px);
        padding: 0.75rem 0.5rem;
        border-radius: 11px;
    }

    .radar-center-card-title {
        font-size: 0.74rem;
        font-weight: 800;
        margin-bottom: 0.25rem;
    }

    .radar-center-card-desc {
        font-size: 0.6rem;
        line-height: 1.32;
    }

    .radar-beacon-anchor {
        font-size: 0.65rem;
        padding: 0.28rem 0.58rem;
        gap: 0.32rem;
        white-space: nowrap;
    }

    .radar-ping-dot {
        width: 5px;
        height: 5px;
    }

    .anchor-top { top: -1.35rem; }
    .anchor-bottom { bottom: -1.35rem; }
    .anchor-left { left: 0; transform: translate(-50%, -50%); }
    .anchor-right { right: 0; transform: translate(50%, -50%); }
    .anchor-left:hover, .anchor-left.active { transform: translate(-50%, -50%) scale(1.05); }
    .anchor-right:hover, .anchor-right.active { transform: translate(50%, -50%) scale(1.05); }

    /* Stacking Cards Extra Small */
    .stack-media-side {
        min-height: 190px;
        height: 190px;
    }

    .stack-info-side {
        padding: 1.25rem 1rem;
    }

    .stack-card-title {
        font-size: 1.15rem;
    }
}

/* ==================== 14. MONUMENTAL STUDIO FOOTER ==================== */
.monumental-studio-footer {
    background: #020617;
    color: #FFFFFF;
    padding: 5rem 0 8.5rem;
    border-top: 2px solid rgba(1, 54, 254, 0.4);
    position: relative;
    overflow: hidden;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-status-beacon-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.95rem;
    border-radius: 100px;
}

.footer-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 10px var(--lime);
    animation: beaconPulse 2s infinite;
}

.footer-status-text {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
}

.btn-footer-backtop {
    background: #061138;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-footer-backtop:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: #0136FE;
}

.footer-directory-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .footer-directory-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-directory-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-col-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 0.08em;
}

.footer-address-lead {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.footer-address-sub {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-direct-mail {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 1.5px solid var(--lime);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-direct-mail:hover {
    color: var(--lime);
    border-color: #FFFFFF;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-anchor,
.footer-social-anchor {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav-anchor:hover,
.footer-social-anchor:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-social-anchor i {
    font-size: 0.75rem;
    color: var(--lime);
}

.footer-admin-anchor {
    color: var(--lime);
    font-weight: 700;
}

.footer-credo-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
}

.footer-tag-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.footer-pill-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

/* Giant Monumental Wordmark */
.footer-giant-wordmark-wrap {
    margin: 3.5rem 0 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    text-align: center;
}

.footer-giant-wordmark {
    font-family: var(--font-display);
    font-size: clamp(3rem, 11.5vw, 9.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.88;
    color: #FFFFFF;
    user-select: none;
    transition: color 0.4s ease, letter-spacing 0.4s ease;
}

.footer-giant-wordmark:hover {
    color: var(--lime);
    letter-spacing: -0.02em;
}

.footer-bottom-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap;
    gap: 1rem;
    text-transform: uppercase;
}

/* ==================== 15. ARCHIVE SPATIAL HERO ==================== */
.archive-spatial-hero {
    background: var(--blue-primary);
    color: #FFFFFF;
    padding: 4rem 0 5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.archive-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.archive-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.archive-breadcrumb a:hover {
    color: var(--lime);
}

.archive-breadcrumb .active-crumb {
    color: var(--lime);
    font-weight: 800;
}

.archive-hero-header {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: end;
}

@media (max-width: 768px) {
    .archive-hero-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.archive-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.tag-beacon-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
    animation: beaconPulse 2s infinite;
}

.archive-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.title-outline {
    -webkit-text-stroke: 2px #FFFFFF;
    color: transparent;
}

.archive-hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 420px;
}

/* ==================== 16. ARCHIVE GALLERY STAGE ==================== */
.archive-gallery-stage {
    padding: 4rem 0 8rem;
    background: var(--blue-midnight);
}

.archive-filter-bar {
    margin-bottom: 3.5rem;
}

.archive-filter-form {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.archive-search-capsule {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #061138;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 0.55rem 1.1rem;
    min-width: 280px;
    flex: 1;
    max-width: 380px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.archive-search-capsule:focus-within {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.3);
}

.archive-search-capsule i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.archive-search-capsule input {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    color: #FFFFFF;
    width: 100%;
}

.archive-search-capsule input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.archive-filter-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter-pill {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    background: #061138;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-2px);
}

.filter-pill.is-active {
    background: var(--lime);
    border-color: var(--lime);
    color: #0136FE;
    font-weight: 800;
}

.archive-reset-btn {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    transition: all 0.2s ease;
}

.archive-reset-btn:hover {
    border-color: var(--lime);
    color: var(--lime);
}

/* Archive Works Grid */
.archive-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .archive-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .archive-works-grid {
        grid-template-columns: 1fr;
    }
}

/* Archive Card */
.archive-card {
    background: #03081E;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(24px);
    animation: archiveCardReveal 0.6s var(--ease-out-expo) forwards;
}

.archive-card:hover {
    border-color: var(--lime);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 24px rgba(198, 255, 0, 0.25);
    transform: translateY(-4px);
}

@keyframes archiveCardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
    border-color: #0A0A0A;
}

.archive-card-media {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #F0F0F0;
}

.archive-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease-out-expo);
}

.archive-card:hover .archive-card-media img {
    transform: scale(1.06);
}

.archive-card-placeholder {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #F4F4F0;
    font-size: 3rem;
    color: rgba(10, 10, 10, 0.15);
}

.archive-card-hover-veil {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.archive-card:hover .archive-card-hover-veil {
    opacity: 1;
}

.veil-cta {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.5rem;
    border: 2px solid #FFFFFF;
    border-radius: 100px;
    transform: translateY(8px);
    transition: transform 0.35s var(--ease-out-expo), background-color 0.2s ease, color 0.2s ease;
}

.archive-card:hover .veil-cta {
    transform: translateY(0);
}

.veil-cta:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: #0A0A0A;
}

.archive-featured-chip {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--lime);
    color: #0A0A0A;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.04em;
    z-index: 2;
}

.archive-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.archive-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.archive-card-cat {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--lime);
    background: rgba(198, 255, 0, 0.12);
    padding: 0.15rem 0.55rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.archive-card-year {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.archive-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.archive-card-title a {
    color: #0A0A0A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.archive-card:hover .archive-card-title a {
    color: var(--lime);
}

.archive-card-summary {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.archive-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.15rem;
}

.archive-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border: 1px solid rgba(10, 10, 10, 0.12);
    border-radius: 5px;
    color: var(--text-secondary);
}

.archive-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.archive-client-name {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.archive-card-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0A0A0A;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.25s var(--ease-out-expo);
}

.archive-card:hover .archive-card-arrow {
    background: var(--lime);
    color: #0A0A0A;
    transform: translateX(4px);
}

/* Archive Empty State */
.archive-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background: #FFFFFF;
    border: 2px dashed rgba(10, 10, 10, 0.15);
    border-radius: 18px;
}

.archive-empty-state i {
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.archive-empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.archive-empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Archive Pagination */
.archive-pagination-wrap {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* ==================== 17. PROJECT DETAIL PAGE ==================== */
.case-study-hero {
    background: #0A0A0A;
    color: #FFFFFF;
    padding: 4rem 0 0;
    overflow: hidden;
}

.case-study-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
}

@media (max-width: 900px) {
    .case-study-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.cs-hero-left {
    padding-bottom: 4rem;
}

.cs-meta-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cs-category-chip {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.cs-featured-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    background: var(--lime);
    color: #0A0A0A;
    letter-spacing: 0.04em;
}

.cs-client-tag {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--lime);
    font-weight: 700;
}

.cs-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cs-hero-summary {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

.cs-hero-media {
    position: relative;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

.cs-hero-media img {
    width: 100%;
    height: auto;
    min-height: 360px;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.cs-hero-media-placeholder {
    padding: 6rem;
    text-align: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    background: #151515;
}

/* Case Study Body */
.case-study-body {
    padding: 4.5rem 0 8rem;
    background: var(--bg-base);
}

.cs-body-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .cs-body-grid {
        grid-template-columns: 1fr;
    }
}

.cs-content-block {
    background: #FFFFFF;
    border: 2px solid rgba(10, 10, 10, 0.1);
    border-radius: 18px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.cs-block-heading {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cs-block-heading i {
    color: var(--lime);
}

.cs-description-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
    white-space: pre-line;
    margin-bottom: 2rem;
}

.cs-results-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-top: 1px solid rgba(10, 10, 10, 0.1);
    padding-top: 1.75rem;
}

.cs-result-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.cs-result-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--lime);
    border-radius: 2px;
    margin-top: 0.45rem;
}

/* Case Study Sidebar */
.cs-sidebar-card {
    background: #FFFFFF;
    border: 2px solid rgba(10, 10, 10, 0.1);
    border-radius: 18px;
    padding: 2rem;
    position: sticky;
    top: 100px;
    margin-bottom: 2rem;
}

.cs-sidebar-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cs-action-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cs-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.25s var(--ease-out-expo);
}

.cs-action-btn.btn-primary-action {
    background: var(--lime);
    color: #0A0A0A;
    box-shadow: 0 4px 16px rgba(198, 255, 0, 0.3);
}

.cs-action-btn.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 255, 0, 0.45);
}

.cs-action-btn.btn-secondary-action {
    background: transparent;
    color: #0A0A0A;
    border: 2px solid rgba(10, 10, 10, 0.2);
}

.cs-action-btn.btn-secondary-action:hover {
    border-color: #0A0A0A;
    transform: translateY(-2px);
}

.cs-action-btn.btn-dark-action {
    background: #0A0A0A;
    color: #FFFFFF;
}

.cs-action-btn.btn-dark-action:hover {
    background: #222222;
    transform: translateY(-2px);
}

.cs-sidebar-section {
    margin-bottom: 1.5rem;
}

.cs-sidebar-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.cs-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.cs-tech-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    background: rgba(198, 255, 0, 0.12);
    border: 1px solid rgba(198, 255, 0, 0.25);
    border-radius: 6px;
    color: #0A0A0A;
}

.cs-meta-table {
    border-top: 1px solid rgba(10, 10, 10, 0.1);
    padding-top: 1.5rem;
}

.cs-meta-row-item {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.cs-meta-row-item:last-child {
    border-bottom: none;
}

.cs-meta-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cs-meta-value {
    font-weight: 800;
    color: #0A0A0A;
}

/* Related Works in Sidebar */
.cs-related-card {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding: 0.65rem;
    border: 1.5px solid rgba(10, 10, 10, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-bottom: 0.6rem;
}

.cs-related-card:hover {
    border-color: #0A0A0A;
    transform: translateX(4px);
}

.cs-related-card img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
}

.cs-related-info h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: #0A0A0A;
    text-transform: uppercase;
}

.cs-related-info span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ==================== 25. OFFICIAL YEHH.STUDIO LOGO SYSTEM ==================== */
/* Dual-State Interactive Morph Brand Logo */
.dock-nav-brand.logo-toggle-interactive {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.5rem;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.22s var(--ease-out-expo);
}

.dock-nav-brand.logo-toggle-interactive:hover {
    transform: scale(1.08);
}

.dock-nav-brand.logo-toggle-interactive:active {
    transform: scale(0.9);
}

.dock-logo-flipper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    perspective: 600px;
    height: 26px;
    width: 62px;
}

.dock-logo-flipper .dock-brand-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 26px;
    width: auto;
    max-width: 62px;
    object-fit: contain;
    display: block;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.3s ease;
    backface-visibility: hidden;
}

/* Default state: Dark/White logo active */
.dock-logo-flipper .logo-face.is-dark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    filter: drop-shadow(0 0 8px rgba(198, 255, 0, 0.25));
    pointer-events: auto;
}

.dock-logo-flipper .logo-face.is-lime {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.65) rotateY(90deg);
    filter: drop-shadow(0 0 16px rgba(198, 255, 0, 0.75));
    pointer-events: none;
}

/* Toggled state: Full Lime logo active */
body.logo-theme-lime .dock-logo-flipper .logo-face.is-dark {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.65) rotateY(-90deg);
    pointer-events: none;
}

body.logo-theme-lime .dock-logo-flipper .logo-face.is-lime {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    filter: drop-shadow(0 0 14px rgba(198, 255, 0, 0.85));
    pointer-events: auto;
}

/* Morph click ripple glow animation */
.logo-morph-ripple {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 1.5px solid var(--lime);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.dock-nav-brand.is-rippling .logo-morph-ripple {
    opacity: 1;
    transform: scale(1.4);
}

/* Spatial Menu Interactive Logo Badge (No button, pure animated logo) */
.spatial-logo-interactive-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    perspective: 700px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s ease;
}

.spatial-logo-interactive-wrap:hover {
    transform: translateY(-2px) scale(1.08);
}

.spatial-logo-interactive-wrap:active {
    transform: scale(0.88);
}

.spatial-badge-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spatial-badge-flipper .badge-face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
    backface-visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.3s ease,
                box-shadow 0.3s ease;
}

/* Default State: Dark Badge */
.spatial-badge-flipper .badge-face.is-dark {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.14);
    pointer-events: auto;
}

.spatial-badge-flipper .badge-face.is-lime {
    opacity: 0;
    transform: rotateY(180deg) scale(0.65);
    box-shadow: 0 4px 18px rgba(198, 255, 0, 0.45), 0 0 0 1.5px rgba(198, 255, 0, 0.3);
    pointer-events: none;
}

/* Lime Theme: Lime Badge Active */
body.logo-theme-lime .spatial-badge-flipper .badge-face.is-dark {
    opacity: 0;
    transform: rotateY(-180deg) scale(0.65);
    pointer-events: none;
}

body.logo-theme-lime .spatial-badge-flipper .badge-face.is-lime {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    box-shadow: 0 6px 22px rgba(198, 255, 0, 0.55), 0 0 0 1.5px var(--lime);
    pointer-events: auto;
}

/* Halo Glow Particle Ring on Click */
.spatial-badge-halo {
    position: absolute;
    inset: -6px;
    border-radius: 16px;
    border: 2px solid var(--lime);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    transition: opacity 0.4s ease, transform 0.45s var(--ease-out-expo);
}

.spatial-logo-interactive-wrap.is-rippling .spatial-badge-halo {
    opacity: 1;
    transform: scale(1.4);
}

/* Coin Flip Kinetic Keyframe Animation */
@keyframes coinFlipPop {
    0% {
        transform: scale(0.86) rotate(0deg);
    }
    45% {
        transform: scale(1.2) rotate(180deg);
    }
    75% {
        transform: scale(0.94) rotate(355deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

.spatial-logo-interactive-wrap.is-animating .spatial-badge-flipper {
    animation: coinFlipPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dock-nav-brand.is-animating .dock-logo-flipper {
    animation: dockFlipPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes dockFlipPop {
    0% {
        transform: scale(0.85);
    }
    50% {
        transform: scale(1.25) translateY(-2px);
    }
    75% {
        transform: scale(0.96);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

/* Preloader Brand Logo */
.preloader-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.85rem;
}

.preloader-brand-logo {
    height: clamp(40px, 8vw, 64px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
    animation: preloaderLogoGlow 2.5s ease-in-out infinite alternate;
}

@keyframes preloaderLogoGlow {
    from {
        transform: translateY(0);
        opacity: 0.92;
    }
    to {
        transform: translateY(-3px);
        opacity: 1;
    }
}

/* Spatial HUD Menu Top Logo */
.spatial-hud-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    margin-right: 0.65rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 6px rgba(198, 255, 0, 0.2));
}

/* Spatial Sidebar Brand Identity Card */
.spatial-hud-brand-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.spatial-hud-brand-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(198, 255, 0, 0.35);
}



.spatial-brand-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.spatial-brand-name {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.spatial-brand-desc {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Hero Brand Pill Badge */
.hero-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 0.85rem 0.35rem 0.45rem;
    background: rgba(10, 10, 10, 0.04);
    border: 1px solid rgba(10, 10, 10, 0.12);
    border-radius: 100px;
    margin-bottom: 1.75rem;
    transition: all 0.3s ease;
}

.hero-brand-pill:hover {
    border-color: var(--lime-dark);
    background: rgba(198, 255, 0, 0.1);
    transform: translateY(-1px);
}

.hero-brand-badge-img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-brand-pill-text {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Dark Horizon Watermark Logo Artwork */
.watermark-brand-artwork {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(280px, 55vw, 850px);
    height: auto;
    max-height: 70%;
    object-fit: contain;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 0 100px rgba(198, 255, 0, 0.15));
    transition: opacity 0.6s ease, transform 0.6s var(--ease-out-expo);
}

.watermark-yehh-giant:hover .watermark-brand-artwork {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.02);
}

.watermark-text-fallback {
    display: inline-block;
}

/* Footer Brand Logo Wrap */
.footer-logo-wrap {
    margin-bottom: 1.25rem;
    display: inline-block;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(198, 255, 0, 0.2));
    transition: transform 0.3s ease;
}

.footer-logo-wrap:hover .footer-logo-img {
    transform: scale(1.04);
}

/* Footer Monumental Giant Visual */
.footer-giant-brand-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -1rem;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.footer-giant-brand-logo {
    height: clamp(50px, 11vw, 120px);
    width: auto;
    object-fit: contain;
    opacity: 0.18;
    filter: drop-shadow(0 0 40px rgba(198, 255, 0, 0.25));
    transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.footer-giant-wordmark-wrap:hover .footer-giant-brand-logo {
    opacity: 0.5;
    transform: translateY(-4px) scale(1.03);
}

/* Responsive adjustments for mobile dock */
@media (max-width: 768px) {
    .dock-logo-flipper {
        height: 22px;
        width: 52px;
    }
    .dock-logo-flipper .dock-brand-logo {
        height: 22px;
        max-width: 52px;
    }
    .hero-brand-pill {
        margin-bottom: 1.25rem;
        padding: 0.3rem 0.75rem 0.3rem 0.4rem;
    }
    .hero-brand-badge-img {
        width: 22px;
        height: 22px;
    }
    .hero-brand-pill-text {
        font-size: 0.65rem;
    }
    .footer-logo-img {
        height: 32px;
    }
}

/* ==================== 26. HYPER-INTERACTIVE LIVING KINETIC ENGINE ==================== */

/* Refined Compact Hero Studio Identity Badge */
/* Refined Compact Hero Studio Identity Badge */
.hero-studio-badge {
    align-self: flex-start;
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.65rem;
    padding: 5px 14px 5px 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    margin-bottom: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    user-select: none;
    white-space: nowrap !important;
    transition: transform 0.25s var(--ease-bounce), border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-studio-badge:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--lime);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 16px rgba(198, 255, 0, 0.35);
    transform: translateY(-2px);
}

.badge-logo-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.badge-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.hero-studio-badge:hover .badge-logo-img {
    transform: rotate(360deg);
}

.badge-brand {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    line-height: 1;
}

.badge-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
}

.badge-tag {
    font-family: var(--font-mono);
    font-size: 0.67rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.badge-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
    margin-left: 0.15rem;
    flex-shrink: 0;
    animation: livePulseDot 2s ease-in-out infinite alternate;
}

@keyframes livePulseDot {
    0% { opacity: 0.35; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Monumental Infinite Kinetic Marquee */
.kinetic-infinite-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0A0A0A;
    color: #FFFFFF;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    user-select: none;
    cursor: default;
    z-index: 10;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marqueeScroll 28s linear infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.kinetic-infinite-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    padding-right: 2.25rem;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(0.88rem, 1.6vw, 1.22rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.marquee-item:hover {
    color: var(--lime);
}

.marquee-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(198, 255, 0, 0.1);
    border: 1px solid rgba(198, 255, 0, 0.35);
    color: var(--lime);
    font-size: 0.76rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(198, 255, 0, 0.15);
}

.marquee-sep {
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    font-weight: 700;
}

@keyframes marqueeScroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==================== PRECISION HUD RADAR COMPASS SYSTEM ==================== */
.radar-compass-stage {
    position: relative;
    width: clamp(320px, 42vw, 440px);
    height: clamp(320px, 42vw, 440px);
    margin: 3.5rem auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Concentric Distance Rings */
.radar-range-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(10, 10, 10, 0.08);
}

.radar-range-ring.ring-inner {
    width: 62%;
    height: 62%;
    border-style: dotted;
    opacity: 0.55;
}

.radar-range-ring.ring-outer {
    width: 86%;
    height: 86%;
    border-color: rgba(10, 10, 10, 0.06);
}

/* Concentric Sonar Pulse Expanding Waves */
.radar-sonar-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border: 1.5px solid var(--lime);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

.radar-sonar-wave.wave-1 {
    animation: sonarWavePulse 4s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.radar-sonar-wave.wave-2 {
    animation: sonarWavePulse 4s cubic-bezier(0.1, 0.8, 0.3, 1) infinite 2s;
}

@keyframes sonarWavePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.65);
        opacity: 0.75;
        box-shadow: 0 0 10px rgba(198, 255, 0, 0.4);
    }
    50% {
        opacity: 0.35;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.6);
        opacity: 0;
        box-shadow: 0 0 20px rgba(198, 255, 0, 0);
    }
}

/* 360-Degree Continuous Precision Radar Laser Scanner */
.radar-scan-donut {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
    animation: radarSweepSpin 4.5s linear infinite;
}

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

.radar-sweep-laser {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 2px;
    height: 50%;
    margin-left: -1px;
    transform-origin: 50% 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--lime) 35%, rgba(198, 255, 0, 0.4) 100%);
    box-shadow: 0 0 10px var(--lime), 0 0 20px rgba(198, 255, 0, 0.7);
    z-index: 2;
}

.radar-sweep-fan {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg 310deg,
        rgba(198, 255, 0, 0.03) 320deg,
        rgba(198, 255, 0, 0.15) 340deg,
        rgba(198, 255, 0, 0.5) 360deg
    );
}

/* Ping blips on beacons */
.radar-ping-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime-dark);
    display: inline-block;
    box-shadow: 0 0 8px var(--lime);
}

.radar-ping-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid var(--lime);
    animation: beaconRingPing 2s cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
}

@keyframes beaconRingPing {
    0% { transform: scale(0.6); opacity: 0.9; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* 3D Holographic Card Tilt & Specular Glare */
.tilt-card {
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.4, 1), box-shadow 0.25s ease;
}

.card-specular-glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(198, 255, 0, 0.14), transparent 60%);
    opacity: 0;
    mix-blend-mode: overlay;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.tilt-card:hover .card-specular-glare {
    opacity: 1;
}

/* Magnetic Interaction Elements */
.magnetic-item {
    display: inline-block;
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dynamic Click Shockwave Ripple Canvas / Element */
.click-shockwave-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--lime);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 1;
    z-index: 999999;
    box-shadow: 0 0 16px var(--lime);
    animation: shockwaveExpand 0.55s cubic-bezier(0.12, 0.8, 0.32, 1) forwards;
}

@keyframes shockwaveExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 1;
    }
    60% {
        opacity: 0.85;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
        border-width: 1px;
    }
}

.click-spark-particle {
    position: fixed;
    width: 5px;
    height: 5px;
    background: var(--lime);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    box-shadow: 0 0 8px var(--lime);
    animation: sparkFly 0.45s ease-out forwards;
}

@keyframes sparkFly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* ==================== 27. BI-DIRECTIONAL KINETIC SCROLL REVEAL ENGINE ==================== */
/* Base reveal hidden state */
.scroll-reveal,
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active in-view state */
.scroll-reveal.is-inview,
[data-reveal].is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Variations */
[data-reveal="scale"] {
    opacity: 0;
    transform: scale(0.94) translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="scale"].is-inview {
    opacity: 1;
    transform: scale(1) translateY(0);
}

[data-reveal="text"] {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="text"].is-inview {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

[data-reveal="left"] {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="left"].is-inview {
    opacity: 1;
    transform: translateX(0);
}

[data-reveal="right"] {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="right"].is-inview {
    opacity: 1;
    transform: translateX(0);
}

/* Cascading Stagger Delays */
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }



