/* Keep the project shell intact on V8-imported routes. */
body.industries-page,
body.insights-page{
  --shell-ink:#080D1A;
  --shell-red:#FE0000;
  --shell-ruby:#9F0712;
  --shell-muted:#6D788A;
  --shell-graphite:#536176;
  --shell-blush:#FFF1F2;
  --shell-ivory:#FAF9F6;
  --shell-cta:linear-gradient(135deg,#FE0000,#C90813);
  --shell-shadow-lux:0 34px 90px rgba(8,13,26,.12);
  --site-max:1560px;
  --site-gutter:clamp(28px,5vw,96px);
  --font-accent:"Sora","Space Grotesk","Inter",sans-serif;
}

body.industries-page .preloader-logo,
body.insights-page .preloader-logo{
  display:flex;
  align-items:center;
  gap:13px;
  font-family:var(--font-accent);
  font-size:18px;
  letter-spacing:-.02em;
}

body.industries-page .preloader-logo img,
body.insights-page .preloader-logo img{
  width:42px;
  height:42px;
  object-fit:contain;
}

body.industries-page .preloader-modules,
body.insights-page .preloader-modules{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:16px 0;
}

body.industries-page .preloader-modules span,
body.insights-page .preloader-modules span{
  padding:7px 9px;
  border-radius:999px;
  background:rgba(254,0,0,.065);
  color:var(--shell-ruby);
  font-size:11px;
  font-weight:800;
}

body.industries-page .site-header,
body.insights-page .site-header{
  position:fixed;
  top:18px;
  left:0;
  right:0;
  z-index:1000;
  transition:top .3s ease,transform .3s ease;
}

body.industries-page .site-header.is-scrolled,
body.insights-page .site-header.is-scrolled{
  top:10px;
}

body.industries-page .nav-shell,
body.insights-page .nav-shell{
  width:min(var(--site-max),calc(100% - clamp(24px,4vw,80px)));
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.84);
  border-radius:999px;
  background:linear-gradient(135deg,rgba(255,255,255,.86),rgba(255,246,246,.74));
  box-shadow:0 18px 48px rgba(107,20,26,.10),inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter:blur(22px) saturate(150%);
  transition:.3s ease;
}

body.industries-page .logo,
body.insights-page .logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
  font-family:var(--font-accent);
  font-weight:600;
  letter-spacing:.02em;
}

body.industries-page .logo img,
body.insights-page .logo img{
  width:42px;
  height:42px;
  object-fit:contain;
  filter:drop-shadow(0 12px 18px rgba(254,0,0,.12));
}

body.industries-page .logo span span,
body.insights-page .logo span span{
  font-size:15px;
}

body.industries-page .logo small,
body.insights-page .logo small{
  display:block;
  margin-top:1px;
  font-size:10px;
  line-height:1;
  letter-spacing:.08em;
  color:var(--shell-muted);
  font-weight:500;
}

body.industries-page .brand-red,
body.insights-page .brand-red{
  color:var(--shell-red);
}

body.industries-page .brand-black,
body.insights-page .brand-black{
  color:var(--shell-ink);
}

body.industries-page .desktop-nav,
body.insights-page .desktop-nav{
  display:flex;
  align-items:center;
  gap:3px;
  padding:5px;
  border-radius:999px;
  background:rgba(250,249,246,.7);
  border:1px solid rgba(8,13,26,.055);
}

body.industries-page .nav-link,
body.insights-page .nav-link{
  position:relative;
  padding:11px 14px;
  border-radius:999px;
  color:rgba(8,13,26,.66);
  font-family:"Space Grotesk","Inter",sans-serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:-.01em;
  transition:.25s ease;
  transform:none;
}

body.industries-page .nav-link:hover,
body.industries-page .nav-link.active,
body.insights-page .nav-link:hover,
body.insights-page .nav-link.active{
  color:var(--shell-ruby);
  background:#fff;
  box-shadow:0 8px 22px rgba(8,13,26,.055);
}

body.industries-page .nav-link::after,
body.insights-page .nav-link::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:4px;
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--shell-red);
  opacity:0;
  transform:translateX(-50%) scale(.5);
  transition:.25s ease;
}

