:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f8fb;
  color: #17202f;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
.app-shell { min-height: 100vh; }
.topbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid #dde3ee;
  background: #ffffff;
}
.brand { font-weight: 750; color: #101827; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
a { color: #2454d6; text-decoration: none; font-weight: 650; }
main { max-width: 1180px; margin: 0 auto; padding: 44px 28px 64px; }
.hero { display: grid; gap: 16px; padding: 40px 0 28px; border-bottom: 1px solid #dde3ee; }
.hero p, .route { margin: 0; color: #667085; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(40px, 7vw, 78px); line-height: 0.95; letter-spacing: 0; color: #101827; }
.hero span { max-width: 760px; color: #475467; font-size: 19px; line-height: 1.6; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.actions a, .capability a { min-height: 40px; display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid #c9d3e7; background: #fff; border-radius: 6px; }
.actions .primary { background: #17202f; color: #fff; border-color: #17202f; }
.summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding: 28px 0; color: #475467; line-height: 1.65; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.wave-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin-top: 18px; }
.capability { min-height: 178px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; padding: 20px; border: 1px solid #dde3ee; border-radius: 8px; background: #fff; }
.wave-state { min-height: 132px; display: grid; gap: 10px; padding: 18px; border: 1px solid #c9d3e7; border-radius: 8px; background: #fdfefe; }
.wave-state span { color: #667085; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.wave-state strong { color: #17202f; }
.wave-state p { margin: 0; color: #667085; line-height: 1.5; }
.capability h2 { margin: 8px 0 0; font-size: 20px; line-height: 1.3; letter-spacing: 0; }
.capability p { margin: 0; color: #667085; line-height: 1.5; overflow-wrap: anywhere; }
.business-contracts { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 14px; margin-top: 18px; }
.business-contract { display: grid; gap: 12px; padding: 20px; border: 1px solid #c9d3e7; border-radius: 8px; background: #fff; }
.business-contract h2 { margin: 0; font-size: 20px; line-height: 1.35; }
.business-contract p { margin: 0; color: #475467; line-height: 1.5; }
button { min-height: 40px; width: fit-content; padding: 0 14px; border: 1px solid #17202f; border-radius: 6px; background: #17202f; color: #fff; font: inherit; font-weight: 650; cursor: pointer; }
@media (max-width: 720px) {
  .topbar { align-items: flex-start; flex-direction: column; padding: 18px 20px; }
  main { padding: 28px 20px 44px; }
  .summary { grid-template-columns: 1fr; }
}
