@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  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: "Space Grotesk";
  src: url("/fonts/space-grotesk-latin-ext.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  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: "Outfit";
  src: url("/fonts/outfit-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  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: "Outfit";
  src: url("/fonts/outfit-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  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: "Liberation Serif";
  src: url("/fonts/liberation-serif-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #12a02a;
  --green-light: #77c983;
  --ink: #000000;
  --grotesk: "Space Grotesk", system-ui, sans-serif;
  --serif: "Liberation Serif", "Times New Roman", Times, serif;
  --outfit: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #ffffff;
  background-image: linear-gradient(170deg, #ffffff 0%, #fbfbfa 45%, #f2f1ef 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 24px 0;
}

.hero {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
}

.mascot {
  width: clamp(120px, 20vw, 230px);
  height: auto;
  flex-shrink: 0;
}

.wordmark {
  min-width: 0;
}

.pronunciation {
  margin: 0 0 2px;
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
}

.title {
  margin: 0;
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--green);
}

.slogan {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 2.1vw, 1.6rem);
  line-height: 1.35;
  color: var(--ink);
}

.downloads {
  padding: 40px 24px 48px;
  text-align: center;
}

.coming-soon {
  margin: 0;
  font-family: var(--outfit);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--ink);
}

@media (max-width: 620px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .pronunciation {
    letter-spacing: 0.14em;
  }
}
