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

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/Archivo-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/assets/fonts/HankenGrotesk-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --consumer-paper: #faf7f2;
  --ink: #1a1916;
  --laurel: #1f5439;
  --muted: #5a554b;
  --hairline: #e3e0da;
  background: var(--consumer-paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--consumer-paper);
}

main {
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 64px 32px 32px;
}

.holding {
  display: flex;
  width: min(100%, 1040px);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lockup {
  display: block;
  width: min(100%, 380px);
  height: auto;
  margin-bottom: 50px;
  aspect-ratio: 5451 / 735;
}

.status-label {
  margin: 0 0 18px;
  color: var(--laurel);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 strong {
  font-weight: 700;
}

.mobile-break {
  display: none;
}

.supporting-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

footer {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.company-information {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  row-gap: 8px;
}

.company-email {
  color: var(--muted);
  text-decoration-color: var(--hairline);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.company-email:hover {
  color: var(--laurel);
  text-decoration-color: currentColor;
}

.company-email:focus-visible {
  outline: 2px solid var(--laurel);
  outline-offset: 4px;
}

@media (max-width: 820px) {
  main {
    padding: 48px 32px 24px;
  }

  .holding {
    width: min(100%, 720px);
  }

  .lockup {
    width: min(100%, 320px);
    margin-bottom: 46px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .headline-setup {
    max-width: 580px;
    margin-inline: auto;
  }

  .supporting-copy {
    max-width: 660px;
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.52;
  }
}

@media (max-width: 560px) {
  main {
    padding: 40px 16px 16px;
  }

  .lockup {
    width: min(100%, 240px);
    margin-bottom: 42px;
  }

  .status-label {
    margin-bottom: 16px;
    font-size: 12px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .mobile-break {
    display: block;
  }

  .supporting-copy {
    max-width: 350px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.52;
  }

  footer {
    min-height: 48px;
    padding: 0 16px 16px;
    font-size: 12px;
  }
}

@media (max-width: 340px) {
  main {
    padding: 28px 14px 12px;
  }

  .lockup {
    width: 220px;
    margin-bottom: 32px;
  }

  .status-label {
    margin-bottom: 14px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.11;
  }

  .supporting-copy {
    max-width: 292px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  footer {
    min-height: 44px;
    padding-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
