:root {
  /* Primary */
  --primary: #F97316;
  --primary-dark: #EA580C;
  --primary-light: #FB923C;

  /* Secondary */
  --secondary: #FACC15;
  --secondary-dark: #E3B614;
  --secondary-light: #FEF08A;

  /* Accent */
  --accent-green: #10B981;
  --accent-pink: #EC4899;
  --accent-blue: #3B82F6;

  /* Semantic */
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;

  /* Neutrals */
  --text-dark: #1F2937;
  --text-body: #374151;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --surface: #F9FAFB;
  --background: #FFFFFF;

  /* Shadows - Layered & Soft */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);

  /* Radius - Modern & Friendly */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  /* Standard for inputs/buttons */
  --radius-lg: 0.75rem;
  /* Standard for cards */
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Typography */
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

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

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--text-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  margin-top: 0;
  line-height: 1.1;
  font-weight: var(--weight-bold);
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilities (minimal set, kept out of HTML) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

/* Components */
@import 'components/navbar.css';
@import 'components/hero.css';
@import 'components/cards.css';
@import 'components/inputs.css';
@import 'components/badges.css';

/* Utilities (Last to override) */
@import 'utilities.css';