/* LASER BEND — Cinematic / Premium 2026 (главная) */

/* ——— Depth: noise + mesh (главная) ——— */
body.page-home::before {
    background: none;
}

body.page-home::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.045;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

body.page-home.is-loading {
    overflow: hidden;
}

/* ——— Intro loader ——— */
#loader-portal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0c;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.9s;
}

#loader-portal.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    width: min(320px, 80vw);
}

.loader-logo {
    display: inline-block;
    margin-bottom: 28px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #fff;
    line-height: 0;
    animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-logo img {
    display: block;
    height: clamp(56px, 14vw, 80px);
    width: auto;
    max-width: min(200px, 70vw);
    object-fit: contain;
}

.loader-bar {
    height: 2px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 40%;
    background: linear-gradient(90deg, transparent, #ff5722, transparent);
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}

@keyframes loaderSlide {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(320%); }
}

/* ——— Immersive hero ——— */
.hero-immersive,
.hero-carousel.hero-immersive {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0c;
    isolation: isolate;
}

/* Atmospheric depth (mesh + grid + dust) */
.atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.atmosphere__mesh {
    position: absolute;
    inset: -20%;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}

.mesh-blob--1 {
    width: 55vw;
    height: 55vw;
    max-width: 720px;
    max-height: 720px;
    top: 8%;
    left: -8%;
    background: radial-gradient(circle, rgba(38, 38, 42, 0.95) 0%, transparent 68%);
    animation: meshDrift1 28s ease-in-out infinite;
}

.mesh-blob--2 {
    width: 48vw;
    height: 48vw;
    max-width: 640px;
    max-height: 640px;
    bottom: -5%;
    right: -6%;
    background: radial-gradient(circle, rgba(18, 18, 20, 0.9) 0%, transparent 70%);
    animation: meshDrift2 34s ease-in-out infinite;
}

.mesh-blob--3 {
    width: 42vw;
    height: 42vw;
    max-width: 560px;
    max-height: 560px;
    top: 42%;
    left: 38%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 72%);
    animation: meshDrift3 22s ease-in-out infinite;
}

@keyframes meshDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(6%, 4%) scale(1.06); }
}

@keyframes meshDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-5%, -6%) scale(1.05); }
}

@keyframes meshDrift3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.75; }
    50% { transform: translate(-4%, 5%); opacity: 1; }
}

.atmosphere__grid {
    position: absolute;
    inset: 0;
    --grid-alpha: 0.028;
    --spot-alpha: 0.07;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, var(--grid-alpha)) 1px, transparent 0);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 20%, transparent 78%);
    transition: --grid-alpha 0.5s ease;
}

.atmosphere__grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        520px circle at var(--mx, 50%) var(--my, 42%),
        rgba(255, 255, 255, var(--spot-alpha)),
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

body.page-home.is-grid-active .atmosphere__grid {
    --grid-alpha: 0.042;
}

body.page-home.is-grid-active .atmosphere__grid::after {
    opacity: 1;
}

.atmosphere__dust {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.85;
}

/* ——— Hero video (3D animation) ——— */
.hero-video-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #0b0b0c;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    opacity: 0;
    transition: opacity 1.35s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.05) saturate(1.12) brightness(0.9);
    transform: scale(1.02);
    will-change: opacity;
}

.hero-video.is-active {
    opacity: 1;
}

.hero-has-video .hero-video-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 72% 45%, rgba(255, 87, 34, 0.12), transparent 55%),
        linear-gradient(90deg, rgba(11, 11, 12, 0.15) 0%, transparent 35%);
    mix-blend-mode: screen;
}

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

#hero-canvas[hidden] {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(11, 11, 12, 0.92) 0%, rgba(11, 11, 12, 0.55) 38%, rgba(11, 11, 12, 0.25) 62%, rgba(11, 11, 12, 0.45) 100%),
        linear-gradient(180deg, rgba(11, 11, 12, 0.35) 0%, rgba(11, 11, 12, 0.15) 50%, rgba(11, 11, 12, 0.85) 100%);
}

.hero-overlay--video {
    background:
        linear-gradient(90deg, rgba(11, 11, 12, 0.9) 0%, rgba(11, 11, 12, 0.55) 38%, rgba(11, 11, 12, 0.08) 62%, rgba(11, 11, 12, 0.35) 100%),
        linear-gradient(180deg, rgba(11, 11, 12, 0.35) 0%, rgba(11, 11, 12, 0.05) 48%, rgba(11, 11, 12, 0.75) 100%);
}

