:root {
  --bg-page: #edf3f8;
  --bg-page-strong: #e8eff5;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --surface-muted: #f1f6fa;
  --line: #d8e4ee;
  --line-strong: #bfd4e2;
  --text-main: #1f2d3a;
  --text-muted: #66788a;
  --text-soft: #8ea1b2;
  --accent: #00a9e9;
  --accent-strong: #0d7cb9;
  --accent-soft: #e5f8ff;
  --shadow: 0 20px 40px rgba(34, 62, 88, 0.08);
  --shadow-soft: 0 12px 24px rgba(34, 62, 88, 0.06);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --shell-width: min(1460px, calc(100vw - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--bg-page);
}

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

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

.shell {
  width: var(--shell-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(237, 243, 248, 0.92);
  border-bottom: 1px solid rgba(216, 228, 238, 0.9);
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header__inner {
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  flex: none;
}

.brand__name {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__sub {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.98rem;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text-main);
  background: rgba(0, 169, 233, 0.08);
  transform: translateY(-1px);
}

.hero {
  padding: 72px 0 58px;
}

.hero--page {
  padding-top: 58px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.hero__content {
  padding: 18px 0;
}

.eyebrow,
.kicker,
.info-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.title {
  margin: 22px 0 16px;
  max-width: 700px;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 16px 30px rgba(0, 169, 233, 0.2);
}

.button--secondary {
  color: #ffffff;
  background: #1f2d3a;
  box-shadow: var(--shadow-soft);
}

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

.stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}

.stat {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(216, 228, 238, 0.9);
}

.stat__value {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.15;
}

.stat__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat__description {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-art {
  display: grid;
  gap: 18px;
}

.hero-art__stage {
  position: relative;
  min-height: 520px;
}

.hero-art__shape {
  position: absolute;
  border-radius: 32px;
}

.hero-art__shape--back {
  top: 36px;
  right: 8px;
  width: 62%;
  height: 66%;
  background: linear-gradient(135deg, #9eeeff, #34c3f5 90%);
  transform: rotate(-8deg);
}

.hero-art__shape--front {
  top: 82px;
  right: 36px;
  width: 66%;
  height: 48%;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
  border: 2px solid rgba(13, 124, 185, 0.18);
  box-shadow: var(--shadow);
}

.hero-art__screen {
  position: absolute;
  top: 72px;
  right: 86px;
  width: 360px;
  max-width: calc(100% - 110px);
  height: 250px;
  border-radius: 20px;
  border: 2px solid rgba(13, 124, 185, 0.65);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-art__toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 14px;
  background: #f4fbff;
  border-bottom: 1px solid var(--line);
}

.hero-art__toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(13, 124, 185, 0.55);
}

.hero-art__screen-copy {
  padding: 26px 28px;
}

.hero-art__screen-copy strong {
  display: block;
  margin-bottom: 18px;
  color: #95b3c7;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-art__lines {
  display: grid;
  gap: 14px;
}

.hero-art__lines span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 169, 233, 0.12), rgba(0, 169, 233, 0.28));
}

.hero-art__lines span:nth-child(1) {
  width: 48%;
}

.hero-art__lines span:nth-child(2) {
  width: 72%;
}

.hero-art__lines span:nth-child(3) {
  width: 58%;
}

.hero-art__cloud {
  position: absolute;
  left: 16px;
  bottom: 80px;
  width: 270px;
  height: 120px;
  border-radius: 999px;
  border: 6px solid rgba(13, 124, 185, 0.75);
  background: linear-gradient(180deg, #b8eeff, #8bd8f4);
  box-shadow: 0 10px 0 rgba(13, 124, 185, 0.16);
}

.hero-art__cloud::before,
.hero-art__cloud::after {
  content: "";
  position: absolute;
  bottom: 48px;
  border-radius: 50%;
  background: inherit;
  border: inherit;
}

.hero-art__cloud::before {
  left: 24px;
  width: 92px;
  height: 92px;
}

.hero-art__cloud::after {
  right: 30px;
  width: 104px;
  height: 104px;
}

.hero-art__cloud-core {
  position: absolute;
  left: 78px;
  top: 18px;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: inherit;
  border: inherit;
}

.hero-art__cloud-ring {
  position: absolute;
  left: 94px;
  top: 44px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.82);
  z-index: 1;
}

.hero-art__chart-card {
  position: absolute;
  right: 40px;
  bottom: 84px;
  width: 164px;
  height: 128px;
  padding: 20px;
  border-radius: 14px;
  background: #114a7c;
  box-shadow: var(--shadow);
}

.hero-art__chart-line {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 12%, #dff48f 12% 14%, transparent 14% 28%, #dff48f 28% 30%, transparent 30% 46%, #dff48f 46% 48%, transparent 48% 64%, #dff48f 64% 66%, transparent 66% 82%, #dff48f 82% 84%, transparent 84% 100%);
  clip-path: polygon(0% 88%, 14% 56%, 28% 68%, 40% 46%, 54% 74%, 70% 38%, 84% 60%, 100% 12%, 100% 100%, 0% 100%);
}

.hero-art__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 10px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(13, 124, 185, 0.16);
  box-shadow: var(--shadow-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.hero-art__float--code {
  top: 64px;
  right: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  transform: rotate(14deg);
}

.hero-art__float--wave {
  top: 182px;
  right: 124px;
}

.hero-art__float--wind {
  right: 18px;
  bottom: 188px;
}

.hero-art__caption {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px 0 6px;
}

.hero-art__caption h2 {
  margin: 0;
  font-size: 1.56rem;
  line-height: 1.2;
}

.hero-art__caption p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text-main);
  font-size: 0.92rem;
}

