:root {
  --bg: #0b0f09;
  --bg-elevated: #121a10;
  --bg-soft: #171f14;
  --bg-card: rgba(255, 255, 255, 0.03);
  --line: rgba(205, 224, 194, 0.12);
  --line-strong: rgba(205, 224, 194, 0.22);
  --text: #edf1e8;
  --muted: #a8b2a2;
  --primary: #5d6f2a;
  --primary-strong: #809a39;
  --gold: #d4af37;
  --gold-strong: #f0c85a;
  --accent: #7f1d1d;
  --accent-soft: rgba(127, 29, 29, 0.22);
  --focus: #d7e882;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.22);
  --radius: 20px;
  --radius-sm: 14px;
  --content-width: 1180px;
  --font-sans: "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top, rgba(93, 111, 42, 0.24), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(127, 29, 29, 0.14), transparent 18%),
    linear-gradient(180deg, #10170d 0%, var(--bg) 55%);
  color: var(--text);
}

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

a,
button,
input,
summary,
.regiment-card {
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

button,
input,
audio {
  font: inherit;
}
