:root {
  --bg: #07070a;
  --panel: #111119;
  --panel-soft: #171724;
  --text: #f5f5f7;
  --muted: #b7b7c7;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #f7b733;
  --gold-dark: #b87510;
  --red: #e54040;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 48px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.25rem;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 16px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(247, 183, 51, 0.30), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(229, 64, 64, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.1), #07070a 95%),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 10, 0.93), rgba(7, 7, 10, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 14px;
}

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

h1 {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
  max-width: 820px;
}

h1 span,
h2 span {
  background: linear-gradient(135deg, var(--gold), #fff0aa, var(--red));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: #09090d;
}

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

.server-card {
  margin-top: 42px;
  width: min(420px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 25, 0.75);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.server-card div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.server-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #3df27d;
  box-shadow: 0 0 18px #3df27d;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section.dark {
  width: 100%;
  padding-left: max(16px, calc((100% - 1160px) / 2));
  padding-right: max(16px, calc((100% - 1160px) / 2));
  background:
    radial-gradient(circle at 90% 10%, rgba(247, 183, 51, 0.14), transparent 32%),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 16px;
}

.section-heading p,
.card p,
.feature p,
.cta p,
.footer {
  color: var(--muted);
  line-height: 1.7;
}

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

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

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

.card,
.feature {
  padding: 28px;
  border-radius: 26px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card.glass {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.card h3,
.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.rules-list {
  display: grid;
  gap: 12px;
}

.rules-list div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  border-radius: 18px;
}

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

.rules-list p {
  color: var(--muted);
  margin: 0;
}

.cta {
  width: min(1160px, calc(100% - 32px));
  margin: 96px auto;
  padding: 42px;
  border-radius: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(247, 183, 51, 0.18), rgba(229, 64, 64, 0.16)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 840px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .cta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    letter-spacing: -0.06em;
  }
}
