:root {
  --color-ink: #14213d;
  --color-ink-soft: #41506c;
  --color-brand: #1c5cff;
  --color-brand-deep: #12369a;
  --color-brand-primary: #12369a;
  --color-accent: #12b5a6;
  --color-paper: #f6f3ec;
  --color-surface: #fffdf9;
  --color-surface-strong: #ffffff;
  --color-line: rgba(20, 33, 61, 0.1);
  --color-shadow: rgba(20, 33, 61, 0.12);
  --radius-sm: 18px;
  --radius-md: 30px;
  --radius-lg: 44px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --max-width: 1180px;
  --font-display: "Poppins", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-accent: "Roboto Slab", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(28, 92, 255, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(18, 181, 166, 0.12), transparent 24%),
    linear-gradient(180deg, #fffefb 0%, var(--color-paper) 100%);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

ul,
ol {
  padding-left: 1.2rem;
}

.noscript-notice {
  margin: 0;
  padding: var(--space-3) var(--space-4);
  background: #fff3cd;
  color: #664d03;
  font-size: 0.95rem;
  text-align: center;
  border-bottom: 1px solid #ffda6a;
}
