* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "Open Sans", sans-serif;
}
.hidden {
  display: none !important;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: #111;
  background: #f6f8ff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.4) blur(8px);
  background: color-mix(in srgb, #ffffff 42%, transparent);
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 0 0 20px 20px;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
.brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 175px;
}
.brand__name {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #274292;
}
.nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  position: relative;
  isolation: isolate;
  color: #626571;
  letter-spacing: 0.2px;
  font-family: 1.4rem;
  text-decoration: none;
  font-size: 1.4rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  inset: auto 10px -4px 10px;
  height: 2px;
  border-radius: 2px;
  background: #274292;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
}
.nav__link:hover {
  color: #274292;
}
.nav__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.nav__link[aria-current="page"] {
  color: #ffffff;
  background: #274292;
  -webkit-box-shadow: 0 6px 18px rgba(39, 66, 146, 0.3);
          box-shadow: 0 6px 18px rgba(39, 66, 146, 0.3);
}
.nav__toggle {
  inline-size: 46px;
  block-size: 46px;
  display: none;
  place-content: center;
  border: 1px solid rgba(98, 101, 113, 0.14);
  background: #ffffff;
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle .bars {
  display: -ms-grid;
  display: grid;
  gap: 6px;
}
.nav__toggle .bar {
  width: 22px;
  height: 2px;
  background: #274292;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.25s ease;
  transition: opacity 0.2s, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.2s;
  transition: transform 0.25s ease, opacity 0.2s, -webkit-transform 0.25s ease;
}
.nav__toggle[aria-expanded="true"] .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
.mobile-panel {
  position: fixed;
  inset: 72px 0 auto 0;
  translate: 0 -8px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, translate 0.25s ease;
  transition: opacity 0.25s ease, translate 0.25s ease;
  z-index: 40;
}
.mobile-panel__card {
  margin: 0 auto;
  width: min(840px, 92%);
  background: #ffffff;
  border: 1px solid rgba(98, 101, 113, 0.14);
  border-radius: 18px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 10px;
  display: -ms-grid;
  display: grid;
  gap: 6px;
}
.mobile-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  color: #274292;
  background: color-mix(in srgb, #274292 6%, #ffffff);
  text-decoration: none;
  font-family: 1.4rem;
  font-size: 1.4rem;
}
.mobile-panel[data-open="true"] {
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: -ms-grid;
    display: grid;
  }
}
:focus-visible {
  outline: 3px solid #405eb3;
  outline-offset: 2px;
  border-radius: 12px;
}
.hero {
  padding: clamp(24px, 4vw, 48px);
  background: radial-gradient(1200px 600px at 10% -10%, #e9ecf4, transparent), radial-gradient(1200px 600px at 110% 110%, #eef0f6, transparent);
  border-radius: 24px;
  border: 1px solid rgba(98, 101, 113, 0.14);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4.6vw, 42px);
  color: #274292;
}
.hero p {
  margin: 0;
  color: #626571;
}
@media (prefers-reduced-motion: reduce) {
  .nav__link::after,
  .bar {
    -webkit-transition: none;
    transition: none;
  }
  .mobile-panel {
    -webkit-transition: none;
    transition: none;
  }
}
