/* labs-style.css - Mobile-First Liquid Glass Theme (Square Edges & Horizontal Scan) */

:root {
    --bg-black: #000000;
    --electric-cyan: #00F2FF;
    --platinum-silver: #E0E0E0;
    --grid-overlay: rgba(0, 242, 255, 0.05);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-cyan: rgba(0, 242, 255, 0.2);
    --neon-glow: 0 0 15px rgba(0, 242, 255, 0.5);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-black);
    color: var(--platinum-silver);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
}

/* Background Grid Pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid-overlay) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-overlay) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
    pointer-events: none;
}

/* Horizontal Scanning Line Animation */
body::after {
    content: "";
    position: fixed;
    top: -10%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--electric-cyan);
    box-shadow: 0 0 15px var(--electric-cyan);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
    animation: scan-horizontal 8s linear infinite;
}

@keyframes scan-horizontal {
    0% { top: -5%; }
    100% { top: 105%; }
}

/* Glassmorphism Card - SQUARE EDGES */
.lab-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--card-bg);
    border: 1px solid var(--border-cyan);
    padding: 1.5rem;
    border-radius: 0px; /* Square edges */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Typography */
h1, h2, h3, h4, .neon-text {
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow);
}

/* Mobile-First Layout */
.container {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Grid */
.grid {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Touch-Friendly Buttons - SQUARE EDGES */
.btn-pulse {
    background: transparent;
    color: var(--electric-cyan);
    border: 1px solid var(--electric-cyan);
    padding: 1rem;
    min-height: 50px;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px; /* Square edges */
    animation: pulse 2s infinite;
    width: 100%;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 242, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); }
}

/* Form Inputs - SQUARE EDGES */
input, textarea, select {
    width: 100%;
    padding: 1rem;
    min-height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-cyan);
    color: white;
    border-radius: 0px; /* Square edges */
    margin-bottom: 1rem;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: var(--neon-glow);
}

/* Status Indicators */
.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 0px; /* Square status dots */
    display: inline-block;
    margin-right: 10px;
}
.status-pending { background: #FFD700; box-shadow: 0 0 10px #FFD700; }
.status-building {
    background: #00F2FF;
    box-shadow: 0 0 10px #00F2FF;
    animation: blink 1.5s infinite;
}
.status-active { background: #00FF00; box-shadow: 0 0 10px #00FF00; }

@keyframes blink {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Footer Styles */
.tech-footer {
    border-top: 1px solid var(--border-cyan);
    padding: 3rem 1rem;
    text-align: center;
    background: rgba(0,0,0,0.8);
    margin-top: 4rem;
}

.footer-contact {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tech-stack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.7rem;
    opacity: 0.7;
}

.tech-tag {
    color: var(--electric-cyan);
    text-shadow: 0 0 5px var(--electric-cyan);
}

.signature {
    font-size: 0.7rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* Full-Screen Modal */
#order-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    overflow-y: auto;
    padding: 1rem;
}

.modal-inner {
    max-width: 600px;
    margin: 2rem auto;
}

/* Fixed Footer Button for Dashboard */
.fixed-footer {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-cyan);
    z-index: 1000;
}
