        :root {
            --primary: #D8A45A;
            --bg: #020202;
        }

        .cur-glow {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            z-index: 1000000;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(216, 164, 90, 0.38), rgba(216, 164, 90, 0.04) 42%, transparent 68%);
            mix-blend-mode: screen;
            transition: opacity 0.6s, width 0.5s ease, height 0.5s ease;
        }

        .cur-glow.on {
            opacity: 1;
        }

        .cur-glow.hot {
            width: 520px;
            height: 520px;
            background: radial-gradient(circle, rgba(216, 164, 90, 0.25), rgba(216, 164, 90, 0.06) 42%, transparent 68%);
        }

        body {
            background-color: var(--bg);
            color: white;
            cursor: none;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .ambient-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(circle at 15% 30%, rgba(216, 164, 90, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 85% 70%, rgba(255, 138, 29, 0.02) 0%, transparent 40%);
        }

        @media (pointer: coarse) {
            body {
                cursor: auto;
            }

            #cursor-dot,
            #cursor-outline,
            .cur-glow {
                display: none !important;
            }
        }

        html.lenis,
        html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        #cursor-dot {
            position: fixed;
            top: 0;
            left: 0;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1000000;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
        }

        #cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(216, 164, 90, 0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1000000;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #cursor-text {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
            position: absolute;
            white-space: nowrap;
        }

        .cursor-hover #cursor-outline {
            width: 80px;
            height: 80px;
            background: rgba(216, 164, 90, 0.1);
            border-color: transparent;
        }

        .cursor-view #cursor-outline {
            width: 90px;
            height: 90px;
            background: rgba(216, 164, 90, 0.9);
            border-color: transparent;
            mix-blend-mode: normal;
        }

        .cursor-view #cursor-dot {
            opacity: 0;
        }

        .cursor-view #cursor-text {
            opacity: 1;
            color: black;
        }

        #preloader {
            position: fixed;
            inset: 0;
            background: var(--bg);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .loader-mask {
            position: absolute;
            inset: 0;
            background: #050505;
            transform-origin: top;
            z-index: -1;
        }

        .loader-text {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            text-transform: uppercase;
            color: transparent;
            -webkit-text-stroke: 1px rgba(216, 164, 90, 0.5);
            letter-spacing: 0.3em;
        }

        .outline-text {
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
        }

        .text-gold {
            background: linear-gradient(135deg, #D8A45A, #FF8A1D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        ::-webkit-scrollbar {
            display: none;
        }

        .glass2 {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .process-card {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            height: 100vh;
            height: 100svh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-origin: top center;
            will-change: transform, opacity, filter;
            z-index: 10;
        }

        .card-inner {
            width: 90%;
            max-width: 1200px;
            height: 75vh;
            height: 75svh;
            background: var(--brand-surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 3rem;
            overflow-y: auto;
            -ms-overflow-style: none;
            scrollbar-width: none;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        @media (min-width: 1024px) {
            .card-inner {
                padding: 6rem;
                height: auto;
                min-height: 60vh;
            }
        }

        details {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        summary {
            cursor: pointer;
            list-style: none;
            transition: color 0.3s ease;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary:hover {
            color: var(--primary);
        }

        details[open] summary {
            color: var(--primary);
            padding-bottom: 1rem;
        }

/* Footer number */
.footer-number {
    display: inline-block;
    position: relative;
    top: -0.14em;
}
