*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background: #f7f8fb;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00897b;
}

.wordmark {
    margin: 0 0 2rem;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #1a1a2e;
}

.wordmark span {
    color: #00897b;
}

.pitch {
    margin: 0;
    font-size: 1.125rem;
    color: #3a3a4e;
    max-width: 56ch;
}

.pitch code {
    font-family: "Fira Code", "SF Mono", Consolas, Menlo, monospace;
    font-size: 0.95em;
    padding: 0.1em 0.35em;
    background: #eceef5;
    border-radius: 3px;
    color: #1a1a2e;
}

.site-footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #6c6c80;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1.25rem;
    }

    .pitch {
        font-size: 1rem;
    }
}
