:root {
  --bg: #0b0708;
  --bg-soft: #110b0d;
  --panel: #171013;
  --panel-2: #1d1418;
  --panel-3: #27181d;
  --panel-hot: #30161d;
  --line: #39272d;
  --line-soft: rgba(255, 232, 222, .08);
  --text: #f4ece8;
  --muted: #b7a9a4;
  --faint: #7d6d70;
  --crimson: #a83c4c;
  --crimson-deep: #6d2331;
  --ember: #d2764f;
  --ember-soft: #e9a273;
  --violet: #76516f;
  --ash: #968b89;
  --green: #92ad79;
  --shadow: 0 22px 70px rgba(0, 0, 0, .36);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px),
    var(--bg);
  background-size: 26px 26px, 26px 26px, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(121, 34, 49, .18), transparent 29rem),
    radial-gradient(circle at 82% 20%, rgba(115, 70, 105, .11), transparent 26rem),
    linear-gradient(180deg, rgba(20, 8, 12, .2), rgba(6, 5, 6, .65));
}

.ambient {
  position: fixed;
  z-index: -3;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .14;
  pointer-events: none;
  animation: ambient-drift 18s ease-in-out infinite alternate;
}
.ambient--one { top: -17rem; right: -9rem; background: #8e293c; }
.ambient--two { bottom: -22rem; left: -13rem; background: #793e2d; animation-delay: -7s; }

button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: rgba(168, 60, 76, .42); }

.page-shell { width: min(calc(100% - 34px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 12px;
  z-index: 60;
  min-height: 66px;
  margin-top: 12px;
  padding: 10px 12px 10px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 224, 214, .09);
  border-radius: 15px;
  background: rgba(15, 9, 11, .86);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
}

.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand strong { display: block; font-size: .82rem; letter-spacing: .14em; line-height: 1.05; }
.brand small { display: block; margin-top: 4px; color: var(--faint); font-size: .57rem; font-weight: 850; letter-spacing: .16em; }
.brand-mark { width: 31px; height: 31px; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; transform: rotate(3deg); }
.brand-mark span { border: 1px solid rgba(255,255,255,.07); border-radius: 2px; background: #2c2024; }
.brand-mark span:nth-child(1), .brand-mark span:nth-child(4) { background: linear-gradient(135deg, var(--crimson), var(--crimson-deep)); }

.nav-links { justify-self: center; display: flex; align-items: center; gap: 5px; }
.nav-links a { padding: 8px 11px; border-radius: 9px; color: var(--muted); font-size: .79rem; font-weight: 760; transition: .18s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,.055); }

.header-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid var(--line-soft); border-radius: 10px; background: rgba(255,255,255,.025); color: var(--muted); font-size: .71rem; font-weight: 800; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ash); box-shadow: 0 0 0 4px rgba(150,139,137,.08); }
.status-dot--waiting { background: var(--ember-soft); box-shadow: 0 0 0 4px rgba(226,151,103,.1); }
.status-dot--online { background: var(--green); box-shadow: 0 0 0 4px rgba(146,173,121,.12); }
.status-dot--offline { background: var(--crimson); box-shadow: 0 0 0 4px rgba(168,60,76,.13); }