.hero-has-video .hero-video.is-active {
    opacity: 1;
}

.hero-overlay::after {
    content: "";
    position: absolute;
    top: 38%;
    left: 55%;
    width: 2px;
    height: 28%;
    background: linear-gradient(180deg, transparent, #ff5722, rgba(255, 87, 34, 0.4), transparent);
    box-shadow: 0 0 24px #ff5722, 0 0 48px rgba(255, 87, 34, 0.35);
    opacity: 0.55;
    animation: laserBeam 3.5s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes laserBeam {
    0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
    50% { opacity: 0.75; transform: scaleY(1); }
}

.hero-immersive .hero-inner {
    position: relative;
    z-index: 3;
    padding-top: calc(var(--header-h) + 32px);
}

.hero-glow {
    position: absolute;
    top: 42%;
    left: 50%;
    width: min(60vw, 720px);
    height: min(40vh, 380px);
    background: radial-gradient(circle, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

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

/* Subtle depth on sections below hero */
.depth-section {
    position: relative;
}

.depth-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
    opacity: 0.65;
}

.reveal-text {
    animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.15s;
}

.reveal-text .tagline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 6px 14px;
    border-radius: 980px;
    border: 1px solid rgba(255, 87, 34, 0.35);
    background: rgba(255, 87, 34, 0.08);
}

.glare-text {
    font-size: clamp(2.5rem, 6.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 20px;
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 40%, rgba(255, 87, 34, 0.95) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 40px rgba(255, 87, 34, 0.15));
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
}

/* Premium buttons */
.btn-premium {
    position: relative;
    padding: 16px 32px;
    background: linear-gradient(145deg, #ff6a3d 0%, #ff5722 50%, #e64a19 100%);
    border-radius: 980px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    border: none;
    box-shadow: 0 12px 40px rgba(255, 87, 34, 0.35);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s;
}

.btn-premium::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 45%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.btn-premium:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 48px rgba(255, 87, 34, 0.45);
}

.btn-premium:hover::after {
    left: 120%;
}

.btn-outline {
    padding: 16px 28px;
    border-radius: 980px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    transform: scale(1.02);
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(48px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ——— Bento premium (главная) — 3D как process-card ——— */
.page-home .home-highlights--volume {
    position: relative;
    overflow: visible;
    background: linear-gradient(180deg, #0b0b0c 0%, #141416 42%, #141416 58%, #0b0b0c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .home-highlights--volume::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 87, 34, 0.08), transparent 55%),
        radial-gradient(ellipse 45% 35% at 85% 100%, rgba(0, 113, 227, 0.05), transparent 50%);
}

.page-home .home-highlights--volume .section-shell {
    position: relative;
    z-index: 1;
}

.page-home .home-highlights__lead {
    max-width: 46ch;
    margin: -12px auto 36px;
    text-align: center;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.55;
}

.page-home .home-highlights--volume .bento-layout {
    perspective: 1400px;
}

.page-home .home-highlights--volume .bento-card,
.page-services .services-overview .bento-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 22px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform-style: preserve-3d;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    background: linear-gradient(165deg, rgba(32, 32, 36, 0.95) 0%, rgba(18, 18, 20, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.55),
        0 14px 36px rgba(0, 0, 0, 0.58),
        0 32px 64px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-services .services-overview .bento-card {
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.55),
        0 14px 36px rgba(0, 0, 0, 0.58),
        0 32px 64px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.page-home .home-highlights--volume .bento-card::before {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), transparent 45%);
    opacity: 0.6;
    transition: none;
}

.page-home .home-highlights--volume .bento-card::after {
    display: none;
}

@media (hover: hover) {
    .page-home .home-highlights--volume .bento-card:hover,
    .page-home .home-highlights--volume .bento-card.is-raised,
    .page-services .services-overview .bento-card:hover,
    .page-services .services-overview .bento-card.is-raised {
        transform: translateY(-12px) scale(1.03) rotateX(var(--tilt-x, 3deg)) rotateY(var(--tilt-y, 0deg));
        border-color: rgba(255, 255, 255, 0.16);
        background: linear-gradient(165deg, rgba(40, 40, 44, 0.98) 0%, rgba(22, 22, 24, 0.96) 100%);
        box-shadow:
            0 4px 8px rgba(0, 0, 0, 0.3),
            0 20px 48px rgba(0, 0, 0, 0.5),
            0 40px 72px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.14);
        z-index: 5;
    }
}

.page-home .home-highlights--volume .bento-card--accent {
    background: linear-gradient(165deg, rgba(32, 32, 36, 0.95) 0%, rgba(18, 18, 20, 0.92) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.page-home .home-highlights--volume .bento-card .bento-tag {
    margin-bottom: auto;
}

.page-home .home-highlights--volume .bento-card--stat {
    justify-content: center;
}

@media (hover: none) {
    .page-home .home-highlights--volume .bento-card:active {
        transform: translateY(-4px) scale(1.01);
        transition-duration: 0.15s;
    }
}

.page-home .home-highlights--volume .bento-card--stat strong {
    color: var(--white);
}

.page-home .home-highlights--volume .bento-card--stat strong[data-counter],
.page-home .home-highlights--volume .bento-card--stat:first-child strong {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Parallax sections */
.page-home .process-strip,
.page-home .home-highlights {
    transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
    #loader-portal {
        display: none;
    }

    .reveal-text {
        animation: none;
    }

    .hero-overlay::after {
        animation: none;
    }

    .mesh-blob {
        animation: none;
    }

    .atmosphere__dust {
        display: none;
    }

    .hero-video {
        transition: none;
    }

    .page-home .home-highlights--volume .bento-card,
    .page-home .home-highlights--volume .bento-card.is-raised {
        transform: none !important;
    }
}

/* ——— Premium v2 enhancements ——— */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 10001;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.06);
}

.scroll-progress::after {
    content: "";
    display: block;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, var(--accent), #ff8a65);
    box-shadow: 0 0 12px rgba(255, 87, 34, 0.5);
    transition: width 0.08s linear;
}

.cursor-spotlight {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(
        420px circle at var(--cx, 50%) var(--cy, 50%),
        rgba(255, 87, 34, 0.06),
        transparent 55%
    );
}

.cursor-spotlight.is-active {
    opacity: 1;
}

.materials-marquee {
    position: relative;
    z-index: 2;
    padding: 18px 0;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(11, 11, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 38s linear infinite;
    gap: 0;
}

.marquee__track.is-paused {
    animation-play-state: paused;
}

.marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.marquee__item::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(255, 87, 34, 0.6);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.heading-shine {
    background: linear-gradient(105deg, #fff 0%, #fff 42%, rgba(255, 87, 34, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-steps--timeline {
    position: relative;
}

.process-steps--timeline::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.35), transparent);
    pointer-events: none;
}

.process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0 auto 12px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--accent);
    border: 1px solid rgba(255, 87, 34, 0.35);
    border-radius: 50%;
    background: rgba(255, 87, 34, 0.08);
}

