:root {
  color-scheme: dark;
  --bg: #05110c;
  --bg-soft: #071a12;
  --surface: #0b2118;
  --surface-strong: #102a20;
  --surface-muted: #0a1812;
  --border: rgba(159, 214, 183, 0.16);
  --border-strong: rgba(159, 214, 183, 0.28);
  --text: #eef8f1;
  --muted: #a8bcb0;
  --muted-2: #7f9589;
  --accent: #42d88b;
  --accent-strong: #9ff2be;
  --accent-dark: #123d2b;
  --warning: #e6c46a;
  --danger: #ff7c7c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(66, 216, 139, 0.13), transparent 28rem),
    linear-gradient(180deg, #06130e 0%, var(--bg) 44%, #030806 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(159, 214, 183, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 214, 183, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 12px max(16px, calc((100vw - var(--max)) / 2));
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid rgba(159, 214, 183, 0.1);
  background: linear-gradient(180deg, rgba(5, 17, 12, 0.82), rgba(5, 17, 12, 0.52));
  content: "";
}

.brand,
.nav,
.header-action {
  border: 1px solid var(--border);
  background: rgba(8, 25, 18, 0.72);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 13px 8px 8px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #03110a;
  font-size: 15px;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 3px;
  min-height: 44px;
  padding: 5px;
  border-radius: 999px;
}

.nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  padding: 9px 13px;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  outline: none;
  background: rgba(159, 214, 183, 0.1);
  color: var(--text);
}

.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 750;
  padding: 0 17px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  outline: none;
  border-color: var(--border-strong);
  background: rgba(66, 216, 139, 0.12);
  transform: translateY(-1px);
}

.hero,
.section,
.band,
.footer {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: 64px 0 84px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.94;
  font-weight: 850;
}

h2 {
  color: #f4fbf6;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 820;
}

h3 {
  color: #f4fbf6;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 780;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  padding: 0 20px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:focus-visible,
.reload-button:focus-visible {
  outline: 3px solid rgba(66, 216, 139, 0.34);
  outline-offset: 3px;
}

.button:hover,
.reload-button:hover {
  transform: translateY(-1px);
}

.button:active,
.reload-button:active {
  transform: translateY(0);
}

.button.primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #03110a;
  box-shadow: 0 18px 44px rgba(66, 216, 139, 0.2);
}

.button.secondary {
  border-color: var(--border);
  background: rgba(13, 36, 26, 0.8);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--border-strong);
  background: rgba(18, 61, 43, 0.92);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 42px 0 0;
}

.hero-stats div {
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(8, 25, 18, 0.68);
}

.hero-stats dt {
  color: var(--text);
  font-size: 28px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(159, 214, 183, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 18%, rgba(159, 242, 190, 0.16), transparent 17rem),
    linear-gradient(145deg, rgba(16, 42, 32, 0.96), rgba(4, 14, 10, 0.97));
  box-shadow: var(--shadow);
  padding: 20px;
}

.hero-visual::before {
  position: absolute;
  inset: auto 24px 24px auto;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(159, 214, 183, 0.12);
  border-radius: 50%;
  background: rgba(66, 216, 139, 0.06);
  content: "";
}

.panel-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  height: 100%;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(159, 214, 183, 0.16);
  border-radius: 22px;
  background: rgba(5, 17, 12, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.panel-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-header strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}

.server-overview {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 164px;
  padding: 22px;
  border: 1px solid rgba(66, 216, 139, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(66, 216, 139, 0.12), transparent 58%),
    rgba(10, 31, 22, 0.82);
}

.minecraft-cube {
  --cube-size: 92px;
  position: relative;
  width: var(--cube-size);
  height: var(--cube-size);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
  transform: rotate(-6deg);
}

.cube-face {
  position: absolute;
  display: block;
  inset: 0;
  border: 1px solid rgba(159, 214, 183, 0.28);
}

.cube-top {
  background:
    linear-gradient(135deg, rgba(159, 242, 190, 0.26), transparent 42%),
    linear-gradient(135deg, #79d66f, #255f36);
  clip-path: polygon(50% 0, 100% 25%, 50% 50%, 0 25%);
}

.cube-left {
  background: linear-gradient(180deg, #80573c, #3a251a);
  clip-path: polygon(0 25%, 50% 50%, 50% 100%, 0 75%);
}

.cube-right {
  background: linear-gradient(180deg, #9a6c48, #4d321f);
  clip-path: polygon(100% 25%, 50% 50%, 50% 100%, 100% 75%);
}

.label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.server-overview h2 {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  line-height: 1.05;
}

.server-overview p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.status {
  border: 1px solid rgba(66, 216, 139, 0.36);
  border-radius: 999px;
  background: rgba(66, 216, 139, 0.12);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 11px;
}

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

.hero-metrics div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(8, 25, 18, 0.72);
}

.hero-metrics span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.stack-list {
  display: grid;
  gap: 10px;
}

.stack-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(6, 19, 14, 0.74);
}

.stack-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(66, 216, 139, 0.1);
}

