/*
   Nova Taurus
   Race Link Live page
   Aligned with skunkworks homepage system
*/

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #090a0c;
    --bg-secondary: #0f1114;
    --bg-card: #14181d;
    --bg-card-hover: #1a1f25;

    --text-primary: #eceef1;
    --text-secondary: #a5adb8;
    --text-muted: #6a7380;

    --accent: #ff6b00;
    --accent-soft: rgba(255, 107, 0, 0.1);
    --accent-strong: rgba(255, 107, 0, 0.22);

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);

    --font-body: 'Manrope', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;

    --container: 1140px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease;
}

.nav.scrolled {
    background: rgba(9, 10, 12, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: var(--border);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.9rem clamp(1.25rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent);
}

.logo-sub {
    font-size: 0.63em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.logo-sm {
    font-size: 1.02rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.show-mobile {
    display: none !important;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--text-primary);
    transition: all 0.25s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 0.4rem 0 1.1rem;
}

.mobile-link {
    display: block;
    padding: 0.8rem clamp(1.25rem, 5vw, 3rem);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.mobile-cta {
    margin: 0.75rem clamp(1.25rem, 5vw, 3rem) 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.7rem 1.35rem;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #090909;
    box-shadow: 0 0 20px var(--accent-soft);
}

.btn-primary:hover {
    background: #ea6200;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--accent-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.04);
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.76rem;
}

.btn-full {
    width: 100%;
}

/* ===== COMMON ===== */
.section {
    padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-header {
    max-width: 760px;
    margin-bottom: 2.4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.95rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.72rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 0.9rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6.2rem 0 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.carbon-texture {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
    opacity: 0.58;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 78% 58% at 70% 40%, rgba(255, 107, 0, 0.08) 0%, transparent 72%),
        linear-gradient(to top, var(--bg-primary) 0%, transparent 52%),
        linear-gradient(to bottom, rgba(9, 10, 12, 0.42) 0%, transparent 32%);
}

.dust-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dust-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.32);
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(40px);
        opacity: 0;
    }
}

.hero-image-area {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-image-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--bg-primary) 0%, rgba(9, 10, 12, 0.74) 34%, rgba(9, 10, 12, 0.52) 58%, rgba(9, 10, 12, 0.64) 100%);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 2.1rem;
    align-items: end;
    padding-bottom: 2rem;
}

.hero-content {
    max-width: 740px;
}

.hero-tag-line {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1rem;
}

.tag-dash {
    width: 38px;
    height: 2px;
    background: var(--accent);
}

.tag-text {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 0.95;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.hero-tag-sub {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.72;
    margin-bottom: 1.5rem;
    max-width: 640px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.hero-cta-note {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.hero-brief {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.06), rgba(20, 24, 29, 0.92));
    border-radius: 12px;
    padding: 1.35rem;
    max-width: 410px;
    justify-self: end;
}

.brief-kicker {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.brief-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.brief-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
}

.brief-list li {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.55;
    padding: 0.35rem 0 0.35rem 0.95rem;
    position: relative;
}

.brief-list li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    left: 0;
    top: 0.82rem;
}

.hero-hud {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.7rem;
    padding: 1.1rem 1.2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(9, 10, 12, 0.78);
}

