:root {
    --bg: #ffffff;
    --text: #171717;
    --muted: #4d4d4d;
    --subtle: #666666;
    --line: rgba(0, 0, 0, 0.08);
    --surface: #ffffff;
    --surface-soft: #fafafa;
    --focus: #0072f5;
    --badge-bg: #ebf5ff;
    --badge-text: #0068d6;
    --shadow-card: rgba(0, 0, 0, 0.08) 0 0 0 1px,
        rgba(0, 0, 0, 0.04) 0 2px 2px,
        rgba(0, 0, 0, 0.04) 0 8px 8px -8px,
        #fafafa 0 0 0 1px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-feature-settings: 'liga' 1;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
.button:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 5vw, 56px);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: var(--line) 0 0 0 1px;
}

.brand {
    font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

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

main {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    display: grid;
    place-items: center;
    min-height: 72vh;
    padding: 96px 0 80px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--subtle);
    font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 880px;
    margin-bottom: 24px;
    font-size: clamp(44px, 7vw, 84px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: clamp(-3.5px, -0.05em, -2px);
}

.hero-copy {
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.button-primary {
    background: var(--text);
    color: #ffffff;
}

.button-secondary {
    background: #ffffff;
    color: var(--text);
    box-shadow: var(--line) 0 0 0 1px;
}

.section {
    padding: 88px 0;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 32px;
}

.section-heading h2,
.contact-panel h2 {
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -2px;
}

.section-heading p,
.contact-panel p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card,
.contact-panel {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.card {
    padding: 28px;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.96px;
}

.card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(28px, 5vw, 48px);
    margin-bottom: 64px;
}

.contact-panel > div {
    max-width: 720px;
}

.status-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 9999px;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 32px 0 48px;
    color: var(--subtle);
    box-shadow: var(--line) 0 -1px 0 0;
    font-size: 14px;
}

@media (max-width: 760px) {
    .site-header {
        padding: 16px 20px;
    }

    .hero {
        min-height: auto;
        padding: 72px 0 56px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}
