:root {
            --orange: #ff6500;
            --orange: #ff6500;
            --orange-2: #ff8a38;
            --orange-3: #ffb27a;
            --black: #090909;
            --black-2: #101010;
            --black-3: #161616;
            --white: #ffffff;
            --white-2: #f7f7f5;
            --white-3: #eeeeeb;
            --gray: #777;
            --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: 92vh; 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; animation: kickerFloat 4s ease-in-out infinite;
        }
        .kicker-dot {
            width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
            box-shadow: 0 0 0 0 rgba(255,101,0,.4); 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); }
        }
        @keyframes kickerFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .hero h1 {
            max-width: 980px; margin: 25px 0;
            font-size: clamp(3.1rem, 7.2vw, 7rem);
            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);
        }
        .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);
        }

        .hero-stage {
            position: relative; min-height: 500px;
            display: flex; align-items: center; justify-content: center;
        }

        .method-orbit {
            position: relative; width: 320px; height: 320px;
        }
        .orbit-ring {
            position: absolute; inset: 0; border: 1px dashed rgba(255,101,0,.28);
            border-radius: 50%; animation: spin 22s linear infinite;
        }
        .orbit-ring.inner {
            inset: 38px; border-style: solid; border-color: rgba(0,0,0,.08);
            animation-direction: reverse; animation-duration: 16s;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        .orbit-core {
            position: absolute; inset: 92px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 30%, #fff, #f3f3f1 55%, #e5e5e2);
            box-shadow: 0 30px 70px rgba(0,0,0,.14), inset 0 0 40px rgba(255,101,0,.08);
            display: grid; place-items: center;
            animation: coreFloat 5s ease-in-out infinite;
        }
        .orbit-core span {
            font-family: "Space Grotesk"; font-weight: 700; font-size: 1.4rem; letter-spacing: -.06em;
        }
        @keyframes coreFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .phase-chip {
            position: absolute; display: inline-flex; align-items: center; gap: 8px;
            padding: 9px 12px; background: rgba(255,255,255,.94);
            border: 1px solid rgba(255,101,0,.2); border-radius: 14px;
            box-shadow: 0 16px 36px rgba(0,0,0,.08);
            font-size: .72rem; font-weight: 600;
            animation: floaty 4s ease-in-out infinite;
        }
        .phase-chip i { color: var(--orange); }
        .phase-chip em {
            font-style: normal; font-family: "DM Mono"; font-size: .55rem;
            color: var(--orange); letter-spacing: .08em;
        }
        .pc-1 { top: 6%; left: -8%; }
        .pc-2 { top: 18%; right: -18%; animation-delay: 1s; }
        .pc-3 { bottom: 16%; left: -20%; animation-delay: 2s; }
        .pc-4 { bottom: 4%; right: -8%; animation-delay: 3s; }
        @keyframes floaty {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        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: 820px; font-size: clamp(2.5rem, 5vw, 5.2rem); 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-track:hover { animation-play-state: paused; }
        .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%); }
        }

        .belief { padding: 120px 0 80px; background: var(--white-2); overflow: hidden; }
        .belief::before {
            content: ""; position: absolute; width: 500px; height: 500px;
            right: -300px; top: 10%; border: 1px solid rgba(255,101,0,.08); border-radius: 50%;
        }
        .against {
            display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch;
        }
        .against-col {
            padding: 32px 28px; border-radius: 22px; border: 1px solid rgba(0,0,0,.07);
            background: rgba(255,255,255,.75);
        }
        .against-col.dream {
            background: var(--black); color: #fff; border-color: transparent;
        }
        .against-col h3 { font-size: 1.4rem; margin: 10px 0 14px; }
        .against-col p { margin: 0; color: #777; font-size: .88rem; line-height: 1.75; }
        .dream p { color: #999; }
        .versus {
            display: grid; place-items: center;
            font-family: "DM Mono"; font-size: .62rem; letter-spacing: .14em; color: var(--orange);
        }

        .phases { padding: 40px 0 80px; background: #fff; }
        .phase {
            padding: 90px 0;
            border-top: 1px solid rgba(0,0,0,.06);
        }
        .phase:first-child { border-top: 0; padding-top: 30px; }
        .phase-num {
            color: var(--orange); font-family: "DM Mono";
            font-size: .68rem; letter-spacing: .14em;
        }
        .phase h3 {
            font-size: clamp(2rem, 3.6vw, 3.4rem);
            line-height: .95; margin: 12px 0 18px;
        }
        .phase .lead { color: #666; font-size: .98rem; line-height: 1.8; max-width: 540px; }

        .split-list { list-style: none; padding: 0; margin: 22px 0 0; }
        .split-list li {
            display: flex; gap: 12px; padding: 11px 0;
            border-bottom: 1px solid rgba(0,0,0,.06);
            font-size: .86rem; color: #444;
        }
        .split-list i { color: var(--orange); margin-top: 2px; }

        .lane {
            display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px;
        }
        .lane-card {
            padding: 22px 20px; border-radius: 18px;
            border: 1px solid rgba(0,0,0,.07); background: var(--white-2);
        }
        .lane-card.dark {
            background: #121212; color: #fff; border-color: transparent;
        }
        .lane-card small {
            display: block; font-family: "DM Mono"; font-size: .55rem;
            letter-spacing: .1em; text-transform: uppercase;
            color: var(--orange); margin-bottom: 10px;
        }
        .lane-card p { margin: 0; font-size: .82rem; line-height: 1.7; color: #666; }
        .lane-card.dark p { color: #999; }

        .preview {
            position: relative; min-height: 440px; border-radius: 25px; overflow: hidden;
            background: #121212; transition: transform .5s var(--ease), box-shadow .5s ease;
        }
        .preview.peach { background: #fff0e7; }
        .preview.paper { background: var(--white-2); border: 1px solid rgba(0,0,0,.06); }
        .preview:hover { transform: translateY(-8px); box-shadow: 0 35px 80px rgba(0,0,0,.14); }
        .preview-ui {
            position: absolute; top: 40px; left: 8%; width: 84%; height: 300px;
            padding: 16px; background: white; border-radius: 18px;
            box-shadow: 0 30px 70px rgba(0,0,0,.28);
            transform: perspective(1000px) rotateX(5deg); transition: .5s var(--ease);
        }
        .preview:hover .preview-ui {
            transform: perspective(1000px) rotateX(0) translateY(-10px);
        }
        .ui-top {
            display: flex; align-items: center; justify-content: space-between;
            padding-bottom: 12px; border-bottom: 1px solid #eee;
            font-family: "DM Mono"; font-size: .55rem; color: #aaa; letter-spacing: .06em;
        }
        .ui-dots { display: flex; gap: 4px; }
        .ui-dots span { width: 6px; height: 6px; border-radius: 50%; background: #ddd; }
        .ui-grid {
            display: grid; grid-template-columns: 70px 1fr; gap: 12px;
            height: calc(100% - 32px); padding-top: 14px;
        }
        .ui-side { background: #f5f5f5; border-radius: 8px; }
        .ui-main { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
        .ui-box { background: #f3f3f3; border-radius: 8px; min-height: 46px; }
        .ui-box.big { grid-column: span 2; min-height: 86px; background: linear-gradient(135deg,#fff,#f4f4f4); }
        .ui-box.orange { background: rgba(255,101,0,.82); }

        .choice {
            padding: 110px 0;
            background: var(--black); color: #fff; overflow: hidden;
        }
        .choice .section-description { color: #777; }
        .choice-box {
            position: relative; padding: 48px 40px; border-radius: 28px;
            border: 1px solid rgba(255,255,255,.08);
            background: rgba(255,255,255,.03); overflow: hidden;
        }
        .choice-box::before {
            content: ""; position: absolute; width: 380px; height: 380px;
            right: -140px; top: -180px; border: 1px solid rgba(255,101,0,.25);
            border-radius: 50%; animation: spin 14s linear infinite;
        }
        .choice-box h3 {
            position: relative; z-index: 2;
            font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 10px 0 16px;
        }
        .choice-box p { position: relative; z-index: 2; color: #999; max-width: 560px; line-height: 1.8; margin: 0; }

        .rhythm { padding: 110px 0; background: var(--white-2); }
        .beat {
            display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
            padding: 26px 0; border-bottom: 1px solid rgba(0,0,0,.07);
        }
        .beat:first-of-type { border-top: 1px solid rgba(0,0,0,.07); }
        .beat h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin: 0 0 6px; }
        .beat p { margin: 0; color: #777; font-size: .86rem; max-width: 520px; }
        .beat-tag {
            font-family: "DM Mono"; font-size: .58rem; letter-spacing: .1em;
            color: var(--orange); white-space: nowrap;
        }

        .principles { padding: 110px 0; background: #fff; }
        .principle {
            height: 100%; padding: 28px 24px; border-radius: 22px;
            border: 1px solid rgba(0,0,0,.07); background: rgba(255,255,255,.8);
            transition: .45s var(--ease);
        }
        .principle:hover {
            transform: translateY(-8px);
            border-color: rgba(255,101,0,.3);
            box-shadow: 0 30px 70px rgba(0,0,0,.08);
        }
        .principle-index {
            font-family: "DM Mono"; font-size: .58rem; color: #ccc; letter-spacing: .1em;
        }
        .principle h3 { font-size: 1.2rem; margin: 16px 0 10px; }
        .principle p { margin: 0; color: #777; font-size: .84rem; line-height: 1.7; }

        .future { padding: 110px 0; background: #fff; overflow: hidden; }
        .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: futureOrbit 10s linear infinite;
        }
        .future-box::after {
            content: ""; position: absolute; width: 700px; height: 1px;
            right: -200px; top: 50%;
            background: linear-gradient(90deg, transparent, rgba(255,101,0,.6), transparent);
            transform: rotate(-35deg);
        }
        @keyframes futureOrbit { to { transform: rotate(360deg); } }
        .future-box h2 {
            position: relative; z-index: 3; max-width: 850px;
            font-size: clamp(2.5rem, 5.6vw, 5.2rem); 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; transition: .2s; }
        .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; }
        .reveal.delay-3 { transition-delay: .24s; }

        @media (max-width: 991px) {
            .hero { padding-top: 140px; padding-bottom: 50px; }
            .hero-stage { min-height: 420px; margin-top: 24px; }
            .against { grid-template-columns: 1fr; }
            .versus { padding: 4px 0; }
            .lane { grid-template-columns: 1fr; }
            .future-box { padding: 55px 28px; }
            .pc-1, .pc-3 { left: -2%; }
            .pc-2, .pc-4 { right: -2%; }
        }
        @media (max-width: 575px) {
            .navbar { width: calc(100% - 16px); top: 9px; }
            .hero h1 { font-size: 3.05rem; }
            .belief, .choice, .rhythm, .principles, .future { padding: 85px 0; }
            .section-title { font-size: 2.6rem; }
            .phase-chip { display: none; }
            .method-orbit { width: 260px; height: 260px; }
            .orbit-core { inset: 74px; }
        }
