:root {
  --serif: "IBM Plex Sans", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --ink-faint: #718491;
  --tint: #edf5f8;
  --tint-strong: #c8e0eb;
}

body[class^="page-"] {
  background: #f4f7f8;
}

body[class^="page-"] section:not(.page-banner) {
  padding-block: clamp(80px, 8vw, 124px);
}

.page-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px 0 88px;
  color: #f4faff;
  background:
    radial-gradient(circle at 76% 34%, rgba(49, 174, 232, .19), transparent 28%),
    linear-gradient(120deg, #061625 0%, #092438 62%, #071a2b 100%);
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 180, 224, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 180, 224, .075) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 22%, #000 68%);
}

.page-banner::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -190px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(85, 199, 250, .17);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(73, 180, 231, .035),
    0 0 0 144px rgba(73, 180, 231, .022);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner .eyebrow {
  color: #67d0ff;
}

.page-banner h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 660;
  line-height: 1.04;
  letter-spacing: -.052em;
}

.page-banner .sub {
  max-width: 720px;
  margin: 24px 0 0;
  color: #b6ccda;
  font-size: 17px;
}

.group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: #17364b;
  font-size: 19px;
  font-weight: 720;
}

.group-title .bar {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #0b73ca, #47c9fa);
  box-shadow: 0 0 10px rgba(33, 169, 232, .32);
}

.group-title small {
  margin-left: auto;
  color: #78909e;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
}

body[class^="page-"] .alt {
  background: #eaf0f2;
}

body[class^="page-"] .cta {
  position: relative;
  padding: 58px 0;
  color: #f1f9fd;
  border-color: rgba(106, 194, 234, .22);
}

body[class^="page-"] section:has(.cta) {
  padding-block: 0;
  background: #071827;
}

body[class^="page-"] .cta p {
  color: #9db8c7;
}

body[class^="page-"] .cta .btn {
  color: #fff;
  border-color: #2bb7ef;
  background: #0b75c9;
}

/* Company */
.about-lead {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1px;
  border: 1px solid #cedce2;
  background: #cedce2;
}

.about-visual,
.about-copy {
  padding: clamp(36px, 5vw, 70px);
}

.about-visual {
  position: relative;
  overflow: hidden;
  color: #eaf7fd;
  background:
    radial-gradient(circle at 85% 15%, rgba(44, 183, 241, .24), transparent 28%),
    #081d2e;
}

.about-visual::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(80, 200, 250, .18);
  transform: rotate(45deg);
}

.about-visual .kicker {
  color: #62ccff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .15em;
}

.about-visual h3 {
  max-width: 520px;
  margin: 72px 0 20px;
  font-size: clamp(28px, 3.4vw, 45px);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.about-visual p {
  color: #aec6d4;
}

.about-copy {
  background: #fff;
}

.about-copy > p {
  margin: 0 0 22px;
  color: #435867;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 38px;
}

.fact {
  display: flex;
  gap: 12px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid #d6e1e6;
  background: #f5f8f9;
}

.fact .ico {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #57c8f8;
  background: #0b2b41;
}

.fact .ico svg {
  width: 16px;
}

.fact b,
.fact span {
  display: block;
}

.fact b {
  color: #17364b;
  font-size: 14px;
}

.fact span {
  margin-top: 5px;
  color: #6d818d;
  font-size: 11px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(#2ab8f0, #b5cbd6);
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  padding: 0 0 26px;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 7px;
  width: 9px;
  height: 9px;
  background: #f4f7f8;
  border: 2px solid #1eabe8;
  box-shadow: 0 0 12px rgba(30, 171, 232, .32);
  transform: rotate(45deg);
}

.tl-item .year {
  color: #0b73ca;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}

.tl-item .txt {
  color: #435867;
  font-size: 13px;
}

.network {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.network span {
  padding: 9px 13px;
  color: #4f6573;
  border: 1px solid #c8d8df;
  background: #fff;
  font-size: 12px;
}

.network .hq {
  color: #fff;
  border-color: #0b73ca;
  background: #0b73ca;
}

.info-chip {
  margin-top: 22px;
  padding: 16px 18px;
  color: #537080;
  border-left: 2px solid #20aeea;
  background: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.honor {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid #d4e0e5;
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.honor .ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #5dcaf6;
  background: #0a2a40;
}

.honor .ico svg {
  width: 21px;
}

.db-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.db-tags span {
  padding: 8px 11px;
  color: #536b79;
  border: 1px solid #cfdee4;
  background: #f5f8f9;
  font-size: 11px;
}

/* Products */
.page-products .prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border: 0;
  background: transparent;
}

.page-products .prod-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.page-products .prod,
.page-products .prod:first-child {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  grid-row: auto;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #cfdee4;
  background: #fff;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.page-products .prod:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 115, 202, .38);
  box-shadow: 0 22px 54px rgba(23, 63, 88, .09);
}

.page-products .prod::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, #158fdc, transparent);
}

.page-products .prod-code {
  color: #0b73ca;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .09em;
}

.page-products .prod h4,
.page-products .prod:first-child h4 {
  margin: 62px 0 16px;
  color: #17364b;
  font-size: 26px;
  line-height: 1.28;
}

.page-products .prod p {
  color: #536977;
  font-size: 13px;
}

.page-products .tags {
  margin-top: auto;
  padding-top: 24px;
}

.page-products .tags span {
  color: #587382;
  border-color: #cfdee4;
  background: #f6f9fa;
}

.page-products .draas-panel {
  background: #081d2e;
}

/* Services */
.svc-grid,
.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

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

.svc {
  position: relative;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid #cfdee4;
  background: #fff;
  transition: transform .3s ease, border-color .3s ease;
}

.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 115, 202, .38);
}

.svc .no {
  color: #168ed4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.svc h4 {
  margin: 68px 0 12px;
  color: #17364b;
  font-size: 20px;
}

.svc p {
  margin: 0;
  color: #5d717e;
  font-size: 12px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 20px;
  border: 1px solid #cddce2;
  background: #fff;
}

.stat-strip .stat {
  padding: 24px;
  border-right: 1px solid #d7e2e6;
}

.stat-strip .stat:last-child {
  border-right: 0;
}

.stat-strip .num {
  color: #0b73ca;
  font-size: 31px;
  font-weight: 700;
}

.stat-strip .lbl {
  color: #6a7d89;
  font-size: 11px;
}

.page-services .ind-grid {
  gap: 10px;
  border: 0;
  background: transparent;
}

.page-services .ind {
  min-height: 300px;
  border: 1px solid #cfdee4;
}

.page-services .ind h4 {
  margin-top: 28px;
}

.page-services .ind ul,
.page-services .pillar ul {
  padding: 0;
  list-style: none;
  color: #5a707d;
  font-size: 12px;
}

.page-services .ind li + li,
.page-services .pillar li + li {
  margin-top: 8px;
}

.page-services .pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border: 0;
}

