/* bability.pro - Sci-Fi HUD Overlay */
/* Palette: #050a0e, #00e5ff, #76ff03, #ff1744, #ffab00, #0a2233, #e0f7fa, #546e7a */
/* Fonts: Orbitron (display), Rajdhani (body), Share Tech Mono (data) */

:root {
    --void: #050a0e;
    --cyan: #00e5ff;
    --green: #76ff03;
    --red: #ff1744;
    --amber: #ffab00;
    --grid-dim: #0a2233;
    --text-bright: #e0f7fa;
    --text-dim: #546e7a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--void);
    color: var(--text-bright);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================ */
/* HEX GRID BACKGROUND                         */
/* ============================================ */
.hex-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(30deg, var(--grid-dim) 12%, transparent 12.5%, transparent 87%, var(--grid-dim) 87.5%, var(--grid-dim)),
        linear-gradient(150deg, var(--grid-dim) 12%, transparent 12.5%, transparent 87%, var(--grid-dim) 87.5%, var(--grid-dim)),
        linear-gradient(30deg, var(--grid-dim) 12%, transparent 12.5%, transparent 87%, var(--grid-dim) 87.5%, var(--grid-dim)),
        linear-gradient(150deg, var(--grid-dim) 12%, transparent 12.5%, transparent 87%, var(--grid-dim) 87.5%, var(--grid-dim));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* ============================================ */
/* CROSSHAIR SYSTEM                             */
/* ============================================ */
.crosshair {
    position: fixed;
    z-index: 2;
    pointer-events: none;
}

.ch-h {
    top: 40%;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--cyan) 20%, var(--cyan) 80%, transparent 100%);
    opacity: 0.2;
    animation: extendH 1.5s ease-out 1s forwards;
}

.ch-v {
    top: 0;
    left: 60%;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, transparent 0%, var(--cyan) 20%, var(--cyan) 80%, transparent 100%);
    opacity: 0.2;
    animation: extendV 1.5s ease-out 1.2s forwards;
}

@keyframes extendH {
    to { width: 100%; }
}

@keyframes extendV {
    to { height: 100%; }
}

/* Pulsing dots at crosshair endpoints */
.ch-pulse {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulseDot 2s ease-in-out infinite;
    opacity: 0;
}

.ch-h .ch-pulse-left { left: 0; top: -1.5px; animation-delay: 2.5s; }
.ch-h .ch-pulse-right { right: 0; top: -1.5px; animation-delay: 2.7s; }
.ch-v .ch-pulse-top { left: -1.5px; top: 0; animation-delay: 2.6s; }
.ch-v .ch-pulse-bottom { left: -1.5px; bottom: 0; animation-delay: 2.8s; }

@keyframes pulseDot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.8); }
}

.crosshair-diamond {
    position: fixed;
    top: calc(40% - 6px);
    left: calc(60% - 6px);
    width: 12px;
    height: 12px;
    border: 1px solid var(--cyan);
    transform: rotate(45deg) scale(0);
    z-index: 3;
    pointer-events: none;
    animation: diamondAppear 0.5s ease 2s forwards, diamondSpin 12s linear 2.5s infinite;
    opacity: 0.5;
}

@keyframes diamondAppear {
    to { transform: rotate(45deg) scale(1); }
}

@keyframes diamondSpin {
    to { transform: rotate(405deg) scale(1); }
}

/* ============================================ */
/* PERIPHERAL READOUTS                          */
/* ============================================ */
.readout {
    position: fixed;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    animation: readoutFadeIn 0.5s ease forwards;
    letter-spacing: 0.05em;
}

.readout-tl { top: 1rem; left: 1rem; animation-delay: 2s; }
.readout-tr { top: 1rem; right: 1rem; animation-delay: 2.2s; }
.readout-bl { bottom: 1rem; left: 1rem; animation-delay: 2.4s; }
.readout-br { bottom: 1rem; right: 1rem; animation-delay: 2.6s; }

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

