/* =========================
   FONTS – SELF HOSTED
========================= */

/* inter-100 - latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url('/resources/fonts/inter-v20-latin-ext-100.woff2') format('woff2'); 
}
/* inter-200 - latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url('/resources/fonts/inter-v20-latin-ext-200.woff2') format('woff2'); 
}
/* inter-300 - latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('/resources/fonts/inter-v20-latin-ext-300.woff2') format('woff2'); 
}
/* inter-regular - latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/resources/fonts/inter-v20-latin-ext-regular.woff2') format('woff2'); 
}
/* inter-500 - latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('/resources/fonts/inter-v20-latin-ext-500.woff2') format('woff2'); 
}
/* inter-600 - latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('/resources/fonts/inter-v20-latin-ext-600.woff2') format('woff2'); 
}
/* inter-700 - latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('/resources/fonts/inter-v20-latin-ext-700.woff2') format('woff2'); 
}
/* inter-800 - latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('/resources/fonts/inter-v20-latin-ext-800.woff2') format('woff2'); 
}
/* inter-900 - latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('/resources/fonts/inter-v20-latin-ext-900.woff2') format('woff2'); 
}

/* =========================
   DESIGN TOKENS
========================= */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;

  --primary: #2155c7;
  --primary-dark: #1e40af;
  --accent: #10b981;

  --border: #e5e7eb;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 6px 18px rgba(0,0,0,.06);
  --shadow-md: 0 12px 32px rgba(0,0,0,.08);

  --container: 1200px;
}

/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: radial-gradient(
      circle at 20% 10%,
      rgba(70, 179, 150, 0.06),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(37, 99, 235, 0.05),
      transparent 45%
    ),
    #f8fafc;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}



/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
  letter-spacing: -0.02em;
  color: #21386d;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.25;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  color: var(--muted);
  max-width: 85ch;
  margin-bottom: 16px;
}


ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

li {
  margin-bottom: 10px;
  color: var(--muted);
}

.section > .container > h2 {
  margin-bottom: 40px;
}


.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
}

strong {
  color: var(--text);
  font-weight: 600;
}

