:root {
  --navy: #070D23;
  --navy2: #0A1F5C;
  --blue: #0052FF;
  --ice: #D6E6FF;
  --paper: #F5F7FA;
  --white: #fff;
  --ink: #0B1634;
  --muted: #5B6784;
  --line: #DCE4F1;
  --soft: #F7F9FC;
  --container: 1280px;
  --font: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto
}

.skip-link {
  position: absolute;
  left: -9999px
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px
}

.site-header {
  height: 74px;
  background: transparent;
  border-bottom: 1px solid transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .25s ease, border-color .25s ease
}

.site-header.is-scrolled {
  background: rgba(4, 12, 34, .98);
  border-bottom: 1px solid rgba(214, 230, 255, .12)
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px
}

.brand {
  width: 220px;
  display: flex;
  align-items: center
}

.brand img {
  width: 214px;
  height: auto
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1
}

.desktop-nav a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .88);
  white-space: nowrap;
  padding: 27px 0;
  position: relative
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff
}

.desktop-nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue)
}

.top-cta {
  font-size: 12px;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  padding: 12px 19px;
  border-radius: 5px;
  white-space: nowrap
}

.menu-toggle,
.mobile-nav {
  display: none
}

.home-hero,
.page-hero {
  background: #050B1E;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 100px
}

.page-hero.compact {
  background-image: url("assets/reference-wave.jpg");
  background-position: center 45%;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-hero:after,
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 45%, rgba(0, 82, 255, .18), transparent 32%);
  pointer-events: none
}

.home-hero-grid {
  height: 415px;
  display: grid;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 48px
}

.home-hero-copy {
  max-width: 620px;
  padding: 34px 0 28px
}

.eyebrow,
.section-kicker {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue)
}

.home-hero h1,
.page-hero h1 {
  font-size: 39px;
  line-height: 1.18;
  letter-spacing: -.035em;
  margin: 18px 0 18px;
  font-weight: 600
}

.hero-highlight {
  color: var(--blue)
}

.home-hero p,
.page-hero p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .75);
  max-width: 620px;
  margin: 0
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 600;
  padding: 13px 18px;
  border-radius: 5px;
  transition: .2s
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue)
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(214, 230, 255, .42)
}

.btn:hover {
  transform: translateY(-1px)
}

.icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.arrow-icon {
  width: 14px;
  height: 14px
}

.inline-arrow {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-left: 5px
}

.home-hero-art {
  overflow: hidden
}

.home-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  opacity: .94
}

.release-record-anchor {
  position: relative;
  height: 0
}

.release-record {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 5;
  min-height: 118px;
  background: rgba(11, 22, 52, 0.75);
  border: 1px solid rgba(53, 105, 209, .62);
  border-radius: 7px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: center;
  padding: 17px 24px 17px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18)
}

.release-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 24px
}

.release-icon {
  width: 52px;
  height: 52px;
  border-radius: 7px;
  border: 1px solid rgba(0, 82, 255, .55);
  display: grid;
  place-items: center;
  color: #10C6FF
}

.release-feature strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #10C6FF;
  margin: 4px 0
}

.release-feature small {
  color: rgba(255, 255, 255, .72);
  font-size: 12px
}

.record-kicker,
.record-cell span {
  display: block;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 8px
}

.record-cell {
  min-height: 64px;
  border-left: 1px solid rgba(214, 230, 255, .12);
  padding: 4px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.record-cell strong {
  font-size: 13px;
  font-weight: 550;
  color: #fff
}

.status {
  display: flex;
  align-items: center;
  gap: 8px
}

.status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #82DF47;
  box-shadow: 0 0 0 5px rgba(130, 223, 71, .09)
}

.content-section {
  padding: 65px 0
}

.release-record-anchor+.content-section {
  padding-top: 100px
}

.white-section {
  background: #fff
}

.subtle-section {
  background: linear-gradient(180deg, #F8FAFD, #F5F7FA);
  border-top: 1px solid #E9EEF6;
  border-bottom: 1px solid #E4EAF4
}

.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px
}

.feature-card,
.solution-card,
.sector-card {
  background: #fff;
  border: 1px solid #D9E1ED;
  border-radius: 7px;
  padding: 26px 22px 24px;
  min-height: 190px
}

.line-icon {
  width: 42px;
  height: 42px;
  color: var(--blue);
  margin-bottom: 18px
}

.line-icon .icon-svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.55
}

.feature-card h3,
.solution-card h3,
.sector-card h3 {
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 10px;
  font-weight: 600
}

.feature-card p,
.solution-card p,
.sector-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px
}

.section-heading-row h2,
.partnership-section h2,
.content-section h2 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -.025em;
  margin: 9px 0 0;
  font-weight: 600
}

