/* ═══════════════════════════════════════════
   DESIGN SYSTEM & VARIABLES — "Deep Onyx" Palette
   ═══════════════════════════════════════════ */
:root {
    --bg-primary: #000000;
    --bg-elevated: #0a0a0a;
    --bg-surface: #111111;
    --text-primary: #f5f5f5;
    --text-secondary: #8a8a8a;
    --text-muted: #4a4a4a;
    --accent: #ffffff;
    --border-subtle: rgba(255, 255, 255, 0.04);
    --border-default: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.06) transparent;
}

html,
body {
    min-height: 100%;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Noise Grain Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
    mix-blend-mode: overlay;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
.font-syne {
    font-family: 'Bold', 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

h1 em,
h2 em,
h3 em,
h4 em,
.font-syne em {
    font-style: normal;
    color: var(--accent);
}

.uppercase-heavy {
    text-transform: uppercase;
    font-weight: 800;
}

.uppercase-tracking {
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.text-muted {
    color: var(--text-secondary);
    opacity: 0.7;
}

.text-xs {
    font-size: 10px;
    font-weight: 700;
}

/* ═══════════════════════════════════════════
   LAYOUT CONTAINERS & DECORATIONS
   ═══════════════════════════════════════════ */
.main-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    z-index: 10;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 64px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 96px;
    }
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

.hidden {
    display: none !important;
}

/* Ambient Gradient Orbs */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
}

.orb-top-right {
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 70%);
}

.orb-bottom-left {
    bottom: 100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Background Grid Lines */
.grid-lines-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.02;
}

.grid-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--accent);
}

.line-left {
    left: 8%;
}

.line-center {
    left: 50%;
}

.line-right {
    left: 92%;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero-section {
    position: relative;
    z-index: 10;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    background-color: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.top-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.top-label-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-logos-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-top-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.hero-top-logo:hover {
    transform: translateY(-1.5px);
}

.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: block;
    }
}

.hero-line-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-default) 15%, var(--border-default) 85%, transparent);
    margin-bottom: 48px;
    width: 100%;
}

.title-container {
    margin-bottom: 24px;
}

.main-title {
    font-size: clamp(3.2rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: var(--text-primary);
}

.hero-desc-row {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .hero-desc-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 64px;
    }
}

.max-w-xl {
    max-width: 576px;
}

.text-description {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.6;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .text-description {
        font-size: 18px;
    }
}

/* Scroll Hint */
.scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.2);
    align-self: flex-start;
}

.scroll-arrow {
    width: 14px;
    height: 14px;
    animation: arrow-bounce 2s infinite ease-in-out;
}

@keyframes arrow-bounce {

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

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

.scroll-text {
    letter-spacing: 0.4em;
}

/* Search Wrapper */
.search-wrapper {
    margin-top: 64px;
    max-width: 640px;
    position: relative;
}

.search-container-inner {
    position: relative;
    width: 100%;
}

.search-glow-effect {
    position: absolute;
    inset: -1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(4px);
    z-index: 1;
}

.search-input-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.5s ease;
    width: 18px;
    height: 18px;
}

.search-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-default);
    padding: 20px 24px 20px 56px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    outline: none;
    transition: all 0.5s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.search-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.04);
}

.search-container-inner:focus-within .search-glow-effect {
    opacity: 1;
}

