:root{
  /* Brand */
  --brand: #1f3a5f;
  --brand-accent: #2f6fed;

  /* Text */
  --text: #0f172a;
  --muted: #475569;

  /* Backgrounds */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #e9f0fb;

  /* Borders */
  --border: rgba(15, 23, 42, 0.10);

  /* Utility */
  --radius: 14px;
  --radius-sm: 10px;

  --shadow: 0 10px 30px rgba(15,23,42,0.08);
  --shadow-sm: 0 6px 18px rgba(15,23,42,0.08);

  --max: 1200px;
  --pad: 1.25rem;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

a{
  color: var(--link);
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.page{
  min-height: 60vh;
}

h1,h2,h3{
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

h1{
  font-size: clamp(2.1rem, 4vw, 3.1rem);
}

h2{
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

h3{
  font-size: 1.15rem;
}

p{
  margin: 0;
  color: var(--muted);
}

.lead{
  font-size: 1.08rem;
}

.lead-sm{
  font-size: 1.02rem;
}

.eyebrow{
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(16, 19, 24, 0.62);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link{
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.text-link:hover{
  text-decoration: underline;
}