/* ============================================ */
/* CORNER BRACKETS                              */
/* ============================================ */
.bracket {
    position: fixed;
    width: 30px;
    height: 30px;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bracket.visible { opacity: 0.5; }

.br-tl { top: 0.5rem; left: 0.5rem; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); transform: translate(-10px, -10px); }
.br-tr { top: 0.5rem; right: 0.5rem; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); transform: translate(10px, -10px); }
.br-bl { bottom: 0.5rem; left: 0.5rem; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--cyan); transform: translate(-10px, 10px); }
.br-br { bottom: 0.5rem; right: 0.5rem; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); transform: translate(10px, 10px); }

.bracket.visible {
    opacity: 0.5;
    transform: translate(0, 0);
    transition: opacity 0.5s ease, transform 0.4s ease;
}

/* ============================================ */
/* SCROLL PROGRESS RING                         */
/* ============================================ */
.scroll-ring-container {
    position: fixed;
    bottom: 2.5rem;
    right: 1rem;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scroll-ring-container.visible {
    opacity: 1;
}

.scroll-ring-svg {
    display: block;
}

.scroll-ring-fill {
    transition: stroke-dashoffset 0.15s ease-out;
}

.scroll-ring-label {
    position: absolute;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    color: var(--cyan);
}

/* ============================================ */
/* SECTIONS COMMON                              */
/* ============================================ */
.hud-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 2rem;
    z-index: 1;
}

/* ============================================ */
/* SECTION 1: SYSTEM BOOT / HERO               */
/* ============================================ */
.boot {
    min-height: 100vh;
}

.ring-system {
    position: relative;
    width: 600px;
    height: 600px;
    max-width: 90vw;
    max-height: 90vw;
    transition: transform 1.5s ease;
}

.rings-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* Ring animations */
.ring-1 { animation: spin 45s linear infinite; transform-origin: 300px 300px; }
.ring-2 { animation: ringDraw 2.5s ease forwards 0.8s, spinReverse 35s linear infinite 3.3s; transform-origin: 300px 300px; }
.ring-3 { animation: spin 28s linear infinite reverse; transform-origin: 300px 300px; }
.ring-4 { animation: ringDraw4 2s ease forwards 1.2s, spin 22s linear infinite 3.2s; transform-origin: 300px 300px; }
.ring-5 { animation: spin 18s linear infinite; transform-origin: 300px 300px; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes spinReverse {
    to { transform: rotate(-360deg); }
}

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

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

/* Arc text on rings */
.arc-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px;
    fill: var(--text-dim);
    opacity: 0;
    animation: arcTextFadeIn 1s ease forwards;
}

.arc-text-1 { animation-delay: 2.5s; font-size: 7px; }
.arc-text-2 { animation-delay: 3s; font-size: 7px; }
.arc-text-3 { animation-delay: 3.5s; font-size: 8px; }
.arc-text-4 { animation-delay: 4s; font-size: 9px; fill: var(--cyan); }

@keyframes arcTextFadeIn {
    to { opacity: 0.6; }
}

/* Data particles */
.particle {
    opacity: 0;
    animation: particleFadeIn 0.5s ease forwards;
    filter: blur(0.3px);
}

.p-1 { animation-delay: 3s; }
.p-2 { animation-delay: 3.2s; }
.p-3 { animation-delay: 3.4s; }
.p-4 { animation-delay: 3.6s; }
.p-5 { animation-delay: 3.8s; }
.p-6 { animation-delay: 4s; }
.p-7 { animation-delay: 4.2s; }

.sp-1, .sp-2 { opacity: 0.7; animation: none; }

@keyframes particleFadeIn {
    to { opacity: 0.8; }
}

/* Particle glow */
.particle {
    filter: drop-shadow(0 0 3px currentColor);
}

/* Radar sweep */
.sweep {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 229, 255, 0.1) 20deg, rgba(0, 229, 255, 0.02) 40deg, transparent 60deg);
    animation: spin 4s linear infinite;
    opacity: 0;
    transition: opacity 1s ease;
}

.sweep.active {
    opacity: 1;
}

