/*
  styles.css — The Overthinking Reset Series
  highvibes.click/overthinking/

  Add to the <head> of each page:
  <link rel="stylesheet" href="styles.css">

  Contains shared classes not present in individual page <style> blocks.
  Relies on CSS variables defined inline in each page:
  --white, --surface, --soft, --border, --ink, --body, --muted
*/

/* ─── Reset section: back-to-signup button ─────────────────────────────── */

.reset-signup-btn {
  display: inline-block;
  background: #3A7260;
  color: white;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: .92rem;
  margin-top: 20px;
  transition: background .2s ease, transform .3s ease;
}

.reset-signup-btn:hover {
  background: #2e5c4e;
  transform: translateY(-1px);
}


/* ─── Reset section: 5-track preview list ──────────────────────────────── */

.reset-preview {
  display: grid;
  gap: 10px;
}

.reset-preview-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  font-family: Inter, sans-serif;
  font-size: .9rem;
  color: var(--body);
  position: relative;
  padding-left: 36px;
}

.reset-preview-item::before {
  content: "▶";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .6rem;
  color: #3A7260;
  opacity: .7;
}

.reset-optin-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reset-signup-btn {
  display: block;
  text-align: center;
  max-width: 280px;
  margin: 16px auto 0;
}