/* css/variables.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
  --brand-yellow: #fcdf59;
  --bg-color: #ffffff;
  --text-main: #111111;
  --text-muted: #666666;
  --surface-gray: #f5f5f7;
  --font-sans: 'Inter', sans-serif;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}