* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 17% 12%, rgba(24, 231, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(7, 93, 255, 0.28), transparent 30rem),
    linear-gradient(180deg, #020711 0%, #041021 42%, #020711 100%);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(24, 231, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 231, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

main {
  min-height: calc(100vh - 176px);
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(24, 231, 255, 0.54);
  overflow-wrap: anywhere;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.92rem 1.12rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border-color: rgba(24, 231, 255, 0.66);
  background: linear-gradient(135deg, #18e7ff, #075dff);
  color: #ffffff;
  box-shadow: 0 0 26px rgba(24, 231, 255, 0.34), 0 16px 32px rgba(7, 93, 255, 0.3);
}

.button-primary:hover {
  box-shadow: 0 0 34px rgba(24, 231, 255, 0.5), 0 18px 38px rgba(7, 93, 255, 0.38);
}

.button-secondary {
  border-color: rgba(24, 231, 255, 0.25);
  background: rgba(5, 16, 34, 0.72);
  color: var(--ink);
  box-shadow: inset 0 0 20px rgba(24, 231, 255, 0.05);
}

.button-secondary:hover {
  border-color: rgba(24, 231, 255, 0.52);
  background: rgba(8, 28, 58, 0.88);
}

.text-link {
  color: var(--teal);
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid rgba(24, 231, 255, 0.65);
  outline-offset: 3px;
}
