:root{
  --ink:#0b0b0b;
  --navy:#010d24;
  --blue:#003bae;
  --blue2:#00308d;
  --yellow:#ffd21d;
  --muted:#3f3f3f;
  --line:rgba(0,0,0,.10);
  --page:1440px;
  --container:1240px;
  --gutter:100px;
  --pad-x:30px;
  --pad-x-sm:16px;
  --shell:calc(var(--container) + (var(--pad-x) * 2));
  --radius:5px;
  --btn-pad-x:20px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:Roboto,system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;left:-999px;top:10px;
  background:#fff;color:#000;padding:10px 12px;border-radius:8px;
  border:1px solid var(--line);z-index:1000;
}
.skip-link:focus{left:10px}

.page{
  max-width:var(--page);
  width:100%;
  margin:0 auto;
  background:#fff;
}
.container{
  max-width:var(--shell);
  width:100%;
  margin:0 auto;
  padding-inline:var(--pad-x);
}

.container-fluid{
  width:100%;
  max-width:var(--shell);
  margin:0 auto;
  padding-inline:var(--pad-x);
}

.site-header{position:relative;z-index:50}

.topbar,
.masthead,
.primary-nav,
.newsletterBar,
.site-footer{
  position:relative;
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

@media (max-width: 1440px){
  .topbar,
  .masthead,
  .primary-nav,
  .newsletterBar,
  .site-footer{
    width:100%;
    max-width:none;
    margin-left:0;
    margin-right:0;
  }
}

.topbar{
  background:var(--navy);
  color:#fff;
  font-family:Quantico,system-ui,sans-serif;
  font-size:13px;
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;height:35px}
.topbar__nav{display:flex;gap:30px;align-items:center;min-width:0;overflow:auto}
.topbar__link{opacity:.95}
.topbar__link.is-active{color:var(--yellow)}
.topbar__info{
  display:none;
  position:relative;
  flex-shrink:0;
  min-width:0;
}
.topbar__info-toggle{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:0;
  margin:0;
  border:0;
  background:transparent;
  color:inherit;
  font:inherit;
  font-family:Quantico,system-ui,sans-serif;
  font-size:13px;
  cursor:pointer;
  opacity:.95;
}
.topbar__info-toggle:hover{opacity:1}
.topbar__info-toggle:focus-visible{outline:2px solid var(--yellow);outline-offset:2px}
.topbar__info-chevron{
  flex-shrink:0;
  transition:transform .2s ease;
}
.topbar__info.is-open .topbar__info-chevron{transform:rotate(180deg)}
.topbar__info-menu{
  position:absolute;
  left:0;
  top:100%;
  margin-top:4px;
  min-width:176px;
  padding:6px 0;
  background:var(--navy);
  border-radius:var(--radius);
  box-shadow:0 10px 28px rgba(0,0,0,.28);
  z-index:60;
  display:none;
  flex-direction:column;
}
.topbar__info.is-open .topbar__info-menu{
  display:flex;
}
.topbar__info-menu[hidden]{
  display:none !important;
}
.topbar__info-link{
  display:block;
  padding:8px 14px;
  color:#fff;
  opacity:.95;
  text-decoration:none;
  white-space:nowrap;
}
.topbar__info-link:hover,
.topbar__info-link:focus-visible{
  background:rgba(255,255,255,.08);
  opacity:1;
}
.topbar__info-link.is-active{color:var(--yellow)}
.topbar__call-mobile{
  display:none;
  align-items:center;
  gap:8px;
  flex-shrink:0;
  min-width:0;
  max-width:100%;
  color:#fff;
  font-family:Quantico,system-ui,sans-serif;
  font-size:12px;
  line-height:1.2;
  text-decoration:none;
}
.topbar__call-mobile__icon{width:16px;height:16px;flex-shrink:0}
.topbar__call-mobile__text{display:inline;white-space:nowrap}
.topbar__call-mobile__accent{color:var(--yellow)}
.topbar__call-mobile:focus-visible{outline:2px solid var(--yellow);outline-offset:2px}
.topbar__tools{display:flex;gap:30px;align-items:center}
.tool-link{display:flex;align-items:center;gap:10px;color:#fff}
.tool-link__icon{width:18px;height:18px}
.tool-link__accent{color:var(--yellow)}

.masthead{
  background:var(--blue2);
  color:#fff;
  padding:14px 0;
}
.masthead__inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
.logo{
  display:block;
  flex-shrink:1;
  min-width:0;
  line-height:0;
}
.logo img{
  display:block;
  height:27px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  object-position:left center;
}
.logo--footer img{height:26px}

.search{
  flex:1;
  max-width:667px;
  display:flex;
  align-items:center;
  background:#fff;
  height:35px;
  border-radius:5px;
  padding:0 10px 0 14px;
  min-width:260px;
}
.search__input{
  border:0;
  outline:none;
  flex:1;
  font-size:13px;
  font-family:Quantico,system-ui,sans-serif;
  color:var(--muted);
}
.search__btn{
  border:0;
  background:transparent;
  padding:6px;
  cursor:pointer;
  border-radius:4px;
  transition:background-color .15s ease;
}
.search__btn:hover{background:rgba(0,59,174,.09)}
.search__btn:focus-visible{outline:2px solid var(--blue);outline-offset:2px}
.search__btn img{width:18px;height:18px}

.masthead__actions{display:flex;align-items:center;gap:22px}
.action{position:relative;display:flex;align-items:center;gap:6px;color:#fff}
.action__icon{
  width:24px;
  height:24px;
  display:block;
  flex-shrink:0;
  object-fit:contain;
  object-position:center;
}
.action__label{font-family:Quantico,system-ui,sans-serif;font-size:13px}
.badge{
  position:absolute;
  top:-6px;right:-10px;
  background:var(--yellow);
  color:var(--blue2);
  font-family:Quantico,system-ui,sans-serif;
  font-size:10px;
  font-weight:700;
  min-width:16px;height:16px;
  border-radius:999px;
  display:grid;place-items:center;
  padding:0 5px;
}

.primary-nav{background:var(--blue)}
.primary-nav__inner{
  display:flex;
  align-items:stretch;
  gap:27px;
  height:46px;
}
.categories-btn{
  background:var(--yellow);
  color:var(--navy);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  height:100%;
  padding:0 var(--btn-pad-x);
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:14px;
  text-transform:uppercase;
  width:auto;
  max-width:none;
  transition:background-color .2s ease, box-shadow .2s ease, transform .12s ease;
}
.categories-btn:hover{background:#e8b815;box-shadow:0 3px 12px rgba(0,0,0,.12)}
.categories-btn:active{transform:translateY(1px);box-shadow:0 2px 6px rgba(0,0,0,.1)}
.categories-btn:focus-visible{outline:2px solid #fff;outline-offset:2px}
.categories-btn img{width:19px;height:19px}
.primary-nav__links{display:flex;gap:40px;align-items:center;overflow:auto}
.primary-nav__links a{
  color:#fff;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  height:100%;
  display:flex;
  align-items:center;
  padding:0;
  white-space:nowrap;
}

.masthead__start{display:flex;align-items:center;gap:14px;min-width:0}
.masthead__menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  padding:0;
  margin:0;
  border:0;
  border-radius:var(--radius);
  background:transparent;
  color:var(--yellow);
  cursor:pointer;
  flex-shrink:0;
  line-height:0;
  appearance:none;
  -webkit-appearance:none;
}
.masthead__menu-toggle svg{width:20px;height:auto;display:block;vertical-align:top}
.masthead__menu-toggle:focus-visible{outline:2px solid #fff;outline-offset:2px}

.mobile-cats{
  position:fixed;
  inset:0;
  z-index:200;
  pointer-events:none;
  visibility:hidden;
  transition:visibility 0s .28s;
}
.mobile-cats.is-open{
  pointer-events:auto;
  visibility:visible;
  transition:visibility 0s 0s;
}
.mobile-cats__backdrop{
  position:absolute;
  inset:0;
  background:rgba(1,13,36,.55);
  opacity:0;
  transition:opacity .25s ease;
}
.mobile-cats.is-open .mobile-cats__backdrop{opacity:1}
.mobile-cats__panel{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:min(88vw, 340px);
  max-width:100%;
  background:var(--blue);
  color:#fff;
  display:flex;
  flex-direction:column;
  box-shadow:8px 0 28px rgba(0,0,0,.22);
  transform:translateX(-100%);
  transition:transform .28s ease;
  padding-left:env(safe-area-inset-left, 0px);
}
.mobile-cats.is-open .mobile-cats__panel{transform:translateX(0)}
.mobile-cats__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 16px 14px;
  border-bottom:0;
  flex-shrink:0;
}
.mobile-cats__logo{
  display:block;
  line-height:0;
  color:inherit;
}
.mobile-cats__logo img{
  display:block;
  height:18px;
  width:auto;
}
.mobile-cats__title{
  margin:0;
  font-family:Quantico,system-ui,sans-serif;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.02em;
  color:var(--yellow);
}
.mobile-cats__close{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  margin:0;
  border:0;
  background:transparent;
  color:var(--yellow);
  cursor:pointer;
  line-height:0;
  flex-shrink:0;
}
.mobile-cats__close svg{display:block}
.mobile-cats__close:focus-visible{outline:2px solid #fff;outline-offset:2px}
.mobile-cats__nav{
  display:flex;
  flex-direction:column;
  overflow-y:auto;
  padding:8px 0 24px;
  -webkit-overflow-scrolling:touch;
}
.mobile-cats__link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  color:#fff;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  border-bottom:0;
}
.mobile-cats__link::after{
  content:"";
  width:8px;
  height:8px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(-45deg);
  flex-shrink:0;
}
.mobile-cats__link:active{background:rgba(0,0,0,.08)}
body.mobile-cats-open{overflow:hidden}

.hero{padding-top:20px}
.hero__grid{
  display:grid;
  grid-template-columns:minmax(0,612px) minmax(0,1fr);
  gap:15px;
  align-items:stretch;
}
.hero__stack{display:flex;flex-direction:column;gap:15px}

.hero-card{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  isolation:isolate;
}
.hero-card--main{
  width:100%;
  align-self:start;
  aspect-ratio:17/15;
  min-height:0;
} /* matches assets/hero-main.webp (1836×1620) */
.hero-card__bg{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:0;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .4s ease;
}
.hero-card:hover .hero-card__bg,
.hero-card:focus-within .hero-card__bg{
  transform:scale(1.06);
}
.hero-card__overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(11,11,11,.79) 37%, rgba(11,11,11,0) 66%);
  z-index:1;
  pointer-events:none;
}
.hero-card__content{
  position:absolute;inset:0;
  z-index:2;
  display:flex;flex-direction:column;
  padding:26px;
}
.hero-card__content--center{
  align-items:center;
  justify-content:flex-end;
  text-align:center;
  gap:22px;
}
.hero-card--main .hero-card__content--center{
  inset:auto;
  left:50%;
  right:auto;
  top:calc(50% - 95.5px);
  width:100%;
  padding:0;
  transform:translate(-50%,-50%);
}
.hero-card h1{
  margin:0;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:37px;
  line-height:45px;
  width:min(424px,90%);
  color:#fff;
  text-shadow:0 12px 26px rgba(0,0,0,.1);
}

.promo-card{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  height:258px;
  background:#f2f2f2;
  isolation:isolate;
}
.promo-card__content{
  position:absolute;
  left:32px;
  top:32px;
  right:auto;
  bottom:auto;
  transform:none;
  width:220px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:15px;
  z-index:5;
}
.promo-card__head{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}
.promo-kicker{
  margin:0;
  font-family:Roboto,system-ui,sans-serif;
  font-weight:600;
  font-size:13px;
  text-transform:uppercase;
  color:#c70000;
}
.promo-card h2,
.value-prop__title{
  margin:0;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
}
.promo-card h2{
  font-size:33px;
  line-height:38px;
}
.value-prop__title{
  text-transform:uppercase;
  font-size:21px;
  line-height:25px;
}
.promo-card--creative{
  background-color:#121212;
}
.promo-card--creative::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  border-radius:inherit;
  background-image:var(--promo-bg);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .4s ease;
}
.promo-card--creative:hover::after,
.promo-card--creative:focus-within::after{
  transform:scale(1.08);
}
.promo-card--creative::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  border-radius:inherit;
  background:linear-gradient(
    90deg,
    rgba(10,10,12,.96) 0%,
    rgba(10,10,12,.88) 18%,
    rgba(10,10,12,.72) 40%,
    rgba(10,10,12,.52) 62%,
    rgba(10,10,12,.32) 78%,
    rgba(10,10,12,.16) 90%,
    rgba(10,10,12,.08) 96%,
    rgba(10,10,12,0) 100%
  );
}
.promo-card--creative .promo-card__content{
  top:50%;
  bottom:auto;
  left:36px;
  transform:translateY(-50%);
  text-shadow:0 1px 18px rgba(0,0,0,.45);
}
.promo-card--creative .promo-kicker{
  background:#c70000;
  color:#fff;
  padding:6px 10px;
  display:inline-block;
  border-radius:3px;
  text-transform:none;
  font-size:12px;
  letter-spacing:0.02em;
}
.promo-card--creative h2{
  color:#fff;
  font-size:32px;
  line-height:37px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:14px;
  line-height:1.2;
  text-transform:uppercase;
  border:0;
  cursor:pointer;
  padding:13px var(--btn-pad-x);
  width:auto;
  max-width:none;
  text-decoration:none;
  transition:background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .12s ease;
}
.btn--pill{border-radius:999px}
.btn--yellow{background:var(--yellow);color:var(--navy)}
.btn--yellow:hover{background:#e8b815;box-shadow:0 4px 16px rgba(0,0,0,.14)}
.btn--yellow:active{transform:translateY(1px);box-shadow:0 2px 8px rgba(0,0,0,.12)}
.btn--dark{background:var(--ink);color:#fff}
.btn--dark:hover{background:#222;box-shadow:0 4px 16px rgba(0,0,0,.22)}
.btn--dark:active{transform:translateY(1px)}
.btn--light{background:#fff;color:var(--ink)}
.btn--light:hover{background:#f2f2f2;box-shadow:0 4px 16px rgba(0,0,0,.12)}
.btn--light:active{transform:translateY(1px)}
.btn:focus-visible{outline:2px solid var(--yellow);outline-offset:3px}
.btn--light:focus-visible{outline-color:#fff}

.value-props{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding:30px 0;
}
.value-prop{display:flex;align-items:center;gap:10px}
.value-prop__icon{width:65px;height:65px}
.value-prop__desc{
  font-family:Quantico,system-ui,sans-serif;
  font-size:13px;
  line-height:18px;
}

.section{padding-block:24px 0}
#blogs{
  padding-bottom:50px;
}
.section__title{
  margin:0 0 24px;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:23px;
  text-transform:uppercase;
}

.cat-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  border:1px solid var(--line);
  border-radius:5px;
  overflow:hidden;
}
.cat{
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:15px;
  display:flex;flex-direction:column;align-items:center;gap:18px;
  min-height:185px;
}
.cat:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:-2px;
}
.cat:nth-child(6n){border-right:0}
.cat:nth-last-child(-n+6){border-bottom:0}
.cat__img{
  height:117px;
  width:100%;
  max-width:116px;
  object-fit:contain;
  mix-blend-mode:multiply;
  transition:transform .28s ease;
  transform-origin:center center;
}
.cat:hover .cat__img,
.cat:focus-visible .cat__img{
  transform:scale(0.9);
}
.cat__label{
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:16px;
  text-transform:uppercase;
  text-align:center;
}

.promo-banner{
  display:block;
  margin:0;
  border-radius:5px;
  overflow:hidden;
  line-height:0;
}
.promo-banner img{
  width:100%;
  height:auto;
  display:block;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  background:#fff;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
  border-radius:5px;
  overflow:hidden;
}
.product{
  padding:15px 15px 23px;
  background:#fff;
  border:0;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.product__imgWrap{
  height:175px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:12px;
}
.product__img{
  height:137px;
  object-fit:contain;
  border-radius:10px;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .35s ease;
}
.product:hover .product__img,
.product:focus-within .product__img{
  transform:scale(1.08);
}
.product__price{
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:17px;
  margin-top:4px;
}
.product__rating{display:flex;align-items:center;flex-wrap:wrap;gap:6px;margin-top:6px}
.product__stars{display:inline-flex;align-items:center;gap:2px}
.star{width:14px;height:14px}
.product__ratingText{font-family:Quantico,system-ui,sans-serif;font-size:15px}
.muted{opacity:.7}
.product__title{
  margin:6px 0 0;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:14px;
  line-height:16px;
}

.trust{
  position:relative;
  border-radius:5px;
  overflow:hidden;
  height:419px;
  isolation:isolate;
}
.trust__bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  box-sizing:border-box;
  z-index:0;
  line-height:0;
}
.trust__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .4s ease;
}
.trust:hover .trust__bg img,
.trust:focus-within .trust__bg img{
  transform:scale(1.06);
}
.trust__content{
  position:absolute;
  left:94px;
  top:65px;
  transform:none;
  z-index:1;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:22px;
  width:min(466px, calc(100% - 94px));
  max-width:466px;
}
.trust__content h2{
  margin:0;
  width:100%;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:37px;
  line-height:45px;
  text-shadow:0 12px 26px rgba(0,0,0,.1);
}

.news{
  display:flex;
  gap:24px;
  align-items:flex-start;
}
.news-feature{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:13px;
  min-width:0;
}
.news-feature__imgWrap{
  height:420px;
  width:100%;
  border-radius:5px;
  overflow:hidden;
}
.news-feature__imgWrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .4s ease;
}
.news-feature:hover .news-feature__imgWrap img,
.news-feature:focus-within .news-feature__imgWrap img{
  transform:scale(1.06);
}
.news-side{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:24px;
  justify-content:flex-start;
  align-self:flex-start;
  min-width:0;
}
.news-row{
  display:flex;
  gap:13px;
  align-items:stretch;
}
.news-row__img{
  width:168px;
  border-radius:5px;
  overflow:hidden;
  flex:0 0 auto;
  min-height:0;
  align-self:stretch;
}
.news-row__img img{
  width:100%;
  height:100%;
  min-height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transform-origin:center center;
  transition:transform .4s ease;
}
.news-row:hover .news-row__img img,
.news-row:focus-within .news-row__img img{
  transform:scale(1.06);
}
.news-sep{height:0}
.news-sep{
  border-top:1px solid rgba(0,0,0,.10);
}

.news-meta{min-width:0}
.news-date{
  font-family:Roboto,system-ui,sans-serif;
  font-weight:500;
  font-size:12px;
  line-height:16px;
  color:#bababa;
  text-transform:uppercase;
}
.news-title{
  margin:6px 0 0;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:16px;
  line-height:normal;
  color:var(--ink);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.news-title--feature{font-size:18px}
.news-excerpt{
  margin:6px 0 0;
  font-family:Roboto,system-ui,sans-serif;
  font-weight:500;
  font-size:13px;
  line-height:19px;
  color:#868686;
  width:393px;
  max-width:100%;
}
@media (min-width: 769px){
  .news-row .news-excerpt{
    width:auto;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    line-clamp:2;
    overflow:hidden;
  }
}
.news-read-more{
  display:inline-block;
  margin-top:12px;
  padding:0;
  border:0;
  background:none;
  font-family:Roboto,system-ui,sans-serif;
  font-weight:600;
  font-size:13px;
  line-height:1.2;
  color:var(--blue);
  cursor:pointer;
  text-decoration:none;
  width:fit-content;
  max-width:100%;
}
.news-read-more:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:2px;
}

.newsletterBar{
  background:var(--navy);
  padding:40px 0;
  margin-top:34px;
  box-shadow:0 34px 54px rgba(52,109,255,.10);
}
.newsletterBar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.newsletterBar__title{
  margin:0;
  color:#fff;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:25px;
  white-space:nowrap;
}
.newsletterBar__form{display:flex;align-items:center;justify-content:flex-end}
.newsletterBar__pill{
  max-width:395px;
  width:100%;
  height:52px;
  border-radius:62.5px;
  border:1px solid rgba(255,255,255,.20);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 4px 14px 24px;
  gap:10px;
}
.newsletterBar__pill input{
  width:100%;
  border:0;
  outline:none;
  background:transparent;
  color:rgba(255,255,255,.92);
  font-family:Quantico,system-ui,sans-serif;
  font-weight:400;
  font-size:13px;
  min-width:0;
}
.newsletterBar__pill input::placeholder{color:rgba(255,255,255,.77)}
.newsletterBar__pill button{
  border:0;
  cursor:pointer;
  background:var(--yellow);
  color:var(--navy);
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:13px;
  line-height:1.2;
  padding:13px var(--btn-pad-x);
  border-radius:62.5px;
  white-space:nowrap;
  width:auto;
  max-width:none;
  flex:0 0 auto;
  transition:background-color .2s ease, box-shadow .2s ease, transform .12s ease;
}
.newsletterBar__pill button:hover{background:#e8b815;box-shadow:0 4px 14px rgba(0,0,0,.2)}
.newsletterBar__pill button:active{transform:translateY(1px)}
.newsletterBar__pill button:focus-visible{outline:2px solid #fff;outline-offset:2px}

.site-footer,
.ite-footer{
  background:var(--blue);
  color:#fff;
}
.site-footer__wrap,
.ite-footer__wrap{
  padding:40px 0 48px;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.site-footer__row,
.ite-footer__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:80px;
  flex-wrap:wrap;
}
.site-footer__brand,
.ite-footer__brand{
  flex:0 0 auto;
  display:flex;
  gap:0;
  align-items:flex-start;
  flex-wrap:wrap;
}
.site-footer__right,
.ite-footer__right{
  flex:1 1 auto;
  min-width:0;
  max-width:100%;
  width:auto;
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  gap:24px;
  flex-wrap:wrap;
}
.site-footer__links,
.ite-footer__links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:40px;
  min-width:0;
}
.site-footer__col,
.ite-footer__col{
  flex:0 1 143px;
  width:143px;
  min-width:0;
  max-width:143px;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:400;
  font-size:13px;
  line-height:20px;
}
.site-footer__col a,
.ite-footer__col a{
  display:block;
  color:#fff;
  padding:0;
  margin:0 0 10px;
  opacity:.8;
}
.site-footer__col a:hover,
.site-footer__col a:focus-visible,
.ite-footer__col a:hover,
.ite-footer__col a:focus-visible{
  opacity:1;
}
.site-footer__toTop,
.ite-footer__toTop{
  display:none;
  position:relative;
  width:40px;
  height:40px;
  flex:0 0 auto;
}
.site-footer__toTopBg,
.ite-footer__toTopBg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.site-footer__toTopIcon,
.ite-footer__toTopIcon{
  position:absolute;
  left:11px;
  top:11px;
  width:18px;
  height:18px;
  transform:rotate(90deg);
}
.site-footer__bottom,
.ite-footer__bottom{
  font-family:Quantico,system-ui,sans-serif;
  font-weight:400;
  font-size:13px;
  line-height:20px;
  color:#fff;
}

@media (max-width: 1100px){
  .topbar__tools{display:none}
  .primary-nav__links{gap:18px}
  .value-props{grid-template-columns:repeat(2,1fr)}
  .cat-grid{grid-template-columns:repeat(3,1fr)}
  .cat:nth-child(6n){border-right:1px solid var(--line)}
  .cat:nth-child(3n){border-right:0}
  .cat:nth-last-child(-n+6){border-bottom:1px solid var(--line)}
  .cat:nth-last-child(-n+3){border-bottom:0}
  .product-grid{grid-template-columns:repeat(3,1fr)}
}

@media (max-width: 980px){
  .masthead__inner{flex-wrap:wrap}
  .search{order:3;flex-basis:100%}
  .hero__grid{grid-template-columns:1fr}
  .hero-card h1{font-size:26px;line-height:32px}
  .trust__content h2{font-size:26px;line-height:32px}
  .promo-card h2,
  .value-prop__title{font-size:25px;line-height:30px}
  .promo-card--creative h2{font-size:25px;line-height:30px}
  .hero__stack{gap:24px}
  .promo-card{
    height:268px;
    overflow:visible;
  }
  .promo-card--creative{
    overflow:hidden;
  }
  .promo-card__content{
    left:15px;
    right:auto;
    top:15px;
    bottom:auto;
    transform:none;
    width:min(220px,calc(100% - 30px));
    max-width:calc(100% - 30px);
    padding:0;
    z-index:5;
  }
  .promo-card--creative .promo-card__content{
    top:50%;
    bottom:auto;
    left:15px;
    transform:translateY(-50%);
  }
  .news{flex-direction:column;align-items:stretch}
  .news-side{align-self:stretch}
  .news-feature__imgWrap{
    flex:0 0 auto;
    height:320px;
    min-height:320px;
  }
  .news-excerpt{width:auto;max-width:100%}
  .news,
  .news-feature,
  .news-side,
  .news-row{
    max-width:100%;
    min-width:0;
  }
  .news-title,
  .news-title--feature{
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    word-break:break-word;
  }
  .site-footer__brand,
  .ite-footer__brand{gap:24px}
  .site-footer__row,
  .ite-footer__row{gap:48px}
}

@media (max-width: 620px){
  .primary-nav__inner{flex-wrap:wrap;gap:12px;height:auto;justify-content:flex-start}
  .primary-nav__links{width:100%;padding-bottom:6px}
  .primary-nav__links a{height:auto;padding:14px 0}
  .masthead__actions{gap:14px}
  .action__label{display:none}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .site-footer__links,
  .ite-footer__links{gap:32px}
  .value-props{grid-template-columns:1fr}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .cat:nth-child(3n){border-right:1px solid var(--line)}
  .cat:nth-child(2n){border-right:0}
  .cat:nth-last-child(-n+3){border-bottom:1px solid var(--line)}
  .cat:nth-last-child(-n+2){border-bottom:0}
  .news-row__img{width:140px}
}

@media (max-width: 420px){
  .hero-card h1{font-size:17px;line-height:22px}
  .trust__content h2{font-size:17px;line-height:22px}
  .promo-card h2,
  .value-prop__title{font-size:16px;line-height:21px}
  .promo-card--creative h2{font-size:16px;line-height:21px}
  .product-grid{grid-template-columns:1fr}
}

@media (max-width: 768px){
  .topbar__nav{display:none}
  .topbar__info{display:block}
  .topbar__call-mobile{display:inline-flex}
  .primary-nav{display:none}
  .masthead__menu-toggle{display:flex}
  .masthead__actions .action__icon{width:20px;height:20px}
  .masthead__actions .badge{top:-5px;right:-8px}
  .masthead .logo img{height:15px}
  .site-footer .logo--footer img{height:16px}
  .container,
  .container-fluid{
    padding-inline:0;
    padding-left:calc(var(--pad-x-sm) + env(safe-area-inset-left, 0px));
    padding-right:calc(var(--pad-x-sm) + env(safe-area-inset-right, 0px));
  }
  .hero-card__content{padding-left:var(--pad-x-sm);padding-right:var(--pad-x-sm)}
  .hero-card--main .hero-card__content--center{top:calc(50% - 62px)}
  .hero-card h1{font-size:20px;line-height:26px}
  .trust__content h2{font-size:20px;line-height:26px}
  .promo-card h2,
  .value-prop__title{font-size:19px;line-height:24px}
  .value-prop__icon{width:54px;height:54px}
  .promo-card--creative h2{font-size:19px;line-height:24px}
  .promo-card--creative .promo-kicker{
    font-size:11px;
    padding:5px 8px;
  }
  .promo-card--creative{
    height:auto;
    min-height:0;
  }
  .trust{
    height:300px;
    min-height:300px;
  }
  .trust__bg{
    padding:0;
  }
  .trust__bg img{
    object-position:62% center;
  }
  .trust__content{
    left:var(--pad-x-sm);
    right:auto;
    top:26px;
    transform:none;
    width:min(466px, calc(100% - 2 * var(--pad-x-sm)));
    max-width:100%;
    padding:0;
    align-items:flex-start;
    text-align:left;
  }
  .newsletterBar__pill{
    padding:14px 4px 14px var(--pad-x-sm);
  }
  .newsletterBar__title{
    white-space:normal;
    font-size:19px;
    line-height:24px;
  }
  .news,
  .news-feature,
  .news-side{
    width:100%;
    max-width:100%;
    min-width:0;
  }
  .news-feature__imgWrap{
    height:auto;
    min-height:0;
    aspect-ratio:1080 / 720;
  }
  .news-row{
    width:100%;
    max-width:100%;
    min-width:0;
    align-items:flex-start;
  }
  .news-row__img{
    flex:0 0 auto;
    width:112px;
    min-width:0;
    aspect-ratio:112 / 96;
  }
  .news-title,
  .news-title--feature{
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    word-break:break-word;
  }
  .news-excerpt{
    width:100%;
    max-width:100%;
  }
  .btn,
  .categories-btn,
  .newsletterBar__pill button{
    font-size:12px;
  }
  .site-footer__row,
  .ite-footer__row{
    flex-direction:column;
    align-items:stretch;
    gap:32px;
  }
  .site-footer__right,
  .ite-footer__right{
    width:100%;
    justify-content:flex-start;
    flex-direction:column;
    align-items:stretch;
  }
  .site-footer__links,
  .ite-footer__links{
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:24px;
    width:100%;
  }
  .site-footer__col,
  .ite-footer__col{
    flex:none;
    width:100%;
    max-width:none;
  }
  .promo-card--creative .promo-card__content{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    left:auto;
    transform:none;
    box-sizing:border-box;
    width:100%;
    max-width:none;
    padding:15px;
    align-items:flex-start;
    text-align:left;
  }
  .promo-card--creative .promo-card__head{
    align-items:flex-start;
    text-align:left;
  }
}

@media (max-width: 399px){
  .hero-card--main{
    aspect-ratio:auto;
    height:300px;
    min-height:300px;
  }
}

.maintenance-dialog{
  padding:0;
  border:none;
  border-radius:12px;
  max-width:min(400px, calc(100vw - 32px));
  background:#fff;
  color:var(--ink);
  box-shadow:0 24px 80px rgba(1,13,36,.35);
}
.maintenance-dialog::backdrop{
  background:rgba(1,13,36,.55);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px);
}
.maintenance-dialog__box{
  margin:0;
  padding:28px 26px 26px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
  min-width:min(340px, calc(100vw - 32px));
}
.maintenance-dialog__title{
  margin:0;
  font-family:Quantico,system-ui,sans-serif;
  font-weight:700;
  font-size:22px;
  line-height:1.2;
  text-transform:uppercase;
  color:var(--navy);
}
.maintenance-dialog__text{
  margin:0;
  font-family:Roboto,system-ui,sans-serif;
  font-size:15px;
  line-height:1.45;
  color:var(--muted);
  max-width:32ch;
}
.maintenance-dialog__ok{
  margin-top:8px;
  min-width:120px;
  background:var(--yellow);
  color:var(--navy);
  -webkit-appearance:none;
  appearance:none;
}
.maintenance-dialog__ok:hover{
  background:var(--blue);
  color:#fff;
  box-shadow:none;
}
.maintenance-dialog__ok:active{
  transform:translateY(1px);
  background:var(--blue2);
  color:#fff;
  box-shadow:none;
}
.maintenance-dialog__ok:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:3px;
}
