:root {
  --navy: #020a1d;
  --navy2: #06183b;
  --ink: #0b1428;
  --blue: #1466ff;
  --cyan: #00c7ff;
  --purple: #5520c9;
  --muted: #5d6572;
  --soft: #f6f8fc;
  --line: #e3e8f1;
  --white: #fff;
  --shadow: 0 16px 40px rgba(9, 19, 38, .10);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Segoe UI, Arial, sans-serif;
  line-height: 1.55;
  background: #fff
}

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

a {
  color: inherit
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  background: #fff;
  padding: .7rem 1rem
}

.skip-link:focus {
  top: 1rem
}

/* Header */
.header {
  height: 82px;
  background: rgba(1, 7, 22, .90);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(16px)
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.brand {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  flex: 0 0 auto
}

.brand img {
  width: 145px;
  height: 68px;
  object-fit: contain;
  object-position: left center
}

.nav {
  display: flex;
  align-items: center;
  gap: 29px
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease
}

.nav a:hover,
.nav .active {
  color: #62d7ff
}

.nav a:not(.nav-cta):hover {
  transform: translateY(-1px)
}

.nav-cta,
.button {
  background: linear-gradient(135deg, #0863ee, #1879ff);
  padding: 13px 21px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 99, 255, .22);
  font-weight: 750;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .2s ease, box-shadow .2s ease
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(0, 99, 255, .30);
  color: #fff
}

.nav-cta {
  padding: 12px 20px
}

.button.ghost {
  background: rgba(3, 16, 42, .22);
  border: 1px solid rgba(190, 218, 255, .78);
  box-shadow: none;
  backdrop-filter: blur(8px)
}

.button.outline {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: none
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  align-items: center;
  gap: 4px;
  cursor: pointer
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff
}

.menu-button b {
  font-size: 9px;
  font-weight: 600
}

/* Premium merged homepage hero */
.hero {
  color: #fff;
  background: #020a1d;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  min-height: 610px
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.04) brightness(.92);
  animation: heroDrift 18s ease-in-out infinite alternate
}

.hero-backdrop:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 7, 22, 1) 0%, rgba(1, 7, 22, .98) 24%, rgba(1, 7, 22, .78) 42%, rgba(1, 7, 22, .28) 63%, rgba(1, 7, 22, .04) 100%)
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at 72% 50%, rgba(0, 132, 255, .18), transparent 34%), radial-gradient(circle at 92% 22%, rgba(62, 86, 255, .12), transparent 24%);
  mix-blend-mode: screen
}

.hero-glow:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35%;
  height: 65%;
  background: linear-gradient(transparent, rgba(0, 155, 255, .10));
  transform: skewY(-4deg);
  filter: blur(14px)
}

.hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center
}

.hero-copy {
  z-index: 2;
  max-width: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 0
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 750;
  color: #00bfff;
  font-size: 11px;
  margin: 0 0 15px
}

.hero h1 {
  font-size: clamp(46px, 5.1vw, 74px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin: 0 0 24px;
  text-shadow: 0 5px 30px rgba(0, 0, 0, .18)
}

.hero-copy>p:not(.eyebrow) {
  font-size: 17px;
  max-width: 590px;
  color: #dce9fb
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap
}

.hero-visual {
  display: none
}

@keyframes heroDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0)
  }

  to {
    transform: scale(1.07) translate3d(-10px, -4px, 0)
  }
}

/* Sections */
.section {
  padding: 78px 0
}

.center {
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  margin: 0
}

.center em,
h2 em {
  color: #155ff8;
  font-style: normal
}

.intro {
  text-align: center;
  color: #4e5662;
  margin: 12px auto 28px;
  max-width: 720px
}

/* Featured cards */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.feature-card {
  aspect-ratio: 1.42;
  border-radius: 11px;
  overflow: hidden;
  position: relative;
  background: #03142d;
  box-shadow: 0 20px 50px rgba(9, 19, 38, .14);
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .7);
  transition: transform .3s ease, box-shadow .3s ease
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 65px rgba(4, 28, 76, .22)
}

.exact-image-card {
  background: #fff
}

.exact-image-card a {
  display: block;
  width: 100%;
  height: 100%
}

.exact-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform .45s ease
}

.exact-image-card:hover img {
  transform: scale(1.025)
}

.image-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 12, 35, .92) 0%, rgba(2, 12, 35, .66) 45%, rgba(2, 12, 35, .10) 100%);
  z-index: -1
}

