:root {
  color-scheme: dark;
  --bg: #07110b;
  --panel: #0e1b12;
  --panel-2: #132517;
  --line: #25472c;
  --text: #ecfff0;
  --muted: #a9c9ae;
  --fun: #00aa00;
  --play: #55ff55;
  --accent: #d9f99d;
  --gold: #f7d65a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(85, 255, 85, 0.08), transparent 340px),
    repeating-linear-gradient(90deg, rgba(85, 255, 85, 0.04) 0 1px, transparent 1px 68px),
    var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(7, 17, 11, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 24px;
  font-weight: 900;
}

.brand-fun {
  color: var(--fun);
}

.brand-play {
  color: var(--play);
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.top-cta:hover,
.product a:hover,
.button:hover {
  filter: brightness(1.12);
}

.top-cta,
.button,
.product a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
}

.top-cta,
.button.primary,
.product a {
  background: linear-gradient(90deg, var(--fun), var(--play));
  color: #041007;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(24px, 5vw, 68px);
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--play);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.server-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(85, 255, 85, 0.1), rgba(14, 27, 18, 0.92));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.pixel-scene {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 168px;
  background: linear-gradient(#16351e, #0b1d10);
}

.block {
  min-height: 168px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.grass {
  background: linear-gradient(#42c948 0 22%, #734322 22%);
}

.emerald {
  background:
    linear-gradient(135deg, transparent 38%, rgba(255, 255, 255, 0.28) 39% 46%, transparent 47%),
    linear-gradient(#55ff55, #049c2e);
}

.stone {
  background: linear-gradient(#6b7a6f, #334237);
}

.leaf {
  background: linear-gradient(#96f56b, #1d7f2e);
}

.server-panel dl {
  margin: 0;
  padding: 22px;
}

.server-panel div,
.currency div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(85, 255, 85, 0.16);
}

.server-panel div:last-child,
.currency div:last-child {
  border-bottom: 0;
}

dt,
.currency span {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 800;
}

.section {
  padding: 58px clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(85, 255, 85, 0.12);
}

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

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.section-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.product {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(14, 27, 18, 0.92);
}

.product h3 {
  margin-bottom: 0;
  color: var(--accent);
}

.product p {
  color: var(--muted);
  line-height: 1.45;
}

.product strong {
  margin-top: auto;
  color: var(--gold);
}

.highlight {
  background: linear-gradient(180deg, rgba(85, 255, 85, 0.18), rgba(14, 27, 18, 0.95));
}

.compact {
  background: rgba(255, 255, 255, 0.015);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--panel);
}

.currency {
  max-width: 780px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 22px;
  background: var(--panel-2);
}

.currency strong {
  color: var(--gold);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer {
    display: block;
  }

  .section-head p {
    margin-top: 10px;
  }

  .footer a {
    display: block;
    margin-top: 8px;
  }
}
