@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600&display=swap');

:root{
  --white: #FFFFFF;
  --bg-tint: #F5F8FD;
  --navy: #0A1F44;
  --blue: #2158DE;
  --blue-deep: #123A8C;
  --sky: #E9F1FE;
  --slate: #5B6472;
  --line: #DFE7F3;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background: var(--white);
  color: var(--navy);
  font-family:'Inter', sans-serif;
  line-height:1.6;
  font-size:16px;
}
h1,h2,h3,h4,.wordmark{ font-family:'Fraunces', serif; font-weight:600; color:var(--navy); letter-spacing:-0.01em; }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:1120px; margin:0 auto; padding:0 32px; }
img{ max-width:100%; display:block; }

/* Header */
header{
  padding:22px 0;
  border-bottom:1px solid var(--line);
  position:sticky; top:0; background:rgba(255,255,255,0.94);
  backdrop-filter:blur(6px); z-index:20;
}
header .wrap{ display:flex; justify-content:space-between; align-items:center; }
.wordmark{ font-size:22px; }
.wordmark span{ color:var(--blue); }
nav{ display:flex; gap:34px; font-size:15px; color:var(--slate); }
nav a{ transition:color .15s ease; position:relative; padding-bottom:2px; }
nav a:hover, nav a.active{ color:var(--navy); }
nav a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--blue);
}
.btn{
  display:inline-block; background:var(--blue); color:#fff; font-weight:500;
  padding:12px 24px; border-radius:3px; font-size:14.5px; transition:background .15s ease;
}
.btn:hover{ background:var(--blue-deep); }
.btn-outline{
  display:inline-block; border:1px solid var(--line); color:var(--navy);
  padding:11px 23px; border-radius:3px; font-size:14.5px; transition:border-color .15s ease, background .15s ease;
}
.btn-outline:hover{ border-color:var(--blue); background:var(--sky); }

/* Page header (non-home pages) */
.page-header{ padding:70px 0 50px; border-bottom:1px solid var(--line); background:var(--bg-tint); }
.page-header .kicker{ font-size:14.5px; color:var(--blue); font-weight:500; margin-bottom:12px; }
.page-header h1{ font-size:clamp(32px,4.4vw,50px); max-width:18ch; }
.page-header p{ margin-top:18px; font-size:17px; color:var(--slate); max-width:52ch; }

/* Generic section spacing */
section{ padding:80px 0; }
.section-alt{ background:var(--bg-tint); }
.section-head{ margin-bottom:44px; max-width:56ch; }
.section-head .kicker{ font-size:14px; color:var(--blue); font-weight:500; margin-bottom:10px; }
.section-head h2{ font-size:clamp(26px,3vw,36px); }
.section-head p{ margin-top:14px; color:var(--slate); font-size:16px; }

/* Divider list rows (used instead of card grids) */
.row-list{ border-top:1px solid var(--line); }
.row-item{
  border-bottom:1px solid var(--line);
  padding:34px 0;
  display:grid; grid-template-columns:280px 1fr; gap:34px;
}
.row-item h3{ font-size:20px; }
.row-item .tag{ font-size:13.5px; color:var(--blue); font-weight:500; margin-top:6px; display:block; }
.row-item p{ color:var(--slate); font-size:15.5px; max-width:60ch; }
.row-item ul{ list-style:none; margin-top:12px; display:flex; flex-direction:column; gap:8px; }
.row-item li{ font-size:15px; color:var(--slate); padding-left:16px; position:relative; }
.row-item li::before{ content:"–"; position:absolute; left:0; color:var(--blue); }

/* Footer */
footer{ border-top:1px solid var(--line); padding:40px 0; }
footer .wrap{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:24px; }
footer .f-brand .wordmark{ font-size:19px; margin-bottom:8px; }
footer .f-brand p{ color:var(--slate); font-size:14px; max-width:32ch; }
footer .f-links{ display:flex; gap:48px; }
footer .f-col h4{ font-family:'Inter'; font-weight:600; font-size:13.5px; color:var(--navy); margin-bottom:12px; }
footer .f-col a{ display:block; color:var(--slate); font-size:14px; margin-bottom:8px; transition:color .15s ease; }
footer .f-col a:hover{ color:var(--blue); }
footer .f-bottom{ margin-top:34px; padding-top:20px; border-top:1px solid var(--line); font-size:13px; color:var(--slate); }

@media (max-width:760px){
  nav{ display:none; }
  .row-item{ grid-template-columns:1fr; gap:12px; }
  footer .wrap{ flex-direction:column; }
  footer .f-links{ gap:32px; }
}

:focus-visible{ outline:2px solid var(--blue); outline-offset:2px; }
