:root {
  --ink: #151821;
  --muted: #606a75;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #e5e7ee;
  --deep: #0d1324;
  --teal: #008b98;
  --blue: #1464f4;
  --purple: #7c3aed;
  --red: #df334a;
  --orange: #f47b20;
  --green: #18a058;
  --amber: #f0a11a;
  --brick: #b64545;
  --rose: #d83f87;
  --cyan: #00a6c8;
  --body-font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --display-font: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  --accent-font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --serif-soft: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  --shadow: 0 16px 36px rgba(22, 28, 44, 0.1);
  --page-gutter: clamp(32px, 4vw, 96px);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
ul,
ol,
figure {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 1000;
  background: var(--panel);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: calc(100% - var(--page-gutter));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(20, 24, 27, 0.08);
  backdrop-filter: blur(16px);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease;
}

body.home-page {
  min-height: 100svh;
  background: var(--paper);
}

body.home-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.home-page.home-header-solid .site-header,
body.home-page.menu-open .site-header {
  background: rgba(251, 250, 247, 0.96);
  border-bottom-color: rgba(20, 24, 27, 0.08);
  box-shadow: 0 10px 28px rgba(14, 18, 28, 0.08);
  backdrop-filter: blur(16px);
}

body.home-page:not(.home-header-solid) .brand img {
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.35));
}

.nav-shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
}

.brand img {
  width: 42px;
  height: 42px;
}

.header-phones {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-left: clamp(28px, 3vw, 48px);
  white-space: nowrap;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.header-phone {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-phone::before {
  content: none;
}

.header-phone-after {
  color: var(--red);
}

.header-phone-sales {
  color: var(--blue);
}

.header-phone-separator {
  color: rgba(15, 23, 42, 0.36);
  font-size: 18px;
  line-height: 1;
}

.phone-label {
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.phone-number {
  color: inherit;
  font-family: var(--accent-font);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.18;
}

.header-phone-after:hover {
  color: #b91c1c;
}

.header-phone-sales:hover {
  color: #0f4ed7;
}

body.home-page:not(.home-header-solid) .header-phones {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.nav-links a {
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 4px;
  color: #2f393d;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(20, 100, 244, 0.08);
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

body.home-page:not(.home-header-solid):not(.menu-open) .nav-links,
body.home-page:not(.home-header-solid):not(.menu-open) .header-actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}

.primary-link,
.secondary-link,
.consult-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-link,
.secondary-link {
  padding: 10px 16px;
}

.phone-link {
  color: #0e5f66;
  border: 1px solid #bddbd9;
}

.header-actions .phone-link {
  gap: 8px;
  color: var(--blue);
  background: #ffffff;
  border-color: rgba(20, 100, 244, 0.24);
  box-shadow: none;
}

.header-actions .phone-link::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.header-actions .primary-link {
  background: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.22);
}

.consult-link {
  overflow: hidden;
  min-height: 46px;
  padding: 0;
  color: #ffffff;
  background: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 12px 28px rgba(244, 123, 32, 0.26);
}

.consult-link span,
.consult-link strong {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.consult-link span {
  padding: 0 16px;
  color: #ffffff;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.consult-link-single span {
  padding: 0 22px;
  border-right: 0;
}

.consult-link strong {
  gap: 8px;
  padding: 0 18px;
  color: #ffffff;
  font-size: 17px;
  letter-spacing: 0;
}

.consult-link strong::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.primary-link {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(20, 100, 244, 0.24);
}

.secondary-link {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  color: var(--ink);
}

.hero {
  min-height: 72vh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

body.home-page .home-hero-full {
  min-height: 100svh;
  padding-top: 76px;
}

body.home-arrived .hero > img,
body.home-arrived .hero > video {
  animation: heroFocus 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.home-hero-animate .hero-content > * {
  animation: heroRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.home-hero-animate .hero-content > *:nth-child(2) {
  animation-delay: 0.1s;
}

body.home-hero-animate .hero-content > *:nth-child(3) {
  animation-delay: 0.2s;
}

body.home-hero-animate .hero-content > *:nth-child(4) {
  animation-delay: 0.3s;
}

body.home-hero-animate .hero-content > *:nth-child(5) {
  animation-delay: 0.4s;
}

.hero > img,
.hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero > video {
  background: var(--deep);
  transition: opacity 0.28s ease;
}

.hero > video.is-switching {
  opacity: 0.2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 72%, rgba(223, 51, 74, 0.26), transparent 24%),
    radial-gradient(circle at 72% 18%, rgba(124, 58, 237, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(7, 11, 26, 0.9), rgba(7, 11, 26, 0.46) 58%, rgba(9, 16, 32, 0.72));
}

body.home-page .hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 42%);
}

.hero-content {
  width: calc(100% - var(--page-gutter));
  margin: 0 auto;
  padding: 0 0 72px;
  color: #ffffff;
}

body.home-page .hero-content {
  padding-bottom: clamp(64px, 10vh, 124px);
}

body.home-page .home-hero-copy {
  padding-bottom: 0;
}

.home-hero-copy {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  align-self: center;
  justify-items: center;
  max-width: min(1120px, calc(100% - var(--page-gutter)));
  padding-bottom: 0;
  text-align: center;
  font-family: "Xingkai SC", "STXingkai", "HanziPen SC", "LiSu", "Kaiti SC", "STKaiti", "KaiTi", cursive;
  font-weight: 400;
}

.home-hero-copy .section-kicker {
  color: #ff8a2a;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  font-family: inherit;
  font-weight: 400;
  text-transform: none;
}

.home-hero-copy h1 {
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(24px, 5.2vw, 66px);
  line-height: 1.12;
  white-space: nowrap;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
}

.home-hero-copy .handwriting-title {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  color: #ffffff;
  font-family: "Xingkai SC", "STXingkai", "HanziPen SC", "LiSu", "Kaiti SC", "STKaiti", "KaiTi", cursive;
  font-weight: 400;
  letter-spacing: 0.015em;
  font-style: normal;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.62));
}

.home-hero-copy .handwriting-text {
  display: inline-block;
  white-space: nowrap;
}

.home-hero-copy .handwriting-text span {
  display: inline-block;
  color: #ffffff;
  background: linear-gradient(110deg, #ffffff, #f2fbff 48%, #ffb35f 88%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 400;
  text-shadow:
    0 10px 24px rgba(0, 0, 0, 0.58),
    0 0 1px rgba(255, 255, 255, 0.7);
}

.home-hero-copy .handwriting-title::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -0.12em;
  height: 0.08em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(42, 190, 255, 0.1), rgba(42, 190, 255, 0.92) 32%, rgba(255, 138, 42, 0.94) 74%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  filter: blur(0.2px);
}

body.home-hero-animate .hero-content > .handwriting-title {
  animation:
    heroRise 0.72s cubic-bezier(0.16, 1, 0.3, 1) both,
    inkGlow 3.2s ease-in-out 1.8s infinite alternate;
}

body.home-hero-animate .home-hero-copy .handwriting-text span {
  animation: handwritingGlyph 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.06s * var(--i));
}

body.home-hero-animate .home-hero-copy .handwriting-title::after {
  animation: handwritingUnderline 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.78s both;
}

.home-hero-subtitle {
  margin-top: 18px;
  color: #ff8a2a;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.18;
}

.home-hero-summary {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.3vw, 20px);
  font-family: inherit;
  font-weight: 400;
  line-height: 1.72;
}

.home-hero-keywords {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: center;
  gap: 10px;
  width: auto;
  margin-top: 24px;
}

.home-hero-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 9px 12px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

body.home-hero-animate .home-hero-keywords span {
  animation: keywordPop 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.home-hero-animate .home-hero-keywords span:nth-child(1) {
  animation-delay: 0.48s;
}

body.home-hero-animate .home-hero-keywords span:nth-child(2) {
  animation-delay: 0.56s;
}

body.home-hero-animate .home-hero-keywords span:nth-child(3) {
  animation-delay: 0.64s;
}

body.home-hero-animate .home-hero-keywords span:nth-child(4) {
  animation-delay: 0.72s;
}

.home-hero-actions a {
  min-height: 44px;
  padding-inline: 16px;
  color: #ffffff;
  font-family: inherit;
  font-weight: 400;
  background: rgba(20, 100, 244, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.home-hero-actions a:nth-child(2) {
  color: #ffffff;
  background: rgba(124, 58, 237, 0.68);
  border-color: rgba(255, 255, 255, 0.22);
}

.home-hero-actions a:nth-child(3) {
  color: #ffffff;
  background: rgba(244, 123, 32, 0.84);
  border-color: rgba(255, 255, 255, 0.24);
}

.home-hero-actions {
  margin-top: 30px;
  justify-content: center;
}

.hero-brief {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  top: clamp(132px, 18vh, 190px);
  z-index: 2;
  width: min(410px, 34vw);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.hero-brief article {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 15px 18px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.22);
}

.hero-brief strong {
  font-family: var(--accent-font);
  font-size: 25px;
  line-height: 1;
}

.hero-brief span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: 28px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 13px;
  height: 13px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(20, 24, 27, 0.42);
  font-size: 16px;
  font-weight: 900;
}

.language-switch button {
  border: 0;
  padding: 0;
  color: var(--blue);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--orange);
}

.home-section {
  padding: clamp(46px, 5vw, 74px) 0;
}

.home-overview {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
  color: #17202c;
  background:
    linear-gradient(90deg, rgba(0, 166, 200, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 166, 200, 0.055) 1px, transparent 1px),
    linear-gradient(112deg, rgba(20, 100, 244, 0.08), transparent 42%),
    linear-gradient(180deg, #f8fcff 0%, #eef8fb 100%);
  background-size: 88px 88px, 88px 88px, auto;
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(42px, 4.8vw, 70px);
}

.home-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), transparent 34%, transparent 70%, rgba(255, 255, 255, 0.5)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), transparent 46%);
}

