/* ============================================
   AIICE.IO — Autonomous Intelligence Interface
   Burgundy-Cream Dashboard Monitoring System
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1A0A10;
    --bg-panel: #2D1520;
    --cream-primary: #F2E6D9;
    --cream-secondary: #C9A882;
    --burgundy-core: #8B1A2B;
    --burgundy-deep: #3D0F1E;
    --signal-red: #D4344A;
    --grain-opacity: 0.04;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--burgundy-core) var(--bg-primary);
}

body {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: var(--cream-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* --- Film Grain Overlay --- */
#grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: var(--grain-opacity);
    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='1'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    animation: grainShift 0.33s steps(4) infinite;
}

@keyframes grainShift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-2px, 3px); }
    50% { transform: translate(3px, -1px); }
    75% { transform: translate(-1px, -3px); }
    100% { transform: translate(0, 0); }
}

/* --- Halftone Dot Field Background --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, var(--cream-primary) 0.5px, transparent 0.5px);
    background-size: 8px 8px;
    opacity: 0.06;
}

/* --- Deck Transition Overlay --- */
#deck-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* --- Deck Sections --- */
.deck {
    min-height: 100vh;
    width: 100%;
    position: relative;
    border-bottom: 2px solid var(--burgundy-deep);
    overflow: hidden;
}

/* Scroll-triggered visibility */
.deck {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.deck.visible {
    opacity: 1;
}

.deck-boot {
    opacity: 1;
}

/* --- DECK 1: Boot Sequence --- */
.deck-boot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    position: relative;
}

.boot-screen {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ripple container for boot */
.ripple-container {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ripple-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--burgundy-core);
    border-radius: 50%;
    opacity: 0;
}

/* Boot ripple rings */
#boot-ripple .ripple-ring-1 {
    width: 20px;
    height: 20px;
    animation: bootRipple 2.4s cubic-bezier(0.25, 0.1, 0.25, 1.0) 0.6s forwards;
}

#boot-ripple .ripple-ring-2 {
    width: 20px;
    height: 20px;
    animation: bootRipple 2.4s cubic-bezier(0.25, 0.1, 0.25, 1.0) 1.0s forwards;
}

#boot-ripple .ripple-ring-3 {
    width: 20px;
    height: 20px;
    animation: bootRipple 2.4s cubic-bezier(0.25, 0.1, 0.25, 1.0) 1.4s forwards;
}

@keyframes bootRipple {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Site Title */
.site-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 72px;
    color: var(--cream-primary);
    letter-spacing: 0.15em;
    position: relative;
    z-index: 5;
    text-shadow: 1px 1px 0 var(--cream-primary);
    margin-bottom: 16px;
}

.title-letter {
    display: inline-block;
    opacity: 0;
    animation: letterFadeIn 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
}

.title-letter[data-index="0"] { animation-delay: 1.8s; }
.title-letter[data-index="1"] { animation-delay: 1.95s; }
.title-letter[data-index="2"] { animation-delay: 2.1s; }
.title-letter[data-index="3"] { animation-delay: 2.25s; }
.title-letter[data-index="4"] { animation-delay: 2.4s; }

@keyframes letterFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Subtitle */
.subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--cream-secondary);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 5;
    min-height: 1.6em;
    opacity: 0;
    animation: subtitleReveal 0.3s ease forwards;
    animation-delay: 2.8s;
}

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

/* Boot Dashboard */
#boot-dashboard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    animation: dashboardFadeIn 0.8s cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
    animation-delay: 4.5s;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
    padding: 2px;
    pointer-events: none;
}

@keyframes dashboardFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* --- Panel Base Styles --- */
.panel {
    background-color: var(--bg-panel);
    border: 2px solid var(--burgundy-deep);
    padding: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.0), box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(139, 26, 43, 0.25);
}

.panel-label {
    font-family: 'Rokkitt', serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream-secondary);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--burgundy-deep);
}

.panel-value {
    font-family: 'Rokkitt', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--cream-primary);
}

/* --- Status Panels --- */
.status-panel {
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status-panel .panel-value {
    font-size: 28px;
}

/* --- Alert Panels --- */
.alert-panel {
    background-color: var(--burgundy-core);
}

.alert-panel .panel-label {
    color: var(--cream-primary);
    border-bottom-color: rgba(242, 230, 217, 0.3);
}

.alert-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream-primary);
    animation: alertPulse 2s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

