        /* ============ RESET & CORE TOKENS ============ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            /* Ultimate Premium Dark Palette */
            --bg-base: #060608;
            --bg-canvas: #0b0b0f;
            --bg-surface: #121216;
            --bg-surface-elevated: #18181e;
            
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.12);
            --border-strong: rgba(255, 255, 255, 0.22);
            
            --text-pure: #ffffff;
            --text-primary: #e2e2ea;
            --text-secondary: #9090a7;
            --text-muted: #606075;
            
            /* High-Contrast Technical Accent */
            --accent: #c8ff00;
            --accent-hover: #d4ff33;
            --accent-dim: rgba(200, 255, 0, 0.08);
            --accent-glow: rgba(200, 255, 0, 0.18);
            
            /* Typography */
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            
            /* Structural Variables */
            --container-w: 1240px;
            --section-py: clamp(5rem, 8vw, 8rem);
            --header-h: 84px;
            
            /* Navigation Ease */
            --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--bg-base);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            max-width: 100vw;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-primary);
            background-color: var(--bg-canvas);
            line-height: 1.65;
            font-size: 1.0625rem;
            max-width: 100vw;
            overflow-x: hidden;
            position: relative;
        }

        /* Focus States Standard */
        :focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 4px;
        }

        /* Micro-Grid Texture Overlay for Depth */
        .schematic-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(to right, var(--border-subtle) 1px, transparent 1px),
                              linear-gradient(to bottom, var(--border-subtle) 1px, transparent 1px);
            background-size: 80px 80px;
            opacity: 0.6;
            pointer-events: none;
            z-index: 0;
        }

        /* Reusable Containers */
        .container {
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 clamp(1.25rem, 5vw, 2.5rem);
            position: relative;
            z-index: 1;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--text-pure);
            line-height: 1.12;
            letter-spacing: -0.02em;
            font-weight: 700;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        img, svg {
            display: block;
            max-width: 100%;
        }

        ul {
            list-style: none;
        }

        /* Premium Badge & Tech Label System */
        .tech-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            background: var(--accent-dim);
            border: 1px solid rgba(200, 255, 0, 0.2);
            padding: 0.4rem 0.85rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(4px);
        }
        
        .tech-badge::before {
            content: '';
            display: block;
            width: 5px;
            height: 5px;
            background-color: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--accent);
        }

        /* High-Converting CTA Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s var(--ease-out-quint);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            user-select: none;
        }

        .btn-primary {
            background-color: var(--accent);
            color: #0b0c0e !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px var(--accent-glow);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            background-color: var(--bg-surface-elevated);
            color: var(--text-pure);
            border: 1px solid var(--border-medium);
        }

        .btn-secondary:hover {
            background-color: var(--bg-surface);
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Helper captions directly below buttons for ultimate conversion optimization */
        .btn-caption {
            display: block;
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-top: 0.6rem;
            font-family: var(--font-body);
            text-align: center;
        }

        /* Header Layout */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-h);
            z-index: 100;
            display: flex;
            align-items: center;
            transition: all 0.4s var(--ease-out-quint);
            border-bottom: 1px solid transparent;
        }

        .header.scrolled {
            background-color: rgba(6, 6, 8, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .header-inner {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        /* Memorable Asymmetrical Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: -0.02em;
            color: var(--text-pure);
            position: relative;
            z-index: 101;
        }

        .logo-symbol {
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-desktop a {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .nav-desktop a:hover {
            color: var(--text-pure);
        }

        .header-action {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Mobile Hamburger with clear cross toggle */
        .mobile-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            width: 44px;
            height: 44px;
            position: relative;
            z-index: 101;
            color: var(--text-pure);
        }

        .mobile-btn span {
            position: absolute;
            left: 10px;
            width: 24px;
            height: 2px;
            background-color: currentColor;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-btn span:nth-child(1) { top: 15px; }
        .mobile-btn span:nth-child(2) { top: 21px; }
        .mobile-btn span:nth-child(3) { top: 27px; }

        .mobile-btn.active span:nth-child(1) {
            top: 21px;
            transform: rotate(45deg);
        }
        .mobile-btn.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }
        .mobile-btn.active span:nth-child(3) {
            top: 21px;
            transform: rotate(-45deg);
        }

        /* Premium Mobile Overlay Drawer */
        .nav-mobile-overlay {
            position: fixed;
            inset: 0;
            background-color: rgba(6, 6, 8, 0.95);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            z-index: 100;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: calc(var(--header-h) + 2rem) 2rem 3rem;
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .nav-mobile-overlay.active {
            opacity: 1;
            pointer-events: auto;
            visibility: visible;
        }

        .nav-mobile-links {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        .nav-mobile-links a {
            font-family: var(--font-heading);
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: -0.02em;
        }

        .nav-mobile-links a:hover,
        .nav-mobile-links a.active {
            color: var(--text-pure);
        }

        .nav-mobile-footer {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            border-top: 1px solid var(--border-subtle);
            padding-top: 2rem;
        }

        /* ============ HERO SECTION ============ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: calc(var(--header-h) + 3rem);
            padding-bottom: 5rem;
            position: relative;
        }

        /* Radial Atmospheric Lighting */
        .hero-lighting {
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            max-width: 100vw;
            height: 600px;
            background: radial-gradient(ellipse at top, var(--accent-glow) 0%, rgba(200, 255, 0, 0.03) 40%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-canvas {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.5;
            pointer-events: none;
        }

        .hero-content {
            max-width: 860px;
            text-align: left;
        }

        .hero h1 {
            font-size: clamp(2.75rem, 6.5vw, 5.25rem);
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            text-wrap: balance;
            line-height: 1.06;
        }

        /* Premium gradient text overlay */
        .text-gradient {
            background: linear-gradient(135deg, #ffffff 30%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero h1 .highlight {
            color: var(--accent);
            -webkit-text-fill-color: var(--accent);
            background: none;
        }

        .hero-subtitle {
            font-size: clamp(1.125rem, 2.2vw, 1.35rem);
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 3rem;
            max-width: 720px;
            text-wrap: pretty;
        }

        .hero-actions {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            flex-wrap: wrap;
            margin-bottom: 5rem;
        }

        /* Engineering Metrics Dashboard below Hero */
        .hero-dashboard {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            padding: 2.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            position: relative;
        }

        .hero-dashboard::after {
            content: '';
            position: absolute;
            top: -1px;
            left: 20px;
            right: 20px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0.5;
        }

        .metric-item {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            border-left: 2px solid var(--accent-dim);
            padding-left: 1.25rem;
        }

        .metric-value {
            font-family: var(--font-heading);
            font-size: 1.85rem;
            font-weight: 700;
            color: var(--text-pure);
            line-height: 1.1;
        }

        .metric-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* ============ VALUE PROP / PROBLEM STATEMENT ============ */
        .problem-section {
            padding: var(--section-py) 0;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            position: relative;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 5rem;
            align-items: center;
        }

        .problem-grid h2 {
            font-size: clamp(2.25rem, 4.5vw, 3.5rem);
            text-wrap: balance;
            margin-bottom: 1.5rem;
        }

        .problem-text {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .problem-text p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .problem-text p strong {
            color: var(--text-pure);
            font-weight: 600;
        }

        .client-matrix {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-subtle);
        }

        .matrix-row {
            display: flex;
            align-items: baseline;
            gap: 1rem;
        }

        .matrix-target {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--accent);
            text-transform: uppercase;
            font-weight: 600;
            min-width: 120px;
        }

        .matrix-desc {
            font-size: 0.95rem;
            color: var(--text-primary);
        }

        /* ============ TECH STACK TICKER / TRUST ACCELERATOR ============ */
        .stack-band {
            padding: 3rem 0;
            border-bottom: 1px solid var(--border-subtle);
            background: linear-gradient(90deg, rgba(11,11,15,0.4), var(--bg-surface-elevated), rgba(11,11,15,0.4));
        }

        .stack-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .stack-title {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .stack-items {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .stack-tag {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            color: var(--text-secondary);
            background: var(--bg-canvas);
            padding: 0.4rem 0.85rem;
            border-radius: 6px;
            border: 1px solid var(--border-subtle);
        }

        /* ============ CAPABILITIES MATRIX ============ */
        .capabilities {
            padding: var(--section-py) 0;
            position: relative;
        }

        .section-header {
            max-width: 700px;
            margin-bottom: 4.5rem;
        }

        .section-header h2 {
            font-size: clamp(2.25rem, 5vw, 3.75rem);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--text-secondary);
        }

        /* Non-templated asymmetrical look */
        .cap-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        /* Highlight primary engineering focus with spanning cells */
        .cap-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 3rem 2.25rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s var(--ease-out-quint);
            position: relative;
            overflow: hidden;
        }

        .cap-card.featured {
            grid-column: span 2;
            background: linear-gradient(135deg, var(--bg-surface-elevated), var(--bg-surface));
            border-color: var(--border-medium);
        }

        .cap-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-strong);
            background-color: var(--bg-surface-elevated);
            box-shadow: 0 12px 30px rgba(0,0,0,0.6);
        }

        .cap-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.4s var(--ease-out-quint);
        }

        .cap-card:hover::before {
            width: 100%;
        }

        .cap-id {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            display: block;
            font-weight: 600;
        }

        .cap-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .cap-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.65;
            margin-bottom: 2rem;
        }

        .cap-tech {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-subtle);
        }

        .cap-tech span {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            background-color: var(--bg-base);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
        }

        /* ============ PROCESS ROADMAP ============ */
        .process {
            padding: var(--section-py) 0;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            margin-top: 4rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 24px;
            left: 24px;
            right: 24px;
            height: 1px;
            background: linear-gradient(90deg, var(--accent), var(--border-strong));
            z-index: 0;
        }

        .timeline-step {
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--bg-canvas);
            border: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1.5rem;
            box-shadow: 0 0 16px var(--accent-glow);
        }

        .timeline-step h3 {
            font-size: 1.35rem;
            margin-bottom: 0.6rem;
        }

        .timeline-step p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============ WHY US / DIFFERENTIATORS ============ */
        .why-us {
            padding: var(--section-py) 0;
        }

        .differentiators {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background-color: var(--border-subtle);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            margin-top: 3rem;
        }

        .diff-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background-color: var(--bg-canvas);
            padding: 3rem 2.5rem;
            gap: 3rem;
            align-items: center;
            transition: background-color 0.2s ease;
        }

        .diff-row:hover {
            background-color: var(--bg-surface);
        }

        .diff-claim h3 {
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .diff-claim h3::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background-color: var(--accent);
            flex-shrink: 0;
        }

        .diff-reality p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.65;
        }

        /* ============ CONVERSION & TRUST UPGRADES ============ */
        /* Embedded Lead Capture Form */
        .lead-capture-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            padding: 3rem;
            text-align: left;
            margin-top: 2.5rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            position: relative;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            background-color: var(--bg-canvas);
            border: 1px solid var(--border-subtle);
            border-radius: 6px;
            padding: 0.85rem 1rem;
            color: var(--text-pure);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px var(--accent-dim);
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .embed-toggle-box {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 1rem;
        }

        .embed-tab {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            padding: 0.5rem 1rem;
            transition: color 0.2s ease;
            position: relative;
        }

        .embed-tab.active {
            color: var(--accent);
        }

        .embed-tab.active::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--accent);
        }

        /* Case Studies Section */
        .case-studies-section {
            padding: var(--section-py) 0;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
        }

        .cs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3.5rem;
        }

        .cs-card {
            background-color: var(--bg-canvas);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .cs-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-medium);
        }

        .cs-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .cs-client {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .cs-metric-badge {
            background-color: var(--accent-dim);
            color: var(--accent);
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            border: 1px solid rgba(200, 255, 0, 0.2);
        }

        .cs-body h3 {
            font-size: 1.15rem;
            color: var(--text-pure);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .cs-body p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .cs-result {
            background-color: var(--bg-surface);
            border-left: 2px solid var(--accent);
            padding: 1rem 1.25rem;
            border-radius: 0 6px 6px 0;
            margin-top: auto;
        }

        .cs-result strong {
            display: block;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-pure);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.25rem;
        }

        .cs-result span {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Founder Card */
        .founder-card {
            background-color: var(--bg-canvas);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 2.5rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .founder-avatar-placeholder {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--bg-surface-elevated), var(--bg-surface));
            border: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            flex-shrink: 0;
            box-shadow: 0 0 20px var(--accent-dim);
        }

        .founder-info h3 {
            font-size: 1.35rem;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            justify-content: flex-start;
        }

        .founder-role {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: block;
            margin-bottom: 0.75rem;
        }

        .founder-bio {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .founder-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--text-pure);
            text-decoration: underline;
            text-decoration-color: var(--border-medium);
        }

        .founder-link:hover {
            color: var(--accent);
            text-decoration-color: var(--accent);
        }

        /* Visual Proof Placeholder Block */
        .proof-artifact-box {
            background-color: var(--bg-canvas);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 1rem;
            margin-top: 4rem;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .proof-header-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem 1rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .proof-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--border-medium);
        }

        .proof-dot:nth-child(1) { background-color: #ff5f56; }
        .proof-dot:nth-child(2) { background-color: #ffbd2e; }
        .proof-dot:nth-child(3) { background-color: #27c93f; }

        .proof-title-bar {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-left: auto;
        }

        .proof-body-slot {
            padding: 4rem 2rem;
            text-align: center;
            background: radial-gradient(circle, var(--bg-surface) 0%, var(--bg-canvas) 100%);
            border-radius: 0 0 10px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        /* Smart Action CTA button variant */
        .btn-smart {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent);
            background-color: transparent;
            border: 1px solid var(--border-subtle);
            padding: 0.5rem 0.85rem;
            border-radius: 6px;
            margin-top: 1rem;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .btn-smart:hover {
            background-color: var(--accent-dim);
            border-color: var(--accent);
            color: var(--text-pure);
        }

        @media (max-width: 768px) {
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .founder-card { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem 1.5rem; align-items: center; }
            .founder-info h3 { justify-content: center; }
            .cs-grid { grid-template-columns: 1fr; }
            .lead-capture-card { padding: 2rem 1.5rem; }
            .proof-body-slot { padding: 2.5rem 1rem; }
        }

        /* ============ PRICING SECTION ============ */
        .pricing-section {
            padding: var(--section-py) 0;
            background-color: var(--bg-base);
            border-top: 1px solid var(--border-subtle);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3.5rem;
            margin-bottom: 4rem;
            align-items: stretch;
        }

        .price-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s var(--ease-out-quint), border-color 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .price-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-medium);
        }

        .price-card.popular {
            background-color: var(--bg-surface-elevated);
            border: 1px solid var(--accent);
            box-shadow: 0 12px 40px rgba(76, 125, 255, 0.12);
        }

        .price-card.popular:hover {
            border-color: var(--accent-bright);
            box-shadow: 0 16px 50px rgba(76, 125, 255, 0.2);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--accent);
            color: #0b0c0e !important;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 0.35rem 1rem;
            border-radius: 20px;
            box-shadow: 0 0 15px var(--accent-dim);
            animation: pulse-glow 3s infinite alternate;
        }

        .price-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .price-tier {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-pure);
        }

        .price-amount {
            font-family: var(--font-heading);
            font-size: 2.35rem;
            font-weight: 700;
            color: var(--accent);
            margin: 0.75rem 0 0.35rem;
            letter-spacing: -0.02em;
        }

        .price-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .price-body {
            margin-bottom: 2.5rem;
            flex-grow: 1;
        }

        .price-body h4 {
            font-size: 0.95rem;
            color: var(--text-pure);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .price-examples {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .price-examples li {
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .price-examples li::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .popular-requests-box {
            background-color: var(--bg-canvas);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 3rem;
            margin-bottom: 3rem;
        }

        .popular-requests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .request-item {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 1.5rem;
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }

        .request-item:hover {
            border-color: var(--accent-dim);
            background-color: var(--bg-surface-elevated);
        }

        .request-item h4 {
            font-size: 1rem;
            color: var(--text-pure);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .request-item p {
            color: var(--accent);
            font-family: var(--font-mono);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-banner {
            background: linear-gradient(90deg, rgba(76, 125, 255, 0.05), rgba(0, 229, 153, 0.05));
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
        }

        @keyframes pulse-glow {
            0% { box-shadow: 0 0 8px var(--accent-dim); }
            100% { box-shadow: 0 0 18px var(--accent); }
        }

        /* ============ FAQ ACCORDION ============ */
        .faq {
            padding: var(--section-py) 0;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
        }

        .faq-layout {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 5rem;
            align-items: start;
        }

        .faq-list {
            border-top: 1px solid var(--border-subtle);
        }

        .faq-item {
            border-bottom: 1px solid var(--border-subtle);
        }

        .faq-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            padding: 1.85rem 0;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            color: var(--text-pure);
        }

        .faq-trigger h3 {
            font-size: 1.15rem;
            font-weight: 600;
            font-family: var(--font-body);
            transition: color 0.2s ease;
        }

        .faq-trigger:hover h3 {
            color: var(--accent);
        }

        .faq-icon {
            position: relative;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--accent);
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background-color: currentColor;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.3s ease;
        }

        .faq-icon::before {
            width: 16px;
            height: 2px;
        }

        .faq-icon::after {
            width: 2px;
            height: 16px;
        }

        .faq-item.active .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-out-quint), padding 0.4s var(--ease-out-quint);
        }

        .faq-answer-inner {
            padding-bottom: 1.85rem;
            color: var(--text-secondary);
            font-size: 0.98rem;
            line-height: 1.65;
        }

        /* ============ CONVERSION SECTION / THE AUDIT ============ */
        .cta-section {
            padding: clamp(6rem, 10vw, 10rem) 0;
            background-color: var(--bg-canvas);
            border-top: 1px solid var(--border-subtle);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            max-width: 100vw;
            height: 800px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .cta-box {
            position: relative;
            z-index: 1;
            max-width: 720px;
            margin: 0 auto;
        }

        .cta-box h2 {
            font-size: clamp(2.5rem, 5.5vw, 4.25rem);
            margin-bottom: 1.25rem;
            text-wrap: balance;
        }

        .cta-box p {
            color: var(--text-secondary);
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .takeaways {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            text-align: left;
            margin-bottom: 3.5rem;
            border-top: 1px solid var(--border-subtle);
            padding-top: 2.5rem;
        }

        .takeaway-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .takeaway-item strong {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--accent);
            text-transform: uppercase;
        }

        .takeaway-item span {
            font-size: 0.9rem;
            color: var(--text-primary);
        }

        .cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .direct-mail {
            margin-top: 2.5rem;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .direct-mail a {
            color: var(--text-primary);
            border-bottom: 1px solid var(--border-medium);
            padding-bottom: 2px;
        }

        .direct-mail a:hover {
            color: var(--accent);
            border-color: var(--accent);
        }

        /* ============ FOOTER ============ */
        .footer {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            padding: 5rem 0 3rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 5rem;
            margin-bottom: 5rem;
        }

        .footer-brand {
            max-width: 360px;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--text-pure);
            margin-bottom: 1.25rem;
            display: block;
        }

        .footer-col h3 {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-pure);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }

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

        .footer-bottom {
            padding-top: 2.5rem;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
            color: var(--text-muted);
        }

        /* ============ SCROLL ANIMATIONS ============ */
        .reveal {
            opacity: 1;
            transform: none;
        }

        .js-loaded .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s var(--ease-out-quint), transform 0.7s var(--ease-out-quint);
        }

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

        /* ============ RESPONSIVE BREAKPOINTS & MOBILE ADAPTATION ============ */
        @media (max-width: 1024px) {
            .problem-grid, .faq-layout, .footer-top {
                grid-template-columns: 1fr;
                gap: 3.5rem;
            }
            .cap-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cap-card.featured {
                grid-column: span 1;
            }
            .timeline {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeline::before {
                display: none;
            }
            .diff-row {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 2.5rem 2rem;
            }
            .takeaways {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-py: 4.5rem;
                --header-h: 72px;
            }
            .container {
                padding: 0 1.25rem;
            }
            .nav-desktop, .header-action .btn {
                display: none;
            }
            .mobile-btn {
                display: block;
            }
            .hero {
                padding-top: calc(var(--header-h) + 2rem);
                padding-bottom: 4rem;
                text-align: left;
            }
            .hero h1 {
                font-size: clamp(2.25rem, 8.5vw, 2.85rem);
                line-height: 1.08;
                letter-spacing: -0.02em;
                margin-bottom: 1.25rem;
            }
            .hero-subtitle {
                font-size: 1.05rem;
                margin-bottom: 2.25rem;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
                margin-bottom: 3.5rem;
            }
            .hero-actions .btn {
                width: 100%;
            }
            .hero-dashboard {
                padding: 1.5rem;
                gap: 1.5rem;
                grid-template-columns: 1fr;
                border-radius: 10px;
            }
            .metric-item {
                padding-left: 1rem;
            }
            .metric-value {
                font-size: 1.6rem;
            }
            .problem-grid {
                gap: 3rem;
            }
            .problem-grid h2 {
                font-size: 1.85rem;
                line-height: 1.15;
            }
            .stack-band {
                padding: 2rem 0;
            }
            .stack-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .stack-items {
                gap: 0.6rem;
            }
            .stack-tag {
                font-size: 0.8rem;
                padding: 0.35rem 0.75rem;
            }
            .cap-grid, .timeline {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .section-header {
                margin-bottom: 3rem;
            }
            .section-header h2 {
                font-size: 1.85rem;
            }
            .cap-card {
                padding: 2rem 1.5rem;
            }
            .cap-card h3 {
                font-size: 1.3rem;
            }
            .timeline {
                margin-top: 2.5rem;
                gap: 2rem;
            }
            .timeline-step {
                display: flex;
                flex-direction: column;
                border-left: 2px solid var(--accent-dim);
                padding-left: 1.25rem;
                position: relative;
            }
            .step-number {
                width: 38px;
                height: 38px;
                font-size: 0.85rem;
                margin-bottom: 0.75rem;
            }
            .timeline-step h3 {
                font-size: 1.2rem;
            }
            .differentiators {
                margin-top: 2rem;
            }
            .diff-row {
                padding: 2rem 1.25rem;
                gap: 0.85rem;
            }
            .diff-claim h3 {
                font-size: 1.2rem;
            }
            .faq-layout {
                gap: 2.5rem;
            }
            .faq-trigger {
                padding: 1.35rem 0;
            }
            .faq-trigger h3 {
                font-size: 1.05rem;
            }
            .cta-section {
                padding: 5rem 0;
            }
            .cta-box h2 {
                font-size: 2rem;
                line-height: 1.15;
            }
            .cta-box p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            .takeaways {
                padding-top: 2rem;
                margin-bottom: 2.5rem;
            }
            .takeaway-item span {
                font-size: 0.85rem;
            }
            .cta-actions .btn {
                width: 100%;
                padding: 1rem;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .popular-requests-grid {
                grid-template-columns: 1fr;
            }
            .popular-requests-box {
                padding: 2rem 1.5rem;
            }
            .footer {
                padding: 4rem 0 2.5rem;
            }
            .footer-top {
                gap: 2.5rem;
                margin-bottom: 3rem;
            }
            .footer-logo {
                font-size: 1.25rem;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }

        /* Ultra-compact phone adjustments */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: clamp(2.1rem, 9.5vw, 2.45rem);
            }
            .nav-mobile-overlay {
                padding: calc(var(--header-h) + 1.5rem) 1.5rem 2.5rem;
            }
            .nav-mobile-links {
                gap: 1.35rem;
            }
            .nav-mobile-links a {
                font-size: 1.85rem;
            }
        }

        /* ============ LEGAL MODALS ============ */
        .legal-modal {
            position: fixed;
            inset: 0;
            background-color: rgba(6, 6, 8, 0.9);
            backdrop-filter: blur(12px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        .legal-modal.active {
            display: flex;
        }
        
        .legal-modal-content {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            max-width: 800px;
            max-height: 80vh;
            width: 100%;
            padding: 3rem;
            overflow-y: auto;
            position: relative;
        }
        
        .legal-modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        
        .legal-modal-close:hover {
            color: var(--accent);
        }
        
        .legal-text {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        .legal-text h2 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--text-pure);
        }
        
        .legal-text h3 {
            font-size: 1.25rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--text-pure);
        }
        
        .legal-text p {
            margin-bottom: 1rem;
        }
        
        .legal-text ul {
            margin-bottom: 1.5rem;
            list-style: disc;
            padding-left: 1.5rem;
        }
        
        .legal-text li {
            margin-bottom: 0.5rem;
        }

/* ─── PENTEST PAGE COMPONENT STYLES ─── */
/* ─── NAV ─── */
    
    
    
    
    
    
    
    

    /* ─── SECTIONS ─── */
    

    /* ─── HERO ─── */
    .hero-wrap {
      padding-top: 160px;
      padding-bottom: 80px;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 40px;
      padding-right: 40px;
      position: relative;
    }
    .hero-label {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-label::before {
      content: '';
      display: block;
      width: 28px; height: 1px;
      background: var(--accent);
    }
    
    
    .hero-sub {
      font-size: 18px;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.65;
      margin-bottom: 48px;
      font-weight: 300;
    }
    .hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
    .btn-primary {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #0b0c0e !important;
      background: var(--accent);
      border: none;
      padding: 14px 28px;
      border-radius: 3px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: opacity 0.2s, transform 0.2s;
    }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
    .btn-ghost {
      font-family: var(--mono);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
      text-decoration: none;
      padding: 14px 4px;
      border-bottom: 1px solid var(--border-hi);
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { color: var(--text); border-color: var(--muted); }

    .hero-stats {
      display: flex; gap: 48px; flex-wrap: wrap;
      margin-top: 72px;
      padding-top: 48px;
      border-top: 1px solid var(--border);
    }
    .hero-stat-val {
      font-family: var(--display);
      font-size: 36px;
      font-weight: 800;
      color: var(--text);
      line-height: 1;
    }
    .hero-stat-val span { color: var(--accent); }
    .hero-stat-label {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 6px;
    }

    /* ─── SECTION HEADERS ─── */
    .section-tag {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 16px;
    }
    
    
    .section-intro {
      font-size: 17px;
      color: var(--muted);
      max-width: 580px;
      line-height: 1.65;
      margin-bottom: 60px;
      font-weight: 300;
    }

    /* ─── PROBLEM BAND ─── */
    .problem-band {
      background: #0e0f12;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .problem-band > div {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 40px;
    }
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      margin-top: 48px;
    }
    .problem-cell {
      background: var(--bg-card);
      padding: 36px 32px;
      position: relative;
    }
    .problem-cell::before {
      content: attr(data-num);
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted2);
      display: block;
      margin-bottom: 20px;
      letter-spacing: 0.08em;
    }
    .problem-cell h3 {
      font-family: var(--display);
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .problem-cell p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }
    .problem-cell .tag {
      display: inline-block;
      margin-top: 16px;
      font-family: var(--mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 4px 10px;
      border-radius: 2px;
      border: 1px solid;
    }
    .tag-red { color: var(--red); border-color: rgba(255,71,87,0.3); background: rgba(255,71,87,0.06); }
    .tag-orange { color: var(--orange); border-color: rgba(255,159,67,0.3); background: rgba(255,159,67,0.06); }
    .tag-muted { color: var(--muted); border-color: var(--border-hi); }

    /* ─── OFFERS ─── */
    .offers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
    }
    .offer-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 36px 32px;
      position: relative;
      transition: border-color 0.25s, transform 0.25s;
      cursor: default;
    }
    .offer-card:hover {
      border-color: var(--border-hi);
      transform: translateY(-2px);
    }
    .offer-card.featured {
      border-color: rgba(232,255,71,0.3);
      background: linear-gradient(135deg, #111214, #131510);
    }
    .offer-badge {
      position: absolute;
      top: -1px; right: 24px;
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #0b0c0e;
      background: var(--accent);
      padding: 4px 12px;
      border-radius: 0 0 4px 4px;
    }
    .offer-code {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted2);
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }
    .offer-card h3 {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .offer-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .offer-price {
      font-family: var(--display);
      font-size: 30px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 4px;
    }
    .offer-price small {
      font-size: 14px;
      font-weight: 400;
      color: var(--muted);
      font-family: var(--body);
    }
    .offer-timeline {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 24px;
    }
    .offer-includes {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }
    .offer-includes li {
      font-size: 13px;
      color: var(--muted);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }
    .offer-includes li::before {
      content: '→';
      color: var(--accent);
      font-family: var(--mono);
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .not-in-scope {
      background: rgba(255,71,87,0.04);
      border: 1px solid rgba(255,71,87,0.15);
      border-radius: 4px;
      padding: 20px 24px;
      margin-top: 32px;
    }
    .not-in-scope-title {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }
    .not-in-scope ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .not-in-scope ul li {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      padding: 4px 10px;
      border: 1px solid var(--border-hi);
      border-radius: 2px;
    }

    /* ─── PROCESS ─── */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }
    .process-step {
      background: var(--bg-card);
      padding: 36px 28px;
    }
    .process-num {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted2);
      letter-spacing: 0.1em;
      margin-bottom: 20px;
    }
    .process-step h3 {
      font-family: var(--display);
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .process-step p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }
    .process-hours {
      display: inline-block;
      margin-top: 14px;
      font-family: var(--mono);
      font-size: 10px;
      color: var(--accent2);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* ─── COMPARE ─── */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }
    .compare-table th {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 16px 20px;
      text-align: left;
      background: var(--bg-card);
      color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    .compare-table th.us {
      color: var(--accent);
      background: rgba(232,255,71,0.04);
    }
    .compare-table td {
      font-size: 13px;
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      color: var(--muted);
      vertical-align: top;
    }
    .compare-table td:first-child {
      color: var(--text);
      font-weight: 500;
    }
    .compare-table td.us {
      background: rgba(232,255,71,0.03);
      color: var(--text);
    }
    .compare-table tr:last-child td { border-bottom: none; }
    .check { color: var(--green); }
    .cross { color: var(--muted2); }
    .warn  { color: var(--orange); }

    /* ─── ICP ─── */
    .icp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 700px) { .icp-grid { grid-template-columns: 1fr; } }
    .icp-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 32px 28px;
    }
    .icp-card.primary { border-color: rgba(232,255,71,0.2); }
    .icp-tag {
      font-family: var(--mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 16px;
      display: inline-block;
      padding: 4px 10px;
      border-radius: 2px;
    }
    .icp-tag.primary { color: var(--accent); background: rgba(232,255,71,0.08); }
    .icp-tag.secondary { color: var(--accent2); background: rgba(71,200,255,0.08); }
    .icp-card h3 {
      font-family: var(--display);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .icp-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .icp-list li {
      font-size: 13px;
      color: var(--muted);
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .icp-list li span:first-child {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted2);
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ─── TRUST ─── */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
    }
    .trust-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 28px 24px;
      transition: border-color 0.2s;
    }
    .trust-card:hover { border-color: var(--border-hi); }
    .trust-icon {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 14px;
    }
    .trust-card h3 {
      font-family: var(--display);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .trust-card p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ─── FAQ ─── */
    .faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
    .faq-item { background: var(--bg-card); }
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      color: var(--text);
      font-family: var(--body);
      font-size: 15px;
      font-weight: 500;
      padding: 24px 28px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      transition: background 0.2s;
    }
    .faq-q:hover { background: var(--bg-hover); }
    .faq-arrow {
      font-family: var(--mono);
      font-size: 14px;
      color: var(--muted);
      flex-shrink: 0;
      transition: transform 0.25s;
    }
    .faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--accent); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; }
    .faq-a-inner {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      padding: 0 28px 28px;
    }

    /* ─── CTA ─── */
    .cta-band {
      border-top: 1px solid var(--border);
      background: linear-gradient(135deg, #0d0e11, #0b0c0e);
    }
    .cta-band > div {
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    @media (max-width: 800px) { .cta-band > div { grid-template-columns: 1fr; gap: 48px; } }
    .cta-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
    .cta-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .cta-step-num {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--accent);
      background: rgba(232,255,71,0.08);
      border: 1px solid rgba(232,255,71,0.2);
      border-radius: 3px;
      padding: 4px 10px;
      flex-shrink: 0;
    }
    .cta-step-text h3 {
      font-family: var(--display);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .cta-step-text p { font-size: 13px; color: var(--muted); }

    .contact-box {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 40px 36px;
    }
    .contact-box-tag {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 20px;
    }
    .contact-box h3 {
      font-family: var(--display);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .contact-box p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 28px;
      line-height: 1.6;
    }
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      background: var(--bg);
      border: 1px solid var(--border-hi);
      border-radius: 3px;
      color: var(--text);
      font-family: var(--body);
      font-size: 14px;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
      resize: none;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: var(--muted2); }
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus { border-color: rgba(232,255,71,0.4); }
    .contact-form select option { background: var(--bg-card); }
    .contact-form textarea { min-height: 90px; }
    .contact-form-note {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--muted2);
      text-align: center;
      letter-spacing: 0.05em;
    }

    /* ─── FOOTER BACK LINK ─── */
    .back-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-decoration: none;
      padding: 20px 40px;
      border-top: 1px solid var(--border);
      max-width: 1200px;
      margin: 0 auto;
      transition: color 0.2s;
    }
    .back-link:hover { color: var(--text); }

    /* ─── SCAN ANIMATION ─── */
    .terminal-block {
      background: #080a0c;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 24px 28px;
      font-family: var(--mono);
      font-size: 12px;
      color: var(--muted);
      line-height: 1.9;
      overflow: hidden;
      position: relative;
      margin-top: 60px;
    }
    .terminal-block::before {
      content: '● ● ●';
      display: block;
      font-size: 10px;
      color: var(--muted2);
      margin-bottom: 16px;
      letter-spacing: 3px;
    }
    .t-green { color: var(--green); }
    .t-red   { color: var(--red); }
    .t-acc   { color: var(--accent); }
    .t-blue  { color: var(--accent2); }
    .t-dim   { color: var(--muted2); }
    .blink {
      display: inline-block;
      width: 8px; height: 14px;
      background: var(--accent);
      vertical-align: middle;
      margin-left: 2px;
      animation: blink 1s step-end infinite;
    }
    @keyframes blink { 50% { opacity: 0; } }

    /* ─── DIVIDER ─── */
    .divider { border: none; border-top: 1px solid var(--border); margin: 0; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 700px) {
      
      
      section, .hero-wrap, .problem-band > div, .cta-band > div { padding-left: 20px; padding-right: 20px; }
      .hero-stats { gap: 28px; }
      .icp-grid { grid-template-columns: 1fr; }
      .compare-table { font-size: 12px; }
      .compare-table th, .compare-table td { padding: 10px 12px; }
      .back-link { padding: 16px 20px; }
    }

    /* ─── SCROLL FADE IN ─── */
    .fade-in {
      opacity: 1;
      transform: none;
    }
    .js-loaded .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .js-loaded .fade-in.visible { opacity: 1; transform: none; }
