/* =======================================================================
   Prismatic Data Solutions: palette tokens, generated by site-src/build_v3.py
   from variants/v3-family/<palette>/theme.css. Do not edit by hand.

   Ship build: the chosen palette (spectrum-tide-b) only, as :root.
   ======================================================================= */

/* --- Spectrum tide B (default) --- */
:root {
  --ground: #142036;
  --ground-rgb: 20, 32, 54;
  --ground-deep: #0B172C;
  --panel: #233049;
  --panel-2: #2D3B54;
  --panel-menu: #1B273E;

  --text: #F4F2F7;
  --text-rgb: 244, 242, 247;
  --muted: #C4C0CC;

  --int: #F2B84B;
  --int-rgb: 242, 184, 75;
  --int-hi: #FFD27A;
  --on-int: #1F1508;

  --line: rgba(var(--text-rgb), .13);
  --line-strong: rgba(var(--text-rgb), .24);

  --well-top: #0D192F;
  --cta-ground: #0D192F;
  --header-bg: rgba(var(--ground-rgb), .92);
  --edge-core: rgba(255, 255, 255, .92);
  --glow: rgba(var(--int-rgb), .22);
  --scrim-rgb: var(--ground-rgb);
}
body::after {
  content: "";
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 58vh;
  z-index: 350;
  pointer-events: none;
  background: linear-gradient(to top,
  rgba(255, 122, 48, .36) 0%,
  rgba(255, 96, 104, .24) 28%,
  rgba(214, 84, 160, .10) 58%,
  rgba(214, 84, 160, 0) 100%);
  mix-blend-mode: screen;
  opacity: var(--sunset, 0);
  transition: opacity 120ms linear;
}

