:root {
  --navy: #062B4F;
  --blue: #0B84D8;
  --cyan: #20C7E8;
  --glass: #E8F8FF;
  --white: #FFFFFF;
  --grey: #F5F9FC;
  --green: #16B88E;
  --ink: #0B2239;
  --muted: #5A7085;
  --line: rgba(11, 132, 216, 0.18);
  --shadow: 0 24px 70px rgba(6, 43, 79, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 12%, rgba(32, 199, 232, 0.18), transparent 26rem),
    radial-gradient(circle at 90% 34%, rgba(11, 132, 216, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 52%, #eef9ff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  color: var(--white);
  background-image: url("https://images.squarespace-cdn.com/content/v1/595ddeca1b631bc13c675487/1605683294955-SM1MXXTD5JWCQ950XLKO/AdobeStock_328650583.jpeg");
  background-position: center;
  background-size: cover;
}

.hero::after,
.section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: auto 0 0;
  height: 170px;
  opacity: 0.32;
  background:
    radial-gradient(120% 82% at 50% 100%, rgba(32, 199, 232, 0.32), transparent 46%),
    repeating-radial-gradient(ellipse at 50% 140%, transparent 0 34px, rgba(255,255,255,0.18) 35px 37px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6, 43, 79, 0.94) 0%, rgba(7, 76, 128, 0.76) 46%, rgba(11, 132, 216, 0.48) 100%),
    linear-gradient(180deg, rgba(6, 43, 79, 0.1), rgba(6, 43, 79, 0.8));
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(6, 43, 79, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav__cta {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.82fr);
  gap: 54px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(82vh - 148px);
  margin: 0 auto;
  padding: 24px 0 102px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9DEEFF;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.05rem, 5.1vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 630px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button--primary {
  background: linear-gradient(135deg, #ffffff, #d9f8ff);
  color: var(--navy);
  box-shadow: 0 16px 38px rgba(32, 199, 232, 0.25);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero__visual {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(232, 248, 255, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(255,255,255,0.06) 53px 54px),
    repeating-linear-gradient(0deg, transparent 0 52px, rgba(255,255,255,0.05) 53px 54px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(157, 238, 255, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(32, 199, 232, 0.06),
    0 0 0 108px rgba(255, 255, 255, 0.04);
}

.float-card {
  position: absolute;
  width: min(265px, 70%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 48px rgba(6, 43, 79, 0.24);
  backdrop-filter: blur(18px);
}

.float-card span,
.float-card small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.float-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.08rem;
}

.float-card--one {
  top: 38px;
  left: 28px;
}

.float-card--two {
  top: 160px;
  right: 28px;
}

.float-card--three {
  bottom: 38px;
  left: 68px;
}

.metrics {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.metrics div {
  min-height: 78px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: clamp(1.22rem, 1.7vw, 1.58rem);
}

.metrics span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 108px 20px;
}

.section__intro {
  width: min(830px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section__intro--left {
  margin-inline: auto;
  text-align: left;
  width: min(1180px, 100%);
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  line-height: 1;
}

.section__intro p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.card-grid,
.product__layout,
.evidence__layout,
.network__layout {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.workflow-panel,
.mockup-card,
.feature-grid article,
.seal-card,
.network-copy,
.logo-panel,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.info-card {
  padding: 28px;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--glass);
  color: var(--blue);
  font-weight: 800;
}

h3 {
  margin: 24px 0 12px;
  color: var(--navy);
  font-size: 1.18rem;
}

.info-card p,
.mockup-card dd,
.seal-card p,
.network-copy li {
  color: var(--muted);
  line-height: 1.64;
}

.product {
  background: linear-gradient(180deg, rgba(232, 248, 255, 0.58), rgba(255, 255, 255, 0.84));
}

.product__layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.workflow-panel {
  padding: 22px;
}

.workflow-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  min-height: 48px;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(11, 132, 216, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(232, 248, 255, 0.82), rgba(255, 255, 255, 0.92));
  color: var(--navy);
  font-weight: 700;
  position: relative;
}

.workflow-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 184, 142, 0.12);
}

.product-mockup {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.market-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 43, 79, 0.9), rgba(6, 43, 79, 0.42)),
    url("https://static1.straitstimes.com.sg/s3fs-public/articles/2018/06/27/istock-680295186_0.jpg?VersionId=OGwpjaUFyP_vFyixfeL1HZAuRpV.DHu5") center/cover;
}

.mockup-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.mockup-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--navy);
  font-weight: 800;
}

.mockup-card__head b {
  color: #B7791F;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

dt {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.evidence {
  background: var(--white);
}

.evidence-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.evidence-flow span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(11, 132, 216, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--glass));
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.evidence__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 22px;
  align-items: stretch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 22px;
  color: var(--navy);
  font-weight: 800;
}

.seal-card {
  padding: 26px;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.92), rgba(232,248,255,0.86)),
    radial-gradient(circle at top right, rgba(32,199,232,0.26), transparent 16rem);
}

