@font-face {
  font-family: "PingFang SC Local";
  src: url("./woff2/PingFangSC-Regular.woff2") format("woff2"), url("./ttf/PingFangSC-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingFang SC Local";
  src: url("./woff2/PingFangSC-Medium.woff2") format("woff2"), url("./ttf/PingFangSC-Medium.ttf") format("truetype");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingFang SC Local";
  src: url("./woff2/PingFangSC-Semibold.woff2") format("woff2"), url("./ttf/PingFangSC-Semibold.ttf") format("truetype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #42a5ff;
  --cyan: #20c7dc;
  --deep: #1f3f8e;
  --ink: #0b0f19;
  --text: #303642;
  --muted: #6d7787;
  --line: #dce8f7;
  --page: #f4f7fd;
  --panel: #ffffff;
  --shadow: 0 12px 34px rgba(24, 63, 110, 0.1);
  --gradient: linear-gradient(100deg, #4c95f8 0%, #20c7dc 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--page);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open,
body.search-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(14, 22, 34, 0.54);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(14, 22, 34, 0.88);
}

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

.brand img {
  width: 310px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 40px);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.icon-btn.search {
  position: relative;
}

.icon-btn.search::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  width: 17px;
  height: 17px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.icon-btn.search::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 29px;
  width: 12px;
  height: 4px;
  border-radius: 4px;
  background: currentColor;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: currentColor;
}

.hero {
  min-height: 780px;
  color: #fff;
  background-image: linear-gradient(rgba(4, 12, 28, 0.44), rgba(4, 12, 28, 0.54)), var(--hero);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 24px 92px;
}

.baked-hero {
  position: relative;
  min-height: 864px;
  padding: 0;
  background-image: var(--hero);
  background-size: cover;
  background-position: center top;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero-hotspot {
  position: absolute;
  left: 50%;
  top: 704px;
  width: 260px;
  height: 68px;
  transform: translateX(-50%);
}

.hero.compact {
  min-height: 620px;
}

.hero-content {
  width: min(1040px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.12;
  font-weight: 900;
  color: #fff;
}

.accent {
  color: var(--blue);
}

.accent-cyan {
  color: var(--cyan);
}

.hero p {
  width: min(820px, 100%);
  margin: 24px auto 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.section-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 170px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  color: var(--blue);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn::after {
  content: "↗";
  font-size: 22px;
  line-height: 1;
}

.btn.primary {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
  box-shadow: 0 14px 24px rgba(32, 199, 220, 0.18);
}

.btn.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.82);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(37, 120, 220, 0.18);
}

.btn:not(.primary):not(.light):hover {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
}

.section {
  padding: 112px 0;
}

body[data-page="home"] #page-root > .section {
  padding-top: 95px;
  padding-bottom: 95px;
}

body[data-page="services"] #page-root > .section {
  padding-top: 190px;
  padding-bottom: 190px;
}

body[data-page="products"] #page-root > .section:not(.tight) {
  padding-top: 185px;
  padding-bottom: 185px;
}

body[data-page="products"] #page-root > .section.tight {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section.tight {
  padding: 76px 0;
}

.section.white {
  background: #fff;
}

