/* ── Miami Dusk Design Tokens ── */
:root {
  /* Colors */
  --color-background: #140d30;
  --color-surface: #1e1640;
  --color-surface-container-low: #1a1238;
  --color-on-background: #e6deff;
  --color-on-surface: #cac4e0;
  --color-on-surface-variant: #9b8ec4;
  --color-primary: #ffb1c0;
  --color-primary-container: #ff4c83;
  --color-secondary: #78d4da;
  --color-secondary-container: #00eefc;
  --color-tertiary: #ffb77d;
  --color-outline: #6b5f8a;
  --color-outline-variant: #3d3260;
  --color-error: #ffb4ab;
  --color-chrome-dim: #6b5f8a;

  /* Gradients */
  --gradient-sunset: linear-gradient(135deg, #ff4c83 0%, #da7700 100%);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: 1px solid rgba(255, 255, 255, 0.10);
  --glass-blur: blur(20px);

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

  /* Spacing (8px base) */
  --space-xs: 4px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;

  /* Border Radius */
  --radius-default: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Navbar height (referenced elsewhere) */
  --nav-height: 64px;
}

/* ── Global Base Styles ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-background);
  color: var(--color-on-background);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography Scale ── */
.t-h1 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.t-h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.t-h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.t-body-lg {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.t-body-md {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.t-label-sm {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