.chip-list--hero li {
  background: #ffffff;
}

.media-band {
  padding: 0 0 24px;
  background: var(--bg-page);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(16, 34, 52, 0.76) 100%);
}

.media-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
  color: #ffffff;
}

.media-card__title {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.media-card__overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.section {
  position: relative;
  padding: 0;
}

.section--compact {
  padding-top: 0;
}

main > section:nth-of-type(odd) {
  background: var(--bg-page);
}

main > section:nth-of-type(even) {
  background: var(--surface);
}

.section-panel {
  padding: 76px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 40px;
  text-align: center;
}

.section-heading__copy {
  max-width: 860px;
  margin: 0 auto;
}

.section__title {
  margin: 10px 0 12px;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section__lead {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
}

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

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

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

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

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

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

.info-card,
.step-card {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 169, 233, 0.3);
  box-shadow: var(--shadow-soft);
}

.info-card h3,
.step-card h3 {
  margin: 16px 0 12px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.info-card p,
.step-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.82;
}

.step-card {
  min-height: 220px;
}

.step-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--font-sans);
  font-size: 1.06rem;
  font-weight: 700;
}

.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 169, 233, 0.12);
  box-shadow: var(--shadow-soft);
  color: var(--accent-strong);
}

.info-card__icon-symbol {
  width: 34px;
  height: 34px;
}

.section--compact .section-heading {
  margin-bottom: 46px;
}

.section--compact .card-grid {
  gap: 24px;
}

.section--compact .info-card {
  text-align: center;
  padding: 38px 30px 34px;
}

.section--compact .info-card__icon {
  margin: 0 auto;
}

.section--compact .info-card p {
  max-width: 34ch;
  margin: 0 auto;
}

.section--variant-1 .card-grid {
  gap: 24px;
}

.section--variant-1 .info-card {
  text-align: center;
  padding: 38px 32px;
}

.section--variant-1 .info-card__icon {
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff, #f2fbff);
}

.section--variant-1 .info-card p {
  max-width: 34ch;
  margin: 0 auto;
}

.section--variant-2 .info-card {
  padding: 32px 32px 36px;
  background: linear-gradient(180deg, #ffffff, #f6fbff 100%);
  border-top: 4px solid rgba(0, 169, 233, 0.5);
}

.section--variant-2 .info-card__icon {
  margin-bottom: 4px;
  background: var(--accent-soft);
}

.section--variant-3 .info-card {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(0, 169, 233, 0.06), transparent 28%),
    var(--surface-soft);
}

.section--variant-3 .info-card__icon {
  margin-bottom: 2px;
  border-radius: 50%;
}

