:root {
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #d9e2ec;
  --bg: #ffffff;
  --bg-soft: #f4f7f9;
  --bg-warm: #fff7e8;
  --navy: #071827;
  --blue: #175cd3;
  --teal: #0e7f86;
  --green: #08b87a;
  --amber: #e5a72f;
  --red: #c2410c;
  --shadow-sm: 0 8px 22px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 24px 58px rgba(16, 24, 40, 0.14);
  --radius-sm: 4px;
  --radius-md: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  min-height: 70vh;
}

img,
svg {
  max-width: 100%;
}

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

svg {
  display: block;
}

::selection {
  background: rgba(31, 138, 155, 0.18);
}