body.industries-page .nav-link:hover::after,
body.industries-page .nav-link.active::after,
body.insights-page .nav-link:hover::after,
body.insights-page .nav-link.active::after{
  opacity:1;
  transform:translateX(-50%) scale(1);
}

body.industries-page .nav-actions,
body.insights-page .nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

body.industries-page .site-header .btn,
body.insights-page .site-header .btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-family:var(--font-accent);
  font-size:14px;
  font-weight:600;
  letter-spacing:-.01em;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease,background .25s ease;
  overflow:hidden;
  white-space:nowrap;
}

body.industries-page .site-header .btn::before,
body.insights-page .site-header .btn::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(100deg,transparent 0%,rgba(255,255,255,.65) 40%,transparent 75%);
  transform:translateX(-120%);
  transition:transform .8s ease;
}

body.industries-page .site-header .btn:hover::before,
body.insights-page .site-header .btn:hover::before{
  transform:translateX(120%);
}

body.industries-page .site-header .btn:hover,
body.insights-page .site-header .btn:hover{
  transform:translateY(-2px);
}

body.industries-page .site-header .btn-primary,
body.insights-page .site-header .btn-primary{
  background:radial-gradient(circle at 25% 0%,rgba(255,255,255,.34),transparent 28%),linear-gradient(135deg,#FE0000 0%,#BD0712 52%,#FF6D5F 100%);
  color:#fff;
  border-color:rgba(254,0,0,.18);
  box-shadow:0 18px 44px rgba(254,0,0,.22),inset 0 1px 0 rgba(255,255,255,.34);
}

body.industries-page .icon-btn,
body.insights-page .icon-btn{
  width:46px;
  height:46px;
  border:1px solid rgba(8,13,26,.08);
  border-radius:50%;
  background:#fff;
  color:var(--shell-ink);
  display:grid;
  place-items:center;
  box-shadow:0 8px 22px rgba(8,13,26,.05);
}

body.industries-page .hamburger,
body.insights-page .hamburger{
  display:none;
}

body.industries-page .hamburger span,
body.insights-page .hamburger span{
  width:18px;
  height:2px;
  border-radius:999px;
  background:var(--shell-ink);
  display:block;
  margin:2px 0;
  transition:.25s ease;
}

body.industries-page .menu-backdrop,
body.insights-page .menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(8,13,26,.28);
  border:0;
  z-index:1001;
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
}

body.industries-page .menu-backdrop.open,
body.insights-page .menu-backdrop.open{
  opacity:1;
  visibility:visible;
}

body.industries-page .site-footer .container,
body.industries-page .footer-bottom.container,
body.insights-page .site-footer .container,
body.insights-page .footer-bottom.container{
  width:min(var(--site-max),calc(100% - var(--site-gutter)));
  margin-inline:auto;
}

body.industries-page .mobile-panel,
body.insights-page .mobile-panel{
  position:fixed;
  right:16px;
  top:16px;
  bottom:16px;
  width:min(420px,calc(100% - 32px));
  z-index:1002;
  border-radius:34px;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(28px);
  border:1px solid rgba(8,13,26,.08);
  box-shadow:var(--shell-shadow-lux);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:8px;
  transform:translateX(calc(100% + 24px));
  transition:transform .36s cubic-bezier(.2,.8,.2,1);
}

body.industries-page .mobile-panel.open,
body.insights-page .mobile-panel.open{
  transform:translateX(0);
}

body.industries-page .mobile-head,
body.insights-page .mobile-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

body.industries-page .mobile-panel .mobile-head a.logo,
body.insights-page .mobile-panel .mobile-head a.logo{
  display:inline-flex;
  padding:0;
  border:0;
  font-size:inherit;
  letter-spacing:inherit;
  color:inherit;
}

body.industries-page .close-menu,
body.insights-page .close-menu{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(8,13,26,.08);
  background:#fff;
  font-size:24px;
}

body.industries-page .mobile-panel a:not(.logo),
body.insights-page .mobile-panel a:not(.logo){
  display:block;
  padding:18px 16px;
  border:0;
  border-radius:20px;
  color:var(--shell-ink);
  font-size:26px;
  font-weight:500;
  letter-spacing:-.04em;
}

body.industries-page .mobile-panel a:not(.logo):hover,
body.industries-page .mobile-panel a.active,
body.insights-page .mobile-panel a:not(.logo):hover,
body.insights-page .mobile-panel a.active{
  background:var(--shell-blush);
  color:var(--shell-ruby);
}

