:root {
            --bg: #000000;
            --card: rgba(8, 8, 8, 0.65);
            --blue: #00D4FF;
            --purple: #A855F7;
            --accent: #FF6B35;
            --cyan: #0891B2;
            --amber: #F59E0B;
            --green: #10B981;
            --grad: linear-gradient(128deg, #00D4FF 0%, #06B6D4 100%);
            --grad-s: linear-gradient(142deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.02) 100%);
            --text: #F1F5F9;
            --text2: #94A3B8;
            --text3: #7B8BA2;
            --gap: 1.1rem;
            --icon-mono: rgba(241, 245, 249, 0.4);
            --glow-subtle: rgba(255, 255, 255, 0.03);
            --glow: rgba(255, 255, 255, 0.06);
            --glow-mid: rgba(255, 255, 255, 0.1);
            --glow-strong: rgba(255, 255, 255, 0.16);
            --glow-warm: rgba(255, 255, 255, 0.04);
            --ff: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --ff-display: 'Space Grotesk', 'Inter', sans-serif;
            --mono: 'JetBrains Mono', 'Fira Code', monospace;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-size: 16px; overflow-x: hidden; }
        body {
            font-family: var(--ff);
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
        }

        /* Morbs removed — pure black wormhole */

        .page { position: relative; z-index: 2; background: transparent; }

        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .nav-logo {
            display: flex;
            align-items: center;
        }
        .nav-logo img {
            height: 26px;
            width: auto;
            opacity: 0.92;
            transition: opacity 0.3s;
        }
        .nav-logo img:hover { opacity: 1; }
        .nav-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--mono);
            font-size: 0.72rem;
            color: var(--green);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .status-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--green);
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
            50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            padding: 4rem 2rem 4rem;
            max-width: 90vw;
            margin: 0 auto;
            width: 100%;
        }
        .hero-space { flex: 0 0 30vh; }

        /* Hero elements: visible by default, GSAP will animate them */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.25rem;
            border: none;
            border-radius: 100px;
            font-family: var(--mono);
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text);
            background: transparent;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-family: var(--ff-display);
            font-size: clamp(2.5rem, 7vw, 7rem);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }
        .grad-text {
            background: linear-gradient(
                90deg,
                var(--blue) 0%,
                var(--blue) 35%,
                rgba(255,255,255,0.85) 45%,
                #fff 50%,
                rgba(255,255,255,0.85) 55%,
                var(--blue) 65%,
                var(--blue) 100%
            );
            background-size: 300% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            /* shimmer removed — saves GPU repaint on background-clip:text */
        }
        .hero-sub {
            font-size: clamp(1.0625rem, 2.5vw, 1.35rem);
            color: var(--text2);
            max-width: 75ch;
            line-height: 1.8;
            margin-bottom: 3rem;
        }
        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: flex-start;
        }
        .hero-cta .btn {
            padding: 1.1rem 2.75rem;
            font-size: 1.0625rem;
            border-radius: 14px;
        }
        @media (max-width: 768px) {
            .hero-cta .btn { padding: 0.75rem 1.75rem; font-size: 1.0625rem; }
        }
        @media (max-width: 480px) {
            .hero-cta .btn { padding: 0.65rem 1.25rem; font-size: 1.0625rem; min-height: 44px; border-radius: 10px; }
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            border-radius: 12px;
            font-family: var(--ff);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background: transparent;
            color: var(--text);
            border: none;
            position: relative;
            isolation: isolate;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg, #C85A2A 0%, #7a4010 30%, #151525 55%, #0090c0 100%);
            z-index: -1;
            transition: background 0.3s ease;
        }
        .btn-primary::after {
            content: '';
            position: absolute;
            inset: 1.5px;
            border-radius: inherit;
            background: #030303;
            z-index: -1;
            transition: background 0.3s ease;
        }
        .btn-primary:hover::before {
            background: linear-gradient(135deg, #D8703A 0%, #9a5020 30%, #1a1a35 55%, #00A4D4 100%);
        }
        .btn-primary:hover::after {
            background: #060810;
        }
        .contact-link[href^="tel:"] {
            background: transparent;
            color: var(--blue);
            border: 1px solid transparent;
            position: relative;
        }
        .contact-link[href^="tel:"]:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1px solid rgba(241, 245, 249, 0.15);
        }
        .btn-outline:hover {
            border-color: var(--blue);
            background: rgba(0, 212, 255, 0.05);
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .divider {
            width: 100%;
            max-width: 90vw;
            margin: 0 auto;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--glow), transparent);
        }

        .section {
            padding: 6rem 2rem;
            max-width: 90vw;
            margin: 0 auto;
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            font-family: var(--mono);
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text2);
            margin-bottom: 1rem;
            border: none;
            background: transparent;
            background: rgba(0, 212, 255, 0.04);
        }
        .section-title {
            font-family: var(--ff-display);
            font-size: clamp(1.75rem, 4vw, 3.25rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1.25rem;
        }
        .section-desc {
            color: var(--text2);
            font-size: 1.0625rem;
            max-width: 68ch;
            line-height: 1.7;
        }

        .capabilities {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3.5rem;
        }
        .cap-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--glow-subtle);
            padding: 2rem;
            transition: transform 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease;
            position: relative;
        }
        .cap-card:nth-child(odd) { border-radius: 16px; }
        .cap-card:nth-child(even) { border-radius: 12px 20px 12px 20px; }
        .cap-card:nth-child(3n) { border-radius: 20px 8px 20px 8px; }
        .cap-card:hover {
            border-color: var(--glow-mid);
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow);
            background: rgba(255, 255, 255, 0.04);
        }
        .cap-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            background: var(--grad-s);
            border: 1px solid var(--glow);
        }
        .cap-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .cap-card p {
            color: var(--text2);
            font-size: 1.0625rem;
            line-height: 1.65;
        }
        .cap-tag {
            display: inline-block;
            font-family: var(--mono);
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--text2);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0.25rem 0.6rem;
            border-radius: 6px;
            margin-top: 1rem;
        }

        .stack-cat { margin-top: 2.5rem; }
        .stack-cat-label {
            font-family: var(--mono);
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text3);
            margin-bottom: 0.75rem;
        }
        .stack-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 0.75rem;
            margin-bottom: 1.5rem;
        }
        .sp {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 0.95rem;
            background: var(--card);
            border: 1px solid var(--glow);
            border-radius: 100px;
            font-family: var(--mono);
            font-size: 0.8rem;
            color: var(--text2);
            transition: border-color 0.3s ease, color 0.3s ease;
        }
        .sp:hover {
            border-color: var(--blue);
            color: var(--blue);
        }
        .sd {
            width: 5px; height: 5px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .cta-section {
            text-align: left;
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }
        .cta-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 4rem;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .cta-canvas-wrap {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }
        .cta-canvas-wrap canvas {
            width: 100%;
            height: 100%;
        }
        .cta-title {
            font-family: var(--ff-display);
            font-size: clamp(2.75rem, 7vw, 4.5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            position: relative;
        }
        .cta-subtitle {
            color: var(--text2);
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 1.75rem;
            letter-spacing: -0.01em;
        }
        .cta-desc {
            color: var(--text2);
            font-size: 1.1rem;
            /* feedback r9 Gabriel: text pe 2 rânduri (br în markup), fără orfan — era 620px și rupea primul rând */
            max-width: 800px;
            margin: 0 0 0.75rem;
            line-height: 1.7;
            position: relative;
        }
        .cta-deliver {
            color: var(--text);
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 3rem;
            letter-spacing: -0.01em;
        }
        .contact-row {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
        }
        .cta-trust {
            color: var(--text3);
            font-size: 1.0625rem;
            margin-top: 2.5rem;
            font-style: italic;
        }
        .cta-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px;
            padding: 2rem;
        }
        .cta-form input,
        .cta-form select,
        .cta-form textarea {
            width: 100%;
            padding: 0.85rem 1.1rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            color: var(--text);
            font-family: var(--ff);
            font-size: 1.0625rem;
            transition: border-color 0.3s, background 0.3s;
        }
        .cta-form input:focus,
        .cta-form select:focus,
        .cta-form textarea:focus {
            border-color: rgba(0,212,255,0.4);
            background: rgba(0,212,255,0.04);
        }
        .cta-form input::placeholder,
        .cta-form textarea::placeholder {
            color: var(--text3);
        }
        .cta-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .cta-phone-group {
            display: flex;
            gap: 0.6rem;
        }
        .cta-phone-group .cta-phone-country {
            flex: 0 0 108px;
            width: 108px;
            padding-left: 0.6rem;
            padding-right: 0.3rem;
        }
        .cta-phone-group .cta-phone-number {
            flex: 1;
            width: auto;
            min-width: 0;
        }
        .hp-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }
        .cta-form .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.9rem 2rem;
            background: transparent;
            color: var(--text);
            border: none;
            border-radius: 8px;
            font-family: var(--ff);
            font-weight: 600;
            font-size: 1.0625rem;
            cursor: pointer;
            position: relative;
            isolation: isolate;
            transition: transform 0.3s;
        }
        .cta-form .btn-submit::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg, #C85A2A 0%, #7a4010 30%, #151525 55%, #0090c0 100%);
            z-index: -1;
            transition: background 0.3s ease;
        }
        .cta-form .btn-submit::after {
            content: '';
            position: absolute;
            inset: 1.5px;
            border-radius: inherit;
            background: #030303;
            z-index: -1;
            transition: background 0.3s ease;
        }
        .cta-form .btn-submit svg { stroke: currentColor; }
        .cta-form .btn-submit:hover { transform: translateY(-2px); }
        .cta-form .btn-submit:hover::before {
            background: linear-gradient(135deg, #D8703A 0%, #9a5020 30%, #1a1a35 55%, #00A4D4 100%);
        }
        .cta-form .btn-submit:hover::after { background: #060810; }
        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            width: fit-content;
            padding: 0.75rem 1.5rem;
            background: transparent;
            border: none;
            border-radius: 12px;
            color: var(--text);
            text-decoration: none;
            font-size: 1.0625rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: transform 0.3s ease;
        }
        .contact-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(163deg, rgba(255,255,255,0.15) 28%, rgba(255,255,255,0.05) 54%, #000000 68%, rgba(255,255,255,0.1) 100%);
            border-radius: inherit;
            z-index: -2;
        }
        .contact-link::after {
            content: '';
            position: absolute;
            inset: 1px;
            background: #050505;
            border-radius: inherit;
            z-index: -1;
        }
        .contact-link:hover {
            transform: translateY(-2px);
        }
        .contact-link:hover::before {
            background: linear-gradient(163deg, rgba(255,255,255,0.25) 28%, rgba(255,255,255,0.1) 54%, #000000 68%, rgba(255,255,255,0.15) 100%);
        }
        .contact-link svg { width: 18px; height: 18px; }

        /* Footer — ported from lab/taste/footer-langchain.html.
           footer-top/footer-bottom/status-dot/footer-copy collided with pre-existing
           rules elsewhere in this file, so those four are prefixed cwf- consistently
           in markup + CSS; the rest of the source's class names are collision-free. */
        .cw-footer {
            background: var(--bg);
            padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3rem);
            overflow-x: hidden;
        }
        .footer-inner { max-width: 1800px; margin: 0 auto; }

        .ftx-cta {
            text-align: center;
            padding-bottom: clamp(2rem, 5vw, 3rem);
            border-bottom: 1px solid rgba(255, 255, 255, .07);
        }
        .ftx-cta-h {
            font-family: var(--ff-display);
            font-size: clamp(1.6rem, 4vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: .85rem;
        }
        .ftx-cta-sub {
            color: var(--text2);
            font-size: 1.0625rem;
            max-width: 52ch;
            margin: 0 auto 1.75rem;
            line-height: 1.65;
        }
        .ftx-cta-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .footer-logo-row { padding: clamp(1rem, 3vw, 2rem) 0; }
        .logo-stack {
            display: block;
            width: 100%;
            outline: none;
        }
        .logo-svg {
            display: block;
            width: 100%;
            height: auto;
            overflow: visible;
        }
        .lg-word {
            font-family: var(--ff-display);
            font-size: 108px;
            letter-spacing: -0.015em;
            fill: none;
        }
        .lg-base .lg-dim { font-weight: 700; stroke: rgba(203, 224, 255, .16); stroke-width: 1.5px; }
        .lg-base .lg-bright { font-weight: 500; stroke: rgba(203, 224, 255, .58); stroke-width: 1.5px; transition: stroke .4s ease; }
        .logo-stack:hover .lg-base .lg-bright, .logo-stack.hover .lg-base .lg-bright, .logo-stack:focus-visible .lg-base .lg-bright {
            stroke: rgba(203, 224, 255, .12);
        }

        /* stroke-urile cubului compensează scale(.24) ca să rămână identice cu textul */
        .lg-cube-base .cube-top { fill: rgba(0, 212, 255, .16); stroke: rgba(203, 224, 255, .4); stroke-width: 6.2px; }
        .lg-cube-base .cube-left { fill: none; stroke: rgba(203, 224, 255, .16); stroke-width: 6.2px; }
        .lg-cube-base .cube-right { fill: none; stroke: rgba(203, 224, 255, .58); stroke-width: 6.2px; }

        .lg-sweep {
            font-weight: 700;
            stroke: var(--blue);
            stroke-width: 1.7px;
            filter: drop-shadow(0 0 6px rgba(0, 212, 255, .45));
            mask-image: linear-gradient(100deg, transparent 0%, transparent 44%, #fff 50%, transparent 56%, transparent 100%);
            -webkit-mask-image: linear-gradient(100deg, transparent 0%, transparent 44%, #fff 50%, transparent 56%, transparent 100%);
            mask-size: 250% 100%;
            -webkit-mask-size: 250% 100%;
            mask-repeat: no-repeat;
            -webkit-mask-repeat: no-repeat;
            mask-position: 120% 0;
            -webkit-mask-position: 120% 0;
        }
        .lg-cube-sweep .cube-edge {
            fill: none;
            stroke: var(--blue);
            stroke-width: 7px;
            filter: drop-shadow(0 0 6px rgba(0, 212, 255, .45));
            mask-image: linear-gradient(100deg, transparent 0%, transparent 44%, #fff 50%, transparent 56%, transparent 100%);
            -webkit-mask-image: linear-gradient(100deg, transparent 0%, transparent 44%, #fff 50%, transparent 56%, transparent 100%);
            mask-size: 250% 100%;
            -webkit-mask-size: 250% 100%;
            mask-repeat: no-repeat;
            -webkit-mask-repeat: no-repeat;
            mask-position: 120% 0;
            -webkit-mask-position: 120% 0;
        }
        @media (prefers-reduced-motion: no-preference) {
            .lg-sweep, .lg-cube-sweep .cube-edge { animation: logo-sweep-move 7s ease-out infinite; }
        }
        @keyframes logo-sweep-move {
            0%   { mask-position: 120% 0; -webkit-mask-position: 120% 0; }
            30%  { mask-position: -20% 0; -webkit-mask-position: -20% 0; }
            100% { mask-position: -20% 0; -webkit-mask-position: -20% 0; }
        }

        /* hover: contur fin în gradient brand cyan → portocaliu — doar pe margini, fără glow */
        .lg-hover,
        .lg-cube-hover .cube-edge {
            fill: none;
            stroke: url(#lgHoverGrad);
            stroke-width: 1.5px;
            opacity: 0;
            transition: opacity .4s ease;
        }
        .lg-cube-hover .cube-edge { stroke-width: 6.2px; }
        .lg-hover { font-weight: 700; }
        .logo-stack:hover .lg-hover, .logo-stack.hover .lg-hover, .logo-stack:focus-visible .lg-hover,
        .logo-stack:hover .lg-cube-hover .cube-edge, .logo-stack.hover .lg-cube-hover .cube-edge, .logo-stack:focus-visible .lg-cube-hover .cube-edge {
            opacity: .72;
        }
        .logo-stack:hover .lg-sweep, .logo-stack.hover .lg-sweep,
        .logo-stack:hover .lg-cube-sweep .cube-edge, .logo-stack.hover .lg-cube-sweep .cube-edge {
            animation-duration: 2s;
        }

        .cwf-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: clamp(1.5rem, 4vw, 2.5rem);
            padding-top: clamp(1.1rem, 3vw, 1.5rem);
            border-top: 1px solid rgba(255, 255, 255, .07);
            font-family: var(--mono);
            font-size: .78rem;
        }
        .footer-status { display: flex; align-items: center; gap: .55rem; color: var(--text2); }
        .cwf-dot {
            width: 7px; height: 7px; border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 6px rgba(16, 185, 129, .55);
        }
        @media (prefers-reduced-motion: no-preference) {
            .cwf-dot { animation: dot-pulse 2.6s ease-in-out infinite; }
        }
        @keyframes dot-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
        .cwf-copy { color: var(--text3); font-size: 1.0625rem; }

        @media (max-width: 720px) {
            .cwf-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
        }
        .form-toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: rgba(10, 10, 15, 0.95);
            border: 1px solid rgba(0, 209, 255, 0.25);
            border-radius: 14px;
            padding: 1rem 1.5rem;
            color: var(--text);
            font-size: 1.0625rem;
            font-family: var(--ff);
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease, transform 0.5s ease;
            max-width: 90vw;
            text-align: center;
            backdrop-filter: blur(12px);
            box-shadow: 0 8px 32px rgba(0, 209, 255, 0.1);
        }
        .form-toast.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }
        .form-toast .toast-icon { font-size: 1.3rem; margin-right: 0.5rem; }
        .form-toast .toast-text { color: rgba(255,255,255,0.85); }

        .cc, .cc-ring { display: none; }
        @media (pointer: fine) {
            .cc {
                display: block;
                position: fixed;
                top: 0; left: 0;
                width: 12px; height: 12px;
                border-radius: 50%;
                background: var(--blue);
                pointer-events: none;
                z-index: 9999;
                transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, background 0.3s;
                opacity: 0;
            }
            .cc.active {
                opacity: 1;
            }
            .cc.hover {
                width: 24px; height: 24px;
                background: var(--blue);
            }
            .cc-ring {
                display: block;
                position: fixed;
                top: 0; left: 0;
                width: 80px; height: 80px;
                border-radius: 50%;
                pointer-events: none;
                z-index: 9998;
                border: 2px solid transparent;
                opacity: 0;
                transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
            }
            .cc-ring.active {
                border-color: rgba(0, 212, 255, 0.8);
                box-shadow: 0 0 40px rgba(0,212,255,0.45), inset 0 0 25px rgba(0,212,255,0.15);
                backdrop-filter: brightness(2) contrast(1.5) saturate(2);
                -webkit-backdrop-filter: brightness(2) contrast(1.5) saturate(2);
                background: rgba(0, 212, 255, 0.12);
                opacity: 1;
            }
            body.js-cursor-ready { cursor: none; }
            body.js-cursor-ready a, body.js-cursor-ready button, body.js-cursor-ready .btn,
            body.js-cursor-ready .contact-link, body.js-cursor-ready .sp,
            body.js-cursor-ready .cap-card, body.js-cursor-ready .metric-card,
            body.js-cursor-ready .pill { cursor: none; }
            /* X-ray dimming: scoped per section */
            .capabilities.xray .cap-card { opacity: 0.25; transition: opacity 0.3s; }
            .capabilities.xray .cap-card:hover { opacity: 1; }
            .metrics-grid.xray .metric-card { opacity: 0.25; transition: opacity 0.3s; }
            .metrics-grid.xray .metric-card:hover { opacity: 1; }
            .marquee-track.xray .pill { opacity: 0.25; transition: opacity 0.3s; }
            .marquee-track.xray .pill:hover { opacity: 1; }
        }

        .btn, .contact-link {
            position: relative;
        }

        .sp {
            position: relative;
        }
        .sp[data-tip]::after {
            content: attr(data-tip);
            position: absolute;
            bottom: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            background: rgba(8, 10, 20, 0.97);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 10px;
            padding: 0.65rem 0.85rem;
            font-family: var(--ff);
            font-size: 0.72rem;
            line-height: 1.5;
            color: rgba(241, 245, 249, 0.85);
            width: max-content;
            max-width: 260px;
            z-index: 200;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.25s ease, transform 0.25s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 212, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            white-space: normal;
            text-align: left;
        }
        .sp[data-tip]::before {
            content: '';
            position: absolute;
            bottom: calc(100% + 4px);
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            border: 6px solid transparent;
            border-top-color: rgba(0, 212, 255, 0.2);
            z-index: 201;
            opacity: 0;
            transition: opacity 0.25s ease, transform 0.25s ease;
            pointer-events: none;
        }
        @media (hover: hover) {
            .sp[data-tip]:hover::after,
            .sp[data-tip]:hover::before {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }
        .sp.tip-active::after,
        .sp.tip-active::before {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            z-index: 200;
            padding: 0.75rem 1.5rem;
            background: var(--blue);
            color: var(--bg);
            border-radius: 8px;
            font-size: 1.0625rem;
            font-weight: 600;
            text-decoration: none;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 1rem;
        }

        .metrics-strip {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }
        .metric-card {
            text-align: left;
            padding: 1.75rem;
            background: #191919;
            border: none;
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease;
        }
        .metric-card > * {
            position: relative;
            z-index: 2;
        }
        .metric-card::before {
            content: '';
            position: absolute;
            inset: -50%;
            background: conic-gradient(
                from 0deg,
                rgba(255,255,255,0.05) 0deg,
                rgba(255,255,255,0.9) 90deg,
                rgba(255,255,255,0.05) 180deg,
                rgba(255,255,255,0.9) 270deg,
                rgba(255,255,255,0.05) 360deg
            );
            z-index: 0;
            opacity: 0.5;
            animation: card-glow-spin 10s linear infinite;
            transition: opacity 0.5s ease;
        }
        .metric-card::after {
            content: '';
            position: absolute;
            inset: 1px;
            background: #000000;
            border-radius: inherit;
            z-index: 1;
        }
        .metric-card:nth-child(1)::before { animation-delay: 0s; }
        .metric-card:nth-child(2)::before { animation-delay: -3s; }
        .metric-card:nth-child(3)::before { animation-delay: -6s; }
        .metric-card:nth-child(4)::before { animation-delay: -9s; }
        .metric-card:hover::before { opacity: 0.9; }
        .metric-card:hover { transform: translateY(-2px); }
        .metric-value {
            display: block;
            font-family: var(--ff-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 0.5rem;
        }
        .metric-value.cyan,
        .metric-value.accent,
        .metric-value.teal,
        .metric-value.sky { color: var(--blue); }
        .metric-label {
            display: block;
            font-size: 1.0625rem;
            color: var(--text3);
            line-height: 1.4;
        }
        @media (max-width: 1100px) {
            .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        }
        @media (max-width: 480px) {
            .metrics-grid { grid-template-columns: 1fr; gap: 0.75rem; }
            .metric-card { padding: 1.25rem; }
        }

        :focus-visible {
            outline: 2px solid var(--blue);
            outline-offset: 2px;
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        @keyframes shimmer-slide {
            0% { background-position: 110% center; }
            40% { background-position: -10% center; }
            60% { background-position: -10% center; }
            100% { background-position: 110% center; }
        }
        @keyframes shiny-text {
            0% { background-position: 120% center; }
            30% { background-position: -20% center; }
            100% { background-position: -20% center; }
        }
        .shiny-text {
            background: linear-gradient(
                145deg,
                var(--text) 40%,
                rgba(255, 255, 255, 1) 50%,
                var(--text) 60%
            );
            background-size: 250% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shiny-text 7s ease-out infinite;
        }
        .shiny-cyan {
            background: linear-gradient(
                145deg,
                var(--blue) 40%,
                rgba(255, 255, 255, 1) 50%,
                var(--blue) 60%
            );
            background-size: 250% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shiny-text 7s ease-out infinite;
        }

        /* === AI FUSION Liquid OS Styles === */

        /* Gradient border for badges and section labels — isolation trick */
        .section-label.gradient-border,
        .hero-badge.gradient-border {
            background: linear-gradient(90deg, #7a4010 0%, #C85A2A 33%, #1a1a1a 54%, #0090c0 100%);
            border: none;
            position: relative;
            isolation: isolate;
        }
        .hero-badge.gradient-border {
            padding: 0.6rem 1.5rem;
        }
        .section-label.gradient-border {
            padding: 0.5rem 1.2rem;
        }
        /* Black inner fill behind text */
        .section-label.gradient-border::after,
        .hero-badge.gradient-border::after {
            content: '';
            position: absolute;
            inset: 1px;
            background: #000000;
            border-radius: inherit;
            z-index: -1;
        }

        /* Hover overdrive — gradient spins clockwise on hover */
        @property --angle {
            syntax: '<angle>';
            inherits: false;
            initial-value: 0deg;
        }
        @keyframes gradient-border-overdrive {
            to { --angle: 360deg; }
        }
        .section-label.gradient-border:hover,
        .hero-badge.gradient-border:hover {
            background: conic-gradient(from var(--angle), #7a4010 0%, #C85A2A 30%, #0090c0 70%, #7a4010 100%);
            animation: gradient-border-overdrive 0.45s linear infinite;
        }

        /* Glow button — orbiting amber sweep + hover full glow (Fusion AI style) */
        .glow-btn {
            position: relative;
            overflow: hidden;
            border: none !important;
            z-index: 1;
            border-radius: 10px;
            box-shadow:
                0 0 12px 3px rgba(255, 180, 60, 0.18),
                0 1px 3px rgba(0, 0, 0, 0.4);
            transition: box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .glow-btn > * {
            position: relative;
            z-index: 2;
        }
        .glow-btn::before {
            content: '';
            position: absolute;
            inset: -50px;
            background: conic-gradient(from 0deg, transparent 240deg, rgba(255,180,60,0.5) 270deg, rgba(255,180,60,0.95) 310deg, rgba(255,180,60,0.5) 340deg, transparent 360deg);
            z-index: 0;
            opacity: 0.9;
            animation: card-glow-spin 3.5s linear infinite;
            transition: opacity 0.3s ease;
        }
        .glow-btn::after {
            content: '';
            position: absolute;
            inset: 3.5px;
            background: #050505;
            border-radius: inherit;
            z-index: 1;
            box-shadow: inset 0 0 15px rgba(255,180,60,0.06);
            transition: background 0.35s ease, box-shadow 0.35s ease;
        }
        .glow-btn:hover {
            box-shadow:
                0 0 28px 8px rgba(255, 180, 60, 0.35),
                0 0 12px 4px rgba(255, 180, 60, 0.5),
                0 0 50px 10px rgba(255, 180, 60, 0.12);
            transform: translateY(-1px);
        }
        .glow-btn:hover::before {
            opacity: 1;
            animation-play-state: paused;
        }
        .glow-btn:hover::after {
            background: #0a0c10;
            box-shadow: inset 0 0 25px rgba(255,180,60,0.12), inset 0 0 50px rgba(255,180,60,0.04);
        }
        .glow-btn:active {
            transform: translateY(0);
            box-shadow:
                0 0 14px 3px rgba(255, 180, 60, 0.2),
                0 0 6px 2px rgba(255, 180, 60, 0.35);
            transition-duration: 0.1s;
        }

        /* Cap-card glow border (AI FUSION conic-gradient style) */
        @keyframes card-glow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .cap-card {
            background: #191919 !important;
            border: none !important;
            overflow: hidden;
            position: relative;
        }
        .cap-card > * {
            position: relative;
            z-index: 2;
        }
        /* Glow paused by default, active when in viewport */
        .cap-card::before,
        .metric-card::before,
        .glow-btn::before {
            animation-play-state: paused;
        }
        .cap-card.glow-active::before,
        .metric-card.glow-active::before,
        .glow-btn.glow-active::before {
            animation-play-state: running;
        }
        /* Conic glow via ::before — rotates like AI FUSION (~12s per revolution) */
        .cap-card::before {
            content: '';
            position: absolute;
            inset: -50%;
            background: conic-gradient(
                from 0deg,
                rgba(255,255,255,0.05) 0deg,
                rgba(255,255,255,0.9) 90deg,
                rgba(255,255,255,0.05) 180deg,
                rgba(255,255,255,0.9) 270deg,
                rgba(255,255,255,0.05) 360deg
            );
            z-index: 0;
            opacity: 0.5;
            animation: card-glow-spin 10s linear infinite;
            transition: opacity 0.5s ease;
        }
        .cap-card::after {
            content: '';
            position: absolute;
            inset: 1px;
            background: #000000;
            border-radius: inherit;
            z-index: 1;
        }
        /* All cards clockwise, staggered start */
        .cap-card:nth-child(1)::before { animation-delay: 0s; }
        .cap-card:nth-child(2)::before { animation-delay: -2s; }
        .cap-card:nth-child(3)::before { animation-delay: -4s; }
        .cap-card:nth-child(4)::before { animation-delay: -6s; }
        .cap-card:nth-child(5)::before { animation-delay: -8s; }
        .cap-card:nth-child(6)::before { animation-delay: -3s; }
        .cap-card:nth-child(7)::before { animation-delay: -5s; }
        .cap-card:hover::before { opacity: 0.9; }

        .cap-icon svg {
            /* iconPulse removed — 7 SVGs animating simultaneously = 7 repaints/frame */
        }

        .text-shimmer {
            background: linear-gradient(
                119deg,
                var(--text) 0%,
                var(--text) 30%,
                rgba(255, 255, 255, 1) 45%,
                rgba(255, 255, 255, 1) 55%,
                var(--text) 70%,
                var(--text) 100%
            ) 0% 0% / 250% 100% no-repeat;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmerMove 3.5s ease-in-out 1 forwards;
        }
        @keyframes shimmerMove {
            0% { background-position: 150% center; }
            100% { background-position: -50% center; }
        }

        .divider {
            position: relative;
            overflow: visible;
        }
        .divider::before {
            content: '';
            position: absolute;
            inset: -1px 0;
            height: 3px;
            background: conic-gradient(from 90deg, transparent, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08), transparent);
            transform: translateX(-110%);
            opacity: 0;
            border-radius: 2px;
        }
        .divider.divider-animate::before {
            animation: dividerSweep 1.2s ease-out forwards;
        }
        @keyframes dividerSweep {
            0% { transform: translateX(-110%); opacity: 0; }
            40% { opacity: 1; }
            100% { transform: translateX(110%); opacity: 0; }
        }

        @media (max-width: 1024px) {
            .cta-layout { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; text-align: center; }
            .cta-desc { margin: 0 auto 0.75rem; }
            .cta-deliver { margin: 0 auto 1.5rem; }
            .contact-row { align-items: center; }
        }
        @media (max-width: 768px) {
            .hero { padding: 3rem 1.25rem 2rem; min-height: auto; }
            .hero-space { flex: 0 0 4vh; }
            .hero-badge.gradient-border { padding: 0.5rem 1.2rem; }
            .section { padding: 4rem 1.25rem; }
            .capabilities { grid-template-columns: 1fr; }
            .cta-section { padding: 3rem 1.25rem; }
            .cta-form .btn-submit { width: 100%; }
            .integrations-section { padding-bottom: 1.5rem; }
            .cap-icon svg { animation: none; }
            .btn-primary:hover { transform: none; }
            .glow-btn:hover { transform: none; }
            .btn { padding: 0.35rem 1rem; font-size: 1.0625rem; border-radius: 10px; line-height: 1.2; }
            .contact-link { padding: 0.55rem 1rem; font-size: 1.0625rem; border-radius: 10px; }
            .nav { padding: 0.75rem 1.25rem; justify-content: center; background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
            .nav-logo img { height: 20px; }
            .nav-status { display: none; }
            .hero-cta .btn-outline .btn-label-long { display: none; }
            .hero-cta .btn-outline .btn-label-short { display: inline; }
        }
        .btn-label-short { display: none; }
        .btn-label-long { display: inline; }
        @media (max-width: 480px) {
            .hero-badge, .hero-badge.gradient-border { font-size: 0.6rem; padding: 0.45rem 1rem; }
            .section-label.gradient-border { padding: 0.4rem 0.9rem; }
            .hero h1 { font-size: clamp(1.6rem, 8vw, 2.5rem); }
            .hero-sub { margin-bottom: 1.5rem; font-size: 1.0625rem; }
            .hero-sub br { display: none; }
            .hero-cta { flex-direction: row; gap: 0.5rem; }
            .btn { padding: 0.35rem 0.9rem; font-size: 0.78rem; justify-content: center; flex: 1; border-radius: 8px; line-height: 1.3; }
            .hero-cta .btn-primary .btn-label-long { display: none; }
            .hero-cta .btn-primary .btn-label-short { display: inline; }
            .contact-row { flex-direction: column; align-items: center; gap: 0.5rem; }
            .contact-link { font-size: 1.0625rem; padding: 0.85rem 0.9rem; width: 100%; max-width: 280px; justify-content: center; border-radius: 8px; }
            .sp { font-size: 0.75rem; padding: 0.5rem 0.85rem; min-height: 44px; }
            .sp[data-tip]::after {
                position: fixed;
                bottom: 20px;
                left: 16px;
                right: 16px;
                top: auto;
                width: auto;
                max-width: none;
                transform: none;
                font-size: 0.75rem;
                padding: 0.85rem 1.1rem;
                border-radius: 12px;
                text-align: center;
                background: rgba(8, 10, 20, 0.98);
                border: 1px solid rgba(255, 255, 255, 0.12);
                box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
            }
            .sp[data-tip]::before { display: none; }
            .sp.tip-active::after {
                opacity: 1;
                transform: none;
                z-index: 9999;
            }
        }

        /* === INTEGRATIONS SECTION === */
        .integrations-section {
            overflow: hidden;
        }
        /* Marquee mechanic — ported from lab/library/integrations-final.html (Magic UI marquee) */
        .marquee-block {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 3rem;
        }
        .marquee-row {
            overflow: hidden;
            display: flex;
            flex-direction: row;
            gap: var(--gap);
            padding-block: 0.25rem;
        }
        .marquee-track {
            flex-shrink: 0;
            display: flex;
            flex-direction: row;
            gap: var(--gap);
            animation: marquee var(--duration, 40s) linear infinite;
        }
        .marquee-row[data-dir="reverse"] .marquee-track { animation-direction: reverse; }
        .marquee-row:hover .marquee-track { animation-play-state: paused; }
        @keyframes marquee {
            from { transform: translateX(0); }
            to   { transform: translateX(calc(-100% - var(--gap))); }
        }
        .marquee-fade {
            position: absolute;
            inset-block: 0;
            width: clamp(2.5rem, 11vw, 10rem);
            pointer-events: none;
            z-index: 2;
        }
        .marquee-fade.left  { left: 0;  background: linear-gradient(to right, var(--bg) 0%, transparent 100%); }
        .marquee-fade.right { right: 0; background: linear-gradient(to left,  var(--bg) 0%, transparent 100%); }

        /* Pill — real brand logo, mono at rest, brand color on hover */
        .pill {
            --brand-visible: var(--brand, var(--text2));
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
            padding: 0.85rem 1.6rem 0.85rem 0.85rem;
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid var(--glow-subtle);
            border-radius: 100px;
            white-space: nowrap;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text2);
            letter-spacing: 0.01em;
            transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
        }
        /* ponytail: 3 official brand hexes (GitHub/Vercel/Notion) resolve near-black —
           invisible as a glow/border on a black page. Lighten only the *visible* chrome
           via color-mix; --brand keeps the true extracted hex untouched. */
        .pill[data-dark] { --brand-visible: color-mix(in srgb, var(--brand) 55%, #ffffff 45%); }
        .pill:hover {
            border-color: color-mix(in srgb, var(--brand-visible) 55%, transparent);
            background: color-mix(in srgb, var(--brand-visible) 9%, rgba(255, 255, 255, 0.03));
            box-shadow:
                0 0 0 1px color-mix(in srgb, var(--brand-visible) 30%, transparent),
                0 0 30px -6px color-mix(in srgb, var(--brand-visible) 75%, transparent);
            color: var(--text);
        }
        .pill-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--icon-mono);
            transition: color 0.25s ease;
        }
        .pill-icon svg { width: 100%; height: 100%; display: block; }
        .pill:hover .pill-icon { color: var(--brand-visible); }
        .pill-mono-glyph {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--ff-display);
            font-weight: 700;
            font-size: 0.62rem;
            letter-spacing: -0.01em;
            color: inherit;
            border: 1.5px solid currentColor;
        }
        .pill-name { transition: color 0.25s ease; }
        @media (max-width: 768px) {
            .pill { font-size: 0.86rem; padding: 0.7rem 1.25rem 0.7rem 0.7rem; gap: 0.65rem; }
            .pill-icon { width: 24px; height: 24px; }
            .pill-mono-glyph { font-size: 0.56rem; }
        }
        @media (max-width: 480px) {
            .pill { font-size: 0.78rem; padding: 0.6rem 1rem 0.6rem 0.6rem; gap: 0.55rem; }
            .pill-icon { width: 22px; height: 22px; }
            :root { --gap: 0.7rem; }
            .marquee-block { gap: 0.7rem; }
        }
        @media (prefers-reduced-motion: reduce) {
            .marquee-track { animation: none; }
        }
@media (min-width: 701px) and (max-width: 1150px) { .capabilities { grid-template-columns: repeat(2, 1fr); } }

/* Desktop-only: align metrics-strip/cta-layout/footer-inner to the same 90vw
   left axis as .section (hero/servicii/tech). -64px cancels the 2x32px lateral
   padding already applied by their parent (.cta-section / .cw-footer), which
   .section doesn't have (padding+max-width live on the same element there).
   Scoped above every existing breakpoint (1024/1100) so mobile/tablet layouts
   already tuned are untouched. */
@media (min-width: 1101px) {
    .metrics-strip { max-width: 90vw; }
    .cta-layout { max-width: calc(90vw - 64px); }
    .footer-inner { max-width: calc(90vw - 64px); }
}