.home-overview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: center;
}

.home-overview-ai-only {
  grid-template-columns: 1fr;
}

.section-kicker {
  display: inline-block;
  color: var(--purple);
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.home-copy h2,
.home-section-head h2,
.home-next h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: #121827;
}

.home-copy p {
  max-width: 720px;
  margin-top: 14px;
  color: #48545a;
  font-size: 18px;
}

.home-answer-statement {
  max-width: 760px;
  color: #111827 !important;
  font-size: clamp(25px, 2.7vw, 38px) !important;
  font-weight: 900;
  line-height: 1.24;
}

.home-seo-line {
  max-width: 680px;
  color: #56616b !important;
  font-size: 17px !important;
}

.home-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-inline-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  background: rgba(20, 100, 244, 0.08);
  border: 1px solid rgba(20, 100, 244, 0.16);
}

.home-inline-actions a:nth-child(2) {
  color: var(--purple);
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.16);
}

.home-inline-actions a:nth-child(3) {
  color: var(--orange);
  background: rgba(244, 123, 32, 0.1);
  border-color: rgba(244, 123, 32, 0.2);
}

.home-answer-list {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.home-answer-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(20, 24, 27, 0.12);
}

.home-answer-list strong {
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.home-answer-list span {
  color: #263139;
  font-size: 16px;
}

.home-ai-block {
  padding: clamp(18px, 2.4vw, 28px) 0 0;
  background: transparent;
  border-top: 1px solid rgba(20, 24, 27, 0.1);
  box-shadow: none;
}

.home-ai-block h2,
.home-ai-block h3 {
  max-width: 760px;
  color: #17202c;
  font-size: clamp(26px, 2.65vw, 38px);
  line-height: 1.2;
  font-weight: 850;
}

.home-ai-block > p {
  max-width: 720px;
  margin-top: 12px;
  color: #4b5563;
  font-size: 17px;
}

.home-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(20, 24, 27, 0.1);
  border-left: 1px solid rgba(20, 24, 27, 0.1);
}

.home-ai-grid article {
  display: grid;
  align-content: start;
  min-height: 136px;
  padding: 22px;
  border-right: 1px solid rgba(20, 24, 27, 0.1);
  border-bottom: 1px solid rgba(20, 24, 27, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  will-change: transform, opacity;
}

.home-ai-grid article:nth-child(1) {
  background: rgba(20, 100, 244, 0.035);
}

.home-ai-grid article:nth-child(2) {
  background: rgba(124, 58, 237, 0.035);
}

.home-ai-grid article:nth-child(3) {
  background: rgba(223, 51, 74, 0.03);
}

.home-ai-grid article:nth-child(4) {
  background: rgba(24, 160, 88, 0.032);
}

.home-ai-grid strong {
  display: block;
  color: #1f2937;
  font-family: var(--accent-font);
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.22;
}

.home-ai-grid article:nth-child(2) strong {
  color: #2f3144;
}

.home-ai-grid article:nth-child(3) strong {
  color: #34313a;
}

.home-ai-grid article:nth-child(4) strong {
  color: #263b34;
}

.home-ai-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.home-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.home-flow em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 7px;
  color: #4b5563;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(20, 24, 27, 0.08);
}

.home-diff-block {
  padding-top: clamp(10px, 1.5vw, 18px);
}

.home-diff-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 12px;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(20, 100, 244, 0.14);
}

