/* Source: 01-tokens-base.css */
/* ── TOKENS ── */
:root {
  --navy: #2c4364;
  --navy-dark: #1e3050;
  --yellow: #ffcd00;
  --yellow-hov: #ffe600;
  --gray-text: #64748b;
  --success: #10b981;
  --error: #ef4444;
  --error-bg: #fee2e2;
  --muted: #94a3b8;
  --page-bg: #f8fafc;
  --border: #e8eff7;
  --border-input: #e2e8f0;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.13);
  --r-sm: 0.4rem;
  --r-md: 0.5rem;
  --r-lg: 0.75rem;
  --r-xl: 1.25rem;
  --r-2xl: 1.75rem;
}


html,
body {
  min-height: 100vh;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--page-bg);
  color: var(--navy);
  display: flex;
  flex-direction: column;
}

/* Source: 02-layout.css */
/* ── CANVAS ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── HEADER ── */


/* ── MAIN ── */
main {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem 5rem;
}

.page-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
