:root {
  color-scheme: dark;
  --ink: #f7f4ed;
  --muted: #aaa9b0;
  --canvas: #0a0b0f;
  --surface: #12141a;
  --line: rgba(255, 255, 255, 0.11);
  --blue: #76a7ff;
  --violet: #b39cff;
  --warning: #f7c66c;
  --success: #75d9ae;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% -5%, rgba(65, 108, 220, 0.18), transparent 28rem),
    radial-gradient(circle at 10% 22%, rgba(128, 83, 205, 0.10), transparent 28rem),
    var(--canvas);
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; }
a:hover { color: #fff; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; border-radius: 4px; }
.skip-link { position: absolute; left: 1rem; top: -5rem; padding: .7rem 1rem; background: #fff; color: #090a0e; z-index: 20; }
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(10, 11, 15, .86);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 760; letter-spacing: -.02em; }
.brand img { width: 38px; height: 38px; border-radius: 12px; }
.brand span { display: grid; line-height: 1.05; }
.brand small { margin-top: .28rem; color: var(--muted); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.site-header nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 1.15rem; }
.site-header nav a { color: var(--muted); font-size: .83rem; font-weight: 650; text-decoration: none; }
.site-header nav a[aria-current="page"] { color: var(--ink); }
.status-strip {
  display: flex;
  justify-content: center;
  padding: .55rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: .73rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.status-strip.ready { color: var(--success); background: rgba(46, 167, 119, .07); }
.status-strip.blocked { color: var(--warning); background: rgba(219, 146, 43, .08); }
main { width: min(920px, calc(100% - 40px)); margin: 0 auto; padding: clamp(4rem, 8vw, 8rem) 0; }
.eyebrow { color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; text-wrap: balance; }
h1 { max-width: 16ch; margin-top: 1rem; font: 600 clamp(3.2rem, 8vw, 6.6rem)/.94 Georgia, "Times New Roman", serif; letter-spacing: -.055em; }
.lede { max-width: 720px; margin: 2rem 0 0; color: #cac8cd; font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.55; }
.meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 3rem 0 4.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--line); }
.meta-grid div { min-width: 0; padding: 1.2rem 1.3rem; background: rgba(18, 20, 26, .94); }
.meta-grid dt { color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.meta-grid dd { margin: .45rem 0 0; overflow-wrap: anywhere; font-size: .88rem; }
.notice { margin: 0 0 4rem; padding: 1.35rem 1.5rem; border: 1px solid rgba(118, 167, 255, .3); border-radius: 18px; background: linear-gradient(135deg, rgba(69, 109, 199, .14), rgba(133, 93, 204, .08)); }
.notice strong { display: block; margin-bottom: .35rem; }
.notice p { margin: 0; color: #d1cfd4; }
.notice.warning { border-color: rgba(247, 198, 108, .3); background: rgba(247, 198, 108, .06); }
.policy-section { display: grid; grid-template-columns: minmax(150px, 230px) 1fr; gap: clamp(2rem, 7vw, 5rem); padding: 3.4rem 0; border-top: 1px solid var(--line); }
.policy-section h2 { font: 600 1.5rem/1.2 Georgia, "Times New Roman", serif; letter-spacing: -.025em; }
.policy-section h2 span { display: block; margin-bottom: .6rem; color: var(--blue); font: 750 .65rem/1 sans-serif; letter-spacing: .14em; }
.policy-section p:first-child { margin-top: 0; }
.policy-section p:last-child, .policy-section ul:last-child, .policy-section ol:last-child { margin-bottom: 0; }
.policy-section p, .policy-section li { color: #c1bfc5; }
.policy-section li + li { margin-top: .65rem; }
.policy-section strong { color: var(--ink); }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.fact-card { padding: 1.2rem; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.fact-card strong { display: block; margin-bottom: .35rem; }
.fact-card p { margin: 0; font-size: .9rem; }
.steps { padding: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; padding-left: 3.4rem; counter-increment: step; }
.steps li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: -.05rem; color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.cta { display: inline-flex; align-items: center; min-height: 46px; padding: .7rem 1.05rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); font-size: .84rem; font-weight: 720; text-decoration: none; }
.cta.primary { border-color: transparent; color: #07101e; background: linear-gradient(120deg, #96baff, #b7a7ff); }
.page-footer { border-top: 1px solid var(--line); }
.page-footer > div { display: flex; justify-content: space-between; gap: 2rem; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 2rem 0 3rem; color: var(--muted); font-size: .78rem; }
.page-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; }
.page-footer a { text-decoration: none; }
code { padding: .15rem .35rem; border: 1px solid var(--line); border-radius: 5px; color: #d7d0ff; background: #15151c; overflow-wrap: anywhere; }

@media (max-width: 760px) {
  .site-header { position: relative; align-items: flex-start; flex-direction: column; padding-block: 1rem; gap: 1rem; }
  .site-header nav { justify-content: flex-start; gap: .8rem 1rem; }
  .meta-grid { grid-template-columns: 1fr; }
  .policy-section { grid-template-columns: 1fr; gap: 1rem; }
  .fact-grid { grid-template-columns: 1fr; }
  .page-footer > div { flex-direction: column; }
  .page-footer nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print {
  :root { color-scheme: light; }
  body { color: #111; background: #fff; }
  .site-header, .status-strip, .page-footer, .cta-row, .skip-link { display: none; }
  main { width: 100%; padding: 0; }
  h1, h2, .policy-section strong { color: #111; }
  .lede, .policy-section p, .policy-section li { color: #333; }
  .policy-section, .meta-grid, .meta-grid div, .notice { border-color: #bbb; background: #fff; }
}
