:root {
  --stage-w: 2700px;
  --stage-h: 2160px;
  --stage-scale: 1;

  --screen-bg:    rgba(247, 247, 247, 1);
  --screen-pad-t: 96px;
  --screen-pad-x: 90px;
  --screen-pad-b: 175px;
}

html {

  font-family: var(--font);
  font-size: 28px;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:root {

  --c-brand:        #1479c6;
  --c-brand-dark:   #0f5f9f;
  --c-brand-light:  #e7f2fb;

  --c-plastic:      #FFBD02;
  --c-glass:        #44C717;
  --c-paper:        #01B6FD;
  --c-electro:      #E62F2F;
  --c-clutter:      #59CEE8;
  --c-bio:          #9A6A35;
  --c-mixed:        #4F555A;

  --c-accent:       #369FFF;

  --c-blue-soft:    #E3F2FE;

  --c-ink-mute:     #636363;

  --c-ink:          #000000;
  --c-ink-soft:    rgba(128, 128, 128, 0.55);
  --c-ink-faint:    #93a5b0;
  --c-line:         #dde5ea;
  --c-line-soft:    #eef3f6;
  --c-surface:      #ffffff;
  --c-surface-alt:  #f6f9fb;
  --c-page:         #c9d0d4;

  --c-focus:        #0f5f9f;

  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  30px;
  --r-pill: 999px;

  --s-1: 6px;
  --s-3: 16px;
  --s-4: 22px;
  --s-5: 32px;
  --s-6: 46px;

  --sh-1: 0 3px 8px rgba(20, 38, 47, .08);

  --font: "Poppins", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --tap: 96px;
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/poppins-v24-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../assets/fonts/poppins-v24-latin_latin-ext-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../assets/fonts/poppins-v24-latin_latin-ext-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/poppins-v24-latin_latin-ext-700.woff2') format('woff2');
}

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

* { margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: var(--font);
  font-size: 28px;
  line-height: 1.4;
  color: var(--c-ink);
  background: var(--c-page);

  position: relative;
  width: 100vw;
  height: 100vh;

  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;
}

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

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

button { background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; }

table { border-collapse: collapse; width: 100%; }

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

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }

:focus { outline: none; }

:focus-visible {
  outline: 4px solid var(--c-focus);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

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

.u-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-ink-faint) transparent;
}
.u-scroll::-webkit-scrollbar { width: 14px; }
.u-scroll::-webkit-scrollbar-track { background: var(--c-line-soft); border-radius: var(--r-pill); }
.u-scroll::-webkit-scrollbar-thumb { background: var(--c-ink-faint); border-radius: var(--r-pill); }

body:not(.is-ready) [data-i18n],
body:not(.is-ready) [data-i18n-html] { visibility: hidden; }