:root {
  color-scheme: dark;
  --ink: #f6f2e9;
  --muted: #aaa69d;
  --coal: #0c0d0e;
  --panel: #151719;
  --line: rgba(246, 242, 233, 0.14);
  --lime: #c7ff45;
  --orange: #ff7146;
  --blue: #72a7ff;
  --radius: 22px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body { margin: 0; min-height: 100%; background: var(--coal); color: var(--ink); }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, input, textarea, select { font: inherit; }
button { touch-action: manipulation; }

a { color: inherit; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-mark::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(199, 255, 69, .65);
}

.button {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--coal);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary { background: transparent; color: var(--ink); }
.button.accent { background: var(--lime); border-color: var(--lime); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.sr-only {
  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: .01ms !important; transition-duration: .01ms !important; }
}