.home-diff-head .section-kicker {
  grid-column: 1 / -1;
  color: #008b98;
  margin-bottom: 0;
}

.home-diff-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1.04;
  font-weight: 900;
}

.home-diff-head p {
  max-width: 680px;
  margin: 0 auto;
  color: #40515d;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
}

.home-diff-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid rgba(20, 100, 244, 0.14);
}

.home-diff-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: clamp(196px, 18vw, 248px);
  padding: clamp(18px, 2vw, 28px) clamp(16px, 1.9vw, 24px);
  border-right: 1px solid rgba(20, 100, 244, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    linear-gradient(145deg, rgba(0, 166, 200, 0.11), transparent 64%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  will-change: transform, opacity;
}

.home-diff-grid article::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #00a6c8, rgba(244, 123, 32, 0.72), transparent);
  opacity: 0.76;
}

.home-diff-grid article:nth-child(2)::after,
.home-diff-grid article:nth-child(4)::after {
  background: linear-gradient(90deg, #1464f4, #00a6c8, transparent);
}

.home-diff-grid span {
  color: #008b98;
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 900;
}

.home-diff-grid strong {
  display: block;
  margin-top: 34px;
  color: #17202c;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 900;
}

.home-diff-grid p {
  margin-top: 14px;
  color: #4b5967;
  font-size: 14px;
  line-height: 1.72;
}

.home-band {
  background:
    linear-gradient(135deg, rgba(20, 100, 244, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(244, 123, 32, 0.12), transparent 34%),
    #f3f5fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-loop {
  background:
    linear-gradient(120deg, rgba(124, 58, 237, 0.08), transparent 34%),
    linear-gradient(300deg, rgba(223, 51, 74, 0.08), transparent 32%),
    #ffffff;
}

.home-section-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 0.6fr);
  margin-bottom: 32px;
}

.home-section-head p {
  align-self: end;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.home-loop-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(20, 100, 244, 0.18);
  border-top: 5px solid var(--blue);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(21, 24, 33, 0.06);
}

.home-loop-grid article:nth-child(2) {
  border-color: rgba(124, 58, 237, 0.2);
  border-top-color: var(--purple);
}

.home-loop-grid article:nth-child(3) {
  border-color: rgba(244, 123, 32, 0.22);
  border-top-color: var(--orange);
}

.home-loop-grid article:nth-child(4) {
  border-color: rgba(24, 160, 88, 0.2);
  border-top-color: var(--green);
}

.home-loop-grid span {
  display: inline-block;
  color: var(--blue);
  font-family: var(--accent-font);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 34px;
}

.home-loop-grid article:nth-child(2) span {
  color: var(--purple);
}

.home-loop-grid article:nth-child(3) span {
  color: var(--orange);
}

.home-loop-grid article:nth-child(4) span {
  color: var(--green);
}

.home-loop-grid h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.home-loop-grid p {
  color: var(--muted);
  font-size: 15px;
}

.home-hardware {
  background:
    linear-gradient(180deg, #ffffff, #f5f8ff 74%, #ffffff),
    radial-gradient(circle at 10% 16%, rgba(20, 100, 244, 0.08), transparent 30%);
}

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

.home-hardware-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(20, 24, 27, 0.09);
  box-shadow: 0 18px 42px rgba(18, 25, 40, 0.08);
  overflow: hidden;
  will-change: transform, opacity;
}

.home-hardware-card a {
  display: grid;
  height: 100%;
}

.home-hardware-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-hardware-body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 176px;
  padding: 22px;
}

.home-hardware-body > span {
  color: var(--orange);
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-hardware-body h3 {
  color: #101827;
  font-size: 24px;
  line-height: 1.25;
}

.home-hardware-body p {
  color: var(--muted);
  font-size: 15px;
}

.home-hardware-body .tag-row {
  margin-top: auto;
}

.tag-row em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  color: var(--blue);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  background: rgba(20, 100, 244, 0.08);
  border: 1px solid rgba(20, 100, 244, 0.13);
}

.home-hardware-card:nth-child(2) .tag-row em,
.home-hardware-card:nth-child(5) .tag-row em {
  color: var(--purple);
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.13);
}

.home-hardware-card:nth-child(3) .tag-row em,
.home-hardware-card:nth-child(6) .tag-row em {
  color: var(--green);
  background: rgba(24, 160, 88, 0.08);
  border-color: rgba(24, 160, 88, 0.13);
}

.hardware-compare {
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(20, 24, 27, 0.12);
}

.hardware-compare-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin-bottom: 22px;
}

.hardware-compare-head h3 {
  color: #111827;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
}

.hardware-compare-head p {
  color: var(--muted);
  font-size: 16px;
}

.compare-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid rgba(20, 24, 27, 0.1);
  box-shadow: 0 18px 42px rgba(18, 25, 40, 0.07);
}

.compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(20, 24, 27, 0.09);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: #ffffff;
  font-size: 14px;
  background: #111827;
}

.compare-table tbody th {
  color: var(--blue);
  font-size: 18px;
  white-space: nowrap;
}

.compare-table td {
  color: #4b5563;
  font-size: 15px;
}

.compare-table td a {
  color: #111827;
  font-weight: 900;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.home-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 24px;
}

.home-focus-grid article {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(13, 19, 36, 0.18);
  will-change: transform, opacity;
}

.home-focus-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.home-focus-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 14, 14, 0.04), rgba(9, 14, 14, 0.76)),
    linear-gradient(135deg, rgba(20, 100, 244, 0.32), transparent 52%);
}

.home-focus-grid article:nth-child(2)::after {
  background:
    linear-gradient(180deg, rgba(9, 14, 14, 0.04), rgba(9, 14, 14, 0.76)),
    linear-gradient(135deg, rgba(223, 51, 74, 0.32), rgba(244, 123, 32, 0.18) 58%, transparent);
}

.home-focus-grid div {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.home-focus-grid h3 {
  font-size: 28px;
  font-family: var(--serif-soft);
}

.home-focus-grid p {
  max-width: 560px;
  margin-top: 10px;
  color: #e7eeee;
}

.home-solution-entry {
  background:
    linear-gradient(120deg, rgba(20, 100, 244, 0.07), transparent 34%),
    linear-gradient(300deg, rgba(244, 123, 32, 0.08), transparent 32%),
    #ffffff;
}

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

.home-solution-grid a {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(20, 24, 27, 0.1);
  box-shadow: 0 16px 36px rgba(18, 25, 40, 0.08);
}

.home-solution-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-solution-grid strong {
  padding: 18px 18px 0;
  color: #111827;
  font-size: 20px;
  line-height: 1.3;
}

.home-solution-grid em {
  padding: 12px 18px 20px;
  color: var(--orange);
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
}

.home-section-actions {
  margin-top: 24px;
}

.home-directions {
  background: #0d1324;
  color: #ffffff;
}

.home-directions .home-section-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(36px, 6vw, 110px);
  align-items: start;
}

