:root {
            --orange: #ff6500;
            --orange: #ff6500;
            --black: #090909;
            --white: #ffffff;
            --white-2: #f7f7f5;
            --border: rgba(0,0,0,.09);
            --ease: cubic-bezier(.16,1,.3,1);
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            font-family: "Inter", sans-serif;
            color: var(--black);
            background: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "Space Grotesk", sans-serif;
            letter-spacing: -.045em;
        }

        a { text-decoration: none; }
        ::selection { color: white; background: var(--orange); }

        .cursor-dot {
            position: fixed; width: 7px; height: 7px; left: 0; top: 0;
            background: var(--orange); border-radius: 50%;
            pointer-events: none; z-index: 99999; transform: translate(-50%,-50%);
        }
        .cursor-ring {
            position: fixed; width: 34px; height: 34px; left: 0; top: 0;
            border: 1px solid rgba(255,101,0,.5); border-radius: 50%;
            pointer-events: none; z-index: 99998; transform: translate(-50%,-50%);
            transition: width .25s ease, height .25s ease, background .25s ease;
        }
        body.cursor-active .cursor-ring {
            width: 55px; height: 55px; background: rgba(255,101,0,.07);
        }
        @media (max-width: 991px) {
            .cursor-dot, .cursor-ring { display: none; }
        }

        .scroll-progress {
            position: fixed; top: 0; left: 0; height: 3px; width: 0%;
            z-index: 10001;
            background: linear-gradient(90deg, var(--orange), #ffb27a, var(--orange));
            box-shadow: 0 0 15px rgba(255,101,0,.7);
        }

        .navbar {
            position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
            width: min(1200px, calc(100% - 30px));
            padding: 9px 10px; z-index: 5000;
            background: rgba(255,255,255,.76);
            backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
            border: 1px solid rgba(0,0,0,.08); border-radius: 18px;
            box-shadow: 0 20px 60px rgba(0,0,0,.08);
            transition: .35s var(--ease);
        }
        .navbar.scrolled { top: 10px; box-shadow: 0 20px 70px rgba(0,0,0,.13); }

        .brand {
            display: inline-flex; align-items: center; gap: 10px;
            color: var(--black); font-family: "Space Grotesk";
            font-weight: 700; font-size: 1.15rem; letter-spacing: -.06em;
        }
        .brand-symbol {
            position: relative; width: 35px; height: 35px;
            display: grid; place-items: center; color: white;
            background: var(--black); border-radius: 10px; overflow: hidden;
        }
        .brand-symbol::before {
            content: ""; position: absolute; width: 20px; height: 20px;
            border: 2px solid var(--orange); border-radius: 50%;
            animation: brandOrbit 4s linear infinite;
        }
        .brand-symbol i { position: relative; z-index: 2; font-size: 13px; }
        @keyframes brandOrbit { to { transform: rotate(360deg); } }

        .nav-link {
            color: #555 !important; font-size: .78rem; font-weight: 600;
            padding: 10px 14px !important; transition: .25s ease;
        }
        .nav-link:hover, .nav-link.active { color: var(--orange) !important; }
        .nav-cta {
            color: white !important; background: var(--black);
            border-radius: 11px; padding: 10px 16px !important;
            transition: .3s var(--ease);
        }
        .nav-cta:hover {
            color: white !important; background: var(--orange); transform: translateY(-2px);
        }

        .hero {
            min-height: 82vh; position: relative; overflow: hidden;
            display: flex; align-items: center; padding: 160px 0 80px; background: #fff;
        }
        .hero-grid {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px);
            background-size: 55px 55px;
            mask-image: linear-gradient(to bottom, black, transparent 90%);
            animation: gridMove 18s linear infinite;
        }
        @keyframes gridMove {
            from { background-position: 0 0, 0 0; }
            to { background-position: 55px 55px, 55px 55px; }
        }
        .hero-light {
            position: absolute; width: 650px; height: 650px; border-radius: 50%;
            background: radial-gradient(circle, rgba(255,101,0,.16), rgba(255,101,0,.05) 35%, transparent 70%);
            filter: blur(20px); pointer-events: none; transform: translate(-50%,-50%);
        }
        .energy-line {
            position: absolute; width: 900px; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,101,0,.45), transparent);
            transform: rotate(-32deg); opacity: .6;
            animation: energyMove 8s ease-in-out infinite;
        }
        .energy-line.one { top: 28%; left: -200px; }
        .energy-line.two { top: 65%; right: -300px; animation-delay: 2s; }
        @keyframes energyMove {
            0%, 100% { transform: translateX(-60px) rotate(-32deg); opacity: 0; }
            50% { transform: translateX(120px) rotate(-32deg); opacity: .8; }
        }

        .hero-kicker {
            display: inline-flex; align-items: center; gap: 9px;
            padding: 7px 12px; color: var(--orange);
            background: rgba(255,101,0,.07); border: 1px solid rgba(255,101,0,.15);
            border-radius: 100px; font-family: "DM Mono"; font-size: .65rem;
            letter-spacing: .04em;
        }
        .kicker-dot {
            width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
            animation: dotPulse 2s infinite;
        }
        @keyframes dotPulse {
            70% { box-shadow: 0 0 0 9px rgba(255,101,0,0); }
            100% { box-shadow: 0 0 0 0 rgba(255,101,0,0); }
        }

        .hero h1 {
            max-width: 980px; margin: 25px 0;
            font-size: clamp(3rem, 7vw, 6.6rem);
            line-height: .88; font-weight: 700; letter-spacing: -.075em;
        }
        .hero h1 .outline { color: transparent; -webkit-text-stroke: 1.5px var(--black); }
        .hero h1 .orange { color: var(--orange); position: relative; display: inline-block; }
        .hero h1 .orange::after {
            content: ""; position: absolute; height: 5px; width: 55%;
            left: 4px; bottom: -9px; background: var(--orange); border-radius: 20px;
            animation: underline 3s ease-in-out infinite;
        }
        @keyframes underline {
            0%, 100% { width: 35%; }
            50% { width: 75%; }
        }
        .hero-description { max-width: 640px; color: #707070; font-size: 1rem; line-height: 1.8; }
        .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

        .magnetic {
            position: relative; display: inline-flex; align-items: center; gap: 9px;
            padding: 14px 20px; border-radius: 12px; font-size: .85rem; font-weight: 700;
            transition: transform .25s var(--ease); border: 0; cursor: pointer;
        }
        .btn-main {
            color: white; background: var(--orange);
            box-shadow: 0 15px 35px rgba(255,101,0,.23);
        }
        .btn-main:hover { color: white; box-shadow: 0 20px 50px rgba(255,101,0,.32); }
        .btn-secondary {
            color: var(--black); border: 1px solid rgba(0,0,0,.13);
            background: rgba(255,255,255,.7);
        }

        section:not(.hero) { position: relative; }
        .section-label {
            margin-bottom: 12px; color: var(--orange);
            font-family: "DM Mono"; font-size: .65rem;
            letter-spacing: .12em; text-transform: uppercase;
        }
        .section-title {
            max-width: 840px; font-size: clamp(2.4rem, 5vw, 5rem); line-height: .92;
        }
        .section-description { max-width: 650px; color: #777; line-height: 1.8; }

        .index-strip { background: var(--black); color: white; overflow: hidden; }
        .index-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
        .index-item {
            display: flex; align-items: center; gap: 16px;
            padding: 18px 36px; color: rgba(255,255,255,.55);
            font-family: "DM Mono"; font-size: .68rem; letter-spacing: .12em;
            text-transform: uppercase; white-space: nowrap;
            border-right: 1px solid rgba(255,255,255,.08);
        }
        .index-item span { color: var(--orange); }
        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .story { padding: 120px 0 80px; background: var(--white-2); }
        .story p.lead { font-size: 1.15rem; line-height: 1.75; color: #444; max-width: 720px; }
        .belief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
        .belief {
            padding: 26px 24px; border-radius: 22px;
            background: #fff; border: 1px solid rgba(0,0,0,.07);
            transition: .45s var(--ease);
        }
        .belief:hover {
            transform: translateY(-8px);
            border-color: rgba(255,101,0,.3);
            box-shadow: 0 24px 50px rgba(0,0,0,.08);
        }
        .belief h3 { font-size: 1.2rem; margin-bottom: 8px; }
        .belief p { margin: 0; color: #777; font-size: .86rem; line-height: 1.7; }

        .pricing { padding: 110px 0; background: #fff; }
        .price-grid {
            display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px;
        }
        .price-card {
            position: relative; overflow: hidden;
            padding: 36px 30px 32px; border-radius: 26px;
            border: 1px solid rgba(0,0,0,.08); background: var(--white-2);
            height: 100%;
            transition: transform .5s var(--ease), box-shadow .5s ease;
        }
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 70px rgba(0,0,0,.1);
        }
        .price-card.featured {
            background: var(--black); color: #fff; border-color: transparent;
        }
        .price-card.featured::before {
            content: ""; position: absolute; width: 320px; height: 320px;
            right: -120px; top: -160px; border: 1px solid rgba(255,101,0,.28);
            border-radius: 50%; animation: spin 14s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }
        .price-kicker {
            font-family: "DM Mono"; font-size: .58rem; letter-spacing: .12em;
            text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
        }
        .price-card h3 {
            position: relative; z-index: 1;
            font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 8px;
        }
        .from {
            position: relative; z-index: 1;
            font-family: "DM Mono"; font-size: .62rem; letter-spacing: .12em;
            text-transform: uppercase; color: #888; margin-bottom: 4px;
        }
        .featured .from { color: #777; }
        .amount {
            position: relative; z-index: 1;
            font-family: "Space Grotesk"; font-weight: 700;
            font-size: clamp(2.6rem, 4vw, 3.6rem); letter-spacing: -.06em;
            line-height: 1; margin-bottom: 8px;
        }
        .amount small {
            font-size: .38em; letter-spacing: 0; font-weight: 600; color: #888;
        }
        .featured .amount small { color: #888; }
        .price-card > p {
            position: relative; z-index: 1;
            color: #777; font-size: .88rem; line-height: 1.7; margin: 12px 0 20px;
        }
        .featured > p { color: #999; }
        .inc { list-style: none; padding: 0; margin: 0 0 24px; position: relative; z-index: 1; }
        .inc li {
            display: flex; gap: 10px; padding: 8px 0;
            border-bottom: 1px solid rgba(0,0,0,.06);
            font-size: .84rem; color: #444;
        }
        .featured .inc li { border-bottom-color: rgba(255,255,255,.08); color: #ddd; }
        .inc i { color: var(--orange); }
        .price-note {
            margin-top: 22px; color: #888; font-size: .8rem; line-height: 1.7; max-width: 720px;
        }

        .bands { padding: 0 0 110px; background: #fff; }
        .band {
            display: flex; justify-content: space-between; gap: 24px; align-items: flex-start;
            padding: 26px 0; border-bottom: 1px solid rgba(0,0,0,.07);
        }
        .band:first-of-type { border-top: 1px solid rgba(0,0,0,.07); }
        .band h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin: 0 0 6px; }
        .band p { margin: 0; color: #777; font-size: .86rem; max-width: 560px; }
        .band-price {
            font-family: "Space Grotesk"; font-weight: 700; white-space: nowrap;
            color: var(--orange);
        }

        .stance { padding: 110px 0; background: var(--black); color: #fff; }
        .stance .section-description { color: #777; }
        .rule {
            padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.08);
        }
        .rule:last-child { border-bottom: 0; }
        .rule-num { color: var(--orange); font-family: "DM Mono"; font-size: .62rem; letter-spacing: .12em; }
        .rule h3 { margin: 8px 0 6px; font-size: 1.45rem; }
        .rule p { margin: 0; color: #888; font-size: .86rem; line-height: 1.7; max-width: 520px; }

        .future { padding: 110px 0; background: var(--white-2); }
        .future-box {
            position: relative; padding: 80px 60px; overflow: hidden;
            color: white; background: var(--black); border-radius: 30px;
        }
        .future-box::before {
            content: ""; position: absolute; width: 500px; height: 500px;
            top: -280px; right: -120px; border: 1px solid rgba(255,101,0,.25);
            border-radius: 50%; animation: spin 10s linear infinite;
        }
        .future-box h2 {
            position: relative; z-index: 3; max-width: 850px;
            font-size: clamp(2.4rem, 5.4vw, 5rem); line-height: .9;
        }
        .future-box p { position: relative; z-index: 3; max-width: 620px; color: #777; line-height: 1.8; }

        footer {
            padding: 65px 0 25px; border-top: 1px solid rgba(0,0,0,.08); background: white;
        }
        .footer-description { max-width: 350px; color: #777; font-size: .8rem; line-height: 1.8; }
        .footer-title {
            margin-bottom: 17px; font-family: "DM Mono"; font-size: .6rem;
            color: #aaa; text-transform: uppercase; letter-spacing: .1em;
        }
        .footer-links { list-style: none; padding: 0; margin: 0; }
        .footer-links li { margin-bottom: 9px; }
        .footer-links a { color: #666; font-size: .78rem; }
        .footer-links a:hover { color: var(--orange); }
        .footer-bottom {
            margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--border);
            color: #aaa; font-family: "DM Mono"; font-size: .55rem;
        }

        .reveal {
            opacity: 0; transform: translateY(45px) scale(.98);
            transition: opacity .9s var(--ease), transform .9s var(--ease);
        }
        .reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
        .reveal.delay-1 { transition-delay: .08s; }
        .reveal.delay-2 { transition-delay: .16s; }

        @media (max-width: 991px) {
            .hero { padding-top: 140px; }
            .price-grid, .belief-grid { grid-template-columns: 1fr; }
            .future-box { padding: 55px 28px; }
        }
        @media (max-width: 575px) {
            .navbar { width: calc(100% - 16px); top: 9px; }
            .hero h1 { font-size: 2.9rem; }
            .section-title { font-size: 2.5rem; }
            .band { flex-direction: column; gap: 8px; }
        }
