
        /* ═══════════════════════════════════════════════════
           ROOT VARIABLES & RESETS
        ═══════════════════════════════════════════════════ */
        :root {
            --bg: #05020a;
            --bg-elevated: #0e061a;
            --surface: rgba(255, 255, 255, 0.04);
            --surface-hover: rgba(255, 255, 255, 0.08);
            --border: rgba(255, 255, 255, 0.08);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.5);
            --text-tertiary: rgba(255, 255, 255, 0.3);
            --accent-blue: #00E5FF;
            --accent-green: #B026FF;
            --accent-purple: #FF00E5;
            --glow-blue: rgba(0, 229, 255, 0.15);
            --glow-purple: rgba(255, 0, 229, 0.1);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-full: 999px;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Instrument Serif', Georgia, serif;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        ::selection {
            background: rgba(0, 229, 255, 0.3);
            color: white;
        }

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

        img {
            max-width: 100%;
            display: block;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.2);
        }


        /* ═══════════════════════════════════════════════════
           AMBIENT BACKGROUND GLOW
        ═══════════════════════════════════════════════════ */
        .ambient-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .ambient-glow::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 140%;
            height: 80%;
            background: radial-gradient(ellipse at center,
                    rgba(0, 229, 255, 0.06) 0%,
                    rgba(0, 229, 255, 0.03) 30%,
                    transparent 70%);
        }

        .ambient-glow::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 120%;
            height: 60%;
            background: radial-gradient(ellipse at center,
                    rgba(255, 0, 229, 0.04) 0%,
                    transparent 60%);
        }


        /* ═══════════════════════════════════════════════════
           LAYOUT
        ═══════════════════════════════════════════════════ */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container--wide {
            max-width: 1400px;
        }

        .container--narrow {
            max-width: 800px;
        }

        section {
            position: relative;
            z-index: 1;
        }


        /* ═══════════════════════════════════════════════════
           ANIMATED BUTTON UTILITY
        ═══════════════════════════════════════════════════ */
        .btn-animated {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: var(--radius-full);
            padding: 1px;
            border: none;
            background: transparent;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .btn-animated:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(255, 0, 229, 0.5);
        }

        .btn-animated__bg {
            position: absolute;
            inset: -1000%;
            background: conic-gradient(from 90deg at 50% 50%, #FF00E5 0%, #00E5FF 50%, #FF00E5 100%);
            animation: btn-spin 2s linear infinite;
            z-index: 0;
        }

        @keyframes btn-spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .btn-animated__inner {
            position: relative;
            z-index: 1;
            display: inline-flex;
            height: 100%;
            width: 100%;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: var(--radius-full);
            background: rgba(2, 6, 23, 1);
            color: white;
            font-size: 14px;
            font-weight: 500;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            transition: background 0.3s ease;
            white-space: nowrap;
        }

        .btn-animated:hover .btn-animated__inner {
            background: rgba(2, 6, 23, 0.9);
        }


        /* ═══════════════════════════════════════════════════
           NAVIGATION
        ═══════════════════════════════════════════════════ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 16px 32px;
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
        }

        .navbar__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }

        .navbar__brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: -0.02em;
        }

        .navbar__logo {
            width: 48px;
            height: 48px;
            border-radius: 7px;
            background: linear-gradient(135deg, #FF00E5, #00E5FF);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .navbar__logo svg {
            width: 16px;
            height: 16px;
        }

        .navbar__links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .navbar__link {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-secondary);
            transition: color 0.2s ease;
            cursor: pointer;
        }

        .navbar__link:hover {
            color: var(--text-primary);
        }

        .navbar__cta .btn-animated__inner {
            padding: 8px 20px;
            font-size: 14px;
        }


        /* ═══════════════════════════════════════════════════
           HERO SECTION
        ═══════════════════════════════════════════════════ */
        .hero {
            padding-top: 160px;
            padding-bottom: 80px;
            text-align: center;
            position: relative;
        }

        .hero__bg-video {
            position: absolute;
            top: 0;
            left: 50%;
            min-width: 100vw;
            min-height: 120vh;
            width: auto;
            height: auto;
            transform: translateX(-50%);
            z-index: -2;
            object-fit: cover;
            opacity: 0.35;
            pointer-events: none;
        }

        .hero__bg-overlay {
            position: absolute;
            top: 0;
            left: 50%;
            width: 100vw;
            height: 120vh;
            transform: translateX(-50%);
            background: linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 70%, var(--bg) 100%);
            z-index: -1;
            pointer-events: none;
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 6px 6px 6px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border);
            background: var(--surface);
            margin-bottom: 40px;
            font-size: 13px;
            color: var(--text-secondary);
            cursor: default;
            transition: border-color 0.3s ease;
        }

        .hero__badge:hover {
            border-color: rgba(255, 255, 255, 0.15);
        }

        .hero__badge-label {
            display: inline-block;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            color: white;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .hero__badge-text {
            padding-right: 12px;
            font-weight: 400;
        }

        .hero__title {
            font-size: clamp(42px, 6vw, 72px);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .hero__title em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, #FF00E5 0%, #00E5FF 50%, #B026FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-right: 0.1em;
        }

        .hero__subtitle {
            font-size: 17px;
            line-height: 1.65;
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto 44px;
            font-weight: 400;
        }

        .hero__cta .btn-animated__inner {
            padding: 16px 40px;
            font-size: 15px;
            font-weight: 600;
        }

        .hero__cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 229, 255, 0.2), 0 0 60px rgba(255, 0, 229, 0.1);
        }

        .hero__cta:active {
            transform: translateY(0px);
        }


        /* ═══════════════════════════════════════════════════
           PRODUCT SHOWCASE
        ═══════════════════════════════════════════════════ */
        .showcase {
            padding: 40px 0 120px;
            position: relative;
        }

        .showcase__frame {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.05),
                0 32px 80px rgba(0, 0, 0, 0.5),
                0 0 120px rgba(0, 229, 255, 0.05);
        }

        .showcase__frame img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Gradient fade at bottom of image */
        .showcase__frame::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to top, var(--bg), transparent);
            pointer-events: none;
        }

        /* Subtle glow behind the showcase */
        .showcase__glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: radial-gradient(ellipse at center,
                    var(--glow-blue) 0%,
                    transparent 70%);
            filter: blur(60px);
            pointer-events: none;
            z-index: -1;
        }


        /* ═══════════════════════════════════════════════════
           QUOTE / TESTIMONIAL SECTION
        ═══════════════════════════════════════════════════ */
        .quote-section {
            padding: 120px 0 140px;
            position: relative;
        }

        .quote__container {
            max-width: 720px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .quote__avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(255, 0, 229, 0.3));
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            overflow: hidden;
        }

        .quote__avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .quote__text {
            font-size: clamp(28px, 3.5vw, 40px);
            line-height: 1.35;
            font-weight: 400;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }

        .quote__text .word {
            display: inline;
            color: var(--text-tertiary);
            transition: color 0.4s ease;
        }

        .quote__text .word.active {
            color: var(--text-primary);
        }

        .quote__closing {
            font-family: var(--font-serif);
            font-size: 72px;
            color: var(--accent-blue);
            line-height: 0.5;
            margin-bottom: -16px;
            margin-top: 16px;
            opacity: 0.6;
        }

        .quote__author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .quote__author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .quote__author-info {
            display: flex;
            flex-direction: column;
        }

        .quote__author-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .quote__author-title {
            font-size: 13px;
            color: var(--text-secondary);
        }


        /* ═══════════════════════════════════════════════════
           FEATURES SECTION
        ═══════════════════════════════════════════════════ */
        .features {
            padding: 80px 0 120px;
        }

        .features__overline {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-blue);
            text-align: center;
            margin-bottom: 16px;
        }

        .features__title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            text-align: center;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
        }

        .features__title em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, #FF00E5 0%, #00E5FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-right: 0.1em;
        }

        .features__subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            text-align: center;
            max-width: 520px;
            margin: 0 auto 72px;
        }

        .features__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .feature-card {
            background: var(--bg-elevated);
            padding: 48px 36px;
            position: relative;
            overflow: hidden;
            transition: background 0.3s ease;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0),
                    rgba(255, 255, 255, 0.05),
                    transparent 40%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            background: rgba(15, 15, 25, 1);
        }

        .feature-card>* {
            position: relative;
            z-index: 1;
        }

        .feature-card .spotlight {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0),
                    rgba(255, 0, 229, 0.08),
                    transparent 40%);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }

        .feature-card:hover .spotlight {
            opacity: 1;
        }

        .feature-card__icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-md);
            background: var(--surface);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--accent-blue);
            transition: border-color 0.3s ease;
        }

        .feature-card:hover .feature-card__icon {
            border-color: rgba(0, 229, 255, 0.3);
        }

        .feature-card__title {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .feature-card__desc {
            font-size: 14px;
            line-height: 1.65;
            color: var(--text-secondary);
        }


        /* ═══════════════════════════════════════════════════
           SHOWCASE CARDS (PRODUCT SCREENSHOTS)
        ═══════════════════════════════════════════════════ */
        .product-showcase {
            padding: 80px 0 120px;
        }

        .product-showcase__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .product-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--bg-elevated);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            transform-style: preserve-3d;
            will-change: transform;
        }

        .product-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 229, 255, 0.1);
            z-index: 10;
        }

        .product-card__image {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            transform: translateZ(20px);
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-card__image {
            transform: translateZ(30px) scale(1.02);
        }

        .product-card__content {
            padding: 28px 32px 32px;
            transform: translateZ(30px);
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-card__content {
            transform: translateZ(40px);
        }

        .product-card__label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-purple);
            margin-bottom: 8px;
        }

        .product-card__title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .product-card__desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }


        /* ═══════════════════════════════════════════════════
           STATS SECTION
        ═══════════════════════════════════════════════════ */
        .stats {
            padding: 80px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .stats__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .stat-item {
            text-align: center;
            padding: 40px 20px;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 30%;
            height: 40%;
            width: 1px;
            background: var(--border);
        }

        .stat-item__value {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.04em;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.7));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-item__label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 400;
        }


        /* ═══════════════════════════════════════════════════
           CTA / WAITLIST SECTION
        ═══════════════════════════════════════════════════ */
        .cta-section {
            padding: 120px 0;
            text-align: center;
        }

        .cta-section__title {
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
        }

        .cta-section__title em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, #FF00E5 0%, #00E5FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-right: 0.1em;
        }

        .cta-section__desc {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 460px;
            margin: 0 auto 44px;
        }

        .waitlist-form {
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 460px;
            margin: 0 auto;
        }

        .waitlist-form__input {
            flex: 1;
            padding: 14px 20px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border);
            background: var(--surface);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .waitlist-form__input::placeholder {
            color: var(--text-tertiary);
        }

        .waitlist-form__input:focus {
            border-color: rgba(0, 229, 255, 0.4);
            background: rgba(255, 255, 255, 0.06);
        }

        .waitlist-form__btn .btn-animated__inner {
            padding: 14px 32px;
            font-size: 15px;
            font-weight: 600;
        }

        .waitlist-form__btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 229, 255, 0.2), 0 0 20px rgba(255, 0, 229, 0.2);
        }

        .waitlist-form__btn.loading {
            pointer-events: none;
            opacity: 0.8;
        }

        .waitlist-form__btn .spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid var(--bg);
            border-bottom-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        .waitlist-form__btn.loading .btn-text {
            display: none;
        }

        .waitlist-form__btn.loading .spinner {
            display: block;
        }

        .waitlist-form__btn.success {
            background: var(--accent-green);
            color: #000;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .waitlist-message {
            font-size: 13px;
            color: var(--text-tertiary);
            margin-top: 16px;
            text-align: center;
        }

        .waitlist-message.success {
            color: var(--accent-green);
        }


        /* ═══════════════════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════════════════ */
        .footer {
            padding: 40px 32px;
            border-top: 1px solid var(--border);
        }

        .footer__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer__left {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .footer__brand {
            font-weight: 700;
            color: var(--text-primary);
        }

        .footer__links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .footer__link {
            font-size: 13px;
            color: var(--text-secondary);
            transition: color 0.2s ease;
        }

        .footer__link:hover {
            color: var(--text-primary);
        }


        /* ═══════════════════════════════════════════════════
           GSAP ANIMATION INITIAL STATES
        ═══════════════════════════════════════════════════ */
        .gsap-fade-up {
            opacity: 0;
            transform: translateY(30px);
        }

        .gsap-fade {
            opacity: 0;
        }

        .gsap-scale {
            opacity: 0;
            transform: scale(0.96);
        }


        /* ═══════════════════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .features__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 12px 20px;
            }

            .navbar__links {
                display: none;
            }

            .hero {
                padding-top: 120px;
            }

            .features__grid {
                grid-template-columns: 1fr;
            }

            .product-showcase__grid {
                grid-template-columns: 1fr;
            }

            .stats__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item:nth-child(2)::after {
                display: none;
            }

            .stat-item {
                border-bottom: 1px solid var(--border);
            }

            .stat-item:nth-last-child(-n+2) {
                border-bottom: none;
            }

            .waitlist-form {
                flex-direction: column;
            }

            .waitlist-form__input,
            .waitlist-form__btn {
                width: 100%;
            }

            .footer__inner {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }
    