:root {
  color-scheme: dark;
  --bg: #050607;
  --border: #252b36;
  --border-strong: #286bff;
  --text: #f7faff;
  --muted: #a9b7cc;
  --base: #0052ff;
  --base-2: #4c82ff;
  --green: #34d399;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 54% 17%, rgba(0, 82, 255, 0.18), transparent 25rem),
    linear-gradient(180deg, rgba(0, 82, 255, 0.05), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button {
  border: 0;
  font: inherit;
}

.site-header {
  position: fixed;
  top: 26px;
  left: 38px;
  z-index: 4;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand-name {
  padding: 9px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 750;
}

.claim-page {
  display: grid;
  min-height: 100vh;
  place-items: start center;
  padding: 146px 24px 64px;
}

.claim-panel {
  width: min(520px, 100%);
}

.step-meta {
  display: flex;
  margin-bottom: 14px;
  color: var(--base-2);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

h1 {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 850;
}

.lead {
  max-width: 490px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.bonus-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.bonus-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  min-height: 116px;
  width: 100%;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(7, 9, 13, 0.88);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.bonus-card:hover,
.bonus-card:focus-visible {
  border-color: #41506a;
  background: rgba(11, 16, 24, 0.96);
}

.bonus-card:focus-visible {
  outline: 3px solid rgba(76, 130, 255, 0.42);
  outline-offset: 3px;
}

.bonus-card.is-selected {
  border-color: var(--border-strong);
  background: rgba(0, 82, 255, 0.1);
}

.bonus-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(0, 82, 255, 0.16);
}

.starter-icon::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--base);
  box-shadow:
    0 0 0 8px rgba(0, 82, 255, 0.2),
    0 0 0 16px rgba(0, 82, 255, 0.08);
}

.wallet-icon::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 15px;
  width: 36px;
  height: 25px;
  border-radius: 6px;
  background: var(--base);
}

.wallet-icon::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 22px;
  width: 12px;
  height: 8px;
  border-radius: 8px;
  background: #fff;
}

.builder-icon::before,
.builder-icon::after {
  content: "";
  position: absolute;
  background: var(--base);
}

.builder-icon::before {
  left: 15px;
  top: 8px;
  width: 22px;
  height: 36px;
  transform: rotate(35deg);
}

.builder-icon::after {
  left: 9px;
  top: 24px;
  width: 35px;
  height: 12px;
  background: var(--green);
  transform: rotate(-25deg);
}

.bonus-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.bonus-title {
  color: var(--text);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.1;
}

.bonus-text {
  max-width: 305px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.42;
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    padding: 26px 22px 0;
  }

  .claim-page {
    min-height: calc(100vh - 68px);
    padding: 58px 20px 42px;
    place-items: start stretch;
  }

  h1 {
    font-size: 31px;
  }

  .lead {
    font-size: 16px;
  }

  .bonus-list {
    gap: 15px;
    margin-top: 28px;
  }

  .bonus-card {
    grid-template-columns: 64px 1fr;
    min-height: 106px;
    padding: 18px 20px;
  }

  .bonus-icon {
    width: 48px;
    height: 48px;
  }

  .bonus-title {
    font-size: 18px;
  }

  .bonus-text {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .bonus-card {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}