body.industries-page .mobile-panel .mobile-cta,
body.insights-page .mobile-panel .mobile-cta{
  margin-top:auto;
  text-align:center;
  background:var(--shell-cta);
  color:#fff;
  font-size:16px;
  border-radius:999px;
}

body.industries-page .site-footer,
body.insights-page .site-footer{
  position:relative;
  overflow:hidden;
  padding:86px 0 30px;
  background:radial-gradient(circle at 12% 18%,rgba(254,0,0,.075),transparent 28%),radial-gradient(circle at 82% 8%,rgba(255,112,112,.06),transparent 30%),linear-gradient(180deg,#FFFDFC 0%,#FFF6F5 55%,#F7EFEA 100%);
  border-top:1px solid rgba(254,0,0,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.92);
}

body.industries-page .footer-grid,
body.insights-page .footer-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.6fr repeat(4,1fr);
  gap:32px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}

body.industries-page .footer-brand p,
body.insights-page .footer-brand p{
  max-width:380px;
  color:var(--shell-graphite);
  line-height:1.7;
}

body.industries-page .site-footer h3,
body.insights-page .site-footer h3{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:#8A5963;
  margin:0 0 16px;
  font-family:var(--font-accent);
}

body.industries-page .site-footer a,
body.industries-page .site-footer span,
body.insights-page .site-footer a,
body.insights-page .site-footer span{
  display:block;
  color:var(--shell-graphite);
  font-size:14px;
  line-height:1.55;
  margin:10px 0;
}

body.industries-page .site-footer a:hover,
body.insights-page .site-footer a:hover{
  color:var(--shell-red);
}

body.industries-page .footer-bottom,
body.insights-page .footer-bottom{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  border-top:1px solid rgba(254,0,0,.10);
  margin-top:54px;
  padding-top:24px;
  color:#6D788A;
  font-size:13px;
}

body.industries-page .footer-bottom a,
body.insights-page .footer-bottom a{
  font-family:var(--font-accent);
  color:var(--shell-red);
  margin:0;
}

body.industries-page .site-footer .logo span,
body.insights-page .site-footer .logo span{
  color:#172033;
}

body.industries-page .site-footer .brand-red,
body.insights-page .site-footer .brand-red{
  color:var(--shell-red);
}

@media (max-width:1120px){
  body.industries-page .desktop-nav,
  body.insights-page .desktop-nav{display:none;}
  body.industries-page .hamburger,
  body.insights-page .hamburger{display:grid;}
  body.industries-page .footer-grid,
  body.insights-page .footer-grid{grid-template-columns:1fr 1fr;}
}

@media (max-width:760px){
  body.industries-page,
  body.insights-page{--site-gutter:28px;}
  body.industries-page .site-header,
  body.insights-page .site-header{top:10px;}
  body.industries-page .nav-shell,
  body.insights-page .nav-shell{width:calc(100% - 20px);padding:10px;}
  body.industries-page .logo img,
  body.insights-page .logo img{width:36px;height:36px;}
  body.industries-page .logo small,
  body.insights-page .logo small{display:none;}
  body.industries-page .nav-actions .btn,
  body.insights-page .nav-actions .btn{display:none;}
  body.industries-page .footer-grid,
  body.insights-page .footer-grid{grid-template-columns:1fr;}
  body.industries-page .footer-bottom,
  body.insights-page .footer-bottom{display:block;}
  body.industries-page .mobile-panel a:not(.logo),
  body.insights-page .mobile-panel a:not(.logo){font-size:22px;}
}

/* Responsive shell hardening for V8-imported Industries and Insights routes. */
body.industries-page,
body.insights-page{
  max-width:100%;
  overflow-x:hidden;
}

body.industries-page .preloader.done,
body.insights-page .preloader.done{
  pointer-events:none;
}

body.industries-page .mobile-panel[aria-hidden="true"],
body.insights-page .mobile-panel[aria-hidden="true"]{
  visibility:hidden;
  pointer-events:none;
}

body.industries-page .mobile-panel.open,
body.industries-page .mobile-panel[aria-hidden="false"],
body.insights-page .mobile-panel.open,
body.insights-page .mobile-panel[aria-hidden="false"]{
  visibility:visible;
  pointer-events:auto;
}

