:root{
  --hnos-navy: var(--brand-navy, #121A41);
  --hnos-red: rgba(153, 1, 1, .95);
  --hnos-ink: var(--ink, #0f172a);
  --hnos-muted: #5c6f8e;
  --hnos-line: rgba(18,26,65,.10);
  --hnos-shell: min(1260px, calc(100% - 48px));
  --hnos-radius: 30px;
  --hnos-radius-sm: 22px;
  --hnos-surface: rgba(255,255,255,.72);
  --hnos-surface-strong: rgba(255,255,255,.92);
  --hnos-shadow: 0 26px 80px rgba(7, 15, 40, .10);
  --hnos-shadow-soft: 0 18px 40px rgba(7, 15, 40, .08);
  --hnos-focus: 0 0 0 4px rgba(18,26,65,.14);
}

.hnos-page{
  position: relative;
  color: var(--hnos-ink);
  background:
    radial-gradient(900px 320px at 0% 0%, rgba(18,26,65,.13), transparent 62%),
    radial-gradient(880px 300px at 100% 8%, rgba(153,1,1,.11), transparent 58%),
    linear-gradient(180deg, #eef3fb 0%, #f7f9fd 22%, #f3f6fb 46%, #f7f2f3 73%, #f7f9fd 100%);
  overflow: clip;
}

.hnos-page::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,0) 30%),
    radial-gradient(380px 160px at 12% 18%, rgba(59,105,178,.08), transparent 70%),
    radial-gradient(380px 160px at 86% 82%, rgba(153,1,1,.08), transparent 70%);
}

.hnos-shell{
  width: var(--hnos-shell);
  margin: 0 auto;
}

.hnos-skip-link{
  position:absolute;
  left:-999px;
  top:14px;
  z-index:9999;
  background: var(--hnos-navy);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
}
.hnos-skip-link:focus{
  left:14px;
  outline:none;
  box-shadow: var(--hnos-focus);
}

.hnos-section{
  position: relative;
  padding: 44px 0;
}

.hnos-intro{
  padding-top: 36px;
}

.hnos-section--soft::before,
.hnos-intro::before,
.hnos-ctaBand::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(520px 180px at 12% 0%, rgba(18,26,65,.08), transparent 60%),
    radial-gradient(520px 180px at 88% 100%, rgba(153,1,1,.08), transparent 60%);
}

.hnos-sectionHead{
  position: relative;
  z-index: 1;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom: 24px;
}

.hnos-sectionKicker{
  margin:0 0 12px;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#466f9f;
}

.hnos-sectionHead h2,
.hnos-storyCard h2,
.hnos-ctaBand__card h2{
  margin:0;
  color: var(--hnos-navy);
  font-size: clamp(34px, 3.8vw, 62px);
  line-height: .98;
  letter-spacing: -.06em;
  max-width: 12ch;
}

.hnos-sectionHead p,
.hnos-storyCard > p,
.hnos-introCard p,
.hnos-infoCard p,
.hnos-benefitCard p,
.hnos-processStep p,
.hnos-panel p,
.hnos-mediaCard__content span,
.hnos-mediaCard__content strong{
  margin: 14px 0 0;
  color: var(--hnos-muted);
  font-size: 16px;
  line-height: 1.72;
}

.hnos-introHero,
.hnos-processHero,
.hnos-introGrid,
.hnos-cardsGrid,
.hnos-storyGrid,
.hnos-process,
.hnos-ctaBand__card{
  position: relative;
  z-index: 1;
}

.hnos-introHero,
.hnos-processHero{
  display:grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .95fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 20px;
}

.hnos-introHero .hnos-sectionHead,
.hnos-processHero .hnos-sectionHead{
  margin-bottom: 0;
  align-items: center;
}

.hnos-introGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hnos-introCard,
.hnos-infoCard,
.hnos-storyCard,
.hnos-benefitCard,
.hnos-processStep,
.hnos-ctaBand__card,
.hnos-mediaCard,
.hnos-carouselCard{
  position:relative;
  overflow:hidden;
  border-radius: var(--hnos-radius);
  border: 1px solid rgba(73, 96, 145, .13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(247,249,253,.72));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--hnos-shadow);
}

