 :root {
  --bg: #070a12;
  --bg2: #0c1224;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: rgba(0, 0, 0, 0.45);
  --accent: #7cf4ff;
  --accent2: #ffdd6e;
  --good: #50fa7b;
  --warn: #ffb86c;
  --bad: #ff5555;
  --radius: 16px;
 }
 
 * {
  box-sizing: border-box;
 }
 
 html,
 body {
  height: 100%;
 }
 
 body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 15% 0%, rgba(124, 244, 255, 0.18), transparent 55%),
    radial-gradient(900px 600px at 85% 5%, rgba(255, 221, 110, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
 }
 
 a {
  color: inherit;
  text-decoration: none;
 }
 
 .container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
 }
 
 .header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }
 
 .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
 }
 
 .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
 }
 
 .brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 244, 255, 0.35), rgba(255, 221, 110, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px var(--shadow);
  font-weight: 800;
  letter-spacing: 0.5px;
 }
 
 .brand__name {
  font-family: Bangers, Inter, system-ui, sans-serif;
  font-size: 22px;
  letter-spacing: 1.3px;
 }
 
 .nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
 }
 
 .nav__link {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: background 120ms ease, color 120ms ease;
 }
 
 .nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
 }
 
 .nav__link--active {
  background: rgba(124, 244, 255, 0.12);
  border-color: rgba(124, 244, 255, 0.34);
  color: rgba(255, 255, 255, 0.92);
 }
 
 .hero {
  padding: 56px 0 30px;
 }
 
 .hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
 }
 
 .hero__title {
  margin: 0 0 10px;
  font-family: Bangers, Inter, system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: 1.6px;
  line-height: 0.96;
 }
 
 .hero__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
 }
 
 .hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 14px;
 }
 
 .hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
 }
 
 .pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
 }
 
 .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
 }
 
 .button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
 }
 
 .button--primary {
  background: linear-gradient(135deg, rgba(124, 244, 255, 0.24), rgba(255, 221, 110, 0.16));
 }
 
 .button--ghost {
  background: rgba(255, 255, 255, 0.03);
 }
 
 .hero__card {
  display: flex;
  justify-content: center;
 }
 
 .card {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
 }
 
 .card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }
 
 .card__title {
  margin-left: auto;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
 }
 
 .dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  opacity: 0.9;
 }
 
 .dot--red {
  background: var(--bad);
 }
 
 .dot--yellow {
  background: var(--warn);
 }
 
 .dot--green {
  background: var(--good);
 }
 
 .card__body {
  padding: 14px;
  display: grid;
  gap: 10px;
 }
 
 .row {
  display: grid;
  grid-template-columns: 40px 1fr 52px;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
 }
 
 .row--alert {
  background: rgba(255, 85, 85, 0.08);
  border-color: rgba(255, 85, 85, 0.22);
 }
 
 .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 26px;
  border-radius: 999px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
 }
 
 .name {
  font-weight: 700;
 }
 
 .pts {
  text-align: right;
  font-weight: 900;
  color: rgba(124, 244, 255, 0.9);
 }
 
 .card__bottom {
  padding: 12px 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-weight: 600;
 }
 
 .section {
  padding: 44px 0;
 }
 
 .section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 }
 
 .section__head h2 {
  margin: 0 0 8px;
  font-family: Bangers, Inter, system-ui, sans-serif;
  letter-spacing: 1.2px;
  font-size: 34px;
 }
 
 .section__head p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
 }
 
 .grid {
  display: grid;
  gap: 16px;
 }
 
 .grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }
 
 .grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
 }
 
 .panel {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
 }
 
 .panel--compact {
  padding: 16px;
 }
 
 .panel__kicker {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
 }
 
 .panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
 }
 
 .panel p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
 }
 
 .panel__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 10px;
 }
 
 .small {
  font-size: 13px;
 }
 
 .muted {
  color: var(--muted);
 }
 
 .code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
 }
 
 .codeblock {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  overflow-x: auto;
 }
 
 .list {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
 }
 
 .kv {
  display: grid;
  gap: 10px;
 }
 
 .kv__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
 }
 
 .kv__k {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 900;
  letter-spacing: 0.2px;
 }
 
 .kv__v a {
  color: rgba(124, 244, 255, 0.92);
  font-weight: 800;
 }
 
 .footer {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
 }
 
 .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
 }
 
 .footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
 }
 
 .footer__links a {
  color: var(--muted);
  font-weight: 700;
 }
 
 .footer__links a:hover {
  color: var(--text);
 }
 
 .toast {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
 }
 
 .toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
 }
 
 @media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
 
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
 }
