/* Shared presentation layer for the retained standalone public pages. */

body.standalone-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.standalone-page .site-header {
  flex: 0 0 auto;
}

.standalone-page .standalone-main {
  position: relative;
  flex: 1 0 auto;
  padding: clamp(36px, 4.5vw, 64px) 0 clamp(76px, 9vw, 132px);
}

.standalone-page .standalone-main::before {
  position: absolute;
  z-index: -1;
  top: -74px;
  left: 0;
  width: 100%;
  height: min(760px, 78vh);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 16% 0%, color-mix(in srgb, var(--product-accent) 13%, transparent), transparent 40%);
  background-size: 64px 64px, 64px 64px, auto;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  pointer-events: none;
  content: "";
}

.standalone-page .site-footer {
  position: relative;
  flex: 0 0 auto;
  margin-top: auto;
}

.standalone-page .site-footer__brand-lockup {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.standalone-page .site-footer__brand-lockup .brand__mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.standalone-page .site-footer__brand-lockup .brand__wordmark {
  width: auto;
  max-width: min(220px, calc(100vw - 108px));
  height: 24px;
}

.standalone-page .primary-nav a[aria-current="page"] {
  color: #fff;
}

.standalone-page .primary-nav a[aria-current="page"]::after {
  width: 100%;
  opacity: 1;
}

.standalone-page .standalone-mobile-only {
  display: none;
}

/* components.css retains the legacy checkbox-toggle geometry; these pages use
   the landing page's real button contract instead. */
.standalone-page .nav-toggle {
  position: static;
  width: 42px;
  height: 42px;
  opacity: 1;
}

.standalone-version-badge {
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.standalone-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: end;
  padding: clamp(26px, 3.5vw, 50px) 0 clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--landing-line);
}

.standalone-hero--single {
  grid-template-columns: minmax(0, 860px);
}

.standalone-kicker,
.section-kicker,
.meta-label,
.status-chip,
.standalone-page dt {
  font-family: var(--public-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.standalone-kicker,
.section-kicker {
  margin: 0 0 18px;
  color: var(--product-accent-bright);
  font-size: 11px;
  font-weight: 700;
}

.standalone-kicker::before,
.section-kicker::before {
  display: inline-block;
  width: 22px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
  content: "";
}

.standalone-title {
  max-width: 920px;
  margin: 0;
  font-family: var(--public-font-display);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.standalone-title--legal {
  font-size: clamp(42px, 4.5vw, 68px);
}

.standalone-lede {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--landing-text-2);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
  text-wrap: pretty;
}

.standalone-hero__aside {
  padding: 24px 0 7px 26px;
  border-left: 1px solid var(--landing-line-strong);
}

.standalone-hero__aside p {
  margin: 0;
  color: var(--landing-text-2);
  line-height: 1.7;
}

.standalone-hero__aside p + p,
.standalone-hero__aside .button {
  margin-top: 20px;
}

.standalone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.standalone-section {
  padding: clamp(66px, 8vw, 118px) 0;
  border-bottom: 1px solid var(--landing-line);
}

.standalone-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.standalone-section__head {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  margin-bottom: clamp(36px, 5vw, 64px);
}

.standalone-section__head h2,
.standalone-panel h2 {
  margin: 0;
  font-family: var(--public-font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.standalone-section__head p {
  max-width: 720px;
  margin: 4px 0 0;
  color: var(--landing-text-2);
  font-size: 17px;
  line-height: 1.7;
}

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

.standalone-card,
.standalone-panel {
  position: relative;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 48%),
    var(--landing-surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.standalone-card {
  grid-column: span 4;
  min-height: 250px;
  padding: clamp(24px, 3vw, 38px);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.standalone-card--wide {
  grid-column: span 8;
}

.standalone-card--half {
  grid-column: span 6;
}

.standalone-card:hover {
  border-color: var(--landing-line-strong);
  transform: translateY(-3px);
}

.standalone-card h3,
.standalone-panel h3 {
  margin: 0;
  font-family: var(--public-font-display);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.standalone-card p,
.standalone-panel p,
.standalone-card li,
.standalone-panel li {
  color: var(--landing-text-2);
  line-height: 1.7;
}

.standalone-card p:last-child,
.standalone-panel p:last-child {
  margin-bottom: 0;
}

.card-index {
  display: block;
  margin-bottom: 72px;
  color: var(--landing-muted);
  font-family: var(--public-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid var(--landing-line-strong);
  border-radius: 999px;
  color: var(--landing-text-2);
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
  font-weight: 700;
}

.status-chip--available {
  border-color: color-mix(in srgb, var(--landing-lime) 48%, transparent);
  color: var(--landing-lime-bright);
  background: color-mix(in srgb, var(--landing-lime) 9%, transparent);
}

.status-chip--planned {
  border-color: color-mix(in srgb, var(--landing-blue) 42%, transparent);
  color: var(--landing-blue-bright);
}

.status-chip::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

.standalone-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.standalone-list li {
  position: relative;
  padding-left: 19px;
}

.standalone-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--product-accent);
  content: "";
}

.standalone-page a:not(.brand):not(.button):not(.public-story-button):not(.site-footer__links a):not(.primary-nav a):not(.footer-version):not(.footer-copyright) {
  color: var(--landing-blue-bright);
  text-underline-offset: 0.22em;
}

.standalone-page :where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--landing-blue-bright) 72%, white);
  outline-offset: 3px;
}

.standalone-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid color-mix(in srgb, var(--landing-blue) 32%, var(--landing-line));
  border-radius: var(--landing-radius-sm);
  background: color-mix(in srgb, var(--landing-blue) 6%, var(--landing-surface));
}

.standalone-callout__mark {
  color: var(--landing-blue-bright);
  font-family: var(--public-font-mono);
  font-size: 11px;
  font-weight: 700;
}

.standalone-callout p {
  margin: 0;
}

/* Support hub and the deliberately non-functional ticket centre preview. */
.support-path {
  --support-path-accent: var(--landing-blue-bright);
  --support-path-accent-rgb: 80, 168, 255;
  --support-path-icon: url("/assets/icons/ui/support.svg");
  display: flex;
  flex-direction: column;
  min-height: 292px;
  isolation: isolate;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--support-path-accent) 18%, var(--landing-line));
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--support-path-accent-rgb), 0.1), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 48%),
    var(--landing-surface);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.035),
    0 18px 46px rgba(0, 0, 0, 0.12);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.support-path::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 6%, var(--support-path-accent) 48%, transparent 94%);
  opacity: 0.72;
  content: "";
}

