.account-delete-page {
  color: #f4f6fb;
}

.delete-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 124px) 0 28px;
}

.delete-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 206, 31, 0.16), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(6, 10, 18, 0.82), rgba(6, 10, 18, 0.26));
  pointer-events: none;
}

.delete-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.delete-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(246, 206, 31, 0.28);
  background: rgba(246, 206, 31, 0.08);
  color: #f6ce1f;
  font: 800 11px/1 Inter, system-ui, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.delete-title {
  margin: 0;
  font: 400 clamp(48px, 9vw, 92px)/0.95 "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.delete-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(244, 246, 251, 0.84);
  font: 500 clamp(16px, 2vw, 21px)/1.7 Inter, system-ui, sans-serif;
}

.delete-shell {
  padding: 16px 0 64px;
}

.delete-grid {
  display: grid;
  gap: 18px;
}

.delete-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 19, 32, 0.96), rgba(8, 12, 21, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 38px rgba(0, 0, 0, 0.28);
}

.delete-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(246, 206, 31, 0.52), transparent);
  opacity: 0.75;
}

.delete-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font: 700 clamp(22px, 3vw, 30px)/1.1 Oswald, sans-serif;
  text-transform: uppercase;
}

.delete-card p,
.delete-card li {
  color: rgba(228, 233, 242, 0.84);
  font: 500 15px/1.8 Inter, system-ui, sans-serif;
}

.delete-card ol,
.delete-card ul {
  margin: 0;
  padding-left: 20px;
}

.delete-card li + li {
  margin-top: 8px;
}

.delete-card a {
  color: #f6ce1f;
  font-weight: 800;
  text-decoration: none;
}

.delete-card a:hover,
.delete-card a:focus-visible {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .delete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
