

:root {
  --page-navy:    var(--ink-800);     
  --page-navy-dp: var(--ink-900);     
  --page-navy-hi: #083A56;
  --page-bone:    var(--bone-100);    
  --page-bone-w:  #e9e9e9;
  --page-bone-ln: rgba(0, 22, 36, 0.12);
  --page-rule-d:  rgba(250, 250, 250, 0.12);
  --page-rule-ds: rgba(250, 250, 250, 0.22);
  --page-mute-d:  #7E95A5;
  --page-mute-l:  #5B6B73;
  --signal-live:  var(--signal);
  --ff-mono: var(--ff-sans, "Averta"), -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

html, body { overflow-x: clip; }
html { scroll-behavior: smooth; }

body {
  background: var(--page-navy-dp);
  color: var(--page-bone);
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}
::selection { background: var(--signal-live); color: #fff; }
::-moz-selection { background: var(--signal-live); color: #fff; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 220ms var(--ease-out),
              color 220ms var(--ease-out),
              border-color 220ms var(--ease-out);
}
.btn svg { width: 12px; height: 12px; transition: transform 260ms var(--ease-out); }
.btn:hover svg { transform: translate(3px, -3px); }

.btn--bone       { background: var(--page-bone); color: var(--page-navy); }
.btn--bone:hover { background: #fff; }

.btn--navy       { background: var(--page-navy); color: var(--page-bone); }
.btn--navy:hover { background: var(--page-navy-dp); }

.btn--outline-lt { background: transparent; color: var(--page-navy); border-color: var(--page-bone-ln); }
.btn--outline-lt:hover { border-color: var(--signal-live); color: var(--signal-live); }

.btn--outline-dk { background: transparent; color: var(--page-bone); border-color: var(--page-rule-ds); }
.btn--outline-dk:hover { border-color: var(--signal-live); color: var(--signal-live); background: transparent; }

.btn--outline-lt-hero { background: transparent; color: var(--page-bone); border-color: rgba(255,255,255,0.35); }
.btn--outline-lt-hero:hover { border-color: var(--signal-live); color: var(--signal-live); background: transparent; }

.tlabel {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--page-bone);
  font-weight: 400;
}
.tlabel::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--signal-live);
}
.band-light .tlabel { color: var(--page-navy); }

.section__title {
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 18px 0 0;
  text-wrap: balance;
  max-width: 18ch;
}
.section__lede {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.55;
  max-width: 50ch;
  margin: 0;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

.band-light {
  background: #e9e9e9;
  color: var(--page-navy);
}
.band-light .section__lede { color: var(--page-mute-l); }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 300ms var(--ease-out),
              border-color 300ms var(--ease-out),
              backdrop-filter 300ms var(--ease-out),
              color 280ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.header.on-dark.is-scrolled,
.header.on-dark.has-mega-open {
  background: rgba(0, 22, 36, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--page-rule-d);
}
.header.on-light.is-scrolled,
.header.on-light.has-mega-open {
  background: rgba(233, 233, 233, 0.95);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--page-bone-ln);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding: 22px clamp(24px, 4vw, 56px);
  transition: padding 260ms var(--ease-out);
}
.header.is-scrolled .header__inner { padding: 14px clamp(24px, 4vw, 56px); }

.brand {
  display: inline-flex; align-items: center;
  height: 34px;
  transition: height 260ms var(--ease-out);
}
.header.is-scrolled .brand { height: 26px; }
.brand img { height: 100%; width: auto; display: block; }
.header.on-dark  .brand img { filter: invert(1) brightness(1.2); transition: filter 280ms var(--ease-out); }
.header.on-light .brand img { filter: none; transition: filter 280ms var(--ease-out); }