.view-link,
.solution-card>a,
.partner-copy>a,
.trust-item a,
.text-link {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 550
}

.solution-card {
  min-height: 220px;
  display: flex;
  flex-direction: column
}

.solution-card>a {
  margin-top: auto;
  padding-top: 22px
}

.trust-strip {
  background: linear-gradient(105deg, #05122F, #07183F);
  color: #fff;
  padding: 32px 0
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.trust-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 0 42px;
  border-left: 1px solid rgba(214, 230, 255, .14)
}

.trust-item:first-child {
  border-left: 0;
  padding-left: 0
}

.trust-item:last-child {
  padding-right: 0
}

.trust-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 82, 255, .5);
  box-shadow: 0 0 28px rgba(0, 82, 255, .28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0ED0FF
}

.trust-icon .icon-svg {
  width: 26px;
  height: 26px
}

.trust-item span {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .13em
}

.trust-item p {
  font-size: 12px;
  line-height: 1.48;
  color: rgba(255, 255, 255, .7);
  margin: 8px 0 9px
}

.trust-item a {
  color: #5DA1FF
}

.partnership-section {
  background: #fff;
  padding: 56px 0
}

.partnership-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 58px;
  align-items: center
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px
}

.partner-logos>span {
  height: 54px;
  width: 1px;
  background: #C9D3E2
}

.qm-blue {
  height: 33px;
  width: auto
}

.qustream-box {
  background: #060606;
  border-radius: 5px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center
}

.qustream-box img {
  height: 42px;
  width: auto
}

.partner-copy h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 12px;
  font-weight: 600
}

.partner-copy p {
  font-size: 13px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 0 16px
}

.cta-section {
  background: #fff;
  padding: 0 0 44px
}

.cta-panel {
  min-height: 118px;
  background: linear-gradient(105deg, #061333, #071C50);
  border: 1px solid rgba(0, 82, 255, .32);
  border-radius: 6px;
  padding: 26px 38px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta-panel:after {
  content: none
}

.cta-panel>* {
  position: relative;
  z-index: 1
}

.cta-panel h2 {
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 7px;
  font-weight: 500
}

.cta-panel p {
  font-size: 12px;
  color: rgba(255, 255, 255, .64);
  margin: 0
}

.cta-checks {
  display: grid;
  gap: 8px;
  font-size: 11px
}

.cta-checks span:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid #1482FF;
  border-radius: 50%;
  color: #1482FF;
  margin-right: 8px;
  font-size: 10px
}

.page-hero .hero-grid {
  min-height: 410px;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  position: relative;
  z-index: 1
}

.page-hero.compact .hero-grid {
  min-height: 365px
}

.page-hero h1 {
  font-size: 38px;
  max-width: 720px
}

.page-hero .hero-copy {
  padding: 54px 0
}

.page-hero .hero-art {
  height: 100%;
  min-height: 360px
}

.page-hero .hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.info-panel {
  background: #fff;
  border: 1px solid #DCE4EF;
  border-radius: 7px;
  padding: 28px
}

.info-panel.emphasis {
  background: linear-gradient(145deg, #07132F, #0A1F5C);
  color: #fff;
  border-color: #0A1F5C
}

.info-panel.emphasis p,
.info-panel.emphasis li {
  color: rgba(255, 255, 255, .74)
}

.info-panel h2 {
  font-size: 23px;
  margin: 10px 0 16px
}

.info-panel>p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6
}

.number-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0
}

.number-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid #E1E7F0
}

.number-list b {
  font-size: 13px
}

.number-list span {
  font-size: 13px;
  color: var(--muted)
}

.tag-cloud,
.use-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px
}

.tag-cloud span,
.use-grid span {
  font-size: 12px;
  padding: 8px 10px;
  background: #EEF4FF;
  border: 1px solid #D7E4FF;
  border-radius: 4px;
  color: #15316F
}

.boundary-note {
  margin-top: 24px;
  padding: 16px;
  background: #F5F8FC;
  border-left: 3px solid var(--blue)
}

.boundary-note strong {
  font-size: 12px
}

.boundary-note p {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 0
}

.scope-table {
  margin-top: 22px;
  border: 1px solid #DCE4EF;
  border-radius: 7px;
  overflow: hidden
}

.scope-head,
.scope-row {
  display: grid;
  grid-template-columns: 1.35fr .55fr 1.4fr;
  gap: 20px;
  align-items: center
}

.scope-head {
  background: #EEF4FF;
  padding: 14px 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #38507E
}

.scope-row {
  padding: 17px 20px;
  border-top: 1px solid #E3E8F0
}

.scope-row strong {
  font-size: 13.5px
}

.scope-row p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0
}

.state {
  font-size: 11px;
  padding: 6px 8px;
  border-radius: 4px;
  width: max-content
}

