:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --bg-elev: #ffffff;
  --panel: #ffffff;
  --panel-2: #eef3f8;
  --line: rgba(19, 39, 61, 0.09);
  --line-strong: rgba(19, 39, 61, 0.16);
  --text: #122033;
  --muted: #5f6f82;
  --faint: #7d8b9b;
  --accent: #0f8c73;
  --accent-2: #0b6b58;
  --warn: #c65d45;
  --good: #178f63;
  --shadow: 0 18px 44px rgba(20, 41, 64, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --text-xs: clamp(0.72rem, 0.7rem + 0.06vw, 0.78rem);
  --text-sm: clamp(0.84rem, 0.8rem + 0.12vw, 0.92rem);
  --text-md: clamp(0.96rem, 0.92rem + 0.16vw, 1.04rem);
  --text-lg: clamp(1.08rem, 1.02rem + 0.28vw, 1.22rem);
  --text-xl: clamp(1.42rem, 1.24rem + 0.72vw, 1.9rem);
  --text-2xl: clamp(1.9rem, 1.58rem + 1.2vw, 2.7rem);
  --max-width: 1480px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: linear-gradient(180deg, #f8fbfe 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.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;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: #122033;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus-visible {
  top: 16px;
}
