/* 
   AI TASK IQ - HYBRID V1 (OILERS THEME)
   Colors: Navy Blue (#041E42), Neon Orange (#FF4C00), Silver (#A2AAAD)
   Font: Inter + JetBrains Mono 
*/

/* Utilities */
.hidden {
    display: none !important;
}

:root {
    --bg-dark: #041E42;
    /* Oilers Midnight Navy */
    --glass-panel: rgba(4, 30, 66, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-orange: #FF4C00;
    /* Oilers Neon Orange */
    --accent-green: #00ff88;
    --text-white: #ffffff;
    --text-gray: #A2AAAD;
    /* Oilers Silver */
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

#nav-toggle {
    display: none !important;
}

.nav-toggle-label {
    display: none;
}

/* ROI CALCULATOR ENHANCEMENTS */
.reclaimable-stack {
    margin-top: 25px !important;
    border: none !important;
    align-items: baseline !important;
}

.label-stack {
    display: flex;
    flex-direction: column;
}

.highlight-orange {
    color: var(--accent-orange) !important;
    opacity: 1 !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
}

.calc-res-sub {
    font-size: 0.6rem;
    opacity: 0.4;
}

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

img,
video {
    max-width: 100%;
    height: auto;
}

body {
    background-color: #020f22;
    /* Deep Space Navy */
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Background Effects */
.bg-glow-orb {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 76, 0, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: orb-float 20s infinite alternate;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
    z-index: 999;
}

/* Glass Components */
.glass-nav {
    background: rgba(4, 30, 66, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.glass-panel {
    background: var(--glass-panel);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Typography & Links */
.logo {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 1.2rem;
    color: var(--text-white);
    text-decoration: none;
}

.blink {
    animation: blink 1s infinite;
    color: var(--accent-orange);
}

/* Mission Success Panel */
#success-panel {
    display: none !important;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

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

/* ACTIVE LINK STYLE - UPDATED TO ORANGE */
.nav-links a.active {
    color: var(--accent-orange);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 76, 0, 0.4);
}

/* Buttons */
.cta-button-small {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--text-white) !important;
}

.cta-button-small:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white !important;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(90deg, #FF4C00, #ff8f00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 76, 0, 0.3);
}

.highlight {
    color: var(--accent-orange);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Grid Section - Standardized Width */
.grid-section {
    padding: 5rem 3rem;
    /* Matches process-section padding */
    max-width: 1200px;
    /* Matches process-section width */
    margin: 0 auto;
}

/* CTA Buttons */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Column Uniform Grid (3x2) */
    gap: 2rem;
}

/* Remove the span override */
.bento-grid>.bento-card:nth-last-child(1),
.bento-grid>.bento-card:nth-last-child(2) {
    grid-column: span 1;
}

.bento-card {
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: row;
    /* Horizontal Layout */
    align-items: flex-start;
    gap: 1.5rem;
    /* Gap between Icon and Text */
    padding: 2rem;
    height: 100%;
}

.card-left-col {
    flex-shrink: 0;
}

.card-right-col {
    flex-grow: 1;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 0;
    /* Override old margin */
}

.bento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: white;
    font-weight: 700;
}

.bento-card p {
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Checkmark Style (Smaller/Subtle) */
.card-check {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    background: rgba(39, 201, 63, 0.2);
    color: #27c93f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SECTOR MICRO-CARDS */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Rocket Animation (Straight Up + Accelerate) */
.rocket-container {
    position: relative;
    height: 140px;
    /* Taller runway */
    margin-bottom: 0rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

.rocket-icon {
    font-size: 3.5rem;
    /* Larger Rocket */
    filter: drop-shadow(0 0 15px var(--accent-orange));
    animation: rocket-launch 2.5s ease-in infinite;
    z-index: 2;
    position: relative;
    /* Emoji points 45deg naturally, so we correct it to point UP */
    transform-origin: center;
}

@keyframes rocket-launch {
    0% {
        transform: translateY(0) rotate(-45deg) scale(1);
    }

    10% {
        /* Idle Rumble with Rotation preserved */
        transform: translate(1px, 1px) rotate(-44deg) scale(1);
    }

    15% {
        transform: translate(-1px, -1px) rotate(-46deg) scale(1);
    }

    100% {
        /* Launch straight up, keeping the angle */
        transform: translateY(-400px) rotate(-45deg) scale(0.8);
    }
}

/* Exhaust / Fire / Smoke System */
.rocket-exhaust {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    z-index: 1;
}

.exhaust-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
}

/* FIRE CORE (Intense) */
.exhaust-particle.fire {
    background: radial-gradient(circle, #fff, #ffae00, #ff4c00);
    width: 25px;
    height: 25px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: exhaust-fire 0.1s linear infinite alternate;
    filter: blur(2px);
}

/* SMOKE (Volumetric) */
.exhaust-particle.smoke {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(150, 150, 150, 0));
    width: 30px;
    height: 30px;
    top: 10px;
    filter: blur(5px);
    animation: exhaust-smoke 2.5s ease-out infinite;
}

/* Randomized Smoke Trails */
.smoke-1 {
    animation-delay: 0.0s;
    left: -15px;
    transform-origin: top left;
}

.smoke-2 {
    animation-delay: 0.2s;
    left: 5px;
    transform-origin: top right;
}

.smoke-3 {
    animation-delay: 0.4s;
    left: -5px;
}

.smoke-4 {
    animation-delay: 0.6s;
    left: 15px;
}

.smoke-5 {
    animation-delay: 0.8s;
    left: -10px;
}

.smoke-6 {
    animation-delay: 1.0s;
    left: 10px;
}

.smoke-7 {
    animation-delay: 1.2s;
    left: 0px;
}

.smoke-8 {
    animation-delay: 1.4s;
    left: -20px;
}

.smoke-9 {
    animation-delay: 1.6s;
    left: 20px;
}

@keyframes exhaust-fire {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.9;
    }

    100% {
        transform: translateX(-50%) scale(1.3);
        opacity: 1;
        bottom: -15px;
    }
}

@keyframes exhaust-smoke {
    0% {
        transform: scale(0.2);
        opacity: 0.8;
        top: 0;
    }

    100% {
        top: 200px;
        /* Drift down */
        transform: scale(4);
        /* Expand massive */
        opacity: 0;
    }
}

.sector-card {
    background: rgba(4, 30, 66, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.sector-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    background: rgba(255, 76, 0, 0.1);
}

.sector-icon {
    font-size: 1.5rem;
}

.sector-info h4 {
    color: white;
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.sector-info p {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin: 0;
}

/* Base Layout & Utilities */
.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 76, 0, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 76, 0, 0.6);
}

.cta-button-ghost {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    margin-left: 1rem;
    transition: 0.3s;
}

.cta-button-ghost:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Terminal Visual */
.hero-visual {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 400px;
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    z-index: 5;
    transform: rotateX(10deg) rotateY(-10deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.8);
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

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

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-title {
    margin-left: auto;
    color: #666;
}

.line {
    margin-bottom: 6px;
}

.prompt {
    color: var(--accent-orange);
    margin-right: 8px;
}

.success {
    color: #27c93f;
}

.indent {
    margin-left: 20px;
    color: #888;
    border-left: 1px solid #333;
    padding-left: 10px;
}

/* Animations */
@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes orb-float {
    from {
        transform: translate(0, 0);
    }


    to {
        transform: translate(50px, 50px);
    }
}

/* ROI Section Styles */
.roi-section {
    padding: 6rem 1rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.roi-container {
    margin-top: 3rem;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
}

.table-header {
    font-weight: 700;
    color: var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.table-row:last-child {
    border-bottom: none;
}

.col-metric {
    font-weight: 600;
    color: white;
}

.col-human,
.col-ai {
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

/* Status Badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.status-badge.good {
    background: rgba(0, 255, 128, 0.15);
    color: #00ff80;
    border: 1px solid rgba(0, 255, 128, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.1);
}

.status-badge.bad {
    background: rgba(255, 76, 0, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 76, 0, 0.3);
}

.status-badge.warn {
    background: rgba(255, 200, 0, 0.15);
    color: #ffc800;
    border: 1px solid rgba(255, 200, 0, 0.3);
}

.status-badge.infinite {
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.2), rgba(0, 100, 255, 0.2));
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    }
}

@media (max-width: 768px) {

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .col-human,
    .col-ai {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .col-human::before {
        content: "HUMAN:";
        font-size: 0.7rem;
        color: var(--text-gray);
    }

    .col-ai::before {
        content: "AI AGENT:";
        font-size: 0.7rem;
        color: var(--text-gray);
    }

    .table-header {
        display: none;
    }

    /* Form Stacking on Mobile */
    .protocol-container {
        padding: 1rem;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .form-group label {
        width: 100%;
        margin-bottom: 0.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button-ghost {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .cta-button-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Utility Classes (Refactored from Inline Styles) */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-8 {
    margin-top: 8rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-title {
    font-size: 3rem;
}

.header-subtitle {
    color: var(--text-gray);
    max-width: 600px;
    margin: 1rem auto;
}

.video-overlay-text {
    margin-top: 150px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-orange);
    letter-spacing: 3px;
    opacity: 0.8;
}

.sector-section-padding {
    padding-bottom: 5rem;
}

.protocol-container {
    max-width: 600px;
    margin: 8rem auto 4rem auto;
    padding: 0 20px;
}

.roi-flasher {
    text-align: center;
    margin-bottom: 2rem;
    background: rgba(255, 76, 0, 0.15);
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--accent-orange);
}

.status-text {
    color: var(--accent-orange);
    font-weight: 700;
    font-family: var(--font-mono);
}

/* ROI CALCULATOR STYLES */
.roi-calc-card {
    background: var(--glass-panel);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.roi-calc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.calc-title {
    margin-top: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 40px;
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
}

.calc-title::before {
    content: '>';
    color: var(--accent-orange);
    margin-right: 15px;
    font-weight: bold;
}

.calc-input-group {
    margin-bottom: 35px;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.label-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-mono);
}

.label-val {
    color: var(--accent-orange);
    font-weight: bold;
    font-family: var(--font-mono);
}

.roi-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    outline: none;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent-orange);
    border: 3px solid #041E42;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 76, 0, 0.4);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.calc-res-label {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.calc-res-val {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-mono);
}

.roi-highlight {
    font-size: 2rem;
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.calc-footer {
    margin-top: 30px;
    font-size: 0.65rem;
    opacity: 0.3;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-mono);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.full-width {
    width: 100%;
}

.flex-center {
    justify-content: center;
}

.status-msg {
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    min-height: 1.5em;
}

/* --- Responsive Design Breakpoints --- */

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wide-card {
        grid-column: span 2;
    }

    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .wide-card {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Fluid Media */
    video,
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Hero Layout Refactor */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 3rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        max-width: 450px;
        margin: 3rem auto 0;
        bottom: auto;
        right: auto;
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 1rem !important;
    }

    /* Mobile Navigation */
    .nav-toggle-label {
        display: block;
        z-index: 2000;
        cursor: pointer;
        position: relative;
        width: 30px;
        height: 20px;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--text-white);
        height: 2px;
        width: 100%;
        border-radius: 2px;
        position: absolute;
        transition: all .3s ease-in-out;
    }

    .nav-toggle-label span {
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-toggle-label span::before {
        content: '';
        top: -8px;
    }

    .nav-toggle-label span::after {
        content: '';
        bottom: -8px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #041E42;
        /* Opaque navy for better visibility */
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right .4s ease-in-out;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-toggle:checked~.nav-links {
        right: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked~.nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    /* Form UX */
    .protocol-container {
        padding: 1rem;
        margin-top: 6rem;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .form-group label {
        width: 100%;
        margin-bottom: 0.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
    }

    /* Buttons */
    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-button-ghost {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .cta-button-primary {
        width: 100%;
        justify-content: center;
    }

    .glass-nav {
        padding: 1rem;
    }

    /* Table Responsiveness */
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .col-human,
    .col-ai {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .col-human::before {
        content: "HUMAN:";
        font-size: 0.7rem;
        color: var(--text-gray);
    }

    .col-ai::before {
        content: "AI AGENT:";
        font-size: 0.7rem;
        color: var(--text-gray);
    }

    .table-header {
        display: none;
    }
}

/* --- End of Responsive Design --- */