.feature-card:nth-child(2) .feature-overlay {
  background: linear-gradient(90deg, rgba(18, 4, 58, .94) 0%, rgba(43, 12, 100, .58) 52%, rgba(20, 4, 59, .05) 100%)
}

.feature-content {
  padding: 30px;
  color: #fff;
  max-width: 330px
}

.feature-card small {
  color: #87ffe7;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px
}

.feature-card:nth-child(2) small {
  color: #ef9aff
}

.feature-card h3 {
  font-size: 29px;
  line-height: 1;
  margin: 15px 0
}

.feature-card h3 span {
  color: #00c9ff
}

.feature-card h4 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 15px
}

.feature-card p {
  font-size: 12px;
  color: #d9e4f3
}

.feature-card a {
  display: inline-block;
  color: #fff;
  border: 1px solid #a8c4ea;
  text-decoration: none;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px
}

/* Technology cards */
.technology {
  background: #f7f9fd
}

.tech-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.tech-grid article,
.page-card {
  background: #fff;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 7px 18px rgba(9, 19, 38, .05)
}

.tech-grid article {
  min-height: 225px;
  position: relative
}

.icon-img {
  width: 70px;
  /* height: 38px; */
  object-fit: contain;
  margin-bottom: 8px
}

.tech-grid h3 {
  font-size: 17px;
  line-height: 1.2;
  margin: 4px 0 9px
}

.tech-grid p {
  font-size: 16px;
  color: var(--muted);
  margin: 0
}

.tech-grid a {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 20px;
  color: #1765ff;
  text-decoration: none
}

/* Enterprise band */
.enterprise-band {
  background: #02174a;
  color: #fff;
  padding: 0;
  overflow: hidden
}

.wide-section-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover
}

/* Capital */
.capital-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center
}

.market-image {
  height: 285px;
  border-radius: 10px;
  overflow: hidden
}

.market-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.blue {
  color: #1765ff
}

.capital h2 {
  font-size: 32px;
  line-height: 1.15;
  margin: 0
}

.capital p:not(.eyebrow) {
  color: var(--muted);
  max-width: 440px
}

/* Why / clients */
.trust {
  padding-top: 25px
}

.reasons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 34px 0
}

.reasons article {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid var(--line)
}

.reasons article:last-child {
  border: 0
}

.reasons img {
  width: 52px;
  height: 46px;
  object-fit: contain;
  margin: 0 auto
}

.reasons h3 {
  font-size: 12px;
  margin: 7px 0
}

.reasons p {
  font-size: 11px;
  color: var(--muted);
  margin: 0
}

.clients-heading {
  margin-top: 42px
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 22px
}

.image-logos a {
  height: 68px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden
}

.image-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.all-clients {
  display: block;
  text-align: center;
  color: #1466ff;
  font-size: 12px;
  text-decoration: none;
  margin: 13px
}

/* CTA/footer */
.cta {
  background: linear-gradient(100deg, #061c61, #063fbb);
  color: #fff;
  padding: 30px 0
}

.cta>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.cta h2 {
  font-size: 26px;
  margin: 0
}

.cta p {
  margin: 3px 0;
  font-size: 13px
}

.footer {
  background: #030d2a;
  color: #d6e2ff;
  padding: 44px 0 16px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1.25fr .75fr 1.2fr;
  gap: 25px
}

.footer-brand .brand {
  margin-bottom: 10px
}

.footer-brand p,
.footer p {
  font-size: 11px
}

.footer h3 {
  color: #fff;
  font-size: 13px;
  margin: 0 0 14px
}

.footer a {
  display: block;
  color: #d6e2ff;
  text-decoration: none;
  font-size: 11px;
  margin: 5px 0
}

.footer a:hover {
  color: #62d7ff
}

.footer-bottom {
  border-top: 1px solid #23416b;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px
}

.footer-bottom a {
  display: inline
}

/* Inner page hero with unique image */
.page-hero {
  color: #fff;
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020a1d;
  isolation: isolate
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(1.10) contrast(1.05) brightness(.90);
  transition: transform 1.2s ease
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 23, .97) 0%, rgba(2, 8, 23, .84) 40%, rgba(2, 8, 23, .38) 68%, rgba(2, 8, 23, .18) 100%), radial-gradient(circle at 78% 48%, rgba(0, 157, 255, .18), transparent 30%)
}

