:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070712;
  color: #f7f2ff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(126, 87, 255, .38), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(255, 126, 206, .26), transparent 28rem),
    linear-gradient(135deg, #070712 0%, #17152c 60%, #0b0f1f 100%);
}
.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}
.hero {
  min-height: 58vh;
  display: grid;
  align-content: center;
  gap: 24px;
}
.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #c8b8ff;
  background: rgba(255,255,255,.06);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
h1 {
  margin: 0;
  font-size: clamp(56px, 10vw, 132px);
  line-height: .9;
  letter-spacing: -.08em;
}
.lead {
  max-width: 680px;
  margin: 0;
  color: rgba(247,242,255,.76);
  font-size: clamp(18px, 2.3vw, 26px);
  line-height: 1.7;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.primary { background: #fff; color: #10101b; }
.secondary { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
article span { color: #ffb7e8; font-weight: 800; }
article h2 { margin: 26px 0 8px; font-size: 28px; }
article p { margin: 0; color: rgba(247,242,255,.7); line-height: 1.7; }
@media (max-width: 760px) {
  .page-shell { padding: 48px 0; }
  .cards { grid-template-columns: 1fr; }
}