.home-directions h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
}

.home-directions .home-section-head p {
  color: rgba(255, 255, 255, 0.78);
}

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

.direction-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  will-change: transform, opacity;
}

.direction-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.direction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 19, 36, 0.02), rgba(13, 19, 36, 0.82)),
    linear-gradient(135deg, rgba(20, 100, 244, 0.4), rgba(124, 58, 237, 0.12) 56%, transparent);
}

.direction-card span,
.direction-card strong,
.direction-card em {
  position: relative;
  z-index: 1;
  margin-left: 22px;
  margin-right: 22px;
}

.direction-card span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(244, 123, 32, 0.8);
}

.direction-card strong {
  max-width: 340px;
  font-size: 24px;
  line-height: 1.25;
}

.direction-card em {
  margin-top: 14px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}

.direction-card:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.home-next {
  background:
    radial-gradient(circle at 12% 10%, rgba(24, 160, 88, 0.1), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(124, 58, 237, 0.1), transparent 26%),
    #ffffff;
}

.home-next-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
}

.home-next-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
}

.home-next-links a {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 22px;
  color: var(--blue);
  font-weight: 800;
  background: rgba(20, 100, 244, 0.08);
  border: 1px solid rgba(20, 100, 244, 0.18);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.home-next-links a:nth-child(2) {
  color: var(--orange);
  background: rgba(244, 123, 32, 0.1);
  border-color: rgba(244, 123, 32, 0.2);
}

.home-next-links a:nth-child(3) {
  color: var(--green);
  background: rgba(24, 160, 88, 0.1);
  border-color: rgba(24, 160, 88, 0.2);
}

.home-next-links a:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

.home-hero-product {
  justify-items: start;
  max-width: min(860px, calc(100% - var(--page-gutter)));
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-family: var(--body-font);
}

.home-hero-product .section-kicker {
  color: #ffb35f;
  font-family: var(--accent-font);
  font-weight: 900;
  text-transform: uppercase;
}

.home-hero-product .home-hero-title {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.03;
  font-weight: 900;
  white-space: normal;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.52);
}

.home-hero-product .home-hero-summary {
  max-width: 720px;
  font-family: var(--body-font);
  font-size: clamp(17px, 1.45vw, 21px);
}

.home-hero-product .home-hero-keywords {
  justify-content: start;
}

.home-hero-product .home-hero-actions {
  justify-content: start;
}

.home-hero-product .home-hero-actions a {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.home-hero-product .home-hero-actions a:first-child {
  background: rgba(244, 123, 32, 0.9);
}

.home-hero-product .home-hero-actions a:nth-child(2) {
  background: rgba(20, 100, 244, 0.76);
}

.home-library {
  scroll-margin-top: 76px;
  background:
    linear-gradient(90deg, rgba(0, 166, 200, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 166, 200, 0.045) 1px, transparent 1px),
    linear-gradient(118deg, rgba(20, 100, 244, 0.07), transparent 42%),
    #f9fcff;
  background-size: 88px 88px, 88px 88px, auto;
}

.home-library-head {
  align-items: end;
}

.home-library-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(26px, 4vw, 44px);
  border-left: 1px solid rgba(20, 100, 244, 0.14);
}

