/* What Section - Spectacular Quantum Background & Styles */

/* ============================================
   Base Styles
   ============================================ */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #0a0a14;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="6" fill="%2300ff88" opacity="0.8"/><circle cx="16" cy="16" r="3" fill="%236200ea"/></svg>') 16 16, auto;
}

/* ============================================
   SPECTACULAR Animated Background
   ============================================ */

.what-quantum-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1 !important; /* Force behind ALL content */
    overflow: visible; /* Allow overflow for animations */
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(20, 0, 60, 0.3), rgba(5, 0, 20, 0.8), #000000);
}

/* Animated Quantum Grid */
.what-quantum-grid {
    position: fixed !important; /* Changed from absolute to match parent */
    top: 0 !important; /* Changed from -50% - no transform needed */
    left: 0 !important; /* Changed from -50% - no transform needed */
    width: 100% !important; /* Changed from 200% - no transform needed */
    height: 100% !important; /* Changed from 200% - no transform needed */
    background-image:
        linear-gradient(rgba(98, 0, 234, 0.4) 2px, transparent 2px),
        linear-gradient(90deg, rgba(98, 0, 234, 0.4) 2px, transparent 2px),
        linear-gradient(rgba(0, 255, 136, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.25) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    animation: what-grid-flow 30s linear infinite !important;
    opacity: 1 !important; /* MUST be 1 - opacity < 1 creates stacking context! */
    z-index: -1 !important; /* Explicit z-index to force it behind everything */
    visibility: visible !important;
    pointer-events: none !important;
}

/* Animation using background-position instead of transform (transform creates stacking context) */
@keyframes what-grid-flow {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    }
}

/* Floating Orbs Container - Above grid, below content */
.what-quantum-orbs-container {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10 !important; /* Increased from 2 - must be above grid (-1) */
    overflow: visible !important;
    pointer-events: none !important;
    transform: translateZ(0) !important; /* Force GPU layer to respect z-index even with children that have filter/transform */
    will-change: transform !important; /* Hint to browser this is a compositing layer */
}

/* Multiple Quantum Orbs with glow */
.what-quantum-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px); /* Reduced from 60px - was too blurry to see */
    opacity: 0.9; /* Increased from 0.7 for better visibility */
    animation: what-orb-float 20s ease-in-out infinite !important;
    will-change: transform;
    /* No z-index - inherits from parent container at 2 */
    visibility: visible; /* Explicit visibility */
}

.what-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 0, 234, 1), rgba(98, 0, 234, 0.5), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    display: block !important;
}

.what-orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.9), rgba(0, 255, 136, 0.4), transparent);
    top: 50%;
    right: 5%;
    animation-delay: 7s;
    display: block !important;
}

.what-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.8), rgba(0, 188, 212, 0.4), transparent);
    bottom: 10%;
    left: 30%;
    animation-delay: 14s;
    display: block !important;
}

@keyframes what-orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7; /* Increased from 0.4 for visibility */
    }
    25% {
        transform: translate(50px, -80px) scale(1.2);
        opacity: 0.9; /* Increased from 0.6 */
    }
    50% {
        transform: translate(-30px, 40px) scale(0.8);
        opacity: 0.6; /* Increased from 0.3 - was too faint */
    }
    75% {
        transform: translate(40px, 60px) scale(1.1);
        opacity: 0.8; /* Increased from 0.5 */
    }
}

/* Floating Data Particles - Top layer, above everything */
.what-data-particles {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important; /* Changed from hidden to visible */
    z-index: 500 !important; /* Top layer - above all content (increased from 200) */
    pointer-events: none !important;
    transform: translateZ(0) !important; /* Force GPU layer to respect z-index even with children that have transform */
    will-change: transform !important; /* Hint to browser this is a compositing layer */
}

.what-data-particle {
    position: fixed;
    width: 10px;
    height: 10px;
    background: rgba(0, 255, 136, 1);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 136, 1), 0 0 40px rgba(0, 255, 136, 0.8);
    animation: what-particle-drift linear infinite !important;
    /* No z-index - inherits from parent container at 200 */
    pointer-events: none;
    visibility: visible; /* Explicit visibility */
    opacity: 1; /* Ensure full opacity */
}

@keyframes what-particle-drift {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
        opacity: 1; /* Start visible immediately */
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) translateX(80px) scale(0.3) rotate(180deg);
        opacity: 0;
    }
}

