:root {
  color-scheme: dark;
  --bg: #05060d;
  --bg-soft: #080a12;
  --ink: #f7fbff;
  --muted: #a6b0c3;
  --muted-strong: #d2dae8;
  --line: rgba(210, 225, 255, 0.14);
  --line-strong: rgba(99, 232, 255, 0.42);
  --panel: rgba(13, 16, 26, 0.76);
  --panel-strong: rgba(17, 22, 36, 0.92);
  --cyan: #63e8ff;
  --mint: #65f2c2;
  --rose: #ff5b9e;
  --amber: #ffd36a;
  --lime: #b6ff6f;
  --violet: #9c8cff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --glow-cyan: 0 0 34px rgba(99, 232, 255, 0.26);
  --radius: 8px;
  --container: 1180px;
  --header-height: 74px;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(99, 232, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(255, 91, 158, 0.12), transparent 28rem),
    radial-gradient(circle at 56% 86%, rgba(255, 211, 106, 0.08), transparent 34rem),
    linear-gradient(180deg, #05060d 0%, #080914 42%, #05060d 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: 5.35rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.45rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
}

p {
  color: var(--muted);
}

::selection {
  background: rgba(99, 232, 255, 0.26);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(99, 232, 255, 0.76);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #070b14;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
