/*
Theme Name: IIG
Text Domain: iig
Version: 1.0.0
*/

/* ===== Header: fixed over hero + bluer glass ===== */
.wp-site-blocks > .wp-block-template-part:first-child{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
}
.wp-site-blocks > .wp-block-template-part:first-child header{
  background: unset !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Smooth scroll */
html{ scroll-behavior: smooth; }
:target{ scroll-margin-top: 100px; }

/* ===== Hero ===== */
.iig-hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: rgb(15 26 42 / 1); /* #0F1A2A */
  padding-top: 90px; /* header offset */
  
  background-image:
        radial-gradient(1200px 600px at 50% 20%, rgba(255,255,255,0.08), transparent),
        linear-gradient(rgba(15,26,42,0.82), rgba(15,26,42,0.92)),
        url('/wp-content/uploads/2026/03/hero-bg.jpg');
        
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.iig-hero .wp-block-cover__background{
  opacity: 1 !important;
  /*background:
    radial-gradient(1200px 650px at 50% 25%, rgba(255,255,255,.10), rgba(0,0,0,0)),
    radial-gradient(900px 500px at 20% 30%, rgba(90,169,255,.14), rgba(0,0,0,0)),
    rgb(15 26 42 / 1) !important;*/
}
.iig-hero-title{
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin: 0;
  text-shadow: 0 20px 60px rgba(0,0,0,.55);
  font-size: clamp(44px, 6vw, 108px);
}
.iig-hero-title .iig-muted{ color: rgba(230,237,247,.55); }

.iig-hero-sub{
  text-align: center;
  max-width: 920px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.7vw, 22px);
  color: rgba(230,237,247,.72);
  text-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.iig-hero-actions{
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}
.iig-btn-primary .wp-block-button__link{
  background: #d6d9de;
  color: #0F1A2A;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 1px solid rgba(0,0,0,0.08);
}
.iig-btn-ghost .wp-block-button__link{
  background: rgba(20,42,68,.35);
  color: rgba(230,237,247,.92);
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 1px solid rgba(230,237,247,.18);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.iig-btn-primary .wp-block-button__link:hover,
.iig-btn-ghost .wp-block-button__link:hover{
  transform: translateY(-1px);
}

/* ===== WHO WE ARE ===== */
.iig-who{
  background: #0B1A2B;
  padding: 90px 24px;
}
.iig-kicker{
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230,237,247,.55);
  margin: 0 0 10px;
  font-size: 12px;
}
.iig-section-title{
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 64px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.iig-underline{
  max-width: 90px;
  height: 3px;
  border: 0;
  opacity: 1;
  background: rgba(230,237,247,.35);
  margin: 0 auto 46px;
}
.iig-lead{
  color: rgba(230,237,247,.72);
  font-size: 18px;
  line-height: 1.75;
}
.iig-grid-2x2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.iig-info-card{
  background: rgba(20,42,68,.55);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 14px 50px rgba(0,0,0,.30);
}
.iig-dot{
  color: rgba(230,237,247,.65);
  font-size: 26px;
  line-height: 1;
  margin: 0 0 10px;
}
.iig-info-card h3{ margin: 0 0 8px; }
.iig-info-card p{ margin: 0; color: rgba(230,237,247,.72); }

/* Right column stats grid cards */
.iig-stats-grid{
  gap: 26px;
}

.iig-stat-card{
  text-align: center;
  padding: 14px 10px 10px;
}

.iig-stat-icon{
  width: 78px;
  height: 78px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  background: rgba(20,42,68,.45);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  font-size: 18px;
  color: rgba(230,237,247,.70);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.iig-stat-num{
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1;
}

.iig-stat-label{
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230,237,247,.50);
  font-weight: 700;
  font-size: 12px;
}

/* keep 2x2 on desktop, stack on mobile */
@media (max-width: 900px){
  .iig-grid-2x2{ grid-template-columns: 1fr; }
}

.iig-who-cols {
    align-items: stretch;
}

.iig-who-cols > .wp-block-column:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 900px){
  .iig-hero{ padding-top: 110px; }
}