        /* ========== CUSTOM PROPERTIES ========== */
        :root {
            --bg-primary: #07090e;
            --bg-secondary: #0c1018;
            --bg-tertiary: #111724;
            --bg-card: #0e1320;
            --text-primary: #e8ecf4;
            --text-secondary: #8b95a8;
            --text-muted: #515c70;
            --accent-cyan: #2df5c5;
            --accent-cyan-dim: #1a9e7e;
            --accent-cyan-glow: rgba(45, 245, 197, 0.15);
            --accent-amber: #f5a623;
            --accent-amber-dim: #b87a1a;
            --accent-amber-glow: rgba(245, 166, 35, 0.1);
            --border-subtle: rgba(255, 255, 255, 0.05);
            --border-accent: rgba(45, 245, 197, 0.15);
            --font-display: 'Instrument Serif', Georgia, serif;
            --font-body: 'DM Sans', system-ui, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
        }

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

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-cyan-dim) var(--bg-secondary);
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            font-weight: 300;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        ::selection {
            background: rgba(45, 245, 197, 0.25);
            color: #fff;
        }

        /* ========== NOISE OVERLAY ========== */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
        }

        /* ========== NAVIGATION ========== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 2rem;
            transition: all 0.5s var(--ease-out-expo);
        }

        nav.scrolled {
            background: rgba(7, 9, 14, 0.85);
            backdrop-filter: blur(20px) saturate(1.2);
            -webkit-backdrop-filter: blur(20px) saturate(1.2);
            border-bottom: 1px solid var(--border-subtle);
        }

        .nav-inner {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .nav-logo-img {
            height: 80px;
            max-height: 80px;
            width: auto;
            max-width: 200px;
            display: block;
            object-fit: contain;
        }

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

        .nav-links a {
            font-size: 0.82rem;
            font-weight: 400;
            color: var(--text-secondary);
            text-decoration: none;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-cyan);
            transition: width 0.4s var(--ease-out-expo);
        }

        .nav-links a:hover { color: var(--text-primary); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            font-size: 0.8rem !important;
            font-weight: 500 !important;
            color: var(--accent-cyan) !important;
            border: 1px solid var(--border-accent);
            padding: 0.5rem 1.25rem;
            border-radius: 2px;
            transition: all 0.3s ease !important;
        }

        .nav-cta:hover {
            background: rgba(45, 245, 197, 0.08);
            border-color: var(--accent-cyan);
        }

        .nav-cta::after { display: none !important; }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 0 2rem;
        }

        /* Canvas graph */
        #heroCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        /* Radial gradient atmosphere */
        .hero-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.12;
            animation: glowShift 12s ease-in-out infinite alternate;
            pointer-events: none;
        }

        .hero-glow--1 {
            background: var(--accent-cyan);
            top: -200px;
            right: -200px;
        }

        .hero-glow--2 {
            background: var(--accent-amber);
            bottom: -300px;
            left: -200px;
            opacity: 0.06;
            animation-delay: -6s;
        }

        @keyframes glowShift {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-40px, 30px) scale(1.15); }
        }

        /* Grid lines */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(45, 245, 197, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(45, 245, 197, 0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1320px;
            margin: 0 auto;
            width: 100%;
            padding-top: 72px;
        }

        .hero-label {
            font-family: var(--font-mono);
            font-size: 0.72rem;
            font-weight: 300;
            color: var(--accent-cyan);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .hero-label::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 1px;
            background: var(--accent-cyan);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 7vw, 6.5rem);
            font-weight: 400;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin-bottom: 2rem;
            max-width: 900px;
        }

        .hero-title em {
            font-style: italic;
            color: var(--accent-cyan);
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            font-weight: 300;
            color: var(--text-secondary);
            max-width: 580px;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--bg-primary);
            background: var(--accent-cyan);
            border: none;
            padding: 0.9rem 2rem;
            cursor: pointer;
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s var(--ease-out-expo);
        }

        .btn-primary:hover::before { transform: translateX(100%); }

        .btn-primary:hover {
            box-shadow: 0 0 30px rgba(45, 245, 197, 0.25), 0 4px 20px rgba(45, 245, 197, 0.15);
            transform: translateY(-1px);
        }

        .button-icon {
            font-size: 0.8rem;
        }

        .button-icon--sm {
            font-size: 0.75rem;
        }

        .button-icon--default {
            font-size: 0.8rem;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--text-secondary);
            background: none;
            border: 1px solid var(--border-subtle);
            padding: 0.9rem 2rem;
            cursor: pointer;
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: all 0.4s var(--ease-out-expo);
        }

        .btn-ghost:hover {
            color: var(--text-primary);
            border-color: rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.03);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            font-family: var(--font-mono);
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            animation: scrollBounce 2.5s ease-in-out infinite;
            z-index: 2;
        }

        .scroll-indicator .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--text-muted), transparent);
        }

        @keyframes scrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        /* ========== SECTION BASE ========== */
        section {
            padding: 8rem 2rem;
            position: relative;
        }

        .section-inner {
            max-width: 1320px;
            margin: 0 auto;
        }

        .section-label {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            font-weight: 300;
            color: var(--accent-cyan);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .section-label::before {
            content: '';
            display: inline-block;
            width: 16px;
            height: 1px;
            background: var(--accent-cyan);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 400;
            line-height: 1.15;
            letter-spacing: -0.01em;
            margin-bottom: 1.25rem;
        }

        .section-title-accent {
            font-family: var(--font-display);
            color: var(--accent-cyan);
        }

        .section-subtitle {
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.8;
        }

        /* ========== APPROACH SECTION ========== */
        #approach {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .approach-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
            align-items: start;
        }

        .approach-text p {
            color: var(--text-secondary);
            font-weight: 300;
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

        .approach-text strong {
            color: var(--text-primary);
            font-weight: 500;
        }

        .approach-pillars {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .pillar {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.5rem;
            background: var(--bg-primary);
            border: 1px solid var(--border-subtle);
            transition: all 0.5s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }

        .pillar::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent-cyan);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .pillar:hover {
            background: var(--bg-tertiary);
            border-color: var(--border-accent);
        }

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

        .pillar-number {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--accent-cyan-dim);
            min-width: 24px;
            padding-top: 2px;
        }

        .pillar-content h4 {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 0.35rem;
        }

        .pillar-content p {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }

        /* ========== CAPABILITIES ========== */
        #capabilities { overflow: hidden; }

        .capabilities-header { margin-bottom: 4rem; }

        .cap-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border-subtle);
            border: 1px solid var(--border-subtle);
        }

        .cap-card {
            background: var(--bg-primary);
            padding: 2.75rem 2.25rem;
            position: relative;
            transition: all 0.5s var(--ease-out-expo);
            overflow: hidden;
        }

        .cap-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .cap-card:hover { background: var(--bg-tertiary); }
        .cap-card:hover::after { opacity: 1; }

        .cap-icon {
            font-size: 1.25rem;
            color: var(--accent-cyan);
            margin-bottom: 1.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border: 1px solid var(--border-accent);
            background: rgba(45, 245, 197, 0.03);
        }

        .cap-card h3 {
            font-family: var(--font-body);
            font-size: 1.05rem;
            font-weight: 500;
            margin-bottom: 0.85rem;
            line-height: 1.35;
        }

        .cap-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            font-weight: 300;
            line-height: 1.75;
        }

        /* ========== PRODUCT ========== */
        #product {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .product-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            margin-top: 4rem;
            align-items: start;
        }

        .product-intro .section-title { margin-bottom: 1.5rem; }

        .product-pipeline {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .pipeline-step {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.5rem;
            background: var(--bg-primary);
            border: 1px solid var(--border-subtle);
            transition: all 0.5s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }

        .pipeline-step::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent-amber);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .pipeline-step:hover {
            background: var(--bg-tertiary);
            border-color: rgba(245, 166, 35, 0.15);
        }

        .pipeline-step:hover::before { opacity: 1; }

        .pipeline-number {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--accent-amber-dim);
            min-width: 24px;
            padding-top: 2px;
        }

        .pipeline-step h4 {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 0.35rem;
        }

        .pipeline-step p {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }

        .product-cta {
            margin-top: 2.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .product-note {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 0.02em;
        }

        /* ========== USE CASES ========== */
        #applications {
            overflow: hidden;
        }

        .applications-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
            margin-top: 4rem;
            align-items: start;
        }

        .applications-intro .section-title { margin-bottom: 1.5rem; }

        .use-cases {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .use-case {
            display: grid;
            grid-template-columns: 40px 1fr;
            gap: 1.5rem;
            padding: 1.75rem 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all 0.4s ease;
            align-items: start;
        }

        .use-case:first-child { padding-top: 0; }
        .use-case:last-child { border-bottom: none; }

        .use-case-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-amber);
            font-size: 0.9rem;
            border: 1px solid rgba(245, 166, 35, 0.15);
            background: rgba(245, 166, 35, 0.04);
            transition: all 0.4s ease;
        }

        .use-case:hover .use-case-icon {
            border-color: rgba(245, 166, 35, 0.3);
            background: rgba(245, 166, 35, 0.08);
            box-shadow: 0 0 20px rgba(245, 166, 35, 0.08);
        }

        .use-case h4 {
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 0.35rem;
        }

        .use-case p {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }

        /* ========== RESEARCH ========== */
        #research { overflow: hidden; }

        .research-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .research-block {
            padding: 2.5rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            position: relative;
            transition: all 0.5s var(--ease-out-expo);
        }

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

        .research-block h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
        }

        .research-block p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 300;
            line-height: 1.85;
            margin-bottom: 1.5rem;
        }

        .method-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .method-list li {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.65rem;
            letter-spacing: 0.02em;
        }

        .method-list li::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--accent-cyan);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Stats bar */
        .stats-bar {
            margin-top: 4rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border-subtle);
            border: 1px solid var(--border-subtle);
        }

        .stat {
            background: var(--bg-primary);
            padding: 2rem 1.5rem;
            text-align: center;
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 2.25rem;
            color: var(--accent-cyan);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-family: var(--font-mono);
            font-size: 0.68rem;
            color: var(--text-muted);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* ========== CONTACT / CTA ========== */
        #contact {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            text-align: center;
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .contact-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.06;
            pointer-events: none;
        }

        .contact-glow--1 {
            background: var(--accent-cyan);
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-inner .section-label { justify-content: center; }
        .cta-inner .section-title { margin-bottom: 1rem; }

        .cta-inner .section-subtitle {
            max-width: 500px;
            margin: 0 auto 2.5rem;
        }

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

        .contact-detail {
            margin-top: 3rem;
            font-family: var(--font-mono);
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .contact-detail a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-detail a:hover { color: var(--text-primary); }

        /* ========== FOOTER ========== */
        footer {
            padding: 2.5rem 2rem;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-inner {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-left {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.05em;
        }

        .footer-right {
            display: flex;
            gap: 1.5rem;
        }

        .footer-right a {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color 0.3s ease;
            text-decoration: none;
        }

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

        /* ========== SCROLL REVEAL ========== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }

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

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .approach-grid,
            .applications-layout,
            .product-layout,
            .research-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .cap-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-bar { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            section { padding: 5rem 1.25rem; }

            .nav-links {
                display: none;
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(7, 9, 14, 0.97);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid var(--border-subtle);
            }

            .nav-links.open { display: flex; }
            .mobile-toggle { display: block; }
            .cap-grid { grid-template-columns: 1fr; }

            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }

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

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .footer-inner {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .approach-grid,
            .applications-layout,
            .product-layout,
            .research-layout {
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .stats-bar { grid-template-columns: 1fr; }
        }

        .page-error {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .noscript-message {
            padding-top: 6rem;
        }
