:root {
  --ng-bg: #07000f;
  --ng-surface: rgba(255, 255, 255, 0.06);
  --ng-surface-2: rgba(255, 255, 255, 0.085);
  --ng-border: rgba(157, 0, 255, 0.45);
  --ng-border-soft: rgba(255, 255, 255, 0.12);
  --ng-brand: #9d00ff;
  --ng-brand-dark: #2e004f;
  --ng-text: #ffffff;
  --ng-muted: rgba(255, 255, 255, 0.65);
  --ng-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --ng-radius: 16px;
}

html,
body {
  height: 100%;
}

html {
  background: var(--ng-bg);
}

body {
  font-family: "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: transparent;
  color: var(--ng-text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(157, 0, 255, 0.18), transparent 60%),
    radial-gradient(900px 700px at 110% 20%, rgba(46, 0, 79, 0.55), transparent 55%),
    var(--ng-bg);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
}

.ui.inverted.button.ng-cta,
.ui.button.ng-cta {
  background: #fff;
  color: #000;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ui.button.ng-cta:hover {
  background: var(--ng-brand);
  color: #fff;
}

