/* ── Grab For Me — shared site styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0A0A0F;
  --surface: #111118;
  --alt:     #161621;
  --border:  #1E1E2E;
  --text:    #E8E8F0;
  --muted:   #5A5A72;
  --mint:    #3DFFC0;
  --yellow:  #F5C842;
  --purple:  #7C85FF;
  --red:     #FF4757;
  --orange:  #FF6B35;
  --radius:  14px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,15,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 900px; margin: 0 auto;
  height: 58px;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo {
  width: 34px; height: 34px;
  background: rgba(61,255,192,.10);
  border: 1px solid rgba(61,255,192,.25);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: var(--mint);
  text-decoration: none; flex-shrink: 0;
}
.nav-brand { font-weight: 700; font-size: 15px; color: var(--text); text-decoration: none; }
.nav-links { margin-left: auto; display: flex; gap: 6px; }
.nav-links a {
  font-size: 13px; color: var(--muted); text-decoration: none;
  padding: 6px 12px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--mint); }

/* ── page wrapper ── */
.page { max-width: 760px; margin: 0 auto; padding: 48px 20px 80px; }
.page-sm { max-width: 680px; }

/* ── hero ── */
.hero { text-align: center; padding: 72px 20px 56px; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(61,255,192,.08);
  border: 1px solid rgba(61,255,192,.22);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: var(--mint);
  letter-spacing: .4px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge span { width:6px;height:6px;border-radius:50%;background:var(--mint);flex-shrink:0; }
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800; color: var(--text);
  line-height: 1.15; letter-spacing: -.03em;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--mint); }
.hero p { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto 32px; }
.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 12px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: opacity .15s, transform .1s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--mint); color: #0A0A0F; }
.btn-outline  { background: var(--surface); color: var(--text); border: 1px solid var(--border); }

/* ── section ── */
section { margin-bottom: 40px; }
section > h2 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  color: var(--mint); text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.card + .card { margin-top: 10px; }
.card p + p { margin-top: 10px; }
.card a { color: var(--mint); }

/* ── feature grid ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  max-width: 900px; margin: 0 auto;
  padding: 0 20px 64px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.feature-icon {
  font-size: 24px; margin-bottom: 12px;
}
.feature-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feature-card p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── ordered steps ── */
ol.steps { padding-left: 0; list-style: none; counter-reset: step; }
ol.steps li {
  counter-increment: step;
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
ol.steps li:last-child { border-bottom: none; padding-bottom: 0; }
ol.steps li::before {
  content: counter(step);
  min-width: 26px; height: 26px;
  background: rgba(61,255,192,.12);
  border: 1px solid rgba(61,255,192,.28);
  border-radius: 50%;
  font-size: 11px; font-weight: 800; color: var(--mint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
ol.steps li strong { display: block; margin-bottom: 2px; color: var(--text); }
ol.steps li span   { color: var(--muted); font-size: 13px; }

/* ── data rows ── */
.data-row {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.data-row:last-child { border-bottom: none; padding-bottom: 0; }
.data-row .label { font-size: 14px; font-weight: 600; }
.data-row .note  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.badge {
  font-size: 10px; font-weight: 700; letter-spacing: .4px;
  padding: 3px 9px; border-radius: 999px;
  white-space: nowrap; flex-shrink: 0;
}
.badge-del  { background: rgba(255,71,87,.12);  color: var(--red);    border: 1px solid rgba(255,71,87,.28); }
.badge-ret  { background: rgba(245,200,66,.10); color: var(--yellow); border: 1px solid rgba(245,200,66,.28); }
.badge-anon { background: rgba(124,133,255,.10);color: var(--purple); border: 1px solid rgba(124,133,255,.28); }

/* ── policy body ── */
.policy h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 24px 0 8px; }
.policy h3:first-child { margin-top: 0; }
.policy p   { color: var(--muted); font-size: 14px; }
.policy ul  { color: var(--muted); font-size: 14px; padding-left: 20px; margin-top: 8px; }
.policy ul li { margin-bottom: 5px; }
.policy a   { color: var(--mint); }

/* ── alert box ── */
.alert {
  border-radius: 10px; padding: 14px 18px;
  font-size: 13px; margin-top: 14px;
}
.alert-yellow {
  background: rgba(245,200,66,.07);
  border: 1px solid rgba(245,200,66,.22);
  color: var(--yellow);
}
.alert-red {
  background: rgba(255,71,87,.07);
  border: 1px solid rgba(255,71,87,.22);
  color: var(--red);
}
.alert-mint {
  background: rgba(61,255,192,.07);
  border: 1px solid rgba(61,255,192,.22);
  color: var(--mint);
}

/* ── email btn ── */
a.btn-email {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint); color: #0A0A0F;
  font-weight: 700; font-size: 14px;
  padding: 12px 22px; border-radius: 10px;
  text-decoration: none; margin-top: 14px;
  transition: opacity .15s;
}
a.btn-email:hover { opacity: .88; }

/* ── footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 20px;
  text-align: center;
  font-size: 12px; color: var(--muted);
}
footer a { color: var(--mint); text-decoration: none; }
footer .foot-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 18px;
}

@media (max-width: 540px) {
  .nav-links a { padding: 6px 8px; font-size: 12px; }
  .features { grid-template-columns: 1fr; }
}