.search-container-inner:focus-within .search-icon {
    color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════
   PIPELINE TABS SECTION
   ═══════════════════════════════════════════ */
.tabs-section {
    position: relative;
    z-index: 30;
    overflow: visible;
    padding-bottom: 32px;
}

.tabs-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.tabs-line {
    width: 48px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.tabs-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    background-color: transparent;
    border: none;
    padding: 16px 0;
    overflow: visible;
}

.tab-button {
    background-color: transparent !important;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    position: relative;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    flex: none;
}

.tab-title {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    transition: color 0.3s ease, font-weight 0.3s ease;
    position: relative;
    z-index: 2;
}

.tab-button:hover .tab-title {
    color: rgba(255, 255, 255, 0.85);
}

.tab-button.active .tab-title {
    color: #ffffff;
    font-weight: 900;
}

.tab-active-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 270px;
    height: 270px;
    background-image: url('selected.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    mix-blend-mode: screen;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.25s ease;
}

.tab-button.active .tab-active-circle {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ═══════════════════════════════════════════
   SIDE NAVIGATION (SCROLL-SPY)
   ═══════════════════════════════════════════ */
.content-section {
    position: relative;
    padding-top: 64px;
    min-height: 400px;
}

.side-navigation {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .side-navigation {
        display: flex;
        right: 32px;
    }
}

@media (min-width: 1200px) {
    .side-navigation {
        right: 48px;
    }
}

.side-nav-link {
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.side-nav-text {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.side-nav-line {
    width: 10px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.side-nav-link:hover {
    opacity: 0.8;
}

.side-nav-link:hover .side-nav-text {
    color: var(--accent);
}

.side-nav-link.active {
    opacity: 1;
}

.side-nav-link.active .side-nav-text {
    color: var(--accent);
}

.side-nav-link.active .side-nav-line {
    background-color: var(--accent);
    width: 18px;
}

/* ═══════════════════════════════════════════
   FAQ CATEGORIES & ACCORDIONS
   ═══════════════════════════════════════════ */
.faq-sections-wrapper {
    padding-bottom: 64px;
}

.category-section {
    margin-bottom: 96px;
    scroll-margin-top: 120px;
}

.category-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    margin-bottom: 48px;
    width: 100%;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 8px;
}

.category-title-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-icon-box {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    flex-shrink: 0;
}

.category-num-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.category-num {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.15em;
}

.category-num-line {
    width: 16px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .category-title {
        font-size: 28px;
    }
}

.category-article-count {
    display: none;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .category-article-count {
        display: block;
        margin-top: 14px;
    }
}

.category-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-left: 60px;
    margin-bottom: 32px;
    max-w-xl;
    line-height: 1.6;
    letter-spacing: -0.025em;
    opacity: 0.8;
}

/* Accordion Accord wrapper */
.accordion-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Accordion Item */
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.5s ease;
}

.accordion-item:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.accordion-item.open {
    background-color: rgba(255, 255, 255, 0.018);
}

.accordion-trigger {
    padding: 36px 16px;
    transition: padding 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 768px) {
    .accordion-trigger {
        padding: 52px 24px;
    }
}

.accordion-item.open .accordion-trigger {
    padding: 28px 16px;
}

@media (min-width: 768px) {
    .accordion-item.open .accordion-trigger {
        padding: 36px 24px;
    }
}

.accordion-grid-row {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .accordion-grid-row {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Left content panel: Q & A */
.accordion-left-panel {
    flex: 1;
    min-width: 0;
}

.question-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.question-index {
    font-size: 13px;
    font-weight: 800;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .question-index {
        font-size: 15px;
        margin-top: 8px;
    }
}

.accordion-item.open .question-index {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin-top: 4px;
}

.question-title {
    font-family: 'Bold', 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 768px) {
    .question-title {
        font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    }
}

.accordion-item:hover .question-title {
    color: rgba(255, 255, 255, 0.85);
}

.accordion-item.open .question-title {
    color: var(--accent);
    font-size: 18px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .accordion-item.open .question-title {
        font-size: 22px;
    }
}

/* Collapsible Answer Panel */
.answer-panel {
    height: 0;
    opacity: 0;
    overflow: hidden;
    will-change: height, opacity;
}

.answer-content {
    padding-top: 16px;
    padding-left: 0;
    max-width: 640px;
}

@media (min-width: 768px) {
    .answer-content {
        padding-left: 48px;
    }
}

.answer-text {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: -0.025em;
    opacity: 0.75;
}

@media (min-width: 768px) {
    .answer-text {
        font-size: 14px;
    }
}

/* Right media panel: Video */
.accordion-right-panel {
    width: 0%;
    height: 0;
    opacity: 0;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 0;
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        margin 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.4s ease;
}

.accordion-item.open .accordion-right-panel {
    width: 100%;
    height: auto;
    opacity: 1;
    margin-top: 32px;
}

@media (min-width: 1200px) {
    .accordion-right-panel {
        width: 0%;
        height: auto;
        margin-top: 0;
        margin-left: 0;
    }

    .accordion-item.open .accordion-right-panel {
        width: 50%;
        margin-left: 48px;
    }
}

/* Video Placeholder Container */
.video-frame-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transform: scale(0.7);
    border-radius: 24px;
    opacity: 0;
    will-change: transform, opacity, border-radius;
}

.video-element {
    width: 100%;
    height: 100%;
    object-cover: cover;
    display: block;
}

.video-placeholder-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.play-fallback-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.15);
}

.play-fallback-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.12);
}

/* ═══════════════════════════════════════════
   NO RESULTS COMPONENT
   ═══════════════════════════════════════════ */