.hnos-introCard::before,
.hnos-infoCard::before,
.hnos-storyCard::before,
.hnos-benefitCard::before,
.hnos-processStep::before,
.hnos-ctaBand__card::before,
.hnos-mediaCard::before,
.hnos-carouselCard::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,0)),
    radial-gradient(320px 140px at 0% 0%, rgba(18,26,65,.09), transparent 60%),
    radial-gradient(320px 140px at 100% 100%, rgba(153,1,1,.07), transparent 60%);
}

.hnos-introCard,
.hnos-infoCard,
.hnos-processStep{
  padding: 28px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.hnos-introCard:hover,
.hnos-infoCard:hover,
.hnos-storyCard:hover,
.hnos-benefitCard:hover,
.hnos-processStep:hover,
.hnos-ctaBand__card:hover,
.hnos-mediaCard:hover,
.hnos-carouselCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(7,15,40,.13);
  border-color: rgba(70,111,159,.20);
}

.hnos-cardIcon{
  position:relative;
  z-index:1;
  width:58px;
  height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  color: var(--hnos-navy);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(235,240,248,.92));
  border: 1px solid rgba(70,111,159,.14);
  box-shadow: var(--hnos-shadow-soft);
}

.hnos-cardIcon svg{
  width:22px;
  height:22px;
}

.hnos-introCard h3,
.hnos-infoCard h3,
.hnos-processStep h3,
.hnos-benefitCard strong{
  position:relative;
  z-index:1;
  margin:18px 0 0;
  color: var(--hnos-navy);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.hnos-cardsGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hnos-storyGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}

.hnos-storyCard{
  padding: 30px;
}

.hnos-benefits{
  display:grid;
  gap:18px;
}

.hnos-benefitCard{
  padding: 24px;
}

.hnos-benefitCard strong{
  display:block;
  margin:0;
}

.hnos-benefitCard p,
.hnos-infoCard p,
.hnos-introCard p,
.hnos-processStep p{
  position:relative;
  z-index:1;
}

.hnos-tabs{
  position:relative;
  z-index:1;
  margin-top: 22px;
}

.hnos-tabs__nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.hnos-tab{
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(70,111,159,.16);
  background: rgba(255,255,255,.82);
  color: var(--hnos-navy);
  font-size: 13px;
  font-weight: 800;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.hnos-tab:hover{
  transform: translateY(-2px);
  box-shadow: var(--hnos-shadow-soft);
  border-color: rgba(70,111,159,.24);
}

.hnos-tab.is-active{
  background: linear-gradient(180deg, #22306e, #121A41 60%, #101837);
  color:#fff;
  border-color: rgba(18,26,65,.26);
  box-shadow: 0 14px 28px rgba(18,26,65,.16);
}

.hnos-tabs__panels{
  border-radius: var(--hnos-radius-sm);
  border:1px solid rgba(70,111,159,.12);
  background: rgba(255,255,255,.72);
  padding: 20px 22px;
}

.hnos-panel{ display:none; }
.hnos-panel.is-active{ display:block; }
.hnos-panel p{ margin:0; }

.hnos-mediaCard{
  min-height: 100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.hnos-mediaCard__videoWrap{
  position:absolute;
  inset:0;
}

.hnos-inlineVideo{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background: linear-gradient(180deg, #dfe7f4, #eff3fa);
}

.hnos-mediaCard__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(18,26,65,.08), rgba(18,26,65,.18) 54%, rgba(18,26,65,.76) 100%),
    radial-gradient(420px 180px at 100% 0%, rgba(153,1,1,.14), transparent 60%);
}

.hnos-mediaCard__content{
  position:relative;
  z-index:1;
  padding: 28px;
  display:grid;
  gap:10px;
}

.hnos-mediaCard__content span{
  margin:0;
  color: rgba(255,255,255,.76);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:900;
}

.hnos-mediaCard__content strong{
  margin:0;
  color:#fff;
  font-size: clamp(24px, 2vw, 34px);
  line-height:1.1;
  letter-spacing:-.03em;
  max-width: 13ch;
}

.hnos-process{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hnos-processStep span{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 62px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18,26,65,.08), rgba(18,26,65,.05));
  color: var(--hnos-navy);
  font-size: 14px;
  font-weight: 900;
}

.hnos-carouselCard{
  padding: 16px;
}

.hnos-carouselViewport{
  overflow:hidden;
  border-radius: 24px;
  border: 1px solid rgba(70,111,159,.12);
  background: linear-gradient(180deg, rgba(221,229,242,.8), rgba(245,247,251,.9));
}

.hnos-carouselTrack{
  display:flex;
  transition: transform .55s cubic-bezier(.22,.85,.25,1);
  will-change: transform;
}

.hnos-carouselSlide{
  flex: 0 0 100%;
  min-width: 100%;
}

.hnos-carouselSlide img{
  display:block;
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit:cover;
}

.hnos-carouselDots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  margin-top: 14px;
}

