@font-face {
  font-family: "Hind Madurai";
  src: url("../fonts/HindMadurai-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Hind Madurai";
  src: url("../fonts/HindMadurai-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Hind Madurai";
  src: url("../fonts/HindMadurai-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Hind Madurai";
  src: url("../fonts/HindMadurai-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #212328;
  --muted: #70757b;
  --soft: #f1f6fa;
  --line: #e6ecf1;
  --blue-deep: #2a4f84;
  --blue: #2f6495;
  --blue-bright: #4a90e2;
  --blue-pale: #96d6ff;
  --white: #ffffff;
  --shadow: 0 20px 55px rgb(25 55 88 / 12%);
  --container: min(1320px, 90vw);
  --container-small: min(1060px, 86vw);
  --header-height: 102px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Hind Madurai", Arial, sans-serif;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 300;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a:hover {
  color: var(--blue-bright);
}

p {
  margin: 0 0 1.3em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font: inherit;
  font-weight: 300;
  line-height: 1.08;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  border: 0;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-small {
  width: var(--container-small);
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 142px);
}

.section--compact {
  padding-block: clamp(54px, 6vw, 92px);
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--blue-bright);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.display-title {
  max-width: 960px;
  font-size: clamp(2.45rem, 5.4vw, 5.1rem);
  letter-spacing: -.025em;
  line-height: .99;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3.7vw, 4rem);
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.section-lead {
  max-width: 870px;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.35;
}

.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-width: 160px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.button:hover {
  color: var(--white);
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(45deg, #255399, #2f6f95);
}

.button--light:hover {
  color: var(--blue-deep);
  border-color: var(--white);
  background: var(--white);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--blue-deep);
  font-size: .95rem;
  font-weight: 500;
}

.arrow-link::after {
  content: "\2192";
  font-size: 1.5em;
  transition: transform .25s var(--ease);
}

.arrow-link:hover::after {
  transform: translateX(6px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-deep);
  transform: translateY(-160%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 36px, 1320px);
    --container-small: min(100% - 36px, 1060px);
    --header-height: 70px;
  }

  .section {
    padding-block: 70px;
  }

  .display-title {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }
}