.nav {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(18px, 2.4vw, 44px);
}
.nav__item { position: static; } 
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 0;
  opacity: 0.88;
  transition: opacity 160ms var(--ease-out);
  cursor: pointer;
  background: none; border: 0;
}
.nav__link:hover { opacity: 1; }
.nav__link::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 4px;
  height: 1px; background: var(--signal-live);
  transition: right 360ms var(--ease-out);
}
.nav__item:hover .nav__link::after,
.nav__link:hover::after,
.nav__item.is-open .nav__link::after { right: 0; }
.nav__link .chev {
  width: 8px; height: 8px;
  opacity: 0.65;
  transition: transform 240ms var(--ease-out), color 240ms var(--ease-out), opacity 240ms var(--ease-out);
}
.nav__item:hover .nav__link .chev,
.nav__item.is-open .nav__link .chev { transform: rotate(180deg); opacity: 1; }

.header.on-dark  .nav__link { color: var(--page-bone); transition: color 280ms var(--ease-out); }
.header.on-light .nav__link { color: var(--page-navy); transition: color 280ms var(--ease-out); }

.nav__item.is-current .nav__link::after { right: 0; background: var(--signal-live); }
.mega__item.is-current { background: rgba(250,250,250,0.04); }
.header.on-light .mega__item.is-current { background: rgba(0,22,36,0.04); }

.megabar {
  position: fixed;
  left: 0; right: 0;
  top: 90px;
  pointer-events: none;
  z-index: 49;
  transition: top 260ms var(--ease-out);
}
.header.is-scrolled .megabar { top: 74px; }
.mega {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: #001624;
  border-bottom: 1px solid var(--page-rule-d);
  color: var(--page-bone);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
  pointer-events: none;
}
.header.on-light .mega {
  background: #e9e9e9;
  border-bottom-color: var(--page-bone-ln);
  color: var(--page-navy);
  box-shadow: 0 24px 48px -16px rgba(0, 22, 36, 0.18);
}
.mega.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mega::after {
  content: "";
  position: fixed;
  left: 0; right: 0; bottom: 0;
  top: 0;
  background: rgba(0, 22, 36, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out);
  z-index: -1;
}
.mega.is-open::after { opacity: 1; }
.header.on-light .mega::after { background: rgba(233, 233, 233, 0.7); }
.mega__inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: clamp(36px, 5vh, 56px) clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: stretch;
}
.mega__media {
  position: relative;
  aspect-ratio: 4 / 3;
  align-self: start;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  background: var(--page-navy-dp);
}
.mega__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.78);
  transform: scale(1.04);
  transition: transform 8000ms linear;
}
.mega.is-open .mega__media img { transform: scale(1.14); }
.mega__media-meta {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.78);
  display: inline-flex; gap: 10px; align-items: center;
}
.mega__media-meta::before {
  content: ""; width: 6px; height: 6px; background: var(--signal-live);
}
.mega__items {
  display: grid;
  gap: 0;
  align-content: start;
  border-top: 1px solid currentColor;
  border-color: var(--page-rule-d);
}
.header.on-light .mega__items { border-color: var(--page-bone-ln); }
.mega__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(20px, 2.6vh, 28px) 4px;
  border-bottom: 1px solid var(--page-rule-d);
  color: inherit;
  align-items: start;
  position: relative;
  transition: background 200ms var(--ease-out);
}
.header.on-light .mega__item { border-bottom-color: var(--page-bone-ln); }
.mega__item:hover { background: rgba(250,250,250,0.04); }
.header.on-light .mega__item:hover { background: rgba(0,22,36,0.04); }
.mega__item-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--page-mute-d);
  padding-top: 6px;
}
.mega__item-body { display: flex; flex-direction: column; gap: 8px; }
.mega__item-title {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: inherit;
  display: flex; align-items: center; gap: 14px;
}
.mega__item-title svg {
  width: 14px; height: 14px;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 220ms var(--ease-out), transform 320ms var(--ease-out);
}
.mega__item:hover .mega__item-title svg {
  opacity: 1; transform: translate(0, 0);
}
.mega__item-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--page-mute-d);
  max-width: 56ch;
  margin: 0;
}
.header.on-light .mega__item-desc { color: var(--page-mute-l); }

