:root {
  color-scheme: dark;
  --bg: #07090d;
  --surface: #10151c;
  --surface-2: #171f29;
  --surface-3: #202a36;
  --text: #f3f6f9;
  --muted: #aeb9c8;
  --line: #2b3542;
  --cyan: #27d7ff;
  --green: #9df044;
  --red: #ff5f83;
  --amber: #ffd166;
  --steel: #8ea4bd;
  --shadow: 0 22px 72px rgba(0, 0, 0, .3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background:
    linear-gradient(145deg, rgba(39, 215, 255, .08), transparent 32rem),
    linear-gradient(35deg, rgba(157, 240, 68, .06), transparent 28rem),
    var(--bg);
  color: var(--text);
}

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

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 8vw, 88px);
  line-height: .95;
  max-width: 880px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

code {
  color: var(--cyan);
  overflow-wrap: anywhere;
}

button,
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
}

button,
.button.primary {
  background: var(--cyan);
  color: #061018;
}

button:disabled {
  cursor: progress;
  opacity: .65;
}

.button.secondary {
  background: rgba(243, 246, 249, .08);
  border-color: rgba(243, 246, 249, .18);
  color: var(--text);
}

.site-header {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 0;
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 48px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 900;
  min-width: 0;
}

.brand img {
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  background: rgba(7, 9, 13, .7);
  border: 1px solid rgba(243, 246, 249, .12);
  border-radius: 999px;
  display: flex;
  gap: 4px;
  padding: 5px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 12px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(243, 246, 249, .1);
  color: var(--text);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-home {
  align-items: end;
  display: flex;
  padding: 128px clamp(18px, 5vw, 72px) 76px;
}

.hero-media {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 9, 13, .95) 0%, rgba(7, 9, 13, .74) 48%, rgba(7, 9, 13, .36) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

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

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-content p {
  font-size: clamp(17px, 2vw, 22px);
  margin-top: 18px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eyebrow,
.card-kicker {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.content-band,
.split-band,
.page-shell {
  width: min(1180px, calc(100vw - 32px));
}

.content-band,
.split-band {
  margin: 0 auto;
  padding: 64px 0;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 22px;
}

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

.feature-card,
.values-grid article,
.summary-card,
.panel,
.entry-card,
.empty-state,
.suggestion-form,
.suggestion-notes,
.legal-content {
  background: linear-gradient(180deg, rgba(23, 31, 41, .96), rgba(16, 21, 28, .98));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card,
.values-grid article {
  min-height: 240px;
  padding: 22px;
}

.feature-card p,
.values-grid p {
  margin-top: 12px;
}

.feature-card a {
  color: var(--cyan);
  display: inline-block;
  font-weight: 900;
  margin-top: 22px;
}

.split-band {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.split-band.flush {
  padding-top: 44px;
}

.text-grid {
  display: grid;
  gap: 18px;
}

.page-shell {
  margin: 0 auto;
  padding: 112px 0 58px;
}

.page-hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, .92), rgba(7, 9, 13, .6)),
    url("/assets/most-wanted-network-discord-banner.png") center / cover;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 360px;
  padding: 44px 0;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.page-hero p {
  font-size: 18px;
  margin-top: 12px;
  max-width: 640px;
}

.status-hero {
  background: transparent;
  min-height: 230px;
}

.overall {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  min-width: 138px;
  padding: 10px 16px;
  white-space: nowrap;
}

.overall.operational {
  background: rgba(157, 240, 68, .08);
  border-color: rgba(157, 240, 68, .45);
  color: var(--green);
}

.overall.degraded {
  background: rgba(255, 209, 102, .08);
  border-color: rgba(255, 209, 102, .45);
  color: var(--amber);
}

.overall.outage {
  background: rgba(255, 95, 131, .08);
  border-color: rgba(255, 95, 131, .45);
  color: var(--red);
}

.summary-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px 0;
}

.summary-card {
  padding: 16px;
}

.summary-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.summary-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  margin-top: 8px;
}

.summary-card.online strong {
  color: var(--green);
}

.summary-card.offline strong {
  color: var(--red);
}

.panel {
  padding: 20px;
}

.panel-head {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.entry-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.entry-card {
  padding: 16px;
}

.entry-card.online {
  border-color: rgba(157, 240, 68, .34);
}

.entry-card.offline {
  border-color: rgba(255, 95, 131, .38);
}

.entry-top {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.entry-top h3 {
  font-size: 17px;
  margin: 0;
  overflow-wrap: anywhere;
}

.entry-top span {
  background: rgba(174, 185, 200, .08);
  border-radius: 999px;
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
}

.entry-card.online .entry-top span {
  background: rgba(157, 240, 68, .08);
  color: var(--green);
}

.entry-card.offline .entry-top span {
  background: rgba(255, 95, 131, .08);
  color: var(--red);
}

.entry-meta {
  display: inline-block;
  margin-top: 7px;
}

dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0 0;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

dd {
  font-weight: 800;
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 26px;
  text-align: center;
}

.suggestion-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  margin-top: 24px;
}

.suggestion-form,
.suggestion-notes {
  padding: 22px;
}

.suggestion-form {
  display: grid;
  gap: 16px;
}

label {
  color: var(--text);
  display: grid;
  font-weight: 900;
  gap: 8px;
}

input,
select,
textarea {
  background: rgba(7, 9, 13, .62);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  font: inherit;
  min-height: 44px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.suggestion-notes h2 {
  font-size: 26px;
}

.suggestion-notes ul {
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--cyan);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-message {
  color: var(--muted);
  font-weight: 800;
  margin: -4px 0 0;
  min-height: 24px;
}

.form-message.success {
  color: var(--green);
}

.form-message.error {
  color: var(--red);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-weight: 800;
  gap: 14px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 48px);
}

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

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    display: grid;
    gap: 12px;
    position: relative;
  }

  .hero-home {
    min-height: 78vh;
    padding-top: 44px;
  }

  .site-nav {
    border-radius: 8px;
    flex-wrap: wrap;
    width: 100%;
  }

  .site-nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .server-showcase,
  .values-grid,
  .split-band,
  .suggestion-layout {
    grid-template-columns: 1fr;
  }

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

  .page-shell {
    padding-top: 24px;
  }

  .page-hero {
    display: grid;
    min-height: 270px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .brand span {
    font-size: 15px;
  }

  .hero-actions,
  .site-footer,
  .panel-head,
  .entry-top {
    display: grid;
  }

  .button,
  button {
    width: 100%;
  }

  .summary-grid,
  dl {
    grid-template-columns: 1fr;
  }
}
