@font-face {
  font-family: "Open Sauce Two";
  src: url("fonts/open-sauce-two-latin-300-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("fonts/work-sans-latin-400-normal.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("fonts/work-sans-latin-500-normal.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: #0f1f22;
  --surface: #142127;
  --surface-2: #212a2d;
  --text: #eef0f2;
  --text-2: #c0c6cc;
  --text-3: #a1a5a9;
  --focus: #c0c6cc;
  --content-width: 1120px;
  --gutter: clamp(24px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

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

a:hover {
  color: var(--text);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 24px var(--gutter);
}

.copy-toast {
  position: absolute;
  left: 50%;
  top: calc(50% - clamp(58px, 9vw, 92px));
  margin: 0;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.dash-button {
  appearance: none;
  border: 0;
  padding: 0 0 0.08em;
  width: min(42vw, 260px);
  height: clamp(72px, 13vw, 120px);
  display: inline-grid;
  place-items: center;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font-family: "Open Sauce Two", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(88px, 16vw, 155px);
  font-weight: 300;
  line-height: 0.7;
  letter-spacing: 0;
  transform: translateY(-8px);
  transition:
    color 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
}

.dash-button:hover {
  color: var(--text-2);
}

.dash-button:active {
  transform: translateY(-4px) scale(0.985);
}

.dash-button:focus-visible {
  outline: 0;
  color: var(--text-2);
}

.site-footer {
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px var(--gutter);
  background: var(--background);
  color: var(--text-3);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  opacity: 0.92;
  transition: opacity 140ms ease;
}

.brand-link:hover {
  opacity: 1;
}

.brand-link svg {
  display: block;
  width: 113px;
  height: auto;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  letter-spacing: -0.03em;
}

.site-footer a {
  padding: 8px 0;
  transition: color 140ms ease;
}

.site-footer a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 560px) {
  .dash-button {
    width: 64vw;
    height: 96px;
    font-size: clamp(80px, 28vw, 128px);
  }

  .site-footer {
    padding: 18px var(--gutter);
  }

  .footer-inner {
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
  }

  .footer-nav {
    gap: 16px;
    font-size: 13px;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --background: #f7fbfc;
    --text: #1f2931;
    --text-2: #2b3a40;
    --text-3: #3c4a4e;
    --focus: #2b3a40;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dash-button,
  .copy-toast,
  .brand-link,
  .site-footer a {
    transition: none;
  }
}
