/* ═══════════════════════════════════════════════════════════════════
   LUCID TUNER - GLOBAL STYLES - 
   Shared styles for landing page, squeeze page, and app
   ═══════════════════════════════════════════════════════════════════ */

:root {
    /* Base Colors */
    --bg-primary: #0a0a0f;
    --bg-surface: #14141f;
    --bg-elevated: #1a1a25;
    
    /* Text Colors - BRIGHTENED for better readability */
    --text-primary: #f5f5fa;
    --text-secondary: #c8c8d8;
    --text-muted: #8a8a9a;
    
    /* Accent Colors */
    --accent-cool: #5ce1e6;
    --accent-primary: #7c5cff;
    --accent-warm: #ffb464;
    --accent-gold: #ffb86c;
    
    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-active: rgba(124, 92, 255, 0.4);
    
    /* Semantic Highlighting Colors */
    --highlight-broadcast: #5ce1e6;  /* Cyan - what user controls */
    --highlight-signal: #7c5cff;     /* Purple - what Field sends */
    --highlight-static: #ff6b6b;     /* Red - what blocks reception */
    --highlight-key: #ffb464;        /* Warm - important concepts */
}

/* ═══════════════════════════════════════════════════════════════════
   GLOBAL RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════════════ */

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

html {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════════
   AMBIENT BACKGROUND
   ═══════════════════════════════════════════════════════════════════ */

.ambient-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.08), transparent 70%),
                radial-gradient(circle at 80% 20%, rgba(92, 225, 230, 0.06), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* ═══════════════════════════════════════════════════════════════════
   SEMANTIC HIGHLIGHTING SYSTEM
   ═══════════════════════════════════════════════════════════════════ */

.highlight-broadcast {
    color: var(--highlight-broadcast);
    font-weight: 600;
}

.highlight-signal {
    color: var(--highlight-signal);
    font-weight: 600;
}

.highlight-static {
    color: var(--highlight-static);
    font-weight: 600;
}

.highlight-key {
    color: var(--highlight-key);
    font-weight: 600;
}

.highlight-emphasis {
    color: var(--text-primary);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED BUTTON STYLES
   ═══════════════════════════════════════════════════════════════════ */

.cta-primary, .cta-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-cool), var(--accent-primary));
    color: #0a0a0f;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 92, 255, 0.4);
}

.cta-secondary {
    background: rgba(124, 92, 255, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--text-primary);
}

.cta-secondary:hover {
    background: rgba(124, 92, 255, 0.2);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED CONTAINER
   ═══════════════════════════════════════════════════════════════════ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

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

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

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}