.page-hero>.container {
  position: relative;
  z-index: 2;
  padding: 82px 0
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 18px;
  max-width: 850px
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: #d7e5fb;
  font-size: 16px
}

.page-content {
  padding: 70px 0
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: start
}

.two-col h2,
.page-content h2 {
  font-size: 31px;
  line-height: 1.2;
  margin: 0 0 14px
}

.lead {
  font-size: 17px;
  color: #354052
}

.muted {
  color: var(--muted)
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px
}

.page-card h3 {
  font-size: 17px;
  margin: 7px 0
}

.page-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0
}

.kicker {
  display: inline-block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0
}

.check-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 14px
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--blue);
  font-weight: 900
}

.callout {
  padding: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eef5ff, #f7fbff);
  border: 1px solid #dce9ff
}

.callout h3 {
  margin-top: 0
}

.dark-card {
  background: #06183b;
  color: #fff;
  border-radius: 10px;
  padding: 30px
}

.dark-card p {
  color: #d6e5ff
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px
}

.pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf4ff;
  color: #155ff8;
  font-size: 11px;
  font-weight: 700
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px
}

.process div {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px
}

.process b {
  display: block;
  color: var(--blue);
  font-size: 12px;
  margin-bottom: 7px
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px
}

.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line)
}

.contact-item strong {
  display: block;
  margin-bottom: 3px
}

.contact-form {
  display: grid;
  gap: 14px
}

.contact-form label {
  font-size: 12px;
  font-weight: 700
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccd5e4;
  border-radius: 5px;
  font: inherit
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical
}

.notice {
  padding: 14px 16px;
  background: #fff9e8;
  border: 1px solid #f3df9b;
  border-radius: 6px;
  font-size: 12px;
  color: #6b5411
}

.table-wrap {
  overflow-x: auto
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px
}

.simple-table th,
.simple-table td {
  border: 1px solid var(--line);
  padding: 13px;
  text-align: left;
  font-size: 13px
}

.simple-table th {
  background: #f5f8fd
}

/* Responsive */
@media(max-width:1050px) {
  .nav {
    gap: 13px
  }

  .nav a {
    font-size: 12px
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .reasons {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }

  .reasons article {
    border: 0
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:760px) {
  .container {
    width: min(100% - 32px, 1180px)
  }

  .header {
    height: 68px
  }

  .brand img {
    width: 122px;
    height: 56px
  }

  .brand strong,
  .brand small {
    display: none
  }

  .nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #030d2a;
    padding: 14px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .25)
  }

  .nav.open {
    display: flex
  }

  .nav a {
    padding: 9px
  }

  .nav-cta {
    margin-top: 7px;
    text-align: center;
    justify-content: center
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center
  }

  .hero {
    min-height: 640px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 640px
  }

  .hero-backdrop img {
    object-position: 66% center;
    animation: none
  }

  .hero-backdrop:after {
    background: linear-gradient(180deg, rgba(1, 7, 22, .80) 0%, rgba(1, 7, 22, .90) 38%, rgba(1, 7, 22, .82) 72%, rgba(1, 7, 22, .96) 100%)
  }

  .hero-copy {
    padding: 76px 0 52px;
    max-width: 720px;
    justify-content: flex-end
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 58px);
    letter-spacing: -2.2px
  }

  .hero-copy>p:not(.eyebrow) {
    font-size: 15px
  }

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

  .featured-grid,
  .capital-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr
  }

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

  .enterprise-band {
    padding: 0
  }

  .wide-section-image {
    min-height: 145px;
    object-fit: cover
  }

  .reasons {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
  }

  .logos {
    grid-template-columns: repeat(3, 1fr)
  }

  .cta>.container {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column
  }

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

  .footer-bottom {
    flex-direction: column
  }

  .page-hero {
    min-height: 390px
  }

  .page-hero>.container {
    padding: 70px 0 55px
  }

  .page-hero-media img {
    transform: scale(1.015)
  }

  .page-hero-overlay {
    background: linear-gradient(180deg, rgba(2, 8, 23, .78), rgba(2, 8, 23, .93))
  }

  .card-grid {
    grid-template-columns: 1fr
  }

  .process {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:430px) {
  .container {
    width: calc(100% - 28px)
  }

  .center {
    font-size: 25px
  }

  .tech-grid {
    grid-template-columns: 1fr
  }

  .reasons {
    grid-template-columns: 1fr
  }

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

  .process {
    grid-template-columns: 1fr
  }

  .feature-card {
    min-height: 0
  }

  .hero-copy {
    padding-top: 48px
  }

  .hero {
    min-height: 600px
  }

  .hero-grid {
    min-height: 600px
  }

  .hero-copy {
    padding-top: 56px
  }

  .hero-visual {
    height: 0;
    max-height: none
  }

  .page-hero {
    min-height: 360px
  }

  .page-hero h1 {
    font-size: 40px
  }
}

