* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #050014;
  color: #f8fafc;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

a {
  color: #c026d3;
}

.hero {
  padding: 56px 0 40px;
}

.eyebrow {
  color: #a5b4fc;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 16px;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1;
}

h2 {
  margin-top: 40px;
  font-size: 28px;
}

p,
li {
  color: #cbd5e1;
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #c026d3;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.panel {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.muted {
  color: #94a3b8;
}

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
