:root {
  --canvas: #000000;
  --surface: #080808;
  --frost: #ffffff;
  --copy: #cccccc;
  --muted: #858585;
  --quiet: #8a8a8a;
  --line: rgba(255, 255, 255, 0.2);
  --line-soft: rgba(255, 255, 255, 0.1);
  --signal: #fc1c46;
  --signal-text: #fc1c46;
  --signal-ink: #080808;
  --header-bg: rgba(0, 0, 0, 0.78);
  --material-bg: rgba(8, 8, 8, 0.9);
  --hover-fill: rgba(255, 255, 255, 0.035);
  --material-shadow: rgba(0, 0, 0, 0.48);
  --page-pad: 64px;
  --page-max: 1400px;
  --display-size: 144px;
  --section-size: 72px;
  --ease-expo: cubic-bezier(.19, 1, .22, 1);
}

html[data-wallpaper-phase="day"],
html[data-wallpaper-phase="dawn"] {
  --canvas: #f4f4ef;
  --surface: #ecece7;
  --frost: #090909;
  --copy: #343434;
  --muted: #696969;
  --quiet: #676762;
  --line: rgba(0, 0, 0, 0.22);
  --line-soft: rgba(0, 0, 0, 0.11);
  --signal-text: #c60032;
  --signal-ink: #070707;
  --header-bg: rgba(244, 244, 239, 0.82);
  --material-bg: rgba(244, 244, 239, 0.92);
  --hover-fill: rgba(0, 0, 0, 0.035);
  --material-shadow: rgba(0, 0, 0, 0.18);
}

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

html {
  margin: 0;
  scroll-behavior: smooth;
  background: var(--canvas);
  transition: background-color .55s var(--ease-expo);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--copy);
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-optical-sizing: auto;
  transition: background-color .55s var(--ease-expo), color .55s var(--ease-expo);
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

::selection {
  background: var(--signal);
  color: var(--signal-ink);
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 9999px;
  background: var(--signal);
  color: var(--signal-ink);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform .3s var(--ease-expo);
}

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

.monument-site {
  min-height: 100vh;
  overflow: clip;
  background: var(--canvas);
  color: var(--copy);
  transition: background-color .55s var(--ease-expo), color .55s var(--ease-expo);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: transparent;
  color: var(--frost);
  transition: color .45s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 12px 30px var(--material-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease, background-color .55s var(--ease-expo), box-shadow .55s ease;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header__inner {
  position: relative;
  z-index: 100;
  width: min(var(--page-max), calc(100% - (var(--page-pad) * 2)));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  color: var(--frost);
  font-weight: 600;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 0;
  background: var(--signal);
  color: var(--signal-ink);
  font-size: 12px;
  font-weight: 700;
}

.brand__name {
  font-size: 18px;
}

main > section[id] {
  scroll-margin-top: 72px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
}

.desktop-nav a,
.site-footer nav a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .65s var(--ease-expo);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="location"]::after,
.site-footer nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.signal-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 0;
  border-radius: 9999px;
  background: var(--signal);
  color: var(--signal-ink);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  user-select: none;
  will-change: transform;
  transition: transform .38s var(--ease-expo), filter .25s ease;
}

.signal-button span[aria-hidden="true"] {
  transition: transform .28s var(--ease-expo);
}

