@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("./fonts/outfit-latin-400-normal.woff2") format("woff2"),
       url("./fonts/outfit-latin-400-normal.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("./fonts/outfit-latin-500-normal.woff2") format("woff2"),
       url("./fonts/outfit-latin-500-normal.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("./fonts/outfit-latin-600-normal.woff2") format("woff2"),
       url("./fonts/outfit-latin-600-normal.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("./fonts/outfit-latin-700-normal.woff2") format("woff2"),
       url("./fonts/outfit-latin-700-normal.woff") format("woff");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("./fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2"),
       url("./fonts/jetbrains-mono-latin-400-normal.woff") format("woff");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 500 700;
  src: url("./fonts/jetbrains-mono-latin-500-normal.woff2") format("woff2"),
       url("./fonts/jetbrains-mono-latin-500-normal.woff") format("woff");
}

:root {
  --bg: #0a0a0f;
  --panel: #111118;
  --panel-hover: #16161f;
  --panel-2: #15151e;
  --text: #e8e8ed;
  --muted: #8888a0;
  --dim: #55556a;
  --border: #1e1e2a;
  --border-bright: #2c2c3a;
  --cyan: #22d3ee;
  --cyan-dim: #0e7490;
  --cyan-soft: rgba(34, 211, 238, .09);
  --magenta: #d946ef;
  --magenta-soft: rgba(217, 70, 239, .09);
  --gold: #e7c57b;
  --danger: #fb7185;
  --ok: #4ade80;
  --radius: 12px;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 8px;
  z-index: 200;
  padding: 9px 12px;
  border: 1px solid var(--cyan);
  border-radius: 7px;
  color: var(--bg);
  background: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .15s ease;
}

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

.qa-nav {
  height: 57px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, .8);
  backdrop-filter: blur(20px);
}

.qa-nav-inner {
  width: min(100%, 900px);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.brand-link {
  color: var(--text);
  text-decoration: none;
}

.brand-wordmark {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  white-space: nowrap;
}

.brand-wordmark strong {
  color: var(--cyan);
  font-weight: 600;
}

.global-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
  text-decoration: none;
  transition: color .15s ease;
}

.global-links a:hover,
.global-links a.active {
  color: var(--cyan);
}

.nav-burger {
  display: none;
  margin-left: auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
}

.nav-account {
  min-height: 31px;
  padding-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-left: 1px solid var(--border);
}

.nav-account > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .16);
  border-radius: 7px;
  color: var(--cyan);
  background: var(--cyan-soft);
  font: 700 9px/1 var(--font-mono);
}

.nav-account strong {
  max-width: 72px;
  overflow: hidden;
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-account button {
  min-height: 27px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--muted);
  background: transparent;
  font-size: 9px;
  cursor: pointer;
}

.nav-account button:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--panel);
}

.noscript {
  width: min(calc(100% - 32px), 1080px);
  margin: 18px auto;
  padding: 14px 16px;
  border: 1px solid rgba(231, 197, 123, .2);
  border-radius: 9px;
  color: var(--gold);
  background: rgba(231, 197, 123, .05);
  font-size: 13px;
}

body[data-prototype-controls="hidden"] .scenarioBar {
  display: none;
}