.support-path::after {
  position: absolute;
  z-index: -1;
  inset: -40% auto -40% -45%;
  width: 42%;
  transform: skewX(-18deg) translateX(-160%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  content: "";
  transition: transform 680ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.support-path:hover,
.support-path:focus-within {
  border-color: color-mix(in srgb, var(--support-path-accent) 46%, var(--landing-line));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.055),
    0 22px 52px rgba(0, 0, 0, 0.22),
    0 0 34px rgba(var(--support-path-accent-rgb), 0.055);
  transform: translateY(-4px);
}

.support-path:hover::after,
.support-path:focus-within::after {
  transform: skewX(-18deg) translateX(470%);
}

.support-path__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.support-path__icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--support-path-accent) 34%, var(--landing-line));
  border-radius: 14px;
  color: var(--support-path-accent);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 52%),
    rgba(var(--support-path-accent-rgb), 0.085);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.support-path__icon::before {
  width: 26px;
  height: 26px;
  background: currentColor;
  content: "";
  -webkit-mask: var(--support-path-icon) center / contain no-repeat;
  mask: var(--support-path-icon) center / contain no-repeat;
}

.support-path:hover .support-path__icon,
.support-path:focus-within .support-path__icon {
  border-color: color-mix(in srgb, var(--support-path-accent) 64%, var(--landing-line));
  background-color: rgba(var(--support-path-accent-rgb), 0.13);
  transform: translateY(-2px);
}

.support-path .card-index {
  margin: 5px 0 0;
  color: color-mix(in srgb, var(--support-path-accent) 72%, var(--landing-muted));
  text-align: right;
}

.support-path__copy {
  margin-bottom: 26px;
}

.support-path__copy h3 {
  color: var(--landing-text-1);
}

.support-path__copy p {
  margin: 14px 0 0;
}

.support-path .button {
  align-self: flex-start;
  margin-top: auto;
  border-color: color-mix(in srgb, var(--support-path-accent) 28%, var(--landing-line-strong));
}

.support-path--start {
  --support-path-icon: url("/assets/icons/ui/bookpage.svg");
}

.support-path--access {
  --support-path-accent: #a99cff;
  --support-path-accent-rgb: 169, 156, 255;
  --support-path-icon: url("/assets/icons/ui/shieldperson.svg");
}

