/* =========================================
   SYSTEM 3046 // CORE STYLES
   "The Flight Deck" Design System
   ========================================= */

:root {
    /* --- COLOR PALETTE --- */
    --void-bg: #050505;
    --panel-bg: rgba(20, 30, 35, 0.6);
    --border-dim: rgba(0, 240, 255, 0.1);
    
    /* Neons */
    --neon-cyan: #00F0FF;
    --neon-amber: #FFB000;
    --neon-danger: #FF2A6D;
    
    /* Text */
    --text-main: #E0E6ED;
    --text-muted: #6B7A8F;
    
    /* --- TYPOGRAPHY --- */
    --font-tech: 'Space Mono', monospace; /* Headers, Data, Buttons */
    --font-read: 'Inter', sans-serif;     /* Body text, Paragraphs */
    
    /* --- SHAPE PHYSICS --- */
    --corner-cut: 20px; /* Size of the 45-degree cut */

/* --- BASE ATMOSPHERE --- */
body.system-3046 {
    background-color: var(--void-bg);
    color: var(--text-main);
    font-family: var(--font-read);
    margin: 0;
    overflow-x: hidden; /* No horizontal scroll */
    
    /* The Holo-Grid Background */
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    min-height: 100vh;

/* --- TYPOGRAPHY UTILITIES --- */
.system-3046 h1, 
.system-3046 h2, 
.system-3046 h3, 
.system-3046 h4, 
.system-3046 .sys-font { 
    font-family: var(--font-tech); 
    text-transform: uppercase; 
    letter-spacing: 2px; 

.system-3046 p { 
    font-weight: 300; 
    line-height: 1.6; 
    color: var(--text-muted); 

.system-3046 .text-glow { 
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6); 

.system-3046 .text-cyan { 
    color: var(--neon-cyan); 

.system-3046 .text-amber { 
    color: var(--neon-amber); 

.system-3046 .text-muted {
    color: var(--text-muted);

/* --- HUD FRAME (The Spacecraft Window) --- */
.sys-hud-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; /* Allows clicking through */
    z-index: 999;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.7); /* Vignette */

.sys-hud-border {
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);

/* Corner Brackets */
.sys-bracket {
    position: absolute; 
    width: 30px; 
    height: 30px;
    border: 2px solid var(--neon-cyan);
    transition: all 0.3s ease;

.sys-bracket.tl { 
    top: -1px; 
    left: -1px; 
    border-width: 2px 0 0 2px; 

.sys-bracket.tr { 
    top: -1px; 
    right: -1px; 
    border-width: 2px 2px 0 0; 

.sys-bracket.bl { 
    bottom: -1px; 
    left: -1px; 
    border-width: 0 0 2px 2px; 

.sys-bracket.br { 
    bottom: -1px; 
    right: -1px; 
    border-width: 0 2px 2px 0; 

/* --- COMPONENT: SYSTEM CARD (Chamfered Panel) --- */
.sys-card {
    background: var(--panel-bg);
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(8px);
    
    /* THE 45-DEGREE CUT */
    clip-path: polygon(
        var(--corner-cut) 0, 100% 0, 
        100% calc(100% - var(--corner-cut)), calc(100% - var(--corner-cut)) 100%, 
        0 100%, 0 var(--corner-cut)
    );
    
    /* Technical Left Border Accent */
    border-left: 2px solid var(--neon-cyan);

/* Decorative 'Tech Text' inside cards */
.sys-card::before {
    content: 'PANEL_SYS_01'; /* Can be overridden via attribute */
    position: absolute;
    top: 10px; right: 20px;
    font-family: var(--font-tech);
    font-size: 0.6rem;
    color: var(--neon-cyan);
    opacity: 0.4;

.sys-card[data-panel-id]::before {
    content: attr(data-panel-id);

/* --- COMPONENT: SYSTEM BUTTON --- */
.sys-btn {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    font-family: var(--font-tech);
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.2s;
    
    /* Button Cut Corners */
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);

.sys-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    padding-left: 35px; /* Mechanical slide effect */

.sys-btn:hover::after { 
    content: ' >>'; 

.sys-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;

.sys-btn:disabled:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    padding-left: 28px;

.sys-btn:disabled:hover::after {
    content: '';

/* --- COMPONENT: SYSTEM INPUT --- */
.sys-input-group { 
    margin-bottom: 1.5rem; 

.sys-label {
    display: block; 
    font-family: var(--font-tech); 
    font-size: 0.75rem;
    color: var(--text-muted); 
    margin-bottom: 0.5rem;

.sys-input {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-dim);
    border-left: 2px solid var(--border-dim);
    padding: 12px;
    color: #fff;
    font-family: var(--font-read);
    outline: none;
    transition: all 0.3s;

.sys-input:focus {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);

/* --- FX: SCANLINES --- */
.scanlines {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: repeating-linear-gradient(
        to bottom, 
        transparent 0px, 
        transparent 2px, 
        rgba(0,0,0,0.1) 3px
    );
    pointer-events: none; 
    z-index: 998; 
    opacity: 0.5;

/* --- COMPONENT: MISSION TIMELINE (For About Page) --- */
.sys-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 1px solid var(--border-dim);
    margin: 2rem 0;

.sys-timeline-item {
    position: relative;
    margin-bottom: 2rem;

.sys-timeline-item::before {
    /* The glowing dot on the timeline */
    content: '';
    position: absolute;
    left: -35px; /* Aligns with border */
    top: 5px;
    width: 10px; 
    height: 10px;
    background: var(--void-bg);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    border-radius: 50%;

/* --- COMPONENT: CREW ID CARD (For Team Section) --- */
.sys-id-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;

.sys-avatar {
    width: 80px; 
    height: 80px;
    background: rgba(0,240,255,0.1);
    border: 1px solid var(--neon-cyan);
    display: flex; 
    align-items: center; 
    justify-content: center;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    flex-shrink: 0;

/* --- COMPONENT: ACCORDION (For Help Center) --- */
details.sys-accordion {
    margin-bottom: 1rem;
    border: 1px solid var(--border-dim);
    background: rgba(255,255,255,0.02);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);

details.sys-accordion summary {
    padding: 1rem;
    cursor: pointer;
    font-family: var(--font-tech);
    color: var(--neon-cyan);
    list-style: none; /* Hides default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;

details.sys-accordion summary::after {
    content: '+'; 
    font-size: 1.2rem;
    color: var(--neon-cyan);

details.sys-accordion[open] summary::after {
    content: '-';

details.sys-accordion p {
    padding: 1rem;
    margin: 0;
    border-top: 1px solid var(--border-dim);
    color: var(--text-main);

details.sys-accordion summary:hover {
    background: rgba(0, 240, 255, 0.05);

/* --- COMPONENT: LEGAL DOC (For Privacy) --- */
.sys-doc-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-tech); /* Monospace for legal text looks cool */
    font-size: 0.9rem;
    line-height: 1.8;

.sys-doc-wrapper h2 {
    color: var(--neon-amber);
    border-bottom: 1px solid var(--neon-amber);
    padding-bottom: 0.5rem;
    margin-top: 3rem;

/* --- UTILITY CLASSES --- */
.sys-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    position: relative;
    z-index: 10;

.sys-header {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-dim);
    padding-bottom: 2rem;

.sys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .sys-container {
        padding: 60px 20px;

    .sys-hud-border {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;

    .sys-card {
        padding: 1.5rem;

    .sys-id-card {
        flex-direction: column;
        text-align: center;

/* --- TYPEWRITER CURSOR --- */
.type-fx {
    position: relative;

.type-fx::after {
    content: '█';
    display: inline-block;
    margin-left: 2px;
    color: var(--neon-cyan);
    animation: blink 1s step-end infinite;

.type-fx.typing-done::after {
    animation: none;
    opacity: 0.5;

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

}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}