/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #F7F7F6;
    --surface: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #6B6B6B;
    --accent: #E07A5F;
    --accent-light: #F5DDD5;
    --divider: #ECECEC;
    --safety-teal: #1DB8A4;
    --dark: #0D0D0D;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===== NAVBAR ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--surface);
    border-bottom: 1px solid var(--divider);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-wordmark {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-link.active {
    color: var(--accent);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-cta {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    opacity: 0.9;
}

.nav-cta.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

@media (max-width: 767px) {
    nav {
        padding: 12px 16px;
    }
    .nav-wordmark {
        display: none;
    }
    .nav-logo {
        height: 32px;
    }
    .nav-links {
        gap: 12px;
    }
}

/* ===== HERO BUTTONS ===== */
.hero-btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent);
    color: white;
    border-radius: 6px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hero-btn-primary:hover {
    opacity: 0.9;
}

.hero-btn-outline {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--text-primary);
    border-radius: 6px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.hero-btn-outline:hover {
    background-color: var(--text-primary);
    color: white;
}

/* ===== FOOTER ===== */
footer {
    padding: 48px 20px;
    background-color: var(--surface);
    border-top: 1px solid var(--divider);
    text-align: center;
}

.footer-content {
    max-width: 500px;
    margin: 0 auto;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-wordmark {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-copyright {
    font-size: 11px;
    color: var(--text-secondary);
}

@media (max-width: 767px) {
    footer {
        padding: 40px 16px;
    }
    .footer-logo {
        height: 40px;
    }
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
