:root{
  --bg:#ffffff;
  --surface:#f6f9ff;
  --text:#0b1220;
  --muted:#4b5565;
  --line:#dbe7ff;
  --blue:#1f5eff;
  --blue-2:#0b3dd9;
  --shadow:0 14px 40px rgba(10,35,90,.10);
  --radius:16px;
  --radius-sm:12px;
  --container:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 40%, #ffffff 100%);
  line-height:1.5;
}
img{max-width:100%;display:block}
a{color:inherit}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:var(--bg);
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:12px;
  box-shadow:var(--shadow);
}
.skip-link:focus{left:12px;z-index:1000}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.82);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid rgba(219,231,255,.9);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:0;
}

.brand-logo{
  width:38px;
  height:38px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--line);
}

.brand-text{
  font-weight:600;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav{display:flex;align-items:center;gap:14px}
.nav-link{
  text-decoration:none;
  font-weight:500;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.nav-link:hover{background:rgba(31,94,255,.08);color:var(--text)}

.hero{
  padding:56px 0 28px;
}

.hero-inner{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}

.eyebrow{
  margin:0 0 10px;
  color:var(--blue-2);
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}

.hero-title{
  margin:0 0 12px;
  font-size:40px;
  line-height:1.12;
  letter-spacing:-.02em;
}

.hero-lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width:60ch;
}

.hero-meta{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:18px 0 22px;
}

.meta-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  padding:14px;
}

.meta-label{font-size:12px;color:var(--muted);font-weight:500}
.meta-value{margin-top:4px;font-weight:600}

.cta-row{display:flex;gap:12px;flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:600;
}

.btn-primary{
  background:linear-gradient(180deg,var(--blue) 0%, var(--blue-2) 100%);
  color:#fff;
  box-shadow:0 12px 30px rgba(31,94,255,.22);
}
.btn-primary:hover{filter:brightness(1.02)}

.btn-ghost{
  background:transparent;
  border-color:var(--line);
  color:var(--text);
}
.btn-ghost:hover{background:rgba(31,94,255,.06)}

.hero-panel{
  position:relative;
}

.panel-card{
  height:100%;
  background:radial-gradient(1200px 500px at 10% 10%, rgba(31,94,255,.18) 0%, rgba(31,94,255,0) 60%),
             linear-gradient(180deg,#ffffff 0%, #f7faff 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:260px;
}

.panel-kicker{color:var(--muted);font-weight:500;font-size:13px}
.panel-title{margin-top:8px;font-size:18px;font-weight:700;letter-spacing:-.01em}
.panel-text{margin-top:8px;color:var(--muted)}
.panel-badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}

.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(31,94,255,.20);
  background:rgba(31,94,255,.08);
  color:var(--blue-2);
  font-weight:600;
}

.section{padding:44px 0}
.section-alt{background:linear-gradient(180deg,#f9fbff 0%, #ffffff 100%);border-top:1px solid rgba(219,231,255,.9);border-bottom:1px solid rgba(219,231,255,.9)}

.section-head{display:flex;flex-direction:column;gap:8px;margin-bottom:18px}
.section-title{margin:0;font-size:24px;letter-spacing:-.01em}
.section-lead{margin:0;color:var(--muted);max-width:70ch}

.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:16px;
  box-shadow:0 10px 26px rgba(10,35,90,.06);
}

.card-title{margin:0 0 8px;font-size:16px;letter-spacing:-.01em}
.card-text{margin:0;color:var(--muted)}

.contact{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:14px;
  align-items:start;
}

.contact-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:16px;
  box-shadow:0 10px 26px rgba(10,35,90,.06);
}

.contact-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  border-bottom:1px solid rgba(219,231,255,.75);
}
.contact-row:last-child{border-bottom:none}

.contact-label{color:var(--muted);font-weight:500}
.contact-value{text-decoration:none;font-weight:600}
.contact-value:hover{text-decoration:underline;color:var(--blue-2)}

.contact-aside{display:grid;gap:14px}

.aside-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--surface);
  padding:16px;
}

.aside-title{font-weight:700;margin:0 0 8px}
.aside-text{margin:0;color:var(--muted)}

.site-footer{padding:22px 0}
.footer-inner{display:flex;justify-content:space-between;gap:14px;align-items:flex-start;border-top:1px solid rgba(219,231,255,.9);padding-top:18px}
.footer-brand{font-weight:700}
.footer-muted{color:var(--muted)}

@media (max-width: 920px){
  .hero-inner{grid-template-columns:1fr;}
  .panel-card{min-height:220px}
  .grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .contact{grid-template-columns:1fr}
}

@media (max-width: 560px){
  .hero{padding-top:40px}
  .hero-title{font-size:30px}
  .hero-meta{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .nav{gap:6px}
  .nav-link{padding:10px 8px}
}
