           COLOR THEME A — COLD ENGINEERING BLUE
           ======================================== */
        :root {
            /* Background System */
            --bg-base: #050A14;
            --bg-base-alt: #070F1D;
            --bg-surface: #0B1222;
            --bg-surface-hover: #0E1628;
            --bg-footer: #040810;

            /* Border System */
            --border-card: rgba(26, 42, 69, 0.35);
            --border-card-hover: rgba(58, 109, 255, 0.25);
            --border-subtle: rgba(26, 42, 69, 0.20);
            --border-divider: rgba(58, 109, 255, 0.12);

            /* Text System */
            --text-primary: #EAF0FF;
            --text-secondary: #A9B4D0;
            --text-tertiary: #7D88A6;
            --text-muted: #5A6580;

            /* Accent System */
            --accent: #3A6DFF;
            --accent-hover: #4C7EFF;
            --accent-dim: rgba(58, 109, 255, 0.12);
            --accent-glow: rgba(58, 109, 255, 0.08);
            --accent-label: rgba(58, 109, 255, 0.7);
            --accent-icon-glow: #6B8CFF;

            /* Effects */
            --glow-hero: rgba(58, 109, 255, 0.12);
            --glow-card: rgba(58, 109, 255, 0.06);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
            --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.5);

            /* Spacing (8pt system) - UNCHANGED */
            --space-1: 8px;
            --space-2: 16px;
            --space-3: 24px;
            --space-4: 32px;
            --space-5: 40px;
            --space-6: 48px;
            --space-8: 64px;
            --space-10: 80px;
            --space-12: 96px;
            --space-16: 128px;

            /* Layout - UNCHANGED */
            --max-width: 1120px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-btn: 10px;
        }

        /* ========================================
           RESET & BASE
           ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        /* ========================================
           BACKGROUND ENHANCEMENT SYSTEM
           ======================================== */

        .bg-noise {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            opacity: 0.018;
            mix-blend-mode: overlay;
        }

        .bg-noise::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 256px 256px;
        }

        .bg-gradient {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                linear-gradient(
                    165deg,
                    rgba(5, 10, 20, 0) 0%,
                    rgba(7, 15, 29, 0.3) 30%,
                    rgba(5, 10, 20, 0.1) 60%,
                    rgba(7, 15, 29, 0.4) 100%
                ),
                linear-gradient(
                    180deg,
                    var(--bg-base) 0%,
                    var(--bg-base-alt) 25%,
                    var(--bg-base) 50%,
                    var(--bg-base-alt) 75%,
                    var(--bg-base) 100%
                );
        }

        .bg-stars {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0.05;
        }

        .bg-stars::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(1px 1px at 20px 30px, var(--text-primary), transparent),
                radial-gradient(1px 1px at 40px 70px, var(--text-secondary), transparent),
                radial-gradient(1px 1px at 50px 160px, var(--text-primary), transparent),
                radial-gradient(1px 1px at 90px 40px, var(--text-secondary), transparent),
                radial-gradient(1px 1px at 130px 80px, var(--text-primary), transparent),
                radial-gradient(1px 1px at 160px 120px, var(--text-secondary), transparent),
                radial-gradient(1px 1px at 200px 50px, var(--text-primary), transparent),
                radial-gradient(1px 1px at 220px 140px, var(--text-secondary), transparent),
                radial-gradient(1px 1px at 260px 90px, var(--text-primary), transparent),
                radial-gradient(1px 1px at 300px 170px, var(--text-secondary), transparent);
            background-size: 320px 200px;
        }

        .bg-vignette {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background: radial-gradient(
                ellipse 80% 60% at 50% 50%,
                transparent 0%,
                rgba(5, 10, 20, 0.5) 100%
            );
        }

        /* ========================================
           TYPOGRAPHY
           ======================================== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 500;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            line-height: 1.15;
        }

        .mono {
            font-family: 'IBM Plex Mono', monospace;
        }

        /* ========================================
           LAYOUT
           ======================================== */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-6);
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .container { padding: 0 var(--space-3); }
        }

        section {
            position: relative;
            padding: var(--space-16) 0;
        }

        /* ========================================
           HEADER / NAVIGATION
           ======================================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 10, 20, 0.85);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--space-8);
        }

        /* ✅ Brand (logo + text) */
        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-primary);
        }

        .brand-logo {
            height: 30px;
            width: auto;
            display: block;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.05;
        }

        .brand-name {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.14em;
            color: var(--text-primary);
            transition: color 0.3s ease;
        }

        .brand-tagline {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.10em;
            text-transform: none;
            color: var(--text-tertiary);
            margin-top: 4px;
        }

        .brand:hover .brand-name {
            color: var(--accent);
        }

        nav {
            display: flex;
            align-items: center;
            gap: var(--space-1);
        }

        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            padding: var(--space-1) var(--space-2);
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: var(--text-primary);
            background: var(--accent-dim);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: var(--space-1);
        }

        .mobile-menu span {
            display: block;
            width: 20px;
            height: 1.5px;
            background: var(--text-secondary);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-menu { display: flex; }
            .brand-logo { height: 26px; }
            .brand-name { font-size: 14px; }
            .brand-tagline { font-size: 9px; }
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: var(--space-8);
            position: relative;
            overflow: hidden;
        }

        .hero-headline-glow {
            position: absolute;
            top: 38%;
            left: 15%;
            width: 500px;
            height: 300px;
            background: radial-gradient(
                ellipse,
                rgba(58, 109, 255, 0.07) 0%,
                transparent 65%
            );
            filter: blur(150px);
            pointer-events: none;
            transform: translateY(-50%);
        }

        .hero-glow {
            position: absolute;
            top: 15%;
            right: 5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(
                circle,
                rgba(58, 109, 255, 0.08) 0%,
                transparent 60%
            );
            filter: blur(100px);
            pointer-events: none;
            opacity: 1;
            animation: heroGlowPulse 8s ease-in-out infinite;
        }

        @keyframes heroGlowPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.85; }
        }

        .signal-lines {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            opacity: 0.04;
        }

        .signal-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
            animation: signalFlow 12s linear infinite;
        }

        .signal-line:nth-child(1) { top: 18%; width: 300px; animation-duration: 14s; }
        .signal-line:nth-child(2) { top: 35%; width: 200px; animation-delay: 2s; animation-duration: 16s; }
        .signal-line:nth-child(3) { top: 52%; width: 400px; animation-delay: 4s; animation-duration: 18s; }
        .signal-line:nth-child(4) { top: 68%; width: 250px; animation-delay: 1s; animation-duration: 15s; }
        .signal-line:nth-child(5) { top: 82%; width: 350px; animation-delay: 3s; animation-duration: 13s; }

        @keyframes signalFlow {
            0% { transform: translateX(-100%); left: 0; }
            100% { transform: translateX(100vw); left: 0; }
        }

        .network-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            opacity: 0.04;
        }

        .network-bg svg {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(5, 10, 20, 0.8) 0%,
                rgba(5, 10, 20, 0.5) 40%,
                rgba(5, 10, 20, 0.7) 100%
            );
            pointer-events: none;
        }

        .hero-content {
            max-width: 680px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(40px, 5vw, 60px);
            line-height: 1.08;
            margin-bottom: var(--space-4);
            letter-spacing: -0.03em;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 540px;
            margin-bottom: var(--space-5);
        }

        /* ========================================
           BUTTONS & CTAs
           ======================================== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: var(--space-1);
            font-family: 'IBM Plex Mono', monospace;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            padding: 14px var(--space-3);
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            background: linear-gradient(
                180deg,
                rgba(58, 109, 255, 0.2) 0%,
                rgba(58, 109, 255, 0.1) 100%
            );
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            transform: translateY(0) scale(1);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.08) 0%,
                transparent 50%
            );
            border-radius: var(--radius-btn);
            pointer-events: none;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            inset: -8px;
            background: radial-gradient(ellipse at center, rgba(58, 109, 255, 0) 0%, rgba(58, 109, 255, 0) 100%);
            border-radius: calc(var(--radius-btn) + 8px);
            pointer-events: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-primary:hover {
            background: linear-gradient(
                180deg,
                rgba(58, 109, 255, 0.3) 0%,
                rgba(58, 109, 255, 0.15) 100%
            );
            border-color: var(--accent-hover);
            transform: translateY(-2px) scale(1);
        }

        .btn-primary:hover::after {
            background: radial-gradient(ellipse at center, rgba(58, 109, 255, 0.18) 0%, rgba(58, 109, 255, 0) 70%);
            inset: -20px;
        }

        .btn-primary:active {
            transform: translateY(0) scale(0.98);
            transition: all 0.1s ease;
        }

        .btn-primary:active::after {
            background: radial-gradient(ellipse at center, rgba(58, 109, 255, 0.08) 0%, rgba(58, 109, 255, 0) 70%);
            transition: all 0.15s ease;
        }

        .btn-primary svg {
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-submit {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 14px;
            font-weight: 500;
            color: var(--accent);
            background: rgba(58, 109, 255, 0.18);
  /* border: 1px solid rgba(58, 109, 255, 0.35); */
            border: none;
            border-radius: var(--radius-btn);
            padding: 14px var(--space-4);
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            transform: translateY(0) scale(1);
        }

        .btn-submit::after {
            content: '';
            position: absolute;
            inset: -8px;
            background: radial-gradient(ellipse at center, rgba(58, 109, 255, 0) 0%, rgba(58, 109, 255, 0) 100%);
            border-radius: calc(var(--radius-btn) + 8px);
            pointer-events: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-submit:hover {
            background: rgba(58, 109, 255, 0.28);
            transform: translateY(-2px) scale(1);
        }

        .btn-submit:hover::after {
            background: radial-gradient(ellipse at center, rgba(58, 109, 255, 0.2) 0%, rgba(58, 109, 255, 0) 70%);
            inset: -24px;
        }

        .btn-submit:active {
            transform: translateY(0) scale(0.98);
            transition: all 0.1s ease;
        }

        .btn-submit:active::after {
            background: radial-gradient(ellipse at center, rgba(58, 109, 255, 0.08) 0%, rgba(58, 109, 255, 0) 70%);
            transition: all 0.15s ease;
        }

        /* ========================================
           SECTION LABELS
           ======================================== */
        .section-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: none;
            color: var(--accent-label);
            margin-bottom: var(--space-6);
        }

        /* ========================================
           SECTION DIVIDERS
           ======================================== */
        .divider { position: relative; height: 1px; margin: 0; }

        .divider::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                transparent 10%,
                rgba(58, 109, 255, 0.12) 30%,
                rgba(58, 109, 255, 0.15) 50%,
                rgba(58, 109, 255, 0.12) 70%,
                transparent 90%,
                transparent 100%
            );
        }

        .divider::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 40px;
            background: radial-gradient(ellipse at center, rgba(58, 109, 255, 0.2) 0%, transparent 70%);
            filter: blur(12px);
            pointer-events: none;
        }

        /* ========================================
           PLATFORM CARDS
           ======================================== */
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-3);
        }

        @media (max-width: 900px) {
            .platforms-grid {
                grid-template-columns: 1fr;
                gap: var(--space-2);
            }
        }

        .platform-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: var(--space-4);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            transform: translateY(0);
        }

        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .platform-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% -20%, rgba(58, 109, 255, 0) 0%, transparent 60%);
            opacity: 0;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .platform-card:hover {
            background: var(--bg-surface-hover);
            border-color: var(--border-card-hover);
            transform: translateY(-4px);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(58, 109, 255, 0.12);
        }

        .platform-card:hover::before {
            background: linear-gradient(90deg, transparent 0%, rgba(58, 109, 255, 0.2) 50%, transparent 100%);
        }

        .platform-card:hover::after {
            background: radial-gradient(ellipse at 50% -20%, rgba(58, 109, 255, 0.08) 0%, transparent 60%);
            opacity: 1;
        }

        /* ✅ Platform icon now uses your SVG files */
        .platform-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-3);
            position: relative;
            z-index: 1;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .platform-icon img {
            width: 32px;
            height: 32px;
            display: block;
            filter: drop-shadow(0 0 0 rgba(0,0,0,0));
        }

        .platform-card:hover .platform-icon img {
            filter: drop-shadow(0 0 10px var(--accent-icon-glow));
        }

        .platform-card h3 {
            font-size: 17px;
            margin-bottom: var(--space-2);
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        .platform-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            position: relative;
            z-index: 1;
        }

        /* ========================================
           RESOURCES SECTION
           ======================================== */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-4);
        }

        @media (max-width: 900px) {
            .resources-grid { grid-template-columns: 1fr; gap: var(--space-2); }
        }

        .resource-card {
            padding: var(--space-4) 0;
            border-top: 1px solid var(--border-subtle);
            transition: all 0.3s ease;
        }

        .resource-card:hover { border-top-color: var(--accent); }

        .resource-card h3 {
            font-size: 15px;
            margin-bottom: var(--space-1);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: var(--space-1);
            transition: color 0.3s ease;
        }

        .resource-card h3::after {
            content: '→';
            font-size: 13px;
            color: var(--accent);
            opacity: 0;
            transform: translateX(-8px);
            transition: all 0.3s ease;
        }

        .resource-card:hover h3 { color: var(--accent-hover); }

        .resource-card:hover h3::after {
            opacity: 1;
            transform: translateX(0);
        }

        .resource-card p {
            font-size: 13px;
            color: var(--text-tertiary);
            line-height: 1.6;
        }

        /* ========================================
           COMPANY SECTION
           ======================================== */
        .company-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-10) var(--space-8);
        }

        @media (max-width: 768px) {
            .company-grid { grid-template-columns: 1fr; gap: var(--space-5); }
        }

        .company-block {
            padding-left: var(--space-3);
            border-left: 1px solid var(--border-subtle);
            transition: border-color 0.3s ease;
        }

        .company-block:hover { border-left-color: var(--accent); }

        .company-block h3 {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: none;
            color: var(--text-tertiary);
            margin-bottom: var(--space-2);
        }

        .company-block p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .company-block ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-1) var(--space-2);
        }

        .company-block li {
            font-size: 14px;
            color: var(--text-secondary);
            position: relative;
            padding-left: var(--space-2);
        }

        .company-block li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 4px;
            height: 4px;
            background: rgba(58, 109, 255, 0.18);
  /* border: 1px solid rgba(58, 109, 255, 0.35); */
            border-radius: 50%;
            opacity: 0.6;
        }

        /* ========================================
           ABOUT SECTION
           ======================================== */
        .about-content { max-width: 620px; }

        .about-content p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: var(--space-3);
        }

        .about-content p:last-child { margin-bottom: 0; }

        /* ========================================
           CONTACT SECTION
           ======================================== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-12);
            align-items: start;
        }

        @media (max-width: 900px) {
            .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); }
        }

        .contact-info h2 {
            font-size: 28px;
            margin-bottom: var(--space-2);
        }

        .contact-info p { font-size: 14px; color: var(--text-tertiary); }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: var(--space-3);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: var(--space-1);
        }

        .form-group label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.06em;
            color: var(--text-tertiary);
            text-transform: none;
        }

        .form-group input,
        .form-group textarea {
            background: var(--bg-surface);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-sm);
            padding: 14px var(--space-2);
            font-family: 'Instrument Sans', sans-serif;
            font-size: 15px;
            color: var(--text-primary);
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder { color: var(--text-muted); }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            background: var(--bg-surface-hover);
            box-shadow: 0 0 0 3px var(--accent-dim);
        }

        .form-group textarea { min-height: 120px; resize: vertical; }

        /* ========================================
           FOOTER v1
           ======================================== */
        footer {
            position: relative;
            padding: var(--space-6) 0;
            background: var(--bg-footer);
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                transparent 10%,
                rgba(58, 109, 255, 0.12) 30%,
                rgba(58, 109, 255, 0.15) 50%,
                rgba(58, 109, 255, 0.12) 70%,
                transparent 90%,
                transparent 100%
            );
        }

        footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 30px;
            background: radial-gradient(ellipse at center, rgba(58, 109, 255, 0.15) 0%, transparent 70%);
            filter: blur(10px);
            pointer-events: none;
        }

        .footer-bg {
            position: absolute;
            inset: 0;
            opacity: 0.035;
            pointer-events: none;
        }

        .footer-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(1px 1px at 30px 20px, var(--text-tertiary), transparent),
                radial-gradient(1px 1px at 80px 50px, var(--text-tertiary), transparent),
                radial-gradient(1px 1px at 140px 35px, var(--text-tertiary), transparent),
                radial-gradient(1px 1px at 200px 60px, var(--text-tertiary), transparent),
                radial-gradient(1px 1px at 260px 25px, var(--text-tertiary), transparent);
            background-size: 300px 80px;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .footer-inner { flex-direction: column; gap: var(--space-4); }
        }

        /* ✅ Footer brand */
        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            margin-bottom: var(--space-1);
        }

        .footer-brand img {
            height: 26px;
            width: auto;
            display: block;
            opacity: 0.95;
        }

        .footer-brand span {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.14em;
            color: var(--text-primary);
        }

        .footer-left p { font-size: 12px; color: var(--text-muted); }

        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: var(--space-2);
        }

        @media (max-width: 768px) {
            .footer-right { align-items: flex-start; }
        }

        .footer-nav {
            display: flex;
            gap: var(--space-3);
            flex-wrap: wrap;
        }

        .footer-nav a {
            font-size: 13px;
            color: var(--text-tertiary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover { color: var(--accent-hover); }

        .footer-legal {
            display: flex;
            gap: var(--space-2);
        }

        .footer-legal a {
            font-size: 11px;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover { color: var(--text-tertiary); }

        /* ========================================
           ANIMATIONS
           ======================================== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-content { animation: fadeInUp 0.9s ease-out; }

        .platform-card {
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .platform-card:nth-child(1) { animation-delay: 0.1s; }
        .platform-card:nth-child(2) { animation-delay: 0.2s; }
        .platform-card:nth-child(3) { animation-delay: 0.3s; }

        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        ::selection { background: rgba(58, 109, 255, 0.18); color: var(--accent); }
  /* border: 1px solid rgba(58, 109, 255, 0.35); */

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-base); }
        ::-webkit-scrollbar-thumb { background: var(--border-subtle); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--border-card); }

