﻿:root {
            --feher: #ffffff;
            --animacio: cubic-bezier(0.72, 0, 0.18, 1);
            --panel-bg: rgba(9, 16, 20, 0.52);
            --panel-border: rgba(255, 255, 255, 0.18);
            --panel-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
            --glow: rgba(214, 246, 255, 0.38);
        }

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

        html,
        body {
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #020303;
        }

        body {
            color: var(--feher);
            font-family: Inter, Arial, Helvetica, sans-serif;
            user-select: none;
            overscroll-behavior: none;
            touch-action: none;
        }

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

        .intro {
            position: fixed;
            inset: 0;
            overflow: hidden;
            background:
                radial-gradient(circle at center, #111719 0%, #020303 72%);
            perspective: 1600px;
        }

        .scene {
            position: absolute;
            inset: 0;
            z-index: 1;

            opacity: 0;
            visibility: hidden;
            overflow: hidden;

            transform:
                scale(1.035)
                translate3d(0, 0, 0);

            filter:
                blur(10px)
                brightness(0.68)
                saturate(0.72);

            transition:
                opacity 0.58s ease,
                visibility 0.58s ease,
                transform 0.68s var(--animacio),
                filter 0.68s ease;

            will-change:
                opacity,
                transform,
                filter;
        }

        .scene.active {
            z-index: 5;
            opacity: 1;
            visibility: visible;
            transform: scale(1) translate3d(0, 0, 0);
            filter: blur(0) brightness(1) saturate(1);
            overflow-x: hidden;
            overflow-y: hidden;
            overscroll-behavior-y: contain;
            touch-action: pan-y;
        }

        .scene.leaving-forward {
            z-index: 4;
            opacity: 0;
            visibility: visible;
            transform: scale(1.055) translate3d(0, -1.5%, 0);
            filter: blur(14px) brightness(0.52) saturate(0.62);
        }

        .scene.leaving-backward {
            z-index: 4;
            opacity: 0;
            visibility: visible;
            transform: scale(0.965) translate3d(0, 1.5%, 0);
            filter: blur(14px) brightness(0.52) saturate(0.62);
        }

        .image-layer {
            position: absolute;
            inset: -3%;
            transform-origin: var(--origin-x, 50%) var(--origin-y, 50%);
            transform:
                perspective(1200px)
                scale(var(--current-scale, 1))
                translate3d(
                    var(--current-x, 0%),
                    var(--current-y, 0%),
                    0
                )
                rotateX(var(--scroll-rotate-x, 0deg))
                rotateY(var(--scroll-rotate-y, 0deg));
            transition: filter 0.2s ease;
            will-change: transform, filter;
        }

        .scene.scrolling .image-layer {
            filter:
                blur(var(--scroll-blur, 0px))
                brightness(var(--scroll-brightness, 1));
        }

        .image-layer img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position:
                var(--position-x, 50%)
                var(--position-y, 50%);
            filter:
                contrast(1.045)
                saturate(0.95)
                brightness(0.96);
            transform: translateZ(0);
        }

        .scene::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 3;
            background:
                linear-gradient(
                    110deg,
                    rgba(255, 255, 255, 0.025),
                    transparent 26%,
                    transparent 72%,
                    rgba(195, 240, 255, 0.045)
                ),
                radial-gradient(
                    circle at center,
                    transparent 40%,
                    rgba(0, 0, 0, 0.14) 72%,
                    rgba(0, 0, 0, 0.48) 120%
                ),
                linear-gradient(
                    to bottom,
                    rgba(0, 0, 0, 0.15),
                    transparent 28%,
                    transparent 68%,
                    rgba(0, 0, 0, 0.32)
                );
            pointer-events: none;
        }

        .scene::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 4;
            opacity: 0.06;
            background-image:
                repeating-linear-gradient(
                    to bottom,
                    transparent 0,
                    transparent 2px,
                    rgba(255, 255, 255, 0.025) 3px,
                    transparent 4px
                );
            mix-blend-mode: overlay;
            pointer-events: none;
        }

        .scene-content {
            position: absolute;
            inset: 0;
            z-index: 12;
            display: flex;
            padding: clamp(80px, 8vw, 130px) clamp(36px, 6vw, 108px);
            pointer-events: none;
        }

        .scene-content.top-right {
            justify-content: flex-end;
            align-items: flex-start;
        }

        .scene-content.center-right {
            justify-content: flex-end;
            align-items: center;
        }

        .scene-content.center-left {
            justify-content: flex-start;
            align-items: center;
        }

        .scene-content.bottom-left {
            justify-content: flex-start;
            align-items: flex-end;
        }

        .floating-panel {
            --rx: 0deg;
            --ry: 0deg;
            --tz: 0px;
            --shineX: 20%;
            --shineY: 10%;

            position: relative;
            width: min(640px, 44vw);
            overflow: hidden;

            border: 1px solid var(--panel-border);
            border-radius: 28px;

            background:
                linear-gradient(
                    145deg,
                    rgba(255, 255, 255, 0.15),
                    rgba(255, 255, 255, 0.05) 40%,
                    rgba(6, 12, 16, 0.56) 100%
                );

            box-shadow:
                var(--panel-shadow),
                inset 0 1px 0 rgba(255, 255, 255, 0.28),
                inset 0 -1px 0 rgba(255, 255, 255, 0.06);

            backdrop-filter: blur(22px) saturate(1.15);
            -webkit-backdrop-filter: blur(22px) saturate(1.15);

            transform:
                perspective(1400px)
                rotateX(var(--rx))
                rotateY(var(--ry))
                translate3d(0, 0, var(--tz));

            transform-style: preserve-3d;

            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease,
                opacity 0.7s ease;

            pointer-events: auto;
        }

        .floating-panel:hover {
            border-color: rgba(231, 249, 255, 0.34);
            box-shadow:
                0 40px 120px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(205, 243, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.34);
        }

        .floating-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(
                    circle at var(--shineX) var(--shineY),
                    rgba(255, 255, 255, 0.22),
                    transparent 28%
                ),
                linear-gradient(
                    120deg,
                    transparent 20%,
                    rgba(255, 255, 255, 0.08) 46%,
                    transparent 70%
                );
            opacity: 0.8;
        }

        .floating-panel::after {
            content: "";
            position: absolute;
            left: 28px;
            right: 28px;
            top: 0;
            height: 1px;
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(222, 249, 255, 0.9),
                    transparent
                );
            box-shadow: 0 0 18px rgba(210, 248, 255, 0.42);
        }

        .floating-panel > * {
            position: relative;
            z-index: 2;
            transform: translateZ(30px);
        }

        .floating-panel::before {
            background:
                radial-gradient(
                    circle at var(--shineX) var(--shineY),
                    rgba(255, 255, 255, 0.22),
                    transparent 28%
                ),
                linear-gradient(
                    120deg,
                    transparent 20%,
                    rgba(255, 255, 255, 0.08) 46%,
                    transparent 70%
                );
        }

        .panel-inner {
            padding: clamp(24px, 2.7vw, 38px);
        }

        .floating-panel.large {
            width: min(720px, 50vw);
        }

        .floating-panel.medium {
            width: min(620px, 44vw);
        }

        .floating-panel.narrow {
            width: min(540px, 40vw);
        }

        .floating-panel.dark {
            background:
                linear-gradient(
                    145deg,
                    rgba(4, 10, 14, 0.8),
                    rgba(9, 17, 22, 0.58) 55%,
                    rgba(255, 255, 255, 0.08)
                );
        }

        .floating-panel.warm {
            background:
                linear-gradient(
                    145deg,
                    rgba(41, 26, 16, 0.62),
                    rgba(11, 16, 14, 0.6) 58%,
                    rgba(255, 255, 255, 0.08)
                );
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 14px;
            color: rgba(226, 247, 255, 0.72);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 24px;
            height: 1px;
            background: currentColor;
            box-shadow: 0 0 10px currentColor;
        }

        .panel-title {
            margin-bottom: 16px;
            color: #fff;
            font-weight: 560;
            line-height: 0.98;
            letter-spacing: -0.045em;
            text-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
        }

        .panel-title.big {
            font-size: clamp(44px, 6vw, 88px);
        }

        .panel-title.medium {
            font-size: clamp(28px, 3vw, 48px);
        }

        .panel-text {
            color: rgba(245, 250, 252, 0.88);
            font-size: clamp(12px, 0.92vw, 15px);
            line-height: 1.72;
            text-wrap: pretty;
        }

        .panel-text p + p {
            margin-top: 10px;
        }

        .soft-divider {
            width: 100%;
            height: 1px;
            margin: 18px 0 18px;
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(255, 255, 255, 0.16),
                    transparent
                );
        }

        .map-panel {
            width: min(590px, 42vw);
            overflow: hidden;
        }

        .map-visual {
            width: 100%;
            height: clamp(250px, 34vh, 380px);
            overflow: hidden;
            border-radius: 26px 26px 0 0;
            background: rgba(4, 10, 13, 0.8);
        }

        .map-visual[hidden] {
            display: none;
        }

        .map-visual iframe {
            width: 100%;
            height: 100%;
            display: block;
            border: 0;
            filter: saturate(0.82) contrast(1.05) brightness(0.9);
        }

        .map-panel .panel-inner {
            padding-top: 22px;
        }

        .contact-lines {
            display: grid;
            gap: 4px;
            margin-top: 10px;
            color: rgba(243, 249, 250, 0.76);
            font-size: 12px;
            line-height: 1.5;
        }

        .route-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 18px;
            min-height: 46px;
            padding: 0 20px;

            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 999px;

            color: #071115;
            background: rgba(238, 252, 255, 0.94);

            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;

            box-shadow:
                0 12px 28px rgba(0, 0, 0, 0.24),
                0 0 22px rgba(214, 249, 255, 0.08);

            transition:
                transform 0.25s ease,
                background 0.25s ease;
        }

        .route-button:hover {
            transform: translateY(-2px);
            background: #ffffff;
        }

        .route-button svg {
            width: 15px;
            height: 15px;
        }

        .contex-word {
            display: flex;
            align-items: flex-start;
            gap: 4px;
            margin-bottom: 12px;
            font-size: clamp(50px, 7vw, 110px);
            font-weight: 650;
            line-height: 0.88;
            letter-spacing: -0.075em;
            text-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
        }

        .contex-word sup {
            margin-top: 10px;
            font-size: 0.22em;
            letter-spacing: 0;
        }

        .contex-lines {
            display: grid;
            gap: 10px;
            margin-top: 18px;
        }

        .contex-line {
            padding-left: 16px;
            border-left: 1px solid rgba(222, 246, 255, 0.28);
            color: rgba(244, 250, 252, 0.84);
            font-size: clamp(12px, 0.95vw, 14px);
            line-height: 1.6;
        }

        .scene:not(.active) .floating-panel {
            opacity: 0;
            transform:
                perspective(1400px)
                rotateX(7deg)
                rotateY(-8deg)
                translate3d(0, 32px, 0)
                scale(0.94);
        }

        .scene.active .floating-panel {
            animation: panelEnter 1.05s 0.18s var(--animacio) both;
        }

        @keyframes panelEnter {
            from {
                opacity: 0;
                transform:
                    perspective(1400px)
                    rotateX(8deg)
                    rotateY(-9deg)
                    translate3d(0, 42px, 0)
                    scale(0.94);
            }
            to {
                opacity: 1;
                transform:
                    perspective(1400px)
                    rotateX(var(--rx))
                    rotateY(var(--ry))
                    translate3d(0, 0, var(--tz))
                    scale(1);
            }
        }

        .scroll-glow {
            position: fixed;
            inset: 0;
            z-index: 18;
            opacity: 0;
            pointer-events: none;
            background:
                radial-gradient(
                    circle at var(--glow-x, 50%) var(--glow-y, 50%),
                    rgba(220, 250, 255, 0.16),
                    rgba(145, 220, 235, 0.055) 21%,
                    transparent 52%
                );
            transform: scale(var(--glow-scale, 0.85));
            transition:
                opacity 0.25s ease,
                transform 0.25s ease;
            mix-blend-mode: screen;
        }

        .intro.is-scrolling .scroll-glow {
            opacity: var(--glow-opacity, 0.35);
            transform: scale(var(--glow-scale, 1.05));
        }

        .scroll-streak {
            position: fixed;
            top: -30%;
            left: -20%;
            z-index: 19;
            width: 32%;
            height: 170%;
            opacity: 0;
            pointer-events: none;
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(210, 250, 255, 0.035),
                    rgba(255, 255, 255, 0.13),
                    rgba(210, 250, 255, 0.035),
                    transparent
                );
            filter: blur(26px);
            transform:
                translate3d(var(--streak-x, -130%), 0, 0)
                rotate(12deg);
            transition: opacity 0.18s ease;
            mix-blend-mode: screen;
        }

        .intro.is-scrolling .scroll-streak {
            opacity: var(--streak-opacity, 0.6);
        }

        .light-sweep {
            position: fixed;
            inset: -20%;
            z-index: 20;
            width: 42%;
            height: 150%;
            opacity: 0;
            pointer-events: none;
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(220, 250, 255, 0.07),
                    rgba(255, 255, 255, 0.17),
                    rgba(220, 250, 255, 0.05),
                    transparent
                );
            filter: blur(28px);
            transform: translateX(-170%) rotate(12deg);
        }

        .transitioning .light-sweep {
            animation: lightSweep 1s var(--animacio);
        }

        @keyframes lightSweep {
            0% {
                opacity: 0;
                transform: translateX(-170%) rotate(12deg);
            }
            25% {
                opacity: 0.75;
            }
            100% {
                opacity: 0;
                transform: translateX(430%) rotate(12deg);
            }
        }

        .focus-flash {
            position: fixed;
            inset: 0;
            z-index: 22;
            opacity: 0;
            pointer-events: none;
            background:
                radial-gradient(
                    circle at center,
                    rgba(255, 255, 255, 0.16),
                    rgba(210, 246, 255, 0.05) 22%,
                    transparent 58%
                );
        }

        .transitioning .focus-flash {
            animation: focusFlash 0.75s ease-out;
        }

        @keyframes focusFlash {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            30% {
                opacity: 0.55;
            }
            100% {
                opacity: 0;
                transform: scale(1.25);
            }
        }

        .rgb-layer {
            position: fixed;
            inset: 0;
            z-index: 23;
            opacity: 0;
            pointer-events: none;
            box-shadow:
                inset 7px 0 25px rgba(0, 220, 255, 0.08),
                inset -7px 0 25px rgba(255, 60, 110, 0.07);
        }

        .transitioning .rgb-layer {
            animation: rgbFlash 0.65s ease-out;
        }

        @keyframes rgbFlash {
            0% { opacity: 0; }
            25% { opacity: 1; }
            100% { opacity: 0; }
        }

        .noise {
            position: fixed;
            inset: -50%;
            z-index: 30;
            width: 200%;
            height: 200%;
            opacity: 0.06;
            pointer-events: none;
            background-image:
                url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.6'/%3E%3C/svg%3E");
            animation: noiseMove 0.25s steps(2) infinite;
            mix-blend-mode: soft-light;
        }

        @keyframes noiseMove {
            0% { transform: translate3d(0, 0, 0); }
            25% { transform: translate3d(-1%, 1%, 0); }
            50% { transform: translate3d(1%, -1%, 0); }
            75% { transform: translate3d(1%, 1%, 0); }
            100% { transform: translate3d(0, 0, 0); }
        }

        .interface {
            position: fixed;
            inset: 0;
            z-index: 40;
            pointer-events: none;
        }

        .corner {
            position: absolute;
            width: 46px;
            height: 46px;
            opacity: 0.38;
        }

        .corner::before,
        .corner::after {
            content: "";
            position: absolute;
            background: rgba(255, 255, 255, 0.66);
        }

        .corner::before {
            width: 100%;
            height: 1px;
        }

        .corner::after {
            width: 1px;
            height: 100%;
        }

        .corner.top-left {
            top: 28px;
            left: 28px;
        }

        .corner.top-right {
            top: 28px;
            right: 28px;
            transform: rotate(90deg);
        }

        .corner.bottom-left {
            bottom: 28px;
            left: 28px;
            transform: rotate(-90deg);
        }

        .corner.bottom-right {
            right: 28px;
            bottom: 28px;
            transform: rotate(180deg);
        }

        .top-info {
            position: absolute;
            top: 34px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            text-shadow:
                0 0 14px rgba(255, 255, 255, 0.16),
                0 0 32px rgba(210, 248, 255, 0.1);
        }

        .progress {
            position: absolute;
            top: 50%;
            right: 39px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transform: translateY(-50%);
        }

        .progress-item {
            position: relative;
            width: 3px;
            height: 36px;
            overflow: hidden;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.15);
            transition:
                height 0.4s var(--animacio),
                background 0.3s ease;
        }

        .progress-item::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: calc(var(--scene-progress, 0) * 100%);
            background: rgba(236, 253, 255, 0.95);
            box-shadow: 0 0 8px rgba(220, 250, 255, 0.65);
            transition: height 0.08s linear;
        }

        .progress-item.finished::after {
            height: 100%;
        }

        .progress-item.active {
            height: 58px;
            background: rgba(255, 255, 255, 0.24);
        }

        .scroll-tutorial {
            position: absolute;
            right: 48px;
            bottom: 46px;
            display: flex;
            align-items: center;
            gap: 14px;
            opacity: 1;
            transform: translate3d(0, 0, 0);
            transition:
                opacity 0.55s ease,
                transform 0.55s var(--animacio);
            pointer-events: none;
        }

        .scroll-tutorial.hidden {
            opacity: 0;
            transform: translate3d(0, 12px, 0);
        }

        .scroll-tutorial-text {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 3px;
        }

        .scroll-tutorial-text span {
            color: rgba(255, 255, 255, 0.34);
            font-size: 8px;
            font-weight: 500;
            letter-spacing: 0.24em;
            text-transform: uppercase;
        }

        .scroll-tutorial-text strong {
            color: rgba(255, 255, 255, 0.82);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-shadow: 0 0 14px rgba(220, 250, 255, 0.15);
        }

        .scroll-mouse {
            position: relative;
            width: 21px;
            height: 33px;
            border: 1px solid rgba(255, 255, 255, 0.46);
            border-radius: 999px;
            box-shadow:
                inset 0 0 12px rgba(220, 250, 255, 0.025),
                0 0 18px rgba(220, 250, 255, 0.045);
            transition:
                border-color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .scroll-mouse span {
            position: absolute;
            top: 6px;
            left: 50%;
            width: 2px;
            height: 6px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 0 8px rgba(220, 250, 255, 0.75);
            transform: translateX(-50%);
            animation: tutorialMouseWheel 1.65s cubic-bezier(0.45, 0, 0.2, 1) infinite;
        }

        @keyframes tutorialMouseWheel {
            0% {
                opacity: 0;
                transform: translate(-50%, -2px) scaleY(0.65);
            }
            20% { opacity: 1; }
            65% {
                opacity: 0.95;
                transform: translate(-50%, 7px) scaleY(1);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, 12px) scaleY(0.65);
            }
        }

        .scroll-chevron {
            position: relative;
            width: 12px;
            height: 27px;
        }

        .scroll-chevron i {
            position: absolute;
            left: 50%;
            width: 7px;
            height: 7px;
            border-right: 1px solid rgba(255, 255, 255, 0.58);
            border-bottom: 1px solid rgba(255, 255, 255, 0.58);
            transform: translateX(-50%) rotate(45deg);
            animation: tutorialChevron 1.65s ease-in-out infinite;
        }

        .scroll-chevron i:first-child {
            top: 2px;
        }

        .scroll-chevron i:last-child {
            top: 10px;
            animation-delay: 0.18s;
        }

        @keyframes tutorialChevron {
            0% {
                opacity: 0;
                transform: translate(-50%, -4px) rotate(45deg);
            }
            35% { opacity: 1; }
            100% {
                opacity: 0;
                transform: translate(-50%, 7px) rotate(45deg);
            }
        }

        .intro.is-scrolling .scroll-tutorial {
            transform: translate3d(0, 3px, 0);
        }

        .intro.is-scrolling .scroll-mouse {
            border-color: rgba(255, 255, 255, 0.72);
            box-shadow: 0 0 22px rgba(220, 250, 255, 0.09);
        }

        .bottom-line {
            position: fixed;
            left: 50%;
            bottom: 0;
            z-index: 50;
            width: 0;
            height: 1px;
            transform: translateX(-50%);
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(215, 250, 255, 0.8),
                    transparent
                );
            box-shadow: 0 0 14px rgba(204, 246, 255, 0.4);
            transition: width 1.1s var(--animacio);
        }

        .intro.loaded .bottom-line {
            width: 72%;
        }

        .loading-cover {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: clamp(34px, 7vh, 74px);
            background: #020303;
            transition: opacity 0.9s ease, visibility 0.9s ease;
        }

        .loading-cover.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-mark {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            animation: loadingMarkIn 0.8s 0.6s ease both;
        }

        .loading-hero {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: clamp(10px, 1.4vw, 18px);
            width: min(1180px, calc(100vw - 72px));
            color: rgba(255, 255, 255, 0.08);
            font-size: clamp(36px, 7.6vw, 104px);
            font-weight: 900;
            line-height: 0.88;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;
            transform: translateY(8px);
            animation: loadingTitleIn 1.1s 0.15s var(--animacio) both;
        }

        .loading-hero::before {
            content: "";
            position: absolute;
            inset: -46px -22px;
            z-index: -1;
            background:
                radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.07), transparent 42%),
                linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035), transparent);
            filter: blur(8px);
            opacity: 0;
            animation: loadingGlowIn 1.2s 0.35s ease both;
        }

        .loading-hero-word {
            --fill-delay: 0.28s;
            display: inline-block;
            position: relative;
            color: rgba(255, 255, 255, 0.08);
            opacity: 0;
            overflow: hidden;
            padding-right: 0.08em;
            margin-right: -0.08em;
            text-shadow: 0 0 34px rgba(255, 255, 255, 0.04);
            animation: loadingWordReveal 0.55s var(--animacio) both;
        }

        .loading-hero-word::after {
            content: attr(data-text);
            position: absolute;
            inset: 0;
            width: 0;
            overflow: hidden;
            color: rgba(255, 255, 255, 0.92);
            text-shadow:
                0 0 22px rgba(255, 255, 255, 0.18),
                0 12px 44px rgba(0, 0, 0, 0.55);
            white-space: nowrap;
            animation: loadingTextFill 1.65s var(--fill-delay) var(--animacio) both;
        }

        .loading-hero-word.primary {
            --fill-delay: 0.34s;
            color: rgba(255, 255, 255, 0.14);
            text-shadow:
                0 0 22px rgba(255, 255, 255, 0.18),
                0 12px 44px rgba(0, 0, 0, 0.55);
            animation-delay: 0.16s;
        }

        .loading-hero-word:not(.primary) {
            --fill-delay: 0.72s;
            font-size: 0.42em;
            animation-delay: 0.28s;
        }

        @keyframes loadingTitleIn {
            from {
                opacity: 0;
                transform: translateY(28px) scale(0.96);
                filter: blur(14px);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        @keyframes loadingWordReveal {
            0% {
                opacity: 0;
                transform: translateX(-18px);
            }
            42% {
                opacity: 1;
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes loadingTextFill {
            0% { width: 0; }
            100% { width: calc(100% + 0.08em); }
        }

        @keyframes loadingGlowIn {
            from { opacity: 0; transform: scaleX(0.72); }
            to { opacity: 1; transform: scaleX(1); }
        }

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

        .loading-ring {
            position: relative;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 50%;
        }

        .loading-ring::before {
            content: "";
            position: absolute;
            inset: -1px;
            border: 1px solid transparent;
            border-top-color: rgba(230, 253, 255, 0.94);
            border-radius: 50%;
            animation: loadingRingRotate 1.1s linear infinite;
            filter: drop-shadow(0 0 5px rgba(220, 250, 255, 0.8));
        }

        @keyframes loadingRingRotate {
            to {
                transform: rotate(360deg);
            }
        }

        .loading-text {
            color: rgba(255, 255, 255, 0.52);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.27em;
            text-transform: uppercase;
        }

        @media (max-width: 980px) {
            .scene-content {
                padding: 76px 22px 96px;
                align-items: flex-end !important;
                justify-content: center !important;
            }

            .floating-panel,
            .floating-panel.large,
            .floating-panel.medium,
            .floating-panel.narrow,
            .map-panel {
                width: min(100%, 720px);
                max-height: none;
                overflow: hidden;
                border-radius: 22px;
            }

            .map-visual {
                height: min(30vh, 290px);
                border-radius: 22px 22px 0 0;
            }
        }

        @media (max-width: 700px) {
            .corner {
                width: 30px;
                height: 30px;
            }

            .corner.top-left {
                top: 18px;
                left: 18px;
            }

            .corner.top-right {
                top: 18px;
                right: 18px;
            }

            .corner.bottom-left {
                bottom: 18px;
                left: 18px;
            }

            .corner.bottom-right {
                right: 18px;
                bottom: 18px;
            }

            .top-info {
                top: 22px;
                font-size: 10px;
                letter-spacing: 0.23em;
            }

            .progress {
                right: 21px;
            }

            .scroll-tutorial {
                right: 26px;
                bottom: 31px;
                gap: 10px;
            }

            .scroll-tutorial-text {
                display: none;
            }

            .scroll-mouse {
                width: 19px;
                height: 30px;
            }

            .image-layer {
                inset: -6%;
            }

            .panel-inner {
                padding: 20px;
            }

            .scene-content {
                padding: 64px 16px 86px;
            }

            .loading-hero {
                gap: 8px;
                font-size: clamp(38px, 15vw, 72px);
                line-height: 0.94;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .noise,
            .scroll-mouse span,
            .scroll-chevron i {
                animation: none;
            }
        }

        .floating-panel {
            --rx: -1.8deg;
            --ry: -3.2deg;
            --base-rx: -1.8deg;
            --base-ry: -3.2deg;
        }

        .scene-content.center-left .floating-panel,
        .scene-content.bottom-left .floating-panel {
            --rx: -1.4deg;
            --ry: 3.2deg;
            --base-rx: -1.4deg;
            --base-ry: 3.2deg;
        }

        .map-panel {
            width: min(430px, 32vw);
            border-radius: 22px;
        }

        .map-visual {
            height: clamp(170px, 22vh, 235px);
            border-radius: 21px 21px 0 0;
        }

        .map-panel .panel-inner {
            padding: 18px 22px 21px;
        }

        .map-panel .panel-title.medium {
            margin-bottom: 10px;
            font-size: clamp(22px, 2vw, 31px);
        }

        .map-panel .eyebrow {
            margin-bottom: 9px;
        }

        .map-panel .route-button {
            min-height: 40px;
            margin-top: 14px;
            padding: 0 16px;
            font-size: 9px;
        }

        .integrated-tilt {
            --base-rx: -5deg;
            --base-ry: 10deg;
            transform:
                perspective(1400px)
                rotateX(calc(var(--base-rx) + var(--rx)))
                rotateY(calc(var(--base-ry) + var(--ry)))
                translate3d(0, 0, var(--tz));
        }

        .scene.active .integrated-tilt {
            animation-name: integratedPanelEnter;
        }

        @keyframes integratedPanelEnter {
            from {
                opacity: 0;
                transform: perspective(1400px) rotateX(5deg) rotateY(18deg) translate3d(-25px, 42px, 0) scale(0.93);
            }
            to {
                opacity: 1;
                transform: perspective(1400px) rotateX(calc(var(--base-rx) + var(--rx))) rotateY(calc(var(--base-ry) + var(--ry))) translate3d(0, 0, var(--tz)) scale(1);
            }
        }

        .scene-menu {
            position: absolute;
            top: 58px;
            left: 50%;
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 5px;
            border: 1px solid rgba(255,255,255,.2);
            border-radius: 999px;
            background: rgba(3,7,9,.78);
            box-shadow: 0 14px 38px rgba(0,0,0,.42);
            backdrop-filter: blur(18px) saturate(130%);
            -webkit-backdrop-filter: blur(18px) saturate(130%);
            transform: translateX(-50%);
            pointer-events: auto;
        }

        .mobile-menu-toggle {
            display: none;
        }

        .scene-menu-button {
            min-height: 30px;
            padding: 0 12px;
            color: rgba(255,255,255,.78);
            background: transparent;
            border: 0;
            border-radius: 999px;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: .09em;
            text-transform: uppercase;
            cursor: pointer;
            text-shadow: 0 1px 8px rgba(0,0,0,.72);
            transition: color .2s ease, background .2s ease, transform .2s ease;
        }

        .scene-menu-button:hover {
            color: #fff;
            transform: translateY(-1px);
        }

        .scene-menu-button.active {
            color: #061014;
            background: rgba(244,252,255,.96);
        }

        .language-switcher {
            position: fixed;
            left: 50%;
            bottom: 24px;
            z-index: 70;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 6px;
            background: rgba(4, 8, 11, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 999px;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.42);
            backdrop-filter: blur(18px) saturate(130%);
            -webkit-backdrop-filter: blur(18px) saturate(130%);
            transform: translateX(-50%);
            pointer-events: auto;
        }

        .language-button {
            position: relative;
            min-width: 70px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 14px;
            overflow: hidden;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
            border: 0;
            border-radius: 999px;
            cursor: pointer;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.09em;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.72);
            box-shadow:
                inset 0 0 0 1px rgba(255, 255, 255, 0.18),
                0 5px 14px rgba(0, 0, 0, 0.24);
            transition:
                color 0.25s ease,
                transform 0.25s ease,
                box-shadow 0.25s ease;
        }

        .language-button::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
            transition: background 0.25s ease;
        }

        .language-button > span {
            position: relative;
            z-index: 1;
        }

        .language-button:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }

        .language-button.active {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.18);
            box-shadow:
                inset 0 0 0 2px rgba(255, 255, 255, 0.88),
                0 8px 22px rgba(0, 0, 0, 0.28);
        }

        .language-button.active::before {
            background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
        }

        .support-scene {
            background:
                radial-gradient(circle at 8% 100%, rgba(28, 118, 148, 0.22), transparent 34%),
                radial-gradient(circle at 88% 10%, rgba(128, 221, 242, 0.1), transparent 28%),
                linear-gradient(125deg, #040708 0%, #071015 46%, #020405 100%);
        }

        .support-scene::before {
            background:
                radial-gradient(circle at 72% 45%, rgba(202, 245, 255, 0.08), transparent 29%),
                radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.48) 115%);
            opacity: 1;
        }

        .support-scene::after {
            opacity: 0.035;
        }

        .content-scene {
            background:
                radial-gradient(circle at 14% 18%, rgba(142, 218, 235, 0.16), transparent 30%),
                radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.08), transparent 30%),
                linear-gradient(130deg, #030607 0%, #081216 52%, #020303 100%);
        }

        .content-scene::before {
            background:
                linear-gradient(110deg, rgba(255, 255, 255, 0.035), transparent 30%, rgba(185, 235, 255, 0.035)),
                radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.5) 112%);
        }

        .content-layout {
            position: absolute;
            inset: 0;
            z-index: 12;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            overflow-y: hidden;
            padding: clamp(95px, 9vw, 145px) clamp(36px, 7vw, 120px) 96px;
            pointer-events: auto;
        }

        .content-layout.split {
            justify-content: space-between;
            gap: clamp(30px, 5vw, 80px);
        }

        .content-panel {
            width: min(820px, 62vw);
        }

        .partial-error {
            position: absolute;
            inset: 50% auto auto 50%;
            width: min(560px, calc(100vw - 40px));
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 18px;
            color: rgba(255, 255, 255, 0.88);
            background: rgba(8, 14, 18, 0.78);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
            transform: translate(-50%, -50%);
        }

        .content-scene:not(.active) .content-layout {
            opacity: 0;
            transform: translateY(40px);
        }

        .content-scene.active .content-layout {
            animation: supportEnter 0.95s 0.12s var(--animacio) both;
        }

        .support-layout {
            position: absolute;
            inset: 0;
            z-index: 12;
            display: grid;
            grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
            min-height: 100%;
            padding: clamp(95px, 9vw, 145px) clamp(45px, 7vw, 125px) 105px;
            gap: clamp(55px, 7vw, 120px);
            align-items: center;
            overflow-x: hidden;
            overflow-y: hidden;
            pointer-events: auto;
        }

        .intro:not(.location-mode) .progress,
        .intro:not(.location-mode) .scroll-tutorial {
            opacity: 0;
            visibility: hidden;
        }

        .support-main {
            max-width: 840px;
        }

        .support-kicker {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            margin-bottom: 25px;
            color: rgba(212, 244, 250, 0.64);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
        }

        .support-kicker::before {
            content: "";
            width: 38px;
            height: 1px;
            background: currentColor;
            box-shadow: 0 0 12px currentColor;
        }

        .support-title {
            max-width: 780px;
            color: #ffffff;
            font-size: clamp(62px, 8vw, 142px);
            font-weight: 520;
            line-height: 0.87;
            letter-spacing: -0.07em;
            text-wrap: balance;
        }

        .support-lead {
            max-width: 680px;
            margin-top: 34px;
            color: rgba(232, 241, 244, 0.72);
            font-size: clamp(15px, 1.15vw, 20px);
            line-height: 1.7;
        }

        .support-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 38px;
        }

        .support-action {
            min-height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 22px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
        }

        .support-action.primary {
            color: #071115;
            background: #f2fbfd;
        }

        .support-action.secondary {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.17);
        }

        .support-action:hover {
            transform: translateY(-3px) scale(0.98);
        }

        .support-side {
            position: relative;
            padding-left: clamp(28px, 4vw, 64px);
            border-left: 1px solid rgba(255, 255, 255, 0.12);
        }

        .support-status {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(232, 242, 244, 0.75);
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }


        .support-info-row small {
            display: block;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.38);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .support-info-row a,
        .support-info-row span {
            color: rgba(245, 250, 251, 0.88);
            font-size: clamp(15px, 1.25vw, 19px);
            line-height: 1.5;
        }

        .support-note {
            margin-top: 38px;
            color: rgba(255, 255, 255, 0.38);
            font-size: 12px;
            line-height: 1.7;
        }

        .support-scene:not(.active) .support-main,
        .support-scene:not(.active) .support-side {
            opacity: 0;
            transform: translateY(40px);
        }

        .support-scene.active .support-main {
            animation: supportEnter 0.95s 0.12s var(--animacio) both;
        }

        .support-scene.active .support-side {
            animation: supportEnter 0.95s 0.28s var(--animacio) both;
        }

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

        @media (max-width: 980px) {
            .map-panel {
                width: min(92%, 430px);
            }

            .support-layout {
                grid-template-columns: 1fr;
                align-content: center;
                overflow-y: hidden;
                gap: 55px;
                padding: 105px 35px 115px;
            }

            .content-layout,
            .content-layout.split {
                flex-direction: column;
                align-items: stretch;
                justify-content: center;
                overflow-y: hidden;
                gap: 24px;
                padding: 105px 24px 115px;
            }

            .content-panel {
                width: min(100%, 720px);
            }

            .support-side {
                padding-left: 0;
                padding-top: 40px;
                border-left: 0;
                border-top: 1px solid rgba(255, 255, 255, 0.12);
            }

            .support-info {
                margin-top: 40px;
            }
        }

        @media (max-width: 700px) {
            html,
            body {
                overflow: hidden;
            }

            body {
                touch-action: pan-y;
                overscroll-behavior-y: contain;
            }

            .intro {
                overflow: hidden;
            }

            .scene.active {
                overflow-x: hidden;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior-y: contain;
            }

            .scene.active::before,
            .scene.active::after {
                position: fixed;
            }

            .scene.active .image-layer {
                position: fixed;
            }

            .scene-menu {
                position: fixed;
                top: 66px;
                right: 14px;
                left: auto;
                z-index: 80;
                width: min(260px, calc(100vw - 28px));
                max-width: none;
                display: grid;
                grid-template-columns: 1fr;
                gap: 6px;
                padding: 10px;
                overflow: visible;
                border-radius: 20px;
                background: rgba(3, 7, 9, 0.84);
                box-shadow: 0 22px 65px rgba(0, 0, 0, 0.42);
                opacity: 0;
                visibility: hidden;
                transform: translate3d(0, -10px, 0) scale(0.98);
                transition:
                    opacity 0.22s ease,
                    visibility 0.22s ease,
                    transform 0.22s ease;
                pointer-events: none;
            }

            body.mobile-menu-open .scene-menu {
                opacity: 1;
                visibility: visible;
                transform: translate3d(0, 0, 0) scale(1);
                pointer-events: auto;
            }

            .mobile-menu-toggle {
                position: fixed;
                top: 16px;
                right: 16px;
                z-index: 85;
                width: 44px;
                height: 44px;
                display: grid;
                place-items: center;
                gap: 0;
                padding: 10px;
                border: 1px solid rgba(255, 255, 255, 0.16);
                border-radius: 15px;
                color: #ffffff;
                background: rgba(3, 7, 9, 0.68);
                box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
                backdrop-filter: blur(14px);
                -webkit-backdrop-filter: blur(14px);
                pointer-events: auto;
            }

            .mobile-menu-toggle span {
                width: 19px;
                height: 2px;
                display: block;
                border-radius: 999px;
                background: currentColor;
                transition:
                    transform 0.22s ease,
                    opacity 0.22s ease;
            }

            body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
                opacity: 0;
            }

            body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .scene-menu-button {
                width: 100%;
                min-height: 42px;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                padding: 0 14px;
                border-radius: 13px;
                color: rgba(255, 255, 255, 0.72);
                font-size: 10px;
                letter-spacing: 0.08em;
                text-align: left;
            }

            .language-switcher {
                bottom: 16px;
            }

            .language-button {
                min-width: 70px;
                height: 34px;
                gap: 6px;
                padding: 0 10px 0 8px;
            }

            .language-button span:last-child {
                display: inline-block;
            }

            .map-panel {
                width: min(78vw, 320px);
                max-height: none;
                border-radius: 18px;
            }

            .map-visual {
                height: 130px;
                border-radius: 18px 18px 0 0;
            }

            .map-panel .panel-inner {
                padding: 13px 16px 16px;
            }

            .map-panel .eyebrow {
                margin-bottom: 6px;
                font-size: 9px;
                letter-spacing: 0.18em;
            }

            .map-panel .panel-title.medium {
                margin-bottom: 7px;
                font-size: 22px;
            }

            .map-panel .contact-lines {
                gap: 2px;
                margin-top: 7px;
                font-size: 10px;
                line-height: 1.38;
            }

            .map-panel .route-button {
                min-height: 36px;
                margin-top: 12px;
                padding: 0 14px;
                gap: 8px;
                font-size: 8px;
            }

            .map-panel .route-button svg {
                width: 13px;
                height: 13px;
            }

            .support-layout {
                padding: 90px 20px 105px;
            }

            .content-layout,
            .content-layout.split {
                padding: 90px 18px 105px;
            }

            .support-title {
                font-size: clamp(56px, 20vw, 92px);
            }

            .support-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .support-action {
                width: 100%;
            }
        }

