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

html, body {
    background: #341f34;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #fafafa;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
    padding: 28px 24px 0;
}

.wordmark {
    font-family: 'Micro 5', monospace;
    font-size: 40px;
    line-height: 1;
    color: #fafafa;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 8px;
    opacity: 0.6;
}

nav a {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #fafafa;
    text-decoration: none;
    white-space: nowrap;
}

nav a:hover,
nav a[aria-current="page"] {
    background: rgba(250, 250, 250, 0.1);
}

main {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 24px 96px;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.updated {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(250, 250, 250, 0.55);
}

.lede {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(250, 250, 250, 0.85);
}

h2 {
    margin: 40px 0 12px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

h3 {
    margin: 22px 0 6px;
    font-size: 16px;
    font-weight: 600;
}

p, li {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.85);
}

p + p {
    margin-top: 12px;
}

ul {
    padding-left: 22px;
    margin-top: 8px;
}

li + li {
    margin-top: 6px;
}

a {
    color: #fafafa;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(250, 250, 250, 0.4);
}

a:hover {
    text-decoration-color: #fafafa;
}

strong {
    color: #fafafa;
    font-weight: 600;
}

.card {
    margin-top: 16px;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(250, 250, 250, 0.06);
}

.card p:first-child {
    margin-top: 0;
}

.contact {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #fafafa;
    color: #341f34;
    font-weight: 600;
    text-decoration: none;
}

.contact:hover {
    background: #fff;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

th, td {
    text-align: left;
    vertical-align: top;
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.12);
    color: rgba(250, 250, 250, 0.85);
}

th {
    color: #fafafa;
    font-weight: 600;
    white-space: nowrap;
}

details {
    border-bottom: 1px solid rgba(250, 250, 250, 0.12);
}

summary {
    cursor: pointer;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fafafa;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    color: rgba(250, 250, 250, 0.5);
    font-weight: 400;
}

details[open] summary::after {
    content: "–";
}

details p,
details ul {
    padding-bottom: 16px;
}

details p + p {
    margin-top: 10px;
}

footer {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 48px;
    font-size: 14px;
    color: rgba(250, 250, 250, 0.45);
}

footer a {
    color: rgba(250, 250, 250, 0.7);
}
