:root {
            --white: #FFFFFF;
            --cream: #FDFCFB;
            --cream-dark: #F8F6F3;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --gray-950: #0a0d12;
            
            --bronze-900: #312E81;
            --bronze-800: #3730A3;
            --bronze-700: #4F46E5;
            --bronze-600: #6366F1;
            --bronze-500: #A37B4C;
            --bronze-400: #A5B4FC;
            --bronze-300: #D4B483;
            
            --purple-50: #FAF5FF;
            --purple-100: #F3E8FF;
            --purple-200: #E9D5FF;
            --purple-300: #D8B4FE;
            --purple-400: #C084FC;
            --purple-500: #A855F7;
            --purple-600: #9333EA;
            --purple-700: #7C3AED;
            --purple-800: #6D28D9;
            --purple-900: #581C87;
            
            --emerald-500: #10B981;
            --emerald-600: #059669;
            --red-500: #EF4444;
            --amber-500: #F59E0B;
            --blue-500: #3B82F6;
            
            --dark-bg: #0f1117;
            --dark-bg-secondary: #161922;
            --dark-card: #1c1f2a;
            --dark-border: rgba(255, 255, 255, 0.08);
            
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-800);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        code {
            font-family: var(--font-mono);
            font-size: 13px;
            background: var(--gray-100);
            padding: 2px 6px;
            border-radius: 4px;
        }

        .container { max-width: 1600px; margin: 0 auto; padding: 0 72px; }

        .container-wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-400));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(99,102,241, 0.3);
        }

        .logo-mark svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .logo sup {
            font-size: 11px;
            font-weight: 500;
            color: var(--bronze-500);
            margin-left: 2px;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-600);
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav-link:hover {
            color: var(--gray-900);
            background: rgba(0, 0, 0, 0.04);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
            color: white;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--gray-800);
            border: 1px solid var(--gray-200);
        }

        .btn-secondary:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
        }

        .btn-ghost {
            color: var(--gray-600);
            padding: 10px 16px;
        }

        .btn-ghost:hover {
            color: var(--gray-900);
        }

        .btn-bronze {
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-800));
            color: white;
            box-shadow: 0 4px 12px rgba(99,102,241, 0.3);
        }

        .btn-bronze:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(99,102,241, 0.4);
        }

        .btn-outline-light {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 60px 0 80px;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 80%, rgba(99,102,241, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Grid pattern */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 540px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--purple-300);
            margin-bottom: 24px;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .hero-badge-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-badge-icon svg {
            width: 12px;
            height: 12px;
            color: white;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            color: white;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
        }

        .hero-buttons .btn-primary {
            background: #FFFFFF;
            color: #1E1E24;
            border: none;
            border-radius: 8px;
            padding: 10px 22px;
            font-weight: 500;
            box-shadow: none;
        }

        .hero-buttons .btn-primary:hover {
            background: #F0F0F0;
            color: #1E1E24;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transform: none;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        /* Technical Specs Preview */
        .tech-specs-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .tech-spec-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tech-spec-icon {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tech-spec-icon svg {
            width: 18px;
            height: 18px;
            color: var(--purple-400);
        }

        .tech-spec-content {
            display: flex;
            flex-direction: column;
        }

        .tech-spec-value {
            font-size: 16px;
            font-weight: 700;
            color: white;
            font-family: var(--font-mono);
        }

        .tech-spec-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Hero Mockup - Call Flow Terminal */
        .hero-mockup {
            position: relative;
        }

        .terminal-container {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5),
                        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
        }

        .terminal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid var(--dark-border);
        }

        .terminal-dots {
            display: flex;
            gap: 8px;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .terminal-dot.red { background: #EF4444; }
        .terminal-dot.yellow { background: #F59E0B; }
        .terminal-dot.green { background: #10B981; }

        .terminal-title {
            font-family: var(--font-mono);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .terminal-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            color: var(--emerald-500);
        }

        .terminal-status-dot {
            width: 6px;
            height: 6px;
            background: var(--emerald-500);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .terminal-body {
            padding: 24px;
            font-family: var(--font-mono);
            font-size: 13px;
            line-height: 1.8;
        }

        .terminal-line {
            display: flex;
            gap: 12px;
            margin-bottom: 8px;
        }

        .terminal-prompt {
            color: var(--purple-400);
            user-select: none;
        }

        .terminal-command {
            color: rgba(255, 255, 255, 0.9);
        }

        .terminal-output {
            color: rgba(255, 255, 255, 0.6);
            padding-left: 24px;
        }

        .terminal-output.success {
            color: var(--emerald-500);
        }

        .terminal-output.info {
            color: var(--purple-400);
        }

        .terminal-output.warning {
            color: var(--amber-500);
        }

        .terminal-divider {
            border: none;
            border-top: 1px dashed rgba(255, 255, 255, 0.1);
            margin: 16px 0;
        }

        .terminal-section-title {
            color: rgba(255, 255, 255, 0.4);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }

        /* Call Flow Visualization */
        .call-flow-visual {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--dark-border);
            border-radius: 12px;
            padding: 20px;
            margin-top: 16px;
        }

        .call-flow-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .call-flow-title {
            font-size: 12px;
            font-weight: 600;
            color: white;
            font-family: var(--font-sans);
        }

        .call-flow-badge {
            padding: 4px 10px;
            background: rgba(16, 185, 129, 0.2);
            border-radius: 6px;
            font-size: 10px;
            font-weight: 600;
            color: var(--emerald-400);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .call-flow-steps {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .call-flow-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .call-flow-node {
            width: 48px;
            height: 48px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .call-flow-node.active {
            background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
            border-color: var(--purple-500);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
        }

        .call-flow-node svg {
            width: 22px;
            height: 22px;
            color: var(--purple-300);
        }

        .call-flow-node.active svg {
            color: white;
        }

        .call-flow-label {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
            font-family: var(--font-sans);
        }

        .call-flow-arrow {
            width: 24px;
            height: 2px;
            background: linear-gradient(90deg, var(--purple-500), transparent);
            position: relative;
        }

        .call-flow-arrow::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            border: 4px solid transparent;
            border-left: 5px solid var(--purple-500);
        }

        /* Floating Technical Cards */
        .floating-tech-card {
            position: absolute;
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: floatTech 5s ease-in-out infinite;
        }

        @keyframes floatTech {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .floating-tech-card-1 {
            top: -20px;
            right: -40px;
            animation-delay: 0.5s;
        }

        .floating-tech-card-2 {
            bottom: 60px;
            left: -60px;
            animation-delay: 1s;
        }

        .tech-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .tech-card-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tech-card-icon svg {
            width: 16px;
            height: 16px;
            color: white;
        }

        .tech-card-title {
            font-size: 13px;
            font-weight: 600;
            color: white;
        }

        .tech-card-content {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .tech-card-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tech-card-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
        }

        .tech-card-value {
            font-size: 12px;
            font-weight: 600;
            color: white;
            font-family: var(--font-mono);
        }

        .tech-card-value.success {
            color: var(--emerald-400);
        }

        /* ===== SLA SECTION ===== */
        .sla-section {
            padding: 60px 0;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
        }

        .sla-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 32px;
        }

        .sla-card {
            text-align: center;
            padding: 32px 20px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .sla-card:hover {
            border-color: var(--purple-300);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.1);
            transform: translateY(-4px);
        }

        .sla-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--gray-900);
            font-family: var(--font-mono);
            margin-bottom: 4px;
        }

        .sla-value span {
            color: var(--purple-600);
        }

        .sla-label {
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 12px;
        }

        .sla-badge {
            display: inline-block;
            padding: 4px 10px;
            background: var(--purple-100);
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            color: var(--purple-700);
        }

        /* ===== ARCHITECTURE SECTION ===== */
        .architecture {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px;
        }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--purple-600);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-description {
            font-size: 18px;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .architecture-diagram {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 48px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }

        .arch-row {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 32px;
        }

        .arch-row:last-child {
            margin-bottom: 0;
        }

        .arch-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .arch-node-box {
            width: 160px;
            padding: 20px;
            background: var(--gray-50);
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .arch-node-box:hover {
            border-color: var(--purple-400);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
        }

        .arch-node-box.primary {
            background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
            border-color: var(--purple-500);
        }

        .arch-node-box.primary .arch-node-title,
        .arch-node-box.primary .arch-node-subtitle {
            color: white;
        }

        .arch-node-box.primary .arch-node-subtitle {
            opacity: 0.8;
        }

        .arch-node-icon {
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
        }

        .arch-node-box.primary .arch-node-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .arch-node-icon svg {
            width: 20px;
            height: 20px;
            color: var(--purple-600);
        }

        .arch-node-box.primary .arch-node-icon svg {
            color: white;
        }

        .arch-node-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .arch-node-subtitle {
            font-size: 11px;
            color: var(--gray-500);
        }

        .arch-connector {
            display: flex;
            justify-content: center;
            margin: -16px 0;
            position: relative;
            z-index: 1;
        }

        .arch-connector-line {
            width: 2px;
            height: 40px;
            background: linear-gradient(180deg, var(--purple-400), var(--purple-200));
        }

        .arch-connector-horizontal {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin: -16px 0;
        }

        .arch-connector-h-line {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, var(--purple-200), var(--purple-400), var(--purple-200));
        }

        /* ===== CAPABILITIES SECTION ===== */
        .capabilities {
            padding: 80px 0;
            background: var(--white);
        }

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

        .capability-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 36px;
            transition: all 0.3s ease;
        }

        .capability-card:hover {
            border-color: rgba(139, 92, 246, 0.3);
            box-shadow: 0 16px 48px rgba(139, 92, 246, 0.1);
            transform: translateY(-4px);
        }

        .capability-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .capability-icon svg {
            width: 30px;
            height: 30px;
            color: var(--purple-600);
        }

        .capability-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .capability-description {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .capability-specs {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-200);
        }

        .capability-spec {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .capability-spec-label {
            color: var(--gray-500);
        }

        .capability-spec-value {
            font-weight: 600;
            color: var(--gray-900);
            font-family: var(--font-mono);
        }

        /* ===== INTEGRATIONS SECTION ===== */
        .integrations {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
        }

        .integrations .section-label {
            color: var(--purple-400);
        }

        .integrations .section-title {
            color: white;
        }

        .integrations .section-description {
            color: rgba(255, 255, 255, 0.6);
        }

        .integrations-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 48px;
        }

        .integration-category {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--dark-border);
            border-radius: 20px;
            padding: 32px;
        }

        .integration-category-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--dark-border);
        }

        .integration-category-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .integration-category-icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .integration-category-title {
            font-size: 18px;
            font-weight: 600;
            color: white;
        }

        .integration-category-subtitle {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .integration-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .integration-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--dark-border);
            border-radius: 10px;
            transition: all 0.2s;
        }

        .integration-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(139, 92, 246, 0.3);
        }

        .integration-item-logo {
            width: 32px;
            height: 32px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .integration-item-logo svg {
            width: 18px;
            height: 18px;
        }

        .integration-item-name {
            font-size: 13px;
            font-weight: 500;
            color: white;
        }

        /* ===== SECURITY SECTION ===== */
        .security {
            padding: 80px 0;
            background: var(--white);
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .security-card {
            text-align: center;
            padding: 32px 24px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .security-card:hover {
            border-color: var(--purple-300);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.1);
        }

        .security-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .security-icon svg {
            width: 32px;
            height: 32px;
            color: var(--purple-600);
        }

        .security-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .security-description {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ===== API PREVIEW ===== */
        .api-preview {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .api-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: center;
            margin-top: 64px;
        }

        .api-info h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .api-info p {
            font-size: 16px;
            color: var(--gray-500);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .api-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .api-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .api-feature-icon {
            width: 24px;
            height: 24px;
            background: var(--purple-100);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .api-feature-icon svg {
            width: 14px;
            height: 14px;
            color: var(--purple-600);
        }

        .api-feature span {
            font-size: 15px;
            color: var(--gray-700);
        }

        .api-code-block {
            background: var(--dark-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .api-code-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid var(--dark-border);
        }

        .api-code-tabs {
            display: flex;
            gap: 4px;
        }

        .api-code-tab {
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .api-code-tab.active {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .api-code-copy {
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.2s;
        }

        .api-code-copy:hover {
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }

        .api-code-body {
            padding: 24px;
            font-family: var(--font-mono);
            font-size: 13px;
            line-height: 1.8;
            overflow-x: auto;
        }

        .api-code-body pre {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .api-code-body .keyword {
            color: var(--purple-400);
        }

        .api-code-body .string {
            color: #A5D6FF;
        }

        .api-code-body .property {
            color: #7EE787;
        }

        .api-code-body .comment {
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== CTA ===== */
        .cta {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 44px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .cta-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .cta-note {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
        }

        .cta-note a {
            color: var(--purple-400);
            text-decoration: underline;
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 80px 0 40px;
            background: var(--gray-950);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 64px;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
            margin-top: 16px;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-legal {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-legal a:hover {
            color: white;
        }

        .footer-badges {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .footer-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-badge svg {
            width: 14px;
            height: 14px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .sla-grid {
                grid-template-columns: repeat(3, 1fr);
            }

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

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

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .tech-specs-preview {
                justify-content: center;
            }

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

            .integrations-content {
                grid-template-columns: 1fr;
            }

            .api-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

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

            .floating-tech-card {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .hero {
                padding: 48px 0 80px;
            }

            .hero-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 32px;
            }

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

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

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

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
            }
        }
    
/* ── Nav wrapping fix for long translations ── */
#header .nav-link,
#header .nav-item > a {
  white-space: nowrap;
}
#header .nav {
  font-size: clamp(12px, 1.1vw, 15px);
  flex-wrap: nowrap;
}
#header .header-inner {
  flex-wrap: nowrap;
  align-items: center;
}
.header-actions {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Hero badge overflow fix for long translations ── */
.hero-badge {
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