.nav__drop { display: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  background: none; border: 0;
  cursor: pointer;
  color: inherit;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 240ms var(--ease-out), opacity 200ms var(--ease-out);
}
.header.on-dark .nav__toggle  { color: var(--page-bone); }
.header.on-light .nav__toggle { color: var(--page-navy); }
body.drawer-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.drawer-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.drawer-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__toggle:focus, .nav__toggle:focus-visible, .nav__toggle:active { outline: none !important; box-shadow: none !important; }

.drawer {
  position: fixed; inset: 0;
  background: var(--page-navy-dp);
  color: var(--page-bone);
  z-index: 48;
  display: none;
  flex-direction: column;
  padding: calc(var(--header-h, 72px) + 8px) clamp(24px, 4vw, 56px) 32px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}
body.drawer-open .drawer {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.drawer__group {
  border-top: 1px solid var(--page-rule-d);
  padding: 6px 0;
}
.drawer__group:first-of-type { border-top: 0; }
.drawer__group:last-of-type { border-bottom: 1px solid var(--page-rule-d); }
.drawer__top {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 0;
  background: none; border: 0; color: inherit;
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.drawer__top .chev,
.drawer__top .arrow {
  width: 14px; height: 14px;
  flex: 0 0 auto;
  transition: transform 240ms var(--ease-out);
  opacity: 0.7;
}
.drawer__group.is-open .drawer__top .chev { transform: rotate(180deg); }
.drawer__sub {
  display: none;
  flex-direction: column;
  padding: 0 4px 18px;
  gap: 4px;
}
.drawer__group.is-open .drawer__sub { display: flex; }
.drawer__sub a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--page-bone);
}
.drawer__sub a:first-child { border-top: 0; }
.drawer__sub a strong {
  font-weight: 500; font-size: 16px;
}
.drawer__sub a span {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--page-mute-d);
  transition: color 200ms var(--ease-out);
}
.drawer__top { transition: color 200ms var(--ease-out); }

.drawer__cta {
  margin-top: 28px;
  align-self: stretch; justify-content: center;
}

.header__actions { display: flex; align-items: center; gap: 14px; }
.header.on-dark  .header__cta { background: var(--page-bone); color: var(--page-navy); }
.header.on-dark  .header__cta:hover { background: #fff; }
.header.on-light .header__cta { background: var(--page-navy); color: var(--page-bone); }
.header.on-light .header__cta:hover { background: var(--page-navy-dp); }

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  color: var(--page-bone);
  overflow: hidden;
  isolation: isolate;
  background: var(--page-navy-dp);
  padding: 0 clamp(24px, 4vw, 56px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0 calc(-1 * clamp(24px, 4vw, 56px));
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2400ms var(--ease-in-out);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 160%;
  position: absolute; top: -30%; left: 0;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.78);
  transform: scale(1.0);
  transition: transform 12000ms linear;
  will-change: translate;
}
.hero__slide.is-active img {
  transform: scale(1.10);
}

.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,22,36,0.55) 0%, rgba(0,22,36,0.30) 30%, rgba(0,22,36,0.40) 60%, rgba(0,22,36,0.88) 100%),
    linear-gradient(90deg, rgba(0,22,36,0.55) 0%, rgba(0,22,36,0.1) 55%, rgba(0,22,36,0.2) 100%);
  z-index: 1;
}

.hero__grain {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grainshift 6s steps(6) infinite;
}
@keyframes grainshift {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-2%, 1%); }
  33%  { transform: translate(1%, -2%); }
  50%  { transform: translate(-1%, 2%); }
  66%  { transform: translate(2%, 1%); }
  83%  { transform: translate(-2%, -1%); }
  100% { transform: translate(0, 0); }
}

.hero__inner {
  position: relative; z-index: 3;
  height: 100%;
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero__stage {
  align-self: center;
  display: flex; flex-direction: column;
  gap: clamp(28px, 4.5vh, 48px);
  max-width: 1100px;
  padding-top: clamp(120px, 16vh, 160px);
}

.hero__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: inline-flex; align-items: center; gap: 12px;
  opacity: 0;
  animation: fadeIn 800ms var(--ease-out) 400ms forwards;
}
.hero__label::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--signal-live);
  display: inline-block;
  
}

