/* ==========================================================================
   Design Tokens — Sai Kiran Pandhina / Portfolio
   ========================================================================== */
:root {
  /* Core palette */
  --bg: #0b0f19;
  --bg-soft: #0e1320;
  --bg-elevated: #121828;
  --surface: #141b2c;
  --surface-2: #182036;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Accent — electric cyan / blue */
  --accent: #45e6ff;
  --accent-2: #4d7fff;
  --accent-soft: rgba(69, 230, 255, 0.12);
  --accent-glow: rgba(69, 230, 255, 0.35);
  --gradient-accent: linear-gradient(120deg, #45e6ff 0%, #4d7fff 100%);

  /* Text */
  --text-primary: #eef3fb;
  --text-secondary: #aab6cc;
  --text-muted: #6f7c94;
  --text-inverse: #06090f;

  /* Typography */
  --font-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-hero: clamp(2.6rem, 6vw, 5.2rem);
  --fs-h1: clamp(2.1rem, 4vw, 3.4rem);
  --fs-h2: clamp(1.6rem, 2.6vw, 2.3rem);
  --fs-h3: clamp(1.15rem, 1.6vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 600ms;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 0 1px rgba(69, 230, 255, 0.15), 0 8px 40px rgba(69, 230, 255, 0.12);

  --header-height: 76px;
}