.cta-section {
  padding: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 78px 0 88px;
  padding: 40px 44px;
  background: var(--surface);
  border: 1px solid rgba(216, 228, 238, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.cta-card__copy {
  max-width: 760px;
}

.cta-card h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.cta-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.site-footer {
  border-top: 1px solid rgba(216, 228, 238, 0.92);
  background: #f2f6fa;
}

.site-footer__inner {
  align-items: flex-start;
  padding: 42px 0 54px;
}

.site-footer__brand {
  max-width: 700px;
}

.brand--footer .brand__mark {
  width: 42px;
  height: 42px;
}

.site-footer__copy {
  margin: 16px 0 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.site-footer__links a {
  color: var(--text-muted);
}

.site-footer__links a:hover {
  color: var(--accent-strong);
}

.reveal {
  animation: rise-in 640ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.reveal--delay-2 {
  animation-delay: 0.12s;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero__grid,
  .media-grid,
  .card-grid--4,
  .card-grid--3,
  .step-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-art__stage {
    min-height: 460px;
  }
}

@media (max-width: 920px) {
  .hero__grid,
  .media-grid,
  .card-grid--2,
  .card-grid--3,
  .card-grid--4,
  .step-grid--2,
  .step-grid--3,
  .step-grid--4 {
    grid-template-columns: 1fr;
  }

  .site-header__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav,
  .site-footer__links {
    justify-content: flex-start;
  }

  .hero-art__stage {
    min-height: 390px;
  }

  .hero-art__screen {
    right: 48px;
    width: 320px;
  }

  .hero-art__cloud {
    left: 0;
    width: 240px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell-width: min(100vw - 28px, 1460px);
  }

  .title {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .section__title,
  .cta-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero,
  .hero--page {
    padding-top: 40px;
  }

  .media-card {
    min-height: 220px;
  }

  .cta-card,
  .info-card,
  .step-card,
  .stat {
    padding: 22px;
  }

  .section-panel {
    padding: 52px 0;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-art__stage {
    min-height: 320px;
  }

  .hero-art__screen {
    top: 52px;
    right: 26px;
    width: 250px;
    height: 200px;
  }

  .hero-art__shape--back {
    width: 62%;
    height: 60%;
  }

  .hero-art__shape--front {
    top: 66px;
    right: 18px;
    width: 70%;
    height: 44%;
  }

  .hero-art__cloud {
    bottom: 42px;
    width: 180px;
    height: 86px;
    border-width: 4px;
  }

  .hero-art__cloud::before {
    left: 16px;
    width: 60px;
    height: 60px;
    bottom: 30px;
    border-width: 4px;
  }

  .hero-art__cloud::after {
    right: 18px;
    width: 68px;
    height: 68px;
    bottom: 30px;
    border-width: 4px;
  }

  .hero-art__cloud-core {
    left: 52px;
    top: 10px;
    width: 78px;
    height: 78px;
    border-width: 4px;
  }

  .hero-art__cloud-ring {
    left: 64px;
    top: 30px;
    width: 40px;
    height: 40px;
  }

  .hero-art__chart-card {
    right: 18px;
    bottom: 48px;
    width: 110px;
    height: 90px;
    padding: 14px;
  }

  .hero-art__float {
    padding: 8px 10px;
    min-width: 58px;
    font-size: 0.86rem;
  }

  .hero-art__float--wave {
    top: 148px;
    right: 94px;
  }

  .hero-art__float--wind {
    bottom: 138px;
  }

  .info-card__icon {
    width: 60px;
    height: 60px;
  }

  .info-card__icon-symbol {
    width: 30px;
    height: 30px;
  }
}

body.site-page--home {
  background: #f5f4ef;
  color: #181a1b;
}

body.site-page--home.is-contact-dialog-open {
  overflow: hidden;
}

.home-shell {
  width: min(1280px, calc(100vw - 72px));
  margin: 0 auto;
}

.site-page--home .site-header {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-page--home .site-header.is-scrolled,
.site-page--home .site-header.is-open {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.home-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 68px;
  padding: 0 30px 0 50px;
  box-sizing: border-box;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.home-brand__mark {
  width: 28px;
  height: 28px;
}

.home-brand__name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  margin-left: 120px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.home-nav__link {
  color: #a6a6a6;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color 180ms ease;
}

.home-nav__link:hover,
.home-nav__link:focus-visible {
  color: #0089ff;
}

.home-nav__link--current,
.home-nav__link--current:hover,
.home-nav__link--current:focus-visible {
  color: #0089ff;
}

.home-header__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}

.home-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
}

.home-header__phone svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.home-header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 5px;
  border-radius: 999px;
  background: currentColor;
}

.home-header__toggle span:last-child {
  margin-bottom: 0;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.home-button:hover,
.home-button:focus-visible {
  transform: translateY(-2px);
}

.home-button--hero,
.home-button--contact {
  background: #ffffff;
  color: #101114;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.16);
}

.home-button--hero {
  min-width: 144px;
  min-height: 40px;
  padding: 9px 20px;
  border-radius: 4px;
  gap: 16px;
  box-shadow: none;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
}

.home-button--hero:hover,
.home-button--hero:focus-visible {
  transform: none;
  box-shadow: none;
  background: #ffffff;
}

.home-button--header {
  min-height: 39px;
  padding: 9px 20px;
  border-radius: 4px;
  gap: 16px;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
}

.home-button--header:hover,
.home-button--header:focus-visible {
  transform: none;
  box-shadow: none;
  background: #ffffff;
}

.home-button--contact {
  min-height: 34px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.home-button__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 5px;
  object-fit: contain;
}

.home-button--download:hover,
.home-button--download:focus-visible {
  background: #d8d8d8;
}


.site-home {
  background: #f5f4ef;
}

.home-hero {
  position: relative;
  min-height: 707px;
  height: 707px;
  overflow: clip;
  background: #05070a;
}

.home-hero__media,
.home-hero__video,
.home-hero__overlay {
  position: absolute;
  inset: 0;
}

.home-hero__media {
  background-image: var(--home-hero-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.06);
  animation: home-hero-pan 20s ease-in-out infinite alternate;
}

.home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.home-hero__overlay {
  background:
    linear-gradient(180deg, rgba(2, 3, 6, 0.52) 0%, rgba(2, 3, 6, 0.44) 28%, rgba(2, 3, 6, 0.74) 100%),
    linear-gradient(180deg, rgba(5, 8, 13, 0.2) 0%, rgba(5, 8, 13, 0.52) 100%);
}

.home-hero__overlay::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.home-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 707px;
  height: 707px;
  padding: 120px 0 96px;
  box-sizing: border-box;
}

.home-hero__copy {
  max-width: 756px;
  text-align: center;
  color: #ffffff;
}

.home-hero__title {
  max-width: 625px;
  margin: 0 auto;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(2.75rem, 3.5vw, 3.125rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-hero__lead {
  max-width: 756px;
  margin: 13px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  line-height: 2;
}

.home-hero__copy .home-button {
  margin-top: 55px;
}

.home-section {
  padding: 0;
}

.home-section[id],
.home-final-cta,
.site-page--home[id] {
  scroll-margin-top: 88px;
}

.home-section__heading {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.home-section__heading h2 {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  max-width: 648px;
  margin: 0 auto;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-section__heading p {
  max-width: 571px;
  margin: 8px auto 0;
  color: #62676a;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  line-height: 28px;
  white-space: nowrap;
}

.home-section--capabilities {
  padding: 96px 0 120px;
  background: #f5f4ef;
}

.home-capability-list {
  display: grid;
  gap: 80px;
  width: min(1274px, 100%);
  margin: 80px auto 0;
}

.home-capability {
  display: grid;
  grid-template-columns: 504px 599px;
  align-items: center;
  justify-content: space-between;
  gap: 171px;
}

.home-capability--media-left {
  grid-template-columns: 599px 504px;
}

.home-capability__copy {
  width: 504px;
  max-width: 504px;
  padding-top: 4px;
}

.home-capability__badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 3px;
  background: #e8e8e8;
  color: #4d4d4d;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 40px;
  white-space: nowrap;
}

.home-capability__copy h3 {
  margin: 30px 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 40px;
  white-space: nowrap;
}

.home-capability__copy p {
  margin: 0;
  color: #62676a;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  line-height: 28px;
}

.home-capability__media {
  position: relative;
  width: 599px;
  max-width: 100%;
  min-height: 337px;
  height: 337px;
  justify-self: end;
}

.home-capability--media-left .home-capability__media {
  justify-self: start;
}

.home-capability__image {
  display: block;
  width: 599px;
  max-width: 100%;
  height: 337px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(62, 65, 71, 0.2);
}

.home-section--industry,
.home-section--pricing,
.home-section--about,
.home-section--trust {
  padding: 96px 0 120px;
  background: #f5f4ef;
}

.home-industry {
  display: flex;
  align-items: stretch;
  height: 604px;
  margin-top: 40px;
  overflow: hidden;
  background: #dbe2e8;
  box-shadow: 0 18px 40px rgba(62, 65, 71, 0.14);
}

.home-industry__item {
  position: relative;
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow 320ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.home-industry__item.is-active {
  flex-grow: 3.218;
}

.home-industry:hover .home-industry__item,
.home-industry:focus-within .home-industry__item {
  flex-grow: 1;
}

.home-industry:hover .home-industry__item:hover,
.home-industry:focus-within .home-industry__item:focus-visible {
  flex-grow: 3.218;
}

.home-industry__item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.home-industry__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 14, 21, 0.04) 0%, rgba(8, 12, 18, 0.14) 100%);
  transition: background 320ms ease;
}

.home-industry__item.is-active::after {
  background: linear-gradient(180deg, rgba(9, 14, 21, 0.12) 0%, rgba(8, 12, 18, 0.74) 100%);
}

.home-industry:hover .home-industry__item::after,
.home-industry:focus-within .home-industry__item::after {
  background: linear-gradient(180deg, rgba(9, 14, 21, 0.04) 0%, rgba(8, 12, 18, 0.14) 100%);
}

.home-industry:hover .home-industry__item:hover::after,
.home-industry:focus-within .home-industry__item:focus-visible::after {
  background: linear-gradient(180deg, rgba(9, 14, 21, 0.12) 0%, rgba(8, 12, 18, 0.74) 100%);
}

.home-industry__item.is-active > img {
  transform: scale(1.02);
}

.home-industry:hover .home-industry__item > img,
.home-industry:focus-within .home-industry__item > img {
  transform: none;
}

.home-industry:hover .home-industry__item:hover > img,
.home-industry:focus-within .home-industry__item:focus-visible > img {
  transform: scale(1.02);
}

.home-industry__item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: -4px;
}

.home-industry__content {
  position: absolute;
  left: 40px;
  right: 32px;
  bottom: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: min(360px, calc(100% - 72px));
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 280ms ease;
}

.home-industry__item.is-active .home-industry__content {
  opacity: 1;
  transform: translateY(0);
}

.home-industry:hover .home-industry__item .home-industry__content,
.home-industry:focus-within .home-industry__item .home-industry__content {
  opacity: 0;
  transform: translateY(20px);
}

.home-industry:hover .home-industry__item:hover .home-industry__content,
.home-industry:focus-within .home-industry__item:focus-visible .home-industry__content {
  opacity: 1;
  transform: translateY(0);
}

.home-industry__icon {
  width: 36px;
  height: 37px;
  margin: 0 0 8px;
}

.home-industry__content h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}

.home-industry__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  line-height: 1.55;
}

.home-industry__content p:last-child {
  margin-bottom: 0;
}

.home-industry__content span {
  color: inherit;
}

.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 308px));
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.home-plan {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 443px;
  padding: 31px 29px 26px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 4px 38.5px rgba(184, 188, 197, 0.2);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.home-plan:hover {
  box-shadow: 0 10px 32px rgba(184, 188, 197, 0.28);
}

.home-plan h3 {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.home-plan__description {
  margin: 52px 0 0;
  color: #62676a;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.home-plan__rows {
  display: grid;
  gap: 0;
  margin: 46px 0 auto;
}

.home-plan__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.home-plan--multi .home-plan__row:first-child {
  padding-bottom: 18px;
}

.home-plan__row--split {
  padding-top: 17px;
  border-top: 1px solid #e1e5eb;
}

.home-plan__row dt {
  margin: 0;
  color: #181a1b;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.home-plan__row dd {
  margin: 0;
  color: #181a1b;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-align: right;
  transform: translateY(-1px);
}

.home-plan--single .home-plan__rows {
  margin-top: 46px;
}

.home-plan--single .home-plan__row dt {
  color: #62676a;
  font-size: 12px;
}

.home-plan--single .home-plan__row dd {
  color: #62676a;
  font-size: 20px;
  font-weight: 700;
  transform: translateY(-6px);
}

.home-plan--dark .home-plan__row dd {
  color: #181a1b;
  font-size: 16px;
  font-weight: 500;
  transform: translateY(-1px);
}

.home-plan__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  box-sizing: border-box;
  width: 250px;
  min-height: 50px;
  padding: 0;
  margin-top: 36px;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.home-plan__action:hover,
.home-plan__action:focus-visible {
  filter: brightness(0.96);
}

.home-plan--light .home-plan__action {
  border: 1px solid #b8bcc5;
  color: #181a1b;
  background: #ffffff;
}

.home-plan--blue .home-plan__action {
  color: #ffffff;
  background: #4b80eb;
}

.home-plan--orange .home-plan__action {
  color: #ffffff;
  background: #cd7121;
}

.home-plan--dark .home-plan__action {
  color: #ffffff;
  background: #131314;
}

.home-contact-dialog[hidden] {
  display: none !important;
}

.home-contact-dialog {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.home-contact-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.home-contact-dialog__panel {
  position: relative;
  width: min(680px, calc(100vw - 32px));
  padding: 38px 40px 60px;
  border-radius: 8px;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  outline: none;
}

.home-contact-dialog.is-open .home-contact-dialog__panel {
  opacity: 1;
  transform: translateY(0);
}

.home-contact-dialog__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #909399;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.home-contact-dialog__close:hover,
.home-contact-dialog__close:focus-visible {
  color: #141414;
  transform: scale(1.04);
}

.home-contact-dialog__close span {
  font-size: 24px;
  line-height: 1;
}

.home-contact-dialog__content {
  text-align: center;
}

.home-contact-dialog__content h2 {
  margin: 0 0 8px;
  color: #141414;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.home-contact-dialog__subtitle {
  margin: 0;
  color: rgba(20, 20, 20, 0.6);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.home-contact-dialog__subtitle--last {
  margin-bottom: 40px;
}

.home-contact-dialog__qrcodes {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.home-contact-dialog__qrcode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
}

.home-contact-dialog__qrcode-box {
  width: 144px;
  height: 144px;
  margin-bottom: 12px;
  background: #ffffff;
}

.home-contact-dialog__qrcode-box img {
  width: 100%;
  height: 100%;
  display: block;
}

.home-contact-dialog__qrcode-title {
  margin: 0 0 4px;
  color: #141414;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.home-contact-dialog__qrcode-desc {
  margin: 0;
  color: rgba(20, 20, 20, 0.6);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.home-about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 543px) minmax(0, 532px);
  align-items: start;
  column-gap: clamp(48px, 10vw, 126px);
  row-gap: 0;
  margin-top: 80px;
  min-height: 460px;
}

.home-about__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 543px;
  padding-top: 17px;
}

.home-about__label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 47px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
}

.home-about__label::before {
  content: "";
  flex: none;
  width: 22px;
  height: 13px;
  margin-top: 4px;
  background: url("/site-media/home/about-label-mark.svg") center center / contain no-repeat;
}

.home-about__copy p {
  margin: 0;
  color: #1e1e1e;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.home-about__visual {
  width: 100%;
  max-width: 532px;
  justify-self: end;
  overflow: hidden;
}

.home-about__visual img {
  width: 100%;
  display: block;
  height: 460px;
  object-fit: cover;
}

.home-about__stats {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 40px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  min-height: 147px;
  padding: 0 clamp(28px, 9vw, 122px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 38.5px rgba(184, 188, 197, 0.2);
}

.home-about__stat {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  text-align: left;
}

.home-about__stat strong {
  display: block;
  margin: 0;
  color: #181a1a;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.home-about__stat span {
  display: flex;
  align-items: flex-end;
  width: 56px;
  color: #62676a;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  position: relative;
  top: 14px;
}

.home-trust {
  margin-top: 40px;
}

.home-trust img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-final-cta {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 36px 0;
  background: #000000;
}

.home-final-cta::before,
.home-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.home-final-cta::before {
  background: #000000 var(--home-cta-image) center center / auto 100% no-repeat;
}

.home-final-cta::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.36) 50%, rgba(0, 0, 0, 0.92) 100%);
}

