html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --maxWidth: 1440px;

  --color-ink: #15181E;
  --color-ink-soft: #565E6C;
  --color-bg: #FAFAF8;
  --color-bg-alt: #F3F2EE;
  --color-surface: #FFFFFF;
  --color-line: #E4E2DB;

  --color-blue-900: #0B3C7A;
  --color-blue-700: #0E4F9E;
  --color-blue-600: #1162C4;
  --color-blue-400: #4A90E2;

  --color-gold-700: #A9790A;
  --color-gold-600: #C99A1E;
  --color-gold-500: #F1B90C;
  --color-gold-300: #FFD65C;

  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 1px 2px rgba(21, 24, 30, 0.06), 0 2px 8px rgba(21, 24, 30, 0.06);
  --shadow-md: 0 8px 24px rgba(21, 24, 30, 0.10);
  --shadow-lg: 0 24px 64px rgba(11, 60, 122, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

svg {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

:focus-visible {
  outline: 2px solid var(--color-blue-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skipLink {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-blue-700);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s var(--ease);
  font-size: 14px;
  font-weight: 500;
}

.skipLink:focus {
  top: 16px;
}

.container {
  max-width: var(--maxWidth) !important;
  margin: 0 auto;
  padding: 0 80px;
}

.mark {
  color: var(--color-blue-600);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-700);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-gold-500);
  border-radius: 2px;
}

@media screen and (max-width: 1200px) {
  .container {
    padding: 0 48px;
  }
}

@media screen and (max-width: 720px) {
  .container {
    padding: 0 28px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--color-blue-600);
  border-radius: 8px;
  border: 2px solid var(--color-bg-alt);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-blue-700);
}