        :root {
            --brand-violet-1: #6A1B9A;
            --brand-violet-2: #8E3FBB;
            --brand-blue: #454CFF;
            --brand-navy: #09247B;
            --brand-ink: #08142f;
            --brand-surface: #f7f8fc;
            --brand-surface-2: #ffffff;
            --brand-border: #dbe4ff;
            --brand-muted: #5f6c95;
            --brand-muted-2: #7c88af;
            --brand-grid: rgba(9, 36, 123, 0.08);
            --gradient-primary: linear-gradient(135deg, #6A1B9A 0%, #454CFF 50%, #09247B 100%);
            --gradient-soft: linear-gradient(135deg, rgba(106, 27, 154, 0.08) 0%, rgba(69, 76, 255, 0.08) 50%, rgba(9, 36, 123, 0.1) 100%);
            --shadow-sm: 0 14px 40px rgba(9, 36, 123, 0.08);
            --shadow-lg: 0 30px 80px rgba(9, 36, 123, 0.16);
            --ring: rgba(69, 76, 255, 0.18);
        }

        [data-theme="dark"] {
            --brand-ink: #eef2ff;
            --brand-surface: #07112a;
            --brand-surface-2: #0c1737;
            --brand-border: rgba(152, 172, 255, 0.18);
            --brand-muted: #b4c0ef;
            --brand-muted-2: #95a4db;
            --brand-grid: rgba(180, 192, 239, 0.08);
            --gradient-soft: linear-gradient(135deg, rgba(106, 27, 154, 0.22) 0%, rgba(69, 76, 255, 0.2) 50%, rgba(9, 36, 123, 0.35) 100%);
            --shadow-sm: 0 16px 42px rgba(0, 0, 0, 0.28);
            --shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.38);
            --ring: rgba(142, 63, 187, 0.28);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            width: 100%;
            overflow-x: clip;
        }

        body {
            margin: 0;
            font-family: 'Manrope', system-ui, sans-serif;
            color: var(--brand-ink);
            background:
                linear-gradient(180deg, rgba(247, 248, 252, 0.88) 0%, rgba(247, 248, 252, 1) 35%, rgba(255, 255, 255, 1) 100%),
                linear-gradient(90deg, var(--brand-grid) 1px, transparent 1px),
                linear-gradient(var(--brand-grid) 1px, transparent 1px);
            background-size: auto, 28px 28px, 28px 28px;
            overflow-x: hidden;
            line-height: 1.6;
            width: 100%;
            max-width: 100vw;
        }

        [data-theme="dark"] body {
            background:
                radial-gradient(circle at top right, rgba(106, 27, 154, 0.18), transparent 32%),
                radial-gradient(circle at top left, rgba(69, 76, 255, 0.14), transparent 28%),
                linear-gradient(180deg, #050b1b 0%, #07112a 38%, #08142f 100%),
                linear-gradient(90deg, var(--brand-grid) 1px, transparent 1px),
                linear-gradient(var(--brand-grid) 1px, transparent 1px);
            background-size: auto, auto, auto, 28px 28px, 28px 28px;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
            letter-spacing: -0.03em;
        }

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

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

        .shell {
            position: relative;
            isolation: isolate;
            width: 100%;
            max-width: 100vw;
            overflow-x: clip;
        }

        .shell::before,
        .shell::after {
            content: '';
            position: fixed;
            inset: auto;
            width: 32rem;
            height: 32rem;
            border-radius: 9999px;
            filter: blur(70px);
            pointer-events: none;
            z-index: -1;
            opacity: 0.2;
        }

        .shell::before {
            top: -10rem;
            right: -10rem;
            background: rgba(69, 76, 255, 0.45);
        }

        .shell::after {
            top: 20rem;
            left: -10rem;
            background: rgba(106, 27, 154, 0.28);
        }

        .site-nav {
            position: sticky;
            top: 0;
            z-index: 60;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            background: rgba(247, 248, 252, 0.84);
            border-bottom: 1px solid rgba(219, 228, 255, 0.8);
        }

        [data-theme="dark"] .site-nav {
            background: rgba(7, 17, 42, 0.84);
            border-bottom-color: rgba(152, 172, 255, 0.12);
        }

        .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            padding: 0.6rem;
            border-radius: 1rem;
            background: var(--gradient-primary);
            box-shadow: 0 10px 30px rgba(69, 76, 255, 0.25);
        }

        .brand-wordmark {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: -0.03em;
        }

        .brand-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-link {
            position: relative;
            font-size: 0.94rem;
            font-weight: 600;
            color: var(--brand-muted);
            transition: color 0.2s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--brand-ink);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -0.5rem;
            width: 100%;
            height: 2px;
            transform: scaleX(0);
            transform-origin: left;
            background: var(--gradient-primary);
            transition: transform 0.25s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        .lang-toggle,
        .theme-toggle {
            border: 1px solid var(--brand-border);
            background: rgba(255, 255, 255, 0.7);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="dark"] .lang-toggle,
        [data-theme="dark"] .theme-toggle {
            background: rgba(12, 23, 55, 0.75);
        }

        .lang-btn {
            border-radius: 9999px;
            padding: 0.45rem 0.75rem;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--brand-muted);
            transition: all 0.2s ease;
        }

        .lang-btn.active {
            background: var(--gradient-primary);
            color: #fff;
        }

        .mobile-only {
            display: none;
        }

        .theme-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.7rem;
            height: 2.7rem;
            border-radius: 9999px;
            color: var(--brand-ink);
            transition: transform 0.2s ease;
        }

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

        .mobile-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: min(22rem, 100%);
            height: 100vh;
            height: 100dvh;
            padding: 6rem 1.5rem 2rem;
            background: rgba(247, 248, 252, 0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-left: 1px solid var(--brand-border);
            z-index: 80;
            overflow-y: auto;
            overscroll-behavior: contain;
            transform: translateX(105%);
            transition: transform 0.25s ease;
        }

        [data-theme="dark"] .mobile-nav {
            background: rgba(7, 17, 42, 0.96);
        }

        .mobile-nav.open {
            transform: translateX(0);
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(8, 20, 47, 0.46);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
            z-index: 70;
        }

        .mobile-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        .hamburger {
            display: none;
            width: 2.8rem;
            height: 2.8rem;
            padding: 0;
            border: 1px solid var(--brand-border);
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.72);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 0.28rem;
        }

        [data-theme="dark"] .hamburger {
            background: rgba(12, 23, 55, 0.72);
        }

        .hamburger span {
            width: 1.1rem;
            height: 2px;
            border-radius: 9999px;
            background: var(--brand-ink);
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.55rem 0.85rem;
            border-radius: 9999px;
            border: 1px solid rgba(69, 76, 255, 0.14);
            background: rgba(255, 255, 255, 0.72);
            color: var(--brand-navy);
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        [data-theme="dark"] .eyebrow {
            background: rgba(12, 23, 55, 0.82);
            color: #cbd5ff;
        }

        .eyebrow-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 9999px;
            background: linear-gradient(135deg, var(--brand-violet-2), var(--brand-blue));
            box-shadow: 0 0 0 6px rgba(69, 76, 255, 0.12);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
            gap: 3rem;
            align-items: center;
        }

        .hero-grid > *,
        .contact-grid > * {
            min-width: 0;
        }

        .hero-panel,
        .surface-panel,
        .capability-card,
        .timeline-card,
        .value-card,
        .cta-shell {
            border: 1px solid var(--brand-border);
            background: rgba(255, 255, 255, 0.8);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="dark"] .hero-panel,
        [data-theme="dark"] .surface-panel,
        [data-theme="dark"] .capability-card,
        [data-theme="dark"] .timeline-card,
        [data-theme="dark"] .value-card,
        [data-theme="dark"] .cta-shell {
            background: rgba(12, 23, 55, 0.78);
        }

        .hero-copy {
            max-width: 38rem;
        }

        .hero-title {
            font-size: clamp(2.8rem, 5vw, 5.4rem);
            line-height: 0.98;
            margin: 1.2rem 0 1.25rem;
            overflow-wrap: anywhere;
        }

        .hero-sub {
            font-size: clamp(1.05rem, 1.5vw, 1.32rem);
            color: var(--brand-muted);
            max-width: 35rem;
        }

        .pain-line {
            margin-top: 1.25rem;
            font-size: 0.96rem;
            font-weight: 600;
            color: var(--brand-muted-2);
        }

        .btn-primary,
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 0.95rem 1.35rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: #fff;
            box-shadow: 0 16px 28px rgba(69, 76, 255, 0.24);
        }

        .btn-primary:hover,
        .btn-secondary:hover {
            transform: translateY(-2px);
        }

        .btn-secondary {
            border: 1px solid var(--brand-border);
            background: rgba(255, 255, 255, 0.74);
            color: var(--brand-ink);
        }

        [data-theme="dark"] .btn-secondary {
            background: rgba(12, 23, 55, 0.74);
        }

        .hero-chip,
        .trust-pill,
        .meta-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            border-radius: 9999px;
            font-size: 0.86rem;
            font-weight: 700;
            color: var(--brand-navy);
            background: rgba(69, 76, 255, 0.07);
            border: 1px solid rgba(69, 76, 255, 0.1);
            padding: 0.55rem 0.8rem;
        }

        [data-theme="dark"] .hero-chip,
        [data-theme="dark"] .trust-pill,
        [data-theme="dark"] .meta-chip {
            color: #d8deff;
            background: rgba(69, 76, 255, 0.12);
            border-color: rgba(152, 172, 255, 0.14);
        }

        .chip-dot {
            width: 0.4rem;
            height: 0.4rem;
            border-radius: 9999px;
            background: var(--brand-violet-2);
        }

        .chip-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .board {
            position: relative;
            border-radius: 2rem;
            padding: 2rem;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 248, 252, 0.96)),
                linear-gradient(135deg, rgba(106, 27, 154, 0.08), rgba(69, 76, 255, 0.08));
            overflow: hidden;
        }

        [data-theme="dark"] .board {
            background:
                linear-gradient(180deg, rgba(12, 23, 55, 0.95), rgba(7, 17, 42, 0.95)),
                linear-gradient(135deg, rgba(106, 27, 154, 0.18), rgba(69, 76, 255, 0.15));
        }

        .board::before,
        .board::after {
            content: '';
            position: absolute;
            inset: 1.25rem;
            border-radius: 1.4rem;
            border: 1px solid rgba(69, 76, 255, 0.08);
            pointer-events: none;
        }

        .board::after {
            inset: auto 2rem 2rem auto;
            width: 9rem;
            height: 9rem;
            border-radius: 9999px;
            border: none;
            background: radial-gradient(circle, rgba(69, 76, 255, 0.22), transparent 60%);
        }

        .board-wire {
            position: absolute;
            border-radius: 9999px;
            background: linear-gradient(135deg, rgba(106, 27, 154, 0.38), rgba(69, 76, 255, 0.12));
        }

        .wire-1 {
            top: 26%;
            left: 14%;
            width: 48%;
            height: 2px;
            transform: rotate(-26deg);
        }

        .wire-2 {
            top: 55%;
            left: 30%;
            width: 44%;
            height: 2px;
            transform: rotate(-28deg);
        }

        .wire-3 {
            top: 24%;
            right: 10%;
            width: 12rem;
            height: 12rem;
            border: 2px solid rgba(69, 76, 255, 0.16);
            background: none;
        }

        .badge-node {
            position: absolute;
            padding: 0.55rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            border: 1px solid rgba(69, 76, 255, 0.16);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: var(--shadow-sm);
        }

        [data-theme="dark"] .badge-node {
            background: rgba(12, 23, 55, 0.92);
        }

        .node-ai { top: 10%; right: 8%; }
        .node-automation { top: 42%; left: 5%; }
        .node-apps { bottom: 10%; right: 6%; }
        .node-advisory { bottom: 16%; left: 13%; }

        .logo-plate {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.65rem;
            border-radius: 2rem;
            background: var(--gradient-primary);
            box-shadow: 0 18px 40px rgba(9, 36, 123, 0.22);
        }

        .logo-core {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 1rem;
            border-radius: 1.5rem;
            background:
                radial-gradient(circle at top left, rgba(142, 63, 187, 0.18), transparent 42%),
                linear-gradient(180deg, rgba(9, 36, 123, 0.96), rgba(8, 20, 47, 0.98));
            border: 1px solid rgba(219, 228, 255, 0.12);
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 0.9rem;
            border-radius: 9999px;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--brand-navy);
            background: rgba(69, 76, 255, 0.08);
            border: 1px solid rgba(69, 76, 255, 0.12);
        }

        [data-theme="dark"] .section-label {
            color: #d8deff;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .capability-card,
        .timeline-card,
        .value-card,
        .cta-shell {
            border-radius: 1.5rem;
        }

        .capability-card {
            position: relative;
            padding: 2rem;
            overflow: hidden;
        }

        .capability-card::before {
            content: '';
            position: absolute;
            inset: 0 0 auto 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .capability-card ul {
            margin: 1rem 0 0;
            padding: 0;
            list-style: none;
        }

        .capability-card li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            margin-top: 0.85rem;
            color: var(--brand-muted);
            font-weight: 600;
        }

        .capability-card li::before {
            content: '';
            flex: 0 0 0.5rem;
            width: 0.5rem;
            height: 0.5rem;
            margin-top: 0.45rem;
            border-radius: 9999px;
            background: var(--gradient-primary);
        }

        .best-for {
            margin-top: 1.2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--brand-border);
            font-size: 0.82rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--brand-navy);
        }

        [data-theme="dark"] .best-for {
            color: #d8deff;
        }

        .engagement-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 2rem;
        }

        .surface-panel {
            border-radius: 1.6rem;
            padding: 1.5rem;
        }

        .outcome-card {
            padding: 1.5rem;
            border-radius: 1.4rem;
            border: 1px solid var(--brand-border);
            background: var(--gradient-soft);
        }

        .timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
            margin-top: 2.25rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 2.4rem;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, rgba(106, 27, 154, 0.35), rgba(69, 76, 255, 0.4), rgba(9, 36, 123, 0.35));
        }

        .timeline-card {
            position: relative;
            padding: 1.7rem;
        }

        .step-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            background: var(--gradient-primary);
            color: #fff;
            font-weight: 800;
            margin-bottom: 1rem;
            box-shadow: 0 12px 24px rgba(69, 76, 255, 0.22);
        }

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

        .value-card {
            padding: 1.7rem;
        }

        .value-icon {
            width: 3rem;
            height: 3rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 1rem;
            background: var(--gradient-soft);
            color: var(--brand-navy);
            margin-bottom: 1rem;
        }

        [data-theme="dark"] .value-icon {
            color: #d8deff;
        }

        .cta-shell {
            position: relative;
            padding: 2rem;
            overflow: hidden;
        }

        .cta-shell::before {
            content: '';
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
            gap: 1.5rem;
            align-items: stretch;
        }

        .footer-link {
            color: var(--brand-muted);
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: var(--brand-ink);
        }

        .mobile-cta-bar {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 65;
            padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
            background: rgba(247, 248, 252, 0.94);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-top: 1px solid rgba(219, 228, 255, 0.85);
            box-shadow: 0 -12px 24px rgba(9, 36, 123, 0.08);
        }

        [data-theme="dark"] .mobile-cta-bar {
            background: rgba(7, 17, 42, 0.94);
            border-top-color: rgba(152, 172, 255, 0.12);
        }

        section[id] {
            scroll-margin-top: 6rem;
        }

        @media (max-width: 1024px) {
            .hero-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

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

            .timeline::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 6.25rem;
            }

            .max-w-7xl,
            .max-w-3xl,
            .max-w-xs {
                max-width: 100%;
            }

            .desktop-nav {
                display: none;
            }

            .hamburger {
                display: inline-flex;
            }

            .desktop-mobile-hide {
                display: none;
            }

            .mobile-only {
                display: block;
            }

            .hero-title {
                font-size: clamp(1.95rem, 9.5vw, 3rem);
                line-height: 1.02;
            }

            .hero-copy {
                max-width: none;
            }

            .hero-panel {
                margin-top: 0.25rem;
            }

            .board {
                padding: 1.25rem;
            }

            .board .min-h-\[24rem\] {
                min-height: 13rem;
            }

            .board-desc {
                display: none;
            }

            .chip-row {
                flex-direction: column;
                align-items: stretch;
            }

            .chip-row > * {
                width: 100%;
                justify-content: flex-start;
            }

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

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }

            .section-stack {
                padding-top: 4.5rem;
                padding-bottom: 4.5rem;
            }

            .mobile-nav .nav-link {
                display: block;
                padding: 0.7rem 0;
                font-size: 1rem;
            }

            .mobile-nav .nav-link::after {
                bottom: 0.15rem;
            }

            .mobile-cta-bar {
                display: block;
            }
        }

        @media (max-width: 640px) {
            .brand-wordmark {
                display: none;
            }

            .board {
                padding: 1.4rem;
            }

            .pain-line {
                font-size: 0.9rem;
            }

            .hero-title {
                font-size: clamp(1.8rem, 8.8vw, 2.5rem);
            }

            .badge-node {
                position: static;
                display: inline-flex;
                margin: 0.35rem 0.35rem 0 0;
            }

            .board-wire {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
