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

        :root {
            --bg: #ffffff;
            --text: #0f1720;
            --muted: #5f6b76;
            --line: rgba(0, 0, 0, 0.08);
            --panel: rgba(255, 255, 255, 0.72);
        }

        html {
            scroll-behavior: smooth;
            background: #ffffff;
        }

        body {
            margin: 0;
            background: transparent;
            color: var(--text);
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                "Helvetica Neue", sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .grain {
            position: fixed;
            inset: 0;
            z-index: -1;
            opacity: 0.03;
            background-image:
                linear-gradient(rgba(0, 0, 0, .5) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 0, 0, .5) 1px, transparent 1px);
            background-size: 4px 4px;
            pointer-events: none;
        }

        .marketTicker {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 60;
            min-height: 42px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: rgba(15, 23, 32, 0.94);
            color: #ffffff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
            will-change: transform;
            contain: layout paint;
        }

        .marketTickerTrack {
            display: flex;
            align-items: center;
            gap: 38px;
            min-width: max-content;
            padding: 0 28px;
            animation: tickerMove 28s linear infinite;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
            will-change: transform;
        }

        .marketTickerItem {
            display: inline-flex;
            align-items: baseline;
            gap: 8px;
            white-space: nowrap;
            font-size: 13px;
            letter-spacing: 0.02em;
            opacity: 0.94;
        }

        .marketTickerItem strong {
            font-size: 14px;
            font-weight: 800;
            color: #ffffff;
        }

        .marketTickerItem span {
            color: rgba(255, 255, 255, 0.74);
            font-weight: 650;
        }

        @keyframes tickerMove {
            from {
                transform: translateX(0);
            }

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

        header {
            position: fixed;
            top: 42px;
            left: 0;
            right: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: rgba(255, 255, 255, 0.7);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .headerInner {
            max-width: 1400px;
            margin: auto;
            padding: 20px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .nav {
            display: flex;
            gap: 24px;
        }

        .nav a {
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
        }

        main {
            position: relative;
        }

        .storyPanel {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 164px 40px 120px;
            overflow: hidden;
            background: transparent;
            opacity: 1;
            pointer-events: auto;
        }

        .storyPanel::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(70, 116, 245, 0.055), transparent 34%);
            opacity: 0.9;
        }


        .storyGrid {
            width: 100%;
            max-width: 1400px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .storyGrid.reverse .visual {
            order: -1;
        }

        .copy {
            opacity: 1;
            transform: none;
            filter: none;
            will-change: transform, opacity, filter;
        }

        .eyebrow {
            display: inline-block;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 12px;
            font-weight: 700;
            color: #4674f5;
        }

        h1,
        h2 {
            font-size: clamp(52px, 7vw, 104px);
            line-height: 0.95;
            letter-spacing: -0.06em;
            font-weight: 700;
            margin-bottom: 28px;
            max-width: 900px;
        }

        h2 {
            font-size: clamp(42px, 5vw, 78px);
        }

        p {
            font-size: clamp(18px, 2vw, 24px);
            line-height: 1.6;
            color: var(--muted);
            max-width: 720px;
        }

        .visual {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transform: none;
            filter: none;
            will-change: transform, opacity, filter;
        }

        .visual img {
            width: 100%;
            max-width: 520px;
            object-fit: contain;
            filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.08));
        }

        .performanceSection {
            text-align: center;
        }

        .performanceCards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .performanceCard {
            padding: 40px 30px;
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            opacity: 1;
            transform: none;
            filter: none;
            will-change: transform, opacity, filter;
        }

        .performanceCard strong {
            display: block;
            font-size: 54px;
            line-height: 1;
            letter-spacing: -0.06em;
            margin-bottom: 10px;
        }

        .performanceCard span {
            color: var(--muted);
            font-weight: 600;
        }

        .positions {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-top: 32px;
        }

        .positions li {
            list-style: none;
            font-size: 28px;
            font-weight: 600;
            letter-spacing: -0.03em;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--line);
            opacity: 1;
            transform: none;
            will-change: transform, opacity;
        }

        .whyGrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 80px;
        }

        .whyCard {
            padding: 40px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(16px);
            opacity: 1;
            transform: none;
            filter: none;
            will-change: transform, opacity, filter;
        }

        .whyCard .number {
            font-size: 14px;
            color: #4674f5;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
        }

        .whyCard h3 {
            font-size: 30px;
            line-height: 1.1;
            letter-spacing: -0.04em;
            margin-bottom: 18px;
        }

        .contactCard {
            margin-top: 50px;
            padding: 40px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(16px);
            max-width: 520px;
        }

        .contactCard div {
            margin-bottom: 12px;
            color: var(--muted);
            font-size: 18px;
        }

        .ctaRow {
            display: flex;
            gap: 18px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 28px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all .25s ease;
        }

        .btnPrimary {
            background: #0f1720;
            color: white;
        }

        .btnPrimary:hover {
            transform: translateY(-2px);
        }

        .btnSecondary {
            border: 1px solid rgba(0, 0, 0, 0.12);
            color: #0f1720;
            background: white;
        }

        footer {
            padding: 60px 40px;
            text-align: center;
            color: var(--muted);
            font-size: 14px;
        }

        @media (max-width: 980px) {

            .storyGrid,
            .whyGrid,
            .performanceCards {
                grid-template-columns: 1fr;
            }

            .storyGrid.reverse .visual {
                order: initial;
            }

            .storyPanel {
                position: relative;
                inset: auto;
                min-height: auto;
                height: auto;
                opacity: 1;
                pointer-events: auto;
                padding: 182px 24px 80px;
                overflow: visible;
            }

            .storyScrollSpacer {
                display: none;
            }

            h1,
            h2 {
                font-size: 52px;
            }

            .performanceCard strong {
                font-size: 42px;
            }

            .positions li {
                font-size: 22px;
            }

            .marketTickerTrack {
                gap: 26px;
                animation-duration: 22s;
            }

            .marketTickerItem {
                font-size: 12px;
            }

            .headerInner {
                padding: 18px 20px;
            }

            .nav {
                display: none;
            }
        }