.signal-button:hover {
  color: var(--signal-ink);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.signal-button:hover span[aria-hidden="true"] {
  transform: translateX(3px);
}

.signal-button:active {
  transform: translateY(0) scale(.97);
  transition-duration: .1s;
}

.signal-button[aria-disabled="true"] {
  opacity: .64;
  pointer-events: none;
}

.text-link,
.text-button {
  color: var(--frost);
  font-size: 14px;
  font-weight: 500;
}

.text-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dynamic-theme-control {
  position: relative;
}

.dynamic-theme-trigger {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: transparent;
  color: var(--frost);
  font-size: 12px;
  transition: background-color .25s ease, border-color .25s ease, transform .12s ease;
}

.dynamic-theme-trigger:hover {
  border-color: var(--frost);
  background: var(--hover-fill);
}

.dynamic-theme-trigger:active {
  transform: scale(.97);
}

.theme-icon {
  width: 17px;
  height: 17px;
  display: none;
}

.dynamic-theme-trigger[data-mode="auto"] .theme-icon-auto,
.dynamic-theme-trigger[data-mode="day"] .theme-icon-day,
.dynamic-theme-trigger[data-mode="night"] .theme-icon-night {
  display: block;
}

.dynamic-theme-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--material-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 18px 50px var(--material-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(.98);
  transform-origin: top right;
  transition: opacity .2s ease, transform .38s var(--ease-expo), visibility 0s linear .38s, background-color .55s var(--ease-expo);
}

.dynamic-theme-control[data-open="true"] .dynamic-theme-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.dynamic-theme-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--copy);
  font-size: 13px;
  text-align: left;
  transition: background-color .2s ease, color .2s ease, transform .1s ease;
}

.dynamic-theme-option:hover,
.dynamic-theme-option[aria-checked="true"] {
  color: var(--frost);
  background: var(--surface);
}

.dynamic-theme-option:active {
  transform: scale(.98);
}

.dynamic-theme-check {
  visibility: hidden;
  color: var(--signal-text);
}

.dynamic-theme-option[aria-checked="true"] .dynamic-theme-check {
  visibility: visible;
}

.menu-trigger {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--frost);
  transition: background-color .22s ease, transform .12s ease;
}

.menu-trigger:hover {
  background: var(--hover-fill);
}

.menu-trigger:active {
  transform: scale(.97);
}

.menu-trigger span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform .7s var(--ease-expo), width .7s var(--ease-expo);
}

.menu-trigger span:first-child {
  transform: translateY(-4px);
}

.menu-trigger span:last-child {
  width: 12px;
  transform: translate(4px, 4px);
}

.menu-trigger[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-trigger[aria-expanded="true"] span:last-child {
  width: 20px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 48px;
  padding: 100px var(--page-pad) 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--canvas);
  opacity: 0;
  visibility: hidden;
  transform: scale(.985);
  transform-origin: top right;
  transition: opacity .24s ease, transform .42s var(--ease-expo), visibility 0s linear .42s, background-color .55s var(--ease-expo), color .55s var(--ease-expo);
}

.mobile-menu.is-open {
  z-index: 99;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.mobile-menu nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: baseline;
  padding: 8px 0;
  color: var(--frost);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: color .22s ease, transform .34s var(--ease-expo), opacity .12s ease;
}

.mobile-menu nav a:hover {
  color: var(--signal-text);
  transform: translateX(6px);
}

.mobile-menu nav a:active {
  opacity: .64;
}

.mobile-menu nav a span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.hero {
  position: relative;
  height: calc(100svh - 112px);
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: var(--canvas);
  transition: background-color .55s var(--ease-expo), border-color .55s var(--ease-expo);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--page-max), calc(100% - (var(--page-pad) * 2)));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: 70%;
  max-width: 980px;
  padding-bottom: 42px;
}

.eyebrow,
.section-kicker,
.directory-meta,
.hero__meta,
.hero__index {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}

.v5-title {
  margin: 20px 0 0;
  color: var(--frost);
  font-size: var(--display-size);
  font-weight: 700;
  line-height: .86;
  text-transform: uppercase;
  text-wrap: balance;
}

.v5-title span {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  max-width: 460px;
  margin: 30px 0 0;
  color: var(--copy);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero__meta {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  gap: 26px;
}

.hero__meta span + span::before {
  content: "/";
  margin-right: 26px;
  color: var(--quiet);
}

.hero__index {
  position: absolute;
  right: 0;
  bottom: 28px;
}

.keyboard-motion-toggle {
  position: absolute;
  right: 58px;
  bottom: 17px;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: transparent;
  color: var(--muted);
  transition: color .22s ease, border-color .22s ease, background-color .22s ease, transform .12s ease;
}

.keyboard-motion-toggle[hidden] {
  display: none;
}

.keyboard-motion-toggle:hover {
  border-color: var(--frost);
  background: var(--hover-fill);
  color: var(--frost);
}

.keyboard-motion-toggle:active {
  transform: scale(.96);
}

.keyboard-motion-toggle span {
  position: relative;
  width: 12px;
  height: 12px;
  display: block;
}

.keyboard-motion-toggle span::before,
.keyboard-motion-toggle span::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 3px;
  height: 10px;
  border-radius: 1px;
  background: currentColor;
}