/* Boot center */
.boot-center {
    position: absolute;
    text-align: center;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boot-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(0, 229, 255, 0.3);
    animation: bootPulseAnim 1s ease-in-out infinite;
    margin-bottom: 1rem;
    opacity: 0;
}

.boot-pulse.active {
    opacity: 1;
}

.boot-pulse.faded {
    animation: bootPulseFade 1s ease forwards;
}

@keyframes bootPulseAnim {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(2); opacity: 1; }
}

@keyframes bootPulseFade {
    to { opacity: 0; transform: scale(0); }
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.5), 0 0 60px rgba(0, 229, 255, 0.2);
    min-height: 1.2em;
    white-space: nowrap;
}

.brand-name .cursor {
    display: inline-block;
    width: 2px;
    height: 0.9em;
    background: var(--cyan);
    margin-left: 2px;
    animation: cursorBlink 0.6s step-end infinite;
    vertical-align: text-bottom;
}

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

.brand-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
    letter-spacing: 0.15em;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.brand-sub.visible {
    opacity: 1;
}

/* ============================================ */
/* SECTION 2: QUADRANT ACTIVATION               */
/* ============================================ */
.quadrants {
    min-height: 120vh;
    padding: 6rem 2rem;
}

/* Amber flash for crosshair activation */
.amber-flash {
    position: fixed;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
}

.flash-h {
    top: 40%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--amber);
    box-shadow: 0 0 10px var(--amber);
}

.flash-v {
    top: 0;
    left: 60%;
    width: 2px;
    height: 100%;
    background: var(--amber);
    box-shadow: 0 0 10px var(--amber);
}

.amber-flash.flash-active {
    animation: amberFlash 0.4s ease-out forwards;
}

@keyframes amberFlash {
    0% { opacity: 0.8; }
    100% { opacity: 0; }
}

/* Quadrant grid - 60/40 split */
.quad-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
}

.quadrant {
    background: rgba(10, 34, 51, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.08);
    padding: 1.5rem 1.8rem;
    position: relative;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
    overflow: hidden;
}

.quadrant.visible {
    opacity: 1;
    transform: scale(1);
}

.quadrant.flicker {
    animation: quadFlicker 0.3s ease;
}

@keyframes quadFlicker {
    0% { opacity: 0; }
    20% { opacity: 0.4; }
    40% { opacity: 0.1; }
    60% { opacity: 0.7; }
    80% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Lock-on hover effect */
.lock-on {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 1px solid transparent;
    border-radius: 0;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, border-radius 0.4s ease, border-color 0.4s ease;
    pointer-events: none;
}

.quadrant:hover .lock-on {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border-color: rgba(0, 229, 255, 0.3);
}

.quadrant:hover {
    border-color: rgba(0, 229, 255, 0.25);
}

.q-bracket {
    position: absolute;
    width: 16px;
    height: 16px;
}

.qb-tl { top: -1px; left: -1px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.qb-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }

.q-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.q-number {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    opacity: 0.5;
}

.q-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.q-body {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(224, 247, 250, 0.55);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Gauges */
.q-gauge-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.q-gauge-svg {
    flex-shrink: 0;
}

.gauge-fill {
    transition: stroke-dashoffset 2s ease;
}

.gauge-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: var(--cyan);
    min-width: 3em;
}

.gf-2 + .gauge-label,
.q2 .gauge-label {
    color: var(--green);
}

/* Data readouts */
.q-data {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    padding: 0.15rem 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.04);
}

.data-label { color: var(--text-dim); }
.data-val { color: var(--green); }
.data-val-red { color: var(--red); }

/* ============================================ */
/* SECTION 3: DEEP SCAN                         */
/* ============================================ */
.deepscan {
    min-height: 100vh;
    position: relative;
}

.scan-ring-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vw;
    opacity: 0.3;
    pointer-events: none;
}

.scan-rings-svg {
    width: 100%;
    height: 100%;
}

.scan-ring {
    transform-origin: 200px 200px;
}

.sr-1 { animation: spin 20s linear infinite; }
.sr-2 { animation: spinReverse 15s linear infinite; }
.sr-3 { animation: spin 12s linear infinite; }
.sr-4 { animation: spinReverse 25s linear infinite; }

