:root {
  --text: #182233;
  --text-muted: #5b6a7f;
  --bg: #edf2f8;
  --surface: #f8fbff;
  --surface-soft: #f2f6fc;
  --line: rgba(30, 57, 88, 0.13);
  --blue: #0a69da;
  --blue-strong: #095bc6;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1280px;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(120, 159, 237, 0.12), transparent 42%),
    radial-gradient(circle at 90% 10%, rgba(117, 195, 255, 0.1), transparent 38%),
    var(--bg);
  text-rendering: geometricPrecision;
}

.container {
  width: min(var(--container), calc(100% - 72px));
  margin-inline: auto;
}

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

@media (max-width: 900px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
}

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

:root {
  --page-bg: #eef4fb;
  --card-bg: #ffffff;
  --card-border: rgba(44, 70, 102, 0.12);
  --card-shadow: 0 12px 26px rgba(17, 38, 65, 0.08);
}

body {
  background: var(--page-bg);
}