.support-path--diagnose {
  --support-path-accent: #65d7ec;
  --support-path-accent-rgb: 101, 215, 236;
  --support-path-icon: url("/assets/icons/ui/support.svg");
}

.support-path--payment {
  --support-path-accent: #f4bb64;
  --support-path-accent-rgb: 244, 187, 100;
  --support-path-icon: url("/assets/icons/ui/donate.svg");
}

.support-path--report {
  --support-path-accent: #ff8278;
  --support-path-accent-rgb: 255, 130, 120;
  --support-path-icon: url("/assets/icons/ui/cloudalert.svg");
}

.support-path--community {
  --support-path-accent: #8d98ff;
  --support-path-accent-rgb: 141, 152, 255;
  --support-path-icon: url("/assets/icons/ui/discord.svg");
}

.support-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius-lg);
  background: var(--landing-line);
}

.support-spotlight > * {
  padding: clamp(28px, 4vw, 52px);
  background: var(--landing-surface);
}

.support-spotlight__widget-wrap {
  display: grid;
  align-items: center;
  padding: clamp(20px, 3vw, 38px) !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(88, 101, 242, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(80, 168, 255, 0.04), transparent 48%),
    var(--landing-surface) !important;
}

.discord-community {
  --discord-accent: #6976ff;
  --discord-accent-bright: #91caff;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--discord-accent) 32%, var(--landing-line-strong));
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(88, 101, 242, 0.1), transparent 30%),
    rgba(7, 11, 17, 0.94);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 50px rgba(80, 168, 255, 0.045);
}

.discord-community::before {
  position: absolute;
  inset: 0 12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--discord-accent-bright), var(--discord-accent), transparent);
  content: "";
  opacity: 0.85;
}

.discord-community__header,
.discord-community__footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
}

.discord-community__header {
  border-bottom: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.018);
}

.discord-community__brand {
  display: flex;
  min-width: 0;
  gap: 12px;
  align-items: center;
}

.discord-community__brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(145, 202, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(88, 101, 242, 0.2), rgba(80, 168, 255, 0.06));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.discord-community__brand-mark img {
  width: 23px;
  height: 23px;
}

.discord-community__brand > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.discord-community__brand small,
.discord-community__panel-heading,
.discord-community__connection,
.discord-community__overview span,
.discord-community__channel small,
.discord-community__member small,
.discord-community__channel-state {
  font-family: var(--public-font-mono);
  text-transform: uppercase;
}

.discord-community__brand small {
  color: var(--discord-accent-bright);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.discord-community__brand strong {
  overflow: hidden;
  color: var(--landing-text);
  font-family: var(--public-font-display);
  font-size: 18px;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discord-community__connection {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  color: var(--landing-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.discord-community__connection i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f2b84b;
  box-shadow: 0 0 0 4px rgba(242, 184, 75, 0.08), 0 0 16px rgba(242, 184, 75, 0.24);
}

.discord-community[data-state="ready"] .discord-community__connection i {
  background: #63e6a2;
  box-shadow: 0 0 0 4px rgba(99, 230, 162, 0.08), 0 0 16px rgba(99, 230, 162, 0.28);
}

.discord-community[data-state="error"] .discord-community__connection i {
  background: #ff8c8c;
  box-shadow: 0 0 0 4px rgba(255, 140, 140, 0.08), 0 0 16px rgba(255, 140, 140, 0.24);
}

.discord-community__overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 0.36fr)) minmax(180px, 1fr);
  border-bottom: 1px solid var(--landing-line);
}

.discord-community__overview > * {
  min-width: 0;
  margin: 0;
  padding: 16px 20px;
}

.discord-community__overview > * + * {
  border-left: 1px solid var(--landing-line);
}

.discord-community__overview > div {
  display: grid;
  gap: 2px;
}

.discord-community__overview strong {
  color: #fff;
  font-family: var(--public-font-display);
  font-size: 24px;
  line-height: 1;
}

.discord-community__overview span {
  color: var(--landing-muted);
  font-size: 7px;
  letter-spacing: 0.065em;
}

.discord-community__overview p {
  align-self: center;
  color: var(--landing-text-2);
  font-size: 11px;
  line-height: 1.5;
}

.discord-community__directory {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.25fr);
  min-height: 220px;
}

.discord-community__panel {
  min-width: 0;
  padding: 18px 20px 20px;
}

.discord-community__panel + .discord-community__panel {
  border-left: 1px solid var(--landing-line);
}

.discord-community__panel-heading {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--landing-muted);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.discord-community__panel-heading > span {
  color: var(--discord-accent-bright);
}

