/* SokaStats policy — same dark theme as landing */
:root {
  --brand: #2d72f3;
  --brand-lift: #6499ff;
  --bg: #05090e;
  --ink: #f6fbff;
  --muted: #8fa6bc;
  --outline: rgba(28, 40, 54, 0.95);
  --panel: rgba(13, 20, 28, 0.78);
  --body: #b7c7d8;
  --radius: 14px;
  --max: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Barlow", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 640px at 90% 0%, rgba(45, 114, 243, 0.16), transparent 55%),
    radial-gradient(800px 520px at 0% 100%, rgba(100, 153, 255, 0.08), transparent 50%),
    linear-gradient(165deg, #0a121b 0%, #05090e 48%, #070d14 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-lift);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: #8bb4ff;
}

.shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.75rem 0 3.5rem;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-lift);
}

.hero {
  margin-bottom: 1.75rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-lift);
}

.hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 0.4rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

section {
  padding: 0 0 1.35rem;
  margin: 0 0 1.15rem;
  border-bottom: 1px solid var(--outline);
}

section:last-of-type {
  border-bottom: 0;
}

section h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

section p,
section li {
  margin: 0 0 0.75rem;
  color: var(--body);
  font-size: 0.98rem;
}

section ul {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
}

section li {
  margin-bottom: 0.4rem;
}

.cards {
  display: grid;
  gap: 0.9rem;
}

.card {
  display: block;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  background: var(--panel);
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color 0.15s ease,
    transform 0.15s ease,
    background 0.15s ease;
}

.card:hover {
  border-color: rgba(100, 153, 255, 0.55);
  transform: translateY(-1px);
  background: rgba(20, 30, 42, 0.88);
  color: inherit;
}

.card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: var(--brand-lift);
}

@media (max-width: 520px) {
  .shell {
    width: calc(100% - 1.25rem);
    padding-top: 1.25rem;
  }

  .panel {
    padding: 1.1rem 1rem 0.25rem;
  }
}
