/* =========================================================
   JellyBoost — Design Tokens
   "Electric Current" design system — unique to JellyBoost.
   Electric blue on deep navy-black, pulled from the bottle artwork.
   ========================================================= */
:root{
  /* Brand core — pulled from the product bottle artwork */
  --mh-navy-900:#050c1c;
  --mh-navy-800:#0a1730;
  --mh-navy-700:#0f2142;
  --mh-navy-600:#16305c;
  --mh-gold-700:#1747c4;
  --mh-gold-600:#2158e0;
  --mh-gold-500:#2f6bf5;
  --mh-gold-400:#4c85ff;
  --mh-gold-300:#82aaff;
  --mh-honey-100:#eef3ff;
  --mh-honey-50:#f7faff;
  --mh-cream:#e9f0ff;
  --mh-ink:#0d1526;
  --mh-ink-soft:#48536a;
  --mh-line:#dbe4f7;
  --mh-white:#ffffff;
  --mh-success:#2e7d4f;
  --mh-danger:#b3341c;

  /* Gradients */
  --mh-grad-hero: radial-gradient(120% 140% at 15% 0%, #123166 0%, #0a1730 45%, #050c1c 100%);
  --mh-grad-gold: linear-gradient(135deg, var(--mh-gold-400) 0%, var(--mh-gold-600) 55%, var(--mh-gold-700) 100%);
  --mh-grad-panel: linear-gradient(180deg, var(--mh-honey-50) 0%, var(--mh-honey-100) 100%);

  /* Typography */
  --mh-font-display: 'Fraunces', 'Georgia', serif;
  --mh-font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii / shadow / motion */
  --mh-radius-sm: 10px;
  --mh-radius-md: 18px;
  --mh-radius-lg: 28px;
  --mh-radius-pill: 999px;
  --mh-shadow-sm: 0 2px 10px rgba(5,12,28,.08);
  --mh-shadow-md: 0 14px 34px rgba(5,12,28,.14);
  --mh-shadow-gold: 0 12px 28px rgba(23,71,196,.30);
  --mh-ease: cubic-bezier(.22,1,.36,1);

  /* Layout */
  --mh-container-max: 1220px;
  --mh-header-h: 84px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}