.keyboard-motion-toggle span::before {
  left: 2px;
}

.keyboard-motion-toggle span::after {
  right: 2px;
}

.keyboard-motion-toggle[aria-pressed="true"] span::before {
  top: 0;
  left: 2px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  border-radius: 0;
  background: transparent;
}

.keyboard-motion-toggle[aria-pressed="true"] span::after {
  opacity: 0;
}

.v5-keyboard-stage,
.v5-keyboard-fallback,
.v5-keyboard-fallback::before,
.v5-keyboard-fallback::after,
#keyboard-desktop-canvas,
.v5-keyboard-wash {
  position: absolute;
  inset: 0;
}

.v5-keyboard-stage {
  z-index: 1;
  pointer-events: none;
}

.v5-keyboard-fallback {
  z-index: 0;
  overflow: hidden;
}

.v5-keyboard-fallback::before,
.v5-keyboard-fallback::after {
  content: "";
  background-position: center;
  background-size: cover;
  transition: opacity 1.1s var(--ease-expo);
}

.v5-keyboard-fallback::before {
  background-image: url("keyboard-desktop-poster-light.jpg");
  opacity: 1;
}

.v5-keyboard-fallback::after {
  background-image: url("keyboard-desktop-poster-dark.jpg");
  opacity: 0;
}

html[data-wallpaper-phase="night"] .v5-keyboard-fallback::before,
html[data-wallpaper-phase="dusk"] .v5-keyboard-fallback::before {
  opacity: 0;
}

html[data-wallpaper-phase="night"] .v5-keyboard-fallback::after,
html[data-wallpaper-phase="dusk"] .v5-keyboard-fallback::after {
  opacity: 1;
}

#keyboard-desktop-canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: auto;
  opacity: 0;
  transition: opacity .9s ease;
}

#keyboard-desktop-canvas[data-ready="true"] {
  opacity: 1;
}

.v5-keyboard-wash {
  display: none;
}

.monument-section {
  position: relative;
  padding: 88px 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--canvas);
  color: var(--copy);
  transition: background-color .55s var(--ease-expo), color .55s var(--ease-expo), border-color .55s var(--ease-expo);
}

