body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: #1a1028;
  background: linear-gradient(180deg, #faf9ff 0%, #ede9fe 100%);
}

a {
  color: inherit;
}

.shell {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
}

.page {
  padding: 30px 0;
}

.card {
  border: 1px solid rgba(88, 28, 135, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(88, 28, 135, 0.1);
  padding: 24px;
}

.hero {
  margin-bottom: 20px;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ede9fe;
  color: #6b21a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

h2 {
  font-size: 24px;
}

p {
  line-height: 1.7;
  color: #5b4a72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #9333ea;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.actions .ghost {
  background: transparent;
  color: #1a1028;
  border: 1px solid rgba(88, 28, 135, 0.12);
}

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

@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
