.static-page {
    max-width: 760px;
}
.static-hero {
    margin-bottom: 48px;
}
.static-hero h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.static-hero h1 em {
    color: var(--accent);
    font-style: normal;
}
.static-hero p {
    font-size: 18px;
    color: var(--ink-2);
    line-height: 1.7;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.about-card h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-card p {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.75;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}
@media (max-width: 560px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
.value-item {
    background: var(--accent-light);
    border-radius: 10px;
    padding: 20px;
}
.value-item .icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}
.value-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}
.value-item p {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.6;
}

.disclosure-notice {
    background: #fef3c7;
    border: 1.5px solid #f59e0b;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
    color: #92400e;
    margin-top: 32px;
    line-height: 1.6;
}
.disclosure-notice a {
    color: #92400e;
    font-weight: 600;
}