@media (max-width: 850px) and (min-width: 601px) {
  .global-links {
    gap: 15px;
  }

  .global-links a {
    font-size: 11px;
  }

  .nav-account strong,
  .nav-account button span {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav-burger {
    width: 44px;
    height: 44px;
    display: grid;
  }

  .global-links {
    width: 100%;
    position: absolute;
    left: 0;
    top: 57px;
    padding: 10px 18px 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: #0c0c12;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  }

  .global-links.open {
    display: flex;
  }

  .global-links a {
    min-height: 39px;
    display: flex;
    align-items: center;
  }

  .nav-account {
    margin-top: 7px;
    padding: 9px 0 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .nav-account button {
    margin-left: auto;
  }
}

.srOnly {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.shell {
  min-height: 100vh;
  padding-top: 57px;
  background:
    radial-gradient(760px 360px at 52% 0, rgba(34, 211, 238, .07), rgba(217, 70, 239, .025) 46%, transparent 72%),
    linear-gradient(rgba(34, 211, 238, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, .026) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 60px 60px, 60px 60px, auto;
}

.main {
  width: min(100%, 1128px);
  margin: 0 auto;
  padding: 26px 24px 76px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.scenarioBar {
  min-height: 56px;
  margin-bottom: 14px;
  padding: 9px 12px;
  display: grid;
  grid-template-columns: auto minmax(170px, .75fr) minmax(220px, .75fr) minmax(230px, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(231, 197, 123, .13);
  border-radius: 10px;
  background: rgba(17, 17, 24, .86);
  box-shadow: inset 0 1px rgba(255, 255, 255, .018);
}

.scenarioIcon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(231, 197, 123, .075);
}

.scenarioCopy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.scenarioCopy strong {
  color: var(--text);
  font-size: 11px;
}

.scenarioCopy span,
.scenarioBar p {
  margin: 0;
  color: var(--dim);
  font-size: 9px;
  line-height: 1.35;
}

.scenarioBar select {
  width: 100%;
  min-height: 36px;
  padding: 0 32px 0 10px;
  border: 1px solid var(--border-bright);
  border-radius: 7px;
  color: var(--text);
  background: var(--panel-2);
  font-size: 11px;
}

.heroLayout {
  min-height: 338px;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(330px, .82fr);
  align-items: stretch;
  gap: 14px;
}

.hero {
  min-height: 338px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, .14);
  border-radius: 16px;
  background: #07090e;
  box-shadow: 0 25px 75px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .024);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 7, 11, .99) 0%, rgba(6, 7, 11, .95) 34%, rgba(6, 7, 11, .74) 50%, rgba(6, 7, 11, .2) 73%, rgba(6, 7, 11, .46) 100%),
    linear-gradient(180deg, rgba(6, 7, 11, .08), rgba(6, 7, 11, .16) 62%, rgba(6, 7, 11, .72));
}

.hero::after {
  inset: 0;
  background-image:
    radial-gradient(520px 260px at 74% 52%, rgba(34, 211, 238, .055), transparent 72%),
    linear-gradient(180deg, transparent 72%, rgba(3, 4, 7, .24));
}

.heroArtwork {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.heroArtwork img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.heroCopy {
  width: min(49%, 560px);
  position: relative;
  z-index: 1;
  padding: 16px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heroCopy h1 {
  margin: 0;
  max-width: 620px;
  color: var(--text);
  font-size: clamp(41px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -1.3px;
}

.heroCopy h1 span {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(34, 211, 238, .2);
}

.heroCopy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.heroPrinciples {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.heroPrinciples span {
  min-height: 27px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(34, 211, 238, .12);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(34, 211, 238, .045);
  font: 600 9px/1 var(--font-mono);
  letter-spacing: .3px;
}

.accountSummary {
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 19px;
  align-self: stretch;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  background: rgba(10, 11, 18, .79);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
  backdrop-filter: blur(9px);
}

.heroLayout > .accountSummary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(12, 13, 20, .96);
  backdrop-filter: none;
}

.accountHead {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .16);
  border-radius: 10px;
  color: var(--cyan);
  background: var(--cyan-soft);
  font: 700 14px/1 var(--font-mono);
}

.accountHead > div {
  min-width: 0;
}

.accountHead .eyebrow {
  margin-bottom: 4px;
}

.accountHead h2 {
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quietButton {
  min-height: 30px;
  margin-left: auto;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 9px;
  cursor: pointer;
}

.quietButton:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--panel);
}

.accountFacts {
  margin: 16px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.accountFacts > span {
  min-height: 72px;
  padding: 11px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--cyan);
  background: rgba(0, 0, 0, .13);
}

.accountFacts > span + span {
  border-left: 1px solid var(--border);
}

.accountFacts > span > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.accountFacts small {
  color: var(--dim);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.accountFacts strong {
  margin-top: 5px;
  color: var(--text);
  font-size: 10px;
  line-height: 1.3;
}

.accountFacts em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  font-style: normal;
}

.accountIntro {
  margin: 16px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.accountAction {
  min-height: 38px;
  display: flex;
  align-items: center;
}

.primaryButton {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(34, 211, 238, .32);
  border-radius: 8px;
  color: #061014;
  background: var(--cyan);
  box-shadow: 0 10px 30px rgba(34, 211, 238, .12);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.primaryButton:hover {
  background: #67e8f9;
}

.allSet {
  min-height: 35px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(74, 222, 128, .14);
  border-radius: 7px;
  color: var(--ok);
  background: rgba(74, 222, 128, .045);
  font: 600 9px/1 var(--font-mono);
  letter-spacing: .3px;
}

.linkHelp {
  margin-top: 12px;
  padding: 10px;
  border: 1px solid rgba(231, 197, 123, .14);
  border-radius: 7px;
  color: var(--gold);
  background: rgba(231, 197, 123, .04);
}

.linkHelp strong {
  color: var(--text);
  font-size: 10px;
}

.linkHelp p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.linkHelp code {
  color: var(--cyan);
  font-family: var(--font-mono);
}

.noticeList {
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.notice {
  min-height: 68px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(17, 17, 24, .94);
}

.noticeIcon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--cyan);
  background: var(--cyan-soft);
}

.notice > div strong {
  color: var(--text);
  font-size: 11px;
}

.notice > div p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.notice > div a {
  margin-top: 7px;
  display: inline-flex;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
}

.notice > button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.notice > button:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--panel-hover);
}

.notice_success {
  border-color: rgba(74, 222, 128, .12);
}

.notice_success .noticeIcon {
  color: var(--ok);
  background: rgba(74, 222, 128, .06);
}

.notice_warning {
  border-color: rgba(231, 197, 123, .16);
}

.notice_warning .noticeIcon {
  color: var(--gold);
  background: rgba(231, 197, 123, .065);
}

.notice_critical {
  border-color: rgba(251, 113, 133, .18);
}

.notice_critical .noticeIcon {
  color: var(--danger);
  background: rgba(251, 113, 133, .065);
}

.directory {
  margin-top: 52px;
  scroll-margin-top: 76px;
}

.directoryHead {
  min-height: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.directoryHead h2 {
  margin: 0;
  color: var(--text);
  font-size: 31px;
  line-height: 1.08;
}

.directoryHead > div > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.serverAuthority {
  min-height: 30px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(34, 211, 238, .12);
  border-radius: 7px;
  color: var(--cyan);
  background: rgba(34, 211, 238, .035);
  font: 600 9px/1 var(--font-mono);
  white-space: nowrap;
}

.categoryFilters {
  margin: 20px 0 10px;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--panel);
}

.categoryFilters button {
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.categoryFilters button span {
  color: var(--dim);
  font: 600 9px/1 var(--font-mono);
}

.categoryFilters button[aria-pressed="true"] {
  color: var(--text);
  border-color: rgba(34, 211, 238, .15);
  background: var(--cyan-soft);
}

.categoryFilters button[aria-pressed="true"] span {
  color: var(--cyan);
}

.resultAnnouncement {
  height: 18px;
  margin: 0 2px 7px;
  color: var(--dim);
  font: 500 9px/1 var(--font-mono);
}

.featureGrid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  align-items: stretch;
  justify-content: start;
  gap: 12px;
  list-style: none;
}

.featureGrid > li {
  width: 100%;
  max-width: 352px;
  min-width: 0;
}

.featureCard {
  min-height: 336px;
  height: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 17px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17, 17, 24, .95);
  box-shadow: inset 0 1px rgba(255, 255, 255, .018);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.featureCard::before {
  content: "";
  width: 238px;
  height: 222px;
  position: absolute;
  z-index: -1;
  top: -54px;
  right: -46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(34, 211, 238, .18), rgba(34, 211, 238, .075) 38%, rgba(217, 70, 239, .035) 55%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.featureHasArt::before {
  opacity: 1;
}

.featureAvailable:hover {
  transform: translateY(-2px);
  border-color: var(--border-bright);
  background: var(--panel-hover);
}

.featureFeatured {
  border-color: rgba(34, 211, 238, .2);
  box-shadow: inset 0 1px rgba(255, 255, 255, .02), 0 14px 44px rgba(34, 211, 238, .025);
}

.featureLocked {
  background: rgba(15, 15, 22, .92);
}

.featureTop {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.featureHasArt .featureTop {
  min-height: 124px;
  padding-right: 132px;
}

.featureArt {
  width: 190px;
  height: 176px;
  position: absolute;
  z-index: 1;
  top: -8px;
  right: -9px;
  display: block;
  pointer-events: none;
  opacity: 1;
  filter:
    saturate(1.18)
    brightness(1.12)
    contrast(1.04)
    drop-shadow(0 10px 20px rgba(0, 0, 0, .34))
    drop-shadow(0 0 9px rgba(34, 211, 238, .18));
  transform: translateZ(0);
  transition: opacity .18s ease, transform .18s ease, filter .18s ease;
}

.featureArt img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.featureAvailable:hover .featureArt {
  opacity: 1;
  filter:
    saturate(1.25)
    brightness(1.17)
    contrast(1.05)
    drop-shadow(0 12px 24px rgba(0, 0, 0, .38))
    drop-shadow(0 0 12px rgba(34, 211, 238, .27));
  transform: translate3d(0, -3px, 0) scale(1.035);
}

.featureLocked .featureArt {
  opacity: .94;
  filter:
    saturate(1.04)
    brightness(1.07)
    contrast(1.03)
    drop-shadow(0 10px 20px rgba(0, 0, 0, .34))
    drop-shadow(0 0 8px rgba(34, 211, 238, .14));
}

.featureIcon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .12);
  border-radius: 10px;
  color: var(--cyan);
  background: var(--cyan-soft);
}

.featureLocked .featureIcon {
  color: var(--muted);
  border-color: var(--border);
  background: rgba(255, 255, 255, .018);
}

.featureBadges {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.featureBadges span {
  min-height: 21px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--muted);
  background: rgba(0, 0, 0, .12);
  font: 600 8px/1 var(--font-mono);
  letter-spacing: .45px;
  text-transform: uppercase;
}

.featureBadges .accessBadge {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, .12);
  background: var(--cyan-soft);
}

.featureBadges .lifecycleBadge {
  color: var(--magenta);
  border-color: rgba(217, 70, 239, .13);
  background: var(--magenta-soft);
}

.featureCopy {
  position: relative;
  z-index: 2;
  margin-top: 17px;
}

.featureCopy h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 18px;
  line-height: 1.22;
}