.state.current {
  background: #E8F0FF;
  color: #0048DC
}

.state.partner {
  background: #EEF0F5;
  color: #556078
}

.solution-detail {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}

.solution-detail>div>p {
  font-size: 14px;
  color: var(--muted);
  max-width: 640px
}

.five-step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px
}

.five-step-grid>div {
  background: #fff;
  border: 1px solid #DCE4EF;
  border-radius: 7px;
  padding: 22px 18px;
  min-height: 150px
}

.five-step-grid b {
  font-size: 11px;
  color: var(--blue)
}

.five-step-grid h3 {
  font-size: 15px;
  margin: 12px 0 8px
}

.five-step-grid p {
  font-size: 12px;
  color: var(--muted);
  margin: 0
}

.small-disclaimer {
  font-size: 11.5px;
  color: var(--muted);
  margin: 17px 0 0
}

.clean-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0
}

.clean-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 0 10px 18px;
  border-top: 1px solid #E1E7F0;
  position: relative
}

.clean-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 17px
}

.three-measures,
.status-list,
.finding-list {
  display: grid;
  gap: 10px;
  margin-top: 20px
}

.three-measures>div,
.status-list span,
.finding-list>div {
  border: 1px solid #DFE6EF;
  border-radius: 6px;
  padding: 13px
}

.three-measures b,
.status-list b,
.finding-list b {
  display: block;
  font-size: 12.5px;
  margin-bottom: 4px
}

.three-measures span,
.status-list span,
.finding-list p {
  font-size: 12px;
  color: var(--muted);
  margin: 0
}

.code-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px
}

.code-grid code {
  font-size: 11px;
  background: #F1F4F9;
  border: 1px solid #E0E6F0;
  padding: 9px;
  border-radius: 4px;
  color: #273653
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px
}

.security-grid article {
  border: 1px solid #DCE4EF;
  border-radius: 7px;
  padding: 22px;
  background: #fff
}

.security-grid h3 {
  font-size: 15px;
  margin: 0 0 9px
}

.security-grid p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0
}

.partnership-grid.large {
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.brand-role {
  border: 1px solid #DCE4EF;
  border-radius: 7px;
  padding: 28px;
  background: #fff
}

.brand-role>span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  margin: 22px 0 8px;
  font-weight: 700
}

.brand-role p {
  font-size: 13px;
  color: var(--muted)
}

.qustream-role .qustream-box {
  width: max-content
}

.text-link {
  color: var(--blue)
}

.site-footer {
  background: linear-gradient(105deg, #050F29, #07183F);
  color: #fff
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, .65fr);
  gap: 42px;
  padding: 48px 0 36px
}

.footer-brand img {
  height: 23px;
  width: auto
}

.footer-brand p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .6);
  max-width: 260px;
  line-height: 1.55;
  margin: 17px 0
}

.social-row {
  display: flex;
  gap: 9px
}

.social-row span {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(214, 230, 255, .24);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7DAEFF;
  font-size: 10px
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer-col h4 {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, .72)
}

.footer-col a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .58)
}

.footer-bottom {
  border-top: 1px solid rgba(214, 230, 255, .1);
  padding: 18px 0 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .45);
  font-size: 10.5px
}

.footer-bottom div {
  display: flex;
  gap: 26px
}