.seal-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.verified {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(22, 184, 142, 0.12);
  color: var(--green);
  font-weight: 800;
}

.seal {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(11, 132, 216, 0.28);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
}

.proof-mark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  width: 132px;
  margin: 28px 0;
}

.proof-mark span {
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--navy);
}

.proof-mark span:nth-child(2n),
.proof-mark span:nth-child(7),
.proof-mark span:nth-child(11) {
  background: var(--cyan);
}

.seal-card small {
  color: var(--muted);
  font-weight: 700;
}

.network {
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.network__layout {
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: stretch;
}

.network-map {
  position: relative;
  min-height: 600px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(32, 199, 232, 0.26), transparent 11rem),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(11,132,216,0.07) 59px 60px),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(11,132,216,0.07) 59px 60px),
    #ffffff;
  box-shadow: var(--shadow);
}

.network-map::before,
.network-map::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(11, 132, 216, 0.18);
  border-radius: 50%;
}

.network-map::after {
  inset: 31%;
}

.network-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(11, 132, 216, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(6, 43, 79, 0.1);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.network-node--center {
  top: 50%;
  left: 50%;
  width: 190px;
  height: 90px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.n1 { top: 9%; left: 13%; }
.n2 { top: 8%; right: 11%; }
.n3 { top: 34%; right: 5%; }
.n4 { right: 15%; bottom: 10%; }
.n5 { left: 12%; bottom: 9%; }
.n6 { top: 34%; left: 5%; }
.n7 { bottom: 29%; left: 2%; }
.n8 { bottom: 29%; right: 2%; }

.network-copy {
  padding: 26px;
}

.network-copy ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.target-grid div {
  min-height: 112px;
  padding: 18px;
  border-radius: 8px;
  background: var(--glass);
}

.target-grid strong,
.target-grid span {
  display: block;
}

.target-grid strong {
  color: var(--blue);
  font-size: 1.8rem;
}

.target-grid span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.ecosystem {
  padding-bottom: 36px;
  background: linear-gradient(180deg, #ffffff, #eaf8ff);
}

.market-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(940px, 100%);
  margin: 0 auto 28px;
}

.market-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(11, 132, 216, 0.2);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.logo-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 24px;
}

.logo-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.logo-strip img,
.logo-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(11, 132, 216, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.logo-strip img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.final-cta {
  width: min(980px, 100%);
  margin: 36px auto 0;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 43, 79, 0.96), rgba(11, 132, 216, 0.92)),
    radial-gradient(circle at top right, rgba(32, 199, 232, 0.42), transparent 16rem);
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  width: min(700px, 100%);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.7;
}

.final-cta .hero__actions {
  justify-content: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .hero__content,
  .product__layout,
  .evidence__layout,
  .network__layout {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 28px;
  }

  .hero__visual {
    min-height: 360px;
  }

  .metrics,
  .card-grid--three,
  .evidence-flow,
  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics {
    position: relative;
    margin-bottom: 22px;
  }

  .evidence-flow span:last-child {
    grid-column: span 2;
  }

  .network__layout {
    width: min(760px, 100%);
  }
}

@media (max-width: 700px) {
  .nav {
    width: min(100% - 28px, 1180px);
    align-items: flex-start;
  }

  .nav__cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero__content {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(2.35rem, 10.8vw, 3rem);
    line-height: 1;
  }

  .section {
    padding: 78px 14px;
  }

  .card-grid--three,
  .feature-grid,
  .evidence-flow,
  .target-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }

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

  .metrics div {
    min-height: 72px;
    padding: 13px;
  }

  .evidence-flow span:last-child {
    grid-column: auto;
  }

  .hero__visual {
    display: none;
  }

  .float-card {
    width: 78%;
    padding: 12px;
  }

  .float-card--one {
    top: 22px;
    left: 14px;
  }

  .float-card--two {
    top: 112px;
    right: 14px;
  }

  .float-card--three {
    bottom: 14px;
    left: 22px;
  }

  .mockup-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 18px;
  }

  .mockup-card__head {
    flex-direction: column;
  }

  .network-map {
    min-height: 680px;
  }

  .network-node {
    min-width: 96px;
    max-width: 150px;
    font-size: 0.78rem;
  }

  .network-node--center {
    width: 164px;
  }

  .n1 { top: 7%; left: 6%; }
  .n2 { top: 7%; right: 6%; }
  .n3 { top: 26%; right: 2%; }
  .n4 { right: 5%; bottom: 12%; }
  .n5 { left: 5%; bottom: 12%; }
  .n6 { top: 26%; left: 2%; }
  .n7 { bottom: 32%; left: 1%; }
  .n8 { bottom: 32%; right: 1%; }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

  .hero__actions,
  .final-cta .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .network-copy {
    padding: 20px;
  }
}
