/* KINGDOM GROWTH x PSALM3 CORE PROTOCOL STYLES */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,700;0,800;1,400;1,700&family=Inter:wght@900&display=swap');

:root {
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.2);
    --black: #020408;
    --grid-line: rgba(212, 175, 55, 0.08);
}

body { 
    font-family: 'JetBrains Mono', monospace; 
    background-color: var(--black); 
    color: white; 
    scroll-behavior: smooth; 
    /* ARCHITECTURAL GRID BACKGROUND */
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 45px 45px;
}

/* HIGH-SIGNAL TEXT DECORATION */
.high-signal-text {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 800;
}

.gold-gradient { 
    background: linear-gradient(90deg, #D4AF37 0%, #F9E29C 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* THE 7-PILLAR GRID SYSTEM */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--black);
}

.pillar-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-item:hover {
    background: var(--gold-dim);
    color: var(--gold);
}

/* WAR ROOM TERMINAL PANELS */
.war-room-panel {
    background: rgba(2, 4, 8, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.war-room-panel::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 10px; height: 10px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

/* VERTICAL EXECUTION TIMELINE */
.vertical-timeline {
    border-left: 2px solid var(--gold);
    padding-left: 2.5rem;
    position: relative;
}

.timeline-node::before {
    content: '';
    position: absolute;
    left: -9px;
    width: 16px; height: 16px;
    background: var(--gold);
    border: 4px solid var(--black);
    box-shadow: 0 0 15px var(--gold-dim);
}

/* SCANLINE EFFECT */
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.scanline::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.03), transparent);
    animation: scanline 12s linear infinite;
    pointer-events: none;
    z-index: 99;
}

/* CUSTOM SLIDER OVERRIDE */
#raiseSlider {
    appearance: none;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

#raiseSlider::-webkit-slider-thumb {
    appearance: none;
    height: 14px;
    width: 14px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 0; /* Boxy institutional look */
    box-shadow: 0 0 20px var(--gold-dim);
}

/* PROJECT CARDS (TERMINAL STYLE) */
.project-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s;
    border-radius: 0; /* Square for "Kingdom" aesthetic */
}

.project-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

/* MARQUEE ANIMATION */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
.animate-marquee { animation: marquee 35s linear infinite; }

/* MOBILE REFINEMENT */
@media (max-width: 768px) {
    .pillar-grid {
        grid-template-columns: repeat(3, 1fr); /* Collapse grid for mobile */
    }
    
    h1 {
        font-size: 3rem !important;
        letter-spacing: -0.05em;
    }

    .war-room-panel {
        padding: 1.5rem !important;
    }
}