.featureCopy p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.featureStatus {
  position: relative;
  z-index: 2;
  margin: 12px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  color: var(--dim);
  font: 500 9px/1.4 var(--font-mono);
}

.featureStatus svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

.featureFoot {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 15px;
}

.featureActions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cardAction {
  min-height: 35px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(34, 211, 238, .23);
  border-radius: 7px;
  color: var(--cyan);
  background: rgba(34, 211, 238, .055);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.cardAction:hover {
  color: var(--text);
  border-color: rgba(34, 211, 238, .4);
  background: rgba(34, 211, 238, .09);
}

.secondaryAction {
  color: var(--muted);
  font-size: 9px;
  text-decoration: none;
}

.lockState {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.lockState > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font: 600 9px/1 var(--font-mono);
  letter-spacing: .35px;
  text-transform: uppercase;
}

.lockState p {
  margin: 7px 0 0;
  color: var(--dim);
  font-size: 9px;
  line-height: 1.45;
}

.directoryEmpty {
  min-height: 255px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--dim);
  background: var(--panel);
  text-align: center;
}

.directoryEmpty h3 {
  margin: 13px 0 0;
  color: var(--text);
  font-size: 18px;
}

.directoryEmpty p {
  max-width: 480px;
  margin: 7px 0 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.directoryEmpty a {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 600;
}

.skeletonAccount {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 13px;
}

.skeletonAccount span,
.skeletonGrid span {
  display: block;
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(255,255,255,.025), rgba(255,255,255,.06), rgba(255,255,255,.025));
  background-size: 220% 100%;
  animation: skeleton 1.35s ease-in-out infinite;
}

