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

:root {
    --primary: #4FBAF1;
    --primary-dark: #2B6685;
    --secondary: #191E35;
    --text-light: #E4F4FC;
    --text-secondary: #8BA3B9;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--secondary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(25, 30, 53, .95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary)
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: .95rem
}

/* Agentic Status Banner */
.agentic-status-banner {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 30, 0.9);
    border-bottom: 1px solid rgba(79, 186, 241, 0.3);
    z-index: 999;
    font-size: 0.7rem;
    padding: 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

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

.pulse-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.pulse-indicator.online {
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1) blur(0px);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
        filter: brightness(1.5) blur(2px);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1) blur(0px);
    }
}

.status-divider {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.2);
}

.api-tag {
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.6rem;
    margin-left: 0.4rem;
    font-weight: 600;
}

.api-tag.ok {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.api-tag.warning {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative
}

/* Global Utilities */
.icon-inline {
    vertical-align: -2px;
    margin-right: 4px;
}

.gtm-iframe {
    display: none;
    visibility: hidden;
}

.section-padded {
    padding: 4rem 0;
}

.section-dark {
    background: rgba(0, 0, 0, 0.2);
}

.link-primary {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.link-primary:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.label-highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Morph Blobs - Global */
.morph-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blob-float 10s infinite alternate;
    z-index: -1;
    pointer-events: none;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.cookie-banner-hidden {
    display: none !important;
}

/* Mobile overflow fix — sections with flex/grid children that expand beyond viewport */
@media (max-width: 768px) {
    .hero-ultra,
    .mcp-explainer,
    .footer-ultra {
        overflow-x: hidden;
    }
}