@font-face {
  font-family: "Vector Display";
  src: url("/assets/ui/menu.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Vector Mono";
  src: url("/assets/ui/DejaVuSansMono.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #05070c;
  --ink: #dfe9f5;
  --dim: #7c8da6;
  --friend: #4fd6ff;
  --enemy: #ffa552;
  --logo-orange: #ff9d22;
  --logo-cyan: #27c5ed;
  --bomb: #ff5ea8;
  --line: #1d2838;
  --deep-line: #101722;
  --panel: #080c14;
  --green: #7fe3a0;
  --display: "Vector Display", "Arial Narrow", sans-serif;
  --mono: "Vector Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --page: min(1440px, calc(100vw - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--bg);
  background: var(--friend);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  transform: translateY(-180%);
  border: 1px solid var(--friend);
  background: var(--bg);
  color: var(--friend);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--friend);
  outline-offset: 5px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 max(36px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgb(29 40 56 / 0.75);
  background: rgb(5 7 12 / 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 18px;
  height: 22px;
  overflow: visible;
}

.mark-orange {
  fill: var(--logo-orange);
}

.mark-cyan {
  fill: var(--logo-cyan);
}

.mark-gap {
  fill: none;
  stroke: #000;
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 150ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.github-button,
.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid #364256;
  background: rgb(8 12 20 / 0.74);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.github-button:hover,
.discord-button:hover {
  border-color: var(--friend);
  background: #101c28;
  color: var(--friend);
}

.github-button svg,
.discord-button svg {
  width: 15px;
  height: 15px;
  flex: none;
  fill: currentColor;
}

.discord-button svg {
  width: 19px;
  height: 15px;
}

.github-stars,
.discord-members {
  padding-left: 9px;
  border-left: 1px solid #364256;
  color: var(--friend);
  font-variant-numeric: tabular-nums;
}

.discord-members > span:first-child {
  color: var(--friend);
  font-size: 6px;
  vertical-align: 1px;
}

.site-nav .nav-github,
.site-nav .nav-discord {
  padding-block: 8px;
  letter-spacing: 0.09em;
}

.site-nav .nav-play {
  padding: 10px 16px;
  border: 1px solid var(--friend);
  background: var(--friend);
  color: #02050a;
}

.site-nav .nav-play:hover {
  border-color: #9aebff;
  background: #9aebff;
  color: #02050a;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #03050a;
}

.gameplay-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gameplay-film {
  overflow: hidden;
  background: #03050a url("/media/gameplay-poster.jpg") center / cover no-repeat;
  filter: saturate(0.88) contrast(1.12) brightness(0.8);
  transform: scale(1.12) translateY(50px);
}

.gameplay-take {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 850ms linear;
}

.gameplay-take.is-active {
  opacity: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(5 7 12 / 0.96) 0%, rgb(5 7 12 / 0.76) 39%, rgb(5 7 12 / 0.08) 76%),
    linear-gradient(0deg, rgb(5 7 12 / 0.8) 0%, transparent 32%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding-top: clamp(126px, 18vh, 190px);
}

.hero-wordmark {
  margin: 0 0 10px -0.035em;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(68px, 11.7vw, 186px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  opacity: 0;
  animation: hero-in 720ms 120ms ease forwards;
}

.hero h1,
.features h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  color: var(--friend);
  font-size: clamp(42px, 6.2vw, 94px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  opacity: 0;
  animation: hero-in 720ms 210ms ease forwards;
}

.hero-deck {
  max-width: 540px;
  margin: 26px 0 0;
  color: #a7b6cb;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.8;
  opacity: 0;
  animation: hero-in 720ms 300ms ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.hero .hero-actions {
  opacity: 0;
  animation: hero-in 720ms 390ms ease forwards;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 228px;
  padding: 16px 18px;
  border: 1px solid var(--friend);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-primary {
  background: var(--friend);
  color: var(--bg);
}

.button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--friend);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: max(36px, calc((100vw - 1440px) / 2));
  bottom: 38px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  font-family: var(--display);
  text-align: right;
  text-transform: uppercase;
}

.hero-proof strong {
  color: var(--friend);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-proof span {
  color: var(--ink);
  font-size: clamp(14px, 1.4vw, 19px);
  letter-spacing: 0.05em;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-pad {
  width: var(--page);
  margin-inline: auto;
}

.founder-letter {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: 72svh;
  padding-block: clamp(110px, 13vw, 190px);
}

.founder-letter-copy {
  grid-column: 4 / span 7;
  max-width: 780px;
  padding-top: 34px;
  border-top: 1px solid var(--friend);
}

.founder-letter-copy p {
  margin: 0;
}

.founder-letter-copy > p:first-child {
  color: #c5d2e2;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.85;
  letter-spacing: -0.012em;
}

.founder-letter-copy a {
  color: var(--friend);
  border-bottom: 1px solid rgb(79 214 255 / 0.55);
  transition: border-color 150ms ease, color 150ms ease;
}

.founder-letter-copy a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.founder-letter-copy .founder-signoff {
  margin-top: 36px;
  color: var(--friend);
  font-family: var(--display);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.25;
}

.features {
  padding-block: clamp(120px, 16vw, 220px);
  border-top: 1px solid var(--line);
}

.features h2 {
  margin: 0 0 clamp(70px, 10vw, 140px);
  color: var(--ink);
  font-size: clamp(76px, 11vw, 168px);
  line-height: 0.75;
  letter-spacing: -0.055em;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  min-height: 215px;
  padding: 36px clamp(24px, 4vw, 64px);
  border-top: 1px solid var(--line);
}

.feature-list li:nth-child(odd) {
  padding-left: 0;
  border-right: 1px solid var(--line);
}

.feature-list li:nth-child(even) {
  padding-right: 0;
}

.feature-list h3 {
  margin: 0;
  color: var(--friend);
  font-family: var(--display);
  font-size: clamp(25px, 2.8vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-list p {
  max-width: 510px;
  margin: 24px 0 0;
  color: #91a2b9;
  font-size: 13px;
  line-height: 1.85;
}

.feature-list a {
  color: var(--ink);
  border-bottom: 1px solid var(--dim);
}

.feature-list a:hover {
  color: var(--friend);
  border-color: var(--friend);
}

.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;
}

.directory-page .site-header {
  border-color: rgb(29 40 56 / 0.75);
  background: rgb(5 7 12 / 0.92);
  backdrop-filter: blur(14px);
}

.site-nav .is-current {
  color: var(--friend);
}

.directory-main {
  min-height: calc(100svh - 150px);
  padding-top: 76px;
}

.directory-kicker {
  margin: 0 0 28px;
  color: var(--friend);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.directory-kicker.is-bot {
  color: var(--enemy);
}

.profile-heading h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(88px, 14vw, 210px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.72;
}

.pilot-directory {
  padding-top: 0;
  padding-bottom: clamp(120px, 14vw, 200px);
}

.pilot-filter {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.pilot-filter label {
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pilot-filter input {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #35445a;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 15px var(--mono);
}

.pilot-filter input:focus {
  border-color: var(--friend);
}

.pilot-filter input::placeholder {
  color: #53647c;
}

.filter-submit,
.filter-clear,
.pilot-pager button {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-submit,
.pilot-pager button {
  border-bottom: 1px solid var(--friend);
}

.filter-clear {
  color: var(--dim);
}

.filter-submit:hover,
.filter-clear:hover,
.pilot-pager button:hover:not(:disabled) {
  color: var(--friend);
}

.pilot-table-wrap {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.pilot-table {
  width: 100%;
  min-width: 990px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.pilot-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.pilot-table th {
  height: 58px;
  color: var(--dim);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.pilot-table td {
  height: 78px;
  padding: 13px 24px 13px 0;
  border-top: 1px solid var(--line);
  color: #bac8d9;
  font-size: 12px;
}

.pilot-table th.number,
.pilot-table td.number {
  padding-right: 0;
  padding-left: 24px;
  text-align: right;
}

.pilot-table .rank-cell {
  width: 100px;
  color: var(--friend);
}

.pilot-identity {
  min-width: 220px;
}

.pilot-identity a {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.pilot-identity a:hover {
  color: var(--friend);
}

.pilot-kind,
.tier-cell span {
  display: block;
  margin-top: 7px;
  color: var(--dim);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pilot-kind.is-bot {
  color: var(--enemy);
}

.tier-cell {
  color: var(--ink) !important;
  text-transform: uppercase;
}

.table-message {
  height: 160px !important;
  color: var(--dim) !important;
  text-align: center;
}

.pilot-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.pilot-pager p {
  margin: 0;
  color: var(--dim);
  font-size: 10px;
  line-height: 1.6;
}

.pilot-pager > div {
  display: flex;
  gap: 26px;
}

.pilot-pager button:disabled {
  border-color: var(--line);
  color: #3e4b5d;
  cursor: default;
}

.pilot-profile {
  padding-top: clamp(72px, 9vw, 130px);
  padding-bottom: clamp(120px, 14vw, 200px);
}

.profile-back {
  margin: 0 0 clamp(72px, 10vw, 150px);
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-back a:hover {
  color: var(--friend);
}

.profile-heading h1 {
  max-width: 1200px;
  color: var(--friend);
  font-size: clamp(64px, 11vw, 170px);
  overflow-wrap: anywhere;
  text-transform: none;
}

.profile-status {
  margin: 50px 0;
  color: var(--dim);
  font-size: 12px;
}

.profile-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(70px, 9vw, 130px) 0 0;
  border-block: 1px solid var(--line);
}

.profile-scoreboard div {
  min-height: 150px;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
}

.profile-scoreboard div:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.profile-scoreboard dt {
  color: var(--dim);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-scoreboard dd {
  margin: 28px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 0.9;
  text-transform: uppercase;
}

.profile-ratings {
  margin-top: clamp(100px, 13vw, 190px);
}

.profile-ratings h2 {
  margin: 0 0 clamp(45px, 6vw, 80px);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-transform: uppercase;
}

.ratings-table {
  min-width: 680px;
}

.profile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: clamp(100px, 13vw, 190px);
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.profile-cta p {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(28px, 3.3vw, 48px);
  text-transform: uppercase;
}

.directory-page .site-footer {
  border-top: 1px solid var(--line);
}

.policy-main {
  min-height: calc(100svh - 150px);
  padding-top: 76px;
}

.policy-intro {
  padding-top: clamp(92px, 11vw, 160px);
  padding-bottom: clamp(68px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}

.policy-intro h1 {
  max-width: 1080px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(76px, 12vw, 176px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.75;
  text-transform: uppercase;
}

.policy-lede {
  max-width: 720px;
  margin: clamp(42px, 5vw, 68px) 0 0;
  color: #a7b6cb;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.8;
}

.policy-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(70px, 10vw, 160px);
  padding-block: clamp(76px, 9vw, 136px) clamp(120px, 14vw, 200px);
}

.policy-index {
  position: sticky;
  top: 116px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.policy-index a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  font-size: 9px;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.policy-index a:hover,
.policy-index a.is-current {
  color: var(--friend);
}

.policy-copy {
  min-width: 0;
}

.policy-copy section {
  padding: 0 0 clamp(64px, 7vw, 96px);
}

.policy-copy section + section {
  padding-top: clamp(58px, 6vw, 84px);
  border-top: 1px solid var(--line);
}

.policy-copy h2 {
  margin: 0 0 32px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.policy-copy h3 {
  margin: 42px 0 14px;
  color: var(--friend);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.policy-copy p,
.policy-copy li,
.retention-list dd {
  color: #a7b6cb;
  font-size: 13px;
  line-height: 1.85;
}

.policy-copy p {
  margin: 0 0 20px;
}

.policy-copy p:last-child {
  margin-bottom: 0;
}

.policy-copy a {
  color: var(--ink);
  border-bottom: 1px solid var(--friend);
}

.policy-copy a:hover {
  color: var(--friend);
}

.policy-copy strong {
  color: var(--ink);
  font-weight: 400;
}

.policy-copy ul,
.policy-copy ol {
  margin: 26px 0 0;
  padding-left: 22px;
}

.policy-copy li {
  padding-left: 8px;
  margin-bottom: 12px;
}

.process-list {
  counter-reset: process;
  list-style: none;
  padding: 0 !important;
}

.process-list li {
  position: relative;
  min-height: 54px;
  padding: 0 0 22px 54px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.process-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--friend);
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.retention-list {
  margin: 0;
}

.retention-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.5fr);
  gap: 36px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.retention-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.retention-list dt {
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.retention-list dd {
  margin: 0;
}

.policy-footer {
  border-top: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 150px;
  width: var(--page);
  margin: 0 auto;
  color: var(--dim);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--ink);
  text-transform: lowercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
}

.site-footer nav a:hover {
  color: var(--friend);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 40px, 760px);
  }

  .site-header {
    height: 66px;
    padding-inline: 20px;
  }

  .site-nav > a:not(.nav-play):not(.nav-github):not(.nav-discord):not(.nav-pilots) {
    display: none;
  }

  .site-nav {
    gap: 12px;
  }

  .hero-copy {
    padding-top: 126px;
  }

  .hero-wordmark {
    font-size: clamp(64px, 18.5vw, 124px);
  }

  .hero h1 {
    font-size: clamp(44px, 10vw, 76px);
  }

  .hero-proof {
    right: 20px;
    bottom: 28px;
  }

  .founder-letter-copy {
    grid-column: 3 / span 8;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-block: 44px;
  }

  .directory-main {
    padding-top: 66px;
  }

  .policy-main {
    padding-top: 66px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .policy-index {
    position: static;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .policy-index a {
    padding: 14px 12px 14px 0;
  }

  .profile-scoreboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-scoreboard div:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .profile-scoreboard div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 16px;
  }

  .site-header .brand > span {
    display: none;
  }

  .nav-github .github-label,
  .nav-discord .discord-label {
    display: none;
  }

  .site-nav .nav-play {
    padding: 9px 12px;
  }

  .hero {
    min-height: 840px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgb(5 7 12 / 0.96) 0%, rgb(5 7 12 / 0.58) 62%, rgb(5 7 12 / 0.12) 100%),
      linear-gradient(90deg, rgb(5 7 12 / 0.7), transparent);
  }

  .hero-copy {
    padding-top: 124px;
  }

  .hero-wordmark {
    margin-bottom: 18px;
    font-size: clamp(58px, 18vw, 95px);
    line-height: 0.9;
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 68px);
  }

  .hero-deck {
    max-width: 340px;
    margin-top: 24px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-proof {
    right: 20px;
    bottom: 22px;
  }

  .founder-letter {
    display: block;
    min-height: auto;
    padding-block: 110px;
  }

  .founder-letter-copy {
    padding-top: 28px;
  }

  .founder-letter-copy > p:first-child {
    font-size: 17px;
    line-height: 1.8;
  }

  .features {
    padding-block: 110px;
  }

  .features h2 {
    margin-bottom: 72px;
    font-size: clamp(64px, 21vw, 96px);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list li {
    min-height: auto;
    padding: 34px 0 38px;
  }

  .feature-list li:nth-child(odd) {
    border-right: 0;
  }

  .directory-intro {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .directory-intro h1 {
    font-size: clamp(76px, 27vw, 118px);
  }

  .policy-intro {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .policy-intro h1 {
    font-size: clamp(66px, 21vw, 102px);
    overflow-wrap: anywhere;
  }

  .policy-layout {
    gap: 54px;
    padding-top: 58px;
  }

  .policy-index {
    grid-template-columns: 1fr 1fr;
  }

  .retention-list > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .directory-lede {
    margin-top: 36px;
  }

  .pilot-filter {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }

  .pilot-filter label {
    grid-column: 1 / -1;
  }

  .pilot-table {
    min-width: 900px;
  }

  .pilot-pager {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px;
  }

  .pilot-profile {
    padding-top: 68px;
  }

  .profile-back {
    margin-bottom: 74px;
  }

  .profile-heading h1 {
    font-size: clamp(58px, 20vw, 94px);
  }

  .profile-scoreboard {
    margin-top: 70px;
  }

  .profile-scoreboard div {
    min-height: 122px;
    padding-top: 24px;
  }

  .profile-scoreboard dd {
    margin-top: 22px;
  }

  .profile-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 380px) {
  .site-header .brand > span,
  .nav-github .github-label,
  .nav-discord .discord-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
