:root {
  color-scheme: dark;
  --color-navy: #071422;
  --color-navy-mid: #0d2438;
  --color-navy-soft: #143049;
  --color-coral: #ff2d62;
  --color-coral-deep: #e01848;
  --color-aqua: #00d4d4;
  --color-aqua-deep: #00b8b8;
  --color-gold: #ffb700;
  --color-gold-soft: #ffd21a;
  --color-ivory: #f7f3eb;
  --color-ivory-dim: rgba(247, 243, 235, 0.72);
  --color-ivory-mute: rgba(247, 243, 235, 0.48);
  --color-ink: #041018;
  --color-white: #ffffff;
  --color-success: #2fd67b;
  --color-warning: #f5b700;

  --border: rgba(247, 243, 235, 0.08);
  --border-strong: rgba(247, 243, 235, 0.2);
  --border-soft: rgba(247, 243, 235, 0.06);
  --nav-bg: rgba(7, 20, 34, 0.72);
  --menu-bg: rgba(7, 20, 34, 0.96);
  --input-bg: rgba(7, 20, 34, 0.55);
  --panel-bg: rgba(13, 36, 56, 0.65);
  --hero-brand-gradient: linear-gradient(
    100deg,
    #f7f3eb 0%,
    #1ec8c8 45%,
    #ff3d68 75%,
    #f5b700 100%
  );

  --gradient-hero: linear-gradient(
    135deg,
    #071422 0%,
    #0d2a45 38%,
    #123a4f 62%,
    #0a1c2e 100%
  );
  --gradient-coral: linear-gradient(145deg, #ff2d62 0%, #ff5a2e 100%);
  --gradient-aqua: linear-gradient(145deg, #00d4d4 0%, #2ef0dc 100%);
  --gradient-gold: linear-gradient(145deg, #ffb700 0%, #ffd21a 100%);
  --gradient-wa-earn: linear-gradient(90deg, #0077ff 0%, #00c2ff 100%);
  --gradient-wa-withdraw: linear-gradient(90deg, #d026f0 0%, #ff4db8 100%);
  --gradient-wa-deposit: linear-gradient(90deg, #00d4c8 0%, #22e070 55%, #a3e635 100%);
  --gradient-wa-cashback: linear-gradient(90deg, #f43f9d 0%, #c026d3 45%, #7c3aed 100%);
  --gradient-ile: linear-gradient(
    148deg,
    #061018 0%,
    #0c2438 24%,
    #1a3f56 44%,
    #c43a5a 70%,
    #e8b020 90%,
    #f5d56a 100%
  );
  --gradient-mesh: radial-gradient(
      ellipse 80% 60% at 10% 20%,
      rgba(255, 45, 98, 0.55),
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 90% 10%,
      rgba(0, 212, 212, 0.42),
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 70% 80%,
      rgba(255, 183, 0, 0.36),
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 20% 90%,
      rgba(124, 58, 237, 0.28),
      transparent 50%
    );

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-currency: "Sora", "Figtree", system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: clamp(2.75rem, 6vw, 4.5rem);
  --text-brand: clamp(3rem, 9vw, 6.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-pill: 999px;

  --shadow-soft: 0 12px 40px rgba(4, 16, 24, 0.35);
  --shadow-glow-coral: 0 0 40px rgba(255, 61, 104, 0.35);
  --shadow-glow-aqua: 0 0 40px rgba(30, 200, 200, 0.3);

  --container: 1120px;
  --nav-h: 4.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;
  --hero-art-opacity: 1;
  --hero-art-filter: none;
  --dash-glow: radial-gradient(
      ellipse 80% 50% at 0% 0%,
      rgba(255, 45, 98, 0.22),
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 100% 0%,
      rgba(0, 212, 212, 0.18),
      transparent 45%
    ),
    radial-gradient(
      ellipse 50% 35% at 80% 20%,
      rgba(124, 58, 237, 0.16),
      transparent 50%
    );
}

html[data-theme="light"] {
  color-scheme: light;
  --color-navy: #eef3f8;
  --color-navy-mid: #ffffff;
  --color-navy-soft: #e2eaf2;
  --color-ivory: #071422;
  --color-ivory-dim: rgba(7, 20, 34, 0.72);
  --color-ivory-mute: rgba(7, 20, 34, 0.5);
  --color-gold-soft: #c99200;

  --border: rgba(7, 20, 34, 0.1);
  --border-strong: rgba(7, 20, 34, 0.18);
  --border-soft: rgba(7, 20, 34, 0.06);
  --nav-bg: rgba(238, 243, 248, 0.88);
  --menu-bg: rgba(255, 255, 255, 0.98);
  --input-bg: rgba(255, 255, 255, 0.9);
  --panel-bg: rgba(255, 255, 255, 0.92);
  --hero-brand-gradient: linear-gradient(
    100deg,
    #071422 0%,
    #0fa8a8 42%,
    #e0244f 72%,
    #c99200 100%
  );

  --gradient-hero: linear-gradient(
    145deg,
    #e8f4f7 0%,
    #f7f3eb 35%,
    #ffe8ee 68%,
    #dff5f5 100%
  );
  --gradient-mesh: radial-gradient(
      ellipse 80% 60% at 10% 20%,
      rgba(255, 61, 104, 0.22),
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 90% 10%,
      rgba(30, 200, 200, 0.22),
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 70% 80%,
      rgba(245, 183, 0, 0.2),
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 20% 90%,
      rgba(30, 200, 200, 0.14),
      transparent 50%
    );
  --gradient-ile: linear-gradient(
    148deg,
    #0a2233 0%,
    #15485c 26%,
    #1e5f74 44%,
    #e24a6a 70%,
    #e8b020 90%,
    #f7dc7a 100%
  );

  --shadow-soft: 0 14px 36px rgba(7, 20, 34, 0.1);
  --shadow-glow-coral: 0 8px 28px rgba(255, 61, 104, 0.22);
  --shadow-glow-aqua: 0 8px 28px rgba(30, 200, 200, 0.2);

  --hero-art-opacity: 0.42;
  --hero-art-filter: saturate(1.15) contrast(0.95);
  --dash-glow: radial-gradient(
      ellipse 80% 50% at 0% 0%,
      rgba(255, 45, 98, 0.18),
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 100% 0%,
      rgba(0, 212, 212, 0.16),
      transparent 45%
    ),
    radial-gradient(
      ellipse 50% 35% at 80% 20%,
      rgba(124, 58, 237, 0.12),
      transparent 50%
    );
}
