@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --color-primary: #7bc0b3;
  --color-primary-dark: #5aa69a;
  --color-secondary: #a88fd9;
  --color-background: #f6f8fb;
  --color-card: #ffffff;
  --color-border: #e6e6e6;
  --color-text: #3c3c3c;
  --color-muted: #7a7a7a;
  --color-success: #8fd1c4;
  --color-warning: #f4b6c2;
  --color-info: #a6b7f2;
  --font-sans: 'Manrope', 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-sm: 0 6px 16px rgba(60, 60, 60, 0.08);
  --shadow-md: 0 14px 30px rgba(60, 60, 60, 0.12);
  --shadow-lg: 0 24px 50px rgba(60, 60, 60, 0.15);
  --container-width: 1200px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: linear-gradient(135deg, #eef7f5 0%, #f8f1fb 100%);
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(168, 143, 217, 0.15) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
}
