:root {
    --bg-color: #0a0a0b;
    --text-main: #ffffff; /* Shifted to pure white for better punch */
    --accent-blue: #0077ff; /* Slightly brighter blue for visibility */
    --status-yellow: #ffcc00;
    --border-color: #222;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
}

.hero-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        linear-gradient(to bottom, rgba(10, 10, 11, 0.9) 0%, rgba(10, 10, 11, 0.7) 50%, rgba(10, 10, 11, 1) 100%),
        url('eu.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.4) contrast(1.2);
}

.grid-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(to right, #1a1a1a 1px, transparent 1px),
        linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    opacity: 0.2;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo { font-weight: 800; letter-spacing: 3px; }

.status-badge {
    font-family: monospace;
    color: var(--status-yellow);
    border: 1px solid var(--status-yellow);
    padding: 5px 12px;
}

.blink { animation: blinker 1.5s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 1rem 0;
    font-weight: 900;
}

.highlight { color: var(--accent-blue); }

.tagline {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--accent-blue);
    margin-bottom: 0;
}

.mission-text {
    max-width: 850px;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #eee;
    margin: 1.5rem 0 3rem 0;
}

.sub-narrative {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.primary-btn {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 1.2rem 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.primary-btn:hover {
    background: white;
    color: var(--accent-blue);
}

/* HIGH VISIBILITY DOMAIN TEXT */
.domain-subtext {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #ffffff; /* Solid white for contrast */
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 119, 255, 0.8); /* Subtle blue glow */
}

.moat-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background-color: var(--border-color);
}

.moat-card {
    background-color: rgba(10, 10, 11, 0.98);
    padding: 4rem 2rem;
}

.moat-card h3 {
    font-family: monospace;
    color: var(--status-yellow);
    font-size: 1.2rem;
}

footer {
    padding: 5rem 5%;
    background: var(--bg-color);
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.5;
}