:root {
  --bg: #05070b;
  --panel: #0b1220;
  --panel-2: #0d1728;
  --ink: #eef4ff;
  --muted: #9aa8c0;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --accent: #5cd5ff;
  --brand: #d64535;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(92, 213, 255, 0.12), transparent 40%),
    radial-gradient(circle at 92% 72%, rgba(214, 69, 53, 0.10), transparent 38%),
    #05070b;
  font-family: "Barlow", "Segoe UI", sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 12%, black 46%, transparent 100%);
}
a { color: inherit; text-decoration: none; }

.legal-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 24px));
  margin: 12px auto;
  padding-bottom: 24px;
}
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 10, 18, .78);
  backdrop-filter: blur(10px);
  padding: 10px 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,.02);
}
.brand-mark svg { width: 18px; height: 18px; display: block; }
.brand-name {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 28px;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.brand-sub {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.02);
  transition: .16s ease;
}
.chip-link:hover { color: var(--ink); border-color: var(--line-2); }
.chip-link.primary {
  color: #fff;
  background: var(--brand);
  border-color: transparent;
}

.legal-main {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}
.hero-card,
.section-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  padding: 18px;
}
.hero-card {
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -8%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(92,213,255,.08);
  filter: blur(60px);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -6% -34% auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(214,69,53,.07);
  filter: blur(60px);
}
.hero-inner { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(92,213,255,.5);
}
h1 {
  margin: 10px 0 6px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(34px, 6vw, 58px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.hero-card p {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.55;
}
.meta-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.meta-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.02);
}

.section-card h2 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 34px;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.section-card h3 {
  margin: 16px 0 8px;
  font-size: 15px;
  letter-spacing: .02em;
}
.section-card p,
.section-card li {
  color: var(--muted);
  line-height: 1.55;
}
.section-card p { margin: 0 0 10px; }
.section-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.data-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.015);
}
.data-row dt {
  margin: 0;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.data-row dd {
  margin: 6px 0 0;
  color: var(--ink);
  line-height: 1.45;
}
.muted-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.015);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.legal-footer {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.01);
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.legal-footer small { color: var(--muted); }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 860px) {
  .legal-shell { width: min(1180px, calc(100% - 32px)); }
  .hero-card, .section-card { padding: 22px; }
  .data-grid.two-col { grid-template-columns: 1fr 1fr; }
}

