:root {
            --orange: #ff6500;
            --orange: #ff6500;
            --orange-2: #ff8a38;
            --orange-3: #ffb27a;
            --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(--orange);
            border-radius: 11px; padding: 10px 16px !important;
            transition: .3s var(--ease);
        }
        .nav-cta:hover {
            color: white !important; background: var(--black); transform: translateY(-2px);
        }

        .hero {
            position: relative; overflow: hidden;
            padding: 160px 0 70px; 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 88%);
            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: 70%; 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);
            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); }
        }

        .hero h1 {
            max-width: 900px; margin: 22px 0 18px;
            font-size: clamp(2.8rem, 6.4vw, 6.2rem);
            line-height: .9; font-weight: 700; letter-spacing: -.07em;
        }
        .hero h1 .orange { color: var(--orange); }
        .hero-description { max-width: 620px; color: #707070; font-size: 1rem; line-height: 1.8; }

        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.3rem, 4.6vw, 4.6rem); line-height: .92;
        }
        .section-description { max-width: 650px; color: #777; line-height: 1.8; }

        .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);
        }

        .offer { padding: 20px 0 70px; background: #fff; }
        .offer-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
        }
        .offer-card {
            padding: 26px 24px; border-radius: 22px; min-height: 180px;
            background: var(--white-2); border: 1px solid rgba(0,0,0,.07);
            transition: .45s var(--ease);
        }
        .offer-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255,101,0,.3);
            box-shadow: 0 24px 50px rgba(0,0,0,.08);
        }
        .offer-icon {
            width: 44px; height: 44px; display: grid; place-items: center;
            color: var(--orange); background: rgba(255,101,0,.08);
            border: 1px solid rgba(255,101,0,.12); border-radius: 13px; margin-bottom: 16px;
        }
        .offer-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
        .offer-card p { margin: 0; color: #777; font-size: .84rem; line-height: 1.65; }

        .intake { padding: 40px 0 100px; background: var(--white-2); }
        .form-shell {
            background: #fff; border: 1px solid rgba(0,0,0,.07);
            border-radius: 28px; padding: 36px 32px 40px;
            box-shadow: 0 30px 70px rgba(0,0,0,.06);
        }

        .svc-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
        }
        .svc {
            position: relative; display: block; cursor: pointer;
        }
        .svc input { position: absolute; opacity: 0; pointer-events: none; }
        .svc-face {
            height: 100%; padding: 18px 16px 16px; border-radius: 18px;
            border: 1px solid rgba(0,0,0,.1); background: #fff;
            transition: .3s var(--ease);
        }
        .svc:hover .svc-face { border-color: rgba(255,101,0,.35); }
        .svc input:checked + .svc-face {
            border-color: var(--orange);
            background: rgba(255,101,0,.07);
            box-shadow: 0 10px 24px rgba(255,101,0,.12);
        }
        .svc-index {
            font-family: "DM Mono"; font-size: .52rem; letter-spacing: .1em;
            color: #bbb; display: flex; justify-content: space-between;
        }
        .tick {
            width: 16px; height: 16px; border-radius: 50%;
            border: 1px solid #ddd; display: grid; place-items: center;
            font-size: .55rem; color: transparent;
        }
        .svc input:checked + .svc-face .tick {
            background: var(--orange); border-color: var(--orange); color: #fff;
        }
        .svc-face h4 { font-size: 1rem; margin: 10px 0 4px; }
        .svc-face p { margin: 0; color: #777; font-size: .76rem; line-height: 1.5; }

        label.field {
            display: block; margin-bottom: 6px;
            font-family: "DM Mono"; font-size: .58rem;
            letter-spacing: .1em; text-transform: uppercase; color: #888;
        }
        .field-wrap { margin-bottom: 18px; }
        input[type="text"], input[type="email"], select, textarea {
            width: 100%; border: 1px solid rgba(0,0,0,.12);
            border-radius: 14px; padding: 13px 14px;
            font-family: Inter, sans-serif; font-size: .9rem; color: var(--black);
            background: #fff; outline: none; transition: .2s ease;
        }
        textarea { min-height: 140px; resize: vertical; }
        input:focus, select:focus, textarea:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 4px rgba(255,101,0,.12);
        }
        .form-note { color: #888; font-size: .78rem; margin-top: 14px; }
        .form-error {
            display: none; color: #b42318; font-size: .8rem; margin-top: 10px;
        }
        .form-error.show { display: block; }

        .done {
            display: none; text-align: left; padding: 20px 0 8px;
        }
        .done.show { display: block; }
        .done h3 { font-size: 2rem; margin-bottom: 10px; }
        .done p { color: #666; line-height: 1.7; max-width: 520px; }

        .aside-card {
            padding: 26px 24px; border-radius: 22px; margin-bottom: 16px;
            background: #121212; color: #fff;
        }
        .aside-card.light {
            background: #fff; color: var(--black);
            border: 1px solid rgba(0,0,0,.07);
        }
        .aside-card h3 { font-size: 1.25rem; margin: 8px 0 10px; }
        .aside-card p { margin: 0; color: #999; font-size: .84rem; line-height: 1.7; }
        .aside-card.light p { color: #777; }
        .aside-list { list-style: none; padding: 0; margin: 14px 0 0; }
        .aside-list li {
            display: flex; gap: 8px; padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,.08);
            font-size: .82rem; color: #ddd;
        }
        .aside-card.light .aside-list li {
            color: #444; border-bottom-color: rgba(0,0,0,.06);
        }
        .aside-list i { color: var(--orange); }

        .works { padding: 100px 0; background: #fff; }
        .work-mini {
            display: block; height: 100%; min-height: 280px;
            border-radius: 22px; overflow: hidden; position: relative;
            background: #121212; color: #fff;
            transition: transform .45s var(--ease), box-shadow .45s ease;
        }
        .work-mini.peach { background: #fff0e7; color: var(--black); }
        .work-mini:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,0,0,.12); }
        .mini-ui {
            position: absolute; top: 22px; left: 10%; width: 80%; height: 140px;
            background: #fff; border-radius: 14px; padding: 12px;
            box-shadow: 0 18px 36px rgba(0,0,0,.22);
        }
        .ui-top {
            display: flex; justify-content: space-between; align-items: center;
            padding-bottom: 8px; border-bottom: 1px solid #eee;
            font-family: "DM Mono"; font-size: .5rem; color: #aaa;
        }
        .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: 50px 1fr; gap: 8px; height: calc(100% - 24px); padding-top: 10px; }
        .ui-side { background: #f3f3f3; border-radius: 6px; }
        .ui-main { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
        .ui-box { background: #eee; border-radius: 6px; }
        .ui-box.o { background: rgba(255,101,0,.8); }
        .ui-box.b { grid-column: span 2; }
        .work-copy { position: absolute; left: 20px; right: 20px; bottom: 18px; }
        .work-copy span {
            display: inline-block; margin-bottom: 6px;
            font-family: "DM Mono"; font-size: .52rem; letter-spacing: .08em;
            color: var(--orange);
        }
        .work-copy h3 { font-size: 1.15rem; margin: 0 0 4px; }
        .work-copy p { margin: 0; font-size: .78rem; color: rgba(255,255,255,.55); }
        .work-mini.peach .work-copy p { color: #777; }

        .future { padding: 40px 0 110px; background: #fff; }
        .future-box {
            position: relative; padding: 70px 50px; overflow: hidden;
            color: white; background: var(--black); border-radius: 30px;
        }
        .future-box::before {
            content: ""; position: absolute; width: 420px; height: 420px;
            top: -220px; right: -100px; border: 1px solid rgba(255,101,0,.25);
            border-radius: 50%; animation: spin 12s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }
        .future-box h2 {
            position: relative; z-index: 2; max-width: 780px;
            font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: .92;
        }
        .future-box p { position: relative; z-index: 2; max-width: 560px; color: #888; 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(40px) 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) {
            .offer-grid, .svc-grid { grid-template-columns: 1fr 1fr; }
            .hero { padding-top: 140px; }
            .form-shell { padding: 26px 20px; }
            .future-box { padding: 50px 26px; }
        }
        @media (max-width: 575px) {
            .navbar { width: calc(100% - 16px); top: 9px; }
            .hero h1 { font-size: 2.7rem; }
            .offer-grid, .svc-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 2.4rem; }
        }
