:root {
  color-scheme: light dark;
  --bg: #f5f6fa;
  --surface: rgba(255, 255, 255, .82);
  --text: #11131a;
  --muted: #626978;
  --line: rgba(17, 19, 26, .11);
  --accent: #3867f0;
  --accent-2: #6f48e8;
}
* { box-sizing: border-box; }
html { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", sans-serif; line-height: 1.65; background: var(--bg); color: var(--text); }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 80% -10%, rgba(111, 72, 232, .16), transparent 35rem), radial-gradient(circle at -10% 30%, rgba(56, 103, 240, .12), transparent 28rem); }
a { color: var(--accent); text-underline-offset: .2em; }
.site-header, main, footer { width: min(1080px, calc(100% - 40px)); margin-inline: auto; }
.site-header { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; gap: 10px; align-items: center; color: var(--text); font-weight: 720; text-decoration: none; }
.mark { display: grid; place-items: center; width: 38px; height: 38px; color: white; font-size: 12px; letter-spacing: -.02em; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 8px 24px rgba(56, 103, 240, .22); }
nav { display: flex; gap: 20px; }
nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
nav a[aria-current="page"] { color: var(--text); font-weight: 650; }
.hero { padding: 104px 0 80px; max-width: 850px; }
.eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
h1 { margin: 12px 0 22px; font-size: clamp(44px, 8vw, 78px); line-height: 1.04; letter-spacing: -.055em; }
.lede { max-width: 720px; font-size: clamp(19px, 3vw, 25px); color: var(--muted); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pills span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: 13px; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid article, .statement { padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; backdrop-filter: blur(20px); }
h2 { margin: 0 0 10px; font-size: 25px; letter-spacing: -.025em; }
h3 { margin: 28px 0 6px; font-size: 18px; }
.grid p, .statement p { margin: 0; color: var(--muted); }
.statement { margin-top: 16px; padding-block: 42px; }
.statement p + p { margin-top: 22px; }
.button { display: inline-block; padding: 10px 16px; border-radius: 12px; background: var(--accent); color: white; text-decoration: none; font-weight: 650; }
.document { max-width: 760px; padding: 72px 0 88px; }
.document h1 { font-size: clamp(42px, 7vw, 62px); }
.document h2 { margin-top: 42px; }
.document p, .document li { color: var(--muted); }
.document li + li { margin-top: 8px; }
address { padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); font-style: normal; }
footer { display: flex; justify-content: space-between; gap: 24px; padding: 28px 0 44px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
footer a { color: inherit; }
@media (max-width: 700px) {
  .site-header { align-items: flex-start; padding: 18px 0; }
  .brand span:last-child { display: none; }
  .hero { padding: 72px 0 52px; }
  .grid { grid-template-columns: 1fr; }
  .grid article, .statement { padding: 24px; }
  footer { flex-direction: column; }
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #090b10; --surface: rgba(25, 28, 37, .78); --text: #f5f7fc; --muted: #a4acbc; --line: rgba(255, 255, 255, .12); }
}
