:root {
  color-scheme: dark;
  --bg: #080002;
  --panel: rgba(255, 255, 255, .055);
  --line: rgba(255, 255, 255, .13);
  --text: rgba(255, 255, 255, .86);
  --muted: rgba(255, 255, 255, .68);
  --red: #f01818;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 24, 24, .42), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(255, 192, 58, .14), transparent 22%),
    linear-gradient(150deg, #160004 0%, #2c0508 44%, #070002 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  padding: 20px 16px 40px;
}

a {
  color: #fff;
}

.wrap {
  width: min(100%, 920px);
  margin: 0 auto;
}

.topbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.home-link {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.hero,
.block,
.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .26);
}

.hero {
  padding: clamp(22px, 6vw, 44px);
}

.eyebrow {
  margin: 0 0 8px;
  color: #ffb6b6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.14;
}

h1 {
  font-size: clamp(28px, 8vw, 50px);
}

h2 {
  font-size: clamp(20px, 5vw, 30px);
}

h3 {
  font-size: clamp(17px, 4vw, 22px);
}

p,
li,
dd {
  font-size: clamp(15px, 3.8vw, 17px);
  line-height: 1.62;
}

p {
  margin: 0 0 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta,
.ghost {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.cta {
  background: linear-gradient(180deg, #f01818, #9f0606);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .34);
}

.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.block,
.faq {
  padding: 18px;
}

.block ul,
.block ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

.navgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.navgrid a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.note {
  margin-top: 16px;
  padding: 14px;
  border-left: 3px solid var(--red);
  background: rgba(240, 24, 24, .1);
  color: var(--muted);
}

dl {
  margin: 0;
}

dt {
  margin-top: 15px;
  color: #fff;
  font-weight: 900;
}

dd {
  margin: 5px 0 0;
}

.footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (min-width: 760px) {
  body {
    padding-top: 34px;
  }

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