    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

    :root {
        --bg-dark: #FFFFFF;
        /* Was #020E21 - Now White */
        --bg-card: #F8FAFC;
        /* Was #0A1935 - Now Off-White/Light Grey */
        --bg-hover: #E2E8F0;
        /* Was #152648 - Now Light Grey */
        --primary: #0079C1;
        /* SC Blue - Unchanged */
        --primary-dim: rgba(0, 121, 193, 0.1);
        --primary-hover: #005A8C;
        /* Darker Blue for hover */
        --accent-coral: #69BE28;
        /* SC Green */
        --accent-sage: #69BE28;
        /* SC Green */
        --accent-blue: #0079C1;
        /* SC Blue */
        --text-main: #0A1935;
        /* Was #FFFFFF - Now Dark Navy */
        --text-muted: #475569;
        /* Was #A0B4D5 - Now Slate Grey */
        --text-dim: #64748B;
        /* Slate 500 */
        --border: #E2E8F0;
        /* Light Grey Border */
        --border-hover: #CBD5E1;
        --container: 1200px;
        --header-height: 80px;
    }

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

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--bg-dark);
        color: var(--text-main);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4 {
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
    }

    h3 {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .text-coral {
        color: var(--accent-coral);
    }

    .text-primary {
        color: var(--primary);
    }

    .text-dim {
        color: var(--text-dim);
    }

    .bg-grid {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-image:
            linear-gradient(rgba(0, 121, 193, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 121, 193, 0.05) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

    .bg-vignette {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-dark) 120%);
        pointer-events: none;
    }

    .container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 2rem;
    }

    section {
        padding: 6rem 0;
        position: relative;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease-out;
    }

    nav {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 1000px;
        height: 64px;
        z-index: 100;
        background: rgba(255, 255, 255, 0.8);
        /* White glassmorphism */
        backdrop-filter: blur(12px);
        border: 1px solid var(--border);
        border-radius: 100px;
        display: flex;
        align-items: center;
        padding: 0 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        /* Softer shadow */
    }

    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0;
        max-width: none;
    }

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

    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

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

    .nav-item {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 0.5rem;
        min-width: 220px;
        display: none;
        flex-direction: column;
        gap: 0.2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        transition: all 0.2s ease;
        pointer-events: none;
    }

    .nav-item:hover .dropdown-menu {
        display: flex;
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .dropdown-item {
        padding: 0.6rem 1rem;
        color: var(--text-muted) !important;
        text-decoration: none;
        font-size: 0.9rem !important;
        border-radius: 6px;
        white-space: nowrap;
        display: block;
        transition: all 0.2s ease;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--primary) !important;
        transform: translateX(4px);
    }

    .logo {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--text-main);
        /* Ensure dark text in light mode */
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .logo-mark {
        width: 24px;
        height: 24px;
        border: 2px solid var(--primary);
        border-radius: 4px;
        position: relative;
    }

    .logo-mark::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.2s ease;
        cursor: pointer;
        border: 1px solid transparent;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 100px;
        font-weight: 500;
        text-decoration: none !important;
        /* Force no underline */
        transition: all 0.2s ease;
        font-size: 0.95rem;
        cursor: pointer;
        border: 1px solid transparent;
    }

    .btn-primary {
        background: var(--primary);
        color: #FFFFFF;
        /* Force white text */
    }

    .btn-primary:hover {
        background: var(--primary-hover);
        transform: translateY(-1px);
    }

    .btn-outline {
        background: transparent;
        border-color: var(--border);
        color: var(--text-muted);
    }

    .btn-outline:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--bg-hover);
    }

    .nav-actions {
        display: flex;
        gap: 1rem;
    }

    .nav-actions .btn {
        border-radius: 100px;
        /* Ensure nav buttons match */
    }

    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 101;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-main);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        max-height: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 99;
    }

    .mobile-menu.active {
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .mobile-menu-content {
        padding: 2rem;
    }

    .mobile-menu-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .mobile-menu-links a {
        color: var(--text-main);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        transition: color 0.2s;
        display: block;
        padding: 0.5rem 0;
    }

    .mobile-menu-links a:hover {
        color: var(--primary);
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
    }

    .mobile-menu-actions .btn {
        width: 100%;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(10, 14, 26, 0.8);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 98;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero {
        padding-top: calc(var(--header-height) + 4rem);
        min-height: 90vh;
        display: flex;
        align-items: center;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-content h1 {
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        max-width: 500px;
    }

    .hero-message-wrapper {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .hero-message {
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: inline-block;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
    }

    .hero-visual {
        position: relative;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    svg.sketch {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .sketch-path {
        fill: none;
        stroke: var(--primary);
        stroke-width: 1.5;
        stroke-opacity: 0.6;
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        animation: draw 2s ease-out forwards;
    }

    .sketch-path.secondary {
        stroke: var(--accent-blue);
        stroke-opacity: 0.4;
        stroke-width: 1;
    }

    .sketch-path.dashed {
        stroke-dasharray: 4 4;
        animation: flow 30s linear infinite;
    }

    .sketch-node {
        fill: var(--bg-dark);
        stroke: var(--primary);
        stroke-width: 1.5;
        r: 6;
    }

    .sketch-node.pulse {
        animation: pulse 4s ease-in-out infinite;
    }

    @keyframes draw {
        to {
            stroke-dashoffset: 0;
        }
    }

    @keyframes flow {
        to {
            stroke-dashoffset: -1000;
        }
    }

    @keyframes pulse {

        0%,
        100% {
            stroke-opacity: 0.6;
        }

        50% {
            stroke-opacity: 1;
        }
    }

    .node-pulse {
        animation: nodePulse 2s ease-in-out infinite;
    }

    @keyframes nodePulse {

        0%,
        100% {
            r: 6;
            opacity: 0.5;
        }

        50% {
            r: 8;
            opacity: 1;
        }
    }

    .connection-flow {
        stroke-dasharray: 10;
        animation: connectionFlow 1s linear infinite;
    }

    @keyframes connectionFlow {
        to {
            stroke-dashoffset: -20;
        }
    }

    .logos-grid {
        display: flex;
        justify-content: center;
        gap: 4rem;
        flex-wrap: wrap;
        opacity: 0.6;
    }

    .card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .card:hover {
        border-color: var(--primary);
        transform: translateY(-2px);
    }

    .why-now-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .problem-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .problem-visual {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        height: 400px;
        position: relative;
        overflow: hidden;
    }

    .solution-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }

    .step-item {
        position: relative;
        padding-top: 2rem;
    }

    .step-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--border);
    }

    .step-item::after {
        content: '';
        position: absolute;
        top: -3px;
        left: 0;
        width: 7px;
        height: 7px;
        background: var(--bg-dark);
        border: 1px solid var(--primary);
        border-radius: 50%;
    }

    .value-dashboard {
        max-width: 800px;
        margin: 0 auto;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 3rem;
        text-align: center;
    }

    .metric-large {
        font-size: 4rem;
        font-weight: 600;
        color: var(--text-main);
        line-height: 1;
        margin: 1rem 0;
        font-family: 'IBM Plex Mono', monospace;
    }

    .input-field {
        background: var(--bg-dark);
        border: 1px solid var(--border);
        padding: 0.75rem 1rem;
        border-radius: 6px;
        color: var(--text-main);
        min-width: 300px;
        font-family: inherit;
    }

    .input-field:focus {
        outline: none;
        border-color: var(--primary);
    }

    .cta-form {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }

    .cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    /* Responsive */
    @media (max-width: 768px) {

        .hero-grid,
        .problem-grid,
        .solution-steps,
        .cta-grid,
        .why-now-grid {
            grid-template-columns: 1fr;
        }

        .nav-links {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        .nav-actions {
            display: none;
        }

        section {
            padding: 4rem 0;
        }

        .container {
            padding: 0 1.5rem;
        }

        h1 {
            font-size: 2rem;
        }

        h2 {
            font-size: 1.75rem;
        }

        .cta-form {
            flex-direction: column;
        }

        .input-field {
            min-width: 100%;
        }

        .hero-visual {
            height: 300px;
        }
    }

    /* Extended Styles for Content Expansion & "Rizz" Polish */

    /* Glassmorphism & Visuals */
    .glass-card {
        background: rgba(255, 255, 255, 0.7);
        /* White glass */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 2.5rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        /* Soft shadow */
    }

    .glass-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: var(--primary-dim);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .glow-blob {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(13, 127, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: -1;
    }

    .glow-blob.secondary {
        background: radial-gradient(circle, rgba(0, 214, 110, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    }

    .glow-blob.accent {
        background: radial-gradient(circle, rgba(199, 125, 110, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    }

    /* Sketch Visuals */
    .sketch-path {
        fill: none;
        stroke: var(--text-dim);
        stroke-width: 1.5;
        stroke-linecap: round;
        transition: all 0.3s ease;
    }

    .sketch-path.dashed {
        stroke-dasharray: 5 5;
    }

    .dashed {
        stroke-dasharray: 4 4;
    }

    /* Typography Polish */
    .kicker {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.85rem;
        font-weight: 700;
        /* Bolder */
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 1rem;
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        background: var(--primary-dim);
        /* Light blue background */
        border: 1px solid var(--primary-dim);
        color: var(--primary);
        /* Deep blue text */
    }

    /* Feature Cards (Tall & Visual) */
    .features-tall-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .feature-card-tall {
        background: var(--bg-card);
        /* Off-white */
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        min-height: 400px;
        transition: all 0.4s ease;
        overflow: hidden;
        position: relative;
        backdrop-filter: blur(0px);
        /* Remove blur for solid card */
    }

    .feature-card-tall:hover {
        background: #FFFFFF;
        /* White on hover */
        border-color: var(--primary);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .feature-visual {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        position: relative;
    }

    .feature-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: var(--text-main);
    }

    .feature-content p {
        font-size: 0.95rem;
        color: var(--text-muted);
    }

    /* UI Component: Live Feed */
    .ui-feed {
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.75rem;
    }

    .ui-row {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        animation: fadeInRow 3s infinite;
    }

    .ui-row:nth-child(1) {
        animation-delay: 0s;
    }

    .ui-row:nth-child(2) {
        animation-delay: 1s;
    }

    .ui-row:nth-child(3) {
        animation-delay: 2s;
        border-bottom: none;
    }

    .badge-pill {
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 0.65rem;
        font-weight: 600;
    }

    .badge-success {
        background: rgba(0, 214, 110, 0.2);
        color: var(--accent-sage);
    }

    .badge-pending {
        background: rgba(255, 193, 7, 0.2);
        color: #FFC107;
    }

    @keyframes fadeInRow {
        0% {
            opacity: 0;
            transform: translateY(5px);
        }

        20% {
            opacity: 1;
            transform: translateY(0);
        }

        80% {
            opacity: 1;
            transform: translateY(0);
        }

        100% {
            opacity: 0;
            transform: translateY(-5px);
        }
    }

    /* UI Component: Progress Stack */
    .ui-stack {
        position: relative;
        width: 60px;
        height: 80px;
    }

    .stack-card {
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--bg-card);
        border: 1px solid var(--primary);
        border-radius: 8px;
        opacity: 0;
        transform: translateY(20px) scale(0.9);
        animation: stackUp 4s infinite;
    }

    .stack-card::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 16px;
        height: 16px;
        background: var(--primary);
        border-radius: 50%;
        opacity: 0.5;
    }

    .stack-card:nth-child(1) {
        animation-delay: 0s;
        z-index: 1;
    }

    .stack-card:nth-child(2) {
        animation-delay: 1.3s;
        z-index: 2;
    }

    .stack-card:nth-child(3) {
        animation-delay: 2.6s;
        z-index: 3;
    }

    @keyframes stackUp {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.9);
        }

        20% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        80% {
            opacity: 1;
            transform: translateY(-10px) scale(1.05);
        }

        100% {
            opacity: 0;
            transform: translateY(-20px) scale(1.1);
        }
    }

    /* UI Component: Shield Scan */
    .ui-shield-wrapper {
        position: relative;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .shield-icon {
        font-size: 2.5rem;
        z-index: 2;
    }

    .scan-ring {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid var(--accent-sage);
        border-radius: 50%;
        opacity: 0;
        animation: radarPing 3s infinite;
    }

    .scan-ring:nth-child(2) {
        animation-delay: 0.5s;
    }

    @keyframes radarPing {
        0% {
            transform: scale(0.5);
            opacity: 0;
            border-width: 4px;
        }

        50% {
            opacity: 0.5;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
            border-width: 0px;
        }
    }

    /* Responsive Tall Grid */
    @media (max-width: 768px) {
        .features-tall-grid {
            grid-template-columns: 1fr;
        }

        .feature-card-tall {
            min-height: auto;
            padding: 1.5rem;
        }

        .feature-visual {
            margin-bottom: 2rem;
        }
    }

    .hero p,
    section p.lead {
        font-size: 1.25rem;
        line-height: 1.7;
        color: var(--text-muted);
        font-weight: 300;
    }

    /* Enhanced Lists */
    .check-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .check-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.1rem;
    }

    .check-list li::before {
        content: '✓';
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background: var(--primary-dim);
        color: var(--primary);
        border-radius: 50%;
        font-size: 0.8rem;
        font-weight: bold;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        margin-bottom: 4rem;
    }

    /* Solution Visual Wrapper */
    .solution-visual-card {
        position: relative;
        overflow: hidden;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer (Updated for Polish) */
    .main-footer {
        padding: 4rem 0;
        border-top: 1px solid var(--border);
        background: var(--bg-card);
    }

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

    .footer-col h4 {
        color: var(--text-main);
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-links a {
        color: var(--text-dim);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

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

    /* Feature Grid */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        display: inline-block;
        padding: 0.75rem;
        background: rgba(0, 121, 193, 0.1);
        border-radius: 8px;
    }

    /* Testimonials */
    .testimonial-card {
        background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
        border: 1px solid var(--border);
        padding: 2.5rem;
        border-radius: 12px;
        position: relative;
    }

    .testimonial-quote {
        font-size: 1.1rem;
        font-style: italic;
        margin-bottom: 1.5rem;
        color: var(--text-main);
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--text-dim);
    }

    /* Navigation Active States & Buttons (Refined) */
    .nav-links a {
        position: relative;
        padding: 0.5rem 0;
    }

    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary);
    }

    /* Split Hero Layout */
    .hero-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-text-col {
        max-width: 550px;
    }

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

    /* Timeline Visual (About Page) */
    .timeline-visual {
        position: relative;
        padding-left: 2rem;
        margin-top: 2rem;
        border-left: 2px dashed rgba(255, 255, 255, 0.2);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -3.95rem;
        top: 0.3rem;
        width: 14px;
        height: 14px;
        background: var(--bg-dark);
        border: 2px solid var(--primary);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .timeline-item:hover::before {
        background: var(--primary);
        box-shadow: 0 0 15px var(--primary-dim);
    }

    /* Audit Terminal (Regulatory Page) */
    .audit-terminal {
        background: #050505;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 1.5rem;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.8rem;
        color: var(--accent-sage);
        height: 300px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .terminal-header {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .terminal-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
    }

    .dot-red {
        background: #FF5F56;
    }

    .dot-yellow {
        background: #FFBD2E;
    }

    .dot-green {
        background: #69BE28;
    }

    .terminal-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .log-line {
        opacity: 0;
        animation: typeIn 0.5s forwards;
    }

    .log-line span {
        color: var(--text-dim);
    }

    @keyframes typeIn {
        to {
            opacity: 1;
        }
    }

    /* 3D Wireframe Cube (CSS only) */
    .cube-visual {
        width: 200px;
        height: 200px;
        position: relative;
        transform-style: preserve-3d;
        animation: rotateCube 15s infinite linear;
    }

    .cube-face {
        position: absolute;
        width: 200px;
        height: 200px;
        border: 2px solid var(--primary);
        background: rgba(0, 121, 193, 0.1);
        backdrop-filter: blur(2px);
    }

    .face-front {
        transform: rotateY(0deg) translateZ(100px);
    }

    .face-back {
        transform: rotateY(180deg) translateZ(100px);
    }

    .face-right {
        transform: rotateY(90deg) translateZ(100px);
    }

    .face-left {
        transform: rotateY(-90deg) translateZ(100px);
    }

    .face-top {
        transform: rotateX(90deg) translateZ(100px);
    }

    .face-bottom {
        transform: rotateX(-90deg) translateZ(100px);
    }

    @keyframes rotateCube {
        from {
            transform: rotateX(-20deg) rotateY(0deg);
        }

        to {
            transform: rotateX(-20deg) rotateY(360deg);
        }
    }

    /* Code Snippet */
    .code-block {
        background: #0d1117;
        padding: 1.5rem;
        border-radius: 8px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.9rem;
        overflow-x: auto;
        border: 1px solid var(--border);
        color: #e6edf3;
    }

    .code-keyword {
        color: #ff7b72;
    }

    .code-string {
        color: #a5d6ff;
    }

    .code-func {
        color: #d2a8ff;
    }

    /* Responsive Adjustments for new elements */
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;

        }

        .hero-split {
            grid-template-columns: 1fr;
            padding-top: 0;
        }

        .hero-visual-col {
            order: -1;
            margin-bottom: 2rem;
        }

        /* Responsive Timeline Visual */
        .timeline-visual {
            padding-left: 1.5rem;
        }

        .timeline-item {
            padding-left: 1rem;
        }

        .timeline-item::before {
            left: -2.95rem;
        }
    }

    /* Grid Layout Helpers */
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 768px) {

        .features-tall-grid,
        .grid-2 {
            grid-template-columns: 1fr;
        }
    }

    /* UI Component: Balance Scales (Neutrality) */
    .ui-balance {
        position: relative;
        width: 100%;
        max-width: 280px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .balance-beam {
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--text-muted), transparent);
        position: absolute;
        top: 20px;
        transform-origin: center;
        animation: gentleTilt 6s ease-in-out infinite;
    }

    .balance-stalk {
        width: 2px;
        height: 60px;
        background: var(--border);
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .pan-left,
    .pan-right {
        position: absolute;
        top: 20px;
        width: 40px;
        height: 40px;
        border: 1px solid var(--text-muted);
        border-radius: 0 0 20px 20px;
        background: rgba(255, 255, 255, 0.03);
    }

    .pan-left {
        left: 0;
        transform-origin: top center;
        animation: counterTilt 6s ease-in-out infinite;
    }

    .pan-right {
        right: 0;
        transform-origin: top center;
        animation: counterTilt 6s ease-in-out infinite;
    }

    .pan-string {
        position: absolute;
        top: -20px;
        left: 50%;
        height: 20px;
        width: 1px;
        background: var(--text-muted);
        opacity: 0.5;
    }

    @keyframes gentleTilt {

        0%,
        100% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(2deg);
        }

        75% {
            transform: rotate(-2deg);
        }
    }

    @keyframes counterTilt {

        0%,
        100% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(-2deg);
        }

        75% {
            transform: rotate(2deg);
        }
    }

    /* UI Component: Target Scope (Focus) */
    .ui-scope {
        position: relative;
        width: 100%;
        max-width: 240px;
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .scope-circle {
        width: 140px;
        height: 140px;
        border: 1px solid var(--primary-dim);
        border-radius: 50%;
        position: absolute;
        animation: pulseBorder 3s infinite;
    }

    .scope-line-h {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        position: absolute;
    }

    .scope-line-v {
        height: 100%;
        width: 1px;
        background: linear-gradient(180deg, transparent, var(--primary), transparent);
        position: absolute;
    }

    .scope-center {
        width: 6px;
        height: 6px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--accent);
    }

    /* UI Component: Version Sync (Adaptability) */
    .ui-sync-card {
        background: rgba(13, 17, 23, 0.8);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 1rem;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.8rem;
        width: 100%;
        max-width: 260px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .sync-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text-muted);
    }

    .sync-badge {
        color: var(--primary-light);
        font-weight: 700;
    }

    .sync-progress {
        height: 2px;
        width: 100%;
        background: var(--bg-dark);
        position: relative;
        overflow: hidden;
    }

    .sync-bar {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 60%;
        background: var(--primary);
        animation: loadBar 2s ease-in-out infinite;
    }

    @keyframes loadBar {
        0% {
            left: -100%;
        }

        100% {
            left: 100%;
        }
    }

    /* UI Component: Report Doc (Reporting) */
    .ui-doc {
        width: 120px;
        height: 160px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        position: relative;
        padding: 1.2rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .doc-line {
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        width: 100%;
    }

    .doc-check-lg {
        position: absolute;
        bottom: 20px;
        right: -10px;
        width: 32px;
        height: 32px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    /* UI Component: Connected Nodes (Cross-Border) */
    .ui-nodes {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 240px;
        position: relative;
    }

    .nodes-line {
        position: absolute;
        top: 50%;
        left: 10px;
        right: 10px;
        height: 1px;
        background: var(--border);
        z-index: 0;
    }

    .node-dot {
        width: 16px;
        height: 16px;
        background: var(--bg-card);
        border: 2px solid var(--accent-sage);
        border-radius: 50%;
        position: relative;
        z-index: 1;
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.5);
    }

    .node-active {
        background: var(--accent-sage);
        box-shadow: 0 0 15px rgba(45, 139, 139, 0.5);
    }

    /* Command Center (Merged Hub & Value) */
    .command-deck {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 0;
        background: rgba(18, 24, 39, 0.6);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        backdrop-filter: blur(12px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        margin-top: 2rem;
    }

    .control-panel {
        padding: 2rem;
        position: relative;
        border-right: 1px solid var(--border);
    }

    .control-panel:last-child {
        border-right: none;
        background: rgba(0, 0, 0, 0.2);
    }

    .panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1rem;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.8rem;
        color: var(--text-dim);
        letter-spacing: 0.05em;
    }

    .status-indicator {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent-sage);
    }

    .status-dot {
        width: 8px;
        height: 8px;
        background: var(--accent-sage);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--accent-sage);
        animation: pulse 2s infinite;
    }

    .telemetry-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .telemetry-metric {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 6px;
    }

    .telemetry-value {
        font-family: 'Manrope', sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--text-main);
        line-height: 1;
        margin-bottom: 0.25rem;
    }

    .telemetry-label {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.7rem;
        color: var(--text-dim);
        text-transform: uppercase;
    }

    .panel-visual {
        width: 100%;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    /* Responsive Command Deck */
    @media (max-width: 900px) {
        .command-deck {
            grid-template-columns: 1fr;
        }

        .control-panel {
            border-right: none;
            border-bottom: 1px solid var(--border);
        }

        .control-panel:last-child {
            border-bottom: none;
        }
    }

    /* Scale Section Bento Grid */
    .scale-bento-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        grid-template-areas:
            'uptime'
            'latency'
            'scaling'
            'encryption';
    }

    @media (min-width: 900px) {
        .scale-bento-grid {
            grid-template-columns: 1.3fr 1fr;
            grid-template-areas:
                'uptime latency'
                'uptime scaling'
                'encryption encryption';
        }
    }