.discord-community__panel-heading h3 {
  margin: 0;
  font: inherit;
}

.discord-community__channels,
.discord-community__members {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.discord-community__channel,
.discord-community__member {
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.022);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.discord-community__channel:hover,
.discord-community__member:hover {
  border-color: rgba(145, 202, 255, 0.16);
  background: rgba(80, 168, 255, 0.045);
  transform: translateY(-1px);
}

.discord-community__channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 10px;
}

.discord-community__channel-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--discord-accent-bright);
  background: rgba(88, 101, 242, 0.11);
  font-family: var(--public-font-mono);
  font-size: 12px;
}

.discord-community__channel > span:nth-child(2),
.discord-community__member > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.discord-community__channel strong,
.discord-community__member strong {
  overflow: hidden;
  color: var(--landing-text);
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discord-community__channel small,
.discord-community__member small {
  color: var(--landing-muted);
  font-size: 7px;
  letter-spacing: 0.04em;
}

.discord-community__channel-state {
  color: #72e4ab;
  font-size: 7px;
  letter-spacing: 0.05em;
}

.discord-community__member {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 8px 9px;
}

.discord-community__avatar {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(145, 202, 255, 0.16);
  border-radius: 50%;
  color: var(--landing-text-2);
  background: rgba(88, 101, 242, 0.11);
  font: 600 10px var(--public-font-mono);
}

.discord-community__avatar::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 7px;
  height: 7px;
  border: 2px solid #0a0e15;
  border-radius: 50%;
  background: #63e6a2;
  content: "";
}

.discord-community__member[data-status="idle"] .discord-community__avatar::after { background: #f2b84b; }
.discord-community__member[data-status="dnd"] .discord-community__avatar::after { background: #ff7777; }

.discord-community__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discord-community__placeholder,
.discord-community__empty {
  color: var(--landing-muted);
  font-size: 10px;
  line-height: 1.5;
}

.discord-community__placeholder {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.discord-community__placeholder > span:first-child {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), rgba(145, 202, 255, 0.11), rgba(255, 255, 255, 0.025));
  background-size: 200% 100%;
  animation: discord-placeholder 1.4s ease-in-out infinite;
}

.discord-community__empty {
  padding: 12px;
  border: 1px dashed var(--landing-line);
  border-radius: 10px;
}

.discord-community__footer {
  border-top: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.014);
}

.discord-community__footer > div:first-child {
  display: grid;
  max-width: 260px;
  gap: 3px;
}

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

.discord-community__footer > div:first-child span {
  color: var(--landing-muted);
  font-size: 9px;
  line-height: 1.45;
}

.discord-community__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.discord-community__actions .button {
  min-height: 34px;
  padding-inline: 12px;
  font-size: 10px;
}

.discord-community__join {
  box-shadow: 0 10px 30px rgba(80, 168, 255, 0.13);
}

.discord-community__refresh:disabled {
  cursor: wait;
  opacity: 0.55;
}

@keyframes discord-placeholder {
  to { background-position: -200% 0; }
}

.ticket-preview {
  overflow: hidden;
  border: 1px solid var(--landing-line-strong);
  border-radius: var(--landing-radius-lg);
  background: var(--landing-surface);
}

.ticket-preview__bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--landing-line);
  background: var(--landing-surface-2);
}

.ticket-preview__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
}

.ticket-preview__form,
.ticket-preview__history {
  padding: clamp(24px, 4vw, 46px);
}

.ticket-preview__history {
  border-left: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.012);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: var(--landing-text-2);
  font-size: 13px;
  font-weight: 650;
}

.standalone-page :where(input, select, textarea) {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--landing-line-strong);
  border-radius: var(--landing-radius-sm);
  padding: 12px 14px;
  background: #070a0e;
  color: var(--landing-text);
  font: inherit;
}

.standalone-page textarea {
  min-height: 136px;
  resize: vertical;
}

.standalone-page :where(input, select, textarea):disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.form-help {
  margin: 0;
  color: var(--landing-muted);
  font-size: 12px;
}

.ticket-empty {
  margin-top: 28px;
  padding: 30px 22px;
  border: 1px dashed var(--landing-line-strong);
  border-radius: var(--landing-radius);
  text-align: center;
}

.ticket-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--landing-text);
}

.ticket-preview [disabled].button {
  cursor: not-allowed;
  opacity: 0.48;
}

/* Roadmap programmes. */
.roadmap-summary {
  max-width: 760px;
}

.roadmap-programmes {
  display: grid;
  gap: 14px;
}

