html,
body {
    margin: 0;
    padding: 0;
}

:root {
    --dream-surface: #0d0d0d;
    --dream-surface-deep: #090909;
    --dream-stroke: #262626;
    --dream-accent: #38b9c4;
}

html {
    scroll-behavior: smooth;
}

html.crew-scroll-mode {
    scroll-behavior: auto;
}

body {
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    background-color: #000;
    background-image: none;
}

body.crew-page {
    overscroll-behavior-y: contain;
}

.crew-side-timeline {
    position: fixed;
    left: 3.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 45;
    align-items: center;
}

.crew-side-rail {
    position: relative;
    width: 1px;
    height: 320px;
}

.crew-side-track {
    position: relative;
    width: 1px;
    height: 320px;
    background: rgba(255, 255, 255, 0.3);
}

.crew-side-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0%;
    background: var(--dream-accent);
    transition: height 180ms linear;
}

.crew-side-points {
    position: absolute;
    inset: 0;
    display: block;
}

.crew-side-point {
    position: absolute;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.72rem;
    height: 0.72rem;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.crew-side-dot {
    display: block;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: #0b0b0b;
    transition: background-color 300ms ease, border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.crew-side-label {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a1a1aa;
    opacity: 0;
    transform: translateY(-50%) translateX(-5px);
    transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
    white-space: nowrap;
    pointer-events: none;
}

.crew-side-point:focus-visible .crew-side-dot,
.crew-side-point.is-active .crew-side-dot {
    background: var(--dream-accent);
    border-color: var(--dream-accent);
    transform: scale(1.16);
    box-shadow: 0 0 12px rgba(56, 185, 196, 0.45);
}

.crew-side-point:focus-visible .crew-side-label,
.crew-side-point.is-active .crew-side-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    color: #e4e4e7;
}

.crew-side-point:focus-visible {
    outline: none;
}

.crew-hero-line {
    opacity: 0;
}

.crew-line-left {
    animation: crewLineLeftIn 920ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.crew-line-left:nth-of-type(1) {
    animation-delay: 140ms;
}

.crew-line-left:nth-of-type(2) {
    animation-delay: 340ms;
}

.crew-line-left:nth-of-type(3) {
    animation-delay: 540ms;
}

.crew-line-up {
    animation: crewLineUpIn 1050ms cubic-bezier(0.22, 1, 0.36, 1) 760ms both;
}

.site-navbar {
    left: 0;
    top: 0;
    z-index: 30;
    width: 100%;
    transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
    border-bottom: 1px solid transparent;
}

.site-navbar.in-hero {
    position: absolute;
    top: 26px;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.site-navbar.is-scrolled {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    animation: navSlideDown 240ms ease-out;
}

.nav-link {
    position: relative;
    color: #e5e7eb;
    transition: color 220ms ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

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

.nav-link:hover::after {
    background: var(--dream-accent);
    transform: scaleX(1);
}

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

.nav-link.active::after {
    background: var(--dream-accent);
    transform: scaleX(1);
}

@keyframes navSlideDown {
    from {
        transform: translateY(-14px);
        opacity: 0.85;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-wrap {
    position: relative;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

#about-us {
    position: relative;
}

#about-us::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -120px;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.45) 62%,
        #000 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo-link {
    transition: transform 0.25s ease;
}

.logo-link:hover {
    transform: translateY(-3px) scale(1.02);
}

.hero-logo-intro {
    animation: heroLogoIn 1650ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
    will-change: transform, opacity, filter;
}

.hero-tagline-intro {
    animation: heroTaglineIn 1550ms cubic-bezier(0.22, 1, 0.36, 1) 460ms both;
    will-change: transform, opacity, filter;
}

.hero-tagline .hero-word {
    display: inline-block;
    color: #ffffff;
    transition: color 520ms ease, text-shadow 520ms ease;
}

.hero-tagline .hero-word.is-active {
    color: var(--dream-accent);
    text-shadow:
        0 0 10px rgba(56, 185, 196, 0.55),
        0 0 24px rgba(56, 185, 196, 0.35);
}

.hero-dot {
    color: rgba(255, 255, 255, 0.92);
    margin-right: 0.12em;
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 82px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
}

.section-shell {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.reveal-item {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(4px);
    transition: opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 780ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 780ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

[data-parallax-wrap] {
    isolation: isolate;
}

.parallax-layer {
    transform: translate3d(0, 0, 0) scale(1.22);
    transform-origin: center;
    will-change: transform;
}

.section-title-primary {
    font-size: clamp(2rem, 3.2vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.018em;
    text-transform: uppercase;
    color: #e4e4e7;
    line-height: 0.98;
}

.section-title-secondary {
    font-size: clamp(1.45rem, 2.1vw, 2.6rem);
    font-weight: 300;
    letter-spacing: 0.016em;
    text-transform: uppercase;
    color: #d4d4d8;
    line-height: 1;
}

.section-title-strong {
    font-weight: 800;
    color: #fff;
}

.dream-card {
    border: 1px solid var(--dream-stroke);
    background: #0b0b0b;
    background-image: none;
}

.card-hover {
    transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.card-hover:hover {
    border-color: var(--dream-accent);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.card-media {
    transition: transform 420ms ease;
    will-change: transform;
}

.card-hover:hover .card-media {
    transform: scale(1.03);
}

.dream-card-divider {
    border-color: var(--dream-stroke);
}

.role-toggle .role-title,
.role-toggle .role-icon {
    transition: color 300ms ease, text-shadow 300ms ease;
}

.role-toggle:hover .role-title,
.role-toggle:hover .role-icon {
    color: var(--dream-accent);
}

.role-toggle[aria-expanded="true"] .role-title,
.role-toggle[aria-expanded="true"] .role-icon {
    color: var(--dream-accent);
    text-shadow: 0 0 16px rgba(56, 185, 196, 0.22);
}

.faq-toggle .faq-title,
.faq-toggle .faq-icon {
    transition: color 300ms ease, text-shadow 300ms ease;
}

.faq-toggle:hover .faq-title,
.faq-toggle:hover .faq-icon {
    color: var(--dream-accent);
}

.faq-toggle[aria-expanded="true"] .faq-title,
.faq-toggle[aria-expanded="true"] .faq-icon {
    color: var(--dream-accent);
    text-shadow: 0 0 16px rgba(56, 185, 196, 0.22);
}

.insight-tile {
    border: 1px solid var(--dream-stroke);
    background: #0b0b0b;
    background-image: none;
    transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.insight-tile img {
    cursor: zoom-in;
    transition: transform 420ms ease, filter 320ms ease;
    filter: saturate(0.92) brightness(0.9);
}

.insight-tile:hover {
    border-color: var(--dream-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.insight-tile:hover img {
    transform: scale(1.03);
    filter: saturate(1) brightness(0.95);
}

.insight-lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(6px);
}

.insight-lightbox.hidden {
    display: none;
}

.insight-lightbox-frame {
    width: min(92vw, 1400px);
    max-height: 88vh;
    border: 1px solid var(--dream-stroke);
    background: #090909;
    overflow: hidden;
}

.insight-lightbox-image {
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    display: block;
}

.insight-lightbox-close {
    position: absolute;
    right: 1.2rem;
    top: 1rem;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid var(--dream-stroke);
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: border-color 300ms ease, color 300ms ease;
}

.insight-lightbox-close:hover {
    border-color: var(--dream-accent);
    color: var(--dream-accent);
}

.dream-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 1rem;
    height: 1rem;
    margin-top: 0.1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: #0b0b0b;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    transition: border-color 260ms ease, background-color 260ms ease, box-shadow 260ms ease;
}

.dream-checkbox::before {
    content: "";
    width: 0.56rem;
    height: 0.56rem;
    transform: scale(0);
    transition: transform 180ms ease;
    clip-path: polygon(14% 44%, 0 62%, 42% 100%, 100% 16%, 82% 0, 40% 62%);
    background: #fff;
}

.dream-checkbox:checked {
    border-color: var(--dream-accent);
    background: var(--dream-accent);
    box-shadow: 0 0 12px rgba(56, 185, 196, 0.28);
}

.dream-checkbox:checked::before {
    transform: scale(1);
}

.dream-checkbox:focus-visible {
    outline: none;
    border-color: var(--dream-accent);
    box-shadow: 0 0 0 2px rgba(56, 185, 196, 0.2);
}

.head-quote-toggle {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.head-quote-toggle:focus,
.head-quote-toggle:focus-visible {
    outline: none;
    box-shadow: none;
}

.head-quote-card .card-media {
    filter: saturate(0.9) brightness(0.9);
    transition: transform 420ms ease, filter 320ms ease;
}

.head-quote-visual {
    position: relative;
    overflow: hidden;
}

.head-quote-overlay {
    background: rgba(0, 0, 0, 0.78);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 420ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.head-quote-card.is-quote-open .card-media {
    filter: saturate(0.55) brightness(0.58) contrast(1.03);
}

.head-quote-card.is-quote-open .head-quote-overlay {
    background: rgba(0, 0, 0, 0.84);
}

.head-quote-card.is-quote-open .head-quote-overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.head-quote-card.card-hover:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--dream-accent);
}

.head-quote-card:not(.is-quote-open).card-hover:hover .card-media {
    transform: scale(1.03);
}

.head-quote-card.is-quote-open .card-media {
    transform: scale(1);
}

.readmore-link {
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: color 0.25s ease;
    z-index: 0;
}

.readmore-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #38b9c4;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
    z-index: -1;
}

.readmore-link:hover {
    color: #fff;
}

.readmore-link:hover::before {
    transform: scaleX(1);
}

.readmore-link .readmore-line {
    display: inline-block;
    width: 1px;
    height: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
}

.film-detail-tab {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 260ms ease, background-color 260ms ease;
}

.film-detail-tab:hover {
    color: #fff;
    background: rgba(56, 185, 196, 0.9);
}

.film-detail-tab.is-active {
    color: #fff;
    background: rgba(56, 185, 196, 0.9);
}

.film-detail-panel.is-entering [data-film-panel-card] {
    animation: filmDetailCardIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--film-card-index, 0) * 70ms);
    will-change: opacity, transform, filter;
}

@keyframes filmDetailCardIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

.film-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
}

.film-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.film-gallery-control:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.15);
}

.news-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.partner-logo {
    opacity: 0.9;
    filter: grayscale(1) brightness(1.3) contrast(1.05);
    transition: transform 300ms ease, filter 300ms ease, opacity 300ms ease;
}

.group:hover .partner-logo {
    transform: scale(1.05);
    filter: grayscale(0) brightness(1.05);
    opacity: 0.9;
}

.cta-rain-banner {
    min-height: 300px;
    background: #000;
}

.cta-rain-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    --c: #38b9c4;
    background-color: #000;
    background-image: radial-gradient(4px 100px at 0px 235px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 235px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 117.5px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 252px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 252px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 126px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 150px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 150px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 75px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 253px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 253px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 126.5px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 204px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 204px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 102px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 134px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 134px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 67px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 179px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 179px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 89.5px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 299px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 299px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 149.5px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 215px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 215px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 107.5px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 281px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 281px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 140.5px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 158px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 158px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 79px, var(--c) 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 210px, var(--c), #0000),
        radial-gradient(4px 100px at 300px 210px, var(--c), #0000),
        radial-gradient(1.5px 1.5px at 150px 105px, var(--c) 100%, #0000 150%);
    background-size:
        300px 235px,
        300px 235px,
        300px 235px,
        300px 252px,
        300px 252px,
        300px 252px,
        300px 150px,
        300px 150px,
        300px 150px,
        300px 253px,
        300px 253px,
        300px 253px,
        300px 204px,
        300px 204px,
        300px 204px,
        300px 134px,
        300px 134px,
        300px 134px,
        300px 179px,
        300px 179px,
        300px 179px,
        300px 299px,
        300px 299px,
        300px 299px,
        300px 215px,
        300px 215px,
        300px 215px,
        300px 281px,
        300px 281px,
        300px 281px,
        300px 158px,
        300px 158px,
        300px 158px,
        300px 210px,
        300px 210px,
        300px 210px;
    animation: ctaRainShift 150s linear infinite;
}

.cta-rain-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    backdrop-filter: blur(1em) brightness(2.5);
    background-image: radial-gradient(
        circle at 50% 50%,
        #0000 0,
        #0000 2px,
        hsl(0 0% 4%) 2px
    );
    background-size: 8px 8px;
}

@keyframes ctaRainShift {
    0% {
        background-position:
            0px 220px, 3px 220px, 151.5px 337.5px, 25px 24px, 28px 24px, 176.5px 150px, 50px 16px, 53px 16px, 201.5px 91px,
            75px 224px, 78px 224px, 226.5px 350.5px, 100px 19px, 103px 19px, 251.5px 121px, 125px 120px, 128px 120px,
            276.5px 187px, 150px 31px, 153px 31px, 301.5px 120.5px, 175px 235px, 178px 235px, 326.5px 384.5px,
            200px 121px, 203px 121px, 351.5px 228.5px, 225px 224px, 228px 224px, 376.5px 364.5px, 250px 26px, 253px 26px,
            401.5px 105px, 275px 75px, 278px 75px, 426.5px 180px;
    }
    to {
        background-position:
            0px 6800px, 3px 6800px, 151.5px 6917.5px, 25px 13632px, 28px 13632px, 176.5px 13758px, 50px 5416px, 53px 5416px,
            201.5px 5491px, 75px 17175px, 78px 17175px, 226.5px 17301.5px, 100px 5119px, 103px 5119px, 251.5px 5221px,
            125px 8428px, 128px 8428px, 276.5px 8495px, 150px 9876px, 153px 9876px, 301.5px 9965.5px, 175px 13391px,
            178px 13391px, 326.5px 13540.5px, 200px 14741px, 203px 14741px, 351.5px 14848.5px, 225px 18770px, 228px 18770px,
            376.5px 18910.5px, 250px 5082px, 253px 5082px, 401.5px 5161px, 275px 6375px, 278px 6375px, 426.5px 6480px;
    }
}

@keyframes heroLogoIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 56px, 0) scale(0.94);
        filter: blur(14px);
    }
    62% {
        opacity: 1;
        transform: translate3d(0, -2px, 0) scale(1.005);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroTaglineIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 36px, 0);
        filter: blur(10px);
    }
    65% {
        opacity: 1;
        transform: translate3d(0, -1px, 0);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes crewLineLeftIn {
    from {
        opacity: 0;
        transform: translate3d(-56px, 0, 0);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes crewLineUpIn {
    from {
        opacity: 0;
        transform: translate3d(0, 46px, 0);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

.hero-scroll-mouse {
    width: 20px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    animation: scrollDotMove 1.8s ease-in-out infinite;
}

@keyframes scrollDotMove {
    0% {
        transform: translateY(0);
        opacity: 0.95;
    }
    65% {
        transform: translateY(12px);
        opacity: 0.25;
    }
    100% {
        transform: translateY(0);
        opacity: 0.95;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-item {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .parallax-layer {
        transform: none !important;
    }

    .hero-logo-intro,
    .hero-tagline-intro {
        animation: none;
    }

    .crew-hero-line,
    .crew-line-left,
    .crew-line-up {
        animation: none;
        opacity: 1;
    }

    .card-hover,
    .card-media {
        transition: none;
    }

    .card-hover:hover {
        transform: none;
        box-shadow: none;
    }

    .hero-scroll-dot {
        animation: none;
    }
}

@media (min-width: 768px) {
    .section-shell {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
