:root {
  color-scheme: dark;
  --bg: #08090d;
  --panel: #11141c;
  --panel-2: #171b24;
  --text: #f5f8ff;
  --muted: #b8c0cf;
  --soft: #7f8796;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #1ee6ff;
  --lime: #b6ff52;
  --pink: #ff4db8;
  --gold: #ffd166;
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 230, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 8rem, rgba(255, 77, 184, 0.12), transparent 28rem),
    linear-gradient(180deg, #08090d 0%, #101018 52%, #08090d 100%);
}

a {
  color: var(--cyan);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--lime);
}

.site-header,
.content,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px var(--shadow);
}

.skip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(30, 230, 255, 0.42);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  background: rgba(30, 230, 255, 0.08);
}

.skip-link:hover {
  border-color: rgba(182, 255, 82, 0.62);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 40px;
  align-items: center;
  min-height: 470px;
  padding: 24px 0 44px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 5.2rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

.policy-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.policy-meta div {
  min-width: 0;
  padding: 16px;
  background: rgba(17, 20, 28, 0.78);
}

.policy-meta dt {
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.policy-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.arena-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(30, 230, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(182, 255, 82, 0.08) 1px, transparent 1px),
    linear-gradient(160deg, rgba(10, 12, 18, 0.94), rgba(20, 22, 32, 0.84));
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: inset 0 0 48px rgba(30, 230, 255, 0.12), 0 22px 58px var(--shadow);
}

.arena-grid {
  position: absolute;
  inset: 32px;
  border: 2px solid rgba(30, 230, 255, 0.72);
  border-radius: 8px;
  box-shadow:
    0 0 18px rgba(30, 230, 255, 0.52),
    inset 0 0 28px rgba(30, 230, 255, 0.18);
}

.arena-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px dashed rgba(255, 209, 102, 0.72);
  transform: translateY(-50%);
}

.paddle,
.ball {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 22px currentColor;
}

.paddle {
  width: min(46%, 190px);
  height: 18px;
  border-radius: 8px;
}

.paddle-top {
  top: 80px;
  color: var(--pink);
  background: var(--pink);
}

.paddle-bottom {
  bottom: 80px;
  color: var(--lime);
  background: var(--lime);
}

.ball {
  top: 47%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--cyan);
  background: var(--cyan);
}

.content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 28px 0 72px;
}

.contents {
  position: sticky;
  top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 20, 28, 0.72);
}

.contents h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contents ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

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

.contents a:hover {
  color: var(--text);
}

.policy-body {
  display: grid;
  gap: 18px;
}

.policy-body section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 20, 28, 0.84);
}

.policy-body h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.policy-body h3 {
  margin: 22px 0 8px;
  color: var(--gold);
  font-size: 1.02rem;
}

.policy-body p,
.policy-body li {
  color: var(--muted);
}

.policy-body p:last-child,
.policy-body ul:last-child {
  margin-bottom: 0;
}

.policy-body ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.policy-body strong {
  color: var(--text);
}

.site-footer {
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  h1 {
    font-size: 4.2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .arena-visual {
    min-height: 330px;
  }

  .content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contents {
    position: static;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 3rem;
  }

  .policy-body h2 {
    font-size: 1.55rem;
  }

  .site-header,
  .content,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .brand-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    gap: 28px;
    padding-bottom: 30px;
  }

  .policy-meta {
    grid-template-columns: 1fr;
  }

  .policy-body section {
    padding: 22px;
  }
}