.hnos-carouselDot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(70,111,159,.24);
  background: rgba(18,26,65,.12);
  cursor:pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.hnos-carouselDot.is-active{
  transform: scale(1.15);
  background: var(--hnos-red);
  border-color: rgba(153,1,1,.45);
}

.hnos-ctaBand{
  position:relative;
  padding: 38px 0 44px;
}

.hnos-ctaBand__card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  padding: 30px;
}

.hnos-ctaBand__card h2{
  max-width: 15ch;
}

.hnos-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration:none;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.hnos-btn:focus{
  outline:none;
  box-shadow: var(--hnos-focus);
}

.hnos-btn::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-80%;
  width:58%;
  height:200%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  opacity:0;
  transition: left .5s ease, opacity .2s ease;
}

.hnos-btn:hover{
  transform: translateY(-2px);
}

.hnos-btn:hover::before{
  left:130%;
  opacity:1;
}

.hnos-btn--primary{
  color:#fff;
  background: linear-gradient(180deg, #22306e, #121A41 60%, #101837);
  box-shadow: 0 14px 30px rgba(18,26,65,.22);
}

.hnos-btn--ghost{
  color: var(--hnos-navy);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,252,.94));
  border-color: rgba(70,111,159,.16);
  box-shadow: 0 12px 24px rgba(2,6,23,.06);
}

.hnos-ctaBand__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hnos-reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.85,.25,1);
}
.hnos-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.hnos-reveal--delay{ transition-delay: .08s; }
.hnos-reveal--delay-2{ transition-delay: .16s; }

@media (prefers-reduced-motion: reduce){
  .hnos-reveal,
  .hnos-introCard,
  .hnos-infoCard,
  .hnos-storyCard,
  .hnos-benefitCard,
  .hnos-processStep,
  .hnos-ctaBand__card,
  .hnos-mediaCard,
  .hnos-carouselCard,
  .hnos-btn,
  .hnos-tab,
  .hnos-carouselTrack{
    transition:none !important;
    animation:none !important;
    transform:none !important;
    opacity:1 !important;
  }
}

@media (max-width: 1180px){
  .hnos-introHero,
  .hnos-processHero,
  .hnos-storyGrid{
    grid-template-columns: 1fr;
  }

  .hnos-introGrid,
  .hnos-cardsGrid,
  .hnos-process{
    grid-template-columns: repeat(2, 1fr);
  }

  .hnos-mediaCard__content strong{
    max-width:none;
  }

  .hnos-ctaBand__card{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 760px){
  .hnos-shell{
    width: calc(100% - 24px);
  }

  .hnos-section{
    padding: 30px 0;
  }

  .hnos-intro{
    padding-top: 24px;
  }

  .hnos-sectionHead h2,
  .hnos-storyCard h2,
  .hnos-ctaBand__card h2{
    max-width: none;
    font-size: clamp(30px, 9vw, 42px);
  }

  .hnos-introGrid,
  .hnos-cardsGrid,
  .hnos-process{
    grid-template-columns: 1fr;
  }

  .hnos-introCard,
  .hnos-infoCard,
  .hnos-processStep,
  .hnos-storyCard,
  .hnos-benefitCard,
  .hnos-ctaBand__card,
  .hnos-mediaCard,
  .hnos-carouselCard{
    padding: 22px;
    border-radius: 24px;
  }

  .hnos-mediaCard{
    min-height: 340px;
  }

  .hnos-mediaCard__content,
  .hnos-carouselCard{
    padding: 18px;
  }

  .hnos-tabs__nav,
  .hnos-ctaBand__actions{
    flex-direction:column;
  }

  .hnos-tab,
  .hnos-btn{
    width:100%;
  }

  .hnos-carouselViewport{
    border-radius: 20px;
  }

  .hnos-carouselSlide img{
    aspect-ratio: 4 / 3;
  }
}
