/* ============================================
   ID Delete — Privacy removal SaaS
   Shared stylesheet
   ============================================ */

:root {
  --ink:       #0f172a;
  --ink-2:     #1e293b;
  --slate:     #475569;
  --slate-2:   #64748b;
  --mute:      #94a3b8;
  --line:      #e2e8f0;
  --bg:        #ffffff;
  --bg-soft:   #f8fafc;
  --bg-card:   #ffffff;

  --brand:       #4f46e5;   /* indigo 600 */
  --brand-2:     #6366f1;
  --brand-dark:  #3730a3;
  --accent:      #ff6b6b;   /* coral - the "y'all" warmth */
  --accent-2:    #f97316;
  --good:        #16a34a;
  --warn:        #f59e0b;
  --bad:         #dc2626;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 1px 2px rgba(15,23,42,.04), 0 8px 24px rgba(15,23,42,.06);
  --shadow-lg: 0 4px 12px rgba(15,23,42,.08), 0 24px 48px rgba(15,23,42,.10);

  --container: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -.015em; }
h3 { font-size: 1.25rem; }
p  { color: var(--slate); margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--ink); font-size: 1.15rem;
  letter-spacing: -.02em;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: .95rem;
}
.logo-mark::before { content: "ey"; letter-spacing: -.05em; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--slate); font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--ink); text-decoration: none; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; border-radius: 8px;
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; color: var(--ink); }