/* Stagger particles across screen with random starting positions */
.what-data-particle:nth-child(1) {
    left: 5%;
    top: -10%;
    animation-duration: 18s;
    animation-delay: 0s;
    background: rgba(98, 0, 234, 0.8);
    box-shadow: 0 0 15px rgba(98, 0, 234, 0.8);
}
.what-data-particle:nth-child(2) {
    left: 15%;
    top: -25%;
    animation-duration: 22s;
    animation-delay: 3s;
    background: rgba(0, 255, 136, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}
.what-data-particle:nth-child(3) {
    left: 25%;
    top: -40%;
    animation-duration: 16s;
    animation-delay: 6s;
    background: rgba(0, 188, 212, 0.8);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.8);
}
.what-data-particle:nth-child(4) {
    left: 35%;
    top: -15%;
    animation-duration: 25s;
    animation-delay: 1s;
    background: rgba(255, 0, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}
.what-data-particle:nth-child(5) {
    left: 45%;
    top: -30%;
    animation-duration: 20s;
    animation-delay: 4s;
    background: rgba(98, 0, 234, 0.8);
    box-shadow: 0 0 15px rgba(98, 0, 234, 0.8);
}
.what-data-particle:nth-child(6) {
    left: 55%;
    top: -20%;
    animation-duration: 19s;
    animation-delay: 7s;
    background: rgba(0, 255, 136, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}
.what-data-particle:nth-child(7) {
    left: 65%;
    top: -35%;
    animation-duration: 24s;
    animation-delay: 2s;
    background: rgba(0, 188, 212, 0.8);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.8);
}
.what-data-particle:nth-child(8) {
    left: 75%;
    top: -12%;
    animation-duration: 17s;
    animation-delay: 5s;
    background: rgba(255, 0, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}
.what-data-particle:nth-child(9) {
    left: 85%;
    top: -28%;
    animation-duration: 21s;
    animation-delay: 8s;
    background: rgba(98, 0, 234, 0.8);
    box-shadow: 0 0 15px rgba(98, 0, 234, 0.8);
}
.what-data-particle:nth-child(10) {
    left: 95%;
    top: -18%;
    animation-duration: 23s;
    animation-delay: 0.5s;
    background: rgba(0, 255, 136, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

/* ============================================
   Custom Scrollbar
   ============================================ */

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(98, 0, 234, 0.6) rgba(20, 20, 30, 0.8);
}

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: rgba(20, 20, 30, 0.9);
    border-radius: 10px;
    border: 2px solid rgba(98, 0, 234, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(98, 0, 234, 0.9), rgba(0, 255, 136, 0.7));
    border-radius: 10px;
    border: 2px solid rgba(20, 20, 30, 0.8);
    box-shadow: 0 0 10px rgba(98, 0, 234, 0.5);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(98, 0, 234, 1), rgba(0, 255, 136, 0.9));
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, rgba(0, 255, 136, 1), rgba(98, 0, 234, 0.9));
}

::-webkit-scrollbar-corner {
    background: rgba(20, 20, 30, 0.8);
}

/* ============================================
   3D Quantum Data Flow Cursor
   ============================================ */

.what-cursor-trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999 !important;
    overflow: hidden;
}

.what-cursor-trail-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.what-cursor-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: what-particle-fade 1.5s ease-out forwards !important;
    box-shadow: 0 0 10px currentColor;
}

@keyframes what-particle-fade {
    0% {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.2) translateZ(-50px);
    }
}

.what-data-stream {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--data-color, #00ff88);
    opacity: 0.8;
    pointer-events: none;
    animation: what-stream-fall 2s linear forwards !important;
    text-shadow: 0 0 5px currentColor;
}

@keyframes what-stream-fall {
    0% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100px) rotateX(360deg);
    }
}

/* ============================================
   Page Structure
   ============================================ */

.what-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 100;
    background: rgba(10, 10, 20, 0.01); /* Minimal background to force paint layer */
    isolation: isolate; /* Create isolated stacking context */
    transform: translateZ(0); /* Force GPU layer */
    will-change: transform; /* Hint browser to optimize */
}

/* ============================================
   Hero Section with Logo
   ============================================ */

.what-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.15), rgba(0, 255, 136, 0.1));
    border-radius: 20px;
    margin-bottom: 3rem;
    /* NO position - defaults to static like other content sections */
    overflow: hidden;
    border: 2px solid rgba(98, 0, 234, 0.3);
    box-shadow: 0 10px 40px rgba(98, 0, 234, 0.3);
    /* NO z-index - inherits stacking from parent .what-container */
    /* NO isolation - not needed */
    /* NO transform - was causing stacking issues */
    backdrop-filter: blur(10px); /* Same as content-section for consistency */
}