.stack-dot.muted {
  background: var(--muted-2);
  box-shadow: 0 0 0 5px rgba(159, 214, 183, 0.08);
}

.stack-item strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.stack-item small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.stack-item b {
  color: var(--accent-strong);
  font-size: 12px;
  text-transform: uppercase;
}

.resource-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(5, 17, 12, 0.7);
}

.resource-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 64px;
  gap: 12px;
  align-items: center;
}

.resource-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.resource-row strong {
  color: var(--text);
  font-size: 13px;
  text-align: right;
}

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(159, 214, 183, 0.12);
}

.meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-grid,
.pricing-grid,
.reviews-grid {
  display: grid;
  gap: 18px;
}

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

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.plan-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.plan-tab {
  display: grid;
  min-height: 76px;
  gap: 5px;
  align-content: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(8, 25, 18, 0.72);
  color: var(--text);
  cursor: pointer;
  padding: 12px 14px;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.plan-tab:hover,
.plan-tab:focus-visible {
  outline: none;
  border-color: var(--border-strong);
  background: rgba(18, 61, 43, 0.82);
  transform: translateY(-1px);
}

.plan-tab.active {
  border-color: rgba(66, 216, 139, 0.48);
  background: linear-gradient(180deg, rgba(66, 216, 139, 0.14), rgba(13, 36, 26, 0.86));
}

.plan-tab span {
  font-size: 15px;
  font-weight: 850;
}

.plan-tab small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.category-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  margin: 0 0 18px;
  color: var(--muted);
}

.category-copy strong {
  flex: 0 0 auto;
  border: 1px solid rgba(66, 216, 139, 0.26);
  border-radius: 999px;
  background: rgba(66, 216, 139, 0.1);
  color: var(--accent-strong);
  font-size: 13px;
  padding: 8px 11px;
}

.category-copy span {
  line-height: 1.5;
}

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

.feature-card,
.plan-card,
.review-card,
.state-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(8, 25, 18, 0.72);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.feature-card,
.review-card,
.state-card {
  padding: 24px;
}

.feature-card {
  min-height: 236px;
}

.feature-card p,
.review-card p,
.state-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(66, 216, 139, 0.24);
  border-radius: 12px;
  background: rgba(66, 216, 139, 0.09);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 850;
}

.reload-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(13, 36, 26, 0.8);
  color: var(--accent-strong);
  cursor: pointer;
  font-weight: 800;
  padding: 0 16px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.reload-button:hover {
  border-color: var(--border-strong);
  background: rgba(18, 61, 43, 0.92);
}

.reload-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 26px;
}

.plan-card.featured {
  border-color: rgba(66, 216, 139, 0.5);
  background:
    linear-gradient(180deg, rgba(66, 216, 139, 0.12), transparent 42%),
    rgba(9, 29, 20, 0.9);
}

.plan-badge {
  width: max-content;
  min-height: 30px;
  border: 1px solid rgba(66, 216, 139, 0.34);
  border-radius: 999px;
  background: rgba(66, 216, 139, 0.11);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
  padding: 6px 10px;
}

.plan-card h3 {
  margin-top: 18px;
  font-size: 27px;
}

.plan-subtitle {
  min-height: 50px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.price {
  display: flex;
  align-items: end;
  gap: 7px;
  margin: 28px 0 18px;
}

.price strong {
  font-size: 46px;
  line-height: 0.95;
}

.price span {
  color: var(--muted);
  font-weight: 700;
}

.spec-list,
.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list {
  margin-bottom: 22px;
}

.spec-list li,
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.45;
}

.spec-list li::before,
.feature-list li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

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

.band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 34px;
  border: 1px solid rgba(66, 216, 139, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(66, 216, 139, 0.15), transparent 52%),
    rgba(8, 25, 18, 0.78);
  box-shadow: var(--shadow);
}

.band-copy {
  max-width: 720px;
}

.band h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.band p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.review-card {
  min-height: 292px;
}

.stars {
  color: var(--warning);
  font-size: 17px;
  letter-spacing: 0.06em;
}