.hero__headline {
  font-weight: 600;
  font-size: clamp(2.25rem, 6.4vw, 6.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
  max-width: 14ch;
  color: #fff;
}
.hero__headline .line { display: block; overflow: hidden; }
.hero__headline .line > span {
  display: inline-block;
  transform: translateY(101%);
  animation: rise 1100ms var(--ease-out) forwards;
}
.hero__headline .line:nth-child(1) > span { animation-delay: 550ms; }
.hero__headline .line:nth-child(2) > span { animation-delay: 680ms; }
.hero__headline .line:nth-child(3) > span { animation-delay: 810ms; }
@keyframes rise   { from { transform: translateY(101%); } to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

.hero__lede {
  max-width: 48ch;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
  opacity: 0;
  animation: fadeIn 800ms var(--ease-out) 1100ms forwards;
}

.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 800ms var(--ease-out) 1250ms forwards;
}

.cap {
  padding: clamp(96px, 14vh, 160px) clamp(24px, 4vw, 56px);
  position: relative;
}
.cap__inner { max-width: 90rem; margin: 0 auto; position: relative; }
.cap__head { margin-bottom: clamp(72px, 12vh, 120px); }

.cap__cycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(20px, 2.4vw, 40px);
  row-gap: 0;
}
.cap__word {
  padding: clamp(28px, 4vh, 44px) 0 0 0;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  border-top: 1px solid var(--page-bone-ln);
  transition: opacity 260ms var(--ease-out);
}
.cap__word .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--page-mute-l);
  font-variant-numeric: tabular-nums;
}
.cap__word h3 {
  font-weight: 600;
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
  letter-spacing: -0.028em;
  line-height: 1.18;
  margin: 0;
  color: var(--page-navy);
}
.cap__word p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--page-mute-l);
  margin: 0;
  max-width: 32ch;
}

.cap__coda {
  margin-top: clamp(56px, 9vh, 96px);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: start;
  padding-top: clamp(40px, 6vh, 64px);
  border-top: 1px solid var(--page-bone-ln);
}
.cap__coda h4 {
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--page-navy);
  max-width: 18ch;
}
.cap__coda p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--page-mute-l);
  margin: 0;
  max-width: 56ch;
}

.products {
  background: var(--page-navy-dp);
  color: var(--page-bone);
  padding: clamp(96px, 14vh, 160px) clamp(24px, 4vw, 56px);
  position: relative;
}
.products__inner { max-width: 90rem; margin: 0 auto; position: relative; }
.products__head { margin-bottom: clamp(72px, 11vh, 110px); }
.products .section__title { color: var(--page-bone); }
.products .section__lede  { color: var(--page-mute-d); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(24px, 3vw, 48px);
  row-gap: 0;
}
.pillar {
  display: flex; flex-direction: column;
  gap: 0;
  transition: opacity 300ms var(--ease-out);
  cursor: pointer;
}
.pillar__plate {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--page-navy-dp);
}
.pillar__plate img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.01);
  transition: transform 900ms var(--ease-out), filter 600ms var(--ease-out);
  filter: saturate(0.82) contrast(1.05) brightness(0.88);
}
.pillar:hover .pillar__plate img {
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.08) brightness(0.95);
}

.pillar__meta {
  position: absolute; top: 20px; left: 20px; right: 20px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--ff-mono);
  font-size: 14px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.95);
  font-variant-numeric: tabular-nums;
}
.pillar__meta .arrow {
  width: 14px; height: 14px;
  opacity: 0.65;
  transition: transform 300ms var(--ease-out), opacity 300ms var(--ease-out);
}
.pillar:hover .pillar__meta .arrow { transform: translate(3px, -3px); opacity: 1; }

