        :root {
            --bg: #07111f;
            --bg-soft: #0f1b2d;
            --panel: rgba(10, 20, 36, 0.78);
            --panel-strong: #10233d;
            --line: rgba(155, 206, 255, 0.16);
            --text: #f7fafc;
            --muted: #9cb0c8;
            --brand: #69f0d2;
            --brand-deep: #2fc0f3;
            --accent: #ffc56f;
            --danger: #ff7b8f;
            --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--text);
            font-family: "Outfit", sans-serif;
            background:
                radial-gradient(circle at top left, rgba(47, 192, 243, 0.28), transparent 32%),
                radial-gradient(circle at 85% 18%, rgba(255, 197, 111, 0.2), transparent 24%),
                linear-gradient(180deg, #08111f 0%, #0b1626 45%, #09131f 100%);
            min-height: 100vh;
        }

        body.modal-open {
            overflow: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        textarea {
            font: inherit;
        }

        .shell {
            position: relative;
            overflow: hidden;
        }

        .shell::before,
        .shell::after {
            content: "";
            position: absolute;
            border-radius: 999px;
            filter: blur(10px);
            pointer-events: none;
        }

        .shell::before {
            top: 5rem;
            left: -10rem;
            width: 24rem;
            height: 24rem;
            background: rgba(105, 240, 210, 0.09);
        }

        .shell::after {
            right: -10rem;
            top: 30rem;
            width: 22rem;
            height: 22rem;
            background: rgba(47, 192, 243, 0.08);
        }

        .container {
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
        }

.topbar {
            position: sticky;
            top: 0;
            z-index: 120;
            backdrop-filter: blur(14px);
            background: rgba(7, 17, 31, 0.72);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.25rem;
            min-height: 82px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
            font-family: "Space Grotesk", sans-serif;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .brand-mark {
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 0.9rem;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, var(--brand), var(--brand-deep));
            color: #05121d;
            box-shadow: 0 10px 24px rgba(47, 192, 243, 0.28);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.4rem;
            color: var(--muted);
            font-size: 0.98rem;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .auth-actions {
            display: flex;
            align-items: center;
            gap: 0.85rem;
        }

        .button {
            border: 0;
            border-radius: 999px;
            padding: 0.9rem 1.3rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        }

        .button:hover {
            transform: translateY(-1px);
        }

        .button-ghost {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .button-primary {
            background: linear-gradient(135deg, var(--brand), var(--brand-deep));
            color: #03111e;
            box-shadow: 0 18px 42px rgba(47, 192, 243, 0.24);
            font-weight: 700;
        }

        .hero {
            padding: 5.5rem 0 4rem;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.9fr;
            gap: 2rem;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 0.8rem;
            border-radius: 999px;
            background: rgba(105, 240, 210, 0.08);
            border: 1px solid rgba(105, 240, 210, 0.18);
            color: var(--brand);
            font-size: 0.85rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .hero h1 {
            margin: 1.15rem 0 1rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: clamp(2.8rem, 5vw, 5.2rem);
            line-height: 0.95;
            letter-spacing: -0.04em;
        }

        .hero p {
            margin: 0;
            max-width: 42rem;
            color: var(--muted);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .hero-points {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.9rem;
        }

        .hero-point {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 1.2rem;
            color: var(--muted);
        }

        .hero-point strong {
            display: block;
            color: var(--text);
            margin-bottom: 0.35rem;
            font-family: "Space Grotesk", sans-serif;
        }

        .hero-panel {
            background: linear-gradient(180deg, rgba(16, 35, 61, 0.9), rgba(11, 25, 42, 0.92));
            border: 1px solid var(--line);
            border-radius: 2rem;
            padding: 1.4rem;
            box-shadow: var(--shadow);
        }

        .dashboard-card {
            padding: 1.3rem;
            border-radius: 1.4rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .dashboard-label {
            color: var(--muted);
            text-transform: uppercase;
            font-size: 0.78rem;
            letter-spacing: 0.08em;
        }

        .dashboard-metric {
            margin-top: 0.65rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: 2.7rem;
            font-weight: 700;
        }

        .dashboard-sub {
            margin-top: 0.55rem;
            color: var(--muted);
            line-height: 1.6;
        }

        .dashboard-stack {
            display: grid;
            gap: 1rem;
            margin-top: 1rem;
        }

        .mini-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }

        .mini-card {
            padding: 1rem;
            border-radius: 1.1rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mini-card h3,
        .section-card h3,
        .story-card h3,
        .investor-card h3 {
            margin: 0 0 0.5rem;
            font-size: 1.05rem;
        }

        .mini-card p,
        .section-card p,
        .story-card p,
        .investor-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.7;
        }

        .section {
            padding: 2rem 0 5rem;
        }

        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 1.5rem;
            margin-bottom: 1.75rem;
        }

        .section-head h2 {
            margin: 0 0 0.45rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: clamp(2rem, 3vw, 3rem);
        }

        .section-head p {
            margin: 0;
            color: var(--muted);
            max-width: 36rem;
            line-height: 1.8;
        }

        .product-grid,
        .investor-grid,
        .about-grid {
            display: grid;
            gap: 1.2rem;
        }

        .product-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .investor-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .about-grid {
            grid-template-columns: 1.1fr 0.9fr;
        }

        .section-card,
        .investor-card,
        .story-card {
            padding: 1.5rem;
            border-radius: 1.5rem;
            background: var(--panel);
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
            backdrop-filter: blur(8px);
        }

        .card-tag {
            display: inline-flex;
            padding: 0.4rem 0.72rem;
            border-radius: 999px;
            background: rgba(255, 197, 111, 0.1);
            color: var(--accent);
            font-size: 0.78rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
            display: grid;
            gap: 0.75rem;
        }

        .feature-list li {
            color: var(--muted);
            padding-left: 1.2rem;
            position: relative;
        }

        .feature-list li::before {
            content: "";
            width: 0.45rem;
            height: 0.45rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--brand), var(--brand-deep));
            position: absolute;
            left: 0;
            top: 0.6rem;
        }

        .investor-stat {
            margin-top: 1rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: 2rem;
        }

        .story-card {
            display: grid;
            gap: 1rem;
        }

        .story-list {
            display: grid;
            gap: 0.85rem;
            color: var(--muted);
        }

        .story-list strong {
            color: var(--text);
            display: block;
            margin-bottom: 0.2rem;
        }

        .cta-panel {
            margin: 1rem 0 5rem;
            padding: 2rem;
            border-radius: 1.8rem;
            background: linear-gradient(135deg, rgba(105, 240, 210, 0.14), rgba(47, 192, 243, 0.14));
            border: 1px solid rgba(105, 240, 210, 0.16);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .cta-panel h3 {
            margin: 0 0 0.5rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: clamp(1.6rem, 2.2vw, 2.2rem);
        }

        .cta-panel p {
            margin: 0;
            color: var(--muted);
            max-width: 36rem;
            line-height: 1.8;
        }

        .footer {
            padding: 0 0 2.5rem;
            color: rgba(156, 176, 200, 0.84);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            font-size: 0.92rem;
        }

        .intro-video-overlay {
            position: fixed;
            inset: 0;
            background: #000;
            z-index: 90;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .intro-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .intro-skip {
            position: absolute;
            right: 1rem;
            bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.42);
            color: #fff;
            padding: 0.55rem 1rem;
            cursor: pointer;
        }

        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(2, 8, 15, 0.7);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            z-index: 50;
        }

        .modal-panel {
            width: min(100%, 560px);
            max-height: calc(100vh - 2rem);
            overflow-y: auto;
            border-radius: 1.8rem;
            background: linear-gradient(180deg, #0f1c31, #0a1525);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow);
            padding: 1.5rem;
        }

        .modal-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .modal-top h3 {
            margin: 0 0 0.4rem;
            font-size: 1.65rem;
            font-family: "Space Grotesk", sans-serif;
        }

        .modal-top p {
            margin: 0;
            color: var(--muted);
            line-height: 1.7;
        }

        .close-button {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            cursor: pointer;
        }

        .tab-row {
            display: inline-flex;
            gap: 0.45rem;
            padding: 0.3rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin-bottom: 1.35rem;
        }

        .tab-button {
            border: 0;
            background: transparent;
            color: var(--muted);
            cursor: pointer;
            padding: 0.75rem 1rem;
            border-radius: 999px;
        }

        .tab-button.active {
            background: linear-gradient(135deg, var(--brand), var(--brand-deep));
            color: #04111d;
            font-weight: 700;
        }

        .form-grid {
            display: grid;
            gap: 1rem;
        }

        .split-fields {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }

        .field {
            display: grid;
            gap: 0.45rem;
        }

        .field label {
            font-size: 0.88rem;
            color: var(--muted);
        }

        .field input,
        .field textarea {
            width: 100%;
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            padding: 0.95rem 1rem;
            outline: none;
        }

        .field input:focus,
        .field textarea:focus {
            border-color: rgba(105, 240, 210, 0.45);
            box-shadow: 0 0 0 3px rgba(105, 240, 210, 0.12);
        }

        .field textarea {
            min-height: 7rem;
            resize: vertical;
        }

        .helper-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            color: var(--muted);
            font-size: 0.9rem;
        }

        .form-message {
            padding: 0.95rem 1rem;
            border-radius: 1rem;
            border: 1px solid transparent;
            font-size: 0.95rem;
        }

        .form-message.error {
            color: #ffd9df;
            background: rgba(255, 123, 143, 0.12);
            border-color: rgba(255, 123, 143, 0.2);
        }

        .form-message.success {
            color: #d5fff5;
            background: rgba(105, 240, 210, 0.12);
            border-color: rgba(105, 240, 210, 0.2);
        }

        .field-error {
            min-height: 1rem;
            color: #ffb9c4;
            font-size: 0.82rem;
        }

        .submit-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 0.25rem;
        }

        .submit-row .button {
            min-width: 9.5rem;
        }

        .muted-link {
            color: var(--brand);
            cursor: pointer;
            background: none;
            border: 0;
            padding: 0;
        }

        .fade-enter-active,
        .fade-leave-active {
            transition: opacity 0.2s ease;
        }

        .fade-enter-from,
        .fade-leave-to {
            opacity: 0;
        }

        @media (max-width: 980px) {
            .hero-grid,
            .about-grid,
            .product-grid,
            .investor-grid {
                grid-template-columns: 1fr;
            }

            .hero-points,
            .mini-grid {
                grid-template-columns: 1fr;
            }

            .cta-panel,
            .section-head,
            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 760px) {
            .topbar-inner {
                min-height: auto;
                padding: 1rem 0;
                flex-wrap: wrap;
            }

            .nav-links {
                order: 3;
                width: 100%;
                flex-wrap: wrap;
                gap: 0.9rem 1.1rem;
            }

            .split-fields {
                grid-template-columns: 1fr;
            }

            .hero {
                padding-top: 3.5rem;
            }

            .modal-panel {
                padding: 1.2rem;
            }
        }
