@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/styles/fonts/hanken-grotesk-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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/styles/fonts/hanken-grotesk-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: 'Hanken Grotesk';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(/styles/fonts/hanken-grotesk-italic-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: 'Hanken Grotesk';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(/styles/fonts/hanken-grotesk-italic-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;
}

:root {
  --gray-000: rgb(255 255 255);
  --gray-100: rgb(226 226 226);
  --gray-200: rgb(219 219 219);
  --gray-300: rgb(204 204 204);
  --gray-900: rgb(87 87 87);
  --gray-1200: rgb(0 0 0);
  --blue-800: #0072CE;
  --orange-800: #FF6700;
  --green-800: #008000;

  --radius-400: 18px;

  /* Semantic vars */
  --body-font: 'Hanken Grotesk', sans-serif;

  --button-font-size: 14px;
  --button-font-weight: 600;
  --button-spacing: 12px;
  --button-radius: var(--radius-400);

  --dialog-radius: var(--radius-400);

  /* peaks at 1.2 (20px -> 24px) before settling at 1 */
  --ease-pop: linear(0, 0.4 25%, 0.85 40%, 1.12 55%, 1.2 62%, 1.12 72%, 1.04 84%, 1);

  --identity-dot-size: 48px;
  --icon-size: 20px;
  --button-height: 36px;
  --caret-width: var(--button-height);
}

body {
  margin: 0;
  min-height: 100dvh;
  background: linear-gradient(120deg, var(--gray-000), var(--gray-100));
  font-family: var(--body-font);

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

  button {
    all: unset;
    font-family: inherit;
    font-weight: var(--button-font-weight);
  }
}

header {
  display: grid;
  align-items: center;
  height: 100px;
}

main {
  padding-inline: calc(26px + var(--identity-dot-size) + var(--caret-width));
}
