/**
 * Surf School Platform — white-label theme tokens
 */
:root {
  /* Brand — platform default logo (SSP) */
  --color-navy: #152456;
  --color-navy-dark: #0c1638;
  --color-navy-mid: #1a2b6d;
  --color-cyan: #00b4e6;
  --color-cyan-light: #6ecff5;
  --color-green: #1b7339;
  --color-green-light: #34a853;

  /* Neutrals */
  --color-sand: #f7f3eb;
  --color-sand-dark: #ebe4d6;
  --color-white: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;

  /* Semantic */
  --color-ok: #16a34a;
  --color-attention: #ea580c;
  --color-danger: #dc2626;

  /* Typography */
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  /* Layout */
  --header-height: 4.5rem;
  --max-width: 72rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 4px 24px rgba(26, 43, 109, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 43, 109, 0.15);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
