:root {
  --paper: #f7f8f5;
  --mist: #edf1ef;
  --white: #ffffff;
  --ink: #20302b;
  --muted: #68756f;
  --line: #d9dfdb;
  --forest: #25453b;
  --forest-dark: #172b28;
  --rose: #b85872;
  --rose-dark: #8f3e56;
  --sky: #477d9b;
  --gold: #b98a43;
  --discord: #5865f2;
  --header-height: 76px;
  --max-width: 1240px;
  --shadow: 0 18px 50px rgba(24, 43, 40, 0.12);
  --supporter-height: 0px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--supporter-height) + var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: calc(var(--supporter-height) + 10px);
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest-dark);
  transform: translateY(-300%);
  transition: transform 180ms ease;
}

.hero-quick-info {
  position: absolute;
  top: calc(var(--header-height) + 42px);
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  width: min(420px, calc(100vw - 48px));
  z-index: 4;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.hero-status {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 1;
  flex: 0 0 auto;
  overflow: hidden;
  background: rgba(16, 32, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(8, 24, 25, 0.22);
  pointer-events: auto;
}

.hero-status img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-status > span {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.hero-status.status-unavailable img {
  display: none;
}

.hero-status.status-unavailable > span {
  display: grid;
}

.hero-supporters {
  width: 100%;
  color: var(--white);
  background: rgba(16, 32, 31, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  box-shadow: 0 16px 38px rgba(8, 24, 25, 0.28);
  backdrop-filter: blur(12px);
  overflow: hidden;
  pointer-events: auto;
}

.hero-supporters > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-supporters > header div {
  display: grid;
  line-height: 1.25;
}

.hero-supporters > header span {
  color: #f3b7c8;
  font-size: 9px;
  font-weight: 900;
}

.hero-supporters > header strong {
  margin-top: 3px;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 17px;
}

.hero-supporter-list {
  display: grid;
  max-height: 244px;
  overflow: auto;
}

.hero-supporter-empty,
.hero-supporter-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-supporter-empty > span,
.hero-supporter-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--rose-dark);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  object-fit: cover;
  image-rendering: pixelated;
  font-size: 13px;
  font-weight: 900;
}

.hero-supporter-empty p,
.hero-supporter-info {
  display: grid;
  min-width: 0;
  margin: 0;
}

.hero-supporter-empty strong,
.hero-supporter-info strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-supporter-empty small,
.hero-supporter-info small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-supporters > footer {
  padding: 9px 16px 10px;
  text-align: right;
}

.hero-supporters > footer a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: var(--supporter-height) 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 10px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: rgba(19, 40, 38, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(247, 248, 245, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(24, 43, 40, 0.08);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(20, 25, 25, 0.18);
}

.site-header.scrolled .brand img {
  border-color: rgba(184, 88, 114, 0.34);
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 20px;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-discord {
  justify-self: end;
  min-height: 42px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--rose-dark);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.header-discord:hover,
.header-discord:focus-visible {
  background: var(--rose);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  height: 82svh;
  min-height: 560px;
  max-height: 820px;
  color: var(--white);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 52%;
}

.hero-shade {
  z-index: -1;
  background: rgba(8, 24, 29, 0.37);
  box-shadow: inset 0 -200px 150px rgba(10, 27, 27, 0.34);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(var(--max-width), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height) + 54px) 0 62px;
}

.eyebrow {
  margin: 0 0 13px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.eyebrow.dark {
  color: var(--rose-dark);
}

.hero h1 {
  margin: 0;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 1.02;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.36);
}

.hero-lead {
  max-width: 670px;
  margin: 18px 0 24px;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.65;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.44);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--rose);
  border-color: var(--rose);
}

.button-light {
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
}

.hero-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(650px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(8, 25, 27, 0.24);
}

.address-button {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  min-width: 0;
  min-height: 76px;
  padding: 14px 16px;
  text-align: left;
  color: var(--white);
  background: rgba(20, 43, 41, 0.74);
  border: 0;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.address-button + .address-button {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.address-button:hover,
.address-button:focus-visible {
  background: rgba(184, 88, 114, 0.88);
}

.address-button > span {
  grid-column: 1;
  font-size: 10px;
  font-weight: 800;
  opacity: 0.82;
}

.address-button strong {
  grid-column: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.2;
}

.address-button small {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.8;
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
}

.scroll-cue i {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  50% { transform: rotate(45deg) translate(3px, 0); }
}

.section {
  padding: 100px max(24px, calc((100vw - var(--max-width)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: end;
  gap: 28px 72px;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading h2,
.community-heading h2 {
  margin: 0;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 42px;
  line-height: 1.25;
}

.section-heading > p:last-child,
.community-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.section-heading.centered {
  display: block;
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-bottom: 14px;
}

.section-heading.centered h2 {
  margin-bottom: 16px;
}

.feature-section {
  background: var(--paper);
  padding-top: 80px;
}

.feature-section .section-heading.reveal {
  opacity: 1;
  transform: none;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(24, 43, 40, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-media {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--mist);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 600ms ease;
}

.feature-card:hover .feature-media img {
  transform: scale(1.16);
}

.feature-media.crop-left img {
  object-position: 5% center;
  transform-origin: left center;
}

.feature-media.crop-center img {
  object-position: 51% center;
}

.feature-media.crop-right img {
  object-position: 95% center;
  transform-origin: right center;
}

.feature-media > span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(23, 43, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.feature-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 30px;
}

.feature-copy > p:first-child,
.system-number {
  margin: 0 0 8px;
  color: var(--rose-dark);
  font-size: 10px;
  font-weight: 900;
}

.feature-copy h3 {
  margin: 0 0 12px;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 28px;
  line-height: 1.25;
}

.feature-copy > p:not(:first-child) {
  flex: 1;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.feature-copy a,
.text-link {
  align-self: flex-start;
  padding-bottom: 3px;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
}

.systems-section {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.system-card {
  min-width: 0;
  padding: 0 24px 28px;
  background: var(--white);
  border: 1px solid #d9dfdc;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(24, 43, 40, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.system-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(24, 43, 40, 0.12);
}

.system-card > img {
  width: calc(100% + 48px);
  max-width: none;
  height: 290px;
  margin: 0 -24px 22px;
  object-fit: cover;
  background: #edf1ef;
  border-bottom: 1px solid var(--line);
}

.system-card h3 {
  margin: 0 0 20px;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 25px;
  line-height: 1.25;
}

.system-card dl {
  margin: 0;
}

.system-card dl > div {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.system-card dt {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.system-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.community-section {
  background: #f9f9f7;
}

.community-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 18px 60px;
  margin-bottom: 44px;
}

.community-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 24px;
}

.community-callout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.community-callout > img {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  object-fit: cover;
  border: 3px solid #f3dce2;
  border-radius: 50%;
}

.community-callout h3 {
  margin: 0 0 13px;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 24px;
  line-height: 1.35;
}

.community-callout > p:not(.system-number) {
  flex: 1;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.community-callout > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.status-block,
.supporter-block {
  min-width: 0;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.status-block > header,
.supporter-block > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.status-block > header span,
.supporter-block header span {
  display: block;
  color: var(--rose-dark);
  font-size: 10px;
  font-weight: 900;
}

.status-block > header strong,
.supporter-block header strong {
  display: block;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 22px;
}

.status-banner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 6 / 1;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.status-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.status-banner.status-unavailable img {
  display: none;
}

.status-banner.status-unavailable .status-fallback {
  display: grid;
}

.status-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-details p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 16px 14px;
}

.status-details p + p {
  border-left: 1px solid var(--line);
}

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

.status-details strong {
  font-size: 14px;
}

.supporter-block > header p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.supporter-block > header b {
  color: var(--rose-dark);
}

.supporter-list {
  min-height: 180px;
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
}

.supporter-empty {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 180px;
  padding: 20px 4px;
}

.supporter-empty img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.supporter-empty p {
  display: grid;
  margin: 0;
}

.supporter-empty strong {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 17px;
}

.supporter-empty span {
  color: var(--muted);
  font-size: 13px;
}

.supporter-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.supporter-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--rose-dark);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.supporter-info {
  display: grid;
  min-width: 0;
}

.supporter-info strong {
  font-size: 14px;
}

.supporter-info span {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.join-section {
  color: var(--white);
  background: var(--forest-dark);
}

.join-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

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

.join-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 510px;
  padding: 0 26px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  overflow: hidden;
}

.join-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 70px;
  margin: 0 -26px;
  padding: 16px 26px;
  color: var(--white);
  background: var(--forest);
}

.join-card.bedrock > header {
  background: var(--sky);
}

.join-card.discord > header {
  background: var(--discord);
}

.join-card > header span {
  font-size: 10px;
  font-weight: 900;
}

.join-card > header strong {
  font-size: 13px;
  text-align: right;
}

.join-address {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  margin: 25px 0 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.join-address small {
  grid-column: 1;
  color: var(--muted);
  font-size: 11px;
}

.join-address strong {
  grid-column: 1;
  overflow-wrap: anywhere;
  font-size: 19px;
}

.join-address button {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--forest);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.join-address button:hover,
.join-address button:focus-visible {
  color: var(--white);
  background: var(--forest);
}

.join-card ol {
  display: grid;
  gap: 15px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.join-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 11px;
}

.join-card li > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--rose-dark);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.join-card li p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.join-card li strong {
  color: var(--ink);
}

.join-card > footer {
  margin: auto -26px 0;
  padding: 14px 26px;
  color: var(--muted);
  background: var(--mist);
  font-size: 11px;
  font-weight: 800;
}

.join-card.discord {
  align-items: center;
  text-align: center;
}

.join-card.discord > header {
  align-self: stretch;
}

.join-card.discord > img {
  width: 112px;
  height: 112px;
  margin: 30px auto 17px;
  object-fit: cover;
  border: 4px solid #f4dbe2;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(66, 54, 88, 0.14);
}

.join-card.discord h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 21px;
}

.join-card.discord > p {
  max-width: 300px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.button-discord {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: var(--discord);
}

.button-discord:hover,
.button-discord:focus-visible {
  background: #4752c4;
}

.join-card.discord > footer {
  align-self: stretch;
  margin-top: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px 50px;
  padding: 38px max(24px, calc((100vw - var(--max-width)) / 2));
  color: #d9e3df;
  background: #10201f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  display: grid;
  margin: 0;
}

.footer-brand strong {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 17px;
}

.footer-brand span {
  font-size: 11px;
  opacity: 0.7;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  color: rgba(217, 227, 223, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.copy-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 180;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 17px;
  color: var(--white);
  background: var(--forest-dark);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 13px;
  font-weight: 800;
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}

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

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

:focus-visible {
  outline: 3px solid #f3b7c8;
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--supporter-height) + var(--header-height));
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 18px;
    color: var(--ink);
    background: rgba(247, 248, 245, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(24, 43, 40, 0.11);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .header-discord {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .hero-status {
    width: 100%;
    height: auto;
  }

  .hero-supporters {
    width: 100%;
  }

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

  .feature-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
  }

  .feature-card:last-child .feature-media {
    height: 100%;
    min-height: 320px;
  }

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

  .system-card > img {
    height: 320px;
  }

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

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

  .join-card.discord {
    grid-column: 1 / -1;
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --supporter-height: 0px;
  }

  .hero-quick-info {
    top: calc(var(--header-height) + 16px);
    right: 16px;
    left: 16px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-status {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 6 / 1;
  }

  .hero-supporters {
    width: 100%;
    min-width: 0;
    border-radius: 5px;
  }

  .hero-supporters > header {
    height: auto;
    min-height: 28px;
    padding: 4px 8px;
  }

  .hero-supporters > header span,
  .hero-supporters > footer {
    display: none;
  }

  .hero-supporters > header strong {
    margin: 0;
    font-family: inherit;
    font-size: 11px;
  }

  .hero-supporter-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: none;
    overflow: hidden;
  }

  .hero-supporter-item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 7px;
    min-height: 56px;
    padding: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .hero-supporter-avatar {
    width: 32px;
    height: 32px;
  }

  .hero-supporter-info strong {
    font-size: 9px;
  }

  .hero-supporter-info small {
    display: none;
  }

  .hero-supporter-empty {
    grid-column: 1 / -1;
    min-height: 48px;
    padding: 5px 8px;
    border-bottom: 0;
  }

  .hero-supporter-empty > span {
    width: 32px;
    height: 32px;
  }

  .site-header {
    padding: 8px 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero {
    height: 82svh;
    min-height: 590px;
    max-height: 760px;
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero-shade {
    background: rgba(8, 24, 29, 0.42);
    box-shadow: inset 0 -260px 170px rgba(10, 27, 27, 0.46);
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: calc(var(--header-height) + 34px) 0 42px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    margin: 13px 0 17px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-bottom: 15px;
  }

  .button {
    min-height: 43px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero-addresses {
    width: 100%;
  }

  .address-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 82px;
    padding: 11px 10px;
  }

  .address-button strong {
    width: 100%;
    font-size: 13px;
  }

  .address-button small {
    font-size: 9px;
  }

  .scroll-cue {
    right: 18px;
    bottom: 14px;
  }

  .scroll-cue span {
    display: none;
  }

  .section {
    padding: 72px 16px;
  }

  .section-heading,
  .community-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading .eyebrow,
  .community-heading .eyebrow {
    margin-bottom: 12px;
  }

  .section-heading h2,
  .community-heading h2 {
    margin-bottom: 14px;
    font-size: 32px;
  }

  .section-heading > p:last-child,
  .community-heading > p:last-child {
    font-size: 14px;
  }

  .feature-showcase,
  .systems-grid,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
    display: flex;
  }

  .feature-card:last-child .feature-media,
  .feature-media {
    height: 290px;
    min-height: 0;
  }

  .feature-copy {
    padding: 24px 22px 26px;
  }

  .systems-grid {
    gap: 16px;
  }

  .system-card {
    padding-right: 22px;
    padding-bottom: 24px;
    padding-left: 22px;
  }

  .system-card > img {
    width: calc(100% + 44px);
    height: 260px;
    margin-right: -22px;
    margin-left: -22px;
    object-position: center 46%;
  }

  .system-card dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .system-card dl > div {
    min-width: 0;
    padding: 12px 7px 0;
    border-top: 1px solid var(--line);
  }

  .system-card dl > div + div {
    border-left: 1px solid var(--line);
  }

  .system-card dt,
  .system-card dd {
    overflow-wrap: anywhere;
    font-size: 11px;
  }

  .community-layout {
    gap: 16px;
  }

  .status-block,
  .supporter-block,
  .community-callout {
    padding: 23px 20px;
  }

  .status-block > header,
  .supporter-block > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .status-banner {
    min-height: 80px;
    aspect-ratio: auto;
  }

  .status-banner img {
    object-fit: contain;
    background: #101615;
  }

  .status-details p {
    padding: 13px 7px;
  }

  .status-details strong {
    font-size: 12px;
  }

  .join-card,
  .join-card.discord {
    grid-column: auto;
    min-height: 0;
  }

  .join-card > footer {
    margin-top: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 20px;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 15px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hero-actions .button {
    padding-right: 8px;
    padding-left: 8px;
  }

  .address-button strong {
    font-size: 12px;
  }

  .feature-media {
    height: 260px;
  }

  .system-card dl {
    grid-template-columns: 1fr;
  }

  .system-card > img {
    height: 230px;
  }

  .system-card dl > div {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .system-card dl > div + div {
    border-left: 0;
  }

  .status-details {
    grid-template-columns: 1fr;
  }

  .status-details p {
    grid-template-columns: 1fr auto;
  }

  .status-details p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .supporter-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

}

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

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

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