:root {
    color-scheme: light;
    --bg: #f7f8fb;
    --card: #fff;
    --text: #18202b;
    --muted: #667085;
    --line: #e4e7ec;
    --accent: #175cd3;
    --accent-soft: #eff4ff;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
}
a { color: var(--accent); overflow-wrap: anywhere; }
.container { max-width: 1100px; margin: 0 auto; padding: 44px 22px 70px; }
.container.narrow { max-width: 850px; }
.hero, section {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 18px;
}
.hero { box-shadow: 0 8px 28px rgba(16,24,40,.05); }
.eyebrow {
    display: inline-block;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 700;
}
h1 { font-size: clamp(32px,5vw,48px); line-height: 1.15; margin: 14px 0 12px; }
h2 { font-size: 23px; margin-top: 0; }
.lede { font-size: 18px; color: #344054; }
.updated { color: var(--muted); font-size: 14px; margin: 20px 0 0; }
.identity {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    margin-top: 24px;
}
.identity > div {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
}
.identity span { display:block; color:var(--muted); font-size:12px; }
.identity strong { display:block; overflow-wrap:anywhere; }
.table-wrap { overflow-x:auto; border:1px solid var(--line); border-radius:12px; margin:18px 0; }
table { width:100%; min-width:760px; border-collapse:collapse; }
th,td { text-align:left; vertical-align:top; padding:13px 14px; border-bottom:1px solid var(--line); }
th { background:#f9fafb; font-size:13px; }
tr:last-child td { border-bottom:0; }
li { margin:8px 0; }
.contact { border-color:#c7d7fe; }
@media (max-width:720px) {
    .container { padding:20px 12px 48px; }
    .hero,section { padding:22px 18px; border-radius:14px; }
    .identity { grid-template-columns:1fr; }
}
