    /* ── Hero ──────────────────────────────────────────────── */
    .hero-section {
        min-height: calc(100vh - 72px);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding: 2rem 0 4rem;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -20%;
        width: 70%;
        height: 70%;
        background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
        animation: heroFloat 20s ease-in-out infinite;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -15%;
        width: 60%;
        height: 60%;
        background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.06) 0%, transparent 55%);
        animation: heroFloat 25s ease-in-out infinite reverse;
    }

    @keyframes heroFloat {
        0%, 100% { transform: translate(0, 0); }
        33% { transform: translate(30px, -30px); }
        66% { transform: translate(-20px, 20px); }
    }

    .grid-bg {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
        -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 1.25rem;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 100%);
        border: 1px solid rgba(59, 130, 246, 0.2);
        border-radius: 100px;
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        color: #60A5FA;
        margin-bottom: 1.75rem;
        backdrop-filter: blur(10px);
    }

    .hero-eyebrow-dot {
        width: 6px;
        height: 6px;
        background: #3B82F6;
        border-radius: 50%;
        animation: pulseDot 2s ease-in-out infinite;
    }

    @keyframes pulseDot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.2); }
    }

    .hero-title {
        font-family: 'Sora', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -0.03em;
    }

    .hero-title-line { display: block; }

    .hero-title .highlight {
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #22C55E 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-rotating-wrapper {
        display: inline-block;
        overflow: hidden;
        vertical-align: bottom;
        height: 1.15em;
        position: relative;
    }

    .hero-rotating-words {
        display: block;
        animation: rotateWords 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        animation-delay: 1.2s;
    }

    .hero-rotating-word {
        display: block;
        height: 1.15em;
        line-height: 1.15;
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #22C55E 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    @keyframes rotateWords {
        0%, 7%    { transform: translateY(0); }
        9%, 16%   { transform: translateY(-10%); }
        18%, 25%  { transform: translateY(-20%); }
        27%, 34%  { transform: translateY(-30%); }
        36%, 43%  { transform: translateY(-40%); }
        45%, 52%  { transform: translateY(-50%); }
        54%, 61%  { transform: translateY(-60%); }
        63%, 70%  { transform: translateY(-70%); }
        72%, 79%  { transform: translateY(-80%); }
        84%, 100% { transform: translateY(-90%); }
    }

    .hero-subtitle {
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.75;
        margin-bottom: 1.5rem;
        max-width: 520px;
    }

    .hero-subtitle strong {
        color: var(--text-primary);
        font-weight: 600;
    }

    .hero-protocols {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 1.75rem;
    }

    .hero-protocol-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        padding: 0.35rem 0.75rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 6px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--text-muted);
        letter-spacing: 0.02em;
        transition: all 0.3s ease;
    }

    .hero-protocol-badge:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.14);
        color: var(--text-primary);
    }

    .hero-protocol-badge i { font-size: 0.7rem; opacity: 0.8; }
    .hero-protocol-badge.ssh i { color: #22C55E; }
    .hero-protocol-badge.rdp i { color: #3B82F6; }
    .hero-protocol-badge.vnc i { color: #EC4899; }
    .hero-protocol-badge.db i { color: #F59E0B; }
    .hero-protocol-badge.web i { color: #8B5CF6; }
    .hero-protocol-badge.vpn i { color: #10B981; }

    .hero-cta {
        display: flex;
        gap: 0.875rem;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }

    .hero-trust-line {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        flex-wrap: wrap;
        font-family: 'Outfit', sans-serif;
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    .hero-trust-item {
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }

    .hero-trust-item i { color: #22C55E; font-size: 0.65rem; }

    .ai-ask-section {
        padding: 3rem 0 3.5rem;
        text-align: center;
    }

    .ai-ask-heading {
        font-family: 'Sora', sans-serif;
        font-size: 1.35rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .ai-ask-desc {
        font-family: 'Outfit', sans-serif;
        font-size: 0.95rem;
        font-weight: 400;
        color: var(--text-muted);
        line-height: 1.7;
        margin: 0 auto 1.25rem;
        max-width: 520px;
    }

    .ai-ask-buttons {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-ai-ask {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.55rem 1.25rem;
        border-radius: 100px;
        font-family: 'Outfit', sans-serif;
        font-size: 0.88rem;
        font-weight: 500;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-muted);
        transition: all 0.25s ease;
        backdrop-filter: blur(6px);
    }

    .btn-ai-ask svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        fill: currentColor;
    }

    .btn-ai-ask.chatgpt:hover {
        border-color: rgba(16, 163, 127, 0.5);
        color: #10A37F;
        background: rgba(16, 163, 127, 0.08);
    }
    .btn-ai-ask.chatgpt:hover svg { fill: #10A37F; }

    .btn-ai-ask.claude:hover {
        border-color: rgba(217, 119, 87, 0.5);
        color: #D97757;
        background: rgba(217, 119, 87, 0.08);
    }
    .btn-ai-ask.claude:hover svg { fill: #D97757; }

    .btn-ai-ask.perplexity:hover {
        border-color: rgba(32, 128, 141, 0.5);
        color: #20808D;
        background: rgba(32, 128, 141, 0.08);
    }
    .btn-ai-ask.perplexity:hover svg { fill: #20808D; }

    .hero-visual {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ── Hero Visual Animation ────────────────────────────── */
    .hero-system-canvas {
        width: 100%;
        max-width: 520px;
        aspect-ratio: 1 / 1;
        position: relative;
        border-radius: 28px;
        border: 1px solid rgba(148, 163, 184, 0.2);
        background:
            radial-gradient(circle at 30% 25%, rgba(59, 130, 246, 0.2), transparent 42%),
            radial-gradient(circle at 75% 78%, rgba(139, 92, 246, 0.18), transparent 45%),
            linear-gradient(155deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 6, 23, 0.92) 100%);
        box-shadow: 0 28px 64px rgba(2, 6, 23, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
        overflow: hidden;
    }

    .hero-system-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 35%, transparent 85%);
        -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 35%, transparent 85%);
        animation: systemGridDrift 30s linear infinite;
        opacity: 0.4;
    }

    .hero-system-ring {
        position: absolute;
        left: 50%;
        top: 50%;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .hero-system-ring.outer {
        width: 72%;
        aspect-ratio: 1;
        border: 1px dashed rgba(96, 165, 250, 0.35);
        animation: systemSpin 26s linear infinite;
    }

    .hero-system-ring.inner {
        width: 46%;
        aspect-ratio: 1;
        border: 1px solid rgba(139, 92, 246, 0.35);
        box-shadow: 0 0 22px rgba(59, 130, 246, 0.16);
        animation: systemSpinReverse 18s linear infinite;
    }

    /* Glowing orbit dots on the rings */
    .hero-system-ring.outer::before,
    .hero-system-ring.inner::before {
        content: '';
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        top: -3px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-system-ring.outer::before {
        background: #60A5FA;
        box-shadow: 0 0 10px 3px rgba(96, 165, 250, 0.6), 0 0 20px 6px rgba(96, 165, 250, 0.25);
    }

    .hero-system-ring.outer::after {
        content: '';
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        background: #A78BFA;
        box-shadow: 0 0 8px 2px rgba(167, 139, 250, 0.5), 0 0 16px 4px rgba(167, 139, 250, 0.2);
    }

    .hero-system-ring.inner::before {
        background: #C084FC;
        box-shadow: 0 0 10px 3px rgba(192, 132, 252, 0.6), 0 0 20px 6px rgba(192, 132, 252, 0.25);
    }

    .hero-system-ring.inner::after {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        top: 50%;
        right: -2.5px;
        transform: translateY(-50%);
        background: #34D399;
        box-shadow: 0 0 8px 2px rgba(52, 211, 153, 0.5), 0 0 16px 4px rgba(52, 211, 153, 0.2);
    }

    /* Radial pulse wave from center */
    .hero-system-pulse-wave {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 20%;
        aspect-ratio: 1;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        border: 1px solid rgba(96, 165, 250, 0.4);
        animation: systemRadialPulse 4s ease-out infinite;
        pointer-events: none;
    }

    .hero-system-pulse-wave:nth-child(2) {
        animation-delay: 1.33s;
    }

    .hero-system-pulse-wave:nth-child(3) {
        animation-delay: 2.66s;
    }

    .hero-system-core {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 38%;
        max-width: 190px;
        aspect-ratio: 1;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-system-core::before,
    .hero-system-core::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(96, 165, 250, 0.35);
        inset: -14%;
        animation: systemPulse 3.6s ease-in-out infinite;
    }

    .hero-system-core::after {
        inset: -26%;
        border-color: rgba(34, 197, 94, 0.25);
        animation-delay: 1.2s;
    }

    .hero-system-core-shell {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 1px solid rgba(96, 165, 250, 0.4);
        background: linear-gradient(160deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 60%, rgba(30, 58, 138, 0.72) 100%);
        box-shadow:
            0 12px 32px rgba(15, 23, 42, 0.7),
            inset 0 -18px 28px rgba(59, 130, 246, 0.22),
            0 0 40px rgba(59, 130, 246, 0.12);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        animation: systemCoreGlow 6s ease-in-out infinite;
    }

    /* Rotating conic gradient border glow */
    .hero-system-core-shell::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 50%;
        background: conic-gradient(
            from 0deg,
            transparent 0%,
            rgba(59, 130, 246, 0.5) 10%,
            transparent 20%,
            transparent 35%,
            rgba(139, 92, 246, 0.4) 45%,
            transparent 55%,
            transparent 65%,
            rgba(34, 197, 94, 0.4) 75%,
            transparent 85%,
            transparent 100%
        );
        animation: systemSpin 8s linear infinite;
        mask: radial-gradient(circle, transparent 68%, black 70%);
        -webkit-mask: radial-gradient(circle, transparent 68%, black 70%);
        z-index: -1;
    }

    .hero-system-core-shell::after {
        content: '';
        position: absolute;
        inset: 12%;
        border-radius: 50%;
        border: 1px dashed rgba(148, 163, 184, 0.2);
        animation: systemSpin 14s linear infinite;
    }

    .hero-system-core-title {
        font-family: 'Sora', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        color: #DBEAFE;
        z-index: 1;
    }

    .hero-system-core-subtitle {
        font-family: 'Outfit', sans-serif;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #93C5FD;
        z-index: 1;
    }

    .hero-system-link {
        position: absolute;
        left: 50%;
        top: 50%;
        width: calc(var(--len) - var(--edge-stop, 0px));
        height: 2px;
        transform-origin: left center;
        transform: rotate(var(--rot));
        border-radius: 999px;
        overflow: hidden;
        background: linear-gradient(90deg,
            color-mix(in srgb, var(--line-color) 12%, transparent) 0%,
            color-mix(in srgb, var(--line-color) 30%, transparent) 50%,
            color-mix(in srgb, var(--line-color) 15%, transparent) 100%);
    }

    /* Outward sweep */
    .hero-system-link::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent 0%, var(--line-color) 55%, transparent 100%);
        transform: translateX(-110%);
        animation: systemSweep 2.8s linear infinite;
        animation-delay: var(--delay);
    }

    /* Inward sweep (return traffic) */
    .hero-system-link::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(270deg, transparent 0%, var(--line-color) 55%, transparent 100%);
        opacity: 0.35;
        transform: translateX(110%);
        animation: systemSweepReverse 3.4s linear infinite;
        animation-delay: calc(var(--delay) + 1.4s);
    }

    /* Outbound packet */
    .hero-system-packet {
        position: absolute;
        top: 50%;
        left: 6%;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--line-color);
        transform: translate(-50%, -50%);
        box-shadow:
            0 0 10px currentColor,
            0 0 22px currentColor,
            -8px 0 12px currentColor;
        color: var(--line-color);
        animation: systemPacket 2.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
        animation-delay: var(--delay);
    }

    /* Inbound packet (return) */
    .hero-system-packet-in {
        position: absolute;
        top: 50%;
        left: 94%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--line-color);
        transform: translate(-50%, -50%);
        box-shadow:
            0 0 8px currentColor,
            0 0 18px currentColor,
            8px 0 10px currentColor;
        color: var(--line-color);
        opacity: 0.6;
        animation: systemPacketReverse 3.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
        animation-delay: calc(var(--delay) + 1.4s);
    }

    .hero-system-link.ssh    { --rot: -90deg;  --len: 43%; --edge-stop: 22px; --line-color: #22C55E; --delay: 0s; }
    .hero-system-link.rdp    { --rot: -50deg;  --len: 43%; --edge-stop: 22px; --line-color: #3B82F6; --delay: 0.31s; }
    .hero-system-link.vnc    { --rot: -10deg;  --len: 43%; --edge-stop: 22px; --line-color: #EC4899; --delay: 0.62s; }
    .hero-system-link.kube   { --rot: 30deg;   --len: 43%; --edge-stop: 22px; --line-color: #326CE5; --delay: 0.93s; }
    .hero-system-link.db     { --rot: 70deg;   --len: 43%; --edge-stop: 22px; --line-color: #F59E0B; --delay: 1.24s; }
    .hero-system-link.grpc   { --rot: 110deg;  --len: 43%; --edge-stop: 22px; --line-color: #06B6D4; --delay: 1.55s; }
    .hero-system-link.telnet { --rot: 150deg;  --len: 43%; --edge-stop: 22px; --line-color: #9333EA; --delay: 1.86s; }
    .hero-system-link.web    { --rot: 190deg;  --len: 43%; --edge-stop: 22px; --line-color: #8B5CF6; --delay: 2.17s; }
    .hero-system-link.vpn    { --rot: -130deg; --len: 43%; --edge-stop: 22px; --line-color: #10B981; --delay: 2.48s; }

    .hero-system-node {
        position: absolute;
        left: var(--x);
        top: var(--y);
        transform: translate(-50%, -50%);
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.45rem 0.72rem;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.35);
        background: rgba(15, 23, 42, 0.82);
        backdrop-filter: blur(8px);
        box-shadow: 0 10px 20px rgba(2, 6, 23, 0.45);
        font-family: 'Outfit', sans-serif;
        font-size: 0.76rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: #E2E8F0;
        white-space: nowrap;
        animation: systemNodeFloat 5.8s ease-in-out infinite;
        animation-delay: var(--delay);
        transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
    }

    .hero-system-node:hover {
        border-color: var(--accent);
        box-shadow:
            0 10px 20px rgba(2, 6, 23, 0.45),
            0 0 20px color-mix(in srgb, var(--accent) 30%, transparent),
            inset 0 0 12px color-mix(in srgb, var(--accent) 10%, transparent);
        animation-play-state: paused;
        transform: translate(-50%, -50%) scale(1.08);
    }

    .hero-system-node i {
        font-size: 0.72rem;
        color: var(--accent);
        filter: drop-shadow(0 0 4px var(--accent));
    }

    /* Node accent glow breathing */
    .hero-system-node::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 999px;
        background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 15%, transparent), transparent 70%);
        animation: systemNodeGlow 4s ease-in-out infinite;
        animation-delay: var(--delay);
        pointer-events: none;
        z-index: -1;
    }

    .hero-system-node.ssh    { --x: 50%;  --y: 8%;   --accent: #22C55E; --delay: 0.2s; }
    .hero-system-node.rdp    { --x: 77%;  --y: 18%;  --accent: #3B82F6; --delay: 0.5s; }
    .hero-system-node.vnc    { --x: 91%;  --y: 43%;  --accent: #EC4899; --delay: 0.8s; }
    .hero-system-node.kube   { --x: 86%;  --y: 71%;  --accent: #326CE5; --delay: 1.1s; }
    .hero-system-node.db     { --x: 64%;  --y: 90%;  --accent: #F59E0B; --delay: 1.4s; }
    .hero-system-node.grpc   { --x: 36%;  --y: 90%;  --accent: #06B6D4; --delay: 1.7s; }
    .hero-system-node.telnet { --x: 14%;  --y: 71%;  --accent: #9333EA; --delay: 2.0s; }
    .hero-system-node.web    { --x: 9%;   --y: 43%;  --accent: #8B5CF6; --delay: 2.3s; }
    .hero-system-node.vpn    { --x: 23%;  --y: 18%;  --accent: #10B981; --delay: 2.6s; }

    @keyframes systemGridDrift {
        from { transform: translate3d(0, 0, 0); }
        to { transform: translate3d(42px, 42px, 0); }
    }

    @keyframes systemSpin {
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @keyframes systemSpinReverse {
        to { transform: translate(-50%, -50%) rotate(-360deg); }
    }

    @keyframes systemPulse {
        0%, 100% { opacity: 0.25; transform: scale(0.98); }
        50% { opacity: 0.75; transform: scale(1.05); }
    }

    @keyframes systemRadialPulse {
        0% {
            width: 20%;
            aspect-ratio: 1;
            opacity: 0.6;
            border-color: rgba(96, 165, 250, 0.4);
        }
        100% {
            width: 85%;
            aspect-ratio: 1;
            opacity: 0;
            border-color: rgba(96, 165, 250, 0);
        }
    }

    @keyframes systemSweep {
        to { transform: translateX(110%); }
    }

    @keyframes systemSweepReverse {
        to { transform: translateX(-110%); }
    }

    @keyframes systemPacket {
        0% { left: 6%; opacity: 0; }
        8% { opacity: 1; }
        80% { opacity: 1; }
        95% { opacity: 0.3; }
        100% { left: 96%; opacity: 0; }
    }

    @keyframes systemPacketReverse {
        0% { left: 94%; opacity: 0; }
        8% { opacity: 0.6; }
        80% { opacity: 0.6; }
        95% { opacity: 0.2; }
        100% { left: 6%; opacity: 0; }
    }

    @keyframes systemNodeFloat {
        0%, 100% { transform: translate(-50%, -50%) translateY(0); }
        50% { transform: translate(-50%, -50%) translateY(-3px); }
    }

    @keyframes systemNodeGlow {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.7; }
    }

    @keyframes systemCoreGlow {
        0%, 100% { box-shadow: 0 12px 32px rgba(15, 23, 42, 0.7), inset 0 -18px 28px rgba(59, 130, 246, 0.22), 0 0 40px rgba(59, 130, 246, 0.12); }
        33% { box-shadow: 0 12px 32px rgba(15, 23, 42, 0.7), inset 0 -18px 28px rgba(139, 92, 246, 0.22), 0 0 50px rgba(139, 92, 246, 0.15); }
        66% { box-shadow: 0 12px 32px rgba(15, 23, 42, 0.7), inset 0 -18px 28px rgba(34, 197, 94, 0.22), 0 0 45px rgba(34, 197, 94, 0.12); }
    }

    /* Staggered entrance */
    @keyframes heroFadeUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .hero-animate {
        opacity: 0;
        animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero-animate-1 { animation-delay: 0.1s; }
    .hero-animate-2 { animation-delay: 0.2s; }
    .hero-animate-3 { animation-delay: 0.3s; }
    .hero-animate-4 { animation-delay: 0.4s; }
    .hero-animate-5 { animation-delay: 0.5s; }
    .hero-animate-6 { animation-delay: 0.65s; }
    .hero-animate-7 { animation-delay: 0.8s; }

    /* ── Shared Section Styles ────────────────────────────── */
    .section-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .section-eyebrow {
        font-family: 'Outfit', sans-serif;
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #8B5CF6;
        margin-bottom: 1rem;
        display: block;
    }

    .section-title {
        font-family: 'Sora', sans-serif;
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }

    .section-subtitle {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        color: var(--text-muted);
        line-height: 1.7;
        max-width: 620px;
        margin: 0 auto;
    }

    .btn-hero-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.9rem 1.75rem;
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        color: white;
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    }

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4);
        color: white;
    }

    .btn-hero-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.9rem 1.75rem;
        background: transparent;
        color: var(--text-primary);
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.3);
        color: var(--text-primary);
    }

    /* ── Scroll Reveal ────────────────────────────────────── */
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-on-scroll.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Features Section ─────────────────────────────────── */
    .features-section {
        padding: 6rem 0;
        position: relative;
        z-index: 2;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.75rem;
        background: linear-gradient(145deg, rgba(30, 30, 35, 0.6) 0%, rgba(22, 22, 27, 0.4) 100%);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.15), rgba(34, 197, 94, 0.15));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px -15px rgba(59, 130, 246, 0.12);
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card-icon {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .feature-card-icon.ssh   { background: rgba(34, 197, 94, 0.12); color: #22C55E; }
    .feature-card-icon.rdp   { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
    .feature-card-icon.db    { background: rgba(245, 158, 11, 0.12); color: #F59E0B; }
    .feature-card-icon.web   { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
    .feature-card-icon.vpn   { background: rgba(16, 185, 129, 0.12); color: #10B981; }
    .feature-card-icon.rec   { background: rgba(239, 68, 68, 0.12); color: #EF4444; }

    .feature-card:hover .feature-card-icon {
        transform: scale(1.1);
    }

    .feature-card-icon svg.icon-ring {
        position: absolute;
        inset: -4px;
        width: calc(100% + 8px);
        height: calc(100% + 8px);
    }

    .icon-ring-circle {
        stroke-dasharray: 215;
        stroke-dashoffset: 215;
        transition: stroke-dashoffset 0.6s ease;
    }

    .feature-card:hover .icon-ring-circle {
        stroke-dashoffset: 0;
    }

    .feature-card-title {
        font-family: 'Sora', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .feature-card-text {
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .feature-card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-family: 'Outfit', sans-serif;
        font-size: 0.875rem;
        font-weight: 600;
        color: #3B82F6;
        text-decoration: none;
        transition: gap 0.3s ease;
    }

    .feature-card-link:hover {
        gap: 0.65rem;
        color: #60A5FA;
    }

    /* ── Pricing Section ──────────────────────────────────── */
    .pricing-section {
        padding: 6rem 0;
        position: relative;
        z-index: 2;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 50%, rgba(255, 255, 255, 0.01) 100%);
    }

    .billing-toggle-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .billing-toggle {
        display: flex;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-subtle);
        border-radius: 100px;
        padding: 4px;
    }

    .billing-toggle-btn {
        padding: 0.6rem 1.5rem;
        border: none;
        background: transparent;
        color: var(--text-muted);
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        border-radius: 100px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .billing-toggle-btn.active {
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .billing-toggle-btn:hover:not(.active) {
        color: var(--text-primary);
    }

    .annual-savings-badge {
        background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
        color: #000;
        font-family: 'Outfit', sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        padding: 0.3rem 0.7rem;
        border-radius: 100px;
    }

    .pricing-surface {
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 24px;
        background: linear-gradient(145deg, rgba(26, 26, 31, 0.6) 0%, rgba(19, 19, 24, 0.45) 100%);
        backdrop-filter: blur(12px);
        padding: clamp(1rem, 2vw, 1.75rem);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    }

    .lp-pricing-card {
        background: linear-gradient(145deg, rgba(35, 35, 42, 0.7) 0%, rgba(20, 20, 26, 0.5) 100%);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        height: 100%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .lp-pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #3B82F6, #8B5CF6);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .lp-pricing-card:hover {
        transform: translateY(-4px);
        border-color: rgba(96, 165, 250, 0.25);
        box-shadow: 0 20px 50px -20px rgba(59, 130, 246, 0.3);
    }

    .lp-pricing-card:hover::before { opacity: 1; }

    .lp-pricing-card.highlighted {
        background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.07) 100%);
        border: 1px solid rgba(96, 165, 250, 0.4);
        box-shadow: 0 8px 36px rgba(59, 130, 246, 0.2);
    }

    .lp-pricing-card.highlighted::before {
        opacity: 1;
        background: linear-gradient(90deg, #3B82F6, #22C55E);
    }

    .lp-popular-badge {
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        color: white;
        padding: 0.4rem 1.25rem;
        border-radius: 0 0 12px 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .lp-pricing-name {
        font-family: 'Sora', sans-serif;
        font-size: 1.35rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
    }

    .lp-pricing-tagline {
        font-family: 'Outfit', sans-serif;
        font-size: 0.88rem;
        color: #60A5FA;
        margin-bottom: 1.25rem;
        font-weight: 500;
    }

    .lp-pricing-price {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid var(--border-subtle);
    }

    .lp-price-amount {
        font-family: 'Sora', sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1;
    }

    .lp-price-period {
        font-family: 'Outfit', sans-serif;
        font-size: 0.88rem;
        color: var(--text-muted);
        margin-top: 0.35rem;
        display: block;
    }

    .lp-pricing-features {
        flex-grow: 1;
        margin-bottom: 1.25rem;
    }

    .lp-pricing-feat {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        margin-bottom: 0.65rem;
        font-family: 'Outfit', sans-serif;
        color: var(--text-secondary);
        font-size: 0.88rem;
    }

    .lp-pricing-feat i {
        color: #22C55E;
        margin-top: 0.2rem;
        flex-shrink: 0;
        font-size: 0.75rem;
    }

    .lp-pricing-feat.header {
        color: var(--text-primary);
        font-weight: 500;
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }

    .lp-pricing-feat.header i { color: #3B82F6; }

    .lp-pricing-cta {
        display: block;
        width: 100%;
        padding: 0.85rem 1.5rem;
        text-align: center;
        font-family: 'Outfit', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: transparent;
        color: var(--text-primary);
        margin-top: auto;
    }

    .lp-pricing-cta:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.3);
        color: var(--text-primary);
    }

    .lp-pricing-cta.primary {
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        border: none;
        color: white;
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    }

    .lp-pricing-cta.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
        color: white;
    }

    /* Enterprise Horizontal Card */
    .lp-enterprise-card {
        display: flex;
        gap: 2rem;
        margin-top: 1.5rem;
        background: linear-gradient(145deg, rgba(35, 35, 42, 0.7) 0%, rgba(20, 20, 26, 0.5) 100%);
        border-radius: 20px;
        padding: 2rem 2rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .lp-enterprise-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #8B5CF6, #3B82F6, #22C55E);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .lp-enterprise-card:hover {
        border-color: rgba(139, 92, 246, 0.25);
        box-shadow: 0 20px 50px -20px rgba(139, 92, 246, 0.15);
    }

    .lp-enterprise-card:hover::before {
        opacity: 1;
    }

    .lp-enterprise-left {
        flex: 0 0 240px;
        display: flex;
        flex-direction: column;
    }

    .lp-enterprise-left .lp-pricing-price {
        border-bottom: none;
        margin-bottom: 1.25rem;
        padding-bottom: 0;
    }

    .lp-enterprise-left .lp-pricing-cta {
        margin-top: auto;
    }

    .lp-enterprise-right {
        flex: 1;
        min-width: 0;
        border-left: 1px solid var(--border-subtle);
        padding-left: 2rem;
        display: flex;
        align-items: flex-start;
    }

    .lp-enterprise-right .lp-pricing-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 1.5rem;
        margin-bottom: 0;
    }

    @media (max-width: 991.98px) {
        .lp-enterprise-card {
            flex-direction: column;
            gap: 1.25rem;
        }

        .lp-enterprise-left {
            flex: none;
        }

        .lp-enterprise-right {
            border-left: none;
            padding-left: 0;
            border-top: 1px solid var(--border-subtle);
            padding-top: 1.25rem;
        }
    }

    @media (max-width: 767.98px) {
        .lp-enterprise-right .lp-pricing-features {
            grid-template-columns: 1fr;
        }

        .lp-enterprise-card {
            padding: 1.5rem;
        }
    }

    .pricing-footer {
        text-align: center;
        margin-top: 2rem;
    }

    .pricing-footer-link {
        font-family: 'Outfit', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: #3B82F6;
        text-decoration: none;
        transition: color 0.2s;
    }

    .pricing-footer-link:hover { color: #60A5FA; }

    /* ── Compare Section ──────────────────────────────────── */
    .compare-section {
        padding: 6rem 0;
        position: relative;
        z-index: 2;
    }

    .compare-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .compare-card {
        display: block;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-subtle);
        border-radius: 20px;
        text-align: center;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .compare-card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(59, 130, 246, 0.2);
        box-shadow: 0 20px 50px -20px rgba(59, 130, 246, 0.12);
    }

    .compare-card-icon {
        font-size: 2.25rem;
        color: #8B5CF6;
        margin-bottom: 1rem;
    }

    .compare-card-title {
        font-family: 'Sora', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.4rem;
    }

    .compare-card-text {
        font-family: 'Outfit', sans-serif;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 0.75rem;
    }

    .compare-card-link {
        font-family: 'Outfit', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: #3B82F6;
    }

    .compare-more {
        text-align: center;
        margin-top: 2rem;
    }

    /* ── FAQ Section ──────────────────────────────────────── */
    .faq-section {
        padding: 6rem 0;
        position: relative;
        z-index: 2;
    }

    .faq-list {
        max-width: 760px;
        margin: 0 auto;
    }

    .faq-item {
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(30, 30, 35, 0.5) 0%, rgba(22, 22, 27, 0.35) 100%);
        margin-bottom: 1rem;
        overflow: hidden;
        transition: border-color 0.3s ease;
    }

    .faq-item:hover { border-color: rgba(59, 130, 246, 0.15); }
    .faq-item.open { border-color: rgba(59, 130, 246, 0.25); }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
        padding: 1.25rem 1.5rem;
        background: transparent;
        border: none;
        font-family: 'Sora', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        text-align: left;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .faq-question:hover { color: #60A5FA; }

    .faq-question i {
        font-size: 0.7rem;
        color: #3B82F6;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item.open .faq-question i { transform: rotate(180deg); }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    }

    .faq-item.open .faq-answer { max-height: 400px; }

    .faq-answer-inner {
        padding: 0 1.5rem 1.25rem;
        font-family: 'Outfit', sans-serif;
        font-size: 0.92rem;
        color: var(--text-muted);
        line-height: 1.75;
    }

    .faq-answer-inner strong { color: var(--text-secondary); font-weight: 600; }

    /* ── CTA Section ──────────────────────────────────────── */
    .cta-section {
        padding: 6rem 0;
        z-index: 2;
        position: relative;
    }

    .cta-content { text-align: center; }

    .cta-title {
        font-family: 'Sora', sans-serif;
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }

    .cta-subtitle {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }

    .cta-note {
        font-family: 'Outfit', sans-serif;
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    .cta-note i { color: #22C55E; }

    /* ── Responsive ───────────────────────────────────────── */
    @media (max-width: 991.98px) {
        .hero-content { text-align: center; }
        .hero-subtitle { margin-left: auto; margin-right: auto; }
        .hero-protocols { justify-content: center; }
        .hero-cta { justify-content: center; }
        .hero-trust-line { justify-content: center; }
        .hero-visual { margin-top: 3rem; }
        .features-grid { grid-template-columns: repeat(2, 1fr); }
        .compare-grid { grid-template-columns: repeat(2, 1fr); }
        .compare-grid > .compare-card:last-child:nth-child(odd) {
            grid-column: 1 / -1;
            max-width: calc(50% - 0.75rem);
            justify-self: center;
        }
    }

    @media (max-width: 767.98px) {
        .hero-section { padding: 3rem 0 2rem; }
        .hero-trust-line {
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        .features-grid { grid-template-columns: 1fr; }
        .compare-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 575.98px) {
        .hero-protocols { gap: 0.35rem; }
        .hero-system-canvas { max-width: 360px; }
        .hero-system-link.ssh    { --edge-stop: 16px; }
        .hero-system-link.rdp    { --edge-stop: 16px; }
        .hero-system-link.vnc    { --edge-stop: 16px; }
        .hero-system-link.kube   { --edge-stop: 16px; }
        .hero-system-link.db     { --edge-stop: 16px; }
        .hero-system-link.grpc   { --edge-stop: 16px; }
        .hero-system-link.telnet { --edge-stop: 16px; }
        .hero-system-link.web    { --edge-stop: 16px; }
        .hero-system-link.vpn    { --edge-stop: 16px; }
        .hero-system-node {
            font-size: 0.68rem;
            padding: 0.35rem 0.56rem;
            gap: 0.35rem;
        }
        .hero-system-node i { font-size: 0.62rem; }
        .hero-system-core-title { font-size: 0.9rem; }
        .hero-system-core-subtitle {
            font-size: 0.62rem;
            letter-spacing: 0.05em;
        }
    }

    /* ── Social Proof Section ─────────────────────────────── */
    .social-proof-section {
        padding: 3rem 0;
        position: relative;
        z-index: 2;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .social-proof-metrics {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }

    .social-proof-metric {
        text-align: center;
    }

    .social-proof-metric-value {
        font-family: 'Sora', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
    }

    .social-proof-metric-label {
        font-family: 'Outfit', sans-serif;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-top: 0.25rem;
    }

    .social-proof-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        flex-wrap: wrap;
    }

    .social-proof-logos-label {
        font-family: 'Outfit', sans-serif;
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        white-space: nowrap;
    }

    .social-proof-logo-row {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-proof-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Outfit', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: rgba(226, 232, 240, 0.72);
        transition: color 0.3s ease;
        white-space: nowrap;
    }

    .social-proof-logo:hover {
        color: rgba(255, 255, 255, 0.92);
    }

    .social-proof-logo i {
        font-size: 1.1rem;
        opacity: 0.85;
    }

    /* ── How It Works Section ─────────────────────────────── */
    .how-it-works-section {
        padding: 6rem 0;
        position: relative;
        z-index: 2;
    }

    .how-it-works-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        position: relative;
    }

    .how-it-works-grid::before {
        content: '';
        position: absolute;
        top: 56px;
        left: 20%;
        right: 20%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3), transparent);
    }

    .how-step {
        text-align: center;
        position: relative;
    }

    .how-step-number {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        font-family: 'Sora', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        position: relative;
        z-index: 2;
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    }

    .how-step-icon {
        font-size: 2rem;
        color: #60A5FA;
        margin-bottom: 1rem;
    }

    .how-step-title {
        font-family: 'Sora', sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .how-step-text {
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.65;
        max-width: 280px;
        margin: 0 auto;
    }

    /* ── Product Demo Section ─────────────────────────────── */
    .product-demo-section {
        padding: 6rem 0 3rem;
        position: relative;
        z-index: 2;
    }

    .demo-tabs {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .demo-tab {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--text-muted);
        padding: 0.55rem 1.25rem;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.25s ease;
        display: flex;
        align-items: center;
        gap: 0.45rem;
    }

    .demo-tab:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-primary);
    }

    .demo-tab.active {
        background: rgba(99, 102, 241, 0.15);
        border-color: rgba(99, 102, 241, 0.4);
        color: #A5B4FC;
    }

    .demo-tab i {
        font-size: 0.8rem;
    }

    .demo-terminal {
        max-width: 720px;
        margin: 0 auto;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    }

    .demo-terminal-bar {
        background: rgba(30, 30, 35, 0.95);
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .demo-terminal-dot.red { background: #EF4444; }
    .demo-terminal-dot.yellow { background: #F59E0B; }
    .demo-terminal-dot.green { background: #22C55E; }

    .demo-terminal-title {
        flex: 1;
        text-align: center;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .demo-terminal-body {
        background: rgba(10, 10, 14, 0.95);
        padding: 1.5rem;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.82rem;
        line-height: 1.8;
        color: #94A3B8;
        min-height: 220px;
    }

    .demo-line {
        opacity: 0;
        animation: demoTypeLine 0.3s ease forwards;
    }

    .demo-line .prompt { color: #22C55E; }
    .demo-line .cmd { color: #E2E8F0; }
    .demo-line .flag { color: #60A5FA; }
    .demo-line .val { color: #F59E0B; }
    .demo-line .success { color: #22C55E; }
    .demo-line .info { color: #8B5CF6; }

    .demo-line:nth-child(1)  { animation-delay: 0.5s; }
    .demo-line:nth-child(2)  { animation-delay: 1.2s; }
    .demo-line:nth-child(3)  { animation-delay: 1.9s; }
    .demo-line:nth-child(4)  { animation-delay: 2.4s; }
    .demo-line:nth-child(5)  { animation-delay: 3.1s; }
    .demo-line:nth-child(6)  { animation-delay: 3.6s; }
    .demo-line:nth-child(7)  { animation-delay: 4.3s; }
    .demo-line:nth-child(8)  { animation-delay: 4.8s; }
    .demo-line:nth-child(9)  { animation-delay: 5.3s; }
    .demo-line:nth-child(10) { animation-delay: 5.8s; }
    .demo-line:nth-child(11) { animation-delay: 6.3s; }
    .demo-line:nth-child(12) { animation-delay: 6.8s; }
    .demo-line:nth-child(13) { animation-delay: 7.3s; }
    .demo-line:nth-child(14) { animation-delay: 7.8s; }

    @keyframes demoTypeLine {
        from { opacity: 0; transform: translateX(-4px); }
        to { opacity: 1; transform: translateX(0); }
    }

    /* ── Testimonials Section ─────────────────────────────── */
    .testimonials-section {
        padding: 6rem 0;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    .testimonials-marquee-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }

    .testimonials-marquee-row {
        display: flex;
        width: max-content;
    }

    .testimonials-marquee-row .testimonials-marquee-track {
        display: flex;
        gap: 1.25rem;
        padding-right: 1.25rem;
        animation: testimonialScroll 45s linear infinite;
    }

    .testimonials-marquee-row.reverse .testimonials-marquee-track {
        animation: testimonialScrollReverse 50s linear infinite;
    }

    .testimonials-marquee-row:hover .testimonials-marquee-track {
        animation-play-state: paused;
    }

    @keyframes testimonialScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @keyframes testimonialScrollReverse {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }

    .testimonial-card {
        width: 380px;
        flex-shrink: 0;
        padding: 1.75rem 1.5rem;
        background: linear-gradient(145deg, rgba(30, 30, 35, 0.5) 0%, rgba(22, 22, 27, 0.35) 100%);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
        border-color: rgba(59, 130, 246, 0.15);
        box-shadow: 0 16px 40px -12px rgba(59, 130, 246, 0.1);
    }

    .testimonial-stars {
        display: flex;
        gap: 0.2rem;
        margin-bottom: 1rem;
        color: #F59E0B;
        font-size: 0.8rem;
    }

    .testimonial-quote {
        font-family: 'Outfit', sans-serif;
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.7;
        flex-grow: 1;
        margin-bottom: 1.25rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Sora', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        color: white;
        flex-shrink: 0;
    }

    .testimonial-name {
        font-family: 'Sora', sans-serif;
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    .testimonial-role {
        font-family: 'Outfit', sans-serif;
        font-size: 0.78rem;
        color: var(--text-muted);
    }

    @media (max-width: 767.98px) {
        .testimonial-card { width: 300px; }
    }

    /* ── IdP Logos Section ────────────────────────────────── */
    .idp-section {
        padding: 4rem 0;
        position: relative;
        z-index: 2;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .idp-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .idp-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.1rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        font-family: 'Outfit', sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-muted);
        transition: all 0.3s ease;
    }

    .idp-item:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(59, 130, 246, 0.15);
        color: var(--text-primary);
    }

    .idp-item i {
        font-size: 1rem;
        color: #60A5FA;
    }

    /* ── Compare Card Differentiator ─────────────────────── */
    .compare-card-diff {
        font-family: 'Outfit', sans-serif;
        font-size: 0.78rem;
        font-weight: 500;
        color: #22C55E;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
    }

    .compare-card-diff i {
        font-size: 0.65rem;
    }

    /* ── Mobile Sticky CTA ───────────────────────────────── */
    .mobile-sticky-cta {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0.75rem 1rem;
        background: rgba(10, 10, 14, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .mobile-sticky-cta.visible {
        transform: translateY(0);
    }

    .mobile-sticky-cta-inner {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .mobile-sticky-cta .btn-hero-primary {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .mobile-sticky-cta-note {
        font-family: 'Outfit', sans-serif;
        font-size: 0.72rem;
        color: var(--text-muted);
        text-align: center;
        margin-top: 0.35rem;
    }

    @media (max-width: 767.98px) {
        .mobile-sticky-cta { display: block; }
        .how-it-works-grid { grid-template-columns: 1fr; gap: 2.5rem; }
        .how-it-works-grid::before { display: none; }
        .social-proof-metrics { gap: 2rem; }
    }

    /* ── Reduced Motion ───────────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
        .hero-section::before,
        .hero-section::after { animation: none; }
        .hero-animate { animation: none; opacity: 1; }
        .hero-eyebrow-dot { animation: none; }
        .hero-rotating-words { animation: none; transform: translateY(-90%); }
        .hero-system-grid,
        .hero-system-ring,
        .hero-system-core::before,
        .hero-system-core::after,
        .hero-system-core-shell,
        .hero-system-core-shell::before,
        .hero-system-core-shell::after,
        .hero-system-link::after,
        .hero-system-link::before,
        .hero-system-packet,
        .hero-system-packet-in,
        .hero-system-pulse-wave,
        .hero-system-node,
        .hero-system-node::after { animation: none; }
        .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
        .btn-hero-primary:hover,
        .btn-hero-secondary:hover,
        .feature-card:hover,
        .lp-pricing-card:hover,
        .compare-card:hover,
        .testimonial-card:hover { transform: none; }
        .testimonials-marquee-track { animation: none !important; }
        .demo-line { opacity: 1; animation: none; }
    }
