body[data-page="index.html"] .main{
  min-height:100vh;
}
.home-hero{
  min-height:calc(100vh - 88px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 28px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(33,104,219,.10), transparent 32%),
    radial-gradient(circle at 84% 76%, rgba(15,78,168,.08), transparent 30%),
    linear-gradient(180deg,#f8fbff 0%,#eef3f9 100%);
}
.home-hero::before,
.home-hero::after{
  content:"";
  position:absolute;
  border:1px solid rgba(26,91,187,.11);
  border-radius:50%;
  pointer-events:none;
}
.home-hero::before{width:430px;height:430px;left:-220px;top:-160px;}
.home-hero::after{width:520px;height:520px;right:-260px;bottom:-260px;}
.home-hero-card{
  position:relative;
  z-index:1;
  width:min(820px,100%);
  text-align:center;
  padding:56px 40px;
}
.home-hero-logo{
  width:92px;
  height:92px;
  object-fit:contain;
  margin:0 auto 22px;
  filter:drop-shadow(0 12px 20px rgba(24,78,160,.14));
}
.home-hero-title{
  margin:0;
  font-size:clamp(42px,6vw,76px);
  line-height:1;
  letter-spacing:.08em;
  color:#0c2548;
  font-weight:900;
}
.home-hero-subtitle{
  max-width:670px;
  margin:24px auto 0;
  color:#5c6f88;
  font-size:clamp(20px,2.2vw,29px);
  line-height:1.45;
  font-weight:500;
}
.home-hero-actions{
  margin-top:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.home-hero-btn{
  min-height:54px;
  padding:0 24px;
  border-radius:12px;
  border:1px solid #1f5fc4;
  font:inherit;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
}
.home-hero-btn:hover{transform:translateY(-2px);}
.home-hero-btn.primary{
  color:#fff;
  background:linear-gradient(135deg,#1765d2,#0b4fae);
  box-shadow:0 12px 26px rgba(19,85,188,.25);
}
.home-hero-btn.secondary{
  color:#1552a6;
  background:#fff;
  box-shadow:0 10px 24px rgba(28,54,94,.08);
}
.home-hero-btn:disabled{opacity:.65;cursor:wait;transform:none;}
@media(max-width:760px){
  .home-hero{min-height:calc(100vh - 70px);padding:32px 18px;}
  .home-hero-card{padding:34px 8px;}
  .home-hero-logo{width:74px;height:74px;}
  .home-hero-actions{flex-direction:column;align-items:stretch;}
  .home-hero-btn{width:100%;}
}