body.industries-page .container,
body.industries-page .nav-shell,
body.industries-page main,
body.industries-page section,
body.industries-page article,
body.industries-page aside,
body.industries-page .panel,
body.industries-page .route-panel,
body.industries-page .content-panel,
body.industries-page .content-panel-inner,
body.industries-page .route-layout,
body.industries-page .route-hero-grid,
body.industries-page .footer-grid,
body.insights-page .container,
body.insights-page .nav-shell,
body.insights-page main,
body.insights-page section,
body.insights-page article,
body.insights-page aside,
body.insights-page .panel,
body.insights-page .route-panel,
body.insights-page .content-panel,
body.insights-page .content-panel-inner,
body.insights-page .route-layout,
body.insights-page .route-hero-grid,
body.insights-page .footer-grid{
  min-width:0;
}

@media (max-width:1120px){
  body.industries-page .desktop-nav,
  body.insights-page .desktop-nav{
    display:none!important;
  }

  body.industries-page .hamburger,
  body.insights-page .hamburger{
    display:grid!important;
  }

  body.industries-page .nav-actions .btn,
  body.insights-page .nav-actions .btn{
    display:none!important;
  }

  body.industries-page .route-hero-grid,
  body.industries-page .content-panel-inner,
  body.industries-page .route-layout,
  body.insights-page .route-hero-grid,
  body.insights-page .content-panel-inner,
  body.insights-page .route-layout{
    grid-template-columns:minmax(0,1fr)!important;
  }

  body.industries-page .route-panel,
  body.insights-page .route-panel{
    min-height:auto;
  }

  body.industries-page .route-nav,
  body.insights-page .route-nav{
    position:relative!important;
    top:auto!important;
    display:flex!important;
    gap:8px;
    max-width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
  }

  body.industries-page .route-nav a,
  body.insights-page .route-nav a{
    flex:0 0 auto;
    max-width:min(78vw,280px);
    scroll-snap-align:start;
    white-space:nowrap;
  }
}

@media (max-width:760px){
  body.industries-page .container,
  body.insights-page .container{
    width:min(100% - 28px,1180px)!important;
  }

  body.industries-page .route-title,
  body.industries-page .route-hero h1,
  body.insights-page .route-title,
  body.insights-page .route-hero h1{
    letter-spacing:0!important;
    overflow-wrap:anywhere;
  }

  body.industries-page .lead,
  body.industries-page .route-hero p,
  body.insights-page .lead,
  body.insights-page .route-hero p{
    font-size:clamp(16px,4.8vw,18px)!important;
  }

  body.industries-page .hero-actions,
  body.insights-page .hero-actions{
    width:100%;
  }

  body.industries-page .hero-actions .btn,
  body.insights-page .hero-actions .btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  body.industries-page .content-panel,
  body.industries-page .route-panel,
  body.insights-page .content-panel,
  body.insights-page .route-panel{
    border-radius:24px!important;
    padding:clamp(20px,6vw,30px)!important;
  }
}

@media (max-width:430px){
  body.industries-page .container,
  body.insights-page .container{
    width:min(100% - 22px,1180px)!important;
  }

  body.industries-page .nav-shell,
  body.insights-page .nav-shell{
    width:calc(100% - 16px)!important;
    padding:8px 9px!important;
    gap:10px;
  }

  body.industries-page .logo img,
  body.insights-page .logo img{
    width:34px!important;
    height:34px!important;
  }

  body.industries-page .icon-btn,
  body.industries-page .hamburger,
  body.insights-page .icon-btn,
  body.insights-page .hamburger{
    width:42px!important;
    height:42px!important;
    flex:0 0 42px;
  }

  body.industries-page .mobile-panel,
  body.insights-page .mobile-panel{
    inset:8px!important;
    width:auto!important;
    max-width:none!important;
    border-radius:24px!important;
    padding:14px!important;
    overflow-y:auto;
  }

  body.industries-page .mobile-panel a:not(.logo),
  body.insights-page .mobile-panel a:not(.logo){
    font-size:20px!important;
    line-height:1.12;
    padding:14px 12px!important;
  }

  body.industries-page .route-metrics,
  body.insights-page .route-metrics{
    grid-template-columns:1fr!important;
  }
}