.pillar__body {
  padding: clamp(20px, 2vw, 28px) 0 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.pillar__title {
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin: 0;
  color: var(--page-bone);
}
.pillar__desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--page-mute-d);
  margin: 0;
  max-width: 36ch;
}

.proof {
  position: relative;
  padding: clamp(96px, 14vh, 160px) clamp(24px, 4vw, 56px);
}
.proof__inner { position: relative; z-index: 1; max-width: 90rem; margin: 0 auto; }
.proof__head { margin-bottom: clamp(72px, 11vh, 110px); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.proof__cell {
  display: flex; flex-direction: column; gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--page-bone-ln);
  position: relative;
}
.proof__val {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--page-navy);
  display: flex; align-items: baseline; gap: 2px;
}
.proof__val strong { font-weight: 600; }
.proof__val .unit {
  font-weight: 600;
  font-size: 1em;
  color: var(--page-navy);
}
.proof__val sup {
  font-size: 0.35em;
  font-weight: 600;
  color: var(--signal-live);
  margin-left: 2px;
  top: -1.3em;
  position: relative;
}
.proof__lbl {
  font-size: 16px;
  color: var(--page-mute-l);
  max-width: 24ch;
  line-height: 1.5;
}

.company {
  background: var(--page-navy-dp);
  color: var(--page-bone);
  padding: clamp(96px, 14vh, 160px) clamp(24px, 4vw, 56px);
}
.company__inner { max-width: 90rem; margin: 0 auto; }
.company__head { margin-bottom: clamp(56px, 9vh, 88px); }
.company .section__title { color: var(--page-bone); }
.company .section__lede  { color: var(--page-mute-d); }

.company__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}
.company__plate {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--page-navy-dp);
  position: relative;
}
.company__plate img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) contrast(1.05) brightness(0.92);
}
.company__plate-meta {
  position: absolute; left: 20px; top: 20px; right: 20px;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff;
  display: flex; justify-content: space-between;
  gap: 16px;
}
.company__body { display: flex; flex-direction: column; gap: 24px; }
.company__title {
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  max-width: 20ch;
}
.company__body p {
  color: var(--page-mute-d);
  font-size: 16px; line-height: 1.6;
  margin: 0; max-width: 52ch;
}

.footer {
  background: var(--page-navy-dp);
  color: var(--page-bone);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 clamp(24px, 4vw, 56px);
}
.footer__inner { max-width: 90rem; margin: 0 auto; }

.footer__speak {
  padding: clamp(120px, 18vh, 200px) 0 clamp(72px, 12vh, 120px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 96px);
  align-items: end;
  border-bottom: 1px solid var(--page-rule-d);
}
.footer__speak-title {
  font-weight: 600;
  font-size: clamp(2.25rem, 5.4vw, 6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
  max-width: 12ch;
  color: var(--page-bone);
}
.footer__speak-side {
  display: flex; flex-direction: column; gap: 20px;
  padding-bottom: 8px;
  align-items: flex-start;
}
.footer__speak-side p {
  color: var(--page-mute-d);
  font-size: 15px; line-height: 1.55;
  margin: 0; max-width: 36ch;
}
.footer__speak-side .btn { align-self: flex-start; }

.footer__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 96px);
  padding: clamp(56px, 9vh, 88px) 0;
  border-bottom: 1px solid var(--page-rule-d);
}
.footer__addr {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 38ch;
}
.footer__addr h5 {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--page-mute-d);
  margin: 0;
  font-weight: 400;
}
.footer__addr p {
  color: var(--page-bone);
  font-size: 14px; line-height: 1.6;
  margin: 0; opacity: 0.9;
}
.footer__addr a { color: inherit; }
.footer__addr a:hover { opacity: 0.7; }
.footer__addr--parent .tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--page-rule-d);
  margin-left: 8px;
  color: var(--page-mute-d);
}

