/* Florra marketing tokens — mirrored from src/styles/variables.css
   Marketing CTAs use production green (same as admin ops / End task / Live Floor).
   Magenta brand stays in the product login path; not used as marketing chrome. */
:root {
  color-scheme: light;

  --accent-production: #2d6a4f;
  --accent-production-hover: #256045;
  --accent-production-muted: color-mix(in srgb, #2d6a4f 12%, transparent);
  --accent-production-solid: #2d6a4f;
  --accent-production-solid-hover: #256045;

  --accent-cost: #8a5a00;
  --accent-cost-muted: color-mix(in srgb, #8a5a00 12%, transparent);

  --accent-attention: #c2410c;
  --accent-attention-hover: #9a3412;
  --accent-attention-muted: color-mix(in srgb, #c2410c 12%, transparent);
  --accent-attention-solid: #c2410c;

  /* Info / completed (neutral operational teal — same as app) */
  --accent-info: #0e7490;
  --accent-info-muted: color-mix(in srgb, #0e7490 12%, transparent);

  /* Marketing CTA aliases map to production (ops primary in product UI) */
  --accent-brand: var(--accent-production);
  --accent-brand-hover: var(--accent-production-hover);
  --accent-brand-muted: var(--accent-production-muted);
  --accent-brand-solid: var(--accent-production-solid);
  --accent-brand-solid-hover: var(--accent-production-solid-hover);

  --bg-page: #f5f6f8;
  --bg-atmosphere-base: #f3f5f7;
  --bg-atmosphere-grain-opacity: 0.035;
  --bg-atmosphere:
    radial-gradient(ellipse 95% 70% at 12% 0%, #e8eef1 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 100% 100%, #e4e8ec 0%, transparent 48%),
    linear-gradient(165deg, #f4f6f8 0%, #eef1f4 46%, #eceff2 100%);

  --surface-1: #ffffff;
  --surface-2: #f1f3f5;
  --surface-3: #e8eaed;

  --surface-card-gradient: linear-gradient(
    145deg,
    color-mix(in srgb, var(--surface-2) 55%, var(--surface-1)) 0%,
    var(--surface-1) 48%,
    color-mix(in srgb, #000 12%, var(--surface-1)) 100%
  );
  --surface-production-tint: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-production) 6%, var(--surface-1)) 0%,
    var(--surface-1) 45%,
    color-mix(in srgb, #000 10%, var(--surface-1)) 100%
  );
  --surface-cost-tint: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-cost) 5%, var(--surface-1)) 0%,
    var(--surface-1) 45%,
    color-mix(in srgb, #000 10%, var(--surface-1)) 100%
  );
  --surface-attention-tint: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-attention) 5%, var(--surface-1)) 0%,
    var(--surface-1) 45%,
    color-mix(in srgb, #000 10%, var(--surface-1)) 100%
  );

  --border-color: #e6e8ec;
  --border-color-strong: #c4c9d0;
  --border-subtle: color-mix(in srgb, var(--border-color) 55%, transparent);

  --text-primary: #18191b;
  --text-secondary: #3f4654;
  --text-muted: #4a5563;
  --text-on-brand: #ffffff;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.09), 0 4px 8px rgba(0, 0, 0, 0.05);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius: 7px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-size-2xs: 12px;
  --font-size-xs: 13px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 17px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-2xl: 28px;
  --font-size-3xl: 34px;

  --transition-fast: 110ms ease;
  --focus-ring: 0 0 0 3px rgba(45, 106, 79, 0.25);

  --nav-height: 56px;
  --content-max: 1120px;
  --measure: 40rem;
}