.no-results-container {
    text-align: center;
    padding: 128px 0;
}

.no-results-text {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* ═══════════════════════════════════════════
   SUPPORT CONCIERGE FOOTER
   ═══════════════════════════════════════════ */
.footer-section {
    padding-bottom: 160px;
}

.concierge-box {
    position: relative;
    border: 1px solid var(--border-default);
    padding: 48px 24px;
    text-align: center;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.01);
}

@media (min-width: 768px) {
    .concierge-box {
        padding: 80px;
    }
}

.corner-bracket {
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: rgba(255, 255, 255, 0.15);
    border-style: solid;
    pointer-events: none;
}

.bracket-tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.bracket-tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.bracket-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.bracket-br {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}

.concierge-label {
    margin-bottom: 32px;
    font-weight: 700;
}

.concierge-text {
    font-size: 20px;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 48px;
}

@media (min-width: 768px) {
    .concierge-text {
        font-size: 24px;
    }
}

.concierge-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    border: 1px solid var(--border-default);
    font-size: 10px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    background-color: transparent;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.link-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.5s ease;
}

.concierge-link:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    transform: scale(1.05);
}

.concierge-link:hover .link-arrow {
    transform: translate(2px, -2px);
    color: var(--bg-primary);
}

/* ═══════════════════════════════════════════
   SCROLLBAR STYLES
   ═══════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER STYLES
   ═══════════════════════════════════════════ */
.header-right-action {
    display: flex;
    align-items: center;
}

.lang-switch {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Bold', 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.lang-switch-divider {
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════
   VIDEO HOVER & LIGHTBOX STYLES
   ═══════════════════════════════════════════ */
.video-frame-container {
    position: relative;
    cursor: pointer;
}

.video-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 8;
}

.video-frame-container:hover .video-hover-overlay {
    opacity: 1;
}

.video-frame-container.zoomed .video-hover-overlay {
    display: none !important;
}

.zoom-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-frame-container:hover .zoom-icon {
    transform: scale(1);
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0px);
}

.lightbox-overlay.active {
    pointer-events: auto;
}

.lightbox-close-area {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2005;
}

.lightbox-side-peek-container {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2005;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-side-peek-container.visible {
    opacity: 0.35;
    pointer-events: auto;
}

.lightbox-side-peek-container.visible:hover {
    opacity: 0.75;
}

.lightbox-side-peek-container.left {
    left: 4%;
    align-items: flex-start;
}

.lightbox-side-peek-container.right {
    right: 4%;
    align-items: flex-end;
}

.lightbox-side-peek-title {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.lightbox-side-peek {
    width: 280px;
    max-width: 20vw;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #080808;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.lightbox-side-peek-container:hover .lightbox-side-peek {
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.lightbox-side-peek-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.lightbox-side-peek-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-side-peek:hover .lightbox-side-peek-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.lightbox-title-box {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 2015;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lightbox-title-index-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#lightbox-title-index {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.lightbox-title-divider {
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-title-text {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
    #lightbox-title-index {
        font-size: 16px;
    }

    .lightbox-title-text {
        font-size: 32px;
    }
}

.lightbox-caption-box {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    z-index: 2015;
}

.lightbox-caption-text {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: -0.025em;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .lightbox-caption-text {
        font-size: 16px;
    }
}

.lightbox-close-button {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2020;
}

.lightbox-close-button:hover {
    color: #ffffff;
}

@media (max-width: 767px) {
    .lightbox-side-peek {
        display: none !important;
    }

    .lightbox-close-button {
        top: 16px;
        right: 16px;
    }
}

/* Footer Logos */
.footer-logos-section {
    padding: 60px 0 20px;
    background: #09090b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-row {
    display: flex;
    justify-content: flex-start;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
}

.footer-credit {
    color: var(--text-secondary);
    font-size: 10px;
    letter-spacing: 0.05em;
    opacity: 0.6;
    text-transform: uppercase;
}

.footer-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Stacking context promotion for zoomed video parents */
.bypass-stacking {
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
    z-index: auto !important;
}

/* Lenis Smooth Scroll Optimizations */
html.lenis,
html.lenis-smooth {
    scroll-behavior: auto !important;
}

html.lenis-smooth body {
    overflow-anchor: none;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-blocked {
    overflow: hidden;
}

/* Prevent iframes from capturing pointer-events during scroll */
.lenis.lenis-scrolling iframe {
    pointer-events: none !important;
}