@supports (backdrop-filter: blur(8px)) {
    .hero-hud {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.hud-item {
    text-align: center;
}

.hud-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.hud-value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.hud-divider {
    width: 1px;
    height: 26px;
    background: var(--border-strong);
}

/* ===== PRESS BAR ===== */
.press-bar {
    padding: 2.2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.press-bar-header {
    max-width: 780px;
    margin: 0 auto 1rem;
    text-align: center;
}

.press-bar-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0.55rem;
}

.press-bar-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.press-release-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.95rem;
    margin-bottom: 0;
}

.press-release-link {
    font-family: var(--font-display);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: rgba(236, 238, 241, 0.35);
    text-underline-offset: 0.2em;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.press-release-link:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

.press-release-source {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.25s ease;
}

.press-release-source:hover {
    color: var(--text-primary);
}

.press-release-meta {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .press-bar-note {
        font-size: 0.84rem;
    }

    .press-release-meta {
        flex-basis: 100%;
        text-align: center;
    }

    .press-release-link {
        font-size: 0.9rem;
    }

    .press-release-source {
        font-size: 0.68rem;
    }
}

/* ===== FIELD PROOF ===== */
.field-proof {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.proof-story,
.proof-panel {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.45rem;
}

.proof-title {
    font-family: var(--font-display);
    font-size: 1.03rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.proof-story p {
    font-size: 0.91rem;
    color: var(--text-secondary);
    line-height: 1.68;
    margin-bottom: 0.85rem;
}

.proof-story p:last-child {
    margin-bottom: 0;
}

.proof-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 0.7rem;
}

.proof-list li {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0.4rem 0 0.4rem 0.95rem;
    position: relative;
}

.proof-list li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    left: 0;
    top: 0.9rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.4rem;
}

.metric-kicker {
    display: inline-block;
    margin-bottom: 0.7rem;
    font-family: var(--font-display);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--accent);
}

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.65rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.metric-desc {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.proof-note {
    margin-top: 0.85rem;
    font-size: 0.77rem;
    color: var(--text-muted);
}

.proof-actions {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ===== ARCHITECTURE ===== */
.architecture {
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.architecture-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.4rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.architecture-card:hover {
    border-color: rgba(255, 107, 0, 0.33);
    transform: translateY(-2px);
}

.architecture-label {
    font-family: var(--font-display);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.55rem;
}

.architecture-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.architecture-card p {
    font-size: 0.87rem;
    color: var(--text-secondary);
    line-height: 1.62;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover {
    border-color: rgba(255, 107, 0, 0.33);
    transform: translateY(-2px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.55rem 0.8rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.36) 70%, transparent 100%);
}

/* ===== PARTNERSHIP ===== */
.partnership {
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.path-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.45rem;
    display: flex;
    flex-direction: column;
}

.path-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.path-card h3 {
    font-family: var(--font-display);
    font-size: 1.06rem;
    color: var(--text-primary);
    margin-bottom: 0.55rem;
}

.path-card p {
    font-size: 0.89rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.95rem;
}

.path-card ul {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 0.7rem;
    margin-bottom: 1rem;
    flex: 1;
}

.path-card li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.58;
    padding: 0.35rem 0 0.35rem 0.95rem;
    position: relative;
}

.path-card li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    left: 0;
    top: 0.82rem;
}

.partnership-footer {
    margin-top: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.15rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.partnership-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 500px;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 2.6rem 0;
    background: var(--bg-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
}

.footer-left {
    max-width: 360px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.45rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

.footer-right a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-right a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.1rem;
}

.footer-bottom p {
    font-size: 0.74rem;
    color: var(--text-muted);
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .hero-brief {
        justify-self: start;
    }

    .proof-grid,
    .metrics-grid,
    .architecture-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-right {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: flex !important;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .mobile-menu.open {
        display: flex !important;
    }

    .hero {
        min-height: auto;
        padding-top: 6.6rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn,
    .path-card .btn,
    .partnership-footer .btn {
        width: 100%;
    }

    .hero-hud {
        gap: 0.6rem;
        flex-wrap: wrap;
        padding: 0.9rem 0.6rem;
    }

    .hud-divider {
        display: none;
    }

    .hud-item {
        min-width: 45%;
    }

    .section {
        padding: 4.1rem 0;
    }

    .partnership-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .proof-story,
    .proof-panel,
    .metric-card,
    .architecture-card,
    .path-card,
    .partnership-footer {
        padding: 1.15rem;
    }
}

@media (max-width: 900px) {
    .hero-video {
        display: none;
    }

    .hero-image-area {
        background: url('hero-poster.jpg') center / cover no-repeat;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .dust-particle {
        display: none;
        animation: none;
    }

    .hero-video {
        display: none;
    }

    .hero-image-area {
        background: url('hero-poster.jpg') center / cover no-repeat;
    }

    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

::-webkit-scrollbar {
    width: 6px;
}

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

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