@font-face {
    font-family: "Karla";
    src: url("/fonts/karla-latin-var.woff2") format("woff2");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Karla";
    src: url("/fonts/karla-latin-italic-var.woff2") format("woff2");
    font-weight: 200 800;
    font-style: italic;
    font-display: swap;
}

:root {
    --ink: #1C1C1C;
    --paper: #FFFFFF;
    --neutral: #F2F4F5;
    --border: #E4E7E9;
    --muted: #5F6368;
    --yellow: #FFC825;
    --yellow-dark: #E9B100;
    --emphasis: #8A6400;
    --success: #1D7A49;
    --error: #B42318;
    --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    font-family: "Karla", ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 16% 0%, rgba(255, 200, 37, 0.26), transparent 32rem),
        linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 56%, #F7F8F8 100%);
    font-size: 18px;
    line-height: 1.55;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(28, 28, 28, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 28, 28, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, #000, transparent 78%);
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 24px;
    top: 16px;
    z-index: 20;
    transform: translateY(-160%);
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    padding: 10px 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-shell {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 16px;
}

.site-header {
    padding: 22px 0 10px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: var(--yellow);
    box-shadow: inset 0 0 0 1px rgba(28, 28, 28, 0.12);
}

.brand-mark img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.nav-links a {
    border-radius: 999px;
    padding: 8px 11px;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: var(--neutral);
    color: var(--ink);
    outline: none;
}

.button,
.link-button {
    display: inline-flex;
    max-width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(28, 28, 28, 0.12);
}

.button:hover,
.button:focus-visible {
    background: var(--yellow-dark);
    outline: none;
}

.button:active,
.link-button:active {
    transform: translateY(1px) scale(0.99);
}

.link-button {
    border: 1px solid var(--border);
    background: var(--paper);
    color: var(--ink);
}

.link-button:hover,
.link-button:focus-visible {
    border-color: rgba(28, 28, 28, 0.28);
    background: var(--neutral);
    outline: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: calc(100dvh - 94px);
    padding-block: 46px 78px;
}

.hero-narrow {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
    min-height: calc(100dvh - 94px);
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--neutral);
    padding: 8px 13px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    content: "";
    box-shadow: 0 0 0 3px rgba(255, 200, 37, 0.25);
}

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

h1 {
    max-width: 900px;
    margin-top: 24px;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 0.98;
    text-wrap: balance;
}

.lede {
    max-width: 690px;
    margin-top: 24px;
    color: var(--muted);
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.35;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.panel {
    position: relative;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 70px rgba(28, 28, 28, 0.08);
    overflow: hidden;
}

.panel::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle at 82% 0%, rgba(255, 200, 37, 0.3), transparent 16rem);
}

.panel-inner {
    position: relative;
    display: grid;
    gap: 18px;
    padding: clamp(22px, 4vw, 34px);
}

.status-card {
    display: grid;
    gap: 18px;
}

.status-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.status-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.status-copy {
    margin-top: 6px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.45;
}

.status-badge,
.mono-badge {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    border-radius: 999px;
    padding: 7px 11px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.status-badge {
    background: var(--ink);
    color: var(--yellow);
}

.mono-badge {
    background: var(--neutral);
    color: var(--ink);
}

.checklist {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    color: var(--muted);
    font-size: 16px;
}

.checklist li::before {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    content: "✓";
    font-size: 15px;
    font-weight: 800;
}

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

.metric {
    border-radius: 18px;
    background: var(--neutral);
    padding: 15px;
}

.metric-value {
    font-family: var(--mono);
    font-size: 20px;
    font-weight: 800;
}

.metric-label {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.terminal {
    border-radius: 22px;
    background: var(--ink);
    color: #fff;
    padding: 20px;
    font-family: var(--mono);
    font-size: 14px;
    line-height: 1.7;
    overflow: hidden;
}

.terminal span {
    color: var(--yellow);
}

.terminal div {
    overflow-wrap: anywhere;
}

.section {
    padding-block: 36px 86px;
}

.section h2 {
    max-width: 680px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.02;
}

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

.service-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--paper);
    padding: 22px;
}

.service-card h3 {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.15;
}

.service-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.footer {
    border-top: 1px solid var(--border);
    padding: 26px 0;
    color: var(--muted);
    font-size: 15px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer a {
    color: var(--muted);
    font-weight: 700;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
    color: var(--ink);
    outline: none;
}

@media (max-width: 820px) {
    .site-shell {
        width: calc(100vw - 24px);
        max-width: 680px;
        padding-inline: 0;
    }

    .site-header {
        padding-top: 14px;
    }

    .nav {
        align-items: flex-start;
    }

    .nav-links {
        display: none;
    }

    .hero,
    .hero-narrow {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 40px 58px;
    }

    .hero > *,
    .panel-inner,
    .status-card,
    .checklist li > * {
        min-width: 0;
    }

    .hero > * {
        width: min(100%, calc(100vw - 48px));
        justify-self: center;
    }

    h1 {
        font-size: clamp(42px, 12vw, 54px);
    }

    .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button,
    .link-button {
        width: 100%;
        text-align: center;
    }

    .status-header {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