.scan-sweep {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(118, 255, 3, 0.08) 25deg, transparent 50deg);
    animation: spin 2.5s linear infinite;
}

.scan-arc-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 7px;
    fill: var(--green);
    opacity: 0.4;
}

.scan-arc-text-2 {
    font-size: 6px;
    fill: var(--cyan);
    opacity: 0.3;
}

.scan-panel {
    max-width: 650px;
    width: 100%;
    background: rgba(10, 34, 51, 0.6);
    border: 1px solid rgba(118, 255, 3, 0.15);
    padding: 2rem 2.5rem;
    position: relative;
    z-index: 2;
}

.scan-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(118, 255, 3, 0.3);
}

.scan-table {
    display: flex;
    flex-direction: column;
}

.scan-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.05);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-bright);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.scan-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.scan-header {
    color: var(--text-dim);
    text-transform: uppercase;
    font-size: 0.65rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    opacity: 1;
    transform: none;
}

.st-green { color: var(--green); }
.st-amber { color: var(--amber); }
.st-red { color: var(--red); }

/* ============================================ */
/* SECTION 4: MISSION COMPLETE                  */
/* ============================================ */
.mission {
    min-height: 100vh;
    position: relative;
}

.mission-ring-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    max-width: 90vw;
    max-height: 90vw;
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 1s ease;
}

.mission-ring-system.visible {
    opacity: 0.35;
}

.mission-rings-svg {
    width: 100%;
    height: 100%;
}

.mission-ring {
    transform-origin: 250px 250px;
}

.mr-1 { animation: spin 30s linear infinite; }
.mr-2 { animation: spinReverse 24s linear infinite; }
.mr-3 { animation: spin 18s linear infinite; }
.mr-4 { animation: spinReverse 36s linear infinite; }

.mission-progress-ring {
    transition: stroke-dashoffset 3s ease;
}

.mission-progress-ring.complete {
    stroke-dashoffset: 0;
    animation: ringPulseGreen 1.5s ease 3s;
}

@keyframes ringPulseGreen {
    0%, 100% { stroke: var(--green); stroke-width: 3; }
    50% { stroke: var(--green); stroke-width: 6; filter: drop-shadow(0 0 8px rgba(118, 255, 3, 0.5)); }
}

.mission-sweep {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(118, 255, 3, 0.06) 30deg, transparent 60deg);
    animation: spin 8s linear infinite;
}

.mission-arc-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px;
    fill: var(--green);
    opacity: 0.4;
}

.mission-panel {
    max-width: 520px;
    width: 100%;
    background: rgba(10, 34, 51, 0.5);
    border: 1px solid rgba(118, 255, 3, 0.2);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mission-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(118, 255, 3, 0.4);
}

.mission-body {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(224, 247, 250, 0.55);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mission-stat-val {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.4rem;
    color: var(--green);
}

.mission-stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mission-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-track {
    flex: 1;
    height: 4px;
    background: var(--grid-dim);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    transition: width 3s ease;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(118, 255, 3, 0.3);
}

.bar-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--green);
    min-width: 3.5em;
    text-align: right;
}

.mission-footer {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-top: 2rem;
    letter-spacing: 0.05em;
}

/* ============================================ */
/* FADE-IN UTILITY                              */
/* ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 900px) {
    .ring-system {
        width: 420px;
        height: 420px;
    }
    .quad-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 700px;
    }
    .mission-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .ring-system {
        width: 300px;
        height: 300px;
    }
    .quad-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .ch-v { left: 50%; }
    .crosshair-diamond { left: calc(50% - 6px); }
    .scan-panel { padding: 1.5rem; }
    .mission-panel { padding: 1.5rem; }
    .mission-stats { gap: 1rem; }
    .mission-stat-val { font-size: 1.1rem; }
    .brand-name { font-size: clamp(1.2rem, 6vw, 2rem); }
    .scan-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .scan-row span:nth-child(3) {
        display: none;
    }
    .scan-header span:nth-child(3) {
        display: none;
    }
}