.footer__hairline {
  display: flex;
  justify-content: space-between; align-items: center;
  padding: 28px 0 32px;
  color: var(--page-mute-d);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  gap: 20px; flex-wrap: wrap;
}
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer__legal span { color: var(--page-mute-d); }
.footer__legal a {
  color: var(--page-bone); opacity: 0.8;
  transition: opacity 160ms var(--ease-out), color 160ms var(--ease-out);
}
.footer__legal a:hover { opacity: 1; color: var(--signal-live); }
.footer__social-links { display: flex; gap: 24px; }
.footer__social-links a {
  color: var(--page-bone); opacity: 0.8;
  transition: opacity 160ms var(--ease-out), color 160ms var(--ease-out);
}
.footer__social-links a:hover { opacity: 1; color: var(--signal-live); }
.footer__addr a { color: inherit; transition: color 160ms var(--ease-out), opacity 160ms var(--ease-out); }
.footer__addr a:hover { color: var(--signal-live); opacity: 1; }

.footer__mark {
  padding: clamp(56px, 10vh, 96px) 0 clamp(24px, 4vh, 40px);
  text-align: center;
  line-height: 0;
}
.footer__mark img {
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0.9;
  filter: invert(1) brightness(1.1);
  display: inline-block;
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 18px clamp(24px, 4vw, 56px);
  }
  
  .header__inner > .brand { grid-column: 1; }
  .header__inner > .header__actions { grid-column: 3; }
  .header.is-scrolled .header__inner { padding: 12px clamp(24px, 4vw, 56px); }
  .brand { height: 22px; }
  .header.is-scrolled .brand { height: 20px; }

  .nav__toggle { width: 44px; height: 44px; transform: translateX(11px); }
  body.drawer-open .nav__toggle { transform: translateX(11px); }
  .header__actions { justify-content: flex-end; }
  .megabar { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .cap__cycle { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
}

@media (max-width: 860px) {
  .hero { min-height: 520px; }
  .hero__lede { font-size: 16px; }

  .cap, .products, .proof, .company {
    padding: 32px 0 !important;
  }
  .cap__inner, .products__inner, .proof__inner, .company__inner,
  .cap > .container, .products > .container, .proof > .container, .company > .container {
    padding: 0 clamp(20px, 5vw, 32px) !important;
  }

  .section__head,
  .company__grid,
  .cap__coda,
  .footer__speak,
  .footer__info { grid-template-columns: 1fr; gap: 18px; align-items: start; }

  .proof__grid { grid-template-columns: repeat(2, 1fr); }

  .cap__cycle { grid-template-columns: 1fr; row-gap: 16px; }

  .cap__head, .products__head, .proof__head, .company__head {
    margin-bottom: 20px !important;
  }
  .section__head { gap: 12px; }
  .section__lede { font-size: 16px; }

  .cap__cycle { row-gap: 10px; }
  .cap__word { padding-top: 10px; gap: 8px; }
  .cap__word p { line-height: 1.5; }

  .pillars { row-gap: 24px; }
  .pillar__body { padding-top: 14px; gap: 10px; }

  .proof__grid { gap: 16px; }
  .proof__cell { padding: 14px 0; }

  .company__grid { gap: 18px; }

  .footer__speak { padding: 32px 0 20px; gap: 14px; }
  .footer__speak-side { gap: 12px; }
  .footer__speak-side p { font-size: 14px; }
  .footer__info { padding: 20px 0; gap: 18px; }
  .footer__addr { gap: 8px; }
  .footer__hairline { padding: 14px 0 18px; gap: 10px; }
  .footer__mark { padding: 28px 0 18px; }

  .section__title { line-height: 1.2; }
  .pillar__title { line-height: 1.24; }
  .cap__word h3 { line-height: 1.2; }
  .footer__speak-title { line-height: 1.16; }
  .company__title { line-height: 1.22; }
  .hero__headline { line-height: 1.12; }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .mega__inner { grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.6fr); gap: 40px; }
}

.terrain-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.terrain-bg::before,
.terrain-bg::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}