/* CTA Shield Theme (Phase 22) */
.cta-shield-theme {
    background: linear-gradient(135deg, var(--primary) 0%, #005A8C 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 40px -10px rgba(0, 121, 193, 0.4);
}

/* Background Shield Visual */
.cta-shield-theme::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%) rotate(-10deg);
    width: 500px;
    height: 600px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox=%220 0 24 24%22 fill=%22none%22 xmlns=%22http://www.w3.org/2000/svg%22><path d=%22M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z%22 stroke=%22white%22 stroke-width=%220.5%22 stroke-opacity=%220.1%22 fill=%22none%22/></svg>');
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content sits above background */
.cta-shield-theme > * {
    position: relative;
    z-index: 1;
}

/* Text Overrides - Force White */
.cta-shield-theme h2, 
.cta-shield-theme p, 
.cta-shield-theme .kicker,
.cta-shield-theme .text-primary {
    color: #FFFFFF !important;
}

/* Inverted Buttons */
.cta-shield-theme .btn-primary {
    background: #FFFFFF;
    color: var(--primary);
    border: 1px solid #FFFFFF;
}
.cta-shield-theme .btn-primary:hover {
    background: #F0F9FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-shield-theme .btn-outline {
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.4);
}
.cta-shield-theme .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #FFFFFF;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .cta-shield-theme {
        padding: 2rem;
    }
    .cta-shield-theme::after {
        width: 300px;
        height: 360px;
        right: -20%;
        opacity: 0.5;
    }
}

