:root {
  /* Colors */
  --color-primary-dark: #0B2E4F;
  --color-accent-orange: #F97A12;
  --color-accent-sky: #2F8FD1;
  --color-accent-cyan: #0E7C86;
  --color-accent-yellow: #DEED17;
  --color-bg-tint: #DCEAF6;
  --color-bg-gray: #F4F7FA;
  --color-white: #FFFFFF;
  --color-text: #0B2E4F;
  --color-text-secondary: #1B2733;
  --color-text-muted: #5B6B78;
  --color-border: #CBD5DE;

  /* Typography */
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-size-h1: 3.125rem;   /* 50px */
  --font-weight-h1: 300;
  --font-size-h2: 2.1875rem; /* 35px */
  --font-weight-h2: 700;
  --font-size-h3: 1.5rem;     /* 24px */
  --font-weight-h3: 700;
  --font-size-body: 1rem;     /* 16px */
  --font-weight-body: 400;
  --line-height-body: 1.5;
  --font-size-button: 1.25rem; /* 20px */
  --font-weight-button: 700;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --container-max-width: 1160px;

  /* Radius */
  --radius-button: 50px;
  --radius-card: 16px;
  --radius-sm: 8px;

  /* Shadow */
  --shadow-card: 0 4px 16px rgba(11, 46, 79, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height-body);
  color: var(--color-text-secondary);
  background: var(--color-white);
}

h1, h2, h3, h4 { color: var(--color-primary-dark); margin: 0 0 var(--space-sm); }
h1 { font-size: var(--font-size-h1); font-weight: var(--font-weight-h1); }
h2 { font-size: var(--font-size-h2); font-weight: var(--font-weight-h2); }
h3 { font-size: var(--font-size-h3); font-weight: var(--font-weight-h3); }
p { margin: 0 0 var(--space-sm); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--mint { background: var(--color-bg-mint); }
.section--gray { background: var(--color-bg-gray); }
