/* PP Design v2 — Design Tokens Only (no component rules) */
:root {
  --color-deep-1: #0F0A1E;
  --color-deep-2: #16102B;
  --color-deep-3: #1E1538;
  --color-warm-bg: #FAF7F3;
  --color-warm-bg-2: #F3EDE6;
  --color-warm-border: #E8E0D8;
  --color-text-light: #FFFFFF;
  --color-text-light-80: rgba(255,255,255,0.80);
  --color-text-light-60: rgba(255,255,255,0.60);
  --color-text-light-40: rgba(255,255,255,0.40);
  --color-text-dark: #1A1033;
  --color-text-dark-70: rgba(26,16,51,0.70);
  --color-text-dark-50: rgba(26,16,51,0.70);
  --color-accent: #7C3AED;
  --color-accent-light: #A78BFA;
  --color-accent-subtle: rgba(124,58,237,0.08);
  --color-teal: #14B8A6;
  --color-teal-light: #5EEAD4;
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --gradient-brand: linear-gradient(135deg, #1A1038 0%, #2D1B69 45%, #1B6B7A 100%);
  --gradient-accent: linear-gradient(135deg, #A78BFA 0%, #22D3EE 100%);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --text-6xl: clamp(2.75rem, 6vw, 3.75rem);
  --text-5xl: clamp(2.25rem, 5vw, 3.0rem);
  --text-4xl: clamp(1.8rem, 4vw, 2.25rem);
  --text-3xl: clamp(1.5rem, 3.2vw, 1.75rem);
  --text-2xl: 1.375rem;
  --text-xl: 1.125rem;
  --text-base: 1.0rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
  --text-2xs: 0.625rem;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --leading-6xl: 1.08;
  --leading-5xl: 1.15;
  --leading-4xl: 1.2;
  --leading-3xl: 1.25;
  --leading-2xl: 1.35;
  --leading-xl: 1.5;
  --leading-base: 1.6;
  --leading-sm: 1.5;
  --leading-xs: 1.4;
  --space-3xs: 0.125rem;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.0rem;
  --space-lg: 1.5rem;
  --space-xl: 2.0rem;
  --space-2xl: 3.0rem;
  --space-3xl: 4.0rem;
  --space-4xl: 6.0rem;
  --section-padding-y: 100px;
  --section-max-width: 1200px;
  --card-gap: 20px;
  --content-gap: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 30px rgba(124,58,237,0.3), 0 0 60px rgba(124,58,237,0.15);
  --glass-blur: 24px;
  --glass-bg: rgba(15,10,30,0.80);
  --glass-border: rgba(255,255,255,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --duration-slower: 600ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 300;
  --z-modal: 400;
  --z-toast: 500;
}
@media (max-width: 767px) {
  :root { --section-padding-y: 64px; --card-gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  :root { --duration-fast: 0.01ms; --duration-base: 0.01ms; --duration-slow: 0.01ms; --duration-slower: 0.01ms; }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-base);
  color: var(--color-text-dark);
  background-color: var(--color-warm-bg);
  -webkit-font-smoothing: antialiased;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.sr-only--focusable:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto; padding: 12px 24px; margin: 0; overflow: visible; clip: auto; background: var(--color-accent); color: #fff; font-size: 0.9rem; font-weight: 600; border-radius: 8px; z-index: 10000; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.container { max-width: var(--section-max-width); margin: 0 auto; padding: 0 24px; }