.roadmap-program {
  position: relative;
  overflow: clip;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background: var(--landing-surface);
  isolation: isolate;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 280ms ease, transform 280ms cubic-bezier(0.2, 0.72, 0.3, 1);
}

.roadmap-program::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(108deg, transparent 24%, rgba(255, 255, 255, 0.045) 43%, color-mix(in srgb, var(--product-accent-bright) 13%, transparent) 50%, rgba(255, 255, 255, 0.035) 57%, transparent 76%);
  content: "";
  pointer-events: none;
  transform: translateX(-145%);
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.roadmap-program:hover,
.roadmap-program:focus-within {
  border-color: var(--landing-line-strong);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px color-mix(in srgb, var(--product-accent) 7%, transparent);
  transform: translateY(-2px);
}

.roadmap-program:hover::before,
.roadmap-program:focus-within::before {
  transform: translateX(145%);
}

.roadmap-program[open] {
  border-color: var(--landing-line-strong);
  background: var(--landing-surface-2);
}

.roadmap-program summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  padding: clamp(24px, 3.5vw, 40px);
  cursor: pointer;
  list-style: none;
}

.roadmap-program summary::-webkit-details-marker {
  display: none;
}

.roadmap-program__title-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.roadmap-program__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  margin-top: 2px;
  background: var(--product-accent-bright);
  mask: var(--roadmap-icon) center / contain no-repeat;
}

.roadmap-program h2 {
  margin: 0;
  font-family: var(--public-font-display);
  font-size: clamp(19px, 2.3vw, 29px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.roadmap-program__phase {
  display: block;
  margin-top: 7px;
  color: var(--landing-muted);
  font-family: var(--public-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-program__percent {
  color: var(--landing-text);
  font-family: var(--public-font-mono);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.roadmap-progress {
  position: relative;
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  transition: background-color 320ms ease, transform 320ms cubic-bezier(0.2, 0.72, 0.3, 1);
}

.roadmap-progress__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--roadmap-percent);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--product-accent), var(--product-accent-bright));
  box-shadow: 0 0 24px color-mix(in srgb, var(--product-accent) 38%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms ease, filter 320ms ease;
}

.roadmap-progress__fill::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, 0.62) 50%, transparent 82%);
  content: "";
  transform: translateX(-120%);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-program[data-progress-visible="true"] .roadmap-progress__fill {
  transform: scaleX(1);
}

.roadmap-program[data-progress-visible="true"]:hover .roadmap-progress,
.roadmap-program[data-progress-visible="true"]:focus-within .roadmap-progress {
  background: rgba(255, 255, 255, 0.12);
  transform: scaleY(1.28);
}

.roadmap-program[data-progress-visible="true"]:hover .roadmap-progress__fill,
.roadmap-program[data-progress-visible="true"]:focus-within .roadmap-progress__fill {
  box-shadow: 0 0 34px color-mix(in srgb, var(--product-accent-bright) 52%, transparent);
  filter: saturate(1.12) brightness(1.08);
}

.roadmap-program[data-progress-visible="true"]:hover .roadmap-progress__fill::after,
.roadmap-program[data-progress-visible="true"]:focus-within .roadmap-progress__fill::after {
  transform: translateX(120%);
}

.roadmap-program__detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: 36px;
  padding: 0 clamp(24px, 3.5vw, 40px) clamp(26px, 4vw, 42px) 90px;
}

.roadmap-program__detail p {
  margin: 0;
  color: var(--landing-text-2);
  line-height: 1.7;
}

.roadmap-next {
  padding-left: 18px;
  border-left: 1px solid var(--landing-line-strong);
}

.roadmap-next strong {
  display: block;
  margin-bottom: 7px;
  color: var(--landing-blue-bright);
  font-family: var(--public-font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roadmap-loading,
.roadmap-error {
  padding: 32px;
  border: 1px dashed var(--landing-line-strong);
  border-radius: var(--landing-radius);
  color: var(--landing-muted);
}

.release-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius-lg);
  overflow: hidden;
}

.release-link {
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--landing-line);
  background: var(--landing-surface);
  color: var(--landing-text) !important;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.release-link:last-child {
  border-right: 0;
}

.release-link:hover,
.release-link:focus-visible {
  background: var(--landing-surface-3);
}

