* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --bg-elevated: #141414;
    --text-primary: #f5f5f0;
    --text-secondary: #8a8a85;
    --accent: #d4a574;
    --accent-hover: #e0b585;
    --border: #2a2a2a;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 880px;
    margin: 0 auto;
    padding: 64px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero / Mission */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}

.logo-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 72px;
}

.logo-mark {
    width: clamp(220px, 32vw, 340px);
    height: auto;
    display: block;
}

.logo-text {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0;
}

.mission {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.4px;
    color: var(--text-primary);
    margin-bottom: 32px;
    max-width: 820px;
}

.mission-sub {
    font-size: clamp(17px, 1.8vw, 20px);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 680px;
    font-weight: 400;
}

/* CTA */
.cta-section {
    margin-bottom: 80px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.cta-email {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.3px;
    text-align: center;
}

@media (max-width: 600px) {
    .container {
        padding: 40px 24px;
    }

    .logo-section {
        margin-bottom: 64px;
    }

    .hero {
        margin-bottom: 56px;
    }
}