main { padding-bottom: 34px; }
.home-main { padding-top: 16px; }
.dashboard-hero { min-height: 490px; padding: 48px 0 34px; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr); align-items: center; gap: 56px; }
.compact-copy { max-width: 650px; }
.eyebrow, .card-kicker, .rail-card__label { color: var(--ember-soft); font-size: .64rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.compact-copy h1 { max-width: 650px; margin: 12px 0 16px; font-size: clamp(3rem, 6.2vw, 5.6rem); line-height: .92; letter-spacing: -.06em; font-weight: 790; }
.compact-copy > p { max-width: 590px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.button { min-height: 45px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 16px; border: 1px solid transparent; border-radius: 10px; font-size: .79rem; font-weight: 850; transition: transform .16s ease, border-color .16s ease, background .16s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #190b0e; background: linear-gradient(135deg, #cf6a53, #a83c4c); box-shadow: 0 10px 28px rgba(168,60,76,.16); }
.button--secondary { color: var(--text); border-color: var(--line); background: var(--panel); }

.server-card { position: relative; overflow: hidden; border: 1px solid #442731; border-radius: var(--radius); background: linear-gradient(180deg, #1d1116, #130c0e); box-shadow: var(--shadow); }
.server-card--nether { isolation: isolate; }
.server-card__glow { position: absolute; width: 260px; height: 260px; top: -150px; right: -50px; z-index: -1; border-radius: 50%; background: rgba(174,48,70,.3); filter: blur(70px); }
.server-card__top { padding: 18px 20px 15px; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.server-card h2, .section-heading h2, .panel-heading h2 { margin: 4px 0 0; font-size: 1.45rem; line-height: 1.08; letter-spacing: -.035em; }

.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 9px; border: 1px solid var(--line-soft); border-radius: 999px; background: rgba(0,0,0,.16); color: var(--muted); font-size: .66rem; font-weight: 850; }
.pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--ember-soft); }
.pill--online { color: #d8e6c9; border-color: rgba(146,173,121,.24); }
.pill--online span { background: var(--green); }
.pill--offline { color: #e7a7af; border-color: rgba(168,60,76,.28); }
.pill--offline span { background: var(--crimson); }

.nether-scene { position: relative; height: 176px; overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: linear-gradient(180deg, #251219 0%, #170d11 70%, #0f090b 100%); }
.nether-scene::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 16px 16px; }
.portal { position: absolute; left: 54%; bottom: 19px; width: 72px; height: 112px; border: 10px solid #21181f; box-shadow: inset 0 0 0 3px #352436, 0 0 30px rgba(116,63,106,.16); background: linear-gradient(180deg, rgba(118,81,111,.62), rgba(80,44,76,.68)); animation: portal-pulse 4s ease-in-out infinite; }
.portal::after { content: ""; position: absolute; inset: 4px; opacity: .45; background: repeating-linear-gradient(135deg, rgba(220,168,211,.16) 0 7px, transparent 7px 14px); }
.portal i { position: absolute; width: 3px; height: 3px; background: #d79cc9; box-shadow: 0 0 12px #a7639d; animation: ember-rise 3.6s linear infinite; }
.portal i:nth-child(1) { left: 12px; bottom: 10px; }
.portal i:nth-child(2) { right: 13px; bottom: 35px; animation-delay: -1.3s; }
.portal i:nth-child(3) { left: 28px; bottom: 6px; animation-delay: -2.1s; }
.basalt { position: absolute; bottom: 12px; width: 130px; height: 104px; background: #21191b; clip-path: polygon(0 100%, 0 62%, 21% 62%, 21% 30%, 38% 30%, 38% 53%, 60% 53%, 60% 14%, 77% 14%, 77% 69%, 100% 69%, 100% 100%); }
.basalt--one { left: -5px; }
.basalt--two { right: -14px; transform: scale(.8); transform-origin: bottom; opacity: .74; }
.lava-line { position: absolute; left: 0; right: 0; bottom: 0; height: 14px; background: linear-gradient(180deg, #a64331, #6e231f); box-shadow: 0 -8px 28px rgba(201,90,53,.16); }
.ember-field i { position: absolute; bottom: 10px; width: 3px; height: 3px; background: var(--ember-soft); box-shadow: 0 0 9px rgba(226,151,103,.65); animation: ember-rise 4s linear infinite; }
.ember-field i:nth-child(1) { left: 12%; animation-delay: -.3s; }
.ember-field i:nth-child(2) { left: 31%; animation-delay: -2.2s; }
.ember-field i:nth-child(3) { left: 71%; animation-delay: -1.1s; }
.ember-field i:nth-child(4) { left: 86%; animation-delay: -3.1s; }
.ember-field i:nth-child(5) { left: 44%; animation-delay: -1.7s; }

.server-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.server-stats > div { padding: 14px 16px; border-right: 1px solid var(--line-soft); }
.server-stats > div:last-child { border-right: 0; }
.server-stats span, .server-stat-grid span, .compat-grid span, .stack-item > span { display: block; color: var(--faint); font-size: .58rem; font-weight: 850; letter-spacing: .12em; }
.server-stats strong, .server-stat-grid strong { display: block; margin-top: 4px; font-size: .97rem; }

.bridge-note { margin: 0 12px 12px; padding: 10px 12px; display: flex; gap: 10px; border: 1px dashed rgba(210,118,79,.25); border-radius: 10px; background: rgba(210,118,79,.045); }
.bridge-icon { color: var(--ember); font-size: .73rem; padding-top: 1px; }
.bridge-note strong { display: block; font-size: .72rem; }
.bridge-note p { margin: 2px 0 0; color: var(--muted); font-size: .66rem; line-height: 1.4; }
.bridge-note--online { border-color: rgba(146,173,121,.23); background: rgba(146,173,121,.04); }
.bridge-note--online .bridge-icon { color: var(--green); }
.bridge-note--offline { border-color: rgba(168,60,76,.27); background: rgba(168,60,76,.045); }
.bridge-note--offline .bridge-icon { color: var(--crimson); }

.rail-section { padding: 36px 0 10px; }
.rail-section--tight { padding-top: 22px; }
.section-heading, .panel-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 17px; }
.section-heading--compact, .panel-heading--compact { margin-bottom: 14px; }
.section-meta { color: var(--faint); font-size: .69rem; font-weight: 750; }
.rail-controls { display: flex; gap: 6px; }
.rail-controls button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 9px; background: var(--panel); color: var(--muted); cursor: pointer; transition: .16s ease; }
.rail-controls button:hover { color: var(--text); border-color: #57343e; transform: translateY(-1px); }
.card-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 1fr); gap: 12px; overflow-x: auto; padding: 2px 2px 12px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.card-rail::-webkit-scrollbar { display: none; }
.card-rail--wide { grid-auto-columns: minmax(320px, 42%); }

.rail-card, .feed-card { position: relative; min-height: 202px; overflow: hidden; scroll-snap-align: start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: 0 12px 30px rgba(0,0,0,.12); transition: transform .2s ease, border-color .2s ease, background .2s ease; animation: card-enter .55s ease both; }
.rail-card:nth-child(2), .feed-card:nth-child(2) { animation-delay: .06s; }
.rail-card:nth-child(3), .feed-card:nth-child(3) { animation-delay: .12s; }
.rail-card:nth-child(4) { animation-delay: .18s; }
.rail-card::before, .feed-card::before { content: ""; position: absolute; inset: auto -35px -55px auto; width: 150px; height: 150px; border-radius: 50%; filter: blur(45px); opacity: .16; background: var(--crimson); transition: opacity .2s ease, transform .2s ease; }
.rail-card:hover, .feed-card:hover { transform: translateY(-4px); border-color: #59333d; background: #1a1115; }
.rail-card:hover::before, .feed-card:hover::before { opacity: .27; transform: scale(1.1); }
.rail-card--ember::before { background: var(--ember); }
.rail-card--violet::before { background: var(--violet); }
.rail-card--blackstone::before { background: #73676a; }
.rail-card__icon { display: inline-grid; place-items: center; width: 35px; height: 35px; margin-bottom: 20px; border: 1px solid var(--line-soft); border-radius: 10px; background: rgba(255,255,255,.035); color: var(--ember-soft); }
.rail-card h3, .feed-card h3 { margin: 8px 0 7px; font-size: 1.12rem; letter-spacing: -.025em; }
.rail-card p, .feed-card p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.6; }
.rail-card__link { display: block; margin-top: 20px; color: #d9aaa0; font-size: .7rem; font-weight: 820; }

.home-strip { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12px; padding: 18px 0 20px; }
.panel, .spotlight-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.panel { padding: 20px; }
.panel--compact { padding: 18px; }
.spotlight-card { padding: 22px; background: linear-gradient(135deg, rgba(168,60,76,.1), transparent 52%), var(--panel); transition: transform .18s ease, border-color .18s ease; }
.spotlight-card:hover { transform: translateY(-3px); border-color: #5c343f; }
.spotlight-card__row { margin: 8px 0 7px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.spotlight-card h2 { margin: 0; font-size: 1.36rem; letter-spacing: -.035em; }
.spotlight-card__row > span { color: var(--ember-soft); font-size: 1.2rem; }
.spotlight-card p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.spotlight-card small { display: block; margin-top: 18px; color: var(--faint); font-size: .65rem; }

.empty-state { min-height: 178px; display: grid; place-items: center; text-align: center; align-content: center; }
.empty-state--compact { min-height: 105px; grid-template-columns: auto 1fr; column-gap: 12px; text-align: left; place-items: center start; }
.empty-state--compact strong, .empty-state--compact p { grid-column: 2; }
.empty-state--compact strong { align-self: end; }
.empty-state--compact p { align-self: start; margin-top: 2px; }
.empty-state strong { font-size: .8rem; }
.empty-state p { margin: 5px 0 0; color: var(--muted); font-size: .69rem; }
.pixel-face { width: 38px; height: 38px; position: relative; border: 1px solid var(--line); border-radius: 9px; background: #21171a; }
.pixel-face i { position: absolute; top: 12px; width: 5px; height: 5px; background: var(--ember-soft); }
.pixel-face i:first-child { left: 9px; }.pixel-face i:last-child { right: 9px; }
.crew-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.crew-member { min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid var(--line-soft); border-radius: 10px; background: rgba(255,255,255,.02); }
.crew-member__avatar { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 7px; background: #352026; color: #efc2b3; font-size: .72rem; font-weight: 900; }
.crew-member__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .75rem; font-weight: 760; }

.subpage-main { padding: 48px 0 28px; }
.page-intro { padding: 14px 0 25px; }
.page-intro__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.page-intro h1 { margin: 8px 0 8px; font-size: clamp(3.2rem, 7vw, 6rem); line-height: .92; letter-spacing: -.06em; }
.page-intro p { max-width: 680px; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.65; }
.page-chip, .verified-badge { display: inline-flex; align-items: center; min-height: 32px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--panel); font-size: .65rem; font-weight: 800; white-space: nowrap; }

.feed-card { min-height: 258px; display: flex; flex-direction: column; }
.feed-card--featured { background: linear-gradient(135deg, rgba(168,60,76,.11), transparent 52%), var(--panel); }
.feed-card--muted { opacity: .8; }
.feed-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--faint); font-size: .63rem; font-weight: 800; }
.tag { display: inline-flex; padding: 5px 7px; border: 1px solid rgba(168,60,76,.24); border-radius: 7px; background: rgba(168,60,76,.08); color: #e49aa6; font-size: .56rem; font-weight: 900; letter-spacing: .12em; }
.tag--ember { border-color: rgba(210,118,79,.25); background: rgba(210,118,79,.07); color: var(--ember-soft); }
.tag--muted { border-color: var(--line); background: rgba(255,255,255,.02); color: var(--faint); }
.feed-card h3 { margin-top: 26px; font-size: 1.35rem; }
.feed-card footer { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 8px; color: var(--faint); font-size: .66rem; }
.avatar { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: #342126; color: #f0b4a7; font-size: .64rem; font-weight: 900; }
.avatar--gear { color: var(--ember-soft); }
.activity-list-panel { margin-top: 24px; }
.live-label { color: var(--faint); font-size: .65rem; font-weight: 800; }
.live-label i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: var(--green); }
.activity-list { display: grid; }
.activity-row { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line-soft); }
.activity-row:first-child { border-top: 0; }
.activity-row--muted { opacity: .68; }
.activity-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; color: var(--ember-soft); background: rgba(255,255,255,.025); }
.activity-row strong { display: block; font-size: .77rem; }
.activity-row p { margin: 3px 0 0; color: var(--muted); font-size: .68rem; }
.activity-row time { color: var(--faint); font-size: .62rem; font-weight: 750; }

.compatibility-panel { margin-top: 24px; }
.text-link { color: #d7aaa1; font-size: .7rem; font-weight: 800; }
.compat-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border: 1px solid var(--line-soft); border-radius: 13px; overflow: hidden; }
.compat-grid > div { padding: 17px; border-right: 1px solid var(--line-soft); background: rgba(255,255,255,.014); }
.compat-grid > div:last-child { border-right: 0; }
.compat-grid strong { display: block; margin: 5px 0 3px; font-size: .86rem; }
.compat-grid small { color: var(--faint); font-size: .61rem; }

.server-dashboard-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 12px; }
.server-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 14px; border: 1px solid var(--line-soft); border-radius: 12px; overflow: hidden; }
.server-stat-grid > div { padding: 14px; border-right: 1px solid var(--line-soft); background: rgba(255,255,255,.014); }
.server-stat-grid > div:last-child { border-right: 0; }
.stack-panel { margin-top: 12px; }
.stack-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; }
.stack-item { padding: 15px; border: 1px solid var(--line-soft); border-radius: 11px; background: rgba(255,255,255,.014); }
.stack-item strong { display: block; margin: 5px 0 4px; font-size: .87rem; }
.stack-item small { color: var(--faint); font-size: .61rem; line-height: 1.4; }

.site-footer { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line-soft); }
.site-footer p { color: var(--faint); font-size: .66rem; }
.brand--footer .brand-mark { width: 27px; height: 27px; }

@keyframes card-enter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes portal-pulse { 0%,100% { box-shadow: inset 0 0 0 3px #352436, 0 0 24px rgba(116,63,106,.12); } 50% { box-shadow: inset 0 0 0 3px #473149, 0 0 38px rgba(133,75,125,.24); } }
@keyframes ember-rise { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: 1; } 100% { transform: translateY(-115px); opacity: 0; } }
@keyframes ambient-drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(45px,25px,0) scale(1.08); } }

@media (max-width: 980px) {
  .dashboard-hero { min-height: 0; grid-template-columns: 1fr; gap: 30px; padding-top: 54px; }
  .compact-copy { max-width: 780px; }
  .server-card { max-width: 720px; }
  .home-strip, .server-dashboard-grid { grid-template-columns: 1fr; }
  .compat-grid { grid-template-columns: repeat(2, 1fr); }
  .compat-grid > div:nth-child(2) { border-right: 0; }
  .compat-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .stack-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card-rail--wide { grid-auto-columns: minmax(300px, 62%); }
}

@media (max-width: 720px) {
  .page-shell { width: min(calc(100% - 20px), var(--max)); }
  .site-header { top: 8px; min-height: 60px; margin-top: 8px; padding: 9px 10px; grid-template-columns: auto auto; gap: 10px; }
  .brand small { display: none; }
  .nav-links { order: 3; grid-column: 1 / -1; justify-self: stretch; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-soft); padding-top: 7px; }
  .nav-links a { padding: 7px 5px; text-align: center; font-size: .7rem; }
  .header-badge { justify-self: end; }
  .home-main { padding-top: 0; }
  .dashboard-hero { padding: 46px 0 24px; }
  .compact-copy h1 { font-size: clamp(3rem, 17vw, 4.6rem); }
  .compact-copy > p { font-size: .9rem; }
  .nether-scene { height: 154px; }
  .server-stats > div { padding: 12px; }
  .card-rail { grid-auto-columns: minmax(252px, 84%); }
  .card-rail--wide { grid-auto-columns: minmax(278px, 90%); }
  .rail-controls { display: none; }
  .home-strip { padding-top: 10px; }
  .page-intro { padding-top: 36px; }
  .page-intro__row { align-items: flex-start; flex-direction: column; gap: 16px; }
  .page-intro h1 { font-size: clamp(3.4rem, 18vw, 5rem); }
  .server-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .server-stat-grid > div:nth-child(2) { border-right: 0; }
  .server-stat-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .compat-grid, .stack-grid { grid-template-columns: 1fr; }
  .compat-grid > div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .compat-grid > div:last-child { border-bottom: 0; }
  .crew-list { grid-template-columns: 1fr; }
  .activity-row { grid-template-columns: auto 1fr; }
  .activity-row time { display: none; }
  .site-footer { min-height: 76px; }
  .site-footer p { text-align: right; }
}

@media (max-width: 430px) {
  .server-card__top { padding: 16px; }
  .pill { font-size: .61rem; }
  .server-stats strong { font-size: .86rem; }
  .panel, .spotlight-card { padding: 16px; }
  .server-stat-grid > div { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
