body {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-family: var(--font-heading);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

p { color: var(--copy); }

.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.section { position: relative; padding: clamp(88px, 9vw, 145px) 0; }
.section-tight { padding: clamp(66px, 7vw, 105px) 0; }
.section-surface { background: var(--surface); }
.section-blue {
  color: var(--white);
  background: radial-gradient(circle at 88% 12%, rgba(239,133,81,.2), transparent 27%), linear-gradient(145deg, var(--blue-deep), var(--blue));
}
.section-blue h1, .section-blue h2, .section-blue h3, .section-blue h4 { color: var(--white); }
.section-blue p { color: rgba(255,255,255,.68); }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.section-kicker::before { width: 22px; height: 2px; content: ""; background: var(--orange); }
.section-kicker.light { color: rgba(255,255,255,.78); }
.display-title {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.55rem, 5vw, 5.45rem);
  font-weight: 700;
}
.display-title em { color: var(--orange); font-family: var(--font-accent); font-weight: 600; }
.section-intro { max-width: 680px; margin-bottom: 0; font-size: clamp(1rem, 1.25vw, 1.12rem); }
.section-head { max-width: 840px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-intro { margin-inline: auto; }

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--blue); box-shadow: 0 14px 36px rgba(35,62,147,.22); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 18px 42px rgba(35,62,147,.28); }
.btn-orange { color: var(--white); background: var(--orange); box-shadow: 0 14px 34px rgba(239,133,81,.28); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { color: var(--blue); border-color: var(--blue-line); background: rgba(255,255,255,.72); }
.btn-outline:hover { border-color: var(--blue); background: var(--white); }
.btn-white { color: var(--blue); background: var(--white); }
.btn-white:hover { color: var(--orange-dark); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.btn-ghost:hover { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.12); }
.btn-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 800; }
.btn-link i { transition: transform .18s ease; }
.btn-link:hover i { transform: translateX(5px); }

.icon-box { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); border-radius: 14px; background: var(--blue-soft); }
.icon-box.orange { color: var(--orange-dark); background: var(--orange-soft); }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 10px 16px; color: var(--white); background: var(--blue-deep); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-orange { color: var(--orange) !important; }
.text-blue { color: var(--blue) !important; }
.no-margin { margin: 0 !important; }

[data-reveal] { opacity: 0; transform: translateY(24px); }
.js-ready [data-reveal] { opacity: 0; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
