﻿/* BASE STYLES & OVERRIDES */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #EAEAE5;
            color: #1C1C1C;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .section-aura {
            position: relative;
            overflow: hidden;
        }

        .section-aura::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 38%),
                radial-gradient(circle at 85% 70%, rgba(214, 211, 209, 0.6) 0%, rgba(214, 211, 209, 0) 45%),
                linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
            background-size: 180% 180%, 220% 220%, 100% 100%;
            animation: aurora 16s ease-in-out infinite;
            opacity: 0.1;
        }

        .section-aura>* {
            position: relative;
            z-index: 1;
        }

        .section-aura>div:not(.absolute) {
            max-width: 1280px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .section-aura>div.full-bleed {
            max-width: none;
            width: 100%;
        }

        /* TYPOGRAPHY UTILS */
        .text-balance {
            text-wrap: balance;
        }

        /* REVEAL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(2rem);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        @keyframes animationIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
                filter: blur(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            filter: blur(8px);
            animation-fill-mode: forwards;
        }

        .animate-on-scroll.active {
            animation: animationIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        /* TEXT MASK REVEAL */
        .text-reveal-wrapper {
            overflow: hidden;
            display: inline-block;
            vertical-align: bottom;
        }

        .text-reveal-content {
            transform: translateY(110%);
            opacity: 0;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
            display: block;
        }

        .reveal-active .text-reveal-content {
            transform: translateY(0);
            opacity: 1;
        }

        .hero-outline {
            color: transparent;
            -webkit-text-stroke: 1.6px rgba(255, 255, 255, 0.92);
            text-stroke: 1.6px rgba(255, 255, 255, 0.92);
            filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.35));
            line-height: 0.9;
        }

        .text-stroke-outline {
            color: transparent;
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
            transition: all 0.45s ease;
        }

        .group:hover .text-stroke-outline,
        .text-stroke-outline:hover {
            -webkit-text-stroke: 1px rgba(0, 0, 0, 1);
        }

        /* DELAYS */
        .delay-100 {
            transition-delay: 0.1s;
        }

        .delay-200 {
            transition-delay: 0.2s;
        }

        .delay-300 {
            transition-delay: 0.3s;
        }

        .delay-400 {
            transition-delay: 0.4s;
        }

        .delay-500 {
            transition-delay: 0.5s;
        }

        .delay-600 {
            transition-delay: 0.6s;
        }

        .delay-700 {
            transition-delay: 0.7s;
        }

        .tab-trigger {
            border: 1px solid #d6d3d1;
            color: #57534e;
            transition: all 0.3s ease;
        }

        .tab-trigger.active {
            background: #1c1917;
            border-color: #1c1917;
            color: #fff;
            box-shadow: 0 8px 24px rgba(28, 25, 23, 0.16);
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
            animation: panelIn 0.45s ease;
        }

        @keyframes panelIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .accordion-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .accordion-item.active .accordion-panel {
            max-height: 240px;
        }

        .accordion-icon {
            transition: transform 0.35s ease;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

        .tilt-card {
            transform-style: preserve-3d;
            transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform;
        }

        @keyframes float {

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

            50% {
                transform: translateY(-10px);
            }
        }

        .animate-float {
            animation: float 5.5s ease-in-out infinite;
        }

        @keyframes pulseHalo {
            0% {
                transform: scale(1);
                opacity: 0.35;
            }

            70% {
                transform: scale(1.35);
                opacity: 0;
            }

            100% {
                transform: scale(1.35);
                opacity: 0;
            }
        }

        .pulse-halo {
            animation: pulseHalo 2.6s ease-out infinite;
        }

        .count-up {
            font-variant-numeric: tabular-nums;
        }

        .hero-model-card {
            cursor: pointer;
            transition: transform 0.45s ease, border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
        }

        .hero-model-card.active {
            border-color: #1c1917;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 16px 34px rgba(28, 25, 23, 0.12);
            transform: translateY(-4px);
        }

        .hero-model-card.active .text-stroke-outline {
            -webkit-text-stroke: 1px rgba(0, 0, 0, 1);
        }

        /* BEAM BUTTON ANIMATION */
        @keyframes borderRotate {
            100% {
                background-position: 0% 50%;
            }
        }

        .btn-beam {
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .btn-beam::before {
            content: "";
            position: absolute;
            inset: -2px;
            z-index: -1;
            background: conic-gradient(from 90deg at 50% 50%, #E2E8F0 0%, #000000 50%, #E2E8F0 100%);
            animation: spin 4s linear infinite;
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .btn-beam:hover::before {
            opacity: 1;
        }

        .btn-beam-content {
            background-color: #1c1917;
            color: white;
            position: relative;
            z-index: 10;
            width: 100%;
            height: 100%;
            border-radius: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-load {
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.8s ease-out;
        }

        .nav-load.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            overflow: hidden;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            transform: scale(1);
            transition: transform 10s ease-out;
        }

        .carousel-slide.active img {
            transform: scale(1.08);
        }

        /* FLASHLIGHT EFFECT */
        .flashlight-card {
            background: rgba(255, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
        }

        .flashlight-card::before {
            content: "";
            position: absolute;
            inset: 0px;
            background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
                    rgba(255, 255, 255, 0.8),
                    transparent 40%);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
            z-index: 2;
        }

        .flashlight-card:hover::before {
            opacity: 1;
        }

        /* MARQUEE */
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .animate-marquee {
            display: flex;
            width: max-content;
            animation: marquee 30s linear infinite;
        }

        @keyframes aurora {
            0%,
            100% {
                background-position: 0% 30%, 100% 70%, 50% 50%;
            }

            50% {
                background-position: 100% 70%, 0% 30%, 50% 50%;
            }
        }

        /* GRID BACKGROUND */
        .bg-grid {
            background-size: 40px 40px;
            background-image:
                linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
        }

        /* NOISE GRAIN */
        .noise {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.04;
            pointer-events: none;
            z-index: 9999;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* CUSTOM SCROLLBAR */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #EAEAE5;
        }

        ::-webkit-scrollbar-thumb {
            background: #d6d3d1;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #a8a29e;
        }
