@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/poppins-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/poppins-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/poppins-600-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/poppins-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  background: #ffffff;
  font-family: Poppins, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #ffffff;
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(100%, 1320px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 128px);
  text-align: left;
}

.logo {
  display: block;
  width: min(68vw, 800px);
  height: auto;
}

.intro {
  max-width: 850px;
  margin-top: clamp(48px, 7vw, 88px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #019cd2;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #013553;
  font-size: clamp(2.4rem, 5.2vw, 4.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.description {
  max-width: 680px;
  margin: 24px 0 0;
  color: #526775;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

@media (max-width: 700px) {
  body {
    overflow-y: auto;
  }

  main {
    align-items: center;
    padding: 40px 24px;
    text-align: center;
  }

  .logo {
    width: min(88vw, 420px);
  }

  .intro {
    margin-top: 52px;
  }

  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .description {
    margin-top: 20px;
  }
}
