:root {
  --bg: #1e1f22;
  --panel: #2b2d31;
  --text: #dbdee1;
  --muted: #949ba4;
  --header: #f2f3f5;
  --brand: #5865f2;
  --brand-hover: #4752c4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Noto Sans", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(88, 101, 242, 0.28), transparent 55%),
    radial-gradient(700px 400px at 50% 110%, rgba(35, 165, 89, 0.12), transparent 50%),
    var(--bg);
  z-index: -1;
}

.wrap {
  width: min(720px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}

header {
  padding: 36px 0 0;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--header);
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0 64px;
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8ea1ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--header);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lead {
  margin: 22px auto 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 28px rgba(88, 101, 242, 0.35);
}

.btn.primary:hover {
  background: var(--brand-hover);
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.points {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--text);
}

.points li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23a559;
  flex-shrink: 0;
}

.safe {
  margin-top: 40px;
  width: 100%;
  max-width: 520px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(43, 45, 49, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.safe h2 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--header);
}

.safe p,
.safe ol {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.safe ol {
  padding-left: 18px;
  margin-top: 8px;
}

.safe li + li {
  margin-top: 4px;
}

footer {
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}
