/* Gen Alpha — same design system as main index.html */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--font-size-body);
  line-height: 1.55;
  color: #0f172a;
  overflow-x: hidden;
  background: radial-gradient(120% 160% at 10% 0%, #F9FAFB 0%, #EEF2F7 45%, #E5E7EB 100%);
}

/* Design system — match index.html */
:root {
  --primary: #3081D0;
  --primary-light: #4A96E2;
  --primary-dark: #2563A8;
  --gray-50: #F7F8FC;
  --gray-100: #EEF1F8;
  --gray-200: #DDE3EF;
  --gray-300: #C4CEDF;
  --gray-400: #8FA3BE;
  --gray-500: #5E748E;
  --gray-600: #3D556C;
  --gray-700: #253A52;
  --gray-800: #152436;
  --gray-900: #0B1622;
  --white: #ffffff;
  --secondary: #F4F27E;
  --secondary-light: #FEF9A8;

  --accent: #29ADB2;
  --accent-soft: #3BC2C7;

  /* === Type scale === */
  --font-size-hero: clamp(38px, 4.8vw, 60px);
  --font-size-section-title: clamp(36px, 4.5vw, 56px);
  --font-size-h2: 32px;
  --font-size-h3: 22px;
  --font-size-h4: 18px;
  --font-size-lead: 20px;
  --font-size-body: 17px;
  --font-size-body-sm: 15px;
  --font-size-small: 13px;
  --font-size-xs: 11px;

  /* === Font weights === */
  --font-weight-black: 900;
  --font-weight-extrabold: 800;
  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-medium: 500;
  --font-weight-regular: 400;

  /* === Legacy aliases (existing code references) === */
  --font-size-section-kicker: var(--font-size-xs);

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 140px 0 120px;
  border-top: 1px solid var(--gray-200);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-black);
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
}

.section-title {
  font-size: var(--font-size-section-title);
  font-weight: var(--font-weight-extrabold);
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: var(--font-size-lead);
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: var(--font-weight-regular);
  margin: 0;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 80px 0 72px;
  }
}

