/* ============================================================
   EXEVIO · brand gradients
   Stops sampled from the master artwork (exevio-gradient.png and
   the gradient wordmark) so CSS recreations match print/raster use.
   ============================================================ */

/* THE gradient: Mars ember over deep space. Radial glow in the master;
   linear approximation first, faithful radial recreation below. */
.exevio-gradient {
  background: linear-gradient(90deg, #683c3d 0%, #a15a48 17%, #b4674f 33%, #a26656 50%, #745959 67%, #3c3f53 83%, #132548 100%);
}
.exevio-gradient-radial {
  background:
    radial-gradient(ellipse 75% 110% at 32% 55%, #a15a48 0%, transparent 62%),
    linear-gradient(90deg, #683c3d 0%, #745959 70%, #132548 100%);
}

/* wordmark gradient: rust to deep navy, left to right across the logo.
   The 0% and 100% stops are the official ends; the mids keep the ramp
   faithful to the artwork. */
.exevio-gradient-wordmark {
  background: linear-gradient(90deg, #824a42 0%, #aa6652 25%, #815e59 50%, #3b3f55 75%, #04143a 100%);
}