.home-library-stats a {
  display: grid;
  align-content: start;
  min-height: 174px;
  padding: clamp(18px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(20, 100, 244, 0.14);
  border-right: 1px solid rgba(20, 100, 244, 0.14);
  border-bottom: 1px solid rgba(20, 100, 244, 0.14);
}

.home-library-stats strong {
  color: var(--blue);
  font-family: var(--accent-font);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.9;
}

.home-library-stats span {
  margin-top: 18px;
  color: #111827;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}

.home-library-stats em {
  margin-top: 8px;
  color: #526070;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}

.home-library-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-library-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(20, 24, 27, 0.1);
  box-shadow: 0 16px 34px rgba(18, 25, 40, 0.07);
}

.home-library-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-library-card span {
  width: fit-content;
  margin: 18px 18px 10px;
  padding: 4px 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: var(--teal);
}

.home-library-card strong {
  min-height: 74px;
  padding: 0 18px 20px;
  color: #17202c;
  font-size: 18px;
  line-height: 1.45;
}

.home-platform {
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 166, 200, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

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

.home-platform-grid article {
  min-height: 216px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 100, 244, 0.13);
  border-top: 4px solid var(--teal);
  box-shadow: 0 16px 34px rgba(18, 25, 40, 0.06);
}

.home-platform-grid article:nth-child(2),
.home-platform-grid article:nth-child(5) {
  border-top-color: var(--blue);
}

.home-platform-grid article:nth-child(3),
.home-platform-grid article:nth-child(6) {
  border-top-color: var(--orange);
}

.home-platform-grid span {
  color: var(--teal);
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 900;
}

.home-platform-grid strong {
  display: block;
  margin-top: 28px;
  color: #111827;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 900;
}

.home-platform-grid p {
  margin-top: 12px;
  color: #4b5967;
  font-size: 15px;
  line-height: 1.72;
}

.home-demo {
  background:
    linear-gradient(120deg, rgba(20, 100, 244, 0.08), transparent 34%),
    linear-gradient(300deg, rgba(244, 123, 32, 0.09), transparent 32%),
    #ffffff;
}

.home-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.home-demo-panel h2 {
  max-width: 640px;
  color: #111827;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
}

.home-demo-panel p {
  max-width: 680px;
  margin-top: 14px;
  color: #4b5967;
  font-size: 17px;
  line-height: 1.72;
}

.home-demo-media video {
  width: 100%;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0d1324;
  border: 1px solid rgba(20, 24, 27, 0.14);
}

.home-demo-links {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid rgba(20, 24, 27, 0.12);
}

.home-demo-links a {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 24, 27, 0.1);
}

.home-demo-links img {
  width: 108px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-demo-links strong {
  color: #17202c;
  font-size: 18px;
  line-height: 1.35;
}

.home-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(44px, 6vw, 74px);
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(20, 24, 27, 0.12);
}

.home-final-cta h2 {
  max-width: 760px;
  color: #111827;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.18;
}

.home-final-cta .home-inline-actions {
  justify-content: end;
  margin-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eef5ff;
  font-family: var(--accent-font);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

body.home-page .eyebrow::before {
  background: rgba(255, 255, 255, 0.74);
}

.section .eyebrow {
  color: #0f6269;
}

h1,
h2,
h3 {
  line-height: 1.18;
  margin: 0;
  font-weight: 800;
}

h1 {
  font-family: var(--display-font);
}

h2 {
  font-family: var(--display-font);
}

h3 {
  font-family: var(--body-font);
}

h1 {
  max-width: 1180px;
  font-size: 56px;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.36);
}

.hero p {
  max-width: 900px;
  margin-top: 20px;
  color: #e5efef;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  transform: translateY(-28px);
  background: var(--line);
  box-shadow: 0 10px 26px rgba(16, 22, 21, 0.06);
}

.metric {
  display: block;
  background: var(--panel);
  padding: 22px;
  min-height: 104px;
}

.home-links .metric {
  display: flex;
  align-items: center;
  min-height: 88px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.home-links .metric:hover {
  background: #eef6f5;
  color: #0f6269;
  transform: translateY(-2px);
}

.metric strong {
  display: block;
  color: var(--teal);
  font-size: 28px;
  line-height: 1.1;
  font-family: "Songti SC", "STSong", serif;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.section {
  padding: 70px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-band {
  background:
    linear-gradient(120deg, rgba(20, 100, 244, 0.06), transparent 32%),
    linear-gradient(300deg, rgba(24, 160, 88, 0.07), transparent 36%),
    #f5f7fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(48px, 6vw, 120px);
  align-items: start;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: 38px;
  max-width: 560px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  max-width: 860px;
  padding-top: 8px;
}

.section-head-compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 28px;
}

.section-more {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  background: var(--panel);
}

.section-more:hover {
  border-color: rgba(20, 100, 244, 0.24);
  background: rgba(20, 100, 244, 0.08);
}

.section-kicker {
  color: var(--purple);
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 800;
}

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

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(21, 24, 33, 0.05);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  border-color: rgba(20, 100, 244, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(21, 24, 33, 0.09);
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe4e2;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-media img {
  transform: scale(1.045);
}

.card-body {
  padding: 22px;
  border-top: 4px solid var(--blue);
}

.card h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: #172033;
}

.grid > .card:nth-child(5n + 2) .card-body,
.catalog-grid > .card:nth-child(5n + 2) .card-body {
  border-top-color: var(--purple);
}

.grid > .card:nth-child(5n + 3) .card-body,
.catalog-grid > .card:nth-child(5n + 3) .card-body {
  border-top-color: var(--red);
}

.grid > .card:nth-child(5n + 4) .card-body,
.catalog-grid > .card:nth-child(5n + 4) .card-body {
  border-top-color: var(--orange);
}

.grid > .card:nth-child(5n + 5) .card-body,
.catalog-grid > .card:nth-child(5n + 5) .card-body {
  border-top-color: var(--green);
}

.home-card h3 {
  margin-bottom: 0;
}

.home-card .card-body {
  min-height: 92px;
  display: flex;
  align-items: center;
}

.home-card.solution-card .card-body {
  min-height: auto;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.solution-card {
  position: relative;
  min-height: clamp(300px, 27vw, 480px);
  border: 0;
  background: var(--deep);
  color: #ffffff;
}

.solution-card a {
  position: relative;
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.solution-bg,
.solution-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solution-bg {
  object-fit: cover;
  z-index: -2;
  transform: scale(1.02);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.solution-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 13, 13, 0.08), rgba(8, 13, 13, 0.72)),
    linear-gradient(90deg, rgba(8, 13, 13, 0.72), rgba(8, 13, 13, 0.24) 62%, rgba(8, 13, 13, 0.48));
}

.solution-card .card-body {
  width: min(760px, 100%);
  padding: clamp(24px, 2.4vw, 42px);
  border-top: 0;
}

.solution-card h3 {
  color: #ffffff;
  font-size: clamp(24px, 1.7vw, 34px);
}

.solution-card p {
  max-width: 680px;
  color: #edf5f2;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
}

.solution-card .tag {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  backdrop-filter: blur(10px);
}

.solution-card:hover .solution-bg {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.05);
}

.asymmetric-grid,
.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.asymmetric-grid > .card,
.catalog-grid > .card {
  min-height: 100%;
}

.asymmetric-grid > .card:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}

.asymmetric-grid > .card:nth-child(2),
.asymmetric-grid > .card:nth-child(3) {
  grid-column: span 3;
}

.asymmetric-grid > .card:nth-child(n + 4) {
  grid-column: span 2;
}

.asymmetric-grid > .card:nth-child(2) a,
.asymmetric-grid > .card:nth-child(3) a {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 100%;
}

.asymmetric-grid > .solution-card:nth-child(2) a,
.asymmetric-grid > .solution-card:nth-child(3) a,
.catalog-grid > .solution-card:nth-child(1) a {
  display: flex;
}

.asymmetric-grid > .card:nth-child(1) .card-media {
  aspect-ratio: 16 / 13;
}

.asymmetric-grid > .solution-card:nth-child(1) {
  min-height: clamp(520px, 45vw, 760px);
}

.asymmetric-grid > .solution-card:nth-child(2),
.asymmetric-grid > .solution-card:nth-child(3) {
  min-height: clamp(250px, 21vw, 380px);
}

.asymmetric-grid > .card:nth-child(2) .card-media,
.asymmetric-grid > .card:nth-child(3) .card-media {
  aspect-ratio: auto;
  height: 100%;
}

.catalog-grid > .card:nth-child(1) {
  grid-column: span 4;
}

.catalog-grid > .card:nth-child(2) {
  grid-column: span 2;
}

.catalog-grid > .card:nth-child(n + 3) {
  grid-column: span 2;
}

.catalog-grid > .card:nth-child(1) a {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  min-height: 100%;
}

.catalog-grid > .card:nth-child(1) .card-media {
  aspect-ratio: auto;
  height: 100%;
}

.asymmetric-grid > .card:nth-child(n),
.catalog-grid > .card:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
}

.asymmetric-grid > .card:nth-child(2) a,
.asymmetric-grid > .card:nth-child(3) a,
.catalog-grid > .card:nth-child(1) a {
  display: block;
}

.asymmetric-grid > .solution-card:nth-child(n) a,
.catalog-grid > .solution-card:nth-child(n) a {
  display: flex;
}

.asymmetric-grid > .card:nth-child(1) .card-media,
.asymmetric-grid > .card:nth-child(2) .card-media,
.asymmetric-grid > .card:nth-child(3) .card-media,
.catalog-grid > .card:nth-child(1) .card-media {
  aspect-ratio: 16 / 10;
  height: auto;
}

.asymmetric-grid > .solution-card:nth-child(n),
.catalog-grid > .solution-card:nth-child(n) {
  min-height: clamp(300px, 27vw, 480px);
}

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

