:root{
  --bg:#faf8f5;
  --surface:#ffffff;
  --text:#172033;
  --muted:#667085;
  --primary:#1d4ed8;
  --primary-dark:#173fae;
  --border:#ece7e0;
  --soft:#eef4ff;
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:inherit}
.wrap{width:min(1120px,calc(100% - 40px));margin:0 auto}
.narrow{width:min(760px,100%)}
.topbar{
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:5;
  backdrop-filter:blur(10px);
}
.nav{display:flex;align-items:center;justify-content:space-between;min-height:70px}
.brand{display:flex;gap:11px;align-items:center;text-decoration:none;font-weight:800;font-size:1.14rem}
.brand-mark{
  display:grid;place-items:center;
  width:36px;height:36px;border-radius:11px;
  background:var(--primary);color:white;font-size:.83rem;
  box-shadow:0 7px 20px rgba(29,78,216,.2)
}
.status{
  font-size:.84rem;font-weight:700;
  color:var(--primary);
  background:var(--soft);
  border:1px solid #cfddff;
  border-radius:999px;
  padding:6px 11px;
}
.hero{padding:92px 0 76px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(310px,.75fr);
  gap:54px;
  align-items:center;
}
.eyebrow{
  margin:0 0 12px;
  color:var(--primary);
  text-transform:uppercase;
  font-size:.78rem;
  letter-spacing:.095em;
  font-weight:800;
}
h1,h2,h3{line-height:1.15;margin-top:0}
h1{font-size:clamp(2.5rem,6vw,4.65rem);letter-spacing:-.045em;margin-bottom:24px;max-width:900px}
h2{font-size:clamp(1.65rem,3vw,2.35rem);letter-spacing:-.025em}
.lead{font-size:1.18rem;color:#475467;max-width:780px;margin:0 0 28px}
.notice{
  padding:16px 18px;
  border-radius:14px;
  border:1px solid #cfddff;
  background:var(--soft);
  color:#344054;
  max-width:780px;
}
.card,.mini-card{
  background:var(--surface);
  border:1px solid var(--border);
  box-shadow:0 18px 45px rgba(22,32,51,.07);
}
.card{border-radius:var(--radius);padding:30px}
.features{padding:0;margin:20px 0 0;list-style:none}
.features li{
  padding:12px 0 12px 30px;
  border-bottom:1px solid var(--border);
  position:relative;
}
.features li:last-child{border-bottom:0}
.features li::before{
  content:"✓";
  position:absolute;left:0;
  color:var(--primary);font-weight:900;
}
.section{padding:72px 0}
.section.alt{background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.section-head{margin-bottom:28px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.mini-card{padding:26px;border-radius:16px}
.mini-card h3{margin-bottom:10px}
.mini-card p{margin:0;color:#667085}
footer{padding:34px 0 46px}
.footer-row{display:flex;justify-content:space-between;align-items:flex-start;gap:30px}
footer nav{display:flex;gap:20px;flex-wrap:wrap}
footer a{color:#475467;text-decoration:none}
footer a:hover{text-decoration:underline}
.muted{color:var(--muted);font-size:.9rem;margin-top:4px}
.legal{
  max-width:860px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:32px;
  margin:55px auto;
}
.legal h1{font-size:2.25rem}
.legal h2{font-size:1.2rem;margin-top:30px}
.placeholder{
  background:#fff4e5;
  border:1px solid #f5c26b;
  border-radius:12px;
  padding:14px 16px;
  color:#7a4b00;
}
@media (max-width:800px){
  .hero{padding:64px 0 54px}
  .hero-grid,.cards{grid-template-columns:1fr}
  .hero-grid{gap:34px}
  .footer-row{flex-direction:column}
  .wrap{width:min(100% - 28px,1120px)}
}