/* borderShine removed — volume via shadow + tilt */

.bento-card--stat strong[data-counter] {
    font-variant-numeric: tabular-nums;
}

.cta-premium {
    position: relative;
    z-index: 2;
    margin: clamp(32px, 6vw, 64px) clamp(20px, 5vw, 48px);
    padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 48px);
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 87, 34, 0.2);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 87, 34, 0.12), transparent 55%),
        rgba(22, 22, 24, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.cta-premium__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255, 87, 34, 0.08), transparent 60%);
    pointer-events: none;
}

.cta-premium h2 {
    position: relative;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.cta-premium p {
    position: relative;
    color: var(--muted);
    max-width: 42ch;
    margin: 0 auto 24px;
}

.cta-premium__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.footer-premium {
    position: relative;
    z-index: 2;
    padding: 40px clamp(20px, 5vw, 48px) 32px;
    border-top: 1px solid var(--glass-border);
    background: rgba(11, 11, 12, 0.95);
}

.footer-premium__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-premium__brand {
    font-weight: 800;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
}

.footer-premium__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-premium__logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.footer-premium__logo img {
    display: block;
    height: clamp(32px, 8vw, 44px);
    width: auto;
    max-width: min(100%, 320px);
    object-fit: contain;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.45));
}

.footer-premium__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    list-style: none;
}

.footer-premium__links a {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-premium__links a:hover {
    color: var(--white);
}

.footer-premium__copy {
    width: 100%;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.btn-magnetic {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .marquee__group + .marquee__group {
        display: none;
    }

    .page-home .home-highlights--volume .bento-card.is-raised {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .hero-overlay::after {
        display: none;
    }

    .hero-video {
        object-position: center center;
        transform: scale(1.08);
    }

    .glare-text {
        font-size: 2.2rem;
    }

    .cursor-spotlight {
        display: none;
    }

    .process-steps--timeline::before {
        display: none;
    }
}
