:root {
  --aoretol-charcoal: #111315;
  --aoretol-surface: #1a1e21;
  --aoretol-off-white: #f5f7f2;
  --aoretol-muted: #a9b0b3;
  --aoretol-signal: #b7ff35;
  --aoretol-line: #30363a;
  --aoretol-page-padding: clamp(1rem, 3vw, 2rem);
  --aoretol-section-space: clamp(4.5rem, 8vw, 8rem);
  --aoretol-radius: 4px;
  --aoretol-transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a,
button,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

a {
  text-underline-offset: 0.18em;
}

:focus-visible {
  outline: 3px solid var(--aoretol-signal);
  outline-offset: 4px;
}

::selection {
  color: var(--aoretol-charcoal);
  background: var(--aoretol-signal);
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--aoretol-charcoal);
  background: var(--aoretol-signal);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

