:root {
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1a1c1e;
    background: #fcfcfb;
}

* {
    box-sizing: border-box;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background: #fcfcfb;
}

.background-grid,
.background-glow,
.background-rings {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.background-grid {
    background-image: linear-gradient(to right, rgb(26 28 30 / 5%) 1px, transparent 1px), linear-gradient(to bottom, rgb(26 28 30 / 5%) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
}

.background-glow {
    background:
        radial-gradient(ellipse 55% 45% at 72% -8%, rgb(194 231 204 / 85%), transparent 65%),
        radial-gradient(ellipse 45% 38% at 12% 12%, rgb(201 226 239 / 60%), transparent 60%),
        radial-gradient(ellipse 60% 35% at 50% 110%, rgb(210 235 215 / 50%), transparent 60%);
}

.background-rings {
    overflow: hidden;
}

.background-rings span {
    position: absolute;
    top: -340px;
    left: 50%;
    border: 1px solid rgb(61 107 79 / 12%);
    border-radius: 50%;
    transform: translateX(-50%);
}

.background-rings span:nth-child(1) {
    width: 640px;
    height: 640px;
    top: -180px;
    border-color: rgb(61 107 79 / 25%);
}

.background-rings span:nth-child(2) {
    width: 880px;
    height: 880px;
    top: -260px;
}

.background-rings span:nth-child(3) {
    width: 1120px;
    height: 1120px;
    border-style: dashed;
}

.page-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(100% - 48px, 640px);
    min-height: 100vh;
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 40px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

.brand-mark {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: #3d6b4f;
}

.service-label {
    border: 1px solid #dde3dd;
    border-radius: 999px;
    padding: 5px 12px;
    background: #f4f7f4;
    color: #2e5540;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
}

main {
    display: flex;
    flex: 1;
    align-items: center;
}

.hero {
    width: 100%;
    padding-block: 72px;
}

.changelog {
    width: 100%;
    padding-block: 72px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #3d6b4f;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
}

h1 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 7vw, 2.8rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.release-entry {
    max-width: 54ch;
    border: 1px solid #e2e4e0;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
}

.release-entry header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef0ec;
}

.release-entry h2 {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1rem;
}

.release-entry time {
    color: #6b706c;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
}

.release-entry ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 20px;
    color: #4a4f4c;
    line-height: 1.55;
}

.release-entry code {
    padding: 2px 4px;
    border-radius: 3px;
    background: #f0f3f0;
    color: #2e5540;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.875em;
}

.hero > p {
    max-width: 54ch;
    margin: 0 0 12px;
    color: #4a4f4c;
    font-size: 1.0625rem;
    line-height: 1.65;
}

.resource-links {
    display: grid;
    gap: 10px;
    margin-top: 40px;
}

.resource-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid #e2e4e0;
    border-radius: 8px;
    padding: 16px 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.resource-links a:hover {
    border-color: #3d6b4f;
    background: #fbfdfb;
    transform: translateY(-1px);
}

.resource-links a:focus-visible,
.brand:focus-visible {
    outline: 3px solid rgb(61 107 79 / 35%);
    outline-offset: 3px;
}

.resource-links strong,
.resource-links small {
    display: block;
}

.resource-links strong {
    font-size: 0.9375rem;
}

.resource-links small,
footer {
    color: #6b706c;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.78125rem;
}

.resource-links small {
    margin-top: 3px;
}

.arrow {
    color: #3d6b4f;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1rem;
}

footer {
    display: flex;
    gap: 10px;
    padding-bottom: 32px;
    color: #9a9f9a;
}

@media (max-width: 440px) {
    .page-shell {
        width: min(100% - 32px, 640px);
    }

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

    .hero {
        padding-block: 56px;
    }

    .changelog {
        padding-block: 56px;
    }

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