/*
 * landing-recolor.css — minimal colour-only pass for the marketing landing.
 *
 * Per product direction the landing page keeps its existing structure, copy and
 * layout — we only nudge the palette so it reads as the same brand as the new
 * green dashboard. This re-maps the purple secondary accent (and the brand
 * gradient that used it) to the green family. Nothing structural: radii,
 * shadows and spacing are left exactly as styles.css defines them.
 *
 * Loaded after styles.css on index.html only.
 */
:root {
  --accent2: #2e7d0f;
  --accent2-bg: rgba(46, 125, 15, 0.10);
  --gradient: linear-gradient(135deg, #2e7d0f, #3fa015);
}

[data-theme="dark"] {
  --accent2: #9bf94c;
  --accent2-bg: rgba(155, 249, 76, 0.10);
  --gradient: linear-gradient(135deg, #89f336, #9bf94c);
}
