:root {
  color-scheme: light;
  --ao-navy: #07111d;
  --ao-navy-2: #011931;
  --ao-orange: #ff6a00;
  --ao-orange-dark: #e85f00;
  --ao-yellow: #fee601;
  --ao-green: #00a650;
  --ao-white: #ffffff;
  --ao-surface: #f7f9fc;
  --ao-line: #dce4ee;
  --ao-muted: #66758b;
  --ao-danger: #d62f3f;
  --font-display: "Plus Jakarta Sans", "Avenir Next", Avenir, system-ui, sans-serif;
  --font-body: Inter, "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body { margin: 0; color: var(--ao-navy); background: var(--ao-surface); }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: .68rem 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid rgba(255, 106, 0, .4);
  outline-offset: 2px;
}
.button--primary { color: #fff; background: linear-gradient(135deg, var(--ao-orange), #ff8a24); box-shadow: 0 8px 22px rgba(255, 106, 0, .25); }
.button--primary:hover { background: linear-gradient(135deg, var(--ao-orange-dark), var(--ao-orange)); }
.button--secondary { color: var(--ao-navy); background: #fff; border-color: var(--ao-line); }
.button--ghost { color: #dce6f2; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.button--danger { color: #b21f31; background: #fff4f5; border-color: #ffd1d7; }
.button--wide { width: 100%; }
.button.is-disabled { pointer-events: none; opacity: .45; }

.eyebrow {
  display: block;
  margin-block-end: .45rem;
  color: var(--ao-orange);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.alert { border: 1px solid; border-radius: 12px; padding: .9rem 1rem; line-height: 1.5; }
.alert--success { color: #075e35; background: #eafaf2; border-color: #a6e6c5; }
.alert--error { color: #982133; background: #fff1f3; border-color: #f8bac3; }
.alert ul { margin-block: .55rem 0; padding-inline-start: 1.25rem; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; }

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