.page-section {
  min-height: 82vh;
  padding: 150px 28px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 7% 0%, rgba(47,125,255,.16), transparent 32%),
    radial-gradient(circle at 95% 7%, rgba(255,45,69,.15), transparent 34%),
    rgba(255,255,255,.025);
  box-shadow: 0 30px 90px rgba(0,0,0,.26);
}

.page-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.page-shell h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
}

.page-shell p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(245,245,247,.74);
  font-size: 16px;
  line-height: 1.72;
}

.page-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.page-card {
  padding: 18px;
  min-height: 128px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}

.page-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
}

.page-card span {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.55;
}

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

.page-actions a {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.page-actions .primary { background: linear-gradient(135deg, #326dff, #ff2d45); color: #fff; }
.page-actions .ghost { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: #fff; }

@media (max-width: 860px) {
  .page-section { padding: 126px 16px 54px; }
  .page-grid { grid-template-columns: 1fr; }
  .page-shell p { font-size: 15px; }
}

@media (max-width: 520px) {
  .page-section { padding: 112px 10px 42px; }
  .page-shell { border-radius: 18px; }
  .page-actions a { width: 100%; }
}
