:root {
  --wl-bg: #07100c;
  --wl-bg-2: #0b1711;
  --wl-surface: #101b15;
  --wl-surface-2: #14231b;
  --wl-surface-3: #192b21;
  --wl-border: rgba(116, 255, 169, 0.16);
  --wl-border-strong: rgba(116, 255, 169, 0.32);
  --wl-text: #edf8f0;
  --wl-muted: #9fb4a7;
  --wl-green: #45e083;
  --wl-green-soft: rgba(69, 224, 131, 0.13);
  --wl-green-glow: rgba(69, 224, 131, 0.30);
  --wl-danger: #ff6b6b;
  --wl-warning: #ffd166;
  --wl-radius-sm: 10px;
  --wl-radius: 18px;
  --wl-radius-lg: 28px;
  --wl-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --wl-max-width: 1180px;
  --wl-sidebar-width: 280px;
  --wl-transition: 160ms ease;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--wl-bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--wl-text);
  background:
    radial-gradient(circle at top left, rgba(69, 224, 131, 0.16), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(44, 117, 76, 0.14), transparent 36rem),
    linear-gradient(135deg, var(--wl-bg), var(--wl-bg-2));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--wl-green); }
button, input { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: 0.58; }

.wl-page-shell { min-height: 100vh; }
.wl-muted { color: var(--wl-muted); }
.wl-kicker {
  margin: 0 0 0.9rem;
  color: var(--wl-green);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}