.home-final-cta__overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: 0;
}

.home-final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 133px;
}

.home-final-cta__copy {
  text-align: center;
  color: #ffffff;
}

.home-final-cta__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.2;
}

.home-final-cta__copy p {
  margin: 10px 0 0;
  color: rgba(235, 233, 233, 0.82);
  font-size: 0.84rem;
  line-height: 1.8;
}

.home-final-cta__copy .home-button {
  margin-top: 22px;
}

.site-page--home .site-footer {
  background: #ffffff;
  border-top: 0;
}

.site-footer--home {
  padding: 96px 0 24px;
}

.home-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 236px) minmax(0, 1fr);
  gap: clamp(80px, 12vw, 229px);
  align-items: flex-start;
}

.home-brand--footer {
  gap: 6px;
  color: #4c4f63;
}

.home-brand--footer .home-brand__mark {
  width: 24px;
  height: 24px;
}

.home-brand--footer .home-brand__name {
  font-size: 1rem;
  line-height: 1;
}

.home-footer__brand {
  max-width: 236px;
}

.home-footer__summary {
  margin: 15px 0 44px;
  color: #495770;
  font-size: 0.75rem;
  line-height: 1.67;
}

.home-footer__contacts {
  display: grid;
  gap: 10px;
  color: #495770;
  font-size: 0.75rem;
  line-height: 1.67;
}