.review-card blockquote {
  margin: 18px 0 24px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.62;
}

.review-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}

.review-person strong {
  display: block;
  margin-bottom: 4px;
}

.review-person span {
  color: var(--muted-2);
  font-size: 13px;
}

.metric {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(5, 17, 12, 0.64);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
  padding: 8px 10px;
}

.contact-section {
  padding-bottom: 54px;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(8, 25, 18, 0.72);
}

.contact-panel p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.trust-section,
.legal-page {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.trust-section {
  padding: 0 0 58px;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 18px;
  align-items: stretch;
}

.legal-card,
.trust-placeholders {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(8, 25, 18, 0.72);
  padding: 28px;
}

.legal-card h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.legal-card p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(5, 17, 12, 0.62);
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 800;
  padding: 0 14px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  outline: none;
  border-color: var(--border-strong);
  background: rgba(18, 61, 43, 0.82);
  transform: translateY(-1px);
}

.trust-placeholders {
  display: grid;
  gap: 14px;
}

.placeholder-badge,
.payment-banners span {
  border: 1px dashed rgba(159, 214, 183, 0.28);
  background: rgba(5, 17, 12, 0.54);
}

.placeholder-badge {
  display: grid;
  min-height: 98px;
  align-content: center;
  border-radius: 16px;
  padding: 18px;
}

.placeholder-badge strong {
  color: var(--text);
  font-size: 24px;
}

.placeholder-badge span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.payment-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-banners span {
  display: grid;
  min-height: 56px;
  place-items: center;
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 14px;
}

.footer span:first-child {
  color: var(--text);
  font-weight: 800;
}

.legal-page {
  padding: 78px 0 64px;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(8, 25, 18, 0.74);
  padding: clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 64px);
}

.legal-note {
  margin: 20px 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-document section {
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.legal-document section:last-child {
  padding-bottom: 0;
}

.legal-document h2 {
  font-size: 24px;
  line-height: 1.2;
}

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

.legal-document a {
  color: var(--accent-strong);
  font-weight: 750;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.skeleton-card {
  min-height: 292px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(8, 25, 18, 0.72);
  position: relative;
}

.skeleton-tab {
  min-height: 76px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(8, 25, 18, 0.72);
  position: relative;
}

.skeleton-card::after,
.skeleton-tab::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 10%, rgba(159, 214, 183, 0.12) 38%, transparent 66%);
  transform: translateX(-100%);
  animation: shimmer 1.35s infinite;
}

.state-card {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  align-content: center;
}

.state-card.error {
  border-color: rgba(255, 124, 124, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 124, 124, 0.08), transparent 52%),
    rgba(8, 25, 18, 0.72);
}

.state-card h3 {
  color: var(--text);
}

.state-label {
  width: max-content;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 124, 124, 0.28);
  border-radius: 999px;
  background: rgba(255, 124, 124, 0.1);
  color: #ffb0b0;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 10px;
}

.state-card .button {
  width: max-content;
  margin-top: 18px;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes ping {
  0% {
    opacity: 0.8;
    transform: scale(0.6);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-inline: 16px;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    border-radius: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .panel-shell {
    min-height: auto;
  }

  .feature-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .plan-card {
    min-height: auto;
  }

  .section-heading.row,
  .band,
  .contact-panel {
    align-items: stretch;
    flex-direction: column;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .band,
  .footer,
  .trust-section,
  .legal-page {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    padding-inline: 12px;
  }

  .header-action {
    display: none;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .hero {
    gap: 34px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(40px, 15vw, 58px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: auto;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .reload-button {
    width: 100%;
  }

  .plan-tabs {
    grid-template-columns: 1fr;
  }

  .category-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: auto;
    border-radius: 22px;
    padding: 12px;
  }

  .panel-shell {
    padding: 14px;
    border-radius: 18px;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .server-overview {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .server-overview h2 {
    font-size: 26px;
  }

  .minecraft-cube {
    --cube-size: 76px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: auto;
  }

  .stack-item {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .stack-item b {
    grid-column: 2;
  }

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

  .resource-row strong {
    grid-column: 2;
    text-align: left;
  }

  .section {
    padding: 56px 0;
  }

  .feature-card,
  .review-card,
  .state-card,
  .plan-card,
  .band,
  .contact-panel,
  .legal-card,
  .trust-placeholders {
    padding: 22px;
  }

  .payment-banners {
    grid-template-columns: 1fr;
  }

  .legal-links {
    flex-direction: column;
  }

  .legal-links a {
    justify-content: center;
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}

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


