:root {
  color-scheme: dark;
  --bg: #050a18;
  --bg-soft: #0a1124;
  --card: rgba(9, 18, 38, 0.95);
  --card-alt: rgba(12, 24, 49, 0.95);
  --line: rgba(92, 116, 164, 0.18);
  --line-strong: rgba(120, 96, 255, 0.25);
  --text: #eef2ff;
  --muted: #9eabcc;
  --accent: #8d76ff;
  --accent-2: #6a58d8;
  --accent-soft: rgba(141, 118, 255, 0.12);
  --max: 1100px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 74, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 10% 100%, rgba(92, 74, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #060c1e 0%, #050913 65%, #04070f 100%);
}
a { color: #c2b8ff; text-decoration: none; }
a:hover { text-decoration: underline; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5, 10, 24, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 900;
  background: radial-gradient(circle at 30% 30%, #a795ff, var(--accent-2));
  box-shadow: 0 12px 28px rgba(106, 88, 216, 0.38);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-overline { color: #7480a5; font-size: 11px; letter-spacing: .16em; font-weight: 800; }
.brand-title { color: #f3f0ff; font-size: 28px; font-weight: 800; letter-spacing: -.03em; }
.mini-link {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: #d7ddf2;
  font-weight: 700;
}
.mini-link:hover { text-decoration: none; border-color: var(--line-strong); }

.layout { max-width: var(--max); margin: 0 auto; padding: 30px 20px 62px; }
.hero, .document-card, .compact-info-card {
  background: linear-gradient(180deg, rgba(10, 18, 36, 0.98), rgba(7, 13, 28, 0.98));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.hero {
  padding: 28px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto -15% -28% auto;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(141,118,255,0.24), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: stretch;
}
.hero-side {
  display: grid;
  gap: 12px;
  align-content: start;
}
.mini-stat {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.05);
}
.mini-stat-label {
  display: block;
  color: #7883a7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mini-stat strong {
  font-size: 20px;
  line-height: 1.2;
  color: #f1eeff;
}
.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #cfc4ff;
  font-size: 13px;
  font-weight: 800;
}
.eyebrow.small { font-size: 12px; padding: 6px 10px; }
h1 {
  margin: 16px 0 10px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.hero-subtitle {
  margin: 0 0 10px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  color: #d9ddf7;
}
.hero-description {
  margin: 0 0 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 18px; }
.revision, .print-btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: #d9deef;
  font-size: 14px;
  font-weight: 700;
}
.print-btn { cursor: pointer; }
.print-btn:hover { background: rgba(141,118,255,0.08); border-color: var(--line-strong); }
.doc-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  position: relative; z-index: 1;
}
.pill {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.05);
  color: #dde2f3;
  font-weight: 800;
}
.pill:hover { text-decoration: none; border-color: var(--line-strong); }
.pill.active {
  color: #0b0f20;
  background: linear-gradient(180deg, #ab98ff, #8b73ff);
  border-color: transparent;
}
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.doc-card {
  display: block;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10,18,36,.98), rgba(7,13,28,.98));
  border: 1px solid var(--line);
  box-shadow: 0 22px 52px rgba(0,0,0,0.18);
  color: var(--text);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.doc-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 58px rgba(0,0,0,0.24);
}
.doc-type {
  display: inline-flex;
  margin-bottom: 12px;
  color: #c9bcff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.doc-card h2 { margin: 0 0 10px; font-size: 24px; line-height: 1.15; }
.doc-card p { margin: 0 0 18px; color: var(--muted); }
.doc-open { color: #b8a9ff; font-weight: 800; }

.compact-info-card {
  padding: 26px 28px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 18px;
  align-items: start;
}
.operator-intro h2 {
  margin: 16px 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.operator-intro p { margin: 0; color: var(--muted); font-size: 16px; max-width: 360px; }
.operator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.operator-tile {
  min-height: 86px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.045);
}
.operator-tile span {
  display: block;
  margin-bottom: 8px;
  color: #8d99bc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.operator-tile strong {
  display: block;
  color: #f1f4ff;
  font-size: 17px;
  line-height: 1.25;
}
.operator-tile a { color: #f1f4ff; }

.document-card { padding: clamp(22px, 4vw, 38px); }
.document-card h2 {
  scroll-margin-top: 90px;
  margin: 34px 0 14px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
  letter-spacing: -.02em;
}
.document-card h2:first-of-type { margin-top: 12px; }
.document-card p { margin: 0 0 15px; color: #e7ecfb; font-size: 16px; }
.document-card .lead-note, .callout {
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(141,118,255,0.18);
  background: rgba(141,118,255,0.06);
  color: #d9def5;
}
.callout { margin: 14px 0 22px; }
.legal-list { margin: 4px 0 18px; padding-left: 24px; }
.legal-list li { margin: 7px 0; color: #e7ecfb; }
.table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: rgba(255,255,255,0.02);
}
th, td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: left;
  vertical-align: top;
}
th {
  background: rgba(255,255,255,0.04);
  color: #f1f4ff;
  font-size: 14px;
}
td:first-child { color: #b7c1df; font-weight: 700; width: 30%; }
tr:last-child td { border-bottom: 0; }
td:last-child, th:last-child { border-right: 0; }

.toc {
  margin-bottom: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
}
.toc summary { cursor: pointer; padding: 14px 16px; color: #e1e5f5; font-weight: 800; }
.toc-links {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}
.toc-links a { color: #c8bcff; }

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 34px;
  color: #6e7a9e;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
}
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(12, 21, 41, 0.92);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

@media (max-width: 860px) {
  .hero-grid,
  .compact-info-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar-inner { padding: 12px 14px; }
  .layout { padding: 22px 12px 54px; }
  .hero, .document-card, .compact-info-card { border-radius: 22px; }
  .hero { padding: 20px 18px; }
  .document-card, .compact-info-card { padding: 18px 16px; }
  .documents-grid { grid-template-columns: 1fr; }
  .doc-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .pill { flex: 0 0 auto; }
  .brand-title { font-size: 24px; }
  .brand-overline { font-size: 10px; }
  .mini-link { font-size: 13px; }
  .operator-grid { grid-template-columns: 1fr; }
  .operator-tile strong { font-size: 16px; }
}

@media print {
  body { background: #fff; color: #111; }
  .topbar, .doc-nav, .print-btn, .to-top, .footer, .hero-side, .toc { display: none !important; }
  .layout { max-width: none; padding: 0; }
  .hero, .document-card, .compact-info-card { background: #fff; border: 0; box-shadow: none; }
  .hero { padding: 0 0 18px; }
  .document-card, .compact-info-card { padding: 0; }
  h1, h2, p, strong, span, a, li, td, th { color: #111 !important; }
  table { background: #fff; }
  .callout, .lead-note { background: #f5f5f5 !important; border-color: #ccc !important; }
}
