:root {
  --bg: #0b1020;
  --card: #121a31;
  --card-2: #0f1730;
  --text: #e7ecff;
  --muted: #9ca9d0;
  --ok: #2ee6a6;
  --warn: #ffcc66;
  --line: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% -10%, #273f90 0, transparent 40%),
              radial-gradient(circle at 90% 0%, #3b1f66 0, transparent 35%),
              var(--bg);
}

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--line);
  background: rgba(6, 11, 24, 0.55); backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
}
.logo { font-weight: 800; letter-spacing: 0.3px; }
.nav { display: flex; gap: 18px; }
.nav a { color: var(--muted); text-decoration: none; font-size: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4e63c9;
  background: #4e63c9;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}
.link-btn { text-decoration: none; }
.btn.ghost {
  background: transparent;
  border-color: var(--line);
}

.page { max-width: 1180px; margin: 24px auto; padding: 0 16px 24px; }
.hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px;
  margin-bottom: 18px;
}
.hero-copy, .hero-banner, .card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--card), var(--card-2));
}
.hero-copy { padding: 24px; }
.hero-copy h1 { margin: 0 0 10px; font-size: 34px; line-height: 1.15; }
.hero-copy p { margin: 0; color: var(--muted); max-width: 680px; }
.hero-actions { margin-top: 16px; display: flex; gap: 10px; }

.hero-banner {
  min-height: 220px;
  background-image: linear-gradient(135deg, rgba(9, 16, 36, 0.35), rgba(6, 10, 22, 0.7)), url("./assets/hero.jpg");
  background-size: cover;
  background-position: center;
}

.grid { display: grid; gap: 14px; margin-bottom: 14px; }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card { padding: 18px; }
.sub { font-size: 13px; margin-top: 6px; color: var(--muted); }
.sub.ok { color: var(--ok); }
.sub.warn { color: var(--warn); }

h2, h3 { margin: 0 0 12px; }
.section-title { margin: 10px 0 14px; }
.region-list { list-style: none; margin: 0; padding: 0; }
.region-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-top: 1px dashed var(--line);
}

.service p { min-height: 40px; }
.price { font-size: 26px; font-weight: 800; margin: 8px 0 10px; }
.feature-list { margin: 0 0 14px; padding-left: 18px; color: var(--muted); }
.feature-list li { margin: 6px 0; }
.offer-accept { display: inline-flex; gap: 8px; align-items: center; margin-top: 8px; color: var(--muted); font-size: 14px; }

.server-box { margin-bottom: 14px; }
.server-name { font-size: 24px; font-weight: 800; }
.server-addr { color: var(--muted); }
.server-list { display: grid; gap: 10px; }
.server-row {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.01);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.server-row .server-name { font-size: 18px; margin-bottom: 2px; }
.server-metrics { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }

.steps { margin: 0; padding-left: 20px; color: var(--muted); }
.steps li { margin: 8px 0; }

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

.footer {
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 0 16px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}
.footer-links { display: flex; gap: 12px; }
.footer a { color: var(--muted); text-decoration: none; }

@media (max-width: 1000px) {
  .three-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; }
  .nav { display: none; }
  .footer, .server-row { flex-direction: column; align-items: flex-start; }
}
