:root {
  --navy: #000445;
  --navy-2: #0A0E52;
  --ink: #45465F;
  --teal: #5AB5A1;
  --teal-dark: #3F9583;
  --bg-light: #F0F3F6;
  --line: #E3E7EE;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', -apple-system, 'Segoe UI', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(17px, 1.6vw, 19px);
  max-width: 820px;
}

section {
  padding: 88px 0;
}

.center {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.center .lead {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 6px;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
}

.btn-primary:hover {
  background: #6FC7B4;
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

header.scrolled {
  background: rgba(0, 4, 69, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.nav img {
  height: 36px;
  width: auto;
}

.nav .btn {
  padding: 11px 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

/* Nav menu */
.nav-menu {
  display: contents;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-menu a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a:not(.btn) {
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.nav-menu a:not(.btn).active {
  border-bottom-color: var(--accent, #5AB5A1);
}

.nav-cta {
  color: var(--white);
  justify-self: end;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .nav {
    position: relative;
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 4, 69, .97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
  }

  .nav-menu.open {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
    padding: 8px 24px 20px;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .nav-menu a:not(.btn).active {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .nav-cta {
    display: block;
    margin-top: 16px;
    text-align: center;
    border-bottom: 0;
  }
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 110px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 920px;
}

.hero > .wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
@media(min-width: 992px){
	.hero-bg {
	  position: absolute;
	  inset: 0;
	  background: url('assets/Hero_back.png') center/cover no-repeat;
	  opacity: .85;
	}
}
@media(max-width: 991px){
	.hero-bg {
	  position: absolute;
	  inset: 0;
	  background: url('assets/landing_hero_mob_1.png') center -20px/cover no-repeat;
	  opacity: .85;
	}
	.hero > .wrap {
		padding-top: 70vw;
	}
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 760px;
  padding: 40px 0;
  text-align: left;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 56px);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero p {
  font-size: clamp(17px, 1.7vw, 20px);
  color: rgba(255, 255, 255, .88);
  max-width: 640px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 960px) {
  .hero {
    min-height: 680px;
  }
}
/* Trust bar */
.trustbar {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .1);
  border-top: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(7.5px);
  overflow: hidden;
  padding: 18px 0;
}

.trustbar-track {
  display: flex;
  width: max-content;
  animation: trustbar-scroll 28s linear infinite;
}

.trustbar-track:hover {
  animation-play-state: paused;
}

.trustbar-list {
  display: flex;
  align-items: center;
  list-style: none;
  flex: none;
}

.trustbar-list li {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.trustbar-list li::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin: 0 18px;
}

@keyframes trustbar-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media(prefers-reduced-motion:reduce) {
  .trustbar-track {
    animation: none;
  }
}

/* Sector chips */
.sectors-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.sectors-intro-text {
  max-width: 600px;
}

.sectors-intro-text .lead {
  max-width: 100%;
}

.sectors-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-box {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

.radar-box svg {
  width: 100%;
  height: auto;
  display: block;
}

.radar-sweep {
  transform-origin: 250px 250px;
  animation: radar-sweep 6s linear infinite;
}

@keyframes radar-sweep {
  to {
    transform: rotate(360deg);
  }
}

.radar-blip {
  animation: radar-blip 6s ease-out infinite;
}

.radar-blip.b2 {
  animation-delay: 2s;
}

.radar-blip.b3 {
  animation-delay: 4.2s;
}

@keyframes radar-blip {

  0%,
  6% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  30% {
    opacity: .9;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.radar-caption {
  margin-top: 16px;
  text-align: center;
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.slider-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  text-align: center;
  margin-top: 60px;
}

.sectors-slider-wrap {
  position: relative;
  margin-top: 24px;
}

.sectors-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 24px 22px max(24px, calc((100vw - 1180px)/2 + 24px));
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sectors-slider::-webkit-scrollbar {
  display: none;
}

.sector-card {
  position: relative;
  flex: none;
  width: 210px;
  height: 210px;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.sector-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 4, 69, 0) 40%, rgba(0, 4, 69, .9) 100%);
}

.sector-card span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: none;
  background: var(--teal);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.slider-arrow:hover {
  background: #6FC7B4;
  color: var(--navy);
}

/* Layers */
.dark {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
}

.dark h2,
.dark h3 {
  color: var(--white);
}

.dark .kicker {
  color: var(--teal);
}

.layers-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 160px 0 180px;
}

.layers-section h2 .accent {
  color: var(--teal);
}

.layers-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 107%;
  z-index: 0;
}
@media(min-width:992px){
	.layers-bg img {
	  display: block;
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}
	.layers-bg img.layers-bg-mobile {
		display: none;
	}	
}
@media(max-width:991px){
	.layers-bg img {
	  display: block;
	  width: 100%;
	}
	.layers-bg img.layers-bg-desktop {
		display: none!important;
	}
	.layers-bg {
		top: 200px;
	}
}
.layers-section .wrap {
  position: relative;
  z-index: 1;
}

.layers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 540px;
  position: relative;
}

.layer {
  background: rgba(240, 243, 246, .15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 30px 26px;
  position: relative;
  transition: border-color .2s;
}

.layer:hover {
  border-color: var(--teal);
}

.layer .num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--teal);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.layer h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.layer p {
  font-size: 15px;
  color: rgba(255, 255, 255, .75);
}

/* Capabilities */
.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
  margin-top: 44px;
}

.cap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
}

.cap svg {
  flex: none;
  margin-top: 3px;
}

/* Range cards */
.ranges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.range-card {
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 258px;
}

.range-card .ph {
  width: 220px;
  flex: none;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.range-card .ph img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.range-card .ph.contain img {
  object-fit: contain;
  padding: 14px;
}

.range-body {
  padding: 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.range-body h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 9px;
}

.range-body p {
  font-size: 14.5px;
  color: var(--ink);
}

/* Outcomes */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 8px;
}

/* Use cases */
.use-cases {
  background: #F0F3F6;
}

.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  margin-top: 52px;
}

.case {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case-img {
  width: 100%;
  aspect-ratio: 380 / 227;
  border-radius: 8px;
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case h3 {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--navy);
}

.case p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

.case-cta {
  background: var(--navy);
  border-radius: 8px;
  padding: 32px 34px;
  gap: 18px;
  aspect-ratio: 380 / 227;
  align-self: start;
  box-sizing: border-box;
  overflow: hidden;
  justify-content: center;
}

.case-cta h3 {
  color: var(--white);
}

.case-cta p {
  color: rgba(255, 255, 255, .78);
}

/* Why */
.diffs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.diff {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 15.5px;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 18px;
  color: var(--ink);
}

.diff svg {
  flex: none;
}

/* CTA / form */
.cta {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 72px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('assets/Final_CTA_Section.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 4, 69, .35), rgba(0, 4, 69, .5));
}

.cta .wrap {
  position: relative;
  z-index: 2;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 555px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 1180px) {
  .cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    gap: 40px;
  }
}

.cta-text h2 {
  color: var(--teal);
  font-size: 32px;
  line-height: 1.18;
  max-width: 480px;
  margin-bottom: 14px;
}

.cta-text p {
  color: var(--white);
  font-size: 17px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 14px;
}

.cta-text .cta-emph {
  font-weight: 700;
  margin-bottom: 0;
}

.form-card {
  background: rgba(240, 243, 246, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  padding: 30px 26px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.form-card h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 14px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-group {
  margin-bottom: 14px;
}

.f-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  height: 44px;
  padding: 12px 14px;
  border: 1px solid #E3E7EE;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #F0F3F6;
}

.f-group textarea {
  height: 70px;
  resize: vertical;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  outline: 2px solid var(--teal);
  border-color: var(--teal);
}

.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  border-radius: 6px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.form-submit:hover {
  background: #4CA692;
}

.thanks {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--white);
}

.thanks h3 {
  font-size: 22px;
  margin: 18px 0 10px;
  color: var(--white);
}

.thanks p {
  color: rgba(255, 255, 255, .85);
}

/* Footer */
footer {
  background: var(--navy);
  padding: 13px 0 17px;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.foot img {
  height: 23px;
  width: auto;
}

.foot p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

@media(max-width:960px) {

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

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

  .split,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .sectors-intro {
    grid-template-columns: 1fr;
  }

  .sectors-intro-visual {
    order: -1;
    max-width: 220px;
    margin: 0 auto;
  }

  .layers-section {
    padding: 100px 0;
  }

  .layers {
    margin-top: 320px;
  }
}

@media(max-width:600px) {
  section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
  }
	.hero h1 {
		font-size: 28px;
	}
	.hero-ctas .btn {
		width: 100%;
		text-align: center;
	}
  .layers-section {
    padding: 64px 0;
  }

  .layers {
    margin-top: 370px;
  }

  .layers,
  .ranges,
  .caps,
  .cases,
  .diffs,
  .f-row {
    grid-template-columns: 1fr;
  }

  .range-card {
    flex-direction: column;
    height: auto;
  }

  .range-card .ph {
    width: 100%;
    height: 180px;
  }

  .trustbar-list li::after {
    margin: 0 10px;
  }

  .trustbar-list li {
    font-size: 12px;
  }

  .trustbar-track {
    animation-duration: 18s;
  }

  .slider-arrow {
    display: none;
  }
}