.news-card .card-media {
  aspect-ratio: 16 / 9;
}

.news-card .card-body {
  padding: 24px;
}

.news-card h3 {
  font-size: 25px;
  margin-top: 14px;
}

.news-card p {
  font-size: 18px;
  line-height: 1.8;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.news-grid > .news-card:first-child {
  grid-column: span 2;
}

.news-grid > .news-card:first-child a,
.news-grid > .news-card:first-child {
  min-height: 100%;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--blue);
  background: rgba(20, 100, 244, 0.09);
  font-size: 13px;
  font-weight: 700;
}

.tag-row .tag:nth-child(5n + 2) {
  color: var(--purple);
  background: rgba(124, 58, 237, 0.1);
}

.tag-row .tag:nth-child(5n + 3) {
  color: var(--red);
  background: rgba(223, 51, 74, 0.1);
}

.tag-row .tag:nth-child(5n + 4) {
  color: var(--orange);
  background: rgba(244, 123, 32, 0.12);
}

.tag-row .tag:nth-child(5n + 5) {
  color: var(--green);
  background: rgba(24, 160, 88, 0.1);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 58px;
  align-items: start;
}

.split-copy h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  box-shadow: none;
  border: 1px solid var(--line);
  margin-top: 42px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-item span {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(20, 100, 244, 0.1);
  color: var(--blue);
  font-weight: 900;
  font-family: var(--accent-font);
}

.feature-item:nth-child(5n + 2) span {
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple);
}

.feature-item:nth-child(5n + 3) span {
  background: rgba(223, 51, 74, 0.1);
  color: var(--red);
}

.feature-item:nth-child(5n + 4) span {
  background: rgba(244, 123, 32, 0.12);
  color: var(--orange);
}

.feature-item:nth-child(5n + 5) span {
  background: rgba(24, 160, 88, 0.1);
  color: var(--green);
}

.feature-item strong {
  display: block;
  margin-bottom: 3px;
}

.feature-item p {
  color: var(--muted);
  font-size: 15px;
}

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

.partner-strip figure {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  min-height: 122px;
  display: grid;
  align-items: center;
  gap: 8px;
  border-top: 4px solid var(--blue);
}

.partner-strip figure:nth-child(5n + 2) {
  border-top-color: var(--purple);
}

.partner-strip figure:nth-child(5n + 3) {
  border-top-color: var(--red);
}

.partner-strip figure:nth-child(5n + 4) {
  border-top-color: var(--orange);
}

.partner-strip figure:nth-child(5n + 5) {
  border-top-color: var(--green);
}

.partner-strip img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.partner-strip figcaption {
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
  color: #ffffff;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 80%, rgba(20, 100, 244, 0.24), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(244, 123, 32, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(9, 14, 14, 0.88), rgba(9, 14, 14, 0.36));
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 58px;
}

.page-hero h1 {
  font-size: 46px;
}

.page-hero p {
  max-width: 760px;
  color: #e8f0ef;
  margin-top: 16px;
  font-size: 17px;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: #d5efe9;
  font-size: 14px;
  margin-bottom: 14px;
  padding: 0;
  list-style: none;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 42px;
  align-items: start;
}

.article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 38px;
  box-shadow: none;
}

.info-section {
  padding-top: 72px;
}

.info-page {
  display: block;
}

.article-wide {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 58px);
}

.article-wide .info-block + .info-block {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.article h2 {
  font-size: 32px;
  margin: 38px 0 14px;
}

.article h2:first-child {
  margin-top: 0;
}

.article p {
  color: #3e484d;
  margin: 0 0 16px;
}

.article-wide p,
.article-wide li {
  font-size: 18px;
  line-height: 1.85;
}

.article-wide h2 {
  font-size: clamp(34px, 3vw, 46px);
}

.article ul,
.article ol {
  padding-left: 22px;
  color: #3e484d;
  margin: 0 0 16px;
}

.article li {
  margin: 7px 0;
}

.info-grid,
.job-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.info-card,
.job-card {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(20, 100, 244, 0.18);
  border-top: 4px solid var(--blue);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(20, 100, 244, 0.07), #ffffff 62%);
}

.info-card:nth-child(5n + 2),
.job-card:nth-child(5n + 2) {
  border-color: rgba(124, 58, 237, 0.18);
  border-top-color: var(--purple);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), #ffffff 62%);
}

.info-card:nth-child(5n + 3),
.job-card:nth-child(5n + 3) {
  border-color: rgba(223, 51, 74, 0.18);
  border-top-color: var(--red);
  background: linear-gradient(180deg, rgba(223, 51, 74, 0.08), #ffffff 62%);
}

.info-card:nth-child(5n + 4),
.job-card:nth-child(5n + 4) {
  border-color: rgba(244, 123, 32, 0.2);
  border-top-color: var(--orange);
  background: linear-gradient(180deg, rgba(244, 123, 32, 0.1), #ffffff 62%);
}

.info-card:nth-child(5n + 5),
.job-card:nth-child(5n + 5) {
  border-color: rgba(24, 160, 88, 0.2);
  border-top-color: var(--green);
  background: linear-gradient(180deg, rgba(24, 160, 88, 0.08), #ffffff 62%);
}

.info-card strong,
.job-card strong {
  color: var(--blue);
  font-size: 22px;
  line-height: 1.25;
}

.info-card:nth-child(5n + 2) strong,
.job-card:nth-child(5n + 2) strong {
  color: var(--purple);
}

.info-card:nth-child(5n + 3) strong,
.job-card:nth-child(5n + 3) strong {
  color: var(--red);
}

.info-card:nth-child(5n + 4) strong,
.job-card:nth-child(5n + 4) strong {
  color: var(--orange);
}

.info-card:nth-child(5n + 5) strong,
.job-card:nth-child(5n + 5) strong {
  color: var(--green);
}

.info-card span,
.job-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(20, 100, 244, 0.18);
  border-left: 6px solid var(--blue);
  border-radius: 6px;
  background:
    radial-gradient(circle at 86% 12%, rgba(244, 123, 32, 0.16), transparent 26%),
    radial-gradient(circle at 14% 92%, rgba(124, 58, 237, 0.12), transparent 28%),
    #f7fbff;
}

.contact-panel span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-panel > a {
  display: inline-block;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-family: var(--accent-font);
  font-weight: 800;
  margin-bottom: 14px;
}

.figure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.figure-grid figure,
.article-figure {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #f4f6fb;
  border-bottom: 4px solid var(--blue);
}

.figure-grid figure:nth-child(5n + 2) {
  border-bottom-color: var(--purple);
}

.figure-grid figure:nth-child(5n + 3) {
  border-bottom-color: var(--red);
}

.figure-grid figure:nth-child(5n + 4) {
  border-bottom-color: var(--orange);
}

.figure-grid figure:nth-child(5n + 5) {
  border-bottom-color: var(--green);
}

.figure-grid img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.article-figure img {
  width: 100%;
  height: auto;
}

.figure-grid figcaption,
.article-figure figcaption {
  color: var(--muted);
  font-size: 13px;
  padding: 10px 12px;
}

.aside-box {
  position: sticky;
  top: 96px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}

.aside-box h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.aside-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.aside-box a {
  width: 100%;
}

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

.toc a {
  color: #315055;
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0 8px;
}

.project-grid li {
  list-style: none;
  margin: 0;
  padding: 12px;
  background: #f2f6f4;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.faq-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfa;
}

.faq-item h3 {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 17px;
  margin-bottom: 6px;
}

.faq-item p {
  margin-bottom: 0;
}

.cta-band {
  background: var(--deep);
  color: #ffffff;
  padding: 58px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-inner h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.cta-inner p {
  color: #d2dfdd;
}

.footer {
  background: #151817;
  color: #e8efed;
  padding: 48px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer h2,
.footer h3 {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 17px;
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: #c9d1cf;
  font-size: 14px;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #aab5b2;
  font-size: 13px;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  perspective: 1200px;
}

.splash-vr-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: brightness(0.74) saturate(1.12) contrast(1.08);
}

.splash-vr-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 54%, rgba(15, 20, 28, 0.04), rgba(0, 0, 0, 0.24) 58%, #000000 100%);
  transform-style: preserve-3d;
}

.splash-vr-headset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: 50% 52%;
  animation: vrHeadsetApproach 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity, filter;
}

.splash-lens-glow {
  display: none;
}

.splash-vr-scan {
  display: none;
}

.splash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 52%, transparent 0 34%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 24%, transparent 68%, rgba(0, 0, 0, 0.58));
}

