/* Human Blueprint - Sovereign Minimalism */
:root {
    --color-bg: #0a0a0a;
    --color-text: #e0e0e0;
    --color-gold: #D4AF37;
    --color-gold-hover: #F1C40F;
    --color-muted: #888;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 300;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold-hover);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- OVERLAY GATEKEEPER --- */
.gatekeeper-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.gatekeeper-content {
    max-width: 600px;
    animation: fadeIn 2s ease-in;
}

.key-question {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.key-btn {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 30px;
    font-size: 1rem;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.key-btn:hover {
    background: var(--color-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- MAIN HERO --- */
.hero {
    height: auto;
    /* Removed 100vh to reduce massive spacing */
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 40px 20px;
    /* Adjusted padding */
}

/* ... existing hero styles ... */

.module-card {
    border: 1px solid #333;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    /* To indicate clickability */
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    /* Ensure text inside doesn't get underlined by default */
    color: var(--color-text);
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* --- FOOTER --- */
footer {
    padding: 50px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #444;
    border-top: 1px solid #222;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}