.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 140;
    width: min(430px, calc(100vw - 32px));
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(4, 9, 12, 0.92);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__content {
    display: grid;
    gap: 7px;
}

.cookie-consent__content strong {
    font-size: 15px;
    line-height: 1.25;
}

.cookie-consent__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.55;
}

.cookie-consent__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-consent__button {
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: #ffffff;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent__button.secondary {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-consent__button.primary {
    border-color: rgba(108, 220, 255, 0.52);
    background: linear-gradient(135deg, #1b8dc0, #39b772);
}

@media (max-width: 700px) {
    .cookie-consent {
        right: 16px;
        bottom: 68px;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1360px) and (min-width: 981px) {
    .scene-menu {
        top: 46px;
        max-width: calc(100vw - 260px);
        overflow-x: hidden;
    }

    .scene-menu-button {
        flex: 0 0 auto;
        padding-inline: 10px;
        font-size: 8px;
        letter-spacing: 0.07em;
        white-space: nowrap;
    }

    .top-info {
        left: 36px;
        transform: none;
    }

    .language-switcher {
        bottom: 16px;
    }

    .content-layout,
    .content-layout.split,
    .support-layout {
        padding-top: 108px;
        padding-bottom: 82px;
    }
}

@media (max-width: 1180px) and (min-width: 981px) {
    .content-layout,
    .content-layout.split {
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: hidden;
        padding-inline: clamp(28px, 4vw, 54px);
    }

    .support-layout {
        grid-template-columns: 1fr;
        align-content: start;
        overflow-y: hidden;
        gap: 34px;
        padding-inline: clamp(28px, 4vw, 54px);
    }

    .support-side {
        padding-left: 0;
        padding-top: 30px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-height: 780px) and (min-width: 701px) {
    .scene-menu {
        top: 34px;
    }

    .top-info {
        top: 24px;
    }

    .content-layout,
    .content-layout.split,
    .support-layout {
        align-items: flex-start;
        overflow-y: hidden;
        padding-top: 86px;
        padding-bottom: 72px;
    }

    .support-title {
        font-size: clamp(48px, 6.4vw, 96px);
    }

    .support-lead {
        margin-top: 22px;
    }

    .support-actions {
        margin-top: 26px;
    }
}

@media (max-width: 980px) {
    .content-layout,
    .content-layout.split,
    .support-layout {
        justify-content: flex-start;
        align-content: start;
    }
}

@media (max-height: 820px) and (min-width: 701px) {
    .scene.active {
        overflow: hidden;
    }

    .scene-content {
        padding:
            clamp(58px, 9vh, 92px)
            clamp(28px, 5vw, 82px)
            clamp(48px, 7vh, 78px);
    }

    .floating-panel {
        width: min(560px, 40vw);
        border-radius: 22px;
    }

    .floating-panel.large {
        width: min(620px, 46vw);
    }

    .floating-panel.medium {
        width: min(540px, 40vw);
    }

    .floating-panel.narrow {
        width: min(480px, 36vw);
    }

    .panel-inner {
        padding: clamp(18px, 2.6vh, 28px);
    }

    .eyebrow {
        margin-bottom: 9px;
        font-size: 8px;
    }

    .panel-title {
        margin-bottom: 10px;
    }

    .panel-title.big {
        font-size: clamp(36px, 7vh, 68px);
    }

    .panel-title.medium {
        font-size: clamp(24px, 5vh, 38px);
    }

    .panel-text {
        font-size: clamp(11px, 1.8vh, 13px);
        line-height: 1.52;
    }

    .map-visual {
        height: clamp(150px, 27vh, 260px);
    }

    .contact-lines {
        font-size: 10px;
        line-height: 1.38;
    }

    .route-button {
        min-height: 38px;
        margin-top: 12px;
        padding-inline: 15px;
        font-size: 8px;
    }

    .content-layout,
    .content-layout.split,
    .support-layout {
        overflow: hidden;
        padding:
            clamp(74px, 11vh, 102px)
            clamp(28px, 5vw, 76px)
            clamp(58px, 8vh, 82px);
    }

    .content-layout.split,
    .support-layout {
        gap: clamp(24px, 4vw, 48px);
    }

    .support-title {
        font-size: clamp(44px, 9vh, 92px);
    }

    .support-lead {
        margin-top: 18px;
        font-size: clamp(13px, 2.1vh, 17px);
        line-height: 1.48;
    }

    .support-actions {
        margin-top: 22px;
    }

    .support-action {
        min-height: 42px;
        padding-inline: 18px;
        font-size: 10px;
    }
}

@media (max-height: 680px) and (min-width: 701px) {
    .scene-menu {
        top: 24px;
        padding: 5px;
    }

    .scene-menu-button {
        min-height: 30px;
        padding-inline: 9px;
        font-size: 8px;
    }

    .top-info {
        top: 20px;
        font-size: 9px;
    }

    .language-switcher {
        bottom: 12px;
        padding: 4px;
    }

    .language-button {
        min-width: 64px;
        height: 30px;
        font-size: 9px;
    }

    .content-layout,
    .content-layout.split,
    .support-layout {
        padding-top: 64px;
        padding-bottom: 54px;
    }

    .support-title {
        font-size: clamp(38px, 8.5vh, 74px);
    }
}

.scene.content-scene:has(> .partners-section).active,
.scene.content-scene:has(> .skyshop-section).active {
    overflow: hidden;
}

/* Performance mode: keep the layout, remove decorative GPU-heavy effects. */
.scene,
.scene.active,
.scene.leaving-forward,
.scene.leaving-backward,
.image-layer img,
.map-visual iframe,
.loading-hero-word::after,
.loading-ring {
    filter: none !important;
}

.scene {
    contain: layout paint style;
}

.scene:not(.active):not(.leaving-forward):not(.leaving-backward) {
    content-visibility: hidden;
    pointer-events: none;
}

.scene.active,
.scene.leaving-forward,
.scene.leaving-backward {
    content-visibility: visible;
}

.scene::after,
.scroll-glow,
.scroll-streak,
.light-sweep,
.focus-flash,
.rgb-layer,
.noise {
    display: none !important;
}

.image-layer {
    transition: none !important;
    will-change: auto !important;
    backface-visibility: hidden;
}

.image-layer {
    transform:
        scale(var(--current-scale, 1))
        translate3d(
            var(--current-x, 0%),
            var(--current-y, 0%),
            0
        ) !important;
}

.floating-panel,
.mobile-menu-toggle,
.scene-menu,
.language-button,
.cookie-consent,
.partial-error,
.route-button,
.support-action,
.progress-item,
.loading-mark {
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.floating-panel,
.floating-panel:hover {
    transform: none !important;
    transition:
        opacity 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease !important;
}

.floating-panel::before,
.floating-panel::after,
.eyebrow::before,
.support-kicker::before,
.progress-item::after {
    box-shadow: none !important;
}

.panel-title,
.contex-word,
.top-info,
.loading-hero-word,
.loading-hero-word.primary,
.loading-text {
    text-shadow: none !important;
}

.scene.active .floating-panel,
.content-scene.active .content-layout,
.support-scene.active .support-main,
.support-scene.active .support-side,
.scroll-mouse span,
.scroll-chevron i,
.loading-mark,
.loading-hero,
.loading-hero-word,
.loading-ring {
    animation: none !important;
}

.transitioning .light-sweep,
.transitioning .focus-flash,
.transitioning .rgb-layer {
    animation: none !important;
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
    .scene,
    .scene.active,
    .scene.leaving-forward,
    .scene.leaving-backward,
    .floating-panel,
    .glass-panel,
    .content-layout,
    .support-main,
    .support-side,
    .route-button,
    .support-action {
        transition-duration: 0.12s !important;
        animation: none !important;
    }

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

@media (max-width: 700px) {
    html,
    body {
        overflow: hidden;
        height: 100%;
    }

    body {
        touch-action: pan-y;
        overscroll-behavior-y: contain;
    }

    .intro {
        overflow: hidden;
    }

    .scene.active {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        touch-action: pan-y;
    }

    .content-scene.active,
    .support-scene.active,
    .shop-scene.active {
        overflow-y: auto;
    }

    .content-layout,
    .content-layout.split,
    .support-layout {
        position: relative;
        inset: auto;
        min-height: 100dvh;
        height: auto;
        overflow: visible;
        padding: 88px 18px 112px;
    }

    .content-layout,
    .content-layout.split {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
    }

    .support-layout {
        display: grid;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 28px;
    }

    .content-scene.active .content-layout,
    .support-scene.active .support-layout {
        animation: none !important;
    }

    .scene.active::before,
    .scene.active::after,
    .scene.active .image-layer {
        position: fixed;
    }
}

@media (max-width: 700px) {
    html,
    body {
        height: auto !important;
        min-height: 100%;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    body {
        overscroll-behavior-y: auto;
        touch-action: pan-y;
        user-select: text;
    }

    .intro {
        position: relative;
        min-height: 100dvh;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .scene {
        min-height: 100dvh;
    }

    .scene.active {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: auto;
        touch-action: pan-y;
    }

    .content-layout,
    .content-layout.split,
    .support-layout,
    .about-section,
    .products-section,
    .services-section,
    .partners-section,
    .skyshop-section {
        height: auto !important;
        min-height: 100dvh;
        overflow: visible !important;
    }

    .services-section,
    .support-scene > .services-section {
        position: relative;
        inset: auto;
    }

    .products-section,
    .partners-section,
    .skyshop-section {
        align-items: flex-start;
        padding-top: 88px;
        padding-bottom: 112px;
    }

    .scene-menu {
        max-height: calc(100dvh - 84px);
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}
