/* ============================================
   NEXORA NETWORK INDONESIA — Design Tokens
   ============================================ */

:root {
  /* ── Colors ── */
  --color-bg-primary: #0A1628;
  --color-bg-secondary: #0F2140;
  --color-bg-tertiary: #132B50;
  --color-bg-glass: rgba(15, 33, 64, 0.55);
  --color-bg-glass-hover: rgba(15, 33, 64, 0.75);

  --color-accent: #0066FF;
  --color-accent-dark: #0052CC;
  --color-cyan: #00D4FF;
  --color-cyan-muted: rgba(0, 212, 255, 0.15);

  --color-gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
  --color-gradient-hero: linear-gradient(180deg, #0A1628 0%, #0F2140 50%, #0A1628 100%);
  --color-gradient-cta: linear-gradient(135deg, #0052CC 0%, #00D4FF 100%);
  --color-gradient-glow: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);

  --color-text: #FFFFFF;
  --color-text-secondary: #C8D6E5;
  --color-text-muted: #7B8FA8;
  --color-text-accent: #00D4FF;

  --color-border: rgba(0, 212, 255, 0.12);
  --color-border-hover: rgba(0, 212, 255, 0.3);

  /* ── Typography ── */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-display: clamp(2.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-wider: 0.1em;

  /* ── Spacing ── */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* ── Layout ── */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --navbar-height: 80px;

  /* ── Border Radius ── */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(0, 102, 255, 0.2);
  --shadow-glow-cyan: 0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Glass ── */
  --glass-blur: blur(16px);
  --glass-blur-lg: blur(24px);
}
