@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

:root {
  --scout-green: #355e3b;
  --scout-green-deep: #1f4127;
  --scout-blue: #0a318c;
  --scout-blue-deep: #081f56;
  --scout-yellow: #edea19;
  --text-color: #213027;
  --text-muted: #5a6a62;
  --card-bg: #ffffff;
  --bg-light: #f4f7f1;
  --border-soft: rgba(18, 44, 29, 0.1);
  --shadow-soft: 0 24px 60px rgba(17, 39, 24, 0.12);
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: "Sora", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(237, 234, 25, 0.2), transparent 25%),
    radial-gradient(circle at top right, rgba(10, 49, 140, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f8f2 0%, #eef4ef 48%, #f7fbf8 100%);
  color: var(--text-color);
}

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

button {
  cursor: pointer;
}

svg,
img {
  width: 100%;
  display: block;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline-offset: 3px;
}

::selection {
  background: rgba(237, 234, 25, 0.35);
}
