:root {
  --navy: #061a3a;
  --blue: #123e73;
  --red: #e31b23;
  --red-dark: #bc1118;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light: #eef2f7;
  --gray: #d9dee7;
  --gray-2: #8a94a6;
  --text: #1d2430;
  --muted: #5f6b7a;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow: 0 18px 45px rgba(6, 26, 58, 0.1);
  --shadow-soft: 0 10px 28px rgba(6, 26, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}

body,
button,
input,
select,
textarea {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  color: inherit;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

::selection {
  background: var(--red);
  color: var(--white);
}