/* --- VARIABLES --- */
:root {
    --bg-color: #F4F4F4; /* Light industrial grey */
    --text-color: #111111; /* Sharp Black */
    --accent-color: #CCFF00; /* Safety Lime - PUNCHY */
    --border: 1px solid #111111;
    --font-head: 'Unbounded', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-mono);
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; }
a { text-decoration: none; color: inherit; }

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-color);
    z-index: 100;
}

.logo { font-weight: 700; font-size: 1.2rem; letter-spacing: -1px; }

.cta-button {
    background: var(--text-color);
    color: #FFF;
    padding: 10px 20px;
    font-weight: 700;
    transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--text-color);
    box-shadow: 4px 4px 0px var(--text-color); /* Hard shadow */
    transform: translate(-2px, -2px);
}

/* --- HERO --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 40px;
    border-bottom: var(--border);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem); /* Responsive giant text */
    line-height: 0.9;
    letter-spacing: -2px;
}

.highlight {
    -webkit-text-stroke: 2px var(--text-color);
    color: transparent; /* Outline effect */
}

.hero-sub {
    margin-top: 30px;
    max-width: 500px;
    font-size: 1.1rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

/* --- MARQUEE --- */
.marquee-container {
    background: var(--text-color);
    color: var(--accent-color);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: var(--border);
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.5rem;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- BENTO GRID --- */
.section-padding { padding: 60px 20px; border-bottom: var(--border); }
.section-title { font-size: 2rem; margin-bottom: 40px; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.box {
    border: var(--border);
    padding: 30px;
    transition: 0.2s;
    background: white;
}

.box:hover {
    background: var(--text-color);
    color: white;
}

.accent-bg { background: var(--accent-color); }
.accent-bg:hover { background: var(--text-color); color: var(--accent-color); }

.box h3 { margin-bottom: 15px; font-size: 1.5rem; }

/* --- SPLIT SECTION --- */
.split-section {
    display: flex;
    flex-wrap: wrap;
    border-bottom: var(--border);
}

.split-left, .split-right {
    flex: 1 1 400px; /* Responsive split */
    padding: 80px 40px;
}

.split-left { background: var(--text-color); color: white; }
.split-left h2 { font-size: 4rem; line-height: 1; }

.checklist li {
    list-style: none;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* --- FOOTER --- */
.footer-content {
    padding: 80px 20px;
    text-align: center;
}

.giant-link {
    display: block;
    font-size: clamp(2rem, 6vw, 5rem);
    font-family: var(--font-head);
    font-weight: 900;
    margin: 40px 0;
    border-bottom: 4px solid var(--text-color);
    display: inline-block;
}

.giant-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: var(--text-color);
}

/* --- UTILS --- */
.meta-data { font-size: 0.8rem; display: flex; align-items: center; gap: 10px; }
.status-dot { width: 10px; height: 10px; background: lime; border-radius: 50%; display: inline-block; animation: blink 1s infinite; }

@keyframes blink { 50% { opacity: 0; } }

/* MOBILE TWEAKS */
@media (max-width: 768px) {
    .hero { padding: 20px; }
    .split-section { flex-direction: column; }
}