/* ============================= */
/* Theme variables               */
/* ============================= */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --muted: #6b6f82;
  --accent-1: #E5D9F2; /* soft lavender */
  --accent-2: #B3C7F9; /* light blue */
  --text: #0f1724;
  --card-shadow: 0 10px 30px rgba(12,20,40,0.06);
  --glass: rgba(255,255,255,0.7);
  --radius: 12px;
}
/* ============================= */
/* Global reset & base           */
/* ============================= */

/* Simple reset */
* {
  box-sizing: border-box;
}

/* Page sizing */
html,
body {
  height: 100%;
}

/* Base body styles */
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Poppins', 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  scroll-behavior: smooth;
  padding-bottom: 80px;
}

/* Generic container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
}
