
:root{
  --navy:#071a33;
  --gold:#b77a18;
  --gold2:#d39a38;
  --ink:#0a1627;
  --muted:#536173;
  --line:#e7dfd2;
  --cream:#faf7f1;
  --white:#ffffff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:linear-gradient(180deg,#ffffff 0%,#fbf8f2 100%);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.site-header{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 34px;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(10,22,39,.08);
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  color:var(--navy);
  letter-spacing:.02em;
}
.brand-mark{
  width:44px;height:44px;
  display:grid;place-items:center;
  color:var(--gold2);
  background:var(--navy);
  border-radius:4px;
  font-size:28px;
  line-height:1;
}
.brand strong{
  display:block;
  text-transform:uppercase;
  font-size:25px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.03em;
}
.brand em{
  display:block;
  color:var(--gold);
  font-style:normal;
  font-size:14px;
  margin-top:3px;
}
.nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:13px;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.04em;
}
.nav a{
  color:var(--ink);
  text-decoration:none;
  padding:28px 0 22px;
  border-bottom:3px solid transparent;
}
.nav a.active{border-bottom-color:var(--gold)}
.nav .search{
  font-size:28px;
  font-weight:400;
  padding-top:18px;
}

.hero{
  min-height:650px;
  position:relative;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 23%, rgba(255,255,255,.10) 43%, rgba(255,255,255,.04) 100%),
    url("assets/bizvault-hero.jpg");
  background-size:cover;
  background-position:center top;
  display:flex;
  align-items:flex-start;
  padding:52px 0 0 42px;
}
.hero-copy{
  width:min(430px,45vw);
  padding-top:0;
}
h1{
  margin:0 0 22px;
  font-size:clamp(64px,7vw,116px);
  line-height:.87;
  letter-spacing:-.055em;
  text-transform:uppercase;
  color:var(--navy);
  font-weight:1000;
}
.kicker{
  color:var(--gold);
  font-weight:900;
  text-transform:uppercase;
  line-height:1.32;
  max-width:390px;
  margin:0 0 22px;
  font-size:17px;
}
.sub{
  font-size:16px;
  line-height:1.55;
  margin:0 0 28px;
}
.button{
  display:inline-flex;
  gap:16px;
  align-items:center;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(180deg,var(--gold2),var(--gold));
  border-radius:4px;
  padding:15px 22px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  box-shadow:0 10px 20px rgba(77,47,10,.16);
}
.logo-strip{
  display:grid;
  grid-template-columns:repeat(11,1fr);
  align-items:center;
  gap:0;
  padding:18px 46px;
  border-top:1px solid rgba(10,22,39,.08);
  border-bottom:1px solid rgba(10,22,39,.08);
  background:#fff;
  text-align:center;
}
.logo-strip span{
  min-height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  font-size:22px;
  line-height:1;
  font-weight:950;
  color:var(--navy);
  text-transform:uppercase;
  border-right:1px solid rgba(10,22,39,.08);
}
.logo-strip span:last-child{border-right:0}
.logo-strip small{
  font-size:10px;
  margin-top:4px;
  letter-spacing:.05em;
}
.logo-strip .gold{color:var(--gold)}

.panel-grid{
  width:min(1380px,84vw);
  margin:24px auto 0;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  border:1px solid var(--line);
  border-radius:7px 7px 0 0;
  overflow:hidden;
  background:rgba(255,255,255,.88);
}
.panel-grid article{
  padding:28px 18px 30px;
  text-align:center;
  border-right:1px solid var(--line);
}
.panel-grid article:last-child{border-right:0}
.icon{
  color:var(--gold);
  font-size:34px;
  margin-bottom:8px;
}
.panel-grid h2{
  margin:0 0 9px;
  color:var(--navy);
  font-size:17px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.panel-grid p{
  margin:0 auto;
  color:#17263b;
  font-size:13px;
  line-height:1.42;
  max-width:165px;
}
.stats{
  width:min(1380px,84vw);
  margin:0 auto 54px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  border:1px solid var(--line);
  border-top:0;
  border-radius:0 0 7px 7px;
  background:#fff;
}
.stats div{
  padding:24px 18px;
  border-right:1px solid var(--line);
}
.stats div:last-child{border-right:0}
.stats strong{
  display:block;
  color:var(--navy);
  font-size:24px;
  line-height:1;
  font-weight:1000;
  text-transform:uppercase;
}
.stats span{
  display:block;
  margin:4px 0 8px;
  color:var(--navy);
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}
.stats p{
  margin:0;
  color:#27364a;
  font-size:12px;
  line-height:1.35;
}

@media (max-width:1100px){
  .site-header{padding:0 18px}
  .nav{gap:16px}
  .hero{
    min-height:560px;
    padding-left:28px;
    background-position:center top;
  }
  .logo-strip{grid-template-columns:repeat(4,1fr);gap:10px}
  .logo-strip span{border-right:0}
  .panel-grid,.stats{grid-template-columns:repeat(2,1fr);width:92vw}
}
@media (max-width:760px){
  .site-header{height:auto;align-items:flex-start;gap:16px;flex-direction:column;padding:14px 18px}
  .nav{flex-wrap:wrap;gap:12px}
  .nav a{padding:4px 0}
  .hero{
    min-height:auto;
    padding:28px 20px 360px;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 45%, rgba(255,255,255,.12) 72%, rgba(255,255,255,0) 100%),
      url("assets/bizvault-hero.jpg");
    background-position:center bottom;
  }
  .hero-copy{width:100%}
  .logo-strip{grid-template-columns:repeat(2,1fr);padding:18px}
  .panel-grid,.stats{grid-template-columns:1fr;width:92vw}
}
