:root {
  --ink: #071522;
  --navy: #061a30;
  --navy-2: #0b2c4c;
  --blue: #0a67c7;
  --cyan: #33c7d7;
  --ice: #eef7fb;
  --line: #cbdde6;
  --muted: #5d7180;
  --amber: #f2a541;
  --green: #1d9c73;
  --white: #fff;
  --shell: min(1180px, calc(100% - 40px));
  --nav-h: 64px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.pain-layout > *,
.feature-layout > *,
.delivery-layout > *,
.faq-layout > *,
.section-heading.split > * {
  min-width: 0;
}
.cta-inner > * {
  min-width: 0;
  max-width: 100%;
}
.product-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 21, 34, 0.1);
  backdrop-filter: blur(16px);
}
.nav-inner {
  width: var(--shell);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  color: #4f6472;
}
.nav-links a {
  position: relative;
  padding-block: 22px;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  transition: right 0.25s;
}
.nav-links a:hover:after,
.nav-links a[aria-current]:after {
  right: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language {
  height: 36px;
  padding: 0 14px;
  border: 1px solid #cad8df;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.nav-cta {
  display: inline-grid;
  place-items: center;
  height: 38px;
  padding: 0 18px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}
.is-embedded .product-nav {
  display: none;
}
.is-embedded {
  --nav-h: 0px;
}
.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 16, 34, 0.98) 0%,
      rgba(3, 16, 34, 0.88) 31%,
      rgba(3, 16, 34, 0.22) 66%,
      rgba(3, 16, 34, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(3, 16, 34, 0.52), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 82px 0 62px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.hero h1 {
  width: min(740px, 62vw);
  margin: 0;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}
.hero-lead {
  width: min(650px, 56vw);
  margin: 28px 0 0;
  color: #d5e4ed;
  font-size: 18px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--blue);
  color: #fff;
}
.button.ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.button.light {
  background: #fff;
  color: var(--navy);
}
.hero-metrics {
  display: flex;
  width: max-content;
  margin: 42px 0 0;
  background: rgba(6, 38, 77, 0.72);
  border: 1px solid rgba(118, 187, 232, 0.28);
  backdrop-filter: blur(14px);
}
.hero-metrics div {
  min-width: 166px;
  padding: 17px 20px;
}
.hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-metrics dt {
  font-size: 26px;
  font-weight: 900;
}
.hero-metrics dd {
  margin: 5px 0 0;
  color: #b9cedc;
  font-size: 13px;
}
.workflow-band {
  padding: 74px 0 78px;
  background: var(--ice);
  border-bottom: 1px solid #d9e7ed;
}
.section-heading {
  max-width: 760px;
}
.section-heading.compact {
  max-width: 920px;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 80px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(31px, 3.5vw, 50px);
  line-height: 1.1;
  white-space: nowrap;
}
.section-heading > p:not(.section-kicker),
.feature-copy > p,
.delivery-layout .section-heading > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.process-line {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #9fc3d3;
  border-bottom: 1px solid #9fc3d3;
}
.process-line li {
  position: relative;
  padding: 24px 14px 25px;
}
.process-line li + li {
  border-left: 1px solid #c5dbe4;
}
.process-line b {
  display: block;
  color: var(--blue);
  font-size: 12px;
}
.process-line span {
  display: block;
  margin-top: 13px;
  font-weight: 900;
  font-size: 16px;
}
.process-line small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}
.pain-section {
  padding: 94px 0;
  background: #fff;
}
.pain-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.risk-ledger {
  border-top: 2px solid var(--ink);
}
.risk-ledger div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #dce5e9;
}
.risk-ledger span {
  color: var(--blue);
  font-weight: 800;
}
.risk-ledger strong {
  font-size: 17px;
  line-height: 1.45;
}
.feature-band {
  padding: 86px 0;
}
.feature-band.receive {
  background: #f3f8fa;
}
.feature-band.transit {
  background: #fff;
}
.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 62px;
  align-items: center;
}
.feature-layout.reverse {
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
}
.feature-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #bfd5df;
  background: #dfeef4;
  box-shadow: 0 26px 60px rgba(17, 55, 77, 0.12);
}
.feature-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.feature-media.wide img {
  aspect-ratio: 3/2;
}
.feature-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(3, 18, 33, 0.92), rgba(3, 18, 33, 0));
  color: #fff;
  font-size: 13px;
}
.feature-copy h2 {
  margin: 0;
  font-size: clamp(29px, 3.2vw, 46px);
  line-height: 1.1;
  white-space: nowrap;
}
.feature-copy > p:not(.section-kicker) {
  margin-top: 22px;
}
.check-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid #cedde4;
}
.check-list li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid #cedde4;
  font-weight: 700;
}
.check-list li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--green);
}
.inline-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border: 1px solid #c9dce4;
}
.inline-stats span {
  padding: 17px 14px;
}
.inline-stats span + span {
  border-left: 1px solid #c9dce4;
}
.inline-stats b,
.inline-stats small {
  display: block;
}
.inline-stats small {
  margin-top: 5px;
  color: var(--muted);
}
.incident-section {
  padding: 96px 0;
  background: var(--navy);
  color: #fff;
}
.incident-section .section-heading > p:not(.section-kicker) {
  color: #bed0db;
}
.command-media {
  margin: 42px 0 0;
  border: 1px solid rgba(123, 194, 229, 0.32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}
.command-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.closure-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(156, 204, 228, 0.35);
  border-top: 0;
}
.closure-steps li {
  padding: 18px 16px;
}
.closure-steps li + li {
  border-left: 1px solid rgba(156, 204, 228, 0.25);
}
.closure-steps b {
  color: var(--cyan);
  font-size: 12px;
}
.closure-steps span {
  display: block;
  margin-top: 7px;
  font-weight: 800;
}
.delivery-section {
  padding: 96px 0;
  background: #fff;
}
.delivery-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 62px;
  align-items: center;
}
.delivery-media {
  margin: 0;
  box-shadow: 0 26px 60px rgba(17, 55, 77, 0.14);
}
.delivery-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.proof-list span {
  padding: 9px 12px;
  border: 1px solid #bcd5df;
  color: #24536d;
  font-size: 13px;
  font-weight: 800;
}
.operations-section {
  padding: 96px 0;
  background: #eaf3f7;
}
.operations-media {
  margin: 44px 0 0;
  border: 1px solid #abcbd9;
}
.operations-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.ops-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #abcbd9;
  border-top: 0;
  background: #fff;
}
.ops-index div {
  padding: 19px 18px;
}
.ops-index div + div {
  border-left: 1px solid #c8dce4;
}
.ops-index b,
.ops-index span {
  display: block;
}
.ops-index span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.scenario-section {
  padding: 96px 0;
  background: #fff;
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid #afc8d2;
  border-left: 1px solid #afc8d2;
}
.scenario-grid article {
  min-height: 196px;
  padding: 26px;
  border-right: 1px solid #afc8d2;
  border-bottom: 1px solid #afc8d2;
  transition: background 0.25s;
}
.scenario-grid article:hover {
  background: var(--ice);
}
.scenario-grid b {
  color: var(--blue);
  font-size: 12px;
}
.scenario-grid h3 {
  margin: 20px 0 0;
  font-size: 22px;
  white-space: nowrap;
}
.scenario-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.faq-section {
  padding: 88px 0;
  background: #f4f7f8;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-list {
  border-top: 1px solid #bacdd5;
}
.faq-list details {
  border-bottom: 1px solid #bacdd5;
}
.faq-list summary {
  cursor: pointer;
  padding: 24px 40px 24px 0;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
  position: relative;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 2px;
  font-size: 24px;
  color: var(--blue);
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  margin: -7px 0 22px;
  color: var(--muted);
  line-height: 1.7;
}
.final-cta {
  padding: 80px 0;
  background: linear-gradient(105deg, #061a30 0%, #0b4260 66%, #156f74 100%);
  color: #fff;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.cta-inner h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  white-space: nowrap;
}
.cta-inner p:not(.section-kicker) {
  margin: 16px 0 0;
  color: #c6dce5;
}
.detail-footer {
  padding: 24px 0;
  background: #03111f;
  color: #a7bdca;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}
.footer-inner .brand {
  color: #fff;
}
.footer-inner .brand img {
  width: 30px;
  height: 30px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
}
@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 32px, 820px);
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .hero {
    min-height: 630px;
  }
  .hero h1 {
    width: 78vw;
  }
  .hero-lead {
    width: 72vw;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(3, 16, 34, 0.97),
      rgba(3, 16, 34, 0.65) 62%,
      rgba(3, 16, 34, 0.28)
    );
  }
  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-line li:nth-child(4) {
    border-left: 0;
  }
  .process-line li:nth-child(n + 4) {
    border-top: 1px solid #c5dbe4;
  }
  .pain-layout,
  .feature-layout,
  .feature-layout.reverse,
  .delivery-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .feature-layout.reverse .feature-copy {
    order: 2;
  }
  .feature-layout.reverse .feature-media {
    order: 1;
  }
  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .feature-media.wide img {
    aspect-ratio: 16/9;
  }
  .ops-index {
    grid-template-columns: repeat(2, 1fr);
  }
  .ops-index div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #c8dce4;
  }
  .ops-index div:nth-child(4) {
    border-top: 1px solid #c8dce4;
  }
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --nav-h: 58px;
  }
  .shell,
  .nav-inner {
    width: auto;
    margin-inline: 14px;
  }
  .pain-layout > *,
  .feature-layout > *,
  .delivery-layout > *,
  .faq-layout > *,
  .section-heading {
    min-width: 0;
    max-width: 100%;
  }
  .product-nav {
    height: var(--nav-h);
  }
  .brand {
    font-size: 13px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .nav-cta {
    display: none;
  }
  .language {
    height: 34px;
    padding: 0 11px;
  }
  .hero {
    min-height: auto;
    padding: 0 0 26px;
    display: block;
    background: #061a30;
  }
  .hero-media {
    position: relative;
    height: auto;
    aspect-ratio: 16/10;
    object-position: center;
  }
  .hero-shade {
    background: linear-gradient(0deg, #061a30 4%, rgba(6, 26, 48, 0) 68%);
    height: 42vw;
    top: calc(62vw - 1px);
    bottom: auto;
  }
  .hero-content {
    padding: 24px 0 0;
  }
  .hero h1 {
    width: 100%;
    font-size: 38px;
  }
  .hero-lead {
    width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }
  .hero-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }
  .hero-metrics {
    width: 100%;
    margin-top: 26px;
  }
  .hero-metrics div {
    min-width: 0;
    flex: 1;
    padding: 14px 9px;
  }
  .hero-metrics dt {
    font-size: 19px;
  }
  .hero-metrics dd {
    font-size: 10px;
  }
  .workflow-band,
  .pain-section,
  .feature-band,
  .incident-section,
  .delivery-section,
  .operations-section,
  .scenario-section,
  .faq-section {
    padding: 58px 0;
  }
  .section-kicker,
  .eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .section-heading h2,
  .feature-copy h2,
  .cta-inner h2 {
    font-size: 29px;
  }
  .section-heading > p:not(.section-kicker),
  .feature-copy > p,
  .delivery-layout .section-heading > p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.72;
    margin-top: 15px;
  }
  .process-line {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }
  .process-line li {
    padding: 18px 12px;
  }
  .process-line li:nth-child(3),
  .process-line li:nth-child(5) {
    border-left: 0;
  }
  .process-line li:nth-child(3) {
    border-top: 1px solid #c5dbe4;
  }
  .process-line span {
    font-size: 14px;
  }
  .pain-layout {
    gap: 30px;
  }
  .risk-ledger div {
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 17px 0;
  }
  .risk-ledger strong {
    font-size: 14px;
  }
  .feature-layout,
  .feature-layout.reverse,
  .delivery-layout,
  .faq-layout {
    gap: 28px;
  }
  .feature-media,
  .delivery-media,
  .command-media,
  .operations-media {
    box-shadow: 0 14px 30px rgba(17, 55, 77, 0.12);
  }
  .feature-media.wide img,
  .feature-media img,
  .delivery-media img,
  .command-media img,
  .operations-media img {
    aspect-ratio: 16/10;
  }
  .feature-media figcaption {
    position: static;
    background: #092238;
    padding: 12px 14px;
  }
  .check-list li {
    font-size: 14px;
  }
  .inline-stats {
    grid-template-columns: 1fr;
  }
  .inline-stats span + span {
    border-left: 0;
    border-top: 1px solid #c9dce4;
  }
  .incident-section .section-heading.centered {
    text-align: left;
  }
  .closure-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .closure-steps li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(156, 204, 228, 0.25);
  }
  .closure-steps li:nth-child(n + 4) {
    border-top: 1px solid rgba(156, 204, 228, 0.25);
  }
  .closure-steps li {
    padding: 13px 10px;
    font-size: 12px;
  }
  .ops-index {
    grid-template-columns: 1fr;
  }
  .ops-index div + div {
    border-left: 0;
    border-top: 1px solid #c8dce4;
  }
  .scenario-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .scenario-grid article {
    min-height: auto;
    padding: 21px;
  }
  .scenario-grid h3 {
    font-size: 19px;
    margin-top: 14px;
  }
  .faq-layout {
    gap: 26px;
  }
  .faq-list summary {
    font-size: 15px;
    padding: 19px 32px 19px 0;
  }
  .final-cta {
    padding: 58px 0;
  }
  .cta-inner {
    gap: 26px;
  }
  .detail-footer {
    padding: 24px 0;
  }
  .footer-inner {
    display: grid;
    justify-items: start;
  }
  .footer-inner > span {
    font-size: 12px;
  }
}