@keyframes alertPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.alert-active {
    background-color: var(--burgundy-core);
    animation: alertBgPulse 3s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

@keyframes alertBgPulse {
    0%, 100% { background-color: var(--burgundy-core); }
    50% { background-color: #6B1422; }
}

/* --- Feed Panels --- */
.feed-panel {
    background-color: var(--bg-primary);
}

.feed-content {
    height: calc(100% - 30px);
    overflow: hidden;
    position: relative;
}

.feed-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(transparent, var(--bg-primary));
    z-index: 2;
}

.feed-scroll {
    animation: feedScrollUp 20s linear infinite;
}

.feed-scroll-slow {
    animation: feedScrollUp 30s linear infinite;
}

.feed-scroll-dying {
    animation: feedScrollUp 40s linear infinite;
}

@keyframes feedScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.feed-scroll p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--cream-secondary);
    padding: 4px 0;
    border-bottom: 1px solid rgba(61, 15, 30, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Scope Panels --- */
.scope-panel {
    background-color: var(--bg-primary);
    position: relative;
}

.scope-vis {
    position: relative;
    width: 100%;
    height: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scope-vis .ripple-ring {
    position: absolute;
    border: 1px solid var(--burgundy-core);
    border-radius: 50%;
}

/* Staggered independent ripple timings - polyrhythmic */
.scope-vis .scope-ring-1 {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    animation: scopeRipple1 3.7s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

.scope-vis .scope-ring-2 {
    width: 50px;
    height: 50px;
    opacity: 0.6;
    animation: scopeRipple2 4.3s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

.scope-vis .scope-ring-3 {
    width: 70px;
    height: 70px;
    opacity: 0.5;
    animation: scopeRipple3 5.1s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

.scope-vis .scope-ring-4 {
    width: 90px;
    height: 90px;
    opacity: 0.4;
    animation: scopeRipple4 5.7s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

.scope-vis .scope-ring-5 {
    width: 110px;
    height: 110px;
    opacity: 0.3;
    animation: scopeRipple5 6.3s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

.scope-vis .scope-ring-6 {
    width: 130px;
    height: 130px;
    opacity: 0.25;
    animation: scopeRipple6 6.9s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

.scope-vis .scope-ring-7 {
    width: 150px;
    height: 150px;
    opacity: 0.2;
    animation: scopeRipple7 7.3s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

.scope-vis .scope-ring-8 {
    width: 170px;
    height: 170px;
    opacity: 0.15;
    animation: scopeRipple8 7.9s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

@keyframes scopeRipple1 {
    0%, 100% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

@keyframes scopeRipple2 {
    0%, 100% { transform: scale(0.85); opacity: 0.6; }
    50% { transform: scale(1.25); opacity: 0.15; }
}

@keyframes scopeRipple3 {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

@keyframes scopeRipple4 {
    0%, 100% { transform: scale(0.88); opacity: 0.4; }
    50% { transform: scale(1.22); opacity: 0.1; }
}

@keyframes scopeRipple5 {
    0%, 100% { transform: scale(0.92); opacity: 0.3; }
    50% { transform: scale(1.18); opacity: 0.08; }
}

@keyframes scopeRipple6 {
    0%, 100% { transform: scale(0.87); opacity: 0.25; }
    50% { transform: scale(1.2); opacity: 0.07; }
}

@keyframes scopeRipple7 {
    0%, 100% { transform: scale(0.9); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0.06; }
}

@keyframes scopeRipple8 {
    0%, 100% { transform: scale(0.93); opacity: 0.15; }
    50% { transform: scale(1.12); opacity: 0.05; }
}

.scope-dot {
    width: 6px;
    height: 6px;
    background-color: var(--signal-red);
    border-radius: 50%;
    position: absolute;
    animation: scopeDotPulse 1.5s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

@keyframes scopeDotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--signal-red); }
    50% { opacity: 0.4; box-shadow: 0 0 2px var(--signal-red); }
}

/* Rotating line (radar sweep) */
.scope-line-rotate {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--burgundy-core), transparent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: top center;
    animation: radarSweep 4s linear infinite;
}

@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Reticle overlay */
.reticle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background:
        linear-gradient(to right, rgba(61, 15, 30, 0.3) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(61, 15, 30, 0.3) 1px, transparent 1px);
    background-size: 50% 50%;
    background-position: center center;
}

/* --- Brief Panels --- */
.brief-panel {
    background-color: var(--bg-panel);
    position: relative;
}

.brief-content {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    line-height: 1.7;
    color: var(--cream-primary);
}

.brief-content p {
    margin-bottom: 12px;
}

.brief-content em {
    color: var(--cream-secondary);
    font-style: italic;
}

/* Redaction bars */
.redaction-bar {
    width: 0;
    height: 14px;
    background-color: var(--bg-primary);
    margin: 8px 0;
    transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.redaction-bar.visible {
    width: 70%;
}

.redacted {
    background-color: var(--bg-primary);
    color: var(--bg-primary);
    padding: 0 2px;
    user-select: none;
}

/* Vintage Stamps */
.stamp {
    font-family: 'Rokkitt', serif;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burgundy-core);
    border: 2px solid var(--burgundy-core);
    padding: 3px 8px;
    position: absolute;
    opacity: 0.6;
}

.stamp-topleft {
    top: 12px;
    right: 12px;
    transform: rotate(-3deg);
}

.stamp-bottomright {
    bottom: 12px;
    right: 12px;
    transform: rotate(4deg);
}

/* --- DECK 2: Signal Feed Grid --- */
.signal-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 2px;
    padding: 2px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* 10 children layout */
.signal-grid > :nth-child(1)  { grid-column: 1 / 5;   grid-row: 1 / 3; } /* Feed Alpha */
.signal-grid > :nth-child(2)  { grid-column: 5 / 8;   grid-row: 1 / 3; } /* Scope Primary */
.signal-grid > :nth-child(3)  { grid-column: 8 / 11;  grid-row: 1 / 3; } /* Scope Secondary */
.signal-grid > :nth-child(4)  { grid-column: 11 / 13; grid-row: 1 / 2; } /* Proc Load */
.signal-grid > :nth-child(5)  { grid-column: 11 / 13; grid-row: 2 / 3; } /* Alert */
.signal-grid > :nth-child(6)  { grid-column: 1 / 7;   grid-row: 3 / 5; } /* Brief */
.signal-grid > :nth-child(7)  { grid-column: 7 / 10;  grid-row: 3 / 5; } /* Feed Bravo */
.signal-grid > :nth-child(8)  { grid-column: 10 / 12; grid-row: 3 / 4; } /* MEM Alloc */
.signal-grid > :nth-child(9)  { grid-column: 10 / 12; grid-row: 4 / 5; } /* Uptime */
.signal-grid > :nth-child(10) { grid-column: 12 / 13; grid-row: 3 / 5; } /* Feed Charlie */

/* --- DECK 3: Analysis Grid --- */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 2px;
    padding: 2px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* 6 children layout */
.analysis-grid > :nth-child(1) { grid-column: 1 / 13;  grid-row: 1 / 3; } /* Large scope */
.analysis-grid > :nth-child(2) { grid-column: 1 / 6;   grid-row: 3 / 5; } /* Brief left */
.analysis-grid > :nth-child(3) { grid-column: 6 / 11;  grid-row: 3 / 5; } /* Brief right */
.analysis-grid > :nth-child(4) { grid-column: 11 / 13; grid-row: 3 / 4; } /* Depth */
.analysis-grid > :nth-child(5) { grid-column: 11 / 13; grid-row: 4 / 5; } /* Threads */
.analysis-grid > :nth-child(6) { grid-column: 6 / 8;   grid-row: 2 / 3; display: none; } /* Integrity (hidden, overlaps scope) */

/* Large scope vis */
.scope-vis-large {
    height: calc(100% - 30px);
    min-height: 200px;
}

.scope-vis-large .ripple-ring {
    border-width: 1px;
}

/* --- DECK 4: End Grid --- */
.end-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 2px;
    padding: 2px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* 8 children layout */
.end-grid > :nth-child(1) { grid-column: 1 / 5;   grid-row: 1 / 3; }  /* Feed */
.end-grid > :nth-child(2) { grid-column: 5 / 9;   grid-row: 1 / 3; }  /* Scope */
.end-grid > :nth-child(3) { grid-column: 9 / 11;  grid-row: 1 / 2; }  /* Status 1 */
.end-grid > :nth-child(4) { grid-column: 11 / 13; grid-row: 1 / 2; }  /* Status 2 */
.end-grid > :nth-child(5) { grid-column: 3 / 11;  grid-row: 3 / 5; }  /* Signal Lost */
.end-grid > :nth-child(6) { grid-column: 1 / 3;   grid-row: 3 / 4; }  /* Power */
.end-grid > :nth-child(7) { grid-column: 9 / 13;  grid-row: 2 / 3; }  /* Alert */
.end-grid > :nth-child(8) { grid-column: 11 / 13; grid-row: 3 / 4; }  /* Archive */

/* Signal Lost panel */
.signal-lost-panel {
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.signal-lost-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 48px;
    color: var(--signal-red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: signalLostPulse 1.5s cubic-bezier(0.25, 0.1, 0.25, 1.0) infinite;
}

@keyframes signalLostPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.blink-cursor {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 24px;
    color: var(--cream-secondary);
    animation: cursorBlink 1s step-end infinite;
    margin-top: 8px;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Deck 4 dying panels */
.deck-end .panel {
    transition: opacity 0.6s ease;
}

/* --- Responsive: Tablet (6-col) --- */
@media (max-width: 1024px) {
    .signal-grid,
    .analysis-grid,
    .end-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .signal-grid > :nth-child(1)  { grid-column: 1 / 4; grid-row: 1 / 2; }
    .signal-grid > :nth-child(2)  { grid-column: 4 / 7; grid-row: 1 / 2; }
    .signal-grid > :nth-child(3)  { grid-column: 1 / 4; grid-row: 2 / 3; }
    .signal-grid > :nth-child(4)  { grid-column: 4 / 6; grid-row: 2 / 3; }
    .signal-grid > :nth-child(5)  { grid-column: 6 / 7; grid-row: 2 / 3; }
    .signal-grid > :nth-child(6)  { grid-column: 1 / 7; grid-row: 3 / 5; }
    .signal-grid > :nth-child(7)  { grid-column: 1 / 4; grid-row: 5 / 7; }
    .signal-grid > :nth-child(8)  { grid-column: 4 / 6; grid-row: 5 / 6; }
    .signal-grid > :nth-child(9)  { grid-column: 4 / 6; grid-row: 6 / 7; }
    .signal-grid > :nth-child(10) { grid-column: 6 / 7; grid-row: 5 / 7; }

    .analysis-grid > :nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 2; }
    .analysis-grid > :nth-child(2) { grid-column: 1 / 4; grid-row: 2 / 4; }
    .analysis-grid > :nth-child(3) { grid-column: 4 / 7; grid-row: 2 / 4; }
    .analysis-grid > :nth-child(4) { grid-column: 1 / 4; grid-row: 4 / 5; }
    .analysis-grid > :nth-child(5) { grid-column: 4 / 7; grid-row: 4 / 5; }

    .end-grid > :nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 2; }
    .end-grid > :nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
    .end-grid > :nth-child(3) { grid-column: 1 / 3; grid-row: 2 / 3; }
    .end-grid > :nth-child(4) { grid-column: 3 / 5; grid-row: 2 / 3; }
    .end-grid > :nth-child(5) { grid-column: 1 / 7; grid-row: 3 / 4; }
    .end-grid > :nth-child(6) { grid-column: 5 / 7; grid-row: 2 / 3; }
    .end-grid > :nth-child(7) { grid-column: 1 / 4; grid-row: 4 / 5; }
    .end-grid > :nth-child(8) { grid-column: 4 / 7; grid-row: 4 / 5; }

    .site-title {
        font-size: 56px;
    }

    .signal-lost-text {
        font-size: 36px;
    }

    #boot-dashboard {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

/* --- Responsive: Mobile (1-col stack) --- */
@media (max-width: 640px) {
    .signal-grid,
    .analysis-grid,
    .end-grid,
    #boot-dashboard {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .signal-grid > *,
    .analysis-grid > *,
    .end-grid > *,
    #boot-dashboard > * {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        display: block !important;
        min-height: 120px;
    }

    .signal-grid,
    .analysis-grid,
    .end-grid {
        min-height: auto;
    }

    .deck {
        min-height: auto;
        height: auto;
    }

    .deck-boot {
        min-height: 100vh;
    }

    .site-title {
        font-size: 42px;
    }

    .signal-lost-text {
        font-size: 24px;
    }

    .scope-vis {
        min-height: 150px;
    }

    .brief-content {
        font-size: 12px;
    }

    .feed-scroll p {
        font-size: 11px;
    }
}