.release-link span {
  color: var(--landing-muted);
  font-family: var(--public-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-link strong {
  font-family: var(--public-font-display);
  font-size: 23px;
}

/* Long-form legal reading. */
.privacy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
  justify-content: center;
  padding-top: clamp(54px, 7vw, 92px);
}

.privacy-index {
  position: sticky;
  top: calc(var(--landing-header-height) + 28px);
  max-height: calc(100vh - var(--landing-header-height) - 56px);
  overflow: auto;
  padding-right: 18px;
}

.privacy-index h2 {
  margin: 0 0 20px;
  color: var(--landing-text);
  font-family: var(--public-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-index ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-index a {
  display: block;
  padding: 5px 0;
  color: var(--landing-muted) !important;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.privacy-index a:hover,
.privacy-index a:focus-visible {
  color: var(--landing-text) !important;
}

.privacy-document {
  min-width: 0;
}

.privacy-document article {
  padding: 0 0 clamp(46px, 6vw, 76px);
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  scroll-margin-top: calc(var(--landing-header-height) + 28px);
}

.privacy-document article + article {
  padding-top: clamp(44px, 6vw, 72px);
  border-top: 1px solid var(--landing-line);
}

.privacy-document h2 {
  max-width: 680px;
  margin: 0 0 24px;
  font-family: var(--public-font-display);
  font-size: clamp(27px, 3.3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.privacy-document h3 {
  margin: 32px 0 12px;
  color: var(--landing-text);
  font-size: 17px;
}

.privacy-document p,
.privacy-document li {
  color: var(--landing-text-2);
  font-size: 16px;
  line-height: 1.78;
}

.privacy-document :where(a, code) {
  overflow-wrap: anywhere;
}

.privacy-document ul,
.privacy-document ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.privacy-document .public-badge,
.privacy-document .section-heading {
  display: none;
}

/* About keeps its manifest-driven content while adopting the canonical shell. */
.standalone-page--about .public-about-hero,
.standalone-page--about .public-story-section,
.standalone-page--about .public-about-record,
.standalone-page--about .public-story-alpha {
  width: var(--landing-shell);
  margin-inline: auto;
}

.standalone-page--about .about-hero {
  min-height: 0;
  padding-top: clamp(64px, 8vw, 116px);
}

.standalone-page--about .public-about-hero h1,
.standalone-page--about .public-story-heading h2,
.standalone-page--about .public-story-alpha h2 {
  font-family: var(--public-font-display);
}

.standalone-page--about .public-about-hero {
  min-height: 0;
  padding-top: clamp(64px, 8vw, 112px);
}

.standalone-page--about .standalone-main {
  padding-top: 0;
}

.standalone-page--about .public-about-hero h1 {
  font-size: clamp(46px, 5.2vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

/* Accessibility samples. */
.accessibility-demo {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.keyboard-key {
  display: inline-flex;
  min-width: 31px;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--landing-line-strong);
  border-bottom-color: rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: #0b1017;
  color: var(--landing-text);
  font-family: var(--public-font-mono);
  font-size: 11px;
}

.limitation-panel {
  padding: clamp(28px, 4vw, 52px);
}

/* Checkout-specific layout; behavior remains in public-donate.js. */
.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.62fr);
  gap: 18px;
  align-items: start;
}

.donate-checkout,
.donate-assurance {
  padding: clamp(28px, 4vw, 50px);
}

.donate-assurance {
  position: sticky;
  top: calc(var(--landing-header-height) + 28px);
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 24px;
}

.donate-option {
  min-height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--landing-line-strong);
  border-radius: var(--landing-radius-sm);
  background: var(--landing-surface-2);
  color: var(--landing-text);
  font-family: var(--public-font-mono);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.donate-option strong {
  font-size: 18px;
}

.donate-option span {
  color: var(--landing-muted);
  font-family: var(--public-font-body);
  font-size: 11px;
  font-weight: 600;
}

.donate-option:hover,
.donate-option:focus-visible,
.donate-option[aria-pressed="true"] {
  border-color: var(--landing-lime);
  background: color-mix(in srgb, var(--landing-lime) 10%, var(--landing-surface-2));
}

.donate-option:hover {
  transform: translateY(-2px);
}

.donate-custom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 10px;
}

.donate-custom-row .button {
  min-width: 186px;
}

.donate-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--landing-muted);
  font-size: 13px;
}

.donate-status[data-state="error"] {
  color: #ff9b9f;
}

.donate-status[data-state="loading"] {
  color: var(--landing-blue-bright);
}

.donate-checkout[aria-busy="true"] .donate-option,
.donate-checkout[aria-busy="true"] .donate-custom-row .button {
  cursor: wait;
  opacity: 0.62;
}

.donate-assurance dl {
  display: grid;
  gap: 22px;
  margin: 30px 0 0;
}

.donate-assurance dt {
  color: var(--landing-muted);
  font-size: 9px;
}

.donate-assurance dd {
  margin: 7px 0 0;
  color: var(--landing-text-2);
  line-height: 1.55;
}

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

.donate-impact-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 48%), var(--landing-surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.donate-impact-card:hover {
  border-color: color-mix(in srgb, var(--landing-lime) 42%, var(--landing-line));
  transform: translateY(-3px);
}

.donate-impact-card__amount {
  margin: 0 0 38px;
  color: var(--landing-lime-bright);
  font-family: var(--public-font-mono);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.donate-impact-card h3,
.donate-funding-list h3,
.donate-faq-grid h3 {
  margin: 0;
  font-family: var(--public-font-display);
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: -0.02em;
}

.donate-impact-card > p:not(.donate-impact-card__amount),
.donate-funding-list p,
.donate-faq-grid p,
.donate-message-card > p,
.donate-message-boundary > p {
  color: var(--landing-text-2);
  line-height: 1.65;
}

.donate-impact-card .button {
  width: 100%;
  margin-top: auto;
}

.donate-funding-list {
  border-top: 1px solid var(--landing-line);
}

.donate-funding-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  padding: 28px 0;
  border-bottom: 1px solid var(--landing-line);
}

.donate-funding-list article > span {
  color: var(--landing-lime-bright);
  font-family: var(--public-font-mono);
  font-size: 11px;
  font-weight: 700;
}

.donate-funding-list p {
  max-width: 760px;
  margin: 9px 0 0;
}

.donate-message-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: 18px;
}

.donate-message-card,
.donate-message-boundary {
  padding: clamp(28px, 4vw, 50px);
}

.donate-message-card h2 {
  margin-top: 22px;
}

.donate-message-card label {
  display: block;
  margin-top: 28px;
}

.donate-message-card textarea {
  width: 100%;
  margin-top: 10px;
}

.donate-message-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  color: var(--landing-muted);
  font-size: 12px;
}

.donate-message-meta p,
.donate-message-status {
  margin: 0;
}

.donate-message-status {
  min-height: 20px;
  margin-top: 12px;
  color: var(--landing-blue-bright);
  font-size: 12px;
}

.donate-message-boundary {
  align-self: stretch;
  background: color-mix(in srgb, var(--landing-blue) 5%, var(--landing-surface));
}

.donate-message-boundary h3 {
  margin: 28px 0 0;
}

.donate-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  overflow: hidden;
}