.page-services .pillar {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 30px;
  border: 1px solid #cfdee4;
  background: #fff;
}

.page-services .pillar h3 {
  margin: 26px 0 14px;
}

.page-services .pillar ul {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #d9e3e7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}

.c-card {
  min-height: 138px;
  display: flex;
  gap: 14px;
  padding: 22px;
  border: 1px solid #d1dee4;
  background: #fff;
}

.c-card .ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #5dcdf8;
  background: #09283d;
}

.c-card .ico svg {
  width: 21px;
}

.c-card h4,
.c-card p {
  margin: 0;
}

.c-card h4 {
  color: #17364b;
  font-size: 15px;
}

.c-card p {
  margin-top: 8px;
  color: #617580;
  font-size: 12px;
}

.form {
  padding: 34px;
  color: #dceef7;
  border: 1px solid rgba(96, 193, 236, .2);
  background:
    linear-gradient(rgba(77, 161, 201, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 161, 201, .055) 1px, transparent 1px),
    #081d2e;
  background-size: 32px 32px;
  box-shadow: 0 28px 70px rgba(13, 49, 70, .16);
}

.form h3 {
  color: #f2f9fd;
}

.form > p {
  color: #9eb9c8 !important;
}

.form label {
  display: block;
  margin: 15px 0 6px;
  color: #a9c6d5;
  font-size: 12px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: #e7f4fa;
  border: 1px solid rgba(118, 194, 228, .25);
  border-radius: 0;
  outline: 0;
  background: rgba(10, 43, 64, .82);
  font: inherit;
}

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #45c3fa;
  box-shadow: 0 0 0 3px rgba(69, 195, 250, .12);
}

.form .btn {
  width: 100%;
  margin-top: 20px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: #6ee0ab;
  font-size: 12px;
}

@media (max-width: 980px) {
  .about-lead,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .page-services .pillars,
  .lifecycle-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-banner {
    min-height: 430px;
    padding: 128px 0 62px;
  }

  .page-banner h1 {
    font-size: 45px;
  }

  .page-banner .sub {
    font-size: 15px;
  }

  .about-visual,
  .about-copy,
  .form {
    padding: 26px;
  }

  .form-status {
    max-width: calc(100% - 58px);
  }

  .about-facts,
  .honor-grid,
  .page-products .prod-grid,
  .page-products .prod-grid.two,
  .svc-grid,
  .stat-strip,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .stat-strip .stat {
    border-right: 0;
    border-bottom: 1px solid #d7e2e6;
  }

  .stat-strip .stat:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .prod,
  .svc,
  .honor {
    transition: none;
  }
}