.section-inner {
  width: min(var(--page-max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(220px, 1fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}

.section-heading--wide {
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
}

.section-heading h2,
.manifesto__title,
.audience-column h2,
.trust-heading h2 {
  margin: 14px 0 0;
  color: var(--frost);
  font-size: var(--section-size);
  font-weight: 600;
  line-height: .96;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading__note {
  max-width: 360px;
  margin: 0;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.42;
}

.manifesto {
  padding-top: 104px;
  padding-bottom: 104px;
}

.manifesto__title {
  max-width: 1180px;
}

.manifesto__footer {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  align-items: end;
  gap: 80px;
}

.manifesto__footer > p {
  margin: 0;
  color: var(--copy);
  font-size: 18px;
  line-height: 1.42;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.platform-tags span,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  color: var(--copy);
  font-size: 12px;
  text-transform: uppercase;
}

.category-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.category-row {
  min-height: 136px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 30px 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--frost);
  transition: background-color .25s ease, color .25s ease;
}

.category-row:nth-child(odd) {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.category-row:nth-child(even) {
  padding-left: 30px;
}

.category-row:hover {
  color: var(--frost);
  background: var(--hover-fill);
}

.category-row:hover .category-row__number,
.category-row:focus-visible .category-row__number {
  color: var(--signal-text);
}

.category-row__number,
.category-row > span:last-child {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.category-row strong {
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
  transition: transform .32s var(--ease-expo);
}

.category-row:hover strong,
.category-row:focus-visible strong {
  transform: translateX(4px);
}

.coverage-table {
  border-top: 1px solid var(--line);
}

.coverage-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1.3fr .8fr 1.5fr 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  transition: background-color .22s ease, border-color .55s var(--ease-expo);
}

.coverage-row:not(.coverage-row--header):hover {
  background: var(--hover-fill);
}

.coverage-row--header {
  min-height: 48px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.coverage-row strong {
  color: var(--frost);
  font-size: 22px;
  font-weight: 500;
}

.status-pill {
  min-height: 28px;
  justify-self: start;
  padding: 0 11px;
  font-size: 10px;
}

.status-pill--live {
  border-color: var(--signal);
  color: var(--frost);
}

.coverage-line {
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.coverage-line i {
  width: var(--coverage);
  height: 100%;
  display: block;
  background: var(--muted);
}

.coverage-row:nth-child(2) .coverage-line i {
  background: var(--signal);
}

.coverage-row > span:last-child {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.directory-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.directory-meta span:first-child {
  color: var(--signal-text);
}

.directory-controls {
  display: grid;
  grid-template-columns: minmax(250px, 1.7fr) repeat(3, minmax(150px, 1fr)) auto;
  align-items: end;
  gap: 22px;
  margin-bottom: 54px;
}

.directory-controls label,
.submit-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color .22s ease;
}

.directory-controls label:focus-within,
.submit-form label:focus-within {
  color: var(--frost);
}

.directory-controls input,
.directory-controls select,
.submit-form input,
.submit-form select,
.submit-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--frost);
  caret-color: var(--signal);
  font-size: 15px;
  text-transform: none;
  transition: border-color .25s ease;
}

.directory-controls input:focus,
.directory-controls select:focus,
.submit-form input:focus,
.submit-form select:focus,
.submit-form textarea:focus {
  border-color: var(--signal);
}

.directory-controls input:focus-visible,
.directory-controls select:focus-visible,
.submit-form input:focus-visible,
.submit-form select:focus-visible,
.submit-form textarea:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.directory-controls input::placeholder,
.submit-form input::placeholder,
.submit-form textarea::placeholder {
  color: var(--quiet);
}

.bot-index {
  border-top: 1px solid var(--line);
}

.directory-loading,
.empty-state {
  margin: 0;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.bot-row {
  display: grid;
  grid-template-columns: .65fr 1.5fr 2fr 1.2fr auto;
  align-items: start;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color .24s ease, border-color .55s var(--ease-expo);
}

.bot-row:hover,
.bot-row:focus-within {
  background: var(--hover-fill);
}

.bot-row__code,
.bot-row__meta,
.bot-row__sample,
.bot-badge,
.bot-risk {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.bot-row__sample {
  display: block;
  margin-top: 9px;
  color: var(--signal-text);
}

.bot-row__identity h3 {
  margin: 0;
  color: var(--frost);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.bot-row__identity p,
.bot-row__summary,
.bot-row__meta p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.bot-row__summary {
  margin: 0;
  color: var(--copy);
  font-size: 15px;
  line-height: 1.42;
}

.bot-row__meta {
  display: grid;
  gap: 7px;
}

.bot-row__meta p {
  margin: 0;
}

.bot-badge--verified {
  color: var(--frost);
}

.bot-risk--high {
  color: var(--signal-text);
}

.bot-row__action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: transparent;
  color: var(--frost);
  font-size: 13px;
  white-space: nowrap;
  transition: border-color .22s ease, background-color .22s ease, transform .12s ease;
}

.bot-row__action span[aria-hidden="true"] {
  transition: transform .28s var(--ease-expo);
}

.bot-row__action:hover {
  border-color: var(--frost);
}

.bot-row__action:hover span[aria-hidden="true"] {
  transform: translateX(3px);
}

.bot-row__action:active {
  transform: scale(.97);
}

.bot-row__warning {
  grid-column: 3 / 5;
  margin-top: -12px;
  color: var(--signal-text);
  font-size: 12px;
  line-height: 1.25;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-column {
  min-width: 0;
  padding: 48px 64px 54px 0;
}

.audience-column + .audience-column {
  padding-right: 0;
  padding-left: 64px;
  border-left: 1px solid var(--line);
}

.audience-column h2 {
  font-size: 56px;
}

.editorial-list {
  margin: 54px 0 44px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.editorial-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.editorial-list strong {
  color: var(--frost);
  font-size: 14px;
  font-weight: 500;
}

.editorial-list span,
.audience-column__lead {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.audience-column__lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--copy);
  font-size: 17px;
}

.submit-form {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.submit-form .wide {
  grid-column: 1 / -1;
}

.submit-form textarea {
  resize: vertical;
}

.trust-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
  gap: 90px;
  align-items: start;
  margin-bottom: 78px;
}

.trust-heading__statement {
  margin: 26px 0 0;
  color: var(--copy);
  font-size: 56px;
  font-weight: 300;
  line-height: .96;
}

.trust-lead {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.verification-seal {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: var(--signal);
}

.verification-seal svg {
  width: 86px;
  height: 86px;
}

.trust-lead h3 {
  margin: 0;
  color: var(--frost);
  font-size: 32px;
  font-weight: 500;
}

.trust-lead p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.42;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.trust-grid article {
  min-height: 220px;
  padding: 34px 24px 34px 0;
}

.trust-grid article + article {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.trust-grid span {
  color: var(--muted);
  font-size: 11px;
}

.trust-grid h3 {
  margin: 42px 0 0;
  color: var(--frost);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
}

.trust-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.source-index {
  border-top: 1px solid var(--line);
}

.source-index a {
  min-height: 104px;
  display: grid;
  grid-template-columns: .8fr 1.6fr 2fr 28px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  transition: background-color .24s ease, border-color .55s var(--ease-expo);
}

.source-index a:hover,
.source-index a:focus-visible {
  background: var(--hover-fill);
}

.source-index span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.source-index strong {
  color: var(--frost);
  font-size: 22px;
  font-weight: 500;
}

.source-index p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.source-index i {
  color: var(--frost);
  font-style: normal;
  font-size: 20px;
  transition: transform .3s var(--ease-expo);
}

.source-index a:hover i,
.source-index a:focus-visible i {
  transform: translateX(4px);
}

.site-footer {
  padding: 72px 0 34px;
  background: var(--canvas);
  transition: background-color .55s var(--ease-expo), color .55s var(--ease-expo);
}

.site-footer__inner {
  width: min(var(--page-max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: var(--copy);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
  color: var(--quiet);
  font-size: 11px;
  text-align: right;
}

.site-footer small {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.35;
}

.bot-modal[hidden] {
  display: none;
}

.bot-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
}

.bot-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .28s ease;
}

.bot-modal.is-open .bot-modal__backdrop {
  opacity: 1;
}

.bot-modal__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--material-bg);
  color: var(--copy);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  box-shadow: 0 28px 80px var(--material-shadow);
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transform-origin: center;
  transition: opacity .24s ease, transform .42s var(--ease-expo), background-color .55s var(--ease-expo), color .55s var(--ease-expo);
}

.bot-modal.is-open .bot-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-content {
  padding: 42px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.modal-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.modal-header h3 {
  margin: 12px 0 0;
  color: var(--frost);
  font-size: 52px;
  font-weight: 600;
  line-height: .95;
  text-transform: uppercase;
}

.modal-handle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.modal-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: transparent;
  color: var(--frost);
  font-size: 24px;
  transition: background-color .22s ease, border-color .22s ease, transform .12s ease;
}

.modal-close:hover {
  border-color: var(--frost);
  background: var(--hover-fill);
}

.modal-close:active {
  transform: scale(.96);
}

.modal-description {
  margin: 34px 0 0;
  color: var(--copy);
  font-size: 18px;
  line-height: 1.42;
}

.modal-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.modal-metrics div {
  padding: 22px 14px 22px 0;
}

.modal-metrics div + div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.modal-metrics span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.modal-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--frost);
  font-size: 18px;
  font-weight: 500;
}

.modal-notes {
  margin-top: 28px;
}

.modal-notes h4 {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.modal-notes p {
  margin: 9px 0 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.42;
}

.modal-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .62s var(--ease-expo), background-color .55s var(--ease-expo), color .55s var(--ease-expo), border-color .55s var(--ease-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  :root {
    --page-pad: 56px;
    --display-size: 120px;
    --section-size: 64px;
  }
}

@media (min-width: 1600px) {
  :root {
    --page-pad: 126px;
    --display-size: 164px;
    --section-size: 82px;
  }
}

@media (min-width: 1800px) {
  :root {
    --display-size: 180px;
    --section-size: 91px;
  }
}

@media (max-width: 1199px) {
  :root {
    --page-pad: 40px;
    --display-size: 96px;
    --section-size: 56px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero__copy {
    width: 78%;
  }

  .audience-column h2,
  .trust-heading__statement {
    font-size: 44px;
  }

  .category-row strong {
    font-size: 22px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid article:nth-child(4) {
    border-left: 0;
  }

  .trust-grid article:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  :root {
    --display-size: 72px;
    --section-size: 48px;
  }

  .hero__inner {
    align-items: flex-start;
    padding-top: 72px;
  }

}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-trigger {
    display: grid;
  }

  .hero__copy {
    width: 86%;
  }

  .section-heading,
  .section-heading--wide,
  .manifesto__footer,
  .trust-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .platform-tags {
    justify-content: flex-start;
  }

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

  .directory-controls .text-button {
    justify-self: start;
  }

  .bot-row {
    grid-template-columns: .6fr 1.5fr 2fr auto;
  }

  .bot-row__meta {
    display: none;
  }

  .bot-row__warning {
    grid-column: 3 / 4;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-column,
  .audience-column + .audience-column {
    padding: 54px 0;
    border-left: 0;
  }

  .audience-column + .audience-column {
    border-top: 1px solid var(--line);
  }

  .trust-heading__statement {
    margin: 0;
  }

  .source-index a {
    grid-template-columns: .7fr 1.4fr 2fr 24px;
    gap: 18px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --page-pad: 20px;
    --display-size: 54px;
    --section-size: 42px;
  }

  .site-header {
    height: 64px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__name,
  .dynamic-theme-trigger-label,
  .header-submit {
    display: none;
  }

  .dynamic-theme-trigger,
  .menu-trigger {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .dynamic-theme-menu {
    position: fixed;
    top: 58px;
    right: 12px;
  }

  .mobile-menu {
    padding-top: 86px;
  }

  .mobile-menu nav a {
    grid-template-columns: 42px 1fr;
    font-size: 36px;
  }

  .hero {
    height: calc(100svh - 96px);
    min-height: 640px;
  }

  .hero__inner {
    align-items: flex-start;
    padding-top: 0;
  }

  .hero__copy {
    width: 100%;
    padding-bottom: 0;
  }

  .v5-title {
    margin-top: 16px;
    line-height: .9;
  }

  .hero__lead {
    max-width: 340px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero__actions {
    margin-top: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .signal-button {
    min-height: 44px;
  }

  .hero__meta {
    right: 70px;
    bottom: 18px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero__meta span {
    width: max-content;
  }

  .hero__meta span + span::before {
    margin-right: 12px;
  }

  .hero__index {
    bottom: 18px;
  }

  .keyboard-motion-toggle {
    right: 0;
    bottom: 50px;
  }

  .v5-keyboard-fallback::before,
  .v5-keyboard-fallback::after {
    background-image: none;
  }

  .v5-no-webgl .v5-keyboard-fallback::before {
    background-image: url("keyboard-mobile-poster-light.jpg");
  }

  .v5-no-webgl .v5-keyboard-fallback::after {
    background-image: url("keyboard-mobile-poster-dark.jpg");
  }

  #keyboard-desktop-canvas {
    transition-duration: .32s;
    transition-timing-function: ease-out;
  }

  .v5-keyboard-stage {
    transform: translateY(64px);
  }

  .monument-section,
  .manifesto {
    padding: 60px 0;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .manifesto__title,
  .audience-column h2,
  .trust-heading h2 {
    line-height: 1.02;
  }

  .section-heading__note,
  .manifesto__footer > p {
    font-size: 15px;
  }

  .manifesto__footer {
    margin-top: 40px;
  }

  .platform-tags {
    gap: 7px;
  }

  .platform-tags span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 10px;
  }

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

  .category-row,
  .category-row:nth-child(odd),
  .category-row:nth-child(even) {
    min-height: 92px;
    grid-template-columns: 34px 1fr auto;
    padding: 18px 0;
    border-right: 0;
  }

  .category-row strong {
    font-size: 20px;
  }

  .coverage-row {
    min-height: 84px;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    padding: 15px 0;
  }

  .coverage-row--header {
    display: none;
  }

  .coverage-line {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .coverage-row > span:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }

  .directory-meta {
    align-items: flex-start;
  }

  .directory-controls {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 42px;
  }

  .bot-row {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 22px 0;
  }

  .bot-row__code,
  .bot-row__identity,
  .bot-row__summary,
  .bot-row__meta,
  .bot-row__warning {
    grid-column: 1 / -1;
  }

  .bot-row__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 14px;
  }

  .bot-row__action {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .bot-row__identity h3 {
    font-size: 25px;
  }

  .bot-row__summary {
    font-size: 14px;
  }

  .editorial-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .audience-column h2,
  .trust-heading__statement {
    font-size: 38px;
  }

  .submit-form {
    grid-template-columns: 1fr;
  }

  .submit-form .wide {
    grid-column: auto;
  }

  .trust-heading {
    gap: 32px;
    margin-bottom: 52px;
  }

  .trust-lead {
    grid-template-columns: 72px 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .verification-seal,
  .verification-seal svg {
    width: 62px;
    height: 62px;
  }

  .trust-lead h3 {
    font-size: 24px;
  }

  .trust-lead p {
    font-size: 14px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article + article,
  .trust-grid article:nth-child(4) {
    min-height: auto;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-grid article:first-child {
    border-top: 0;
  }

  .trust-grid h3 {
    margin-top: 18px;
  }

  .source-index a {
    min-height: 148px;
    grid-template-columns: 1fr 24px;
    gap: 9px 16px;
    padding: 22px 0;
  }

  .source-index span,
  .source-index strong,
  .source-index p {
    grid-column: 1;
  }

  .source-index i {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .source-index strong {
    font-size: 20px;
  }

  .site-footer {
    padding-top: 54px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer small {
    margin-top: 18px;
  }

  .bot-modal {
    padding: 10px;
  }

  .modal-content {
    padding: 28px 22px;
  }

  .modal-header h3 {
    font-size: 38px;
  }

  .modal-description {
    font-size: 16px;
  }

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

  .modal-metrics div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .modal-metrics div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .modal-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 359px) {
  :root {
    --display-size: 46px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  }

  .mobile-menu,
  .dynamic-theme-menu,
  .bot-modal__panel {
    transform: none !important;
    transition-duration: .18s;
  }

  .signal-button:hover,
  .category-row:hover strong,
  .source-index a:hover i,
  .bot-row__action:hover span[aria-hidden="true"] {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header::before,
  .dynamic-theme-menu,
  .bot-modal__backdrop,
  .bot-modal__panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header::before,
  .dynamic-theme-menu,
  .bot-modal__panel {
    background: var(--canvas);
  }
}

@media (prefers-contrast: more) {
  :root {
    --copy: var(--frost);
    --muted: var(--frost);
    --line: currentColor;
  }
}
