
:root{
  /* Brand palette (logo-aligned) */
  --navy:#082244;
  --blue:#0B6EA7;
  --teal:#57C8D4;
  --green:#287E3F;

  --bg:#ffffff;
  --text:#0b1220;
  --muted:rgba(11,18,32,.72);
  --line:rgba(11,18,32,.10);

  --radius:18px;
  --radius2:26px;
  --shadow: 0 18px 55px rgba(0,0,0,.38);
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height:1.55;
  position: relative;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 18px}

/* Topbar */
.topbar{
  font-size:13px;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
}
.topbar__inner{display:flex; gap:10px; align-items:center; justify-content:center; padding:10px 0; flex-wrap:wrap}
.topbar__sep{opacity:.5}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0}

.brand{display:flex; align-items:center}
.brand__logo{
  height:62px;           /* slightly larger */
  width:auto;
  max-width: 240px;      /* prevents overflow on small screens */
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}

/* Nav */
.nav{display:flex; gap:16px; align-items:center}
.nav__link{
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  opacity:.86;
}
.nav__link:hover{background:rgba(255,255,255,.06); opacity:1}
.nav__link.is-active{background:rgba(255,255,255,.08); opacity:1}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(11,18,32,.12);
  background: linear-gradient(135deg, rgba(11,110,167,.28), rgba(87,200,212,.22));
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  font-weight:650;
}
.btn:hover{transform: translateY(-1px); transition:.18s ease}
.btn--ghost{background: rgba(255,255,255,.06); box-shadow:none}
.btn--sm{padding:10px 12px; font-size:14px}

/* Mobile nav */
.navToggle{
  display:none;
  width:44px; height:40px;
  border-radius:14px;
  border:1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.06);
}
.navToggle span{display:block;height:2px;width:18px;margin:4px auto;background:rgba(11,18,32,.78);border-radius:99px}
.mobileNav{display:none; border-top:1px solid var(--line); padding:10px 18px 16px}
.mobileNav__link{display:block; padding:12px 10px; border-radius:14px; opacity:.92}
.mobileNav__link:hover{background:rgba(255,255,255,.06)}
.mobileNav__link.is-active{background:rgba(255,255,255,.08)}
.mobileNav.is-open{display:block}

/* Hero */
.hero{padding:42px 0 14px}
.hero__grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:stretch}
.eyebrow{
  display:inline-flex; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.70);
  font-size:12px; opacity:.92;
}
.hero h1{font-size:44px; line-height:1.05; margin:14px 0 12px}
.lead{font-size:16px; color:var(--muted); max-width:58ch}
.hero__cta{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}

.kpis{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}
.kpi{padding:12px; border-radius:14px; border:1px solid rgba(11,18,32,.10); background: rgba(255,255,255,.04)}
.kpi strong{display:block}
.kpi span{font-size:12px; color:var(--muted)}

.hero__card{
  border:1px solid rgba(11,18,32,.10);
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.hero__media{position:relative; padding:14px; background: linear-gradient(135deg, rgba(11,110,167,.18), rgba(40,126,63,.10))}
.hero__mediaGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.hero__mediaGrid img{
  width:100%; height:140px; object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(11,18,32,.10);
}
.hero__badge{
  margin-top:12px;
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.72);
  font-size:13px;
}
.dot{width:10px;height:10px;border-radius:99px;background: var(--teal); box-shadow:0 0 0 6px rgba(87,200,212,.16)}
.hero__panel{padding:16px 16px 18px}
.hero__panel h3{margin:0 0 10px; font-size:18px}
.checklist{margin:0; padding-left:18px; color:var(--muted)}
.checklist li{margin:6px 0}

/* Sections / cards */
.section{padding:34px 0}
.section__head{max-width:72ch; margin-bottom:16px}
.section__head h2{margin:0 0 8px; font-size:28px}
.section__head p{margin:0; color:var(--muted)}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  border:1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.card h3{margin:0 0 8px}
.muted{color:var(--muted)}
.link{display:inline-block; margin-top:10px; opacity:.9}
.link:hover{opacity:1; text-decoration:underline}

/* Products */
.productCard{padding:0; overflow:hidden}
.productCard h3{padding:14px 16px 0}
.productCard p, .productCard a{padding:0 16px 16px}
.productImg{
  width:100%; height:190px; object-fit:cover; display:block;
  border-bottom:1px solid rgba(255,255,255,.12);
}

