
:root{
  --ink:#17202a;
  --muted:#5f6b76;
  --line:#dfe5ea;
  --soft:#f6f8fa;
  --accent:#173b57;
  --accent-2:#245b7a;
  --white:#ffffff;
  --max:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
.site-header{
  position:sticky; top:0; z-index:20;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(8px);
}
.header-inner{
  min-height:72px; display:flex; align-items:center; justify-content:space-between; gap:28px;
}
.brand{
  font-weight:750; letter-spacing:.01em; color:var(--ink); font-size:1.05rem;
}
.brand span{font-weight:500; color:var(--muted)}
.nav{display:flex; flex-wrap:wrap; gap:20px; align-items:center}
.nav a{color:var(--ink); font-size:.95rem}
.nav .button{color:white}
.hero{padding:88px 0 72px; border-bottom:1px solid var(--line)}
.hero-grid{display:grid; grid-template-columns:1.35fr .65fr; gap:64px; align-items:start}
.eyebrow{
  text-transform:uppercase; letter-spacing:.12em; font-size:.78rem; font-weight:700; color:var(--accent-2);
}
h1,h2,h3{line-height:1.15; margin-top:0}
h1{font-size:clamp(2.6rem, 6vw, 5.2rem); letter-spacing:-.04em; margin-bottom:24px; max-width:900px}
h2{font-size:clamp(1.9rem, 3.4vw, 3rem); letter-spacing:-.025em; margin-bottom:20px}
h3{font-size:1.2rem; margin-bottom:10px}
.lead{font-size:1.25rem; color:var(--muted); max-width:760px; margin:0 0 30px}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:30px}
.button{
  display:inline-flex; align-items:center; justify-content:center; min-height:46px;
  padding:0 18px; border-radius:8px; background:var(--accent); color:#fff; font-weight:650;
  border:1px solid var(--accent);
}
.button:hover{background:var(--accent-2); text-decoration:none}
.button.secondary{background:#fff; color:var(--accent); border-color:var(--line)}
.hero-note{
  background:var(--soft); border:1px solid var(--line); border-radius:12px; padding:24px;
  color:var(--muted); font-size:.96rem;
}
.section{padding:72px 0}
.section.alt{background:var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:28px}
.card{
  border:1px solid var(--line); border-radius:12px; padding:26px; background:#fff;
}
.card p:last-child{margin-bottom:0}
.kicker{font-size:.9rem; color:var(--accent-2); font-weight:700; margin-bottom:8px}
.page-head{padding:72px 0 42px; border-bottom:1px solid var(--line)}
.page-head h1{font-size:clamp(2.3rem, 5vw, 4.2rem); margin-bottom:18px}
.content{max-width:820px}
.content h2{font-size:1.7rem; margin-top:42px}
.content h3{margin-top:28px}
.content p,.content li{color:#38434d}
.callout{
  border-left:4px solid var(--accent); padding:18px 20px; background:var(--soft);
  margin:28px 0; border-radius:0 8px 8px 0;
}
.meta{color:var(--muted); font-size:.92rem}
.footer{border-top:1px solid var(--line); padding:36px 0 48px; color:var(--muted); font-size:.92rem}
.footer-grid{display:grid; grid-template-columns:1fr auto; gap:24px}
.footer-links{display:flex; flex-wrap:wrap; gap:16px}
.notice{
  padding:18px 20px; border:1px solid var(--line); border-radius:10px; background:#fff;
}
.list-clean{padding-left:1.15rem}
.small{font-size:.92rem; color:var(--muted)}
hr{border:0; border-top:1px solid var(--line); margin:36px 0}
@media (max-width:820px){
  .header-inner{align-items:flex-start; padding:16px 0}
  .nav{gap:12px}
  .hero-grid,.grid-3,.grid-2,.footer-grid{grid-template-columns:1fr}
  .hero{padding:64px 0 52px}
  .section{padding:56px 0}
}

.footer-logo-wrap{margin-bottom:20px}
.footer-logo{display:block;width:min(280px,100%);height:auto}
@media (max-width:820px){.footer-logo{width:min(260px,100%)}}
