/* Delete account page — Lockin.tech */

/* ── Page shell ─────────────────────────────── */
.page { position: relative; padding: calc(80px + var(--sp-16)) 0 var(--sp-16); overflow: hidden; }
.page__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.page__bg-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.08; }
.page__bg-blob--1 {
  width: clamp(360px, 55vw, 720px); height: clamp(360px, 55vw, 720px);
  background: #EF4444; top: -10%; left: -12%; opacity: 0.06;
}
.page__bg-blob--2 {
  width: clamp(320px, 50vw, 640px); height: clamp(320px, 50vw, 640px);
  background: var(--c-primary); top: 30%; right: -15%;
}
.page__inner { position: relative; z-index: 1; }

/* ── Back link ──────────────────────────────── */
.back-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.5rem 1rem;
  font-size: var(--t-sm); font-weight: 500;
  color: var(--c-text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  text-decoration: none;
  margin-bottom: var(--sp-10);
  transition: all var(--t-fast);
}
.back-link:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--c-border-bright);
  transform: translateX(-2px);
}

/* ── Header ─────────────────────────────────── */
.page-header { text-align: center; margin-bottom: var(--sp-12); }
.page-header__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase; letter-spacing: 0.18em;
  color: #EF4444;
  padding: 0.4rem 0.9rem;
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}

.page-header__title {
  font-family: var(--font-display);
  font-size: var(--t-5xl); font-weight: 600;
  line-height: 1.04; letter-spacing: -0.035em;
  color: var(--c-white); margin-bottom: var(--sp-4);
}
.page-header__title span {
  background: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
.page-header__subtitle {
  font-size: var(--t-lg); color: var(--c-text-muted);
  max-width: 580px; margin: 0 auto; line-height: 1.55;
}

/* ── Steps card ─────────────────────────────── */
.delete-card {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--c-border-bright);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.step-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.step {
  display: flex; gap: var(--sp-5);
  padding: var(--sp-5);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.step:hover { border-color: var(--c-border-bright); background: rgba(255, 255, 255, 0.04); }
.step__num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 600;
  font-size: var(--t-base);
  color: var(--c-accent);
  background: rgba(var(--c-accent-rgb), 0.1);
  border: 1px solid rgba(var(--c-accent-rgb), 0.3);
  border-radius: var(--r-md);
}
.step__body { flex: 1; min-width: 0; }
.step__title {
  font-family: var(--font-display);
  font-size: var(--t-lg); font-weight: 600;
  color: var(--c-white);
  margin: 0.25rem 0 var(--sp-2);
  letter-spacing: -0.01em;
}
.step__desc { color: var(--c-text-muted); line-height: 1.6; font-size: var(--t-sm); }
.step__desc a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.step__desc a:hover { color: var(--c-accent-light); }

/* ── CTA pill ───────────────────────────────── */
.delete-cta {
  margin-top: var(--sp-8);
  padding: var(--sp-6);
  text-align: center;
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.02) 100%);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--r-lg);
}
.delete-cta p {
  color: var(--c-text-muted);
  font-size: var(--t-sm);
  margin-bottom: var(--sp-4);
}
.btn-mail {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
  color: white;
  font-family: var(--font-body); font-size: var(--t-base); font-weight: 700;
  border: none; border-radius: var(--r-full);
  text-decoration: none;
  transition: opacity var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-mail:hover {
  opacity: 0.93; transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(239, 68, 68, 0.32);
}

/* ── Warning callout ────────────────────────── */
.warn {
  margin-top: var(--sp-6);
  display: flex; gap: var(--sp-4);
  padding: var(--sp-5);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--c-border);
  border-left: 3px solid #EF4444;
  border-radius: var(--r-md);
}
.warn__icon {
  flex-shrink: 0; width: 24px; height: 24px;
  color: #EF4444;
}
.warn__text {
  font-size: var(--t-sm);
  color: var(--c-text-muted);
  line-height: 1.6;
}
.warn__text strong { color: var(--c-white); }

/* ── Quick link row ─────────────────────────── */
.alt-actions {
  max-width: 720px; margin: var(--sp-10) auto 0;
  display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center;
}
.alt-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  font-size: var(--t-sm); font-weight: 500;
  color: var(--c-text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  text-decoration: none;
  transition: all var(--t-fast);
}
.alt-link:hover {
  color: var(--c-white);
  border-color: var(--c-border-bright);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .page         { padding-top: calc(68px + var(--sp-10)); }
  .step         { flex-direction: column; gap: var(--sp-3); padding: var(--sp-4); }
  .delete-card  { padding: var(--sp-6) var(--sp-5); }
}
