/* cinematic.css - Guanes Legaltech 2026 */
:root {
    --gold: #d4af37;
    --obsidian: #0a0a0b;
    --luxury: #161618;
    --glimmer: rgba(212, 175, 55, 0.15);
}

body {
    background-color: var(--obsidian);
    background-image: 
        radial-gradient(circle at 50% -20%, var(--glimmer), transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.05), transparent 25%);
    background-attachment: fixed;
}

/* Glassmorphism System */
.glass-card {
    background: rgba(22, 22, 24, 0.8);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

/* Typography Gradient */
.gold-text-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f9e29f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: textShine 5s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

/* Global Transitions */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: revealIn 1.2s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}

@keyframes revealIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Terminal Instrument Styles */
.terminal-window {
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.terminal-header {
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.scanline {
    width: 100%;
    height: 1px;
    background: rgba(212, 175, 55, 0.05);
    position: absolute;
    top: 0;
    z-index: 10;
    pointer-events: none;
    animation: scanmove 8s linear infinite;
}

@keyframes scanmove {
    from { top: 0; }
    to { top: 100%; }
}

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: var(--obsidian);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #f9e29f;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}
