:root {
  --bg: #090c14;
  --bg-soft: #101a2b;
  --text: #f5f7ff;
  --muted: #b3bdd1;
  --accent: #ffc223;
  --accent-2: #ff930a;
  --card: rgba(14, 22, 38, 0.78);
  --border: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1300px 540px at 10% -10%, #2c3c62 0%, transparent 72%),
    radial-gradient(950px 420px at 90% 8%, #1c2a49 0%, transparent 66%), var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.noise,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.noise {
  opacity: 0.03;
  background-image: radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size: 3px 3px;
}

.bg-grid {
  z-index: -3;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.35;
}

.bg-glow--left {
  top: 18%;
  left: -140px;
  background: #31538a;
}

.bg-glow--right {
  bottom: 6%;
  right: -120px;
  background: #ad7e00;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 10px;
}

.header__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__star {
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

.brand__text {
  letter-spacing: 0.4px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 15px;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 22px;
}

.hero__content,
.bonuses {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 191, 26, 0.12);
  border: 1px solid rgba(255, 191, 26, 0.4);
  color: #ffe39a;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.04;
  text-wrap: balance;
}

h1 span {
  color: var(--accent);
}

.hero__subtitle {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 650px;
}

.hero__badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__badges span {
  font-size: 12px;
  color: #dce4f7;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.promo-box {
  margin-top: 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(27, 38, 61, 0.9), rgba(17, 27, 45, 0.88));
  padding: 18px;
}

.promo-box__label {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--muted);
}

.promo-box__code-row {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

code {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #ffe9b4;
  letter-spacing: 2.6px;
  text-shadow: 0 0 18px rgba(255, 194, 35, 0.35);
}

.promo-box__hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--accent {
  color: #1f1600;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 14px 30px rgba(255, 191, 26, 0.34);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.bonuses h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.25;
}

.bonuses ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.bonuses li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.steps {
  margin-top: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.bp-page {
  margin-top: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bp-page__head {
  margin-bottom: 20px;
}

.bp-page h1,
.bp-page h2 {
  margin: 0;
  font-size: 30px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
}

.bp-page--top {
  margin-top: 16px;
  margin-bottom: 8px;
}

.bp-page__lead {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
}

.bp-page__table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 22, 0.45);
}

.bp-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.bp-table th,
.bp-table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.bp-table th {
  background: rgba(255, 194, 35, 0.12);
  color: #ffe9b4;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.bp-table tbody tr {
  transition: background 0.15s ease;
}

.bp-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.bp-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.bp-table tbody tr:nth-child(even):hover {
  background: rgba(255, 255, 255, 0.05);
}

.bp-type {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.bp-type--gov {
  background: rgba(80, 140, 255, 0.2);
  color: #9ec0ff;
  border: 1px solid rgba(120, 170, 255, 0.35);
}

.bp-type--crime {
  background: rgba(255, 80, 80, 0.15);
  color: #ff9a9a;
  border: 1px solid rgba(255, 120, 120, 0.35);
}

.bp-type--work {
  background: rgba(80, 220, 160, 0.12);
  color: #7ee0c5;
  border: 1px solid rgba(100, 210, 170, 0.35);
}

.bp-type--hobby {
  background: rgba(180, 120, 255, 0.14);
  color: #c9b0ff;
  border: 1px solid rgba(170, 140, 255, 0.35);
}

.bp-type--business {
  background: rgba(255, 180, 90, 0.14);
  color: #ffd49a;
  border: 1px solid rgba(255, 170, 80, 0.35);
}

.bp-type--solo {
  background: rgba(90, 200, 255, 0.12);
  color: #9ee5ff;
  border: 1px solid rgba(120, 210, 255, 0.35);
}

.bp-type--pair {
  background: rgba(255, 120, 200, 0.12);
  color: #ffb8e6;
  border: 1px solid rgba(255, 140, 200, 0.35);
}

.bp-reward {
  font-weight: 800;
  color: #dce4f7;
}

.bp-reward--vip {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 194, 35, 0.25);
}

.steps h2 {
  margin: 0 0 16px;
  font-size: 30px;
  font-family: "Unbounded", Arial, sans-serif;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.steps article {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.steps article span {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}

.steps article h3 {
  margin: 8px 0;
  font-size: 18px;
}

.steps article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.bonuses li span {
  color: var(--accent);
  font-weight: 800;
}

.footer {
  margin-top: 18px;
  padding: 8px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.footer a {
  color: #d7e4ff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .header {
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero__content,
  .bonuses,
  .bp-page,
  .steps {
    padding: 22px;
  }
}