/* ================= VITCO V4 OVERRIDES ================= */
.header {
  height: 86px
}

.nav-wrap {
  max-width: 1240px
}

.brand {
  gap: 11px;
  min-width: 250px
}

.brand-mark {
  width: 42px !important;
  height: 56px !important;
  object-fit: contain !important
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-copy strong {
  font-size: 22px;
  letter-spacing: .4px;
  color: #fff
}

.brand-copy small {
  font-size: 10px;
  color: #bcd1ef;
  margin-top: 5px;
  white-space: nowrap
}

.nav {
  gap: 24px
}

.nav a {
  font-size: 13px
}

.nav-cta {
  padding: 12px 18px !important
}

.section-heading {
  text-align: left;
  margin-bottom: 30px
}

.section-heading.center {
  text-align: center
}

.section-heading h2 {
  margin: 5px 0 10px
}

.section-heading p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto
}

.section-heading:not(.center) p {
  margin: 0
}

.hero {
  min-height: 640px
}

.hero-backdrop img {
  filter: saturate(1.1) contrast(1.03) brightness(.83);
  object-position: center
}

.hero-backdrop:after {
  background: linear-gradient(90deg, rgba(1, 7, 22, .98) 0%, rgba(1, 7, 22, .92) 25%, rgba(1, 7, 22, .68) 48%, rgba(1, 7, 22, .20) 78%, rgba(1, 7, 22, .05) 100%)
}

.hero-copy {
  max-width: 690px
}

.hero h1 {
  font-size: clamp(52px, 5.8vw, 78px)
}

.featured-grid {
  gap: 18px
}

.feature-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(5, 16, 40, .14)
}

.feature-card img {
  width: 100%;
  /* height: 320px; */
  object-fit: cover; border-radius: 21px;
}

.exact-image-card a {
  display: block;
  position: relative
}

.feature-link {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: #fff;
  background: rgba(2, 8, 23, .72);
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px)
}

.ai-innovation {
  background: linear-gradient(180deg, #f7faff, #fff)
}

.innovation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.innovation-card {
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 45px rgba(6, 20, 50, .12);
  isolation: isolate
}

.innovation-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1
}

.innovation-card.soarix {
  background: radial-gradient(circle at 80% 50%, rgba(0, 180, 255, .42), transparent 35%), linear-gradient(120deg, #031331, #082d72 55%, #031331)
}

.innovation-card.sonacred {
  background: radial-gradient(circle at 80% 50%, rgba(130, 60, 255, .42), transparent 35%), linear-gradient(120deg, #0b0630, #24106d 55%, #08051f)
}

.innovation-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 9, 28, .96) 0%, rgba(2, 9, 28, .82) 48%, rgba(2, 9, 28, .15) 100%);
  z-index: -1
}

.innovation-copy {
  padding: 32px;
  color: #fff;
  max-width: 620px
}

.innovation-copy h3 {
  font-size: 34px;
  margin: 10px 0 3px
}

.innovation-copy h4 {
  font-size: 17px;
  margin: 0 0 10px;
  color: #72d8ff
}

.innovation-copy p {
  max-width: 470px;
  color: #d8e6ff
}

.mini-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 9px;
  letter-spacing: 1.1px;
  font-weight: 800;
  color: #8fe5ff
}

.innovation-card.sonacred .innovation-copy h4 {
  color: #c7a5ff
}

.enterprise-band {
  padding: 0;
  background: #03143c
}

.enterprise-band-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 28px;
  min-height: 300px
}

.enterprise-band-inner h2 {
  font-size: 32px;
  color: #fff;
  line-height: 1.15;
  margin: 8px 0
}

.enterprise-band-inner h2 em {
  color: #56baff;
  font-style: normal
}

.enterprise-band-inner p {
  color: #c8dbf6;
  max-width: 500px
}

.enterprise-band .wide-section-image {
  /* height: 300px; */
  object-fit: cover;
  border-radius: 20px
}

.light {
  color: #7adfff
}

