:root {
  --bg: #f5f7fb;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --stroke: rgba(13, 22, 42, 0.08);
  --text: #0b1b2b;
  --muted: rgba(11, 27, 43, 0.65);
  --accent: #0057ff;
  --accent-2: #0abbb5;
  --accent-soft: rgba(0, 87, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 60%, #ecf2fb 100%);
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(0, 87, 255, 0.08), transparent 45%);
  filter: blur(120px);
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 100px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button,
input,
select,
textarea {
  font-family: inherit;
}