.home-footer__contact-text {
  margin: 0;
}

.home-footer__contact-link {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.home-footer__contact-link:hover,
.home-footer__contact-link:focus-visible {
  color: #1d212d;
}

.home-footer__columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(84px, max-content));
  justify-content: end;
  gap: 80px;
}

.home-footer__column h3 {
  margin: 0 0 20px;
  color: #1d212d;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.home-footer__column ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-footer__column a {
  color: #62676a;
  font-size: 0.75rem;
  line-height: 1;
  transition: color 180ms ease;
}

.home-footer__column a:hover,
.home-footer__column a:focus-visible {
  color: #000000;
}

.home-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 57px;
  padding-top: 24px;
  border-top: 1px solid rgba(73, 87, 112, 0.14);
  color: #495770;
  font-size: 0.75rem;
  line-height: 1.67;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 540ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 540ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes home-hero-pan {
  from {
    transform: scale(1.06) translateY(0);
  }

  to {
    transform: scale(1.1) translateY(-14px);
  }
}

@media (max-width: 1180px) {
  .home-shell {
    width: min(100vw - 48px, 1280px);
  }

  .home-header__inner {
    padding: 0 24px 0 32px;
  }

  .home-nav {
    gap: 36px;
    margin-left: 64px;
  }

  .home-header__meta {
    gap: 24px;
  }

  .home-capability,
  .home-capability--media-left,
  .home-about,
  .home-footer__top {
    grid-template-columns: 1fr;
  }

  .home-footer__top {
    gap: 48px;
  }

  .home-capability-list {
    width: 100%;
  }

  .home-capability__copy,
  .home-capability__media {
    width: min(599px, 100%);
    max-width: 100%;
  }

  .home-capability__media,
  .home-capability--media-left .home-capability__media {
    justify-self: center;
  }

  .home-capability__image {
    width: 100%;
  }

  .home-industry {
    height: 520px;
  }

  .home-industry__content {
    left: 28px;
    right: 24px;
    bottom: 36px;
    width: min(300px, calc(100% - 52px));
  }

  .home-pricing-grid,
  .home-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 308px));
    justify-content: center;
  }

  .home-footer__brand {
    max-width: 100%;
  }

  .home-footer__columns {
    gap: 32px 48px;
  }

  .home-about {
    min-height: 0;
    gap: 32px;
  }

  .home-about__copy,
  .home-about__visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .home-about__stats {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
    padding: 32px 28px;
  }
}

