@font-face {
  font-family: "Tinos Boot";
  src: url("/fonts/tinos-regular-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #020405;
}

body {
  min-height: 100svh;
  overscroll-behavior: none;
}

.page {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  color: rgba(232, 239, 230, 0.84);
  background:
    radial-gradient(
      circle at 50% 12%,
      rgba(100, 126, 106, 0.1),
      transparent 32rem
    ),
    #020405;
  font-family:
    "Tinos Boot",
    Georgia,
    "Times New Roman",
    serif;
  scrollbar-color: rgba(225, 236, 223, 0.18) transparent;
}

.instrument {
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: clamp(72px, 12vw, 132px) 0 80px;
}

.header {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(225, 236, 223, 0.13);
}

.eyebrow {
  margin: 0 0 28px;
  color: rgba(225, 236, 223, 0.4);
  font-family:
    ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.header h1 {
  margin: 0;
  color: rgba(240, 245, 237, 0.94);
  font-size: clamp(2.7rem, 9vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.lede {
  max-width: 34rem;
  margin: 28px 0 0;
  color: rgba(225, 236, 223, 0.62);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1.55;
}

.identity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 34px 0 10px;
  border-bottom: 1px solid rgba(225, 236, 223, 0.13);
}

.identity div {
  min-width: 0;
  padding: 0 24px 24px 0;
}

.identity dt {
  margin-bottom: 7px;
  color: rgba(225, 236, 223, 0.38);
  font-family:
    ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.identity dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: rgba(236, 242, 233, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

.section {
  padding-top: 44px;
}

.section h2 {
  margin: 0 0 15px;
  color: rgba(239, 244, 236, 0.86);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.section p {
  max-width: 40rem;
  margin: 0;
  color: rgba(225, 236, 223, 0.62);
  font-size: 1.03rem;
  line-height: 1.72;
}

.section p + p {
  margin-top: 18px;
}

.footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(225, 236, 223, 0.13);
  color: rgba(225, 236, 223, 0.43);
  font-size: 0.91rem;
  line-height: 1.6;
}

.footer p {
  margin: 0;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px !important;
}

.footer a {
  color: rgba(225, 236, 223, 0.68);
  text-underline-offset: 0.2em;
  transition: color 160ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: rgba(242, 247, 239, 0.96);
}

@media (max-width: 520px) {
  .instrument {
    width: min(100% - 32px, 720px);
    padding-top: 58px;
  }

  .identity {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .identity div {
    padding-right: 0;
  }

  .links {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .links span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer a {
    transition: none;
  }
}