.section-head {
  width: min(900px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: #050608;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.14;
  font-weight: 900;
}

.section-head p {
  margin: 14px auto 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.card {
  background: var(--panel);
  border: 1px solid #e1edf8;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.feature-card,
.service-card,
.value-card {
  min-height: 318px;
  padding: 42px 38px;
}

.feature-card h3,
.service-card h3,
.value-card h3,
.media-card h3 {
  margin: 22px 0 12px;
  color: #050608;
  font-size: 22px;
  line-height: 1.25;
}

.feature-card p,
.service-card p,
.value-card p,
.media-card p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
}

.icon-tile {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ecf9ff;
}

.icon-tile img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin: 34px 0;
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.stat span {
  color: #0e4c88;
  font-size: 13px;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 3px;
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: brightness(0.62);
}

.play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.home-about {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
}

.home-about::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 140px;
  width: 900px;
  height: 900px;
  background: url("./assets/slices/about/03_group_681.png") center / contain no-repeat;
  opacity: 0.08;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-about-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.home-about-copy h2 {
  margin: 0 0 24px;
  color: #050608;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.12;
}

.home-about-copy > p:not(.eyebrow) {
  margin: 0;
  color: #333;
  font-size: 18px;
  line-height: 1.45;
}

.home-video {
  width: min(960px, 100%);
  min-height: 520px;
  margin: 0 auto;
  border-radius: 0;
}

.play-btn::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 23px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid currentColor;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.tab {
  min-width: 190px;
  min-height: 52px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  color: var(--blue);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.tab.active {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-body {
  padding: 26px 32px 32px;
}

.audience-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 3px;
  color: #fff;
  background: #17406e;
}

.audience-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(0deg, rgba(55, 146, 246, 0.9), rgba(55, 146, 246, 0));
}

.audience-body {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 34px;
}

.audience-body h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.25;
}

.audience-body p {
  margin: 4px 0;
  font-size: 17px;
  line-height: 1.45;
}

.service-cover .grid {
  gap: 28px;
}

.service-cover-card {
  min-height: 400px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 44px 42px;
  text-align: center;
}

.service-cover-card h3 {
  margin: 28px 0 28px;
  color: #050608;
  font-size: 26px;
  line-height: 1.25;
}

.service-cover-card p {
  margin: 0;
  color: #444;
  font-size: 20px;
  line-height: 1.45;
}

.audience-section {
  padding-bottom: 180px;
}

.audience-lanes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: start;
}

.audience-lanes .audience-card {
  min-height: 640px;
}

.audience-lanes .audience-card.lower {
  margin-top: 140px;
}

.audience-lanes .audience-card img {
  min-height: 640px;
}

.audience-lanes .audience-body {
  left: 24px;
  right: 24px;
  bottom: 28px;
}

.audience-lanes .audience-body h3 {
  font-size: 28px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 28px;
  background: #d9f5ff;
}

.feature-row:nth-child(even) .feature-copy {
  order: -1;
}

.feature-row img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.feature-copy {
  padding: 72px 62px;
}

.feature-copy h3 {
  margin: 0 0 18px;
  color: #050608;
  font-size: 28px;
}

.feature-copy p,
.feature-copy li {
  font-size: 18px;
  line-height: 1.58;
}

.more-card {
  min-height: 388px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 44px 56px;
  text-align: left;
}

.more-card .icon-tile {
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
}

.more-card h3 {
  margin: 0 0 34px;
  color: #050608;
  font-size: 24px;
  text-align: center;
}

.more-card p,
.deployment-grid p {
  display: flex;
  gap: 12px;
  margin: 16px 0 0;
  color: #444;
  font-size: 17px;
  line-height: 1.45;
}

.more-card p span,
.deployment-grid p span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.deployment-card {
  margin-top: 28px;
  padding: 36px 64px;
}

.deployment-card > h3 {
  margin: 0 0 30px;
  color: #050608;
  font-size: 22px;
  text-align: center;
}

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

.deployment-grid > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.deployment-grid h4 {
  margin: 0;
  color: #050608;
  font-size: 20px;
}

.logo-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 112px;
}

.logo-box {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid #111;
  background: #d9d9d9;
  color: #111;
  font-weight: 500;
}

.logo-box::before,
.logo-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), #111 50%, transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), #111 50%, transparent calc(50% + 1px));
}

.logo-box span {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  background: #d9d9d9;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.carousel-card {
  display: none;
}

