*, *::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, .ai-code-widget {
            overflow-x: hidden;
        }

        .ai-hero-layout {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            align-items: center;
            gap: 48px;
            width: 100%;
        }
        @media (max-width: 1024px) {
            .ai-hero-layout {
                grid-template-columns: 1fr !important;
                gap: 36px !important;
            }
            .ai-hero-bento-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;
            }
        }
        .pricing-grid-section,
        .faq-grid-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            width: 100%;
        }
        @media (min-width: 968px) {
            .pricing-grid-section,
            .faq-grid-section {
                grid-template-columns: minmax(300px, 380px) 1fr;
                gap: 64px;
                align-items: start;
            }
            .pricing-grid-left,
            .faq-grid-left {
                position: -webkit-sticky;
                position: sticky;
                top: 100px;
                align-self: start;
                height: fit-content;
                will-change: transform;
            }
        }
        .pricing-grid-left,
        .faq-grid-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        .pricing-grid-left .gateway-pill-badge,
        .faq-grid-left .gateway-pill-badge {
            margin-bottom: 0;
        }
        .pricing-grid-left .gateway-section-title,
        .faq-grid-left .gateway-section-title {
            text-align: left;
            margin: 0;
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            line-height: 1.15;
        }
        .pricing-grid-left .gateway-section-desc,
        .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);
        }
        .pricing-grid-right,
        .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;
            }
        }

.ai-hero-bento-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.bento-card-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.bento-card-root {
    position: relative;
    width: 100%;
    max-width: 576px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #090a0f;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(59, 130, 246, 0.05);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s;
    margin: 0;
}
.bento-card-root:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), 0 0 50px rgba(59, 130, 246, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.16);
}
.bento-card-header {
    padding: 24px 28px 16px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bento-card-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}
.bento-card-headline {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.015em;
    max-width: 480px;
    margin: 0;
}
.bento-card-viewport {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    border-radius: 24px;
}
.bento-card-backdrop-layer {
    position: absolute;
    top: 64px;
    left: 64px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0.8;
}
.bento-workspace-window {
    position: absolute;
    top: 32px;
    left: 88px;
    width: 100%;
    height: 100%;
    background: #090a0f;
    border-top-left-radius: 24px;
    box-shadow: -12px 12px 36px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    outline: 6px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.bento-window-titlebar {
    padding: 12px 18px;
    border-top-left-radius: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.bento-window-dots {
    display: flex;
    gap: 6px;
}
.bento-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.bento-window-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}
.bento-window-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}
.bento-sidebar {
    width: 140px;
    min-width: 140px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.015);
    position: relative;
}
.bento-tab-slider {
    position: absolute;
    top: 16px;
    left: 8px;
    right: 8px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    transition: top 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 5;
}
.bento-slider-pill-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5px;
    height: 16px;
    border-radius: 999px;
    background: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}
