/*
 * Design tokens for veatal.com.
 *
 * Taken over 1:1 from veatal.com_coming-soon (src/css/style.css), minus the
 * 31 --mosparo-* properties, which belong to the captcha widget on the
 * coming-soon form pages and have no counterpart here.
 *
 * The names are deliberately NOT prefixed with the project slug, which is the
 * one documented deviation from the WordPress identifier rules in this file:
 * both sites have to render the same brand, and renaming the tokens here would
 * break copy-paste parity with the coming-soon project. Keep the two blocks in
 * sync; this file is the copy, not the source.
 */

:root {
  /* ---- Brand palette ---- */
  color-scheme: light; /* source had it quoted, which is invalid CSS */
  --color-base-100: oklch(97% 0.008 91.48deg);
  --color-base-200: oklch(95% 0.012 84.58deg);
  --color-base-300: oklch(91.47% 0.015 80.71deg);
  --color-base-content: oklch(31.98% 0.007 182.57deg);
  --color-primary: oklch(61.73% 0.056 147.34deg);
  --color-primary-content: oklch(100% 0 0deg);
  --color-secondary: oklch(78.4% 0.122 124.27deg);
  --color-secondary-content: oklch(31.98% 0.007 182.57deg);
  --color-accent: oklch(87.4% 0.155 93.99deg);
  --color-accent-content: oklch(31.98% 0.007 182.57deg);
  --color-neutral: oklch(85.05% 0.034 73.15deg);
  --color-neutral-content: oklch(31.98% 0.007 182.57deg);
  --color-info: oklch(62.57% 0.112 250.06deg);
  --color-info-content: oklch(100% 0 0deg);
  --color-success: oklch(63.7% 0.125 141.94deg);
  --color-success-content: oklch(100% 0 0deg);
  --color-warning: oklch(75.6% 0.154 57.99deg);
  --color-warning-content: oklch(31.98% 0.007 182.57deg);
  --color-error: oklch(71.51% 0.179 27.97deg);
  --color-error-content: oklch(100% 0 0deg);

  /* Darker primary for button hover / active states. */
  --color-primary-strong: color-mix(in srgb, var(--color-primary) 84%, #2F3433);

  /* ---- Radii ---- */
  --radius-selector: 0rem;
  --radius-field: 0rem;
  --radius-box: 0.25rem;
  --size-selector: 0.25rem;
  --size-field: 0.25rem;

  /*
     ---- Typography ----
     heading  → Poppins (Medium)     · section & display headings
     body     → Lato (Regular)       · running text
     accent   → Dancing Script       · wordmark & script accents
  */
  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-accent: "Dancing Script", "Segoe Script", cursive;

  /* ---- Decorative gradients ---- */

  /*
     Animated headline shimmer — brand greens, gold and a warm accent.
     Reorder or add colours here to make the headline more or less vivid.
  */
  --gradient-brand: linear-gradient(
    100deg,
    var(--color-primary),
    var(--color-secondary),
    var(--color-accent),
    var(--color-warning),
    var(--color-primary)
  );

  /* Soft ambient colour wash behind the whole page. */
  --bg-wash:
    radial-gradient(55rem 40rem at 12% 8%,
      color-mix(in srgb, var(--color-secondary) 24%, transparent), transparent 62%),
    radial-gradient(52rem 42rem at 88% 92%,
      color-mix(in srgb, var(--color-accent) 20%, transparent), transparent 60%),
    radial-gradient(42rem 40rem at 90% 6%,
      color-mix(in srgb, var(--color-info) 12%, transparent), transparent 60%);

  /* ---- Misc ---- */
  --border: 1px;
  --depth: 1;
  --noise: 0;
}