/* ================================
   LEGAL PAGE LAYOUT OVERRIDE
   ================================ */
body.legal-page {
  overflow-x: hidden;
}

body.legal-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

body.legal-page main {
  position: relative !important;
  height: auto !important;
  overflow: visible !important;
}

body.legal-page header {
  position: relative !important;
  height: auto !important;
}

body.legal-page p,
body.legal-page li {
  line-height: 1.7;
}
/* ========================================
   LEGAL PAGE – HARD RESET HEADER LAYOUT
   ======================================== */

body.legal-page .legal-header {
  background: none !important;
  min-height: auto !important;
  height: auto !important;
  display: block !important;
}

body.legal-page .container-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 24px 20px !important;
  max-width: 1100px;
  margin: 0 auto;
}

body.legal-page .legal-header img {
  max-width: 42px !important;
  height: auto !important;
}

body.legal-page .brand-text {
  display: block !important;
}

body.legal-page .slogan {
  font-size: 13px;
  opacity: 0.7;
}

/* kill hero leftovers */
body.legal-page .hero,
body.legal-page .hero-left,
body.legal-page .hero-right {
  display: none !important;
}
/* ========================================
   LEGAL PAGE – FORCE SINGLE COLUMN MODE
   ======================================== */

body.legal-page {
  overflow-x: hidden !important;
}

body.legal-page header {
  position: relative !important;
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
}

body.legal-page .hero,
body.legal-page .hero-left,
body.legal-page .hero-right,
body.legal-page .bg-noise,
body.legal-page .bg-gradient,
body.legal-page .bg-stars,
body.legal-page .bg-vignette {
  display: none !important;
}

body.legal-page main.container {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 48px 20px 96px !important;
  background: transparent !important;
}
/* ========================================
   LEGAL PAGE – HEADER LINK SPACING FIX
   ======================================== */

body.legal-page .top-links {
  display: flex !important;
  gap: 16px !important;
  align-items: center !important;
}

body.legal-page .top-links a {
  font-size: 14px;
  text-decoration: none;
  color: var(--text-secondary);
  white-space: nowrap;
}

body.legal-page .top-links a:not(:last-child)::after {
  content: "|";
  margin-left: 16px;
  opacity: 0.4;
}
