/* ==================== ROOT VARIABLES ==================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto+Mono:wght@400;700&display=swap');
:root {
    /* Core palette - Editorial/Brutalist */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-elevated: #111111;
    
    --text-primary: #EAEAEA;
    --text-secondary: #999999;
    --text-muted: #666666;
    
    --accent-red: #FF2A2A;
    --accent-yellow: #FFD700;
    --accent-red-dim: rgba(255, 42, 42, 0.15);
    
    --border-color: #222222;
    --border-strong: #333333;
    
    /* Typography */
    --font-display: 'Oswald', -apple-system, sans-serif;
    --font-mono: 'Roboto Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
}

/* ==================== RESET ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== BASE ==================== */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-mono);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ==================== GRID OVERLAY ==================== */
/* Subtle dot-matrix / tactical grid texture */
.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
}

/* Vignette effect for depth */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

/* ==================== CONTAINER ==================== */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Vertical guide lines - editorial feel */
.container::before,
.container::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-color);
    z-index: 5;
    opacity: 0.5;
}

.container::before {
    left: calc(50% - 450px);
}

.container::after {
    right: calc(50% - 450px);
}

/* ==================== HEADER ==================== */
.header {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: inline-block;
    position: relative;
}

.logo {
    width: 420px;
    max-width: 80vw;
    height: auto;
    filter: 
        drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 30px rgba(255, 42, 42, 0.3));
    transform: rotate(-2deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: rotate(0deg) scale(1.05);
    filter: 
        drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 50px rgba(255, 42, 42, 0.5));
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-md);
    position: relative;
    z-index: 10;
}

.hero-section {
    text-align: center;
    max-width: 700px;
    width: 100%;
}

/* ==================== TYPOGRAPHY ==================== */
.tagline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

/* Brand mark - the "Bogus" highlight */
.brand-mark {
    display: inline-block;
    position: relative;
    background: var(--accent-red);
    color: white;
    padding: 0.1em 0.4em;
    margin-right: 0.1em;
    font-weight: 700;
    /* Sharp, brutalist edges */
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

/* Subtle underline accent */
.brand-mark::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-yellow);
}

.subtitle {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-md);
    line-height: 1.7;
}

.subtitle-cta {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
    .container::before,
    .container::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .header {
        padding: var(--space-lg) var(--space-md) var(--space-md);
    }
    
    .logo {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 260px;
    }
    
    .tagline {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 0.875rem;
    }
}
