:root {
    --bg: #01040a;
    --text: #ffffff;
}

.light {
    --bg: #f5f7f9;
    --text: #01040a;
}

html {
    scroll-behavior: auto;
}

body {
    background-color: var(--bg);
    color: var(--text);
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* SECTION INDICATOR */
#section-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#section-indicator.visible {
    opacity: 1;
    pointer-events: auto;
}

.dot-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.dot-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--text);
}

.dot-wrapper:hover .dot-label,
.dot-wrapper.active .dot-label {
    opacity: 0.6;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(128, 128, 128, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot-wrapper.active .dot {
    background: #45c1ff;
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(69, 193, 255, 0.5);
}

/* NAV */
.glass-nav {
    backdrop-filter: blur(15px);
    background: rgba(1, 4, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.light .glass-nav {
    background: rgba(245, 247, 249, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* HERO BG FIXED */
.hero-bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dark .hero-bg-fixed {
    opacity: 0.28;
}

.light .hero-bg-fixed {
    opacity: 1;
}

/* WATER DRIP CURSOR */
.cursor-main {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    backdrop-filter: blur(2px);
    background: rgba(69, 193, 255, 0.9);
    box-shadow: 0 0 35px 12px rgba(69, 193, 255, 0.5), inset 0 0 3px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cursor-trail {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    background: rgba(69, 193, 255, 0.4);
    box-shadow: 0 0 20px 5px rgba(69, 193, 255, 0.4);
}

.cursor-ripple {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    border: 2px solid rgba(69, 193, 255, 0.4);
    background: rgba(69, 193, 255, 0.05);
}

.light .cursor-main {
    background: rgba(255, 75, 58, 0.95);
    box-shadow: 0 0 35px 12px rgba(255, 107, 53, 0.4), inset 0 0 3px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.light .cursor-trail {
    background: rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 20px 5px rgba(255, 107, 53, 0.3);
}

.light .cursor-ripple {
    border: 2px solid rgba(255, 75, 58, 0.4);
    background: rgba(255, 107, 53, 0.08);
}

@media (max-width: 768px) {

    .cursor-main,
    .cursor-trail,
    .cursor-ripple {
        display: none;
    }
}

/* BENTO GRID */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

.featured-card {
    grid-column: span 2;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    display: flex;
}

@media (max-width: 640px) {
    .featured-card {
        grid-column: span 1;
    }
}

.featured-card .feature-img-wrap {
    width: 50%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .featured-card .feature-img-wrap {
        display: none;
    }
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.featured-card:hover .feature-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.bottom-card-small {
    grid-column: span 1;
    border-radius: 18px;
    min-height: 160px;
    overflow: hidden;
    position: relative;
}

.bottom-card-wide {
    grid-column: span 2;
    border-radius: 18px;
    min-height: 160px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 640px) {

    .bottom-card-small,
    .bottom-card-wide {
        grid-column: span 1;
    }
}

.horizontal-container {
    display: flex;
    height: 100vh;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.horizontal-panel {
    width: 100vw;
    min-width: 100vw;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.horizontal-panel .panel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.dark .horizontal-panel .panel-bg {
    opacity: 1;
    filter: brightness(1.1);
}

.light .horizontal-panel .panel-bg {
    opacity: 1;
    filter: brightness(1);
}

.horizontal-panel .panel-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dark .horizontal-panel .panel-overlay {
    background: linear-gradient(135deg, rgba(1, 4, 10, 0.85) 0%, rgba(1, 4, 10, 0.5) 100%);
}

.light .horizontal-panel .panel-overlay {
    background: linear-gradient(135deg, rgba(245, 247, 249, 0.3) 0%, rgba(245, 247, 249, 0.1) 100%);
}

.horizontal-panel .panel-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .horizontal-panel .panel-content {
        padding: 0 96px;
    }
}

.panel-year {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.dark .panel-year {
    color: #ffffff;
}

.light .panel-year {
    color: #01040a;
}

.panel-title {
    font-size: clamp(16px, 2.5vw, 28px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 12px;
}

.panel-desc {
    font-size: clamp(12px, 1.2vw, 16px);
    max-width: 420px;
    margin-top: 12px;
    line-height: 1.6;
}

.dark .panel-desc {
    color: rgba(255, 255, 255, 0.5);
}

.light .panel-desc {
    color: rgba(0, 0, 0, 0.5);
}

.panel-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.dark .panel-tag {
    background: rgba(69, 193, 255, 0.1);
    color: #45c1ff;
    border: 1px solid rgba(69, 193, 255, 0.2);
}

.light .panel-tag {
    background: rgba(46, 102, 212, 0.1);
    color: #2e66d4;
    border: 1px solid rgba(46, 102, 212, 0.2);
}

.panel-divider {
    width: 60px;
    height: 3px;
    margin-top: 20px;
    background: linear-gradient(90deg, #45c1ff, #2e66d4);
    border-radius: 2px;
}

/* JOURNEY RESPONSIVE FIX */
@media (max-width: 768px) {
    .horizontal-panel {
        align-items: flex-end;
        padding-bottom: 80px;
    }

    .panel-year {
        font-size: clamp(48px, 15vw, 80px);
    }

    .panel-title {
        font-size: clamp(14px, 4vw, 20px);
    }

    .panel-desc {
        font-size: clamp(11px, 3vw, 14px);
        max-width: 90vw;
    }

    .panel-tag {
        font-size: 9px;
        letter-spacing: 0.2em;
    }
}

@media (max-width: 480px) {
    .horizontal-panel .panel-content {
        padding: 0 16px;
    }

    .panel-year {
        font-size: clamp(40px, 14vw, 64px);
    }

    .panel-desc {
        max-width: 85vw;
        line-height: 1.5;
    }

    .journey-progress {
        left: 16px;
        right: 16px;
        bottom: 24px;
    }
}

/* FOOTER - DARK MODE FIX */
.nock-footer {
    position: relative;
    padding: 120px 0 60px 0;
    overflow: hidden;
}

.dark .nock-footer {
    background: linear-gradient(180deg, #030711 0%, #01040a 100%);
    color: #ffffff;
}

.light .nock-footer {
    background: #fdfdfe;
    color: #01040a;
}

.dark .nock-footer a {
    color: rgba(255, 255, 255, 0.7);
}

.dark .nock-footer a:hover {
    color: #45c1ff;
}

.light .nock-footer a {
    color: rgba(0, 0, 0, 0.6);
}

.light .nock-footer a:hover {
    color: #2e66d4;
}

.dark .nock-footer .footer-heading {
    color: #ffffff;
}

.dark .nock-footer .footer-sub {
    color: rgba(255, 255, 255, 0.4);
}

.light .nock-footer .footer-heading {
    color: #01040a;
}

.light .nock-footer .footer-sub {
    color: rgba(0, 0, 0, 0.4);
}

.footer-bg-text {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32vw;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
    text-transform: lowercase;
}

.dark .footer-bg-text {
    color: rgba(255, 255, 255, 0.03);
}

.light .footer-bg-text {
    color: rgba(0, 0, 0, 0.03);
}

/* Footer status badge */
.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* SECTOR CAROUSEL */
.sector-carousel-viewport {
    position: relative;
    width: 100%;
    height: 520px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .sector-carousel-viewport {
        height: 460px;
    }
}

@media (max-width: 480px) {
    .sector-carousel-viewport {
        height: 400px;
    }
}

.sector-carousel-card {
    position: absolute;
    width: 420px;
    height: 500px;
    will-change: transform, opacity;
    transform-origin: center center;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .sector-carousel-card {
        width: 340px;
        height: 430px;
    }
}

@media (max-width: 480px) {
    .sector-carousel-card {
        width: 290px;
        height: 370px;
    }
}

/* SECTOR CARDS - tilt effect */
a.sector-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.sector-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: box-shadow 0.4s ease;
    transform-style: preserve-3d;
    perspective: 800px;
    width: 100%;
    height: 100%;
}

.sector-card-inner {
    width: 100%;
    height: 100%;
    padding: 32px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sector-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .sector-card-img {
    opacity: 0.6;
    filter: grayscale(100%) brightness(0.9);
}

.light .sector-card-img {
    opacity: 0.85;
    filter: grayscale(100%) brightness(1);
}

.sector-card:hover .sector-card-img {
    opacity: 1 !important;
    filter: grayscale(0%) brightness(1.1) !important;
    transform: scale(1.1);
}

.sector-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 16px;
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.dark .sector-card::after {
    background: linear-gradient(180deg, transparent 40%, rgba(1, 4, 10, 0.8) 100%);
    opacity: 1;
}

.light .sector-card::after {
    background: linear-gradient(180deg, transparent 40%, rgba(245, 247, 249, 0.5) 100%);
    opacity: 1;
}

.sector-card .card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(69, 193, 255, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

.sector-card:hover .card-glow {
    opacity: 1;
}

/* Sector carousel scroll hint */
.sector-scroll-hint {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

/* FEATURED SLIDESHOW */
.featured-card {
    position: relative;
    overflow: hidden;
}

.feature-slide {
    display: flex;
    width: 100%;
    min-height: 320px;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform, opacity;
}

.feature-slide.is-active {
    position: relative;
}

.slide-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slide-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark .slide-dot {
    background: rgba(255, 255, 255, 0.25);
}

.light .slide-dot {
    background: rgba(0, 0, 0, 0.2);
}

.slide-dot.active {
    width: 24px;
    border-radius: 3px;
    background: #45c1ff;
}

.slide-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #45c1ff, #2e66d4);
    z-index: 10;
    width: 0%;
}

/* Scroll-linked fade */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(60px);
}

/* About section text reveal line */
.text-reveal-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #45c1ff, #2e66d4);
    transition: width 0.8s ease;
}

/* News card shimmer */
.shimmer-border {
    position: relative;
}

.shimmer-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 19px;
    background: linear-gradient(90deg, transparent, rgba(69, 193, 255, 0.2), transparent);
    background-size: 200% 100%;
    z-index: -1;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Journey progress bar */
.journey-progress {
    position: absolute;
    bottom: 40px;
    left: 24px;
    right: 24px;
    height: 2px;
    z-index: 10;
}

@media (min-width: 768px) {
    .journey-progress {
        left: 96px;
        right: 96px;
    }
}

.journey-progress-bg {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.dark .journey-progress-bg {
    background: rgba(255, 255, 255, 0.1);
}

.light .journey-progress-bg {
    background: rgba(0, 0, 0, 0.1);
}

.journey-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    background: linear-gradient(90deg, #45c1ff, #2e66d4);
}

/* Email icon hover glow */
.email-icon-btn {
    position: relative;
    overflow: hidden;
}

.email-icon-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(69, 193, 255, 0.15);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.email-icon-btn:hover::after {
    transform: scale(1);
}

/* Magnetic button */
.magnetic-btn {
    transition: transform 0.3s ease;
}

/* Scroll indicator */
@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.animate-scroll-wheel {
    animation: scroll-wheel 1.5s infinite;
}

/* =============== PIXEL TYPOGRAPHY =============== */
.pixel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.dark .pixel-title {
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.pixel-accent {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05em;
}

.pixel-gradient {
    background: linear-gradient(135deg, #45c1ff 0%, #2e66d4 50%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* =============== SECTION-TITLE SLIDE (scroll-linked) =============== */
.section-title-slide {
    opacity: 0;
    transform: translateX(-90px);
    will-change: transform, opacity;
}

.section-title-sub {
    opacity: 0;
    transform: translateX(-60px);
    will-change: transform, opacity;
}

/* =============== CONTRAST BUMPS =============== */
/* Make small descriptive text readable in both themes */
.dark .panel-desc {
    color: rgba(255, 255, 255, 0.72);
}

.light .panel-desc {
    color: rgba(0, 0, 0, 0.68);
}

.dark .nock-footer .footer-sub {
    color: rgba(255, 255, 255, 0.68);
}

.light .nock-footer .footer-sub {
    color: rgba(0, 0, 0, 0.62);
}

/* Hero title polish */
#hero-title {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

#hero-title .italic-pixel {
    font-style: normal;
    background: linear-gradient(135deg, #45c1ff, #2e66d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.light #hero-title .italic-pixel {
    background: linear-gradient(135deg, #2e66d4, #0d47a1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* =============== IMPROVED SECTOR CARDS =============== */
.sector-card-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(69, 193, 255, 0.25);
    background: rgba(69, 193, 255, 0.08);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.light .sector-card-tag {
    border: 1px solid rgba(46, 102, 212, 0.25);
    background: rgba(46, 102, 212, 0.08);
}

.sector-card-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    backdrop-filter: blur(10px);
    background: rgba(69, 193, 255, 0.12);
    border: 1px solid rgba(69, 193, 255, 0.3);
    color: #45c1ff;
    font-size: 16px;
}

.light .sector-card-icon {
    background: rgba(46, 102, 212, 0.12);
    border: 1px solid rgba(46, 102, 212, 0.3);
    color: #2e66d4;
}

.dark .sector-card {
    background: linear-gradient(145deg, rgba(13, 17, 23, 0.6), rgba(1, 4, 10, 0.9));
}

.light .sector-card {
    background: linear-gradient(145deg, #ffffff, #eef2f7);
}

/* sector progress dots */
.sector-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.sector-progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(128, 128, 128, 0.3);
    transition: all 0.3s ease;
}

.sector-progress-dot.active {
    background: #45c1ff;
    width: 24px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(69, 193, 255, 0.5);
}

/* =============== FOOTER BADGE + HOVER TWEAKS =============== */
.footer-cta-btn {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.02em;
}

/* Responsive fine-tune for pixel titles so they don't chunk-out on phones */
@media (max-width: 640px) {
    .pixel-title {
        letter-spacing: 0;
    }

    #hero-title {
        line-height: 0.95;
    }
}

/* Light mode panel desc parallax/overlay was too faint — bump overlay */
.light .horizontal-panel .panel-overlay {
    background: linear-gradient(135deg, rgba(245, 247, 249, 0.75) 0%, rgba(245, 247, 249, 0.4) 100%);
}

/* VIDEO MODAL */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 90vw;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.video-modal-overlay.active .video-modal-content {
    transform: scale(1);
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* MOBILE MENU */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    backdrop-filter: blur(20px);
    background: rgba(1, 4, 10, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.light .mobile-menu-overlay {
    background: rgba(245, 247, 249, 0.95);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-overlay a {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    padding: 12px 0;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.mobile-menu-overlay a:hover {
    opacity: 1;
    color: #45c1ff;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.light .mobile-menu-close {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* NAV DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    background: rgba(1, 4, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateX(-50%) translateY(-6px);
    z-index: 500;
    display: flex;
    flex-direction: column;
}

.light .nav-dropdown-menu {
    background: rgba(245, 247, 249, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown-menu a {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: none;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    opacity: 1;
    color: #45c1ff;
    background: rgba(69, 193, 255, 0.08);
}

/* Active nav link */
.nav-link-active {
    opacity: 1 !important;
    color: #45c1ff !important;
}

.light .nav-link-active {
    color: #2e66d4 !important;
}