:root{
  --cyan:#00E5FF;
  --blue:#168BFF;
  --deep:#061A2E;
  --ink:#081927;
  --muted:#607386;
  --soft:#F4FBFF;
  --line:rgba(0,229,255,.20);
  --line2:rgba(22,139,255,.16);
  --shadow:0 22px 60px rgba(8,25,39,.08);
  --shadow2:0 14px 34px rgba(22,139,255,.09);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  background:#fff;
}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(0,229,255,.14), transparent 29rem),
    radial-gradient(circle at 88% 8%, rgba(22,139,255,.09), transparent 27rem),
    linear-gradient(180deg,#fff 0%,#f7fcff 44%,#fff 100%);
  line-height:1.55;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}

.researchShell{
  width:min(1120px, calc(100% - 36px));
  margin:0 auto;
}

.researchTop{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,229,255,.14);
}

.researchNav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.researchBrand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.researchLogo{
  width:50px;
  height:50px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(0,229,255,.20);
  box-shadow:0 10px 28px rgba(0,229,255,.10);
  background:#061A2E;
}

.researchBrandText{
  display:flex;
  flex-direction:column;
  gap:1px;
}

.researchBrandText strong{
  color:var(--ink);
  font-weight:900;
  font-size:18px;
  letter-spacing:-.03em;
  line-height:1.1;
}

.researchBrandText span{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.researchNavLinks{
  display:flex;
  align-items:center;
  gap:9px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.researchNavLinks a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  color:#0A4F73;
  border:1px solid rgba(0,229,255,.22);
  box-shadow:0 8px 20px rgba(8,25,39,.04);
  font-weight:850;
  font-size:13px;
}

.reportHero{
  padding:54px 0 24px;
}

.reportCover{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:42px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.97),rgba(243,251,255,.93));
  border:1px solid rgba(0,229,255,.22);
  box-shadow:var(--shadow);
}

.reportCover::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 0%, rgba(0,229,255,.20), transparent 23rem),
    radial-gradient(circle at 92% 0%, rgba(22,139,255,.12), transparent 24rem);
  pointer-events:none;
}

.reportCover > *{
  position:relative;
  z-index:1;
}

.reportEyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,229,255,.24);
  box-shadow:0 10px 24px rgba(0,229,255,.08);
  color:#076B8D;
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.055em;
}

.reportEyebrow::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  box-shadow:0 0 20px rgba(0,229,255,.8);
}

.reportTitle{
  margin:22px 0 16px;
  max-width:880px;
  color:var(--ink);
  font-size:clamp(46px, 7vw, 82px);
  line-height:.94;
  letter-spacing:-.075em;
  font-weight:950;
}

.reportTitle span{
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.reportLead{
  margin:0;
  max-width:800px;
  color:var(--muted);
  font-size:clamp(18px, 2.3vw, 25px);
  line-height:1.55;
  font-weight:750;
}

.reportActions{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}

.reportBtn{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  padding:0 18px;
  font-weight:950;
  color:#fff;
  background:linear-gradient(135deg,#06233D,var(--blue));
  border:1px solid rgba(0,229,255,.24);
  box-shadow:0 14px 32px rgba(22,139,255,.16);
}

.reportBtn.secondary{
  background:#fff;
  color:#074C70;
  border:1px solid rgba(0,229,255,.24);
  box-shadow:0 10px 24px rgba(8,25,39,.045);
}

.reportGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  padding:22px 0 8px;
}

.systemCard{
  background:rgba(255,255,255,.95);
  border:1px solid rgba(0,229,255,.18);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--shadow2);
}

.systemBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  color:#075A7A;
  background:rgba(238,250,255,.90);
  border:1px solid rgba(0,229,255,.22);
  font-size:12px;
  font-weight:950;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.systemCard h2{
  margin:18px 0 10px;
  color:var(--ink);
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.045em;
}

.systemCard p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  font-weight:700;
  line-height:1.58;
}

.reportSection{
  padding:22px 0;
}

.sectionPanel{
  border-radius:30px;
  padding:32px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(0,229,255,.18);
  box-shadow:var(--shadow2);
}

.sectionPanel.alt{
  background:
    linear-gradient(180deg,rgba(255,255,255,.97),rgba(244,251,255,.92));
}

.sectionKicker{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(238,250,255,.90);
  border:1px solid rgba(0,229,255,.22);
  color:#075A7A;
  font-weight:950;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.sectionTitle{
  margin:14px 0 12px;
  color:var(--ink);
  font-size:clamp(28px,4vw,46px);
  line-height:1.02;
  letter-spacing:-.055em;
  font-weight:950;
}

.sectionText{
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
  font-weight:700;
  margin:0;
}

.strategyGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
}

.strategyItem{
  padding:20px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(0,229,255,.16);
  box-shadow:0 10px 24px rgba(8,25,39,.04);
}

.strategyItem strong{
  color:#075A7A;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.045em;
}

.strategyItem p{
  margin:10px 0 0;
  color:var(--muted);
  font-weight:700;
  line-height:1.6;
}

.linksGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:22px;
}

.linkCard{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:17px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(0,229,255,.18);
  box-shadow:0 10px 24px rgba(8,25,39,.04);
  color:#075A7A;
  font-weight:900;
}

.linkCard span{
  color:var(--blue);
}

.researchFooter{
  padding:26px 0 42px;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.researchFooterInner{
  border-top:1px solid rgba(0,229,255,.16);
  padding-top:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

@media(max-width:900px){
  .researchNav{
    align-items:flex-start;
    flex-direction:column;
    padding:14px 0;
  }

  .researchNavLinks{
    justify-content:flex-start;
  }

  .reportCover{
    padding:30px;
    border-radius:30px;
  }

  .reportActions{
    grid-template-columns:1fr;
  }

  .reportGrid{
    grid-template-columns:1fr 1fr;
  }

  .strategyGrid,
  .linksGrid{
    grid-template-columns:1fr;
  }
}

@media(max-width:620px){
  .researchShell{
    width:min(100% - 28px, 1120px);
  }

  .researchLogo{
    width:46px;
    height:46px;
  }

  .researchNavLinks a{
    min-height:40px;
    padding:0 13px;
    font-size:12.5px;
  }

  .reportHero{
    padding:34px 0 18px;
  }

  .reportCover{
    padding:24px;
    border-radius:28px;
  }

  .reportTitle{
    font-size:clamp(42px, 12vw, 58px);
  }

  .reportLead{
    font-size:18px;
  }

  .reportGrid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .systemCard,
  .sectionPanel{
    border-radius:24px;
    padding:22px;
  }

  .sectionText{
    font-size:16px;
  }
}
