:root {
  --bg: #0a0a0a;
  --bg-accent: #0a0a0a;
  --card: #111111;
  --text: #ffffff;
  --muted: #9ca3af;
  --brand: #10a5ff; /* logo blue */
  --brand-2: #10a5ff;
  --danger: #ef4444;
  --ok: #22c55e;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; clip-path: inset(50%); }

.container {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(16px, 3vw, 40px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
}
.brand-name { font-weight: 700; letter-spacing: 0.2px; }

main {
  display: grid;
  place-items: center;
  padding: 24px clamp(16px, 3vw, 40px) 64px;
}

.hero {
  width: 100%;
  max-width: 760px;
  background: var(--card);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 40px);
}
.glow { display: none; }

.eyebrow { display: none; }
.dot { display: none; }

h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.1;
}

.subtitle { margin: 0 0 20px; color: var(--muted); font-size: 16px; line-height: 1.6; }

.grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.card { background: transparent; border: 0; padding: 0; }

.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 560px) { .form { grid-template-columns: 1fr auto; } }

.input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(6,10,20,0.6);
  color: var(--text);
  outline: none;
}
.input::placeholder { color: #7c8aa0; }
.input:focus { border-color: rgba(14,165,233,0.65); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }

.btn {
  appearance: none;
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  font-weight: 600;
  background: var(--brand);
  color: white;
  cursor: pointer;
}
.btn:disabled { opacity: 0.7; cursor: not-allowed; }

.note { color: var(--muted); font-size: 12px; }
.error { color: var(--danger); font-size: 13px; margin-top: 8px; }
.success { color: var(--ok); font-size: 13px; margin-top: 8px; }

.list { display: none; }
.badge { display: inline-block; padding: 4px 8px; border-radius: 999px; background: rgba(16,165,255,0.15); border: 1px solid rgba(16,165,255,0.35); color: #9fd9ff; font-size: 12px; }

footer {
  padding: 16px clamp(16px, 3vw, 40px) 28px;
  color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
}
.links { display: flex; gap: 14px; flex-wrap: wrap; }
.links a { color: var(--muted); text-decoration: none; }
.links a:hover { color: var(--text); }

/* Delete Account Page Styles */
.content-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.content-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text);
}

.content-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}

.content-section p {
  margin: 0 0 12px;
  line-height: 1.6;
  color: var(--muted);
}

.content-section ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--muted);
}

.content-section a {
  color: var(--brand);
  text-decoration: none;
}

.content-section a:hover {
  text-decoration: underline;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-method {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.contact-method h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
}

.contact-method p {
  margin: 0 0 12px;
  font-size: 14px;
}

.contact-method ul {
  margin: 0;
  padding-left: 16px;
  font-size: 14px;
}

.contact-method li {
  margin-bottom: 6px;
}

.warning-box, .info-box {
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.warning-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.warning-box h3 {
  color: var(--danger);
  margin: 0 0 12px;
}

.info-box {
  background: rgba(16, 165, 255, 0.1);
  border: 1px solid rgba(16, 165, 255, 0.3);
}

.info-box h3 {
  color: var(--brand);
  margin: 0 0 12px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.contact-info p {
  margin: 0 0 8px;
  font-size: 14px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}