@media(max-width:1120px) {
  .desktop-nav {
    gap: 17px
  }

  .desktop-nav a {
    font-size: 11.5px
  }

  .brand {
    width: 180px
  }

  .brand img {
    width: 176px
  }

  .release-record {
    grid-template-columns: 1.3fr repeat(2, 1fr)
  }

  .record-cell:nth-last-child(-n+2) {
    display: none
  }

  .four-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-grid {
    grid-template-columns: 1fr
  }

  .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(214, 230, 255, .14);
    padding: 22px 0
  }

  .trust-item:first-child {
    border-top: 0
  }

  .partnership-grid,
  .solution-detail,
  .two-grid {
    grid-template-columns: 1fr
  }

  /* Ensure the large partnership variant stacks on narrower screens */
  .partnership-grid.large {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Make partner boxes full-width so logos/content scale nicely */
  .qustream-role .qustream-box,
  .brand-role {
    width: 100%;
  }

  .five-step-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr)
  }

  .footer-col:nth-last-child(-n+2) {
    margin-top: 15px
  }

  .cta-panel {
    grid-template-columns: 1fr 1fr
  }

  .cta-panel>.btn {
    grid-column: 2
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:860px) {

  .desktop-nav,
  .top-cta {
    display: none
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 6px auto
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #06112D;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(214, 230, 255, .12)
  }

  .mobile-nav.open {
    display: flex;
    flex-direction: column
  }

  .mobile-nav a {
    color: #fff;
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(214, 230, 255, .08)
  }

  .mobile-cta {
    color: #fff !important;
    background: var(--blue);
    padding: 12px 15px !important;
    margin-top: 12px;
    border-radius: 5px;
    text-align: center
  }

  .home-hero {
    padding-top: 80px !important
  }

  .home-hero-grid,
  .page-hero .hero-grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    margin-bottom: 24px
  }

  .home-hero-copy,
  .page-hero .hero-copy {
    padding: 54px 0 34px
  }

  .home-hero-copy {
    padding-top: 20px !important
  }

  .page-hero .hero-art {
    height: 280px;
    min-height: 0
  }

  .release-record-anchor {
    height: auto;
    margin-top: 20px
  }

  .release-record {
    position: static;
    transform: none;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    grid-template-columns: 1fr 1fr
  }

  .release-feature {
    grid-column: 1/-1;
    border-bottom: 1px solid rgba(214, 230, 255, .1);
    padding-bottom: 15px
  }

  .record-cell:nth-last-child(-n+2) {
    display: flex
  }

  .record-cell {
    border-left: 0;
    border-top: 1px solid rgba(214, 230, 255, .1)
  }

  .release-record-anchor+.content-section {
    padding-top: 24px
  }

  .cta-panel {
    grid-template-columns: 1fr
  }

  .cta-panel>.btn {
    grid-column: auto;
    width: max-content
  }

  .footer-main {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .scope-head {
    display: none
  }

  .scope-row {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .security-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .page-hero.compact {
    background-image: none;
  }

  .container {
    width: min(100% - 30px, var(--container))
  }

  .site-header {
    height: 66px
  }

  .brand img {
    width: 168px
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 31px
  }

  .home-hero p,
  .page-hero p {
    font-size: 14px
  }

  .page-hero .hero-art {
    height: 220px
  }

  .hero-actions {
    flex-wrap: wrap
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    justify-content: center
  }

  .release-record {
    grid-template-columns: 1fr;
    padding: 16px
  }

  .record-cell {
    padding: 13px 0
  }

  .four-grid,
  .five-step-grid {
    grid-template-columns: 1fr
  }

  .content-section {
    padding: 48px 0
  }

  .feature-card,
  .solution-card {
    min-height: 0
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column
  }

  .partner-logos {
    align-items: flex-start;
    flex-direction: column
  }

  .partner-logos>span {
    height: 1px;
    width: 100%
  }

  .cta-panel {
    padding: 24px
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px
  }

  .number-list li {
    grid-template-columns: 1fr
  }

  .code-grid {
    grid-template-columns: 1fr
  }
}

/* Three.js motion media - replaces only the former static image layers. */
.three-scene {
  position: relative;
  isolation: isolate;
  background: transparent
}

.three-scene .three-webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 2;
  pointer-events: none
}

.three-scene .three-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  opacity: .94;
  z-index: 1;
  transition: opacity .45s ease
}

.three-scene.is-live .three-fallback {
  opacity: 0
}

.home-hero-art.three-scene,
.page-hero .hero-art.three-scene {
  overflow: hidden
}

.home-hero-art.three-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/reference-wave.jpg");
  background-position: center 45%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.home-hero-art.three-scene .three-fallback {
  top: 50%;
  left: auto;
  right: 0;
  bottom: auto;
  width: 100%;
  height: auto;
  transform: translateY(-50%) scale(1.25);
  transform-origin: center;
}

.cta-three {
  position: absolute;
  inset: 0 0 0 auto;
  width: 38%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate
}

.cta-three .three-webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 2;
  pointer-events: none
}

.cta-three .three-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .23;
  z-index: 1;
  transition: opacity .45s ease
}

.cta-three.is-live .three-fallback {
  opacity: 0
}

.cta-panel>*:not(.cta-three) {
  position: relative;
  z-index: 1
}

@media(max-width:860px) {
  .cta-three {
    width: 52%
  }
}

@media(max-width:600px) {
  .cta-three {
    width: 72%;
    opacity: .74
  }
}

@media(prefers-reduced-motion:reduce) {

  .three-scene .three-webgl-canvas,
  .cta-three .three-webgl-canvas {
    animation: none
  }
}

.coming-soon-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 9, 24, 0.75);
  z-index: 300;
}
.coming-soon-popup.is-open {
  display: flex;
}
.coming-soon-card {
  position: relative;
  width: min(92vw, 360px);
  padding: 28px 28px 24px;
  border-radius: 22px;
  background: #081428;
  border: 1px solid rgba(0, 82, 255, 0.3);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}
.coming-soon-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}
.coming-soon-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}
.coming-soon-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.coming-soon-close:hover {
  background: rgba(255, 255, 255, 0.14);
}