.terrain-bg[data-variant="a"]::before {
  top: -4%; right: -4%;
  width: 65%; aspect-ratio: 1920 / 1738;
  background-image: url("assets/terrain-1.png");
  background-position: top right;
}

.terrain-bg[data-variant="b"]::before {
  bottom: -4%; left: -4%;
  width: 60%; aspect-ratio: 1940 / 1643;
  background-image: url("assets/terrain-2.png");
  background-position: bottom left;
}

.terrain-bg[data-variant="c"]::before {
  top: -4%; right: -4%;
  width: 55%; aspect-ratio: 1920 / 1738;
  background-image: url("assets/terrain-1.png");
  background-position: top right;
}
.terrain-bg[data-variant="c"]::after {
  bottom: -4%; left: -4%;
  width: 50%; aspect-ratio: 1940 / 1643;
  background-image: url("assets/terrain-2.png");
  background-position: bottom left;
}

.band-light .terrain-bg::before,
.band-light .terrain-bg::after {
  filter: invert(1);
  opacity: 0.32;
  mix-blend-mode: multiply;
}

.products .terrain-bg::before,
.products .terrain-bg::after,
.company .terrain-bg::before,
.company .terrain-bg::after {
  opacity: 0.07;
}

.cap__inner,
.products__inner,
.proof__inner,
.company__inner { position: relative; z-index: 1; }

@media (max-width: 860px) {
  .terrain-bg[data-variant="a"]::before,
  .terrain-bg[data-variant="b"]::before,
  .terrain-bg[data-variant="c"]::before,
  .terrain-bg[data-variant="c"]::after {
    width: 80%;
  }
  .band-light .terrain-bg::before,
  .band-light .terrain-bg::after { opacity: 0.07; }
  .products .terrain-bg::before, .products .terrain-bg::after,
  .company .terrain-bg::before, .company .terrain-bg::after { opacity: 0.04; }
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--page-navy-dp);
  margin: 0 calc(-1 * clamp(24px, 4vw, 56px));
}
.hero__video iframe,
.hero__video video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;          
  min-width: 177.78vh; min-height: 100vh;  
  transform: translate(-50%, -50%) scale(1.05);
  border: 0;
  pointer-events: none;
  object-fit: cover;
}

.hero__video::before,
.hero__video::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__video::before {
  background:
    linear-gradient(180deg,
      rgba(0, 22, 36, 0.55) 0%,
      rgba(0, 22, 36, 0.35) 35%,
      rgba(0, 22, 36, 0.55) 100%);
  mix-blend-mode: multiply;
}

.hero__video::after {
  background:
    radial-gradient(ellipse 120% 80% at 50% 30%,
      rgba(0, 22, 36, 0) 0%,
      rgba(0, 22, 36, 0.25) 60%,
      rgba(0, 22, 36, 0.55) 100%),
    linear-gradient(180deg,
      rgba(0, 22, 36, 0) 40%,
      rgba(0, 22, 36, 0.45) 85%,
      rgba(0, 22, 36, 0.65) 100%);
}

@media (max-width: 860px) {
  
  .hero__video iframe {
    min-width: 100vw;
    min-height: 56.25vw;
    width: 177.78vh;
    height: 100vh;
  }
}

.footer__certs {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 5vh, 48px) 0 clamp(8px, 2vh, 16px);
  border-top: 1px solid var(--page-rule-d);
  flex-wrap: wrap;
}
.footer__certs-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--page-mute-d);
  margin: 0;
  flex: 0 0 auto;
}
.footer__certs-list {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  flex-wrap: wrap;
}
.footer__certs-list img {
  height: 64px;
  width: auto;
  opacity: 0.85;
  transition: opacity 200ms var(--ease-out);
}
.footer__certs-list img:hover { opacity: 1; }

.footer__info { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1280px) {
  .footer__info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .footer__info { grid-template-columns: 1fr; }
  .footer__certs { gap: 20px; padding: 24px 0 8px; }
  .footer__certs-list { gap: 18px; }
  .footer__certs-list img { height: 52px; }
}