.carousel-card.visible {
  display: block;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.dot {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: #cfefff;
  cursor: pointer;
}

.dot.active {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  background: var(--blue);
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.contact-panel {
  padding: 86px min(8vw, 120px);
}

.contact-panel h2 {
  margin: 0;
  color: var(--blue);
  font-size: 52px;
  line-height: 1.05;
}

.contact-panel p {
  color: var(--blue);
  font-size: 16px;
  line-height: 1.5;
}

.contact-image {
  min-height: 760px;
  background-image: var(--contact-bg);
  background-size: cover;
  background-position: center;
}

.form-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid #d7dce4;
  border-radius: 3px;
  color: #1c2430;
  background: #fff;
  outline: none;
}

.form-grid textarea {
  min-height: 160px;
  padding-top: 20px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(66, 165, 255, 0.14);
}

.field-error {
  border-color: #ff6370 !important;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.comparison th,
.comparison td {
  padding: 20px 28px;
  border-bottom: 1px solid #a8dcff;
  text-align: left;
  font-size: 18px;
}

.comparison th:first-child,
.comparison td:first-child {
  color: #fff;
  background: var(--gradient);
  font-weight: 800;
}

.comparison th {
  color: #050608;
  font-size: 30px;
}

.comparison .best {
  background: #dff7ff;
}

.result-dashboard {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
}

.score-panel,
.report-panel {
  padding: 34px;
}

.score-ring {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0 82%, #d9edf8 82% 100%);
}

.score-ring span {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-size: 42px;
  font-weight: 900;
}

.metric-list {
  display: grid;
  gap: 14px;
}

.metric {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e4edf7;
  padding-bottom: 10px;
}

.report-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.report-view {
  display: none;
}

.report-view.active {
  display: block;
}

.bar-chart {
  display: grid;
  gap: 16px;
}

.bar {
  display: grid;
  grid-template-columns: 180px 1fr 48px;
  gap: 14px;
  align-items: center;
}

.bar span:nth-child(2) {
  height: 14px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--blue) var(--value), #e8f2fb 0);
}

.contact-direct {
  padding-bottom: 56px;
}

.contact-card {
  min-height: 300px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 42px 34px;
  text-align: center;
}

.contact-card .icon-tile {
  width: 100px;
  height: 100px;
}

.contact-card .icon-tile img {
  width: 70px;
  height: 70px;
}

.contact-card h3 {
  margin: 28px 0 18px;
  color: #050608;
  font-size: 24px;
}

.contact-card p {
  margin: 0;
  color: #222a36;
  font-size: 18px;
  line-height: 1.45;
}

.map-section {
  padding-top: 0;
  padding-bottom: 120px;
}

.map-frame {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.map-frame img {
  width: 100%;
  height: clamp(260px, 29vw, 460px);
  object-fit: cover;
}

.privacy-section {
  padding-top: 72px;
  padding-bottom: 560px;
}

.privacy-section .section-head {
  width: min(1260px, 100%);
}

.privacy-section .section-head h2 {
  font-size: clamp(40px, 4.5vw, 56px);
}

.privacy-section .section-head p {
  font-size: 22px;
  color: #3c3c3c;
}

.privacy-list {
  display: grid;
  gap: 44px;
  margin-top: 54px;
}

.privacy-card {
  padding: 48px min(8vw, 160px);
  text-align: center;
}

.privacy-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.privacy-title img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.privacy-title h3 {
  margin: 0;
  color: #050608;
  font-size: 34px;
}

.privacy-card p {
  margin: 12px 0 0;
  color: #333;
  font-size: 22px;
  line-height: 1.45;
}

.policy-note {
  width: min(1160px, 100%);
  margin: 54px auto 0;
  color: #8291a5;
}

.policy-note h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.policy-note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.mission-card {
  min-height: 220px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 36px 34px;
}

.mission-card p {
  margin: 18px 0 0;
  color: #20242c;
  font-size: 17px;
  line-height: 1.5;
}

.team-section {
  padding-top: 88px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid #dde7f2;
  box-shadow: var(--shadow);
}

.team-card {
  min-height: 382px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 42px 32px;
  border-right: 1px solid #dde7f2;
  border-bottom: 1px solid #dde7f2;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.team-card:nth-child(3n) {
  border-right: 0;
}

.team-card.active {
  color: #fff;
  background: var(--gradient);
}

.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

.team-card h3 {
  margin: 28px 0 8px;
  color: inherit;
  font-size: 18px;
  letter-spacing: 0;
}

.team-card p {
  margin: 0;
  color: inherit;
  font-size: 13px;
  letter-spacing: 0;
}

.partner-group-title,
.achievement-title {
  margin: 56px 0 28px;
  color: #050608;
  font-size: 28px;
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #dde7f2;
  border-left: 1px solid #dde7f2;
  background: #fff;
}

.partner-card {
  min-height: 138px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 26px;
  border-right: 1px solid #dde7f2;
  border-bottom: 1px solid #dde7f2;
  text-align: center;
}

.partner-card h4 {
  margin: 0;
  color: #050608;
  font-size: 18px;
  letter-spacing: 0;
}

.partner-card p,
.partner-card strong {
  margin: 0;
  color: #111;
  font-size: 14px;
  letter-spacing: 0;
}

.achievements-section {
  padding-top: 132px;
  padding-bottom: 860px;
}

.achievements-section .section-head {
  margin-bottom: 70px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 86px 92px;
}

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

.achievement-item {
  text-align: center;
}

.cert-frame {
  width: min(100%, 245px);
  aspect-ratio: 0.78;
  margin: 0 auto 24px;
  border: 12px ridge #5d4a55;
  background: #d7d7d7;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.16), inset 0 0 0 8px #f0c2ad;
}

.cert-frame.landscape {
  width: min(100%, 345px);
  aspect-ratio: 1.42;
}

.achievement-item p {
  color: #080808;
  font-size: 12px;
  line-height: 1.45;
}

.icon-tile.large {
  width: 88px;
  height: 88px;
}

.icon-tile.xl {
  width: 126px;
  height: 126px;
}

.icon-tile.large img,
.icon-tile.xl img {
  width: 76%;
  height: 76%;
}

.pro-section .feature-card {
  min-height: 400px;
}

.plans-section .section-head {
  margin-bottom: 70px;
}

.plan-card {
  min-height: 520px;
  padding: 44px 42px;
  text-align: center;
}

.plan-card .icon-tile {
  margin: 0 auto 34px;
}

.plan-card h3 {
  margin: 0 0 18px;
  color: #050608;
  font-size: 26px;
}

.plan-sub {
  min-height: 58px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.45;
}

.plan-card ul {
  display: inline-grid;
  gap: 14px;
  margin: 20px auto 34px;
  padding-left: 22px;
  text-align: left;
  color: #050608;
  font-size: 18px;
}

.plan-card strong {
  color: var(--blue);
  font-size: 36px;
}

.demo-form {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

#demo-form .contact-panel,
.demo-form-wrap {
  background: linear-gradient(115deg, #d6e7ff, #c8f4f7);
}

.upload-box {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  width: min(1260px, 100%);
  margin: 0 auto;
  border-color: #ccd6e4;
  text-align: center;
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-box h3 {
  margin: 0;
  color: #050608;
  font-size: 26px;
}

.upload-box p,
.upload-box small {
  margin: 0;
  color: #8291a5;
  font-size: 18px;
}

.detection-result {
  overflow: hidden;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.result-canvas {
  min-height: 360px;
  padding: 28px 40px;
  color: #8391a5;
  background: #000;
}

.result-canvas div {
  width: min(440px, 60%);
  height: 240px;
  margin: 40px auto 0;
  border-radius: 3px;
  background: #d7d7d7;
}

.defect-table {
  padding: 46px 98px 58px;
}

.defect-table h3 {
  margin: 0 0 34px;
  color: #050608;
  font-size: 20px;
}

.defect-table h3 span,
.defect-table .high {
  color: #fb405f;
}

.defect-table .medium {
  color: #ef7a3a;
}

.defect-table .low {
  color: #3bae45;
}

.defect-table table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #cdd7e2;
}

.defect-table th {
  padding: 22px 24px;
  color: #fff;
  background: var(--gradient);
  font-size: 22px;
  text-align: left;
}

.defect-table td {
  padding: 22px 24px;
  color: #111;
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 34px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: 128px 1fr 54px;
  align-items: center;
  gap: 24px;
  padding: 24px 64px;
  border: 0;
  color: #050608;
  background: linear-gradient(100deg, #d7e8ff 0%, #c8f5f5 100%);
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--blue);
  font-size: 58px;
  font-weight: 900;
}

.faq-question b {
  font-size: 28px;
}

.faq-question i {
  width: 44px;
  height: 44px;
  border: 4px solid #35bdf0;
  border-radius: 50%;
  position: relative;
}

.faq-question i::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 11px;
  width: 14px;
  height: 14px;
  border-right: 4px solid #35bdf0;
  border-bottom: 4px solid #35bdf0;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 40px 64px 58px;
  background: #fff;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question i::after {
  top: 15px;
  transform: rotate(225deg);
}

.faq-answer strong {
  display: block;
  color: var(--blue);
  font-size: 58px;
  line-height: 1;
  margin-bottom: 18px;
}

.faq-answer p {
  margin: 0;
  color: #333;
  font-size: 20px;
  line-height: 1.45;
}

.site-footer {
  color: #fff;
  background: var(--deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 78px);
  padding: 70px 0 116px;
}

.footer-logo {
  width: 260px;
  filter: brightness(0) invert(1);
}

.footer-main p {
  width: min(360px, 100%);
  font-size: 18px;
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  color: var(--deep);
  background: #fff;
  font-weight: 900;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(7, minmax(72px, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
  align-items: start;
}

.footer-links h4 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-links h4 a {
  color: #fff;
}

.footer-links a {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #25d5e8;
}

.footer-bottom {
  background: var(--gradient);
}

.footer-bottom .container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
}

.blog-post-page {
  background: #f4f7fb;
}

.blog-post-hero {
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4, 12, 28, 0.78), rgba(4, 12, 28, 0.42)), var(--post-hero);
  background-size: cover;
  background-position: center;
  padding: 168px 0 86px;
}

.blog-post-hero-inner {
  text-align: left;
}

.blog-post-hero h1 {
  width: min(980px, 100%);
  margin: 12px 0 0;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

.blog-post-summary {
  width: min(820px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
}

.blog-post-body-section {
  padding: 74px 0 110px;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: start;
}

.blog-post-content {
  min-width: 0;
  padding: 0;
  background: transparent;
}

.blog-post-content .prose {
  width: min(920px, 100%);
  color: #1b2a3d;
  font-size: 18px;
  line-height: 1.9;
}

.blog-post-content .prose > *:first-child {
  margin-top: 0;
}

.blog-post-content .prose p {
  margin: 0 0 24px;
}

.blog-post-content .prose h2,
.blog-post-content .prose h3 {
  margin: 44px 0 18px;
  color: #111827;
  line-height: 1.15;
  font-weight: 850;
}

.blog-post-content .prose img {
  max-width: 100%;
  border-radius: 8px;
}

.blog-post-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 20px;
}

.blog-side-panel {
  border: 1px solid rgba(29, 78, 216, 0.12);
  background: #fff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.blog-side-panel h3 {
  margin: 8px 0 12px;
  color: #111827;
  font-size: 24px;
  line-height: 1.2;
}

.blog-side-panel p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.blog-related-list {
  display: grid;
  gap: 14px;
}

.blog-related-item {
  display: block;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  color: inherit;
}

.blog-related-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-related-item strong {
  display: block;
  color: #142033;
  font-size: 16px;
  line-height: 1.35;
}

.blog-related-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.blog-side-contact {
  background: #102033;
}

.blog-side-contact h3,
.blog-side-contact p {
  color: #fff;
}

.search-overlay,
.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 18, 34, 0.78);
}

.search-open .search-overlay,
.modal-open .modal {
  display: grid;
}

.search-box,
.modal-box {
  width: min(720px, 100%);
  padding: 36px;
  border-radius: 8px;
  background: #fff;
}

.modal-box.team-modal {
  width: min(960px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.team-modal-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #fff;
}

.team-modal-copy {
  position: relative;
  min-height: 320px;
  padding: 32px 42px;
  background: #effcff;
}

.team-modal-copy h3 {
  margin: 0 0 4px;
  color: #07111d;
  font-size: 18px;
  line-height: 1.25;
}

.team-modal-role {
  margin: 0 0 22px;
  color: #2b4f72;
  font-size: 12px;
  font-weight: 700;
}

.team-modal-copy p:not(.team-modal-role) {
  margin: 0;
  color: #1b2633;
  font-size: 13px;
  line-height: 1.65;
}

.team-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.team-modal-close::before,
.team-modal-close::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 2px;
  width: 2px;
  height: 18px;
  border-radius: 2px;
  background: var(--blue);
}

.team-modal-close::before {
  transform: rotate(45deg);
}

.team-modal-close::after {
  transform: rotate(-45deg);
}

.search-box input {
  width: 100%;
  height: 64px;
  border: 1px solid var(--line);
  padding: 0 20px;
  font-size: 22px;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.search-results a {
  padding: 12px 14px;
  border: 1px solid #e7eef8;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .brand img {
    width: 230px;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    padding: 28px 24px 38px;
    background: rgba(14, 22, 34, 0.96);
    flex-direction: column;
    align-items: flex-start;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

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

  .team-grid,
  .partner-grid,
  .achievement-grid,
  .achievement-grid.pubs,
  .deployment-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-split,
  .contact-band,
  .result-dashboard,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-copy {
    order: 0;
  }

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

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

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

  .blog-post-hero {
    min-height: 520px;
    padding: 128px 0 56px;
  }

  .blog-post-hero h1 {
    font-size: 40px;
  }

  .blog-post-body-section {
    padding: 48px 0 72px;
  }

  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-post-content .prose {
    width: 100%;
    font-size: 16px;
  }

  .blog-post-sidebar {
    position: static;
  }

  .site-header {
    height: 70px;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    min-height: 620px;
    padding-top: 112px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .grid.cols-5,
  .carousel-track,
  .team-grid,
  .partner-grid,
  .achievement-grid,
  .achievement-grid.pubs,
  .deployment-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .deployment-card {
    padding: 28px;
  }

  .deployment-grid > div {
    justify-content: flex-start;
  }

  .faq-question {
    grid-template-columns: 72px 1fr 42px;
    padding: 20px;
  }

  .faq-question span,
  .faq-answer strong {
    font-size: 42px;
  }

  .faq-question b {
    font-size: 20px;
  }

  .defect-table {
    padding: 28px 18px 34px;
    overflow-x: auto;
  }

  .modal-box.team-modal {
    width: min(100%, calc(100vw - 32px));
    grid-template-columns: 1fr;
  }

  .team-modal-photo {
    height: 240px;
  }

  .team-modal-copy {
    min-height: auto;
    padding: 28px 24px;
  }

  .stats {
    flex-wrap: wrap;
  }

  .feature-card,
  .service-card,
  .value-card,
  .feature-copy,
  .score-panel,
  .report-panel {
    padding: 28px;
  }

  .contact-panel {
    padding: 56px 24px;
  }

  .contact-panel h2 {
    font-size: 40px;
  }

  .contact-image {
    min-height: 420px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }

  .footer-bottom .container {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 22px 0;
  }
}
