
:root{
  --ink:#10212b;
  --muted:#5d6b73;
  --line:#dce4e8;
  --paper:#ffffff;
  --wash:#f5f8f9;
  --accent:#0b6673;
  --accent-dark:#084b55;
  --max:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
}
a{color:var(--accent);text-decoration-thickness:1px;text-underline-offset:3px}
a:hover{color:var(--accent-dark)}
.skip-link{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{
  left:16px;top:16px;width:auto;height:auto;padding:10px 14px;background:#fff;
  border:2px solid var(--accent);z-index:1000;
}
.site-header{
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.96);
}
.header-inner,.footer-inner,.wrap{
  width:min(calc(100% - 40px),var(--max));
  margin:0 auto;
}
.header-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--ink);
}
.brand-mark{
  width:38px;height:38px;border:2px solid var(--accent);border-radius:50%;
  display:grid;place-items:center;font-weight:800;color:var(--accent);
  letter-spacing:-1px;
}
.brand-text strong{display:block;font-size:1rem;line-height:1.15}
.brand-text span{display:block;font-size:.76rem;color:var(--muted);letter-spacing:.06em;text-transform:uppercase}
nav{display:flex;gap:20px;align-items:center;flex-wrap:wrap}
nav a{color:var(--ink);text-decoration:none;font-weight:600;font-size:.95rem}
nav a:hover{color:var(--accent)}
.hero{
  background:linear-gradient(180deg,#eef6f7 0%,#fff 100%);
  border-bottom:1px solid var(--line);
}
.hero .wrap{padding:76px 0 68px}
.eyebrow{
  font-size:.78rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;color:var(--accent);
  margin:0 0 12px;
}
h1,h2,h3{line-height:1.15;margin-top:0}
h1{font-size:clamp(2.35rem,6vw,4.6rem);letter-spacing:-.035em;max-width:820px;margin-bottom:20px}
h2{font-size:clamp(1.6rem,3vw,2.35rem);letter-spacing:-.02em}
h3{font-size:1.15rem}
.lede{font-size:clamp(1.08rem,2vw,1.3rem);color:var(--muted);max-width:760px;margin-bottom:28px}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.button{
  display:inline-block;padding:12px 18px;border-radius:8px;background:var(--accent);color:#fff;
  text-decoration:none;font-weight:750;border:1px solid var(--accent);
}
.button:hover{background:var(--accent-dark);color:#fff}
.button.secondary{background:#fff;color:var(--accent);border-color:var(--accent)}
.section{padding:58px 0}
.section.alt{background:var(--wash);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  background:#fff;border:1px solid var(--line);border-radius:12px;padding:24px;
  box-shadow:0 2px 10px rgba(16,33,43,.04);
}
.card p{color:var(--muted)}
.card a.more{font-weight:700}
.page-head{padding:54px 0 34px;border-bottom:1px solid var(--line);background:var(--wash)}
.page-head h1{font-size:clamp(2.1rem,5vw,3.5rem);margin-bottom:12px}
.content{padding:44px 0 64px}
.content .narrow{max-width:820px}
.contact-list{list-style:none;padding:0;margin:24px 0}
.contact-list li{margin:12px 0}
.note{
  padding:16px 18px;border-left:4px solid var(--accent);background:#eef6f7;border-radius:4px;
}
.termly-wrap{
  min-height:480px;
  border:1px solid var(--line);
  border-radius:10px;
  padding:18px;
  background:#fff;
}
.site-footer{
  border-top:1px solid var(--line);background:#0f2029;color:#eaf0f3;margin-top:0;
}
.footer-inner{
  padding:34px 0;display:flex;justify-content:space-between;gap:28px;flex-wrap:wrap;
}
.footer-inner a{color:#fff}
.footer-meta{color:#c2ced4;font-size:.92rem}
.footer-links{display:flex;gap:16px;flex-wrap:wrap}
.small{font-size:.9rem;color:var(--muted)}
@media (max-width:760px){
  .header-inner{align-items:flex-start;flex-direction:column;padding:16px 0}
  nav{gap:14px}
  .hero .wrap{padding:56px 0 50px}
  .grid{grid-template-columns:1fr}
  .section{padding:42px 0}
  .footer-inner{flex-direction:column}
}