.donate-faq-grid article {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  background: var(--landing-surface);
}

.donate-faq-grid article + article {
  border-left: 1px solid var(--landing-line);
}

.status-page-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--landing-header-height));
  padding: clamp(70px, 10vw, 128px) 0;
}

.status-page-card {
  width: min(760px, 100%);
  padding: clamp(34px, 6vw, 68px);
  text-align: center;
}

.status-page-card .status-chip {
  margin-bottom: 28px;
}

.status-page-card h1 {
  margin: 0;
  font-family: var(--public-font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.status-page-card p {
  max-width: 570px;
  margin: 24px auto 0;
  color: var(--landing-text-2);
  font-size: 17px;
  line-height: 1.7;
}

.status-page-card .standalone-actions {
  justify-content: center;
}

@media (max-width: 1260px) and (min-width: 1041px) {
  .standalone-page .primary-nav {
    gap: 18px;
  }

  .standalone-version-badge {
    display: none;
  }
}

@media (max-width: 1040px) {
  .standalone-page .standalone-mobile-only {
    display: block;
  }

  .standalone-page .header-actions .standalone-version-badge {
    display: none;
  }

  .standalone-page.nav-open .header-actions {
    display: none;
  }

  .standalone-hero,
  .standalone-section__head,
  .support-spotlight,
  .ticket-preview__layout,
  .donate-layout,
  .donate-message-layout {
    grid-template-columns: 1fr;
  }

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

  .standalone-hero__aside {
    padding: 24px 0 0;
    border-top: 1px solid var(--landing-line-strong);
    border-left: 0;
  }

  .standalone-card {
    grid-column: span 6;
  }

  .ticket-preview__history {
    border-top: 1px solid var(--landing-line);
    border-left: 0;
  }

  .roadmap-program__detail {
    padding-left: clamp(24px, 3.5vw, 40px);
  }

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

  .release-link:nth-child(2) {
    border-right: 0;
  }

  .release-link:nth-child(-n + 2) {
    border-bottom: 1px solid var(--landing-line);
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-index {
    position: static;
    max-height: none;
    padding: 22px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: var(--landing-surface);
  }

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

  .donate-assurance {
    position: static;
  }
}

@media (max-width: 700px) {
  .standalone-page .standalone-main {
    padding-top: 28px;
  }

  .standalone-hero {
    gap: 34px;
    padding: 42px 0 58px;
  }

  .standalone-title {
    font-size: clamp(38px, 11vw, 50px);
  }

  .standalone-lede {
    font-size: 16px;
  }

  .standalone-section {
    padding: 60px 0;
  }

  .standalone-card,
  .standalone-card--wide,
  .standalone-card--half {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .card-index {
    margin-bottom: 42px;
  }

  .support-path {
    min-height: 270px;
    padding: 24px;
  }

  .support-path__top {
    margin-bottom: 28px;
  }

  .form-grid,
  .roadmap-program__detail,
  .privacy-index ol {
    grid-template-columns: 1fr;
  }

  .ticket-preview__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .roadmap-program summary {
    grid-template-columns: 1fr auto;
    padding: 22px;
  }

  .roadmap-program__icon {
    width: 27px;
    height: 27px;
  }

  .roadmap-program__detail {
    gap: 22px;
    padding: 0 22px 26px;
  }

  .roadmap-next {
    padding: 18px 0 0;
    border-top: 1px solid var(--landing-line-strong);
    border-left: 0;
  }

  .release-links {
    grid-template-columns: 1fr;
  }

  .release-link,
  .release-link:nth-child(2),
  .release-link:nth-child(-n + 2) {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--landing-line);
  }

  .release-link:last-child {
    border-bottom: 0;
  }

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

  .donate-custom-row {
    grid-template-columns: 1fr;
  }

  .donate-custom-row .button {
    width: 100%;
  }

  .donate-impact-grid,
  .donate-faq-grid {
    grid-template-columns: 1fr;
  }

  .donate-faq-grid article + article {
    border-top: 1px solid var(--landing-line);
    border-left: 0;
  }

  .donate-message-meta {
    display: grid;
    gap: 6px;
  }

  .standalone-callout {
    grid-template-columns: 1fr;
  }

  .support-spotlight__widget-wrap {
    padding: 16px !important;
  }

  .discord-community__header,
  .discord-community__footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

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

  .discord-community__overview > p {
    grid-column: 1 / -1;
    border-top: 1px solid var(--landing-line);
    border-left: 0;
  }

  .discord-community__directory {
    grid-template-columns: 1fr;
  }

  .discord-community__panel + .discord-community__panel {
    border-top: 1px solid var(--landing-line);
    border-left: 0;
  }

  .discord-community__members {
    grid-template-columns: 1fr;
  }

  .discord-community__footer > div:first-child {
    max-width: none;
  }

  .discord-community__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .discord-community__actions .button {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .standalone-card,
  .donate-option,
  .donate-impact-card,
  .roadmap-program,
  .roadmap-program::before,
  .roadmap-progress__fill,
  .release-link {
    transition: none;
  }

  .discord-community__channel,
  .discord-community__member,
  .support-path__icon,
  .support-path::after {
    transition: none;
  }

  .discord-community__placeholder > span:first-child {
    animation: none;
  }

  .roadmap-progress__fill {
    transform: scaleX(1);
  }

  .roadmap-program::before,
  .roadmap-progress__fill::after {
    display: none;
  }

  .roadmap-program:hover,
  .roadmap-program:focus-within {
    transform: none;
  }

  .roadmap-program[data-progress-visible="true"]:hover .roadmap-progress,
  .roadmap-program[data-progress-visible="true"]:focus-within .roadmap-progress {
    transform: none;
  }

  .standalone-card:hover,
  .donate-option:hover,
  .donate-impact-card:hover {
    transform: none;
  }

  .support-path::after {
    display: none;
  }

  .support-path:hover .support-path__icon,
  .support-path:focus-within .support-path__icon {
    transform: none;
  }

  .discord-community__channel:hover,
  .discord-community__member:hover {
    transform: none;
  }
}

@media (forced-colors: active) {
  .discord-community,
  .discord-community__channel,
  .discord-community__member,
  .discord-community__empty {
    border-color: CanvasText;
  }

  .discord-community__connection i,
  .discord-community__avatar::after {
    forced-color-adjust: none;
  }
}