@media (max-width: 880px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: white;
    padding: 16px 24px; gap: 14px;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand); color: white;
  box-shadow: 0 6px 18px rgba(79,70,229,.30);
}
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; color: white; }
.btn-accent {
  background: var(--accent); color: white;
  box-shadow: 0 6px 18px rgba(255,107,107,.32);
}
.btn-accent:hover { background: #e85555; text-decoration: none; color: white; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); text-decoration: none; color: var(--ink); }
.btn-link {
  background: transparent; color: var(--brand); padding: 11px 8px;
}
.btn-link:hover { background: transparent; text-decoration: underline; }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,107,107,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(79,70,229,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fff 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero h1 .accent { color: var(--accent); }
.hero .sub {
  font-size: 1.15rem; color: var(--slate); margin: 18px 0 28px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; color: var(--slate-2); font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--good); }

.hero-visual {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 24px;
}
.hero-visual .scan-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: 12px; background: var(--bg-soft);
  margin-bottom: 10px; font-size: .95rem;
}
.hero-visual .scan-row .name { font-weight: 600; color: var(--ink); }
.hero-visual .scan-row .status {
  font-size: .8rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.status.found  { background: #fef2f2; color: var(--bad); }
.status.req    { background: #fef3c7; color: #92400e; }
.status.gone   { background: #dcfce7; color: var(--good); }

@media (max-width: 880px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); background: #eef2ff;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #eef2ff; color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; }

/* Step cards (numbered) */
.step .num {
  font-family: var(--font);
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: white; font-weight: 800; font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: white; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px; box-shadow: var(--shadow); position: relative;
}
.price-card.featured {
  border: 2px solid var(--brand);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: white;
  font-size: .75rem; font-weight: 700; padding: 6px 14px;
  border-radius: 999px; letter-spacing: .04em;
}
.price-card h3 { font-size: 1.15rem; color: var(--slate); font-weight: 600; margin-bottom: 6px; }
.price-amt { font-size: 3rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price-amt small { font-size: .95rem; color: var(--slate-2); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 24px 0; }
.price-card li {
  padding: 8px 0; color: var(--slate); display: flex; gap: 10px; align-items: start;
  font-size: .95rem;
}
.price-card li::before {
  content: "✓"; color: var(--good); font-weight: 800; flex-shrink: 0;
}
.price-card li.no::before { content: "—"; color: var(--mute); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0; font-weight: 600; font-size: 1.05rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--mute); font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 0 22px; color: var(--slate); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: #cbd5e1; padding: 64px 0 32px;
}
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { color: white; font-size: .95rem; margin-bottom: 14px; }
.site-footer a { color: #cbd5e1; display: block; padding: 4px 0; font-size: .92rem; }
.site-footer a:hover { color: white; text-decoration: none; }
.site-footer .logo { color: white; }
.site-footer .tagline { color: #94a3b8; font-size: .92rem; max-width: 280px; margin-top: 12px; }
.site-footer .copyright {
  border-top: 1px solid #1e293b; padding-top: 24px; font-size: .85rem; color: #94a3b8;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ---------- Forms ---------- */
.form-card {
  background: white; border: 1px solid var(--line); border-radius: 16px;
  padding: 36px; box-shadow: var(--shadow); max-width: 460px; margin: 56px auto;
}
.form-card h1 { font-size: 1.65rem; margin-bottom: 8px; }
.form-card .sub { color: var(--slate); margin-bottom: 24px; }
label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.field { margin-bottom: 16px; }
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], select, textarea {
  width: 100%; padding: 12px 14px; font-size: 1rem; font-family: var(--font);
  border: 1px solid var(--line); border-radius: 10px; background: white;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79,70,229,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-foot { text-align: center; margin-top: 18px; font-size: .9rem; color: var(--slate); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--slate); }
.checkbox input { margin-top: 3px; }

.tier-picker { display: grid; gap: 10px; margin-bottom: 18px; }
.tier-option {
  border: 2px solid var(--line); border-radius: 12px; padding: 14px 16px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: border-color .15s, background .15s;
}
.tier-option.selected { border-color: var(--brand); background: #f5f3ff; }
.tier-option .t-name { font-weight: 700; color: var(--ink); }
.tier-option .t-desc { font-size: .85rem; color: var(--slate); }
.tier-option .t-price { font-weight: 700; color: var(--ink); }

/* ---------- App layout (dashboard) ---------- */
.app-shell { min-height: 100vh; display: grid; grid-template-columns: 240px 1fr; }
@media (max-width: 880px) { .app-shell { grid-template-columns: 1fr; } }

.sidebar {
  background: var(--ink); color: #cbd5e1;
  padding: 24px 18px; min-height: 100vh;
}
.sidebar .logo { color: white; margin-bottom: 32px; }
.sidebar nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; color: #cbd5e1;
  font-size: .95rem; margin-bottom: 4px;
}
.sidebar nav a:hover { background: #1e293b; color: white; text-decoration: none; }
.sidebar nav a.active { background: var(--brand); color: white; }
.sidebar nav a svg { width: 18px; height: 18px; }
.sidebar .user {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid #1e293b;
  font-size: .88rem; color: #94a3b8;
}
.sidebar .user strong { color: white; display: block; font-size: .95rem; }

.app-main { padding: 32px 40px; background: var(--bg-soft); }
@media (max-width: 880px) { .app-main { padding: 24px 20px; } }
.app-main h1 { font-size: 1.75rem; }
.app-main .topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.app-main .topbar p { margin: 0; }

/* Stats row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 20px; box-shadow: var(--shadow);
}
.stat .label { font-size: .8rem; color: var(--slate-2); text-transform: uppercase; letter-spacing: .08em; }
.stat .val { font-size: 1.85rem; font-weight: 800; color: var(--ink); margin-top: 4px; }
.stat .delta { font-size: .85rem; color: var(--slate); margin-top: 4px; }
.stat .delta.good { color: var(--good); }

/* Tables */
.table-card {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 0; box-shadow: var(--shadow); overflow: hidden;
}
.table-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.table-head h2 { font-size: 1.05rem; margin: 0; }

table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 12px 22px; font-size: .92rem; }
th { color: var(--slate-2); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; background: var(--bg-soft); }
td { border-top: 1px solid var(--line); color: var(--ink); }
td.muted { color: var(--slate); }

.pill {
  display: inline-block; font-size: .75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.pill.found  { background: #fef2f2; color: var(--bad); }
.pill.req    { background: #fef3c7; color: #92400e; }
.pill.gone   { background: #dcfce7; color: var(--good); }
.pill.pending{ background: #e0f2fe; color: #075985; }

/* Progress bar */
.progress { background: var(--line); height: 8px; border-radius: 999px; overflow: hidden; }
.progress > div { background: linear-gradient(90deg, var(--brand), var(--accent)); height: 100%; transition: width .4s ease; }

/* Alerts */
.alert {
  padding: 14px 18px; border-radius: 12px; font-size: .92rem;
  display: flex; align-items: start; gap: 10px;
  border: 1px solid; margin-bottom: 16px;
}
.alert.info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.alert.success { background: #f0fdf4; border-color: #bbf7d0; color: #14532d; }
.alert.warn { background: #fffbeb; border-color: #fde68a; color: #78350f; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: white; border-radius: 18px; padding: 48px;
  text-align: center; margin: 24px 0;
}
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.9); margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-ghost { background: white; color: var(--brand); border-color: white; }
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,.92); }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.muted { color: var(--slate); }
.hide-mobile { display: initial; }
@media (max-width: 880px) { .hide-mobile { display: none; } }
