
:root{
  --primary:#00AEEF;
  --secondary:#58595B;
  --text:#1f2933;
  --muted:#5f6b76;
  --soft:#f4f7fa;
  --surface:#ffffff;
  --max:1160px;
  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:24px;
  --shadow-sm:0 8px 22px rgba(21,33,52,.05);
  --shadow-md:0 16px 42px rgba(21,33,52,.10);
  --shadow-lg:0 30px 70px rgba(0,0,0,.28);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  line-height:1.55;
  background:#fff;
}
img{display:block;max-width:100%}
a{color:inherit}
h1,h2,h3,h4{
  margin:0 0 .65rem 0;
  line-height:1.06;
  letter-spacing:-.03em;
  font-family:Poppins,Inter,sans-serif;
}
h1{font-size:clamp(2.45rem,4.8vw,5.1rem)}
h2{font-size:clamp(2rem,3.2vw,3rem)}
h3{font-size:1.08rem}
p{margin:.7rem 0}
ul{margin:.5rem 0;padding-left:1.15rem}
.container{max-width:var(--max);margin:0 auto;padding:0 24px}
.section{padding:88px 0}
.soft{background:var(--soft)}
.center{text-align:center}
.muted{color:var(--muted)}
.max760{max-width:760px;margin:0 auto}
.max820{max-width:820px;margin:0 auto}
.kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
  color:var(--primary);
}
.rounded-image{
  width:100%;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
}
.pill-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:16px;
}
.pill{
  padding:8px 12px;
  border-radius:999px;
  background:#e8f5fd;
  color:#214f76;
  font-size:.84rem;
  font-weight:800;
  border:1px solid rgba(0,174,239,.14);
}
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.in{opacity:1;transform:none}
@media (max-width:1080px){.section{padding:72px 0}}
.container {
  width: min(1200px, 92%);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 820px){

h1{font-size:clamp(2rem,8vw,2.8rem);line-height:1.05;}

h2{font-size:clamp(1.6rem,6vw,2rem);line-height:1.15;}

p{font-size:1rem;line-height:1.6;}

.section{padding:56px 0;}

.container{width:min(1100px,92%);}

}