/* AutoProspectPro color system.
   Dark is the operator console default; [data-theme="light"] is the marketing-site / light override. */
:root{
  /* ---- base palette ---- */
  --color-bg:#09090B;
  --color-surface:#141417;
  --color-surface-2:#1C1C20;
  --color-surface-3:#232328;

  --color-accent:#D4FF3F;
  --color-accent-hover:#E2FF6B;
  --color-accent-secondary:#84CC16;
  --color-accent-deep:#4D7C0F;

  --color-text:#FAFAFA;
  --color-text-muted:#A1A1AA;
  --color-text-dim:#71717A;

  --color-success:#10B981;
  --color-analyze:#8B5CF6;
  --color-error:#EF4444;
  --color-warning:#F59E0B;
  --color-info:#3B82F6;

  /* ---- pipeline status ---- */
  --badge-discovered:#6B7280;
  --badge-scraped:#3B82F6;
  --badge-analyzed:#F59E0B;
  --badge-generated:#10B981;
  --badge-failed:#EF4444;

  /* ---- semantic aliases ---- */
  --bg-app:var(--color-bg);
  --surface-card:var(--color-surface);
  --surface-nested:var(--color-surface-2);
  --surface-raised:var(--color-surface-3);
  --surface-input:var(--color-surface-2);

  --text-heading:var(--color-text);
  --text-body:var(--color-text-muted);
  --text-eyebrow:var(--color-accent-secondary);
  --text-label:var(--color-text-muted);
  --text-placeholder:var(--color-text-dim);
  --text-disabled:var(--color-text-dim);
  --text-on-accent:#0A0A0A;
  --text-link:var(--color-accent);
  --text-link-hover:var(--color-accent-hover);

  --border-subtle:rgba(255,255,255,.07);
  --border-default:rgba(255,255,255,.10);
  --border-strong:rgba(255,255,255,.16);
  --border-accent:var(--color-accent);
  --focus-ring:var(--color-accent);

  --action-primary:var(--color-accent);
  --action-primary-hover:var(--color-accent-hover);
  --action-generate:var(--color-success);
  --action-analyze:var(--color-analyze);
  --action-destructive:var(--color-error);

  /* accent washes — used for the lime glow behind hero panels and CTA rows */
  --accent-wash-08:rgba(212,255,63,.08);
  --accent-wash-14:rgba(212,255,63,.14);
  --accent-wash-24:rgba(212,255,63,.24);
  --glow-accent:0 0 0 1px rgba(212,255,63,.35),0 8px 32px -8px rgba(212,255,63,.30);
  --gradient-hero:radial-gradient(120% 140% at 88% 8%,rgba(212,255,63,.16) 0%,rgba(212,255,63,.04) 38%,transparent 70%); /* @kind other */
  --gradient-accent-bar:linear-gradient(90deg,var(--color-accent-secondary) 0%,var(--color-accent) 100%); /* @kind other */
}

[data-theme="light"]{
  --color-bg:#FAFAFA;
  --color-surface:#FFFFFF;
  --color-surface-2:#F4F4F5;
  --color-surface-3:#E9E9EB;

  --color-accent:#4D7C0F;
  --color-accent-hover:#3F6212;
  --color-accent-secondary:#65A30D;

  --color-text:#18181B;
  --color-text-muted:#52525B;
  --color-text-dim:#8A8A93;

  --text-eyebrow:var(--color-accent);
  --text-on-accent:#FFFFFF;

  --border-subtle:rgba(9,9,11,.07);
  --border-default:rgba(9,9,11,.11);
  --border-strong:rgba(9,9,11,.18);

  --accent-wash-08:rgba(132,204,22,.10);
  --accent-wash-14:rgba(132,204,22,.16);
  --accent-wash-24:rgba(132,204,22,.26);
  --glow-accent:0 0 0 1px rgba(77,124,15,.22),0 8px 28px -10px rgba(77,124,15,.22);
  --gradient-hero:radial-gradient(120% 140% at 88% 8%,rgba(132,204,22,.18) 0%,rgba(212,255,63,.10) 40%,transparent 72%); /* @kind other */
}