.skeletonAccount span:nth-child(1) {
  width: 42px;
  height: 42px;
  grid-row: span 2;
}

.skeletonAccount span:nth-child(2) {
  width: 55%;
  height: 13px;
}

.skeletonAccount span:nth-child(3) {
  width: 82%;
  height: 9px;
}

.skeletonAccount span:nth-child(4) {
  width: 100%;
  height: 72px;
  grid-column: 1 / -1;
}

.skeletonGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.skeletonGrid span {
  min-height: 320px;
  border: 1px solid var(--border);
}

@keyframes skeleton {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.errorState {
  min-height: 250px;
  margin-top: 18px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(251, 113, 133, .16);
  border-radius: var(--radius);
  background: rgba(17, 17, 24, .95);
}

.errorState > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--danger);
  background: rgba(251, 113, 133, .065);
}

.errorState h2 {
  margin: 0;
  font-size: 21px;
}

.errorState p {
  max-width: 610px;
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.errorState div > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.errorState button {
  min-height: 36px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(34, 211, 238, .25);
  border-radius: 7px;
  color: var(--cyan);
  background: var(--cyan-soft);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.errorState a {
  color: var(--muted);
  font-size: 10px;
}

.footer {
  width: min(calc(100% - 48px), 1080px);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 10px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--cyan);
}

@media (max-width: 900px) {
  .scenarioBar {
    grid-template-columns: auto minmax(170px, 1fr) minmax(220px, 1fr);
  }

  .scenarioBar p {
    grid-column: 2 / -1;
  }

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

  .hero {
    min-height: 330px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(6, 7, 11, .98) 0%, rgba(6, 7, 11, .91) 43%, rgba(6, 7, 11, .6) 74%, rgba(6, 7, 11, .45)),
      linear-gradient(180deg, rgba(6, 7, 11, .08), rgba(6, 7, 11, .45) 48%, rgba(6, 7, 11, .88) 74%);
  }

  .heroArtwork img {
    object-position: 65% center;
  }

  .heroCopy {
    width: min(58%, 680px);
    max-width: 680px;
    padding-bottom: 0;
  }

  .accountSummary {
    width: 100%;
    max-width: none;
  }

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

@media (max-width: 680px) {
  .main {
    padding-inline: 16px;
  }

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

  .scenarioBar label,
  .scenarioBar p {
    grid-column: 1 / -1;
  }

  .hero {
    padding: 24px;
    border-radius: 14px;
  }

  .heroCopy {
    width: min(66%, 680px);
  }

  .heroPrinciples {
    display: none;
  }

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

  .accountFacts > span + span {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .directoryHead {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .serverAuthority {
    white-space: normal;
  }

  .footer {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .main {
    padding: 18px 11px 58px;
  }

  .scenarioBar {
    margin-bottom: 10px;
    padding: 9px;
  }

  .scenarioCopy span,
  .scenarioBar p {
    font-size: 8px;
  }

  .hero {
    min-height: 310px;
    padding: 22px 18px;
    gap: 21px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(6, 7, 11, .98), rgba(6, 7, 11, .78)),
      linear-gradient(180deg, rgba(6, 7, 11, .15), rgba(6, 7, 11, .72) 47%, rgba(6, 7, 11, .96) 72%);
  }

  .heroArtwork img {
    object-position: 69% center;
  }

  .heroCopy {
    width: 72%;
    padding: 5px 1px 0;
  }

  .heroCopy h1 {
    font-size: 40px;
  }

  .heroCopy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .accountSummary {
    padding: 15px;
  }

  .quietButton {
    width: 32px;
    overflow: hidden;
    padding: 0;
    justify-content: center;
    white-space: nowrap;
  }

  .quietButton svg { flex: 0 0 auto; }
  .quietButton span { display: none; }

  .primaryButton {
    width: 100%;
  }

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

  .notice > button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .directory {
    margin-top: 43px;
  }

  .directoryHead h2 {
    font-size: 27px;
  }

  .categoryFilters {
    align-items: stretch;
  }

  .categoryFilters button {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
  }

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

  .featureGrid > li {
    max-width: none;
  }

  .featureCard {
    min-height: 324px;
    padding: 15px;
  }

  .featureHasArt .featureTop {
    min-height: 118px;
    padding-right: 126px;
  }

  .featureArt {
    width: 180px;
    height: 166px;
    top: -7px;
    right: -11px;
  }

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

  .errorState {
    padding: 21px;
    flex-direction: column;
  }

  .footer {
    width: calc(100% - 22px);
  }

  .footer nav {
    gap: 12px;
  }
}