.page-hero {
  min-height: 510px
}

.page-hero-media img {
  filter: saturate(1.12) contrast(1.08) brightness(.92);
  transform: scale(1.01)
}

.page-hero-overlay {
  background: linear-gradient(90deg, rgba(1, 7, 22, .97) 0%, rgba(1, 7, 22, .90) 34%, rgba(1, 7, 22, .48) 66%, rgba(1, 7, 22, .12) 100%), radial-gradient(circle at 80% 50%, rgba(0, 157, 255, .25), transparent 34%)
}

.page-hero>.container {
  padding: 100px 0 70px
}

.page-hero h1 {
  font-size: clamp(46px, 5vw, 70px);
  max-width: 820px
}

.breadcrumbs {
  margin-top: 28px;
  font-size: 11px;
  color: #a8c4e8
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none
}

.accent {
  color: #62d7ff
}

.page-content {
  padding: 78px 0
}

.tech-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.tech-detail-grid .page-card {
  min-height: 180px
}

.large-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px
}

.large-logos>div {
  height: 142px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(5, 20, 50, .05)
}

.large-logos img {
  /* width: 78%; */
  height: 80%; padding: 7px;
  /* object-fit: contain */
}

.trust-panel {
  margin-top: 45px;
  padding: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #06183b, #0a2f72);
  color: #fff
}

.trust-panel h2 {
  margin: 0 0 8px
}

.trust-panel p {
  margin: 0;
  color: #d4e5ff
}

.service-grid {
  grid-template-columns: repeat(3, 1fr)
}

.service-callout {
  margin-top: 36px
}

.legal-copy {
  max-width: 900px
}

.legal-copy h2 {
  margin-top: 34px
}

.legal-copy h3 {
  margin-top: 28px
}

.footer {
  padding-top: 50px
}

.footer-grid {
  grid-template-columns: 1.45fr 1fr 1fr 1.1fr 1fr
}

.footer-brand .brand-mark {
  width: 38px !important;
  height: 52px !important
}

.footer-brand .brand-copy strong {
  font-size: 20px
}

.footer-brand p {
  color: #a9bfdf
}

.footer-contact-link {
  display: inline-block !important;
  color: #fff !important;
  border: 1px solid #2e67c8;
  padding: 8px 11px;
  border-radius: 6px;
  margin-top: 5px !important
}

@media(max-width:1050px) {
  .brand {
    min-width: 210px
  }

  .nav {
    gap: 10px
  }

  .nav a {
    font-size: 11px
  }

  .innovation-grid {
    grid-template-columns: 1fr
  }

  .tech-detail-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .enterprise-band-inner {
    grid-template-columns: 1fr
  }

  .enterprise-band .wide-section-image {
    /* height: 240px */
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:760px) {
  .header {
    height: 70px
  }

  .brand-mark {
    width: 34px !important;
    height: 48px !important
  }

  .brand-copy strong {
    font-size: 18px
  }

  .brand-copy small {
    font-size: 8px
  }

  .nav {
    top: 68px
  }

  .hero {
    min-height: 650px
  }

  .hero-backdrop img {
    object-position: 65% center
  }

  .hero-backdrop:after {
    background: linear-gradient(180deg, rgba(1, 7, 22, .68), rgba(1, 7, 22, .88) 45%, rgba(1, 7, 22, .98) 100%)
  }

  .hero-copy {
    padding-top: 70px
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px)
  }

  .feature-card img {
    height: 280px
  }

  .innovation-copy {
    padding: 25px
  }

  .innovation-copy h3 {
    font-size: 28px
  }

  .page-hero {
    min-height: 420px
  }

  .page-hero>.container {
    padding: 75px 0 55px
  }

  .page-hero-overlay {
    background: linear-gradient(180deg, rgba(1, 7, 22, .60), rgba(1, 7, 22, .92) 72%, rgba(1, 7, 22, .98))
  }

  .tech-detail-grid,
  .service-grid {
    grid-template-columns: 1fr
  }

  .large-logos {
    grid-template-columns: repeat(2, 1fr)
  }

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

@media(max-width:430px) {
  .brand-copy small {
    display: none
  }

  .large-logos {
    grid-template-columns: 1fr
  }

  .hero {
    min-height: 620px
  }

  .feature-card img {
    height: 250px
  }

  .innovation-card {
    min-height: 360px
  }

  .page-hero h1 {
    font-size: 40px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}