/* Removed ::before pseudo-element and hero-pulse animation - were causing stacking issues */

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    /* NO z-index - not needed, parent handles stacking */
}

.logo-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    box-shadow:
        0 0 30px rgba(98, 0, 234, 0.6),
        0 0 60px rgba(0, 255, 136, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(98, 0, 234, 0.5);
    animation: logo-glow 3s ease-in-out infinite !important;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes logo-glow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(98, 0, 234, 0.6),
            0 0 60px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow:
            0 0 50px rgba(98, 0, 234, 0.9),
            0 0 100px rgba(0, 255, 136, 0.6),
            0 0 150px rgba(0, 188, 212, 0.3);
    }
}

.what-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6200ea, #00ff88, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    /* NO position/z-index - not needed without ::before pseudo-element */
    text-shadow: 0 0 30px rgba(98, 0, 234, 0.5);
}

.what-hero-subtitle {
    font-size: 1.4rem;
    color: #b0b0ff;
    /* NO position/z-index - not needed */
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Table of Contents */
.toc-container {
    background: rgba(20, 20, 30, 0.9);
    border: 2px solid rgba(98, 0, 234, 0.4);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(98, 0, 234, 0.2);
}

.toc-title {
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.8rem;
}

.toc-list a {
    color: #b0b0ff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.toc-list a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #6200ea;
    transition: transform 0.3s ease;
}

.toc-list a:hover {
    color: #00ff88;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.toc-list a:hover::before {
    transform: translateX(5px);
    color: #00ff88;
}

/* Content Sections */
.content-section {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(98, 0, 234, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.content-section:hover {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.2rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(98, 0, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.section-content h3 {
    color: #b0b0ff;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section-content h4 {
    color: #9090dd;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.section-content p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.section-content ul,
.section-content ol {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.section-content li {
    margin-bottom: 0.6rem;
}

.section-content code {
    background: rgba(98, 0, 234, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #00ff88;
    font-size: 0.95em;
}

.section-content pre {
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid rgba(98, 0, 234, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.section-content pre code {
    background: none;
    padding: 0;
    color: #00ff88;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.3), rgba(0, 255, 136, 0.15));
    border: 2px solid rgba(98, 0, 234, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(98, 0, 234, 0.2);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #00ff88;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.stat-label {
    color: #b0b0b0;
    font-size: 1rem;
}

/* PQ-OIP Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pillar-card {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.95), rgba(30, 30, 45, 0.9));
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #6200ea, #00ff88);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
}

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

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pillar-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Algorithm Grid */
.algorithm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.algorithm-card {
    background: rgba(30, 30, 40, 0.9);
    border: 1px solid rgba(98, 0, 234, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.algorithm-card:hover {
    border-color: rgba(0, 255, 136, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.algorithm-name {
    font-size: 1.3rem;
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.algorithm-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Feature Table */
.feature-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(20, 20, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.feature-table thead {
    background: rgba(98, 0, 234, 0.4);
}

.feature-table th {
    color: #00ff88;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.feature-table td {
    color: #c0c0c0;
    padding: 1rem;
    border-top: 1px solid rgba(98, 0, 234, 0.2);
}

.feature-table tr:hover {
    background: rgba(0, 255, 136, 0.08);
}

/* Footer Styles */
.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    color: #808080;
}

.footer-copyright a {
    color: #b0b0ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

/* Copyright Card */
.copyright-card {
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.2), rgba(0, 255, 136, 0.1));
    border: 2px solid rgba(98, 0, 234, 0.4);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(98, 0, 234, 0.25);
    transition: all 0.3s ease;
}

.copyright-card:hover {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.3);
    transform: translateY(-3px);
}

.copyright-card p {
    color: #b0b0ff;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.copyright-card a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.4);
}

.copyright-card a:hover {
    color: #00bcd4;
    text-shadow: 0 0 15px rgba(0, 188, 212, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-image {
        width: 100px;
        height: 100px;
    }

    .what-hero h1 {
        font-size: 2.5rem;
    }

    .what-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .algorithm-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility - Animations ALWAYS enabled (removed prefers-reduced-motion override) */
/* Users can disable animations via browser settings if needed, but our animations will still attempt to run */

/* Print Styles */
@media print {
    .what-cursor-trail-container,
    .what-quantum-bg-container,
    .what-hero::before {
        display: none;
    }

    .content-section {
        page-break-inside: avoid;
    }
}