.splash.is-leaving {
  pointer-events: none;
  animation: splashVrExit 0.28s ease 1.02s forwards;
}

.splash.is-leaving .splash-vr-video {
  animation: vrVideoOpen 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash.is-leaving .splash-vr-headset {
  animation: vrDiveThrough 0.28s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.splash.is-leaving .splash-vr-stage {
  animation: vrStageRelease 0.28s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.splash.is-leaving .splash-vr-scan {
  animation: vrLightSweep 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash.is-done {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
  will-change: transform, opacity;
}

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

@keyframes vrHeadsetApproach {
  0% {
    transform: scale(1);
    filter: brightness(0.76) contrast(1.08);
  }

  68% {
    transform: scale(1.28);
    filter: brightness(0.9) contrast(1.12);
  }

  100% {
    transform: scale(1.42);
    filter: brightness(1) contrast(1.16);
  }
}

@keyframes vrVideoOpen {
  0% {
    opacity: 0;
    transform: scale(1.08);
    filter: brightness(0.62) saturate(1.2) contrast(1.18);
  }

  42% {
    opacity: 0.24;
    transform: scale(1.12);
  }

  72% {
    opacity: 0.78;
    transform: scale(1.06);
  }

  100% {
    opacity: 0.88;
    transform: scale(1.04);
    filter: brightness(0.78) saturate(1.08) contrast(1.08);
  }
}

@keyframes vrDiveThrough {
  0% {
    opacity: 1;
    transform: scale(1.42);
    filter: blur(0) brightness(1) contrast(1.16);
  }

  100% {
    opacity: 0;
    transform: scale(1.9) translateZ(70px);
    filter: blur(12px) brightness(0.42) contrast(1.22);
  }
}

@keyframes vrStageRelease {
  to {
    background: transparent;
  }
}

@keyframes vrLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-46%) skewX(-8deg);
  }

  18% {
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(46%) skewX(-8deg);
  }
}

@keyframes splashVrExit {
  to {
    opacity: 0;
    filter: blur(8px);
  }
}

@keyframes heroFocus {
  from {
    transform: scale(1.08);
    filter: saturate(1.22) contrast(1.1);
  }

  to {
    transform: scale(1);
    filter: saturate(1) contrast(1);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px);
  }

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

@keyframes keywordPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

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

@keyframes handwritingGlyph {
  from {
    opacity: 0;
    transform: translateY(0.28em) rotate(-3deg) scale(0.94);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
    filter: blur(0);
  }
}

@keyframes handwritingUnderline {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes inkGlow {
  from {
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.58));
  }

  to {
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(255, 138, 42, 0.22));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .splash::before,
  .splash::after {
    animation: none;
  }

  body.home-arrived .hero > img,
  body.home-arrived .hero > video,
  body.home-hero-animate .hero-content > *,
  body.home-hero-animate .hero-content > .handwriting-title,
  body.home-hero-animate .home-hero-copy .handwriting-title::after,
  body.home-hero-animate .home-hero-copy .handwriting-text span,
  body.home-hero-animate .home-hero-keywords span,
  .home-library-stats a,
  .home-library-card,
  .home-diff-grid article,
  .home-platform-grid article,
  .home-demo-links a,
  .home-ai-grid article,
  .home-focus-grid article,
  .home-hardware-card,
  .direction-card,
  .article > * {
    animation: none;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .home-hero-copy .handwriting-text span {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links.is-open {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    min-height: 48px;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    min-height: 72vh;
  }

  .metrics,
  .grid-3,
  .grid-2,
  .section-head,
  .split,
  .article-layout,
  .cta-inner,
  .footer-grid,
  .home-overview-grid,
  .home-section-head,
  .home-focus-grid,
  .home-next-grid,
  .home-directions .home-section-head {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    grid-template-columns: 1fr;
    max-width: min(760px, calc(100% - var(--page-gutter)));
    padding-bottom: 0;
  }

  .home-hero-copy .section-kicker,
  .home-hero-copy h1,
  .home-hero-subtitle,
  .home-hero-summary,
  .home-hero-keywords,
  .home-hero-actions {
    grid-column: 1;
  }

  .home-hero-keywords {
    width: auto;
    margin-top: 22px;
  }

  .home-hero-actions {
    margin-top: 24px;
  }

  .asymmetric-grid,
  .catalog-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

  .metrics {
    transform: none;
  }

  .metric:nth-child(2),
  .metric:nth-child(4) {
    padding: 24px;
  }

  .section-head p {
    padding-top: 0;
  }

  .asymmetric-grid > .card:nth-child(n),
  .catalog-grid > .card:nth-child(n),
  .news-grid > .card:first-child,
  .news-grid > .news-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .asymmetric-grid > .card:nth-child(2) a,
  .asymmetric-grid > .card:nth-child(3) a,
  .catalog-grid > .card:nth-child(1) a {
    display: block;
  }

  .asymmetric-grid > .solution-card:nth-child(n) a,
  .catalog-grid > .solution-card:nth-child(n) a {
    display: flex;
  }

  .asymmetric-grid > .card:nth-child(2) .card-media,
  .asymmetric-grid > .card:nth-child(3) .card-media,
  .catalog-grid > .card:nth-child(1) .card-media {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .split-image {
    margin-top: 0;
  }

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

  .home-ai-grid,
  .home-diff-grid,
  .home-next-links,
  .home-loop-grid,
  .direction-cards,
  .home-solution-grid,
  .hardware-compare-head {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hardware-compare-head {
    gap: 10px;
  }

  .home-diff-head {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-brief {
    left: var(--page-gutter);
    right: var(--page-gutter);
    top: auto;
    bottom: 74px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-page .hero-content {
    padding-bottom: 210px;
  }

  body.home-page .home-hero-copy {
    padding-bottom: 0;
  }

  .hero-brief article {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 96px;
  }

  .home-focus-grid article {
    min-height: 360px;
  }

  .aside-box {
    position: static;
  }
}

@media (min-width: 800px) and (max-width: 1100px) {
  .nav-shell {
    gap: 10px;
  }

  .menu-button {
    display: inline-grid;
  }

  .header-phones {
    flex: 1;
    justify-content: center;
    margin-left: 22px;
    gap: 8px;
  }

  .header-phone {
    min-height: 0;
    padding: 0;
  }

  .phone-label {
    font-size: 13px;
  }

  .phone-number {
    font-size: 16px;
  }

  .header-phone-separator {
    font-size: 15px;
  }

  .consult-link-single span {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: calc(100% - 28px);
  }

  .brand {
    min-width: 0;
  }

  .header-phones {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 12px;
    gap: 1px;
  }

  .header-phone {
    min-height: 0;
    padding: 0;
  }

  .phone-label {
    font-size: 10px;
  }

  .phone-number {
    font-size: 12px;
  }

  .header-phone-separator {
    display: none;
  }

  .header-actions .primary-link {
    display: none;
  }

  .consult-link-single span {
    display: inline-flex;
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .consult-link strong {
    min-height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }

  .hero-content {
    padding-bottom: 168px;
  }

  .language-switch {
    font-size: 15px;
  }

  .hero-brief {
    left: 14px;
    right: 14px;
    bottom: 64px;
    grid-template-columns: 1fr;
  }

  .hero-brief article {
    min-height: 54px;
    grid-template-columns: 72px 1fr;
    padding: 10px 12px;
  }

  .hero-brief article:nth-child(3) {
    display: none;
  }

  .hero-brief strong {
    font-size: 20px;
  }

  .hero-brief span {
    font-size: 13px;
  }

  h1 {
    font-size: 32px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head h2,
  .split-copy h2,
  .home-copy h2,
  .home-ai-block h2,
  .home-section-head h2,
  .home-next h2,
  .home-directions h2 {
    font-size: 30px;
  }

  .home-hero-copy {
    max-width: calc(100% - 28px);
    padding-bottom: 0;
  }

  .home-hero-copy h1 {
    font-size: clamp(22px, 5.2vw, 48px);
  }

  .home-hero-subtitle {
    font-size: 22px;
  }

  .home-hero-summary {
    max-width: 620px;
    font-size: 16px;
  }

  .home-hero-keywords {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: center;
    width: min(100%, 380px);
    gap: 8px;
    margin-top: 18px;
  }

  .home-hero-keywords span {
    justify-content: center;
    min-height: 30px;
    padding: 4px 8px;
    font-size: 12px;
    text-align: center;
  }

  .home-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: center;
    width: min(100%, 390px);
    gap: 8px;
  }

  .home-hero-actions a {
    width: 100%;
    padding-inline: 10px;
    text-align: center;
  }

  .home-hero-actions a:nth-child(3) {
    grid-column: 1 / -1;
  }

  .home-section {
    padding: 46px 0;
  }

  .home-copy p {
    font-size: 16px;
  }

  .home-answer-statement {
    font-size: 23px !important;
  }

  .home-ai-block {
    padding: 16px 0 0;
  }

  .home-ai-block h2,
  .home-ai-block h3 {
    font-size: 27px;
  }

  .home-ai-grid,
  .home-diff-grid,
  .home-solution-grid,
  .direction-cards,
  .home-next-links {
    grid-template-columns: 1fr;
  }

  .home-diff-head {
    padding-bottom: 22px;
  }

  .home-diff-head h2 {
    font-size: 34px;
  }

  .home-diff-grid article {
    min-height: 154px;
    padding: 18px;
  }

  .home-diff-grid strong {
    margin-top: 20px;
  }

  .home-ai-grid article {
    min-height: 118px;
    padding: 18px;
  }

  .home-loop-grid article {
    min-height: 170px;
    padding: 20px;
  }

  .home-loop-grid span {
    margin-bottom: 22px;
  }

  .home-hardware-grid {
    grid-template-columns: 1fr;
  }

  .home-hardware-body {
    min-height: 0;
    padding: 20px;
  }

  .home-answer-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .compare-table {
    min-width: 760px;
  }

  .home-focus-grid article {
    min-height: 320px;
  }

  .home-focus-grid div {
    padding: 22px;
  }

  .direction-card {
    min-height: 240px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .article {
    padding: 24px 18px;
  }

  .article h2 {
    font-size: 26px;
  }

  .figure-grid,
  .project-grid,
  .partner-strip,
  .info-grid,
  .job-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .splash h2 {
    font-size: 34px;
  }
}

@media (max-width: 1100px) {
  .home-hero-product {
    width: calc(100% - var(--page-gutter));
    max-width: min(760px, calc(100% - var(--page-gutter)));
  }

  .home-library-stats,
  .home-platform-grid,
  .home-library-catalog,
  .home-demo-grid,
  .home-final-cta {
    grid-template-columns: 1fr;
  }

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

  .home-final-cta .home-inline-actions {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .home-hero-product {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }

  .home-hero-product .home-hero-title {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .home-hero-product .home-hero-keywords,
  .home-library-catalog {
    grid-template-columns: 1fr;
  }

  .home-hero-product .home-hero-actions {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }

  .home-library-stats a {
    min-height: 142px;
  }

  .home-platform-grid article {
    min-height: 0;
    padding: 20px;
  }

  .home-demo-links a {
    grid-template-columns: 88px 1fr;
  }

  .home-demo-links img {
    width: 88px;
  }

  .home-final-cta .home-inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
