@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --border: #1e1e2e;
  --accent: #6c63ff;
  --accent-dim: rgba(108,99,255,0.12);
  --text: #e8e8f0;
  --muted: #8888a0;
  --danger: #ff6b6b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Mono', monospace;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── LAYOUT ── */
.page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* ── HEADER ── */
.page-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.page-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.page-meta {
  color: var(--muted);
  font-size: 0.875rem;
}

/* ── CONTENT ── */
.content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  padding-left: 0.875rem;
  border-left: 2px solid var(--accent);
}

.content p {
  color: #b0b0c8;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.content ul, .content ol {
  color: #b0b0c8;
  font-size: 0.9375rem;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content li { margin-bottom: 0.4rem; }

.content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(108,99,255,0.3);
  transition: border-color 0.2s;
}
.content a:hover { border-color: var(--accent); }

/* ── CALLOUT ── */
.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.callout.warn {
  border-left-color: var(--danger);
}

.callout p {
  margin: 0;
  font-size: 0.9rem;
}

/* ── CONTACT BOX ── */
.contact-box {
  margin-top: 3.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.contact-box p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.75rem; }

.contact-box a.email-link {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.875rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  transition: background 0.2s;
}
.contact-box a.email-link:hover { background: rgba(108,99,255,0.2); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }
footer .footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-top: 0.5rem; }

/* ── DELETE PAGE ── */
.steps { counter-reset: step; margin: 1.5rem 0; }

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

.step-body h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.3rem; }
.step-body p { color: var(--muted); font-size: 0.875rem; margin: 0; }

@media (max-width: 600px) {
  .nav-links { display: none; }
  .page-wrap { padding: 2.5rem 1.25rem 4rem; }
}