.bento-tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 8px;
    border-radius: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
    z-index: 10;
    outline: none;
}
.bento-tab-btn:hover {
    color: rgba(255, 255, 255, 0.85);
}
.bento-tab-btn.active {
    color: #ffffff;
    font-weight: 500;
}
.bento-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: currentColor;
}
.bento-tab-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11.5px;
}
.bento-tab-badge {
    margin-left: auto;
    font-size: 8.5px;
    line-height: 1;
    padding: 2px 4.5px;
    border-radius: 5px;
    font-variant-numeric: tabular-nums;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    transition: all 0.2s;
}
.bento-tab-btn.active .bento-tab-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}
.bento-content-area {
    flex: 1;
    min-width: 0;
    background: #090a0f;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    position: relative;
}
.bento-area-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bento-area-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bento-area-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    line-height: 1.25;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bento-panes-viewport {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.bento-pane {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px);
    filter: blur(4px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-pane.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
    pointer-events: auto;
    visibility: visible;
    position: relative;
}
.bento-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(to top, #090a0f, transparent);
    pointer-events: none;
    z-index: 20;
}
.bento-overview-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
.bento-perf-card {
    position: relative;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bento-perf-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.bento-perf-tag {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}
.bento-perf-icon-primary {
    color: #3b82f6;
    display: flex;
    align-items: center;
}
.bento-perf-stat {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bento-perf-val {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.1;
}
.bento-perf-bar-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 4px;
}
.bento-perf-bar-fill {
    height: 100%;
    background: #3b82f6;
    border-radius: 999px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-perf-footer {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
    position: relative;
    z-index: 2;
}
.bento-perf-watermark {
    position: absolute;
    right: -10px;
    bottom: -10px;
    opacity: 0.05;
    transform: scale(1.4) rotate(12deg);
    pointer-events: none;
    color: #ffffff;
}
.bento-stats-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.bento-mini-stat {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bento-mini-stat-info {
    display: flex;
    flex-direction: column;
}
.bento-mini-val {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
}
.bento-mini-label {
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
}
.bento-mini-icon {
    opacity: 0.3;
    display: flex;
    align-items: center;
}
.bento-mgmt-box {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    height: 100%;
}
.bento-box-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bento-box-title {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.bento-search-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
}
.bento-user-list {
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bento-user-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background 0.15s;
    cursor: default;
}
.bento-user-row:hover {
    background: rgba(255, 255, 255, 0.04);
}
.bento-avatar-wrap {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}
.bento-avatar-icon {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
}
.bento-status-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid #090a0f;
}
.dot-amber { background: #fbbf24; }
.dot-emerald { background: #34d399; }
.bento-user-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.bento-user-name {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bento-user-role {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.45);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bento-row-action {
    opacity: 0;
    transition: opacity 0.2s;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
}
.bento-user-row:hover .bento-row-action {
    opacity: 1;
}
.bento-threads-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
.bento-thread-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.bento-action-card {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
}
.bento-action-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
}
.bento-action-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.bento-action-title {
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
}
.bento-action-desc {
    font-size: 8.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}
.bento-action-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 6px;
    background: #ffffff;
    color: #000000;
    font-size: 8.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s, background 0.15s;
}
.bento-action-btn:hover {
    background: #3b82f6;
    color: #ffffff;
}
.bento-action-btn:active {
    transform: scale(0.95);
}
.bento-pin-bar {
    margin-top: auto;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bento-pin-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bento-pin-icon-wrap {
    padding: 3px 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}
.bento-pin-text {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.bento-pin-add {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
}
.bento-resources-box {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    height: 100%;
}
.bento-box-icon {
    color: rgba(255, 255, 255, 0.3);
    display: flex;
}
.bento-files-list {
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}
.bento-files-list::-webkit-scrollbar {
    display: none;
}
.bento-file-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 8px;
    transition: background 0.15s;
    cursor: pointer;
}
.bento-file-row:hover {
    background: rgba(255, 255, 255, 0.04);
}
.bento-file-icon-wrap {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}
.bento-file-row:hover .bento-file-icon-wrap {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}
.bento-file-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.bento-file-name {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bento-file-sub {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-variant-numeric: tabular-nums;
    text-transform: uppercase;
}
.bento-file-arrow {
    opacity: 0;
    transition: opacity 0.2s;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
}
.bento-file-row:hover .bento-file-arrow {
    opacity: 1;
}
@media (max-width: 640px) {
    .bento-card-root {
        border-radius: 20px;
    }
    .bento-card-header {
        padding: 16px 18px 12px;
    }
    .bento-card-viewport {
        height: 275px;
        border-radius: 16px;
    }
    .bento-card-backdrop-layer {
        top: 40px;
        left: 40px;
    }
    .bento-workspace-window {
        top: 24px;
        left: 48px;
    }
}
.pipeline-dual-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.pipeline-dual-wrapper .gateway-section-header {
    max-width: 720px;
    margin-bottom: 32px;
}
.pipeline-dual-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    width: 100%;
}
@media (max-width: 968px) {
    .pipeline-dual-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.pipeline-media-card {
    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);
    height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pipeline-media-card:hover {
    border-color: var(--ds-gray-500);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}
.pipeline-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pipeline-dual-section .ai-code-widget {
    height: 390px;
    display: flex;
    flex-direction: column;
    margin: 0;
    box-sizing: border-box;
}
.pipeline-dual-section .ai-code-body {
    flex: 1;
    margin: 0;
    padding: 20px 24px;
    font-size: 13.5px;
    line-height: 1.65;
    box-sizing: border-box;
    overflow: auto;
}
@media (max-width: 968px) {
    .pipeline-media-card {
        height: auto;
        aspect-ratio: 1024 / 684;
    }
    .pipeline-dual-section .ai-code-widget {
        height: auto;
    }
}
.vc-managed-infra-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    box-sizing: border-box;
    overflow: visible !important;
}
@media (max-width: 768px) {
    .vc-managed-infra-wrapper {
        padding: 48px 16px;
    }
}
.vc-infra-section {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}
.vc-infra-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 968px) {
    .vc-infra-grid {
        grid-template-columns: minmax(320px, 400px) 1fr;
        gap: 64px;
        align-items: start;
    }
    .vc-infra-left {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        align-self: start;
        height: fit-content;
        will-change: transform;
    }
}
.vc-infra-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vc-infra-eyebrow {
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: var(--ds-gray-900, #888888);
    letter-spacing: -0.01em;
}
.vc-infra-title {
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}
.vc-infra-desc {
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.6;
    color: var(--ds-gray-900, #888888);
    margin: 0;
    max-width: 400px;
    letter-spacing: -0.01em;
}
.vc-infra-right {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.vc-infra-card-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vc-step-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 3px 9px;
    border-radius: 100px;
    width: fit-content;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-infra-caption {
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ds-gray-900, #888888);
    margin: 0;
    letter-spacing: -0.01em;
}
.vc-infra-caption strong {
    color: #ffffff;
    font-weight: 600;
}
.vc-infra-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 968px) {
    .vc-infra-card {
        aspect-ratio: 16 / 9;
    }
}
.vc-infra-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}
.vc-sso-box {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.vc-sso-fields {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vc-sso-input-row {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    height: 40px;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    color: #777777;
    font-size: 13.5px;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-sso-input-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.vc-sso-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}
.vc-sso-saml-text {
    font-size: 13.5px;
    color: #888888;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-sso-submit-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 64px;
    background: transparent;
    color: #ededed;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    cursor: pointer;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
    transition: all 0.15s ease;
}
.vc-sso-submit-btn:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}
.vc-brand-box {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.vc-brand-header {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vc-brand-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: #ededed;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.vc-brand-body {
    padding: 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vc-brand-row {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vc-brand-row-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888888;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-brand-row-value {
    font-family: var(--font-tree-mono, ui-monospace, monospace);
    font-size: 12.5px;
    color: #ffffff;
    font-weight: 500;
}
.vc-brand-color-swatch {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vc-swatch-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.vc-collab-canvas {
    width: 100%;
    max-width: 580px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    user-select: none;
}
.vc-collab-bubble {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13.5px;
    line-height: 1.45;
    color: #ededed;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    position: relative;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-collab-bubble code {
    background: #222222;
    color: #a1a1a1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 12.5px;
    font-family: var(--font-tree-mono, ui-monospace, monospace);
}
.vc-collab-bubble strong {
    color: #ffffff;
    font-weight: 600;
}
.vc-collab-br {
    display: block;
}
.vc-bubble-top-left {
    margin-left: 20px;
}
.vc-collab-row-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    position: relative;
    margin-right: 20px;
}
.vc-cursor-mariana {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: vcFloatMariana 3.4s ease-in-out infinite;
}
.vc-bubble-bottom-left {
    margin-left: 20px;
}
.vc-cursor-rauno {
    position: absolute;
    right: -42px;
    bottom: -18px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    animation: vcFloatRauno 3.4s ease-in-out infinite;
}
@keyframes vcFloatMariana {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(4px, -7px); }
}
@keyframes vcFloatRauno {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, 6px); }
}
.vc-cursor-badge {
    background: #ffffff;
    color: #000000;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    height: 18px;
    padding: 0 6px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-dist-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-sizing: border-box;
}
.vc-dist-pills-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    flex-shrink: 0;
}
.vc-dist-pill {
    background: #09090a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8e8e93;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
    height: 40px;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-dist-pill svg {
    flex-shrink: 0;
    color: #71717a;
    transition: color 0.2s ease;
}
.vc-dist-pill:hover, .vc-dist-pill.vc-dist-pill-active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}
.vc-dist-pill:hover svg, .vc-dist-pill.vc-dist-pill-active svg {
    color: #ffffff;
}
.vc-dist-diagram-col {
    position: relative;
    width: 310px;
    height: 260px;
    flex-shrink: 0;
}
.vc-dist-node {
    position: absolute;
    width: 148px;
    height: 104px;
    background: #0c0c0d;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.vc-dist-node-top {
    top: 0;
    left: 0;
}
.vc-dist-node-bottom {
    bottom: 0;
    right: 0;
}
.vc-node-header {
    height: 22px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0c0c0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.vc-node-header-left {
    display: flex;
    align-items: center;
    gap: 5px;
}
.vc-node-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.vc-node-bar {
    width: 12px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.13);
}
.vc-node-header-right {
    display: flex;
    align-items: center;
    gap: 3.5px;
}
.vc-node-bar-sm {
    width: 10px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.11);
}
.vc-node-body {
    flex: 1;
    margin: 5px;
    background: #171718;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px;
}
.vc-node-brand-row {
    display: flex;
    align-items: center;
    gap: 7px;
}
.vc-node-label-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-node-label-sub {
    font-size: 11px;
    color: #888888;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-dist-connector {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.vc-pipeline-pill {
    position: absolute;
    top: 134px;
    left: 116px;
    transform: translateY(-50%);
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    z-index: 3;
}
.vc-pipe-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}
.vc-pipe-brand {
    font-size: 11.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-pipe-tag {
    font-size: 10.5px;
    font-weight: 500;
    color: #a1a1aa;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-payout-box {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.vc-payout-top {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vc-payout-amount-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vc-payout-amount-label {
    font-size: 11.5px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-payout-amount {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-payout-badge-green {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.28);
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-payout-splits {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vc-split-item {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vc-split-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vc-split-name {
    font-size: 12.5px;
    font-weight: 500;
    color: #ededed;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-split-channel {
    font-size: 11px;
    color: #777777;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-split-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.vc-split-val {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-tree-mono, ui-monospace, monospace);
}
.vc-split-pct {
    font-size: 11px;
    color: #a855f7;
    font-weight: 600;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
.vc-payout-footer-notice {
    background: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: #888888;
    font-family: var(--font-tree-sans, system-ui, -apple-system, sans-serif);
}
@media (max-width: 640px) {
    .vc-collab-row-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }
    .vc-cursor-rauno {
        position: static;
        margin-top: 8px;
    }
    .vc-infra-card {
        min-height: 320px;
        padding: 24px 16px;
    }
    .vc-bubble-top-left, .vc-bubble-bottom-left, .vc-collab-row-right {
        margin-left: 0;
        margin-right: 0;
    }
    .vc-dist-stage {
        flex-direction: column;
        gap: 20px;
    }
    .vc-dist-pills-col {
        width: 100%;
        max-width: 280px;
    }
    .vc-dist-diagram-col {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

.hero-module__s6YoJa__plans {
    flex-direction: row !important;
    width: 100% !important;
}
.wl-pricing-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}
@media (min-width: 768px) {
    .wl-pricing-wrapper .hero-module__s6YoJa__plan:first-child {
        border-right: 1px solid var(--ds-gray-400, #262626);
        border-bottom: none;
    }
}
@media (max-width: 767px) {
    .hero-module__s6YoJa__plans {
        flex-direction: column !important;
    }
    .wl-pricing-wrapper .hero-module__s6YoJa__plan:first-child {
        border-bottom: 1px solid var(--ds-gray-400, #262626);
        border-right: none;
    }
}
.hero-module__s6YoJa__plan {
    text-wrap: balance;
    flex-direction: column;
    justify-content: space-between !important;
    gap: 32px;
    width: 100%;
    padding: 40px 28px;
    display: flex;
    position: relative;
    box-sizing: border-box;
}
.hero-module__s6YoJa__plan > :first-child {
    flex: 1 1 auto !important;
}
.hero-module__s6YoJa__plan > :last-child {
    margin-top: auto !important;
    width: 100% !important;
}
.hero-module__s6YoJa__plan[data-variant=callout] {
    background: var(--ds-background-100, #0a0a0a);
    box-shadow: var(--ds-shadow-small), 0 0 0 1px var(--guide-color, rgba(255, 255, 255, 0.14));
}
.hero-module__s6YoJa__plan b {
    color: var(--ds-gray-1000, #ffffff);
    font-weight: 500;
}
.hero-module__s6YoJa__plan [data-tree-button],
.hero-module__s6YoJa__plan [data-growing-cta] {
    flex: 1;
    width: 100%;
    margin-top: auto;
}
.hero-module__s6YoJa__plan [data-tree-button] {
    text-align: left;
    flex-shrink: 0;
    justify-content: space-between;
    display: flex;
}
.hero-module__s6YoJa__bullets {
    margin-top: 24px;
}
@media (max-width: 960px) {
    .hero-module__s6YoJa__plan {
        flex-direction: column;
        align-items: baseline;
        height: auto;
        padding: 24px;
        gap: 16px;
    }
    .hero-module__s6YoJa__plan [data-tree-button] {
        margin-top: 8px;
        width: 100% !important;
    }
}

.button-module__QyrFCa__base,
.button-module__QyrFCa__button,
[data-tree-button] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    cursor: pointer !important;
    text-decoration: none !important;
    user-select: none !important;
    font-weight: 500 !important;
    border-radius: 6px;
    font-size: var(--tree-form-font, 14px);
    line-height: var(--tree-form-line-height, 24px);
    height: var(--tree-form-height, 40px);
    padding: 0 var(--tree-gap-half, 12px);
    box-sizing: border-box;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease !important;
}
.button-module__QyrFCa__content {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 4px !important;
    white-space: nowrap !important;
}
.button-module__QyrFCa__prefix,
.button-module__QyrFCa__suffix {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
.button-module__QyrFCa__prefix { margin-right: 6px !important; }
.button-module__QyrFCa__suffix { margin-left: 6px !important; }
.button-module__QyrFCa__rounded,
[data-tree-button].button-module__QyrFCa__rounded {
    border-radius: 100px !important;
}
.button-module__QyrFCa__button:not(.button-module__QyrFCa__secondary),
.button-module__QyrFCa__primary {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ffffff !important;
}
.button-module__QyrFCa__button:not(.button-module__QyrFCa__secondary):hover,
.button-module__QyrFCa__primary:hover {
    background-color: #e5e5e5 !important;
    color: #000000 !important;
}
.button-module__QyrFCa__secondary {
    background-color: #0a0a0a !important;
    color: #ededed !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}
.button-module__QyrFCa__secondary:hover {
    background-color: #1a1a1a !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    color: #ffffff !important;
}



