: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;
            --gray-2: #aaa;

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

        body.no-scroll { overflow: 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
        ======================================================== */

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


        /* ========================================================
           TOP PROGRESS
        ======================================================== */

        .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
        ======================================================== */

        .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
        ======================================================== */

        .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-content { position: relative; z-index: 10; }

        .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.2rem, 7.4vw, 7.2rem);
            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 STACK VISUAL
        ======================================================== */

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

        .stack {
            position: relative;
            width: 280px;
            height: 340px;
        }

        .stack-card {
            position: absolute;
            inset: 0;
            border-radius: 22px;
            background: #fff;
            border: 1px solid rgba(0,0,0,.08);
            box-shadow: 0 30px 70px rgba(0,0,0,.12);
            padding: 22px;
            transform-style: preserve-3d;
            animation: stackFloat 6s ease-in-out infinite;
        }

        .stack-card.back {
            transform: translate(28px, 22px) rotate(6deg);
            background: #fff0e7;
            animation-delay: .4s;
        }

        .stack-card.mid {
            transform: translate(14px, 10px) rotate(2.5deg);
            background: #121212;
            color: #fff;
            animation-delay: .2s;
        }

        .stack-card.front {
            background: #fff;
        }

        @keyframes stackFloat {
            0%, 100% { translate: 0 0; }
            50% { translate: 0 -12px; }
        }

        .stack-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: "DM Mono";
            font-size: .55rem;
            letter-spacing: .08em;
            color: #aaa;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .stack-title {
            font-family: "Space Grotesk";
            font-size: 1.35rem;
            letter-spacing: -.04em;
            margin-bottom: 8px;
        }

        .stack-bars {
            display: grid;
            gap: 8px;
            margin-top: 22px;
        }

        .bar {
            height: 8px;
            border-radius: 20px;
            background: #eee;
            overflow: hidden;
        }

        .bar span {
            display: block;
            height: 100%;
            width: 62%;
            background: var(--orange);
            border-radius: 20px;
            animation: barGrow 3.2s var(--ease) infinite;
        }

        .bar.slow span { width: 78%; animation-delay: .4s; }
        .bar.mid span { width: 46%; animation-delay: .8s; background: #111; }

        @keyframes barGrow {
            0%, 100% { transform: scaleX(.72); transform-origin: left; }
            50% { transform: scaleX(1); }
        }

        .orbit-chip {
            position: absolute;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            background: rgba(255,255,255,.92);
            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;
            color: var(--black);
            backdrop-filter: blur(10px);
            animation: satelliteFloat 4s ease-in-out infinite;
        }

        .orbit-chip i { color: var(--orange); }
        .chip-1 { top: 8%; left: -8%; }
        .chip-2 { top: 18%; right: -12%; animation-delay: 1s; }
        .chip-3 { bottom: 16%; left: -16%; animation-delay: 2s; }
        .chip-4 { bottom: 8%; right: -6%; animation-delay: 3s; }

        @keyframes satelliteFloat {
            0%, 100% { transform: translateY(0) rotate(0); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }


        /* ========================================================
           SECTION BASE
        ======================================================== */

        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
        ======================================================== */

        .index-strip {
            background: var(--black);
            color: white;
            padding: 0;
            overflow: hidden;
        }

        .index-track {
            display: flex;
            gap: 0;
            animation: marquee 32s linear infinite;
            width: max-content;
        }

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


        /* ========================================================
           MAP
        ======================================================== */

        .map {
            padding: 120px 0 70px;
            background: var(--white-2);
            overflow: hidden;
        }

        .map::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            right: -300px;
            top: 12%;
            border: 1px solid rgba(255,101,0,.08);
            border-radius: 50%;
        }

        .sol-nav {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .sol-nav-card {
            position: relative;
            display: block;
            padding: 26px 24px 24px;
            min-height: 170px;
            background: rgba(255,255,255,.72);
            border: 1px solid rgba(0,0,0,.07);
            border-radius: 22px;
            overflow: hidden;
            color: var(--black);
            transition: transform .5s var(--ease), box-shadow .5s ease, border-color .5s ease;
        }

        .sol-nav-card::before {
            content: "";
            position: absolute;
            width: 160px;
            height: 160px;
            top: -90px;
            right: -80px;
            border: 1px solid rgba(255,101,0,.2);
            border-radius: 50%;
            transition: .6s var(--ease);
        }

        .sol-nav-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255,101,0,.3);
            box-shadow: 0 30px 70px rgba(0,0,0,.09);
            color: var(--black);
        }

        .sol-nav-card:hover::before {
            transform: scale(2.4);
            border-color: rgba(255,101,0,.08);
        }

        .sol-nav-index {
            position: absolute;
            top: 20px;
            right: 22px;
            color: #ddd;
            font-family: "DM Mono";
            font-size: .6rem;
        }

        .sol-nav-icon {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            margin-bottom: 18px;
            color: var(--orange);
            background: rgba(255,101,0,.08);
            border: 1px solid rgba(255,101,0,.1);
            border-radius: 14px;
            transition: .4s var(--ease);
        }

        .sol-nav-card:hover .sol-nav-icon {
            background: var(--orange);
            color: white;
            transform: translateY(-4px) rotate(-6deg) scale(1.06);
            box-shadow: 0 12px 25px rgba(255,101,0,.2);
        }

        .sol-nav-card h3 {
            font-size: 1.15rem;
            margin-bottom: 6px;
        }

        .sol-nav-card p {
            margin: 0;
            color: #777;
            font-size: .82rem;
            line-height: 1.6;
        }


        /* ========================================================
           SOLUTION DEEP DIVES
        ======================================================== */

        .dives {
            padding: 40px 0 100px;
            background: #fff;
        }

        .dive {
            padding: 90px 0;
            border-top: 1px solid rgba(0,0,0,.06);
        }

        .dive:first-child { border-top: 0; padding-top: 40px; }

        .dive-number {
            color: var(--orange);
            font-family: "DM Mono";
            font-size: .68rem;
            letter-spacing: .14em;
        }

        .dive h3 {
            font-size: clamp(2rem, 3.6vw, 3.4rem);
            line-height: .95;
            margin: 12px 0 18px;
        }

        .dive p.lead {
            color: #666;
            font-size: .98rem;
            line-height: 1.8;
            max-width: 540px;
        }

        .chip-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 22px 0 28px;
        }

        .chip {
            padding: 6px 10px;
            border-radius: 100px;
            border: 1px solid rgba(0,0,0,.1);
            font-family: "DM Mono";
            font-size: .58rem;
            letter-spacing: .04em;
            color: #555;
            background: #fff;
        }

        .chip.hot {
            color: var(--orange);
            border-color: rgba(255,101,0,.25);
            background: rgba(255,101,0,.07);
        }

        .out-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .out-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 11px 0;
            border-bottom: 1px solid rgba(0,0,0,.06);
            font-size: .86rem;
            color: #444;
        }

        .out-list li:last-child { border-bottom: 0; }

        .out-list i {
            color: var(--orange);
            margin-top: 2px;
        }

        .preview {
            position: relative;
            min-height: 460px;
            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: 34px;
            left: 8%;
            width: 84%;
            height: 310px;
            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: 72px 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: 48px;
        }

        .ui-box.big {
            grid-column: span 2;
            min-height: 92px;
            background: linear-gradient(135deg, #fff, #f4f4f4);
        }

        .ui-box.orange { background: rgba(255,101,0,.82); }

        .phone-frame {
            position: absolute;
            width: 190px;
            height: 360px;
            left: 50%;
            top: 40px;
            transform: translateX(-50%);
            background: #0d0d0d;
            border-radius: 32px;
            padding: 14px 10px;
            box-shadow: 0 30px 70px rgba(0,0,0,.35);
            border: 1px solid rgba(255,255,255,.08);
        }

        .phone-screen {
            height: 100%;
            background: #fff;
            border-radius: 22px;
            padding: 16px 12px;
            display: grid;
            gap: 8px;
            align-content: start;
        }

        .ph-bar {
            height: 8px;
            width: 42%;
            background: #111;
            border-radius: 20px;
            margin-bottom: 8px;
        }

        .sys-nodes {
            position: absolute;
            inset: 40px 30px 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .node {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 16px;
            padding: 16px;
            color: #fff;
        }

        .node.lit {
            background: rgba(255,101,0,.12);
            border-color: rgba(255,101,0,.28);
        }

        .node small {
            display: block;
            font-family: "DM Mono";
            font-size: .52rem;
            letter-spacing: .1em;
            color: var(--orange);
            margin-bottom: 8px;
        }

        .node strong {
            font-family: "Space Grotesk";
            font-size: 1rem;
        }

        .pulse-line {
            position: absolute;
            left: 50%;
            top: 20%;
            bottom: 20%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--orange), transparent);
            animation: metricLine 5s linear infinite;
        }

        @keyframes metricLine {
            from { transform: translateX(-30%); }
            to { transform: translateX(30%); }
        }


        /* ========================================================
           ENGINES / HOW WE SHIP
        ======================================================== */

        .engines {
            padding: 120px 0;
            background: var(--black);
            color: white;
            overflow: hidden;
        }

        .engines .section-description { color: #777; }

        .engine-card {
            height: 100%;
            padding: 28px 26px;
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 22px;
            background: rgba(255,255,255,.03);
            transition: .45s var(--ease);
        }

        .engine-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255,101,0,.35);
            background: rgba(255,101,0,.06);
        }

        .engine-step {
            color: var(--orange);
            font-family: "DM Mono";
            font-size: .62rem;
            letter-spacing: .12em;
            margin-bottom: 16px;
        }

        .engine-card h3 {
            font-size: 1.35rem;
            margin-bottom: 12px;
        }

        .engine-card p {
            margin: 0;
            color: #888;
            font-size: .85rem;
            line-height: 1.75;
        }


        /* ========================================================
           INDUSTRIES
        ======================================================== */

        .industries {
            padding: 120px 0;
            background: var(--white-2);
        }

        .industry {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 28px 0;
            border-bottom: 1px solid rgba(0,0,0,.07);
            transition: .3s ease;
        }

        .industry:first-of-type { border-top: 1px solid rgba(0,0,0,.07); }

        .industry:hover { padding-left: 10px; }

        .industry h3 {
            font-size: clamp(1.4rem, 2.4vw, 2rem);
            margin: 0 0 6px;
        }

        .industry p {
            margin: 0;
            color: #777;
            font-size: .86rem;
            max-width: 520px;
        }

        .industry-tag {
            font-family: "DM Mono";
            font-size: .58rem;
            letter-spacing: .1em;
            color: var(--orange);
            white-space: nowrap;
        }


        /* ========================================================
           FUTURE CTA
        ======================================================== */

        .future {
            padding: 120px 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.4rem);
            line-height: .9;
        }

        .future-box p {
            position: relative;
            z-index: 3;
            max-width: 620px;
            color: #777;
            line-height: 1.8;
        }


        /* ========================================================
           FOOTER
        ======================================================== */

        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
        ======================================================== */

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


        /* ========================================================
           MOBILE
        ======================================================== */

        @media (max-width: 991px) {

            .hero {
                padding-top: 140px;
                padding-bottom: 50px;
            }

            .hero-stage {
                min-height: 440px;
                margin-top: 28px;
            }

            .sol-nav { grid-template-columns: 1fr 1fr; }

            .future-box { padding: 55px 28px; }
        }

        @media (max-width: 575px) {

            .navbar {
                width: calc(100% - 16px);
                top: 9px;
            }

            .hero { padding-top: 125px; }

            .hero h1 { font-size: 3.15rem; }

            .sol-nav { grid-template-columns: 1fr; }

            .map, .engines, .industries, .future { padding: 85px 0; }

            .section-title { font-size: 2.6rem; }

            .preview { min-height: 400px; }

            .orbit-chip { display: none; }

            .stack { width: 230px; height: 300px; }
        }
