:root {
  color: #f2f3f6;
  background: #020305;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
  --line: rgba(255, 255, 255, .11);
  --ink-2: #aab0bb;
  --ink-3: #858d99;
  --cyan: #00c8ff;
  --violet: #8b5cff;
}
* { box-sizing: border-box; }
html { background: #020305; }
body { margin: 0; min-width: 320px; background: radial-gradient(circle at 85% 0, rgba(139,92,255,.11), transparent 30%), #020305; color: #f2f3f6; }
a { color: #87dcff; text-underline-offset: 3px; }
header { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; padding: 10px clamp(20px,5vw,64px); border-bottom: 1px solid var(--line); background: rgba(2,3,5,.9); backdrop-filter: blur(16px); }
header img { width: 168px; height: 52px; object-fit: contain; }
header a:last-child { color: var(--ink-2); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-decoration: none; }
main { width: min(100% - 40px, 900px); margin: 0 auto; padding: clamp(64px,9vw,110px) 0 96px; }
.eyebrow { margin: 0 0 18px; color: var(--cyan); font-size: 11px; font-weight: 750; letter-spacing: .22em; }
h1 { max-width: 760px; margin: 0 0 20px; font-size: clamp(44px,7vw,72px); font-weight: 420; line-height: .98; letter-spacing: -.055em; }
h1 span { color: transparent; background: linear-gradient(90deg,var(--cyan),#5d7cff,var(--violet)); background-clip: text; -webkit-background-clip: text; }
.lede { max-width: 720px; margin-bottom: 48px; color: var(--ink-2); font-size: 17px; line-height: 1.75; }
.summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 38px 0 62px; border: 1px solid var(--line); background: var(--line); }
.summary div { padding: 24px; background: #06080c; }
.summary strong { display: block; margin-bottom: 9px; color: #eef0f4; font-size: 12px; letter-spacing: .08em; }
.summary span { color: var(--ink-3); font-size: 13px; line-height: 1.6; }
section { padding: 34px 0; border-top: 1px solid var(--line); }
h2 { margin: 0 0 16px; font-size: 27px; font-weight: 520; letter-spacing: -.025em; }
h3 { margin: 24px 0 10px; font-size: 16px; }
p, li, td, th { color: var(--ink-2); font-size: 15px; line-height: 1.75; }
ul { padding-left: 21px; }
li + li { margin-top: 8px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: #dce0e7; font-size: 12px; letter-spacing: .08em; }
tr:last-child td { border-bottom: 0; }
.callout { padding: 20px 22px; border: 1px solid rgba(0,200,255,.24); border-left: 3px solid var(--cyan); background: rgba(0,200,255,.04); }
footer { padding: 28px 20px; border-top: 1px solid var(--line); color: var(--ink-3); text-align: center; font-size: 12px; }
@media (max-width: 680px) {
  header { padding-inline: 18px; }
  header img { width: 145px; }
  main { width: min(100% - 36px, 900px); padding-top: 58px; }
  .summary { grid-template-columns: 1fr; }
}
