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

:root {
            --font-tree-sans: var(--font-sans, 'Tree', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
            --font-tree-mono: var(--font-mono, 'Tree Mono', monospace);
            --inter: var(--font-tree-sans);
            --jetBrains: var(--font-tree-mono);
            --ds-background-100: #000000;
            --ds-background-200: #0a0a0a;
            --ds-background-300: #111111;
            --ds-gray-100: #111111;
            --ds-gray-200: #1a1a1a;
            --ds-gray-300: #222222;
            --ds-gray-400: #27272a;
            --ds-gray-500: #3f3f46;
            --ds-gray-600: #52525b;
            --ds-gray-700: #71717a;
            --ds-gray-800: #888888;
            --ds-gray-900: #a1a1aa;
            --ds-gray-1000: #ededed;
        }

        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .gap-6 { gap: 1.5rem; }

        html, body {
            background-color: #000000 !important;
            color: var(--ds-gray-1000) !important;
            font-family: var(--font-sans) !important;
            -webkit-font-smoothing: antialiased !important;
            -moz-osx-font-smoothing: grayscale !important;
            margin: 0;
            padding: 0;
            letter-spacing: -0.01em;
        }

        .hero-section, .gateway-section-wrapper, .ai-code-widget {
            overflow-x: hidden;
        }

        .vapour-headline-wrapper {
            position: relative;
            display: block;
            width: 100%;
            margin: 0 auto;
            overflow: visible;
        }
        .vapour-text-mount[data-vapour-mounted="true"] #vapourHeroTitle,
        .vapour-text-mount[data-vapour-mounted="true"] .vapour-fallback-title {
            display: none !important;
        }
        .ai-hero-layout {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            align-items: center;
            gap: 48px;
            width: 100%;
        }
        @media (max-width: 1024px) {
            .ai-hero-layout {
                grid-template-columns: 1fr !important;
                gap: 36px !important;
            }
            .ai-hero-vapour-col {
                order: 2;
                margin-top: 10px;
                width: 100%;
            }
        }

        .profile-img { width:40px; height:40px; border-radius:50%; object-fit:cover; border:2px solid var(--ds-gray-400); }

        @keyframes reveal {
            0% { opacity: 0; transform: translateY(-8px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes fade {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        .animate-fade { animation: fade 1s forwards; }
        .animate-revealHero1 { animation: reveal 0.8s cubic-bezier(.16,1,.3,1) 0.15s forwards; }
        .animate-revealHero2 { animation: reveal 0.8s cubic-bezier(.16,1,.3,1) 0.25s forwards; }
        .animate-revealHero3 { animation: reveal 0.8s cubic-bezier(.16,1,.3,1) 0.35s forwards; }
        .animate-revealContent { animation: reveal 1s cubic-bezier(.16,1,.3,1) 0.45s forwards; }

        .gateway-section-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
            box-sizing: border-box;
        }

        .gateway-section-header {
            max-width: 720px;
            margin-bottom: 40px;
        }

        .gateway-pill-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 500;
            color: var(--ds-gray-1000);
            background: var(--ds-background-200);
            border: 1px solid var(--ds-gray-400);
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .gateway-section-title {
            font-family: var(--font-tree-sans) !important;
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: -0.035em;
            color: #ffffff;
            margin: 0 0 16px 0;
            text-wrap: balance;
        }

        .gateway-section-desc {
            font-size: 1.0625rem;
            line-height: 1.6;
            color: var(--ds-gray-900);
            margin: 0;
            font-weight: 400;
        }

        .gateway-stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 0;
            position: relative;
            z-index: 10;
        }

        .gateway-stat-item {
            background: rgba(18, 18, 22, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 14px;
            padding: 22px 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 18px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.85), inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
            opacity: 1 !important;
            transform: none !important;
            transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }

        .gateway-stat-item:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(26, 26, 32, 0.95);
            transform: translateY(-2px) !important;
            box-shadow: 0 22px 48px -10px rgba(0, 0, 0, 0.95), inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
        }

        .gateway-stat-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .gateway-stat-icon {
            width: 28px;
            height: 28px;
            border-radius: 7px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
        }

        .gateway-stat-tag {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-family: var(--font-mono);
            color: #a1a1aa;
        }

        .gateway-stat-num {
            font-family: var(--font-tree-mono), var(--font-mono), monospace;
            font-size: clamp(1.875rem, 3vw, 2.5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.035em;
            color: #ffffff;
            display: block;
            margin: 0 0 6px 0;
        }

        .gateway-stat-label {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
            letter-spacing: -0.01em;
            line-height: 1.35;
        }

        .gateway-stat-desc {
            font-size: 12.5px;
            color: #a1a1aa;
            line-height: 1.45;
            margin: 4px 0 0 0;
        }

        .gateway-bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 36px;
        }

        .gateway-bento-card {
            background: #0d0d0d;
            border: 1px solid var(--ds-gray-400);
            border-radius: 16px;
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 24px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
            position: relative;
        }

        .gateway-bento-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .gateway-bento-card:nth-child(1) { transition-delay: 0ms; }
        .gateway-bento-card:nth-child(2) { transition-delay: 120ms; }
        .gateway-bento-card:nth-child(3) { transition-delay: 240ms; }

        .gateway-bento-card:hover {
            border-color: var(--ds-gray-500);
            background: #111111;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
        }

        .gateway-bento-card-badge {
            font-family: var(--font-tree-mono);
            font-size: 11.5px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--ds-gray-400);
            color: var(--ds-gray-900);
            letter-spacing: 0.03em;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .gateway-bento-icon {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: var(--ds-background-200);
            border: 1px solid var(--ds-gray-400);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ds-gray-1000);
        }

        .gateway-bento-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 10px 0;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }

        .gateway-bento-desc {
            font-size: 0.9375rem;
            line-height: 1.6;
            color: var(--ds-gray-900);
            margin: 0;
            font-weight: 400;
        }

        .gateway-mock-widget {
            background: #050505;
            border: 1px solid var(--ds-gray-400);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0 10px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        @keyframes livePulse {
            0% { transform: scale(0.95); opacity: 0.8; }
            50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
            100% { transform: scale(0.95); opacity: 0.8; }
        }
        .pulse-dot-green {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: #10b981;
            display: inline-block;
            animation: livePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        .pulse-dot-amber {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: #f59e0b;
            display: inline-block;
        }

        .v-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 6px;
            border-radius: 9999px;
            background: var(--ds-gray-200);
            outline: none;
            cursor: pointer;
            margin: 10px 0 4px;
        }
        .v-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid #000000;
            box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: transform 0.1s ease;
        }
        .v-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }
        .v-slider::-moz-range-thumb {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid #000000;
            cursor: pointer;
        }

        .gateway-interactive-btn {
            background: var(--ds-background-200);
            border: 1px solid var(--ds-gray-400);
            color: #ffffff;
            font-family: var(--font-tree-mono);
            font-size: 11.5px;
            padding: 7px 12px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
            transition: all 0.15s ease;
            width: 100%;
            margin-top: 6px;
        }
        .gateway-interactive-btn:hover:not(:disabled) {
            background: var(--ds-gray-300);
            border-color: var(--ds-gray-500);
        }
        .gateway-interactive-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        @keyframes flashRow {
            0% { background: rgba(16, 185, 129, 0.25); border-color: rgba(16, 185, 129, 0.5); }
            100% { background: transparent; }
        }
        .flash-highlight {
            animation: flashRow 0.8s ease-out;
        }
        @keyframes spin {
            100% { transform: rotate(360deg); }
        }

        .dashboard-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid #333333;
        }

        .header-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }

        .header-badges {
            display: flex;
            gap: 16px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .badge--gray {
            background-color: #222222;
            color: #A1A1A1;
        }

        .badge--success {
            background-color: rgba(80, 227, 194, 0.1);
            color: #50e3c2;
        }

        .grid-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        @media (min-width: 768px) {
            .grid-row--three-cols {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .metric-card {
            background-color: #111111;
            padding: 24px;
            border-radius: 12px;
        }

        .metric-label {
            display: block;
            color: #A1A1A1;
            font-size: 0.875rem;
            margin-bottom: 8px;
        }

        .metric-value {
            display: block;
            font-size: 24px;
            font-weight: 500;
            color: #ffffff;
        }

        .standard-card {
            background-color: #0A0A0A;
            border: 1px solid #333333;
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            font-weight: 500;
            color: #ffffff;
        }

        .card-icon {
            color: #A1A1A1;
        }

        .mono-text {
            font-family: var(--font-tree-mono, monospace);
            font-size: 0.9rem;
            direction: ltr;
            text-align: left;
        }

        .text-secondary {
            color: #A1A1A1;
        }

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

        .routing-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #333333;
        }
        .routing-list li:last-child { border-bottom: none; }

        .progress-container {
            height: 6px;
            background-color: #333333;
            border-radius: 999px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .progress-bar {
            height: 100%;
            background-color: #3291ff;
            border-radius: 999px;
        }

        .billing-summary {
            color: #A1A1A1;
            font-size: 0.9rem;
            direction: ltr;
            text-align: left;
        }

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

        .observability-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .status-code {
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 500;
        }

        .status-200 {
            background-color: rgba(80, 227, 194, 0.1);
            color: #50e3c2;
        }

        .status-429 {
            background-color: rgba(245, 166, 35, 0.1);
            color: #f5a623;
        }

        .ai-code-widget {
            background: var(--ds-background-100);
            border: 1px solid var(--ds-gray-400);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }
        .ai-code-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 16px;
            background: var(--ds-background-200);
            border-bottom: 1px solid var(--ds-gray-400);
            flex-wrap: wrap;
            gap: 10px;
        }
        .ai-code-tabs {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .ai-code-tab {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            color: var(--ds-gray-900);
            background: transparent;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.15s ease;
            font-family: var(--font-tree-sans);
        }
        .ai-code-tab:hover {
            color: var(--ds-gray-1000);
            background: var(--ds-gray-200);
        }
        .ai-code-tab.active {
            color: #ffffff;
            background: var(--ds-gray-200);
            border-color: var(--ds-gray-400);
        }
        .ai-model-select-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12.5px;
            color: var(--ds-gray-900);
        }
        .ai-model-select {
            background: var(--ds-background-100);
            border: 1px solid var(--ds-gray-400);
            color: var(--ds-gray-1000);
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            outline: none;
            cursor: pointer;
            font-family: var(--font-tree-mono);
        }
        .ai-model-select:focus {
            border-color: var(--ds-gray-500);
        }
        .ai-code-body {
            padding: 20px 24px;
            font-family: var(--font-tree-mono), monospace !important;
            font-size: 13.5px;
            line-height: 1.65;
            color: #ededed;
            overflow-x: auto;
            margin: 0;
            background: var(--ds-background-100);
        }

        .ships-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .ship-card {
            background: #0a0a0a;
            border: 1px solid var(--ds-gray-400);
            border-radius: 14px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
            transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .ship-card:hover {
            border-color: var(--ds-gray-600);
            transform: translateY(-2px);
            background: #111111;
            box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.8), inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
        }

        .ship-glow {
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(45px);
            opacity: 0.12;
            transition: opacity 0.3s ease;
        }

        .ship-card:hover .ship-glow {
            opacity: 0.28;
        }

        .ship-glow-gemini { background: #8b5cf6; }
        .ship-glow-openai { background: #10a37f; }
        .ship-glow-xai { background: #38bdf8; }

        .ship-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .ship-provider-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--ds-gray-1000);
        }

        .ship-provider-icon {
            width: 22px;
            height: 22px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }

        .ship-badge {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--ds-gray-900);
            font-family: var(--font-mono);
            padding: 2.5px 8px;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            white-space: nowrap;
        }

        .ship-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 8px 0;
            line-height: 1.3;
            letter-spacing: -0.015em;
        }

        .ship-desc {
            font-size: 13.5px;
            line-height: 1.6;
            color: var(--ds-gray-900);
            margin: 0;
        }

        .ship-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .ship-status-live {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            color: var(--ds-gray-700);
            font-family: var(--font-mono);
            font-weight: 400;
        }

        .ship-live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #10b981;
            box-shadow: 0 0 6px rgba(16, 185, 129, 0.7);
            display: inline-block;
        }

        .quickstart-mindmap-board {
            background: #050505;
            border: 1px solid var(--ds-gray-400);
            border-radius: 16px;
            padding: 56px 36px;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.06), 0 24px 60px -20px rgba(0, 0, 0, 0.85);
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
            background-size: 20px 20px;
            margin-top: 24px;
            width: 100%;
            min-height: 400px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
        }

        .quickstart-mindmap-container {
            position: relative;
            width: 100%;
        }

        .quickstart-mindmap-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .qs-flow-path {
            fill: none;
            stroke: rgba(255, 255, 255, 0.22);
            stroke-width: 1.25;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.2s ease, stroke-width 0.2s ease, filter 0.2s ease;
        }

        .qs-flow-path.active {
            stroke: #ffffff;
            stroke-width: 1.75;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
        }

        .quickstart-mindmap-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .qs-col {
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 160px;
            flex-shrink: 0;
            align-items: center;
        }

        .qs-node-card {
            background: #0a0a0a;
            border: 1px solid var(--ds-gray-400);
            border-radius: 10px;
            padding: 12px 14px;
            position: relative;
            box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
            transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
            cursor: grab;
            user-select: none;
            -webkit-user-select: none;
            touch-action: none;
            will-change: transform;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            width: 100%;
            box-sizing: border-box;
        }

        .qs-node-card:hover {
            border-color: var(--ds-gray-600);
            background: #121212;
            box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.8), inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
        }

        .qs-node-card.active {
            border-color: var(--ds-gray-600);
            background: #121212;
        }

        .qs-node-card:active,
        .qs-node-card.is-dragging {
            cursor: grabbing !important;
            z-index: 100 !important;
            border-color: rgba(255, 255, 255, 0.8) !important;
            background: #141414 !important;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.3) !important;
            transition: none !important;
        }

        .qs-step-badge {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-family: var(--font-tree-mono), monospace;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 1.5px 6px;
            border-radius: 9999px;
            margin-bottom: 4px;
        }

        .qs-node-title {
            font-size: 12.5px;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .qs-anchor-l,
        .qs-anchor-r {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--ds-gray-500);
            border: 1.5px solid #000000;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            transition: background 0.2s ease, box-shadow 0.2s ease;
        }

        .qs-anchor-l { left: -4px; }
        .qs-anchor-r { right: -4px; }

        .qs-node-card:hover .qs-anchor-l,
        .qs-node-card:hover .qs-anchor-r,
        .qs-node-card.active .qs-anchor-l,
        .qs-node-card.active .qs-anchor-r {
            background: #ffffff;
            box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
        }

        @media (max-width: 1100px) {
            .quickstart-mindmap-grid {
                flex-direction: column;
                gap: 16px;
            }
            .qs-col {
                width: 100%;
                max-width: 280px;
            }
            .quickstart-mindmap-svg {
                display: none;
            }
            .qs-anchor-l,
            .qs-anchor-r {
                display: none;
            }
            .quickstart-mindmap-board {
                padding: 24px 16px;
                min-height: auto;
            }
        }
        .faq-grid-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            width: 100%;
        }
        @media (min-width: 968px) {
            .faq-grid-section {
                grid-template-columns: minmax(300px, 380px) 1fr;
                gap: 64px;
                align-items: start;
            }
            .faq-grid-left {
                position: -webkit-sticky;
                position: sticky;
                top: 100px;
                align-self: start;
                height: fit-content;
                will-change: transform;
            }
        }
        .faq-grid-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        .faq-grid-left .gateway-pill-badge {
            margin-bottom: 0;
        }
        .faq-grid-left .gateway-section-title {
            text-align: left;
            margin: 0;
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            line-height: 1.15;
        }
        .faq-grid-left .gateway-section-desc {
            text-align: left;
            margin: 0;
            max-width: 380px;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--ds-gray-900);
        }
        .faq-grid-right {
            width: 100%;
            min-width: 0;
        }
        .faq-wrap {
            max-width: 100%;
            margin: 0;
            width: 100%;
        }
        .faq-row {
            border-bottom: 1px solid var(--ds-gray-400);
        }
        .faq-row:first-child {
            border-top: 1px solid var(--ds-gray-400);
        }
        .faq-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 0;
            cursor: pointer;
            gap: 16px;
            -webkit-user-select: none;
            user-select: none;
        }
        .faq-trigger h3 {
            font-size: 1.0625rem;
            font-weight: 500;
            margin: 0;
            color: #ffffff;
            letter-spacing: -0.015em;
        }
        .faq-trigger .faq-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            color: var(--ds-gray-700);
            transition: transform 0.2s ease;
        }
        .faq-trigger .faq-icon.open {
            transform: rotate(45deg);
            color: var(--ds-gray-1000);
        }
        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s cubic-bezier(0.16,1,0.3,1);
        }
        .faq-body.show {
            max-height: 300px;
        }
        .faq-body p {
            margin: 0;
            padding-bottom: 22px;
            color: var(--ds-gray-900);
            font-size: 0.9375rem;
            line-height: 1.65;
        }
        .hero-section {
            position: relative;
            isolation: isolate;
        }

        .v-hero-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 20px;
            font-size: 14px;
            border-radius: 9999px;
            background: #ededed;
            font-weight: 500;
            color: #000000;
            text-decoration: none;
            transition: background 0.15s ease, opacity 0.15s ease;
            font-family: var(--font-tree-sans);
        }
        .v-hero-btn-primary:hover {
            background: #ffffff;
        }

        .v-hero-btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 20px;
            font-size: 14px;
            border-radius: 9999px;
            background: transparent;
            border: 1px solid var(--ds-gray-400);
            font-weight: 500;
            color: var(--ds-gray-1000);
            text-decoration: none;
            transition: background 0.15s ease, border-color 0.15s ease;
            font-family: var(--font-tree-sans);
        }
        .v-hero-btn-secondary:hover {
            background: var(--ds-gray-200);
            border-color: var(--ds-gray-500);
        }

        @media (max-width: 1024px) {
            .gateway-stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .gateway-bento-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gateway-bento-card:nth-child(3) {
                grid-column: span 2;
            }
        }

        @media (max-width: 960px) {
            .quickstart-mindmap-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .quickstart-mindmap-svg {
                display: none;
            }
            .qs-node-anchor-in,
            .qs-node-anchor-out {
                display: none;
            }
            .quickstart-mindmap-board {
                padding: 24px 16px;
            }
        }

        @media (max-width: 900px) {
            .ships-grid,
            .security-grid {
                grid-template-columns: 1fr;
            }
            .gateway-section-wrapper {
                padding: 48px 20px;
            }
            .gateway-section-title {
                font-size: clamp(1.625rem, 5vw, 2.25rem);
            }
            .ai-code-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .ai-model-select-wrap {
                width: 100%;
            }
            .ai-model-select {
                flex: 1;
            }
        }

        @media (max-width: 640px) {
            .gateway-stats-container {
                grid-template-columns: 1fr;
            }
            .gateway-bento-grid {
                grid-template-columns: 1fr;
            }
            .gateway-bento-card:nth-child(3) {
                grid-column: auto;
            }
            .gateway-bento-card {
                padding: 28px 20px;
            }
        }

        .console-hero-preview {
            position: relative;
            margin: 36px 0 0 0;
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--ds-gray-400);
            box-shadow: 0 16px 36px -12px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
            background: #0a0a0a;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .console-hero-preview img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 15px;
            object-fit: contain;
        }
        @media (max-width: 640px) {
            .console-hero-preview {
                margin: 24px 0 0 0;
                border-radius: 12px;
            }
            .console-hero-preview img {
                border-radius: 11px;
            }
        }
        @media (max-width: 768px) {
            main {
                margin-top: -72px !important;
            }
            .hero-section {
                padding-top: 80px !important;
            }
        }