/* Detail page */
.breadcrumbs{font-size:13px;color:var(--muted);margin:0 0 10px}
.breadcrumbs a{color:rgba(234,243,255,.82)}
.detailGrid{display:grid;grid-template-columns:1.1fr .9fr;gap:16px;align-items:start}
.detailImg{
  width:100%; height:360px; object-fit:cover;
  border-radius: var(--radius2);
  border:1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow);
}
.specTable{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.70);
}
.specTable td{
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  vertical-align:top;
}
.specTable td:first-child{width:34%; color:rgba(234,243,255,.78)}
.callout{
  border:1px solid rgba(11,18,32,.10);
  border-radius: var(--radius);
  padding:16px;
  background: linear-gradient(135deg, rgba(11,110,167,.14), rgba(87,200,212,.10));
}

/* Forms */
.form{padding:18px}
.form__grid{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px}
label span{display:block; font-size:13px; color:var(--muted); margin-bottom:6px}
input, textarea, select{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.70);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(87,200,212,.6);
  box-shadow: 0 0 0 6px rgba(87,200,212,.14);
}
.span2{grid-column: span 2}
.form__actions{display:flex; gap:12px; align-items:center; justify-content:space-between; margin-top:12px; flex-wrap:wrap}
.form__hint{margin:0; color:var(--muted); font-size:13px}

/* Toolbar */
.toolbar{display:flex; gap:10px; align-items:center; justify-content:space-between; margin-bottom:14px; flex-wrap:wrap}
.search{min-width:260px; flex:1}
.select{min-width:190px}

/* Page hero */
.pageHero{padding:34px 0 10px}
.pageHero__inner{max-width:80ch}
.pageHero h1{margin:12px 0 10px; font-size:36px; line-height:1.1}

/* Footer */
.footer{padding:26px 0; border-top:1px solid var(--line); background: rgba(255,255,255,.80)}
.footer__grid{display:grid; grid-template-columns: 1.4fr .8fr .8fr; gap:14px; align-items:start}
.footer__logo{height:44px; width:auto; display:block; margin-bottom:10px}
.footer h4{margin:0 0 10px}
.footer a{display:block; color:var(--muted); margin:6px 0}
.footer a:hover{color:var(--text)}
.footer__bottom{display:flex; justify-content:space-between; gap:12px; padding-top:14px; margin-top:14px; border-top:1px solid var(--line); flex-wrap:wrap}

/* Scroll reveal */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease}
.reveal.is-visible{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .form__grid{grid-template-columns:1fr}
  .span2{grid-column:auto}
  .nav{display:none}
  .navToggle{display:inline-block}
  .hero h1{font-size:36px}
  .pageHero h1{font-size:30px}
  .footer__grid{grid-template-columns:1fr}
  .detailGrid{grid-template-columns:1fr}
  .detailImg{height:280px}
  .brand__logo{height:56px}
}




/* Faint grayscale world map watermark */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%201600%20800%27%3E%0A%3Cg%20fill%3D%27%23000%27%20fill-opacity%3D%270.10%27%3E%0A%20%20%3Cpath%20d%3D%27M246%20306c98-86%20226-145%20379-146%2097-1%20177%2028%20256%2072%2046%2026%2090%2033%20144%2017%2079-23%20141-62%20231-73%20124-16%20244%2038%20301%20142%2045%2080%2039%20179-12%20251-40%2057-104%2092-186%20103-124%2017-221-34-301-80-46-26-90-33-144-17-79%2023-165%2063-283%2074-170%2016-333-40-413-166-62-98-39-193%2028-267z%27%20opacity%3D%270.20%27/%3E%0A%20%20%3Cpath%20d%3D%27M1110%20538c66-49%20162-67%20239-32%2066%2030%20103%2084%2097%20144-5%2054-42%2096-108%20120-84%2030-184%2012-245-48-48-49-42-132%2017-184z%27%20opacity%3D%270.14%27/%3E%0A%20%20%3Cpath%20d%3D%27M795%20516c28-23%2065-29%2099-18%2030%2010%2048%2036%2042%2065-6%2030-29%2054-65%2067-41%2014-87%207-110-24-24-29-18-62%2034-90z%27%20opacity%3D%270.10%27/%3E%0A%3C/g%3E%0A%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center 30%;
  background-size:min(1400px, 95vw);
  opacity:0.35;
  filter: grayscale(1);
  z-index:-1;
}
