:root {
    --speakeasy-bg: #0d0d0f; 
    --speakeasy-card: #141417; 
    --candlelight-gold: #d4af37; 
    --dim-text: #b3b3b6;
    --baseball-cream: #f2efe9;
    --baseball-navy: #101c2a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--speakeasy-bg);
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
    line-height: 1.7;
}

.hero-intro-header {
    min-height: 110vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10vh 20px 60px 20px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a22 0%, var(--speakeasy-bg) 70%);
}

.quadrant-master-container {
    width: 240px;
    height: 240px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px;
    margin-bottom: 50px;
    transition: transform 0.1s ease-out;
}

.quadrant-cell {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: relative;
    transition: transform 0.1s ease-out;
}

.internal-logo-circle {
    width: 240px;
    height: 240px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 10rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 20px;
    margin-right: 5px;
    letter-spacing: -4px;
}

.q-top-left .internal-logo-circle { top: 0; left: 0; }
.q-top-right .internal-logo-circle { top: 0; left: -120px; }
.q-bottom-left .internal-logo-circle { top: -120px; left: 0; }
.q-bottom-right .internal-logo-circle { top: -120px; left: -120px; }

.intro-text-wrapper {
    max-width: 720px;
    background-color: rgba(20, 20, 23, 0.85);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    letter-spacing: -0.5px;
}

.intro-text-wrapper p {
    color: #e2e2e5;
    font-size: 1.05rem;
}

.survey-highlight-link {
    display: block;
    color: var(--candlelight-gold);
    text-decoration: none;
    font-weight: 700;
    margin-top: 25px;
    font-size: 1.15rem;
    border: 1px solid var(--candlelight-gold);
    padding: 15px 20px;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.survey-highlight-link:hover {
    background-color: var(--candlelight-gold);
    color: #000000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.scroll-down-nudge {
    color: var(--dim-text);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 45px;
    opacity: 0.7;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
}

section {
    background-color: var(--speakeasy-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    padding: 50px;
    margin-bottom: 90px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--candlelight-gold);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 3px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ffffff;
    opacity: 0.85;
    border-left: 2px solid var(--candlelight-gold);
    padding-left: 15px;
}

.sports-section {
    background-color: var(--baseball-cream);
    background-image: linear-gradient(90deg, transparent 28px, rgba(16, 28, 42, 0.15) 28px, rgba(16, 28, 42, 0.15) 30px);
    background-size: 30px 100%;
    color: var(--baseball-navy);
    border: 1px solid rgba(16, 28, 42, 0.2);
}

.sports-section h2 {
    color: var(--baseball-navy);
    border-bottom: 1px solid rgba(16, 28, 42, 0.2);
}

.sports-section .quote {
    color: var(--baseball-navy);
    border-left: 2px solid var(--baseball-navy);
}

.section-narrative {
    color: #d1d1d4;
}

.sports-section .section-narrative {
    color: var(--baseball-navy);
    opacity: 0.9;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.detail-item {
    border: 1px solid rgba(212, 175, 55, 0.2);
    background-color: rgba(0,0,0,0.2);
    padding: 25px;
    text-align: center;
    border-radius: 2px;
}

.detail-item strong {
    font-family: 'Cinzel', serif;
    color: var(--candlelight-gold);
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

footer {
    text-align: center;
    padding: 80px 20px;
    font-size: 0.85rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    color: var(--dim-text);
    opacity: 0.5;
}

/* ==========================================================================
   AIRTIGHT MOBILE VEHICLE MEDIA RULES (FOR PHONES AND PORTABLE MONITORS)
   ========================================================================== */
@media (max-width: 768px) {
    .quadrant-master-container {
        width: 160px;
        height: 160px;
        margin-bottom: 30px;
    }
    
    .quadrant-cell {
        width: 80px;
        height: 80px;
    }
    
    .internal-logo-circle {
        width: 160px;
        height: 160px;
    }
    
    .hero-title {
        font-size: 6.5rem;
        margin-bottom: 12px;
        letter-spacing: -3px;
    }
    
    .q-top-right .internal-logo-circle { left: -80px; }
    .q-bottom-left .internal-logo-circle { top: -80px; }
    .q-bottom-right .internal-logo-circle { top: -80px; left: -80px; }

    .intro-text-wrapper {
        padding: 25px 20px;
    }

    .intro-text-wrapper p {
        font-size: 0.95rem;
    }

    .survey-highlight-link {
        font-size: 1rem;
        padding: 12px 15px;
    }

    section {
        padding: 30px 20px;
        margin-bottom: 50px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr; /* Instantly stacks parameters natively */
        gap: 15px;
    }
}