@media (max-width: 960px) {
  .home-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 20px;
  }

  .home-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .home-nav,
  .home-header__meta {
    position: absolute;
    right: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .home-nav {
    top: 68px;
    display: grid;
    justify-items: start;
    gap: 16px;
    margin-left: 0;
    padding: 20px 24px 10px;
    background: #000000;
  }

  .home-header__meta {
    top: 282px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 24px 20px;
    background: #000000;
  }

  .site-page--home .site-header.is-open .home-nav,
  .site-page--home .site-header.is-open .home-header__meta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .home-hero,
  .home-hero__inner {
    height: 100svh;
    min-height: 100svh;
  }

}

@media (max-width: 720px) {
  .home-shell {
    width: min(100vw - 28px, 1280px);
  }

  .home-hero__inner {
    padding: 116px 0 64px;
  }

  .home-hero__title {
    max-width: 100%;
    font-size: clamp(2.3rem, 10vw, 3.125rem);
  }

  .home-hero__lead {
    margin-top: 16px;
    font-size: 0.82rem;
    line-height: 1.85;
  }

  .home-hero__copy .home-button {
    margin-top: 32px;
  }

  .home-section--capabilities,
  .home-section--industry,
  .home-section--pricing,
  .home-section--about,
  .home-section--trust {
    padding: 72px 0 84px;
  }

  .home-capability-list {
    gap: 56px;
    margin-top: 54px;
  }

  .home-capability {
    gap: 32px;
  }

  .home-capability__copy h3,
  .home-section__heading h2,
  .home-final-cta__copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.3;
    white-space: normal;
  }

  .home-section__heading p {
    white-space: normal;
  }

  .home-capability__media,
  .home-capability__image {
    min-height: 240px;
    height: 240px;
  }

  .home-pricing-grid,
  .home-about__stats,
  .home-footer__columns,
  .home-footer__bottom {
    grid-template-columns: 1fr;
  }

  .home-industry {
    flex-direction: column;
    height: auto;
  }

  .home-industry__item,
  .home-industry__item.is-active {
    min-height: 180px;
    height: auto;
  }

  .home-industry__item.is-active {
    min-height: 320px;
  }

  .home-industry__content {
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
  }

  .home-industry__icon {
    width: 36px;
    height: 37px;
    margin: 0 0 12px;
  }

  .home-industry__content h3 {
    margin-bottom: 4px;
    font-size: 1.125rem;
  }

  .home-industry__content p {
    font-size: 0.72rem;
    line-height: 1.6;
  }

  .home-plan {
    min-height: auto;
  }

  .home-plan__description {
    margin-top: 40px;
  }

  .home-plan__action {
    width: 100%;
    font-size: 18px;
  }

  .home-contact-dialog {
    padding: 16px;
  }

  .home-contact-dialog__panel {
    width: min(680px, calc(100vw - 32px));
    padding: 48px 24px 36px;
  }

  .home-contact-dialog__qrcodes {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .home-contact-dialog__qrcode-item {
    width: 100%;
    max-width: 280px;
  }

  .home-about {
    gap: 24px;
    min-height: 0;
  }

  .home-about__label {
    gap: 14px;
    margin-bottom: 28px;
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .home-about__copy p {
    font-size: 1rem;
    line-height: 1.9;
  }

  .home-about__visual img {
    height: 280px;
  }

  .home-about__stats {
    padding: 26px 20px;
  }

  .home-about__stat strong {
    font-size: 2rem;
  }

  .site-footer--home {
    padding-top: 72px;
  }

  .home-footer__top {
    gap: 32px;
  }

  .home-footer__columns {
    gap: 24px;
  }

  .home-footer__bottom {
    display: grid;
    justify-items: start;
    gap: 8px;
  }
}
