:root {
  --brand: #0754a0;
  --brand-dark: #0f3d6d;
  --brand-soft: #eef7ff;
  --ink: #102033;
  --muted: #5d6b7f;
  --line: #dbe7f4;
  --page: #f5f9fd;
  --white: #ffffff;
  --green: #147a55;
  --amber: #b45309;
  --shadow: 0 18px 48px rgba(15, 32, 51, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "HarmonyOS Sans SC", "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.container-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.xlm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 231, 244, .88);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.xlm-nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.xlm-logo img {
  width: 160px;
  height: 40px;
  object-fit: contain;
}

.xlm-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.xlm-menu a:hover,
.xlm-lang:hover {
  color: var(--brand);
}

.xlm-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.xlm-lang {
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

.xlm-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.xlm-mobile-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.xlm-mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 12px 16px 18px;
}

.xlm-mobile-panel a {
  display: block;
  padding: 14px 0;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 14px;
}

.btn-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(7, 84, 160, .24);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--brand-dark);
  background: var(--white);
  border-color: var(--line);
}

.btn-light {
  color: var(--brand-dark);
  background: var(--white);
}

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .65);
  background: transparent;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, .10);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .65);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .10);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 45%;
  background: linear-gradient(135deg, #eef7ff 0%, #ffffff 46%, #dfefff 100%);
}

.hero-grid {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.15;
  font-weight: 950;
}

.hero h1 {
  max-width: 768px;
}

.hero h1 > span {
  display: block;
}

.nowrap {
  white-space: nowrap;
}

.hero h1 .nowrap {
  display: inline;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
  font-weight: 950;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.lead-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 231, 244, .96);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual::after,
.home-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .62);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.hero-report {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-report svg {
  width: 100%;
  height: auto;
}

.report-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.report-title {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.metric-grid span {
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  color: var(--muted);
  font-weight: 800;
}

.metric-grid b {
  display: block;
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1.2;
}

.bar-chart {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 20px;
}

.bar-chart i {
  width: 28px;
  border-radius: 8px 8px 0 0;
  background: var(--brand);
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 82px 0 72px;
}

.plans-main,
.industry-main,
.service-main {
  background: var(--white);
}

.plans-section,
.section-pad {
  padding: 64px 0;
}

.source-head {
  margin-bottom: 32px;
}

.plan-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.plan-summary {
  position: relative;
  padding: 20px;
}

.plan-summary .price {
  color: var(--brand);
  font-size: 28px;
  white-space: nowrap;
}

.plan-summary-note {
  color: var(--muted);
  font-size: 14px;
}

.plan-summary.recommended {
  transform: scale(1.02);
}

.muted-card {
  background: #f8fafc;
}

.plan-label {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 950;
}

.mobile-plan-list {
  display: none;
}

.plan-mobile-features {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.plan-mobile-features li,
.plan-details dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  color: #334155;
  font-size: 14px;
}

.plan-mobile-features span,
.plan-details dt {
  color: var(--ink);
  font-weight: 900;
}

.plan-details {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  padding: 12px 14px;
}

.plan-details summary {
  cursor: pointer;
  color: var(--brand);
  font-weight: 950;
}

.compare-table-wrap {
  display: block;
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 12px;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  border-top: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 8px rgba(15, 32, 51, .06);
}

.compare-table .stripe {
  background: #f8fafc;
}

.compare-table .highlight {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
}

.compare-table .highlight span {
  display: inline-flex;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  padding: 2px 8px;
  font-size: 12px;
}

.compare-table th strong {
  display: block;
}

.compare-table th small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.plan-feature-category {
  display: block;
  margin-bottom: 3px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.industry-hero,
.service-hero {
  background: linear-gradient(135deg, #102033 0%, #0f3d6d 48%, #0754a0 100%);
  color: var(--white);
}

.industry-hero .eyebrow,
.service-hero .eyebrow {
  color: #b7ddff;
}

.industry-hero h1,
.service-hero h1 {
  max-width: 900px;
  margin-top: 16px;
}

.industry-hero .lead,
.industry-hero p,
.service-hero .lead,
.service-hero p {
  color: #d7ebff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #d7ebff;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.source-card-grid {
  margin-top: 40px;
}

.source-card {
  padding: 24px;
}

.post-card-cover {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #eef2f7;
}

.post-card-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-type {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.post-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 4px;
}

.post-card-tags span {
  border-radius: 4px;
  background: #edf7ff;
  color: var(--brand);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.source-index {
  color: var(--brand);
  font-size: 14px;
  font-weight: 950;
}

.section-action {
  margin-top: 32px;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.method-list article {
  display: flex;
  gap: 16px;
}

.method-list article > span,
.source-process-list > li > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--brand);
  background: #dff0ff;
  font-size: 14px;
  font-weight: 950;
}

.source-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.source-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
}

.check-icon {
  color: var(--brand);
  font-weight: 950;
}

.source-process-list {
  display: grid;
  gap: 24px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.source-process-list li {
  display: flex;
  gap: 20px;
}

.source-faq-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.service-final {
  text-align: center;
}

.centered-actions {
  justify-content: center;
}

.source-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: #b7ddff;
  font-size: 12px;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.keyword-list code {
  border-radius: 6px;
  background: var(--white);
  color: var(--brand);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px var(--line);
}

.service-link-card {
  display: block;
}

.service-link-card strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand);
}

.industry-final {
  text-align: center;
}

.industry-final h2 {
  margin-left: auto;
  margin-right: auto;
}

.simple-main {
  min-height: 52vh;
  background: var(--white);
}

.simple-page {
  padding: 72px 0;
}

.simple-page h1 {
  max-width: 820px;
}

.simple-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.simple-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--brand);
  background: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.simple-links a:hover {
  background: var(--brand-soft);
}

.custom-page {
  background: var(--white);
}

.custom-page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 78px 0 66px;
}

.custom-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 42px;
  align-items: center;
}

.custom-page-hero-grid h1 {
  max-width: 880px;
}

.custom-page-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef4fb;
  margin: 0;
}

.custom-page-media img {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.custom-page-body {
  max-width: 920px;
  padding: 56px 0 76px;
}

.custom-page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.custom-page-body th,
.custom-page-body td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
}

.custom-page-body th {
  background: #f8fafc;
}

.custom-page-landing .custom-page-hero {
  background: #0f3d6d;
  color: var(--white);
}

.custom-page-landing .custom-page-hero .lead,
.custom-page-landing .custom-page-hero .eyebrow {
  color: #d7ebff;
}

.custom-blank-body {
  padding: 56px 0 76px;
}

.about-hero {
  background: #0f3d6d;
  color: var(--white);
  padding: 78px 0;
}

.about-hero .lead,
.about-hero p {
  color: #d7ebff;
}

.about-hero .eyebrow {
  color: #b7ddff;
}

.centered {
  text-align: center;
}

.centered h2,
.centered p {
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 72px 0;
  background: var(--white);
}

.bg-soft {
  background: #f8fbff;
}

.home-media-section {
  padding: 0 0 72px;
  background: var(--white);
}

.home-media-system {
  background: #f8fbff;
}

.home-media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 231, 244, .94);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(15, 32, 51, .09);
}

.home-media-frame img {
  width: 100%;
  aspect-ratio: 16 / 7;
  height: auto;
  object-fit: cover;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-head a,
.text-link {
  color: var(--brand);
  font-weight: 900;
}

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

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

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

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

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

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

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(15, 32, 51, .05);
}

.card p {
  color: var(--muted);
}

.sitemap-grid {
  align-items: start;
}

.sitemap-group h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.sitemap-link-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-link-list li + li {
  border-top: 1px solid var(--line);
}

.sitemap-link-list a {
  display: grid;
  gap: 3px;
  padding: 11px 0;
  color: var(--ink);
  font-weight: 800;
}

.sitemap-link-list a:hover {
  color: var(--brand);
}

.sitemap-link-list small,
.sitemap-engine a {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.sitemap-engine h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.small-card {
  padding: 20px;
}

.service-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-card-tags span {
  border: 1px solid rgba(15, 61, 109, 0.14);
  border-radius: 999px;
  padding: 6px 10px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.service-list-title,
.service-loop-title,
.download-title,
.company-info-value {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 950;
}

.service-loop-title {
  margin: 14px 0 6px;
}

.download-title,
.company-info-value {
  margin: 0 0 14px;
}

.plan-card.recommended {
  border-color: #86c5ff;
  box-shadow: 0 16px 36px rgba(7, 84, 160, .14);
}

.price {
  color: var(--brand-dark);
  font-size: 34px;
  font-weight: 950;
}

.price small {
  color: var(--muted);
  font-size: 14px;
}

.icon-badge,
.step {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  font-weight: 950;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px 18px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 80px 220px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.timeline span {
  color: var(--brand);
  font-size: 22px;
  font-weight: 950;
}

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

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.faq-category-label {
  margin-bottom: 0;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.feature-table th,
.feature-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.feature-table th {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.feature-table span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.article-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 34px;
  box-shadow: 0 12px 28px rgba(15, 32, 51, .05);
}

.article-body h2 {
  margin-top: 32px;
  font-size: 26px;
}

.article-body p,
.article-body li {
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.article-body code {
  border-radius: 6px;
  background: #eef2f7;
  padding: 2px 6px;
}

.article-main {
  background: var(--white);
}

.article-shell {
  max-width: 780px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #64748b;
  font-size: 14px;
}

.article-breadcrumb a {
  color: #64748b;
}

.article-breadcrumb a:hover {
  color: var(--brand);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.article-tags span {
  border-radius: 4px;
  background: #dff0ff;
  color: var(--brand);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 950;
}

.article-shell h1 {
  max-width: 760px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
}

.about-source-hero h1 {
  max-width: 980px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: #64748b;
  font-size: 15px;
}

.article-callout {
  border-left: 4px solid #4ca8ff;
  border-radius: 8px;
  background: #edf7ff;
  margin-top: 24px;
  padding: 16px 20px;
  color: #334155;
  font-size: 16px;
  line-height: 1.8;
}

.article-cover {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 28px;
  background: #eef2f7;
}

.article-author {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
  margin-top: 30px;
  padding: 22px;
}

.article-author-avatar {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef2f7;
}

.article-member-label,
.article-member-name,
.article-member-position,
.article-member-bio {
  margin: 0;
}

.article-member-label {
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}

.article-member-name {
  margin-top: 3px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
}

.article-member-position {
  margin-top: 2px;
  color: #475569;
  font-size: 14px;
}

.article-member-bio {
  max-width: 760px;
  margin-top: 10px;
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.article-reviewer {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px 12px;
  border-left: 3px solid var(--brand);
  margin-top: 16px;
  padding: 8px 0 8px 14px;
  color: #64748b;
  font-size: 13px;
}

.article-reviewer strong {
  color: #1e293b;
  font-size: 15px;
}

.article-reviewer small {
  color: #64748b;
  font-size: 13px;
}

.article-prose {
  margin-top: 44px;
}

.article-prose h2 {
  margin: 34px 0 14px;
  font-size: 26px;
}

.article-prose p,
.article-prose li {
  color: #334155;
  font-size: 16px;
  line-height: 2;
}

.article-prose p {
  margin: 0 0 22px;
}

.article-prose ul {
  margin: 0 0 24px 20px;
  padding: 0;
}

.article-prose code {
  border-radius: 6px;
  background: #eef2f7;
  padding: 2px 6px;
}

.article-org-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  margin-top: 44px;
  padding: 20px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.9;
}

.article-org-note a {
  color: var(--brand);
  font-weight: 950;
}

.article-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 24px;
}

.article-related p {
  flex-basis: 100%;
  margin: 0;
  color: #334155;
  font-size: 14px;
  font-weight: 950;
}

.article-related-text {
  flex-basis: 100%;
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
}

.article-related a {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 12px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 950;
}

.article-related a.active {
  border-color: var(--brand);
  color: var(--white);
  background: var(--brand);
}

.case-action-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.case-action-list li {
  display: flex;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.case-action-list span,
.about-process-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
  font-size: 14px;
  font-weight: 950;
}

.case-action-list p,
.about-process-grid p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 800;
}

.case-notice {
  max-width: 860px;
  margin-top: 28px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
}

.case-card-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  margin: -4px 0 18px;
  border-radius: 8px;
  object-fit: cover;
}

.case-card-meta,
.case-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.case-card-meta span,
.case-hero-meta span {
  border: 1px solid rgba(15, 61, 109, 0.14);
  border-radius: 999px;
  padding: 5px 10px;
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.case-hero-cover {
  display: block;
  width: min(100%, 920px);
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 28px 0 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(15, 32, 51, .12);
}

.case-final {
  background: #0f477a;
  color: var(--white);
  padding: 72px 0;
}

.case-final .eyebrow,
.case-final p {
  color: #d7ebff;
}

.case-final h2 {
  margin-left: auto;
  margin-right: auto;
}

.about-method-card p {
  color: #334155;
  font-size: 14px;
  line-height: 1.8;
}

.about-method-card strong {
  color: var(--ink);
}

.about-process-grid {
  margin-top: 36px;
  padding: 0;
  list-style: none;
}

.about-process-grid li {
  display: grid;
  gap: 18px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.about-team-grid > div > p {
  color: #64748b;
  line-height: 1.85;
}

.about-team-grid .card {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.about-boundary-grid {
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.about-boundary-grid .card {
  color: var(--ink);
  font-weight: 950;
}

.company-info-grid {
  margin-top: 32px;
}

.company-info-grid dt {
  color: var(--brand);
  font-size: 14px;
  font-weight: 950;
}

.company-info-grid dd {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 950;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.contact-main {
  background: var(--white);
}

.contact-hero {
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.contact-hero h1 {
  max-width: 900px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.contact-intent-head {
  max-width: 760px;
  margin-top: 34px;
}

.contact-intent-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.contact-intent-head p {
  margin: 0;
  color: var(--muted);
}

.intent-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
  text-align: left;
  box-shadow: 0 12px 24px rgba(15, 32, 51, .04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.intent-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.intent-card.active {
  border-color: #4ca8ff;
  box-shadow: 0 0 0 3px rgba(76, 168, 255, .20), var(--shadow);
}

.intent-card b {
  float: right;
  border-radius: 4px;
  background: #ecfdf5;
  color: #15803d;
  padding: 4px 8px;
  font-size: 12px;
}

.intent-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 950;
}

.intent-card.active .intent-icon {
  color: var(--white);
  background: var(--brand);
}

.intent-card h2 {
  margin: 20px 0 8px;
  font-size: 20px;
}

.intent-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.contact-form-head h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.contact-form-head p,
.contact-side-lead {
  margin: 0;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(7, 84, 160, .10);
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .10);
}

.contact-field-error {
  margin: -2px 0 0;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.full {
  grid-column: 1 / -1;
}

.bot-field {
  position: absolute;
  left: -9999px;
}

.form-message {
  margin: 0;
  font-weight: 900;
}

.contact-active {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--brand-dark);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 950;
}

.contact-note {
  margin: 0;
  color: #64748b;
  font-size: 12px;
}

.form-message.success {
  color: var(--green);
}

.form-message.error {
  color: #b91c1c;
}

.contact-side img {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qr-box {
  margin-top: 20px;
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.qr-box img {
  width: 112px;
  height: 112px;
  margin-top: 0;
  object-fit: cover;
}

.qr-box h3 {
  margin-top: 12px;
  font-size: 16px;
}

.final-cta {
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  padding: 54px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta p {
  color: #d7ebff;
}

.home-page .final-cta {
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(7, 84, 160, .96), rgba(15, 61, 109, .84)),
    url("/assets/wxxlm/images/home/home-consultation-cta.webp") center / cover no-repeat;
  padding: 64px 32px;
}

.home-v2 {
  background: #f4f7fb;
}

.home-v2-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 13, 27, .98), rgba(10, 34, 67, .96) 48%, rgba(7, 84, 160, .84)),
    #08111f;
  color: var(--white);
}

.home-v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
}

.home-v2-hero-grid {
  position: relative;
  display: grid;
  min-height: 710px;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 54px;
  padding: 72px 0 58px;
}

.home-v2-kicker,
.home-v2-section-head p,
.home-v2-final p {
  margin: 0 0 14px;
  color: #ffb15c;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-v2-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 56px;
  line-height: 1.08;
}

.home-v2-lead {
  max-width: 720px;
  color: #d8e6f8;
  font-size: 18px;
  line-height: 1.9;
}

.home-v2-search {
  display: flex;
  max-width: 760px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  padding: 10px 10px 10px 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
}

.home-v2-search span {
  display: block;
  color: #9bc8ff;
  font-size: 13px;
  font-weight: 900;
}

.home-v2-search strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
}

.home-v2-search a {
  flex: 0 0 auto;
  border-radius: 8px;
  background: #ff7a1a;
  color: var(--white);
  padding: 16px 22px;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(255, 122, 26, .34);
}

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

.home-v2-actions .btn-primary {
  background: #ff7a1a;
  box-shadow: 0 18px 38px rgba(255, 122, 26, .30);
}

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

.home-v2-proof span {
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #d8e6f8;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
}

.home-v2-platform {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: #f8fbff;
  color: #102033;
  padding: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.platform-top,
.platform-search,
.platform-query {
  display: flex;
  align-items: center;
}

.platform-top {
  gap: 8px;
  margin-bottom: 16px;
}

.platform-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7a1a;
}

.platform-top span:nth-child(2) {
  background: #22c55e;
}

.platform-top span:nth-child(3) {
  background: #3aa4e8;
}

.platform-top strong {
  margin-left: auto;
  color: #64748b;
  font-size: 12px;
  font-weight: 950;
}

.platform-search {
  gap: 8px;
  margin-bottom: 12px;
}

.platform-search span {
  border-radius: 999px;
  background: #eef5fc;
  color: #0f3d6d;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
}

.platform-search span:first-child {
  background: #0f3d6d;
  color: var(--white);
}

.platform-query {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
}

.platform-query em {
  min-width: 0;
  color: #475569;
  font-style: normal;
  font-weight: 900;
}

.platform-query strong {
  border-radius: 6px;
  background: #ff7a1a;
  color: var(--white);
  padding: 9px 14px;
  font-size: 13px;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
}

.platform-panel {
  min-height: 132px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.platform-panel p {
  margin-bottom: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 950;
}

.platform-panel strong {
  display: block;
  color: #0f3d6d;
  font-size: 38px;
  line-height: 1;
}

.platform-panel span {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.platform-panel-main {
  grid-row: span 2;
  min-height: 276px;
  background: linear-gradient(180deg, #ffffff, #f0f7ff);
}

.platform-chart {
  display: flex;
  height: 190px;
  align-items: end;
  gap: 14px;
  border-radius: 8px;
  background:
    linear-gradient(#dbe7f4 1px, transparent 1px),
    linear-gradient(90deg, #edf4fb 1px, transparent 1px);
  background-size: 100% 46px, 64px 100%;
  padding: 16px;
}

.platform-chart i {
  display: block;
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #ff9f43, #0b7fbd);
}

.platform-panel-list span {
  margin-top: 8px;
  border-radius: 6px;
  background: #f4f7fb;
  padding: 8px;
}

.platform-bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.platform-bottom span {
  border-radius: 6px;
  background: #edf4fb;
  color: #0f3d6d;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.home-v2-metrics {
  margin-top: -1px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.home-v2-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.home-v2-metric-grid article {
  min-height: 172px;
  background: #ffffff;
  padding: 28px 24px;
}

.home-v2-metric-grid strong {
  display: block;
  color: #ff7a1a;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.home-v2-metric-grid h3 {
  margin: 14px 0 8px;
  color: #102033;
  font-size: 18px;
}

.home-v2-metric-grid p {
  margin-bottom: 0;
  color: #64748b;
}

.home-v2-section {
  padding: 82px 0;
  background: #ffffff;
}

.home-v2-section:nth-of-type(odd) {
  background: #f7faff;
}

.home-v2-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.home-v2-section-head.left {
  display: block;
}

.home-v2-section-head h2 {
  max-width: 840px;
  margin: 0;
  color: #102033;
  font-size: 38px;
  line-height: 1.2;
}

.home-v2-section-head a,
.home-v2-service-grid a,
.home-v2-industry-grid a,
.home-v2-case-grid a {
  color: #0754a0;
  font-weight: 950;
}

.home-v2-section-head .home-v4-ad-summary {
  max-width: 760px;
  margin: 14px 0 0;
  color: #526276;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  text-transform: none;
}

.home-v2-problem-grid,
.home-v2-service-grid,
.home-v2-plan-grid,
.home-v2-case-grid {
  display: grid;
  gap: 18px;
}

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

.home-v2-problem-grid article,
.home-v2-service-grid article,
.home-v2-plan-grid article,
.home-v2-case-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 14px 32px rgba(15, 32, 51, .05);
}

.home-v2-problem-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff4ea;
  color: #e75f00;
  font-weight: 950;
}

.home-v2-problem-grid h3,
.home-v2-service-grid h3,
.home-v2-case-grid h3 {
  margin-top: 18px;
}

.home-v2-problem-grid p,
.home-v2-service-grid p,
.home-v2-plan-grid p,
.home-v2-case-grid p {
  color: #64748b;
}

.home-v2-system {
  background: #0b1322;
  color: var(--white);
}

.home-v2-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.home-v2-system .home-v2-section-head h2,
.home-v2-section-head.light h2 {
  color: var(--white);
}

.home-v2-system-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home-v2-system-map article {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  padding: 18px;
}

.home-v2-system-map span {
  display: block;
  color: #ffb15c;
  font-weight: 950;
}

.home-v2-system-map h3 {
  color: var(--white);
}

.home-v2-system-map p,
.home-v2-flow p {
  color: #b8c7da;
}

.home-v2-flow {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  padding: 22px;
}

.flow-card {
  border-radius: 8px;
  background: #ffffff;
  color: #102033;
  padding: 16px;
}

.flow-card.active {
  background: #ff7a1a;
  color: #ffffff;
}

.flow-card span {
  display: block;
  opacity: .72;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.flow-card strong {
  display: block;
  margin-top: 6px;
}

.flow-line {
  width: 2px;
  height: 26px;
  margin: 8px 0 8px 24px;
  background: rgba(255,255,255,.32);
}

.flow-kpi {
  margin-top: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  padding: 16px;
}

.home-v2-channels {
  background: #ffffff;
}

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

.home-v2-channel-grid article {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15, 32, 51, .07);
}

.channel-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #fff4ea;
  color: #e75f00;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 950;
}

.home-v2-channel-grid h3 {
  margin: 18px 0 20px;
  color: #102033;
  font-size: 22px;
  line-height: 1.32;
}

.home-v2-channel-grid dl {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.home-v2-channel-grid dl div {
  border-top: 1px solid #edf2f7;
  padding-top: 12px;
}

.home-v2-channel-grid dt {
  color: #0f3d6d;
  font-size: 12px;
  font-weight: 950;
}

.home-v2-channel-grid dd {
  margin: 5px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.home-v2-channel-grid a {
  margin-top: auto;
  color: #0754a0;
  font-weight: 950;
}

.home-v2-proofstack {
  background: #f4f7fb;
}

.home-v2-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

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

.proof-list span {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #102033;
  padding: 15px 16px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(15, 32, 51, .04);
}

.review-board {
  border: 1px solid rgba(7, 84, 160, .18);
  border-radius: 8px;
  background: #07101f;
  color: var(--white);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(7, 16, 31, .22);
}

.review-board > p {
  margin: 0 0 10px;
  color: #ffb15c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.review-board h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 26px;
}

.review-board ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.review-board li {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  padding: 14px;
}

.review-board strong,
.review-board span {
  display: block;
}

.review-board strong {
  color: #ffffff;
  font-size: 15px;
}

.review-board span {
  margin-top: 4px;
  color: #b8c7da;
  font-size: 13px;
  line-height: 1.6;
}

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

.home-v2-service-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
}

.home-v2-service-grid span {
  color: #ff7a1a;
  font-size: 13px;
  font-weight: 950;
}

.home-v2-service-grid a {
  margin-top: auto;
}

.home-v2-rhythm {
  background: #ffffff;
}

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

.home-v2-rhythm-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(15, 32, 51, .05);
}

.home-v2-rhythm-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0f3d6d;
  color: #ffffff;
  font-weight: 950;
}

.home-v2-rhythm-grid h3 {
  margin-top: 18px;
  color: #102033;
}

.home-v2-rhythm-grid p {
  color: #64748b;
}

.fit-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.fit-panel div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  padding: 24px;
}

.fit-panel h3 {
  margin-top: 0;
  color: #0f3d6d;
}

.fit-panel p {
  margin-bottom: 0;
  color: #64748b;
}

.home-v2-industries {
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(8,18,34,.98), rgba(15,61,109,.92)),
    #0b1322;
  color: var(--white);
}

.home-v2-industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.home-v2-industry-grid article {
  min-height: 310px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  padding: 22px;
}

.home-v2-industry-grid span {
  color: #ffb15c;
  font-weight: 950;
}

.home-v2-industry-grid h3 {
  margin-top: 22px;
  color: var(--white);
}

.home-v2-industry-grid p {
  color: #c7d7ea;
}

.home-v2-industry-grid a {
  color: #ffb15c;
}

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

.home-v2-plan-grid article.is-hot {
  border-color: #ff9f43;
  box-shadow: 0 18px 44px rgba(255, 122, 26, .16);
}

.home-v2-price {
  color: #0f3d6d;
  font-size: 34px;
  font-weight: 950;
}

.home-v2-price small {
  color: #64748b;
  font-size: 14px;
}

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

.home-v2-final {
  background: #07101f;
  color: var(--white);
  padding: 64px 0;
}

.home-v2-final .container-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: linear-gradient(110deg, rgba(7,84,160,.84), rgba(255,122,26,.22));
  padding: 44px;
}

.home-v2-final h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 36px;
}

.xlm-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  color: #334155;
}

.xlm-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 54px;
  padding: 48px 0 30px;
}

.xlm-footer-logo {
  width: 170px;
  height: 44px;
  object-fit: contain;
}

.xlm-footer p,
.xlm-footer a {
  margin: 8px 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
}

.xlm-footer h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
}

.xlm-social-links,
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.xlm-social-links a,
.contact-social-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: #fff;
  color: #0f3d6d;
  font-size: 13px;
  font-weight: 700;
}

.xlm-copyright {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: #94a3b8;
  font-size: 13px;
  text-align: center;
}

.xlm-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(7, 84, 160, .30);
  font-size: 14px;
  font-weight: 950;
}

@media (max-width: 1024px) {
  .xlm-menu,
  .xlm-actions .btn,
  .xlm-lang {
    display: none;
  }

  .xlm-mobile-toggle {
    display: inline-flex;
  }

  .xlm-mobile-panel.open {
    display: block;
  }

  .hero-grid,
  .contact-grid,
  .xlm-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-hero-grid,
  .home-v2-system-grid,
  .home-v2-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-platform {
    max-width: 680px;
    margin: 0 auto;
  }

  .home-v2-metric-grid,
  .home-v2-problem-grid,
  .home-v2-system-map,
  .home-v2-channel-grid,
  .home-v2-rhythm-grid,
  .home-v2-industry-grid,
  .home-v2-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero::before {
    display: none;
  }

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

  .timeline article {
    grid-template-columns: 60px 1fr;
  }

  .timeline article p {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .container-page {
    width: min(1120px, calc(100% - 24px));
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0;
    gap: 38px;
  }

  .page-hero {
    padding: 54px 0 46px;
  }

  .custom-page-hero {
    padding: 54px 0 46px;
  }

  .custom-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .custom-page-media img {
    height: 220px;
  }

  .custom-page-body,
  .custom-blank-body {
    padding: 42px 0 58px;
  }

  .section {
    padding: 48px 0;
  }

  h1 {
    font-size: 34px;
  }

  h1,
  h2,
  .service-list-title {
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    line-height: 1.25;
  }

  .hero h1 > span {
    display: inline;
  }

  .lead {
    font-size: 16px;
  }

  .lead-desktop {
    display: none;
  }

  .lead-mobile {
    display: block;
  }

  .two,
  .three,
  .four,
  .five,
  .cols-2,
  .cols-3,
  .cols-4,
  .cols-5,
  .check-list,
  .intent-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .hero-report {
    padding: 16px;
  }

  .hero-visual img,
  .home-media-frame img {
    aspect-ratio: 4 / 3;
  }

  .home-media-section {
    padding-bottom: 48px;
  }

  .home-page .final-cta {
    padding: 48px 20px;
  }

  .home-v2-hero-grid {
    min-height: auto;
    padding: 48px 0;
  }

  .home-v2-copy h1 {
    font-size: 38px;
    line-height: 1.16;
  }

  .home-v2-lead {
    font-size: 16px;
  }

  .home-v2-search {
    display: block;
    padding: 16px;
  }

  .home-v2-search a {
    display: block;
    margin-top: 14px;
    text-align: center;
  }

  .home-v2-proof {
    gap: 8px;
  }

  .platform-grid,
  .platform-bottom,
  .home-v2-metric-grid,
  .home-v2-problem-grid,
  .home-v2-system-map,
  .home-v2-channel-grid,
  .proof-list,
  .home-v2-service-grid,
  .home-v2-rhythm-grid,
  .fit-panel,
  .home-v2-industry-grid,
  .home-v2-plan-grid,
  .home-v2-case-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-section {
    padding: 52px 0;
  }

  .home-v2-section-head {
    display: block;
  }

  .home-v2-section-head h2,
  .home-v2-final h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .home-v2-system-map article,
  .home-v2-channel-grid article,
  .home-v2-service-grid article,
  .home-v2-rhythm-grid article,
  .home-v2-industry-grid article {
    min-height: auto;
  }

  .home-v2-final .container-page {
    display: block;
    padding: 28px;
  }

  .home-v2-final .btn {
    margin-top: 24px;
    width: 100%;
  }

  .home-v2-platform {
    padding: 14px;
  }

  .platform-top strong {
    font-size: 11px;
  }

  .platform-query {
    display: block;
  }

  .platform-query strong {
    display: inline-block;
    margin-top: 10px;
  }

  .platform-panel {
    min-height: auto;
    padding: 14px;
  }

  .platform-panel-main {
    grid-row: auto;
    min-height: auto;
  }

  .platform-chart {
    height: 118px;
  }

  .platform-panel strong {
    font-size: 30px;
  }

  .plans-section,
  .section-pad {
    padding: 48px 0;
  }

  .plan-summary-grid,
  .compare-table-wrap {
    display: none;
  }

  .mobile-plan-list {
    display: grid;
    gap: 20px;
    margin-top: 32px;
  }

  .plan-summary.recommended {
    transform: none;
  }

  .industry-hero h1 {
    font-size: 34px;
  }

  .service-hero h1 {
    font-size: 34px;
  }

  .service-card {
    min-height: auto;
  }

  .method-list,
  .source-check-list {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .article-body {
    padding: 22px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline article p {
    grid-column: auto;
  }

  .xlm-floating {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
    border-radius: 50%;
  }
}

/* Homepage commercial upgrade */
.home-v2 {
  background: #f2f5f8;
}

.home-v2-hero {
  background:
    linear-gradient(110deg, rgba(4, 13, 27, .98), rgba(8, 29, 58, .96) 46%, rgba(12, 70, 126, .90)),
    #06101f;
}

.home-v2-hero::before {
  opacity: .18;
  background-size: 72px 72px;
}

.home-v2-hero-grid {
  min-height: 760px;
  width: min(1280px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: 48px;
  padding: 68px 0 54px;
}

.home-v2-copy h1 {
  max-width: 860px;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-v2-lead {
  max-width: 780px;
  color: #e2edf8;
  font-size: 17px;
  line-height: 1.82;
}

.home-v2-search {
  max-width: 820px;
  margin: 26px 0 18px;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .14);
}

.home-v2-search a,
.home-v2-actions .btn-primary {
  background: #f97316;
  box-shadow: 0 18px 44px rgba(249, 115, 22, .34);
}

.home-v2-proof span {
  background: rgba(255, 255, 255, .12);
}

.home-v2-platform.home-v3-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .20);
  background: #0b1322;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.home-v2-platform.home-v3-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 27, .04), rgba(4, 13, 27, .42));
  pointer-events: none;
}

.home-v2-platform.home-v3-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.hero-glass-card,
.hero-rfq-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(6, 16, 31, .76);
  color: #ffffff;
  padding: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.hero-glass-card {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.hero-glass-card p,
.hero-rfq-card span {
  margin: 0 0 8px;
  color: #ffb15c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-glass-card strong,
.hero-rfq-card strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.25;
}

.hero-glass-card span,
.hero-rfq-card em {
  display: block;
  margin-top: 8px;
  color: #c7d7ea;
  font-size: 13px;
  font-style: normal;
}

.hero-rfq-card {
  top: 24px;
  right: 24px;
  width: 220px;
}

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

.home-v2-metric-grid article {
  min-height: 188px;
  padding: 30px 24px;
}

.home-v2-metric-grid strong {
  color: #f97316;
}

.home-v3-marketplace {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 74px 0;
}

.home-v3-market-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 52px;
  align-items: center;
}

.home-v3-market-grid h2 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #102033;
  font-size: 40px;
  line-height: 1.16;
}

.home-v3-market-grid p {
  max-width: 760px;
  color: #526276;
  font-size: 17px;
  line-height: 1.9;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.market-tags span {
  border: 1px solid #dbe7f4;
  border-radius: 999px;
  background: #f7fbff;
  color: #0f3d6d;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 950;
}

.market-board {
  border: 1px solid #d3e1ef;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6fafe);
  padding: 22px;
  box-shadow: 0 22px 60px rgba(15, 32, 51, .10);
}

.market-board-head,
.market-rfq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.market-board-head {
  border-bottom: 1px solid #e5eef7;
  padding-bottom: 16px;
  color: #102033;
}

.market-board-head strong {
  font-size: 18px;
  font-weight: 950;
}

.market-board-head span {
  border-radius: 999px;
  background: #fff4ea;
  color: #e75f00;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950;
}

.market-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.market-categories div {
  min-height: 132px;
  border: 1px solid #e5eef7;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.market-categories span {
  color: #f97316;
  font-weight: 950;
}

.market-categories strong {
  display: block;
  margin-top: 12px;
  color: #102033;
  font-size: 18px;
}

.market-categories p {
  margin: 7px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.market-rfq {
  border-radius: 8px;
  background: #0b1322;
  color: #ffffff;
  padding: 18px;
}

.market-rfq strong,
.market-rfq span {
  display: block;
}

.market-rfq strong {
  font-size: 17px;
}

.market-rfq span {
  color: #b8c7da;
  font-size: 13px;
}

.home-v3-channel-shell {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.home-v3-channel-shell figure {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: #0b1322;
  box-shadow: 0 22px 60px rgba(15, 32, 51, .10);
}

.home-v3-channel-shell figure img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.home-v3-channel-shell figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 34, 0), rgba(8, 18, 34, .62));
  pointer-events: none;
}

.home-v3-channel-shell figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 8px;
  background: rgba(8, 18, 34, .76);
  color: #ffffff;
  padding: 16px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.65;
  backdrop-filter: blur(12px);
}

.home-v3-channel-shell .home-v2-channel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-v3-channel-shell .home-v2-channel-grid article {
  min-height: 268px;
  box-shadow: 0 14px 34px rgba(15, 32, 51, .06);
}

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

.home-v2-service-grid article {
  min-height: 300px;
}

.home-v3-industry-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 0;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #07101f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.home-v3-industry-showcase img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.home-v3-industry-showcase > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(7, 16, 31, .94);
  padding: 34px;
}

.home-v3-industry-showcase span {
  color: #ffb15c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-v3-industry-showcase strong {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.25;
}

.home-v3-industry-showcase p {
  margin: 16px 0 0;
  color: #c7d7ea;
}

.home-v2-final {
  padding: 78px 0;
}

.home-v2-final .container-page {
  background:
    linear-gradient(110deg, rgba(8, 18, 34, .92), rgba(7, 84, 160, .88)),
    #07101f;
  padding: 52px;
}

.home-v4 .home-v2-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 580px);
  min-height: 740px;
}

.home-v4-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,247,255,.96)),
    #ffffff;
  color: #102033;
  padding: 22px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}

.home-v4-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#e6eef8 1px, transparent 1px),
    linear-gradient(90deg, #eef4fb 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .42;
  pointer-events: none;
}

.home-v4-console > * {
  position: relative;
  z-index: 1;
}

.console-head,
.console-search,
.console-main,
.console-channel-row {
  display: grid;
  gap: 14px;
}

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

.console-head span,
.console-head em,
.console-title span,
.console-channel-row span,
.home-v4-ad-grid article > span,
.home-v4-ad-grid dt,
.decision-list span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.console-head span {
  display: block;
  color: #e75f00;
}

.console-head strong {
  display: block;
  margin-top: 4px;
  color: #102033;
  font-size: 22px;
  line-height: 1.2;
}

.console-head em {
  border-radius: 999px;
  background: #fff4ea;
  color: #e75f00;
  padding: 7px 10px;
  font-style: normal;
}

.console-search {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid #d7e4f2;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(15, 32, 51, .08);
}

.console-search span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.console-search strong {
  display: block;
  margin-top: 4px;
  color: #102033;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.console-search a {
  border-radius: 8px;
  background: #f97316;
  color: #ffffff;
  padding: 12px 18px;
  font-weight: 950;
}

.console-main {
  grid-template-columns: minmax(0, 1fr) 168px;
  align-items: stretch;
  margin-top: 14px;
}

.console-catalog,
.console-side {
  display: grid;
  gap: 12px;
}

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

.console-title {
  grid-column: 1 / -1;
  border: 1px solid #d7e4f2;
  border-radius: 8px;
  background: #0f3d6d;
  color: #ffffff;
  padding: 14px;
}

.console-title span {
  color: #ffb15c;
}

.console-title strong {
  display: block;
  margin-top: 4px;
}

.console-catalog article,
.console-lead-card,
.console-score,
.console-channel-row a {
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 26px rgba(15, 32, 51, .06);
}

.console-catalog article {
  min-height: 112px;
  padding: 14px;
}

.console-catalog article strong,
.console-catalog article span,
.console-catalog article small {
  display: block;
}

.console-catalog article strong {
  color: #102033;
  font-size: 17px;
}

.console-catalog article span {
  margin-top: 8px;
  color: #0754a0;
  font-size: 13px;
  font-weight: 950;
}

.console-catalog article small {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.console-lead-card {
  background: #07101f;
  color: #ffffff;
  padding: 16px;
}

.console-lead-card span {
  color: #ffb15c;
  font-size: 12px;
  font-weight: 950;
}

.console-lead-card strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 19px;
}

.console-lead-card p {
  margin: 8px 0 0;
  color: #c7d7ea;
  font-size: 13px;
  line-height: 1.6;
}

.console-score {
  display: grid;
  place-items: center;
  min-height: 138px;
  background: #fff7ed;
  text-align: center;
}

.console-score strong {
  display: block;
  color: #e75f00;
  font-size: 48px;
  line-height: 1;
}

.console-score span {
  display: block;
  margin-top: 8px;
  color: #8a4b16;
  font-size: 13px;
  font-weight: 950;
}

.console-channel-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.console-channel-row a {
  min-height: 86px;
  padding: 14px;
}

.console-channel-row span {
  display: block;
  color: #e75f00;
}

.console-channel-row strong {
  display: block;
  margin-top: 8px;
  color: #102033;
  font-size: 16px;
}

.home-v4-ad-services {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 82px 0;
}

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

.home-v4-ad-grid article {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 28px;
  box-shadow: 0 18px 44px rgba(15, 32, 51, .07);
}

.home-v4-ad-grid article > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0f3d6d;
  color: #ffffff;
}

.home-v4-ad-grid h3 {
  margin: 22px 0 10px;
  color: #102033;
  font-size: 25px;
}

.home-v4-ad-grid strong {
  display: block;
  color: #0f3d6d;
  font-size: 18px;
  line-height: 1.45;
}

.home-v4-ad-grid p {
  color: #526276;
  line-height: 1.82;
}

.home-v4-ad-grid dl {
  margin: auto 0 22px;
  border-top: 1px solid #e5eef7;
  padding-top: 16px;
}

.home-v4-ad-grid dt {
  color: #e75f00;
}

.home-v4-ad-grid dd {
  margin: 7px 0 0;
  color: #64748b;
  line-height: 1.75;
}

.home-v4-ad-grid a {
  color: #0754a0;
  font-weight: 950;
}

.home-v4-decision {
  background: #f3f7fb;
  padding: 76px 0;
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 34px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: #ffffff;
  padding: 38px;
  box-shadow: 0 22px 58px rgba(15, 32, 51, .08);
}

.decision-panel h2 {
  max-width: 560px;
  color: #102033;
}

.decision-panel p {
  color: #526276;
  font-size: 16px;
  line-height: 1.86;
}

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

.decision-list article {
  min-height: 170px;
  border: 1px solid #e5eef7;
  border-radius: 8px;
  background: #f8fbff;
  padding: 20px;
}

.decision-list span {
  color: #e75f00;
}

.decision-list strong {
  display: block;
  margin-top: 12px;
  color: #102033;
  font-size: 18px;
  line-height: 1.35;
}

.decision-list p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .home-v2-hero-grid,
  .home-v3-market-grid,
  .home-v3-channel-shell,
  .home-v4 .home-v2-hero-grid,
  .decision-panel,
  .home-v3-industry-showcase {
    grid-template-columns: 1fr;
  }

  .home-v2-platform.home-v3-visual,
  .home-v2-platform.home-v3-visual img {
    min-height: 460px;
  }

  .home-v2-metric-grid,
  .home-v2-service-grid,
  .home-v4-ad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v4-console {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .home-v2-hero-grid {
    width: min(1120px, calc(100% - 24px));
    padding: 38px 0 34px;
    gap: 32px;
  }

  .home-v2-copy h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .home-v2-lead {
    display: -webkit-box;
    font-size: 15px;
    line-height: 1.78;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }

  .home-v2-search {
    margin: 20px 0 14px;
  }

  .home-v2-proof {
    margin-top: 14px;
  }

  .home-v2-proof span {
    padding: 6px 10px;
    font-size: 12px;
  }

  .home-v2-proof span:nth-child(n+4) {
    display: none;
  }

  .home-v2-actions .btn-outline-light {
    display: none;
  }

  .home-v2-proof span:nth-child(n+3) {
    display: none;
  }

  .home-v2-platform.home-v3-visual,
  .home-v2-platform.home-v3-visual img {
    min-height: 300px;
  }

  .hero-glass-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .hero-glass-card strong {
    font-size: 18px;
  }

  .hero-rfq-card {
    display: none;
  }

  .home-v2-metric-grid,
  .home-v2-service-grid,
  .market-categories,
  .home-v4-ad-grid,
  .decision-list,
  .home-v3-channel-shell .home-v2-channel-grid {
    grid-template-columns: 1fr;
  }

  .home-v4-console {
    padding: 14px;
  }

  .console-head,
  .console-search,
  .console-main,
  .console-catalog,
  .console-channel-row {
    grid-template-columns: 1fr;
  }

  .console-search a {
    text-align: center;
  }

  .console-side {
    grid-template-columns: 1fr;
  }

  .console-catalog article {
    min-height: auto;
  }

  .console-catalog article:nth-of-type(n+3) {
    display: none;
  }

  .console-lead-card p,
  .console-score {
    display: none;
  }

  .console-channel-row a {
    min-height: auto;
    padding: 11px 12px;
  }

  .console-channel-row strong {
    margin-top: 4px;
    font-size: 15px;
  }

  .console-score {
    min-height: 112px;
  }

  .home-v4-ad-services,
  .home-v4-decision {
    padding: 52px 0;
  }

  .home-v4-ad-grid article {
    min-height: auto;
    padding: 22px;
  }

  .decision-panel {
    padding: 22px;
  }

  .home-v3-marketplace {
    padding: 52px 0;
  }

  .home-v3-market-grid h2 {
    font-size: 29px;
    line-height: 1.24;
  }

  .market-board,
  .home-v3-industry-showcase > div {
    padding: 20px;
  }

  .market-board-head,
  .market-rfq {
    display: block;
  }

  .market-rfq span {
    margin-top: 8px;
  }

  .home-v3-channel-shell figure img {
    min-height: 340px;
  }

  .home-v3-channel-shell figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    font-size: 14px;
  }

  .home-v3-industry-showcase img {
    min-height: 300px;
  }
}

/* Homepage v5 commercial depth */
.home-v5 .home-v2-hero {
  background:
    radial-gradient(circle at 74% 18%, rgba(249, 115, 22, .26), transparent 28%),
    linear-gradient(112deg, #06101f 0%, #0a2548 47%, #083f72 100%);
}

.home-v5 .home-v2-hero-grid {
  width: min(1320px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, .98fr);
  min-height: 690px;
  padding-top: 48px;
  padding-bottom: 38px;
}

.home-v5 .home-v2-copy h1 {
  max-width: 920px;
  font-size: clamp(40px, 4.3vw, 58px);
}

.home-v5 .home-v2-lead {
  font-size: 16px;
  line-height: 1.78;
}

.home-v5-hero-stats {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 6px;
}

.home-v5-hero-stats div {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  padding: 14px 16px;
}

.home-v5-hero-stats strong,
.home-v5-hero-stats span {
  display: block;
}

.home-v5-hero-stats strong {
  color: #ffb15c;
  font-size: 34px;
  line-height: 1;
}

.home-v5-hero-stats span {
  margin-top: 7px;
  color: #d7e6f7;
  font-size: 13px;
  font-weight: 900;
}

.home-v5 .home-v4-console {
  padding: 18px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, .42);
}

.home-v5 .console-head {
  margin-bottom: 12px;
}

.home-v5 .console-search {
  padding: 10px 12px;
}

.home-v5 .console-catalog article {
  min-height: 94px;
  padding: 12px;
}

.home-v5 .console-score {
  min-height: 116px;
}

.home-v5 .console-channel-row a {
  min-height: 72px;
  padding: 12px;
}

.home-v5 .home-v2-proof {
  margin-top: 16px;
}

.console-pipeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.console-pipeline span {
  color: #0f3d6d;
  font-size: 12px;
  font-weight: 950;
}

.console-pipeline i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #c8d8ea;
}

.console-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.console-trust-row span {
  border-radius: 8px;
  background: #eef7ff;
  color: #0754a0;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 950;
}

.home-v5-blueprint,
.home-v5-scenarios,
.home-v5-roadmap {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 82px 0;
}

.home-v5-blueprint-grid,
.home-v5-scenario-grid,
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-v5-blueprint-grid article,
.home-v5-scenario-grid article,
.roadmap-grid article {
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(15, 32, 51, .06);
}

.home-v5-blueprint-grid span,
.home-v5-scenario-grid span,
.roadmap-grid span {
  display: inline-flex;
  min-width: 42px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0f3d6d;
  color: #ffffff;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 950;
}

.home-v5-blueprint-grid h3,
.home-v5-scenario-grid h3,
.roadmap-grid h3 {
  margin: 18px 0 10px;
  color: #102033;
}

.home-v5-blueprint-grid p,
.home-v5-scenario-grid p,
.roadmap-grid p {
  margin: 0;
  color: #526276;
  line-height: 1.82;
}

.home-v5-scenarios {
  background: #f3f7fb;
}

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

.home-v5-scenario-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #e75f00;
  font-size: 15px;
  line-height: 1.5;
}

.home-v5 .home-v4-ad-grid article {
  min-height: 500px;
}

.home-v5 .home-v4-ad-grid dl {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.home-v5 .home-v4-ad-grid dl div {
  border-top: 1px solid #e5eef7;
  padding-top: 12px;
}

.home-v5-preflight {
  background: #07101f;
  color: #ffffff;
  padding: 82px 0;
}

.preflight-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.preflight-panel h2 {
  max-width: 720px;
  color: #ffffff;
}

.preflight-panel p {
  color: #c7d7ea;
  font-size: 16px;
  line-height: 1.86;
}

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

.preflight-list article {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  padding: 18px;
}

.preflight-list span {
  color: #ffb15c;
  font-size: 12px;
  font-weight: 950;
}

.preflight-list strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 17px;
}

.preflight-list p {
  margin: 8px 0 0;
  color: #c7d7ea;
  font-size: 14px;
}

.home-v5-roadmap {
  background: #ffffff;
}

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

.roadmap-grid span {
  min-width: 84px;
  background: #fff4ea;
  color: #e75f00;
}

.roadmap-note {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: #f8fbff;
  padding: 20px 24px;
}

.roadmap-note strong {
  flex: 0 0 96px;
  color: #0f3d6d;
}

.roadmap-note p {
  margin: 0;
  color: #526276;
  line-height: 1.8;
}

.intent-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

@media (max-width: 1180px) {
  .home-v5 .home-v2-hero-grid,
  .preflight-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .home-v5 .home-v2-hero-grid {
    width: min(1120px, calc(100% - 24px));
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 24px;
    gap: 18px;
  }

  .home-v5 .home-v2-copy h1 {
    font-size: 31px;
    line-height: 1.18;
  }

  .home-v5 .home-v2-lead {
    font-size: 14px;
    line-height: 1.66;
    -webkit-line-clamp: 4;
  }

  .home-v5-hero-stats,
  .home-v5-blueprint-grid,
  .home-v5-scenario-grid,
  .preflight-list,
  .roadmap-grid,
  .console-trust-row {
    grid-template-columns: 1fr;
  }

  .home-v5-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0 4px;
  }

  .home-v5-hero-stats div {
    padding: 10px 8px;
  }

  .home-v5-hero-stats strong {
    font-size: 24px;
  }

  .home-v5-hero-stats span {
    font-size: 11px;
    line-height: 1.35;
  }

  .home-v5 .home-v2-search {
    margin: 16px 0 12px;
    padding: 12px;
  }

  .home-v5 .home-v2-search strong {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-v5 .home-v2-search a {
    margin-top: 10px;
    padding: 12px 14px;
  }

  .home-v5 .home-v2-actions {
    margin-top: 14px;
  }

  .home-v5 .home-v2-actions .btn-primary {
    width: 100%;
  }

  .home-v5 .home-v2-proof {
    display: none;
  }

  .home-v5 .home-v4-console {
    display: none;
  }

  .console-pipeline {
    grid-template-columns: 1fr;
  }

  .console-pipeline i {
    display: none;
  }

  .home-v5-blueprint,
  .home-v5-scenarios,
  .home-v5-preflight,
  .home-v5-roadmap {
    padding: 52px 0;
  }

  .home-v5 .home-v4-ad-grid article {
    min-height: auto;
  }

  .roadmap-note {
    display: block;
  }

  .roadmap-note p {
    margin-top: 8px;
  }
}

.home-v6 {
  background: #ffffff;
  --home-v6-cursor-x: 58%;
  --home-v6-cursor-y: 42%;
}

.home-v6-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background:
    linear-gradient(180deg, #030713 0%, #07111f 42%, #edf6fb 100%);
  color: #ffffff;
}

.home-v6-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: center;
  background:
    conic-gradient(from 142deg at 48% 24%, rgba(100, 191, 255, .34), transparent 18%, rgba(255, 190, 122, .20) 32%, transparent 48%, rgba(167, 121, 255, .22) 66%, transparent 100%),
    linear-gradient(112deg, transparent 0%, rgba(125, 211, 252, .10) 24%, rgba(255, 255, 255, .24) 43%, rgba(255, 177, 92, .10) 56%, transparent 78%),
    linear-gradient(24deg, rgba(255, 255, 255, .12) 0%, transparent 22%, transparent 64%, rgba(125, 211, 252, .12) 100%),
    linear-gradient(180deg, rgba(3, 7, 19, .10) 0%, rgba(3, 7, 19, .44) 44%, rgba(255, 255, 255, .72) 100%);
  background-size: 145% 145%, 260% 100%, 100% 100%, 100% 100%;
  opacity: .92;
  pointer-events: none;
  animation: homeV6LightField 15s ease-in-out infinite, homeV6Sweep 10s ease-in-out infinite;
}

.home-v6-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 128deg at var(--home-v6-cursor-x) var(--home-v6-cursor-y), rgba(125, 211, 252, .30), transparent 21%, rgba(255, 177, 92, .16) 36%, transparent 56%, rgba(255, 255, 255, .16) 74%, transparent 100%),
    linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, .12) 36%, transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .08) 78%, rgba(255, 255, 255, .72) 100%);
  mix-blend-mode: screen;
  opacity: .78;
  pointer-events: none;
}

.home-v6-hero-shell {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 48px));
  padding: 42px 0 24px;
}

.home-v6-hero-shell::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 6%;
  width: 54%;
  height: 42%;
  background:
    linear-gradient(108deg, transparent 0%, rgba(125, 211, 252, .22) 28%, rgba(255, 255, 255, .20) 48%, rgba(255, 177, 92, .12) 67%, transparent 100%);
  filter: blur(42px);
  transform: rotate(-8deg) skewY(-7deg);
  opacity: .62;
  pointer-events: none;
}

.home-v6-hero-shell > * {
  position: relative;
  z-index: 1;
}

.home-v6-hero-top {
  display: grid;
  grid-template-columns: minmax(0, 820px) auto;
  gap: 32px;
  align-items: end;
}

.home-v6-eyebrow {
  margin: 0 0 14px;
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-v6-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-size: 76px;
  line-height: .98;
  font-weight: 950;
  transform-origin: left center;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .36);
}

.home-v6-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(226, 236, 247, .82);
  font-size: 18px;
  line-height: 1.85;
}

.home-v6-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.home-v6-hero-actions .btn-secondary {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .10);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.home-v6-hero-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: clamp(340px, 44vh, 470px);
  margin: 34px 0 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #07101f;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, .38),
    0 0 0 1px rgba(125, 211, 252, .08),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform .18s ease-out, box-shadow .28s ease, border-color .28s ease;
}

.home-v6-hero-media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: object-position .2s ease-out, filter .28s ease;
}

.home-v6-hero-media:hover img {
  filter: saturate(1.06) contrast(1.03);
}

.home-v6-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(125, 211, 252, .32), transparent 18%, transparent 78%, rgba(255, 177, 92, .26)),
    linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 28%, transparent 72%, rgba(255, 255, 255, .08));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .18),
    inset 0 0 72px rgba(64, 156, 255, .18);
  opacity: .62;
  pointer-events: none;
}

.home-v6-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(105deg, transparent 0%, transparent 30%, rgba(255, 255, 255, .34) 42%, rgba(125, 211, 252, .20) 48%, transparent 60%),
    linear-gradient(180deg, rgba(4, 12, 24, 0) 34%, rgba(4, 12, 24, .82) 100%);
  background-size: 220% 100%, 100% 100%;
  pointer-events: none;
  animation: homeV6MediaShine 5.8s cubic-bezier(.2, .75, .18, 1) infinite;
}

.home-v6-hero-media figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: #ffffff;
}

.home-v6-hero-media span,
.home-v6-hero-media em {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-v6-hero-media span {
  border-radius: 999px;
  background: #ffffff;
  color: #0f3d6d;
  padding: 9px 14px;
}

.home-v6-hero-media strong {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.12;
}

.home-v6-hero-media em {
  color: #ffb15c;
  font-style: normal;
}

.home-v6-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.home-v6-quick-links a {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .085);
  padding: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .14);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.home-v6-quick-links a::after {
  content: "";
  position: absolute;
  inset: -80% -30%;
  background: linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, .22) 43%, transparent 59%);
  opacity: 0;
  transform: translateX(-42%);
  transition: transform .55s ease, opacity .28s ease;
  pointer-events: none;
}

.home-v6-quick-links a:hover {
  border-color: rgba(125, 211, 252, .42);
  background: rgba(255, 255, 255, .13);
  transform: translateY(-4px);
}

.home-v6-quick-links a:hover::after {
  opacity: 1;
  transform: translateX(42%);
}

.home-v6-quick-links span,
.home-v6-quick-links strong {
  display: block;
}

.home-v6-quick-links span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-v6-quick-links strong {
  margin-top: 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
}

.home-v6-quick-links p {
  margin: 10px 0 0;
  color: rgba(226, 236, 247, .76);
  font-size: 14px;
  line-height: 1.66;
}

.home-v6-scroll-cue {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(226, 236, 247, .72);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.home-v6-scroll-cue::after {
  content: "";
  width: 2px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7dd3fc, transparent);
  animation: homeV6ScrollCue 1.65s ease-in-out infinite;
}

.home-v6-proof {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 82px 0;
}

.home-v6-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0%, rgba(7, 84, 160, .06) 28%, transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  pointer-events: none;
}

.home-v6-proof > * {
  position: relative;
  z-index: 1;
}

.home-v6-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: start;
}

.home-v6-proof h2,
.home-v6-section-title h2 {
  max-width: 780px;
  margin: 0;
  color: #08111f;
  font-size: 46px;
  line-height: 1.12;
}

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

.home-v6-proof-items article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(7, 84, 160, .14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .92)),
    linear-gradient(135deg, rgba(125, 211, 252, .16), transparent 45%, rgba(255, 177, 92, .12));
  padding: 24px;
  box-shadow: 0 16px 44px rgba(15, 32, 51, .06);
}

.home-v6-proof-items article::after,
.home-v6 .home-v2-service-grid article::after,
.home-v6 .home-v5-blueprint-grid article::after,
.home-v6-case-strip a::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: radial-gradient(360px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(125, 211, 252, .30), transparent 60%);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.home-v6-proof-items article > *,
.home-v6 .home-v2-service-grid article > *,
.home-v6 .home-v5-blueprint-grid article > *,
.home-v6-case-strip a > * {
  position: relative;
  z-index: 1;
}

.home-v6-proof-items strong {
  display: block;
  color: #0f3d6d;
  font-size: 56px;
  line-height: .95;
}

.home-v6-proof-items span {
  display: block;
  margin-top: 18px;
  color: #102033;
  font-size: 18px;
  font-weight: 950;
}

.home-v6-proof-items p {
  margin: 12px 0 0;
  color: #526276;
  line-height: 1.76;
}

.home-v6-projects {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #eef5fb 0%, #f7f9fc 100%);
  padding: 86px 0;
}

.home-v6-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(125, 211, 252, .18), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(255, 177, 92, .14), transparent 30%),
    linear-gradient(106deg, transparent 0%, rgba(255, 255, 255, .78) 38%, transparent 58%);
  background-size: 100% 100%, 100% 100%, 260% 100%;
  opacity: .62;
  animation: homeV6Sweep 10s ease-in-out infinite;
  pointer-events: none;
}

.home-v6-projects > * {
  position: relative;
  z-index: 1;
}

.home-v6-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.home-v6-section-title a {
  flex: 0 0 auto;
  color: #0754a0;
  font-weight: 950;
}

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

.home-v6-project-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 620px;
  border-radius: 8px;
  background: #07101f;
  color: #ffffff;
  box-shadow:
    0 26px 78px rgba(15, 23, 42, .22),
    0 0 0 1px rgba(255, 255, 255, .06);
  transform: translateY(0) scale(1);
  transition: transform .34s cubic-bezier(.2, .8, .2, 1), box-shadow .34s ease, filter .34s ease;
}

.home-v6-project-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
  transition: transform .85s cubic-bezier(.2, .8, .2, 1), filter .34s ease;
}

.home-v6-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(460px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, .34), rgba(125, 211, 252, .14) 28%, transparent 60%),
    linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .22) 42%, transparent 62%);
  background-size: 100% 100%, 230% 100%;
  background-position: 0 0, 120% 0;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .28s ease, background-position .7s ease;
  pointer-events: none;
}

.home-v6-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0) 22%, rgba(7, 16, 31, .88) 100%),
    linear-gradient(90deg, rgba(125, 211, 252, .24), transparent 28%, transparent 74%, rgba(255, 177, 92, .20));
}

.home-v6-project-card:hover img {
  transform: scale(1.075);
  filter: saturate(1.08) contrast(1.05);
}

.home-v6-project-card:hover {
  filter: saturate(1.03);
  transform: translateY(-10px) scale(1.012);
  box-shadow:
    0 38px 110px rgba(15, 23, 42, .28),
    0 0 0 1px rgba(125, 211, 252, .22);
}

.home-v6-project-card:hover::before {
  opacity: .9;
  background-position: 0 0, -50% 0;
}

.home-v6-project-card span,
.home-v6-project-card strong,
.home-v6-project-card p {
  position: absolute;
  left: 24px;
  right: 24px;
  z-index: 3;
}

.home-v6-project-card span {
  bottom: 218px;
  color: #ffb15c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-v6-project-card strong {
  bottom: 142px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.18;
}

.home-v6-project-card p {
  bottom: 28px;
  margin: 0;
  color: #d7e6f7;
  line-height: 1.72;
}

.home-v6-case-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.home-v6-case-strip a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(7, 84, 160, .13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff),
    linear-gradient(135deg, rgba(125, 211, 252, .14), transparent);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(15, 32, 51, .06);
}

.home-v6-case-strip span,
.home-v6-case-strip strong {
  display: block;
}

.home-v6-case-strip span {
  color: #e75f00;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-v6-case-strip strong {
  margin-top: 8px;
  color: #102033;
  line-height: 1.4;
}

.home-v8-cases {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(125, 211, 252, .18), transparent 31%),
    radial-gradient(circle at 86% 14%, rgba(255, 177, 92, .14), transparent 28%),
    linear-gradient(180deg, #040915 0%, #081221 48%, #050b15 100%);
  color: #ffffff;
  padding: 98px 0 104px;
}

.home-v8-cases::before {
  content: "";
  position: absolute;
  inset: -20% -8% auto;
  height: 68%;
  background:
    linear-gradient(105deg, transparent 8%, rgba(255, 255, 255, .14) 38%, transparent 63%),
    linear-gradient(180deg, rgba(125, 211, 252, .10), transparent);
  background-size: 240% 100%, 100% 100%;
  opacity: .48;
  transform: skewY(-6deg);
  pointer-events: none;
}

.home-v8-cases::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 68%, transparent);
  opacity: .22;
  pointer-events: none;
}

.home-v8-cases > * {
  position: relative;
  z-index: 1;
}

.home-v8-case-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 36px;
}

.home-v8-case-head h2 {
  max-width: 940px;
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-v8-case-head p:not(.home-v6-eyebrow) {
  max-width: 920px;
  margin: 18px 0 0;
  color: rgba(223, 236, 249, .82);
  font-size: 17px;
  line-height: 1.78;
}

.home-v8-case-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 950;
  background: rgba(255, 255, 255, .08);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.home-v8-case-head a:hover {
  border-color: rgba(125, 211, 252, .48);
  background: rgba(125, 211, 252, .14);
  transform: translateY(-2px);
}

.home-v8-case-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  gap: 18px;
}

.home-v8-case-feature,
.home-v8-case-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .24);
  transform: translateZ(0);
}

.home-v8-case-feature::before,
.home-v8-case-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(420px circle at var(--card-x, 50%) var(--card-y, 46%), rgba(255, 255, 255, .28), rgba(125, 211, 252, .12) 32%, transparent 64%),
    linear-gradient(112deg, transparent 20%, rgba(255, 255, 255, .18) 44%, transparent 66%);
  background-size: 100% 100%, 230% 100%;
  background-position: 0 0, 120% 0;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity .24s ease, background-position .6s ease;
}

.home-v8-case-feature:hover::before,
.home-v8-case-item:hover::before {
  opacity: .82;
  background-position: 0 0, -40% 0;
}

.home-v8-case-feature {
  display: grid;
  min-height: 720px;
  grid-template-rows: minmax(360px, 1fr) auto;
}

.home-v8-case-feature img,
.home-v8-case-item img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
  transition: transform .62s cubic-bezier(.2, .8, .2, 1), filter .28s ease;
}

.home-v8-case-feature img {
  height: 100%;
  min-height: 382px;
}

.home-v8-case-feature:hover img,
.home-v8-case-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.05);
}

.home-v8-case-mark {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, .78);
  font-size: 74px;
  font-weight: 950;
  line-height: .88;
}

.home-v8-case-feature-body {
  position: relative;
  z-index: 3;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(4, 9, 21, .88), rgba(4, 9, 21, .96)),
    linear-gradient(90deg, rgba(125, 211, 252, .10), transparent 42%, rgba(255, 177, 92, .08));
}

.home-v8-case-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-v8-case-feature h3,
.home-v8-case-item h3 {
  margin: 14px 0 0;
  color: #ffffff;
  letter-spacing: 0;
}

.home-v8-case-feature h3 {
  max-width: 760px;
  font-size: 36px;
  line-height: 1.16;
}

.home-v8-case-feature p,
.home-v8-case-item p {
  color: rgba(223, 236, 249, .80);
  line-height: 1.72;
}

.home-v8-case-feature p {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: 16px;
}

.home-v8-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.home-v8-case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, .06);
}

.home-v8-case-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.home-v8-case-brief span,
.home-v8-case-brief strong {
  display: block;
}

.home-v8-case-brief span {
  color: #ffb15c;
  font-size: 12px;
  font-weight: 950;
}

.home-v8-case-brief strong {
  margin-top: 8px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.6;
}

.home-v8-case-list {
  display: grid;
  gap: 14px;
}

.home-v8-case-item {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 18px;
  min-height: 158px;
  padding: 14px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, .18);
}

.home-v8-case-item img {
  height: 130px;
  border-radius: 6px;
}

.home-v8-case-item > div {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.home-v8-case-item h3 {
  font-size: 21px;
  line-height: 1.28;
}

.home-v8-case-item p {
  margin: 9px 0 0;
  font-size: 14px;
}

.home-v8-case-item .home-v8-case-tags {
  margin-top: 12px;
}

.home-v8-case-item em {
  display: inline-flex;
  margin-top: 13px;
  color: #ffcf95;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.home-v8-case-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.home-v8-case-mini a {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, .06);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.home-v8-case-mini a:hover {
  border-color: rgba(125, 211, 252, .38);
  background: rgba(125, 211, 252, .10);
  transform: translateY(-3px);
}

.home-v8-case-mini span,
.home-v8-case-mini strong {
  display: block;
}

.home-v8-case-mini span {
  color: #ffb15c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-v8-case-mini strong {
  margin-top: 8px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.42;
}

.home-v8-case-note {
  max-width: 980px;
  margin: 22px 0 0;
  color: rgba(223, 236, 249, .66);
  font-size: 13px;
  line-height: 1.7;
}

.home-v6 .home-v4-ad-services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #07101f 0%, #0a1728 100%);
  color: #ffffff;
  padding: 92px 0;
}

.home-v6 .home-v4-ad-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(125, 211, 252, .28), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 177, 92, .18), transparent 28%),
    conic-gradient(from 210deg at 50% 52%, rgba(77, 136, 250, .28), transparent 24%, rgba(52, 205, 139, .20) 44%, transparent 66%, rgba(255, 177, 92, .20) 82%, transparent 100%);
  opacity: .74;
  pointer-events: none;
}

.home-v6 .home-v4-ad-services > * {
  position: relative;
  z-index: 1;
}

.home-v6 .home-v4-ad-services .home-v2-section-head h2,
.home-v6 .home-v4-ad-services .home-v2-section-head p {
  color: #ffffff;
}

.home-v6 .home-v4-ad-services .home-v2-section-head .home-v4-ad-summary {
  color: rgba(255, 255, 255, .78);
}

.home-v6 .home-v4-ad-services .home-v2-section-head a {
  color: #ffb15c;
}

.home-v6 .home-v4-ad-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-v6 .home-v4-ad-grid article {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 0;
  color: #ffffff;
  padding: 30px;
  box-shadow: none;
  transform: translateY(0);
  transition: transform .28s ease, filter .28s ease;
}

.home-v6 .home-v4-ad-grid article::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .24) 42%, transparent 58%);
  transform: translateX(-58%);
  opacity: 0;
  transition: transform .52s ease, opacity .28s ease;
  pointer-events: none;
}

.home-v6 .home-v4-ad-grid article:hover {
  transform: translateY(-8px);
  filter: saturate(1.08);
}

.home-v6 .home-v4-ad-grid article:hover::after {
  transform: translateX(58%);
  opacity: 1;
}

.home-v6 .home-v4-ad-grid article:nth-child(1) {
  background: #4d88fa;
}

.home-v6 .home-v4-ad-grid article:nth-child(2) {
  background: #16a36d;
}

.home-v6 .home-v4-ad-grid article:nth-child(3) {
  background: #4f46e5;
}

.home-v6 .home-v4-ad-grid article:nth-child(4) {
  background: #0f8f92;
}

.home-v6 .home-v4-ad-grid article > span {
  background: rgba(255, 255, 255, .18);
}

.home-v6 .home-v4-ad-grid h3,
.home-v6 .home-v4-ad-grid strong,
.home-v6 .home-v4-ad-grid p,
.home-v6 .home-v4-ad-grid dt,
.home-v6 .home-v4-ad-grid dd,
.home-v6 .home-v4-ad-grid a {
  color: #ffffff;
}

.home-v6 .home-v4-ad-grid p,
.home-v6 .home-v4-ad-grid dd {
  opacity: .88;
}

.home-v6 .home-v4-ad-grid small {
  display: block;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.68;
}

.home-v6 .home-v4-ad-grid a {
  margin-top: auto;
}

.home-v6 .home-v4-ad-grid dl div {
  border-top-color: rgba(255, 255, 255, .28);
}

.home-v6 .home-v5-blueprint {
  padding: 92px 0;
  background: #ffffff;
}

.home-v6 .home-v5-blueprint-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 220px;
  background: #ffffff;
}

.home-v6 .home-v2-proofstack {
  background: #f3f6f9;
  padding: 92px 0;
}

.home-v6 .review-board {
  background: #102033;
}

.home-v6 .home-v2-services {
  background: #ffffff;
  padding: 92px 0;
}

.home-v6 .home-v2-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-v6 .home-v2-service-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 290px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f9fcff),
    linear-gradient(135deg, rgba(125, 211, 252, .12), transparent 42%, rgba(255, 177, 92, .09));
  padding: 24px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.home-v6 .home-v2-service-grid article:hover,
.home-v6 .home-v5-blueprint-grid article:hover,
.home-v6 .home-v6-proof-items article:hover,
.home-v6 .home-v6-case-strip a:hover {
  border-color: rgba(7, 84, 160, .35);
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(15, 32, 51, .10);
}

.home-v6 .home-v2-service-grid article:hover::after,
.home-v6 .home-v5-blueprint-grid article:hover::after,
.home-v6 .home-v6-proof-items article:hover::after,
.home-v6 .home-v6-case-strip a:hover::after {
  opacity: 1;
}

.home-v6 .home-v2-plans {
  background: #f8fbff;
}

.home-v6 .home-v2-final {
  background: #ffffff;
}

.home-v6 .home-v2-final .container-page {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, .94), rgba(15, 61, 109, .84)),
    url("/assets/wxxlm/images/home/home-consultation-cta.webp") center / cover;
}

.home-v7-hero {
  min-height: min(900px, 96vh);
  background:
    linear-gradient(180deg, #030712 0%, #07111f 58%, #f4f9fc 100%);
}

@media (min-width: 1181px) {
  .home-v7 .container-page {
    width: min(1480px, calc(100% - 64px));
  }
}

.home-v7-hero-bg,
.home-v7-three {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.home-v7-hero-bg {
  z-index: 0;
  object-fit: cover;
  object-position: 62% 45%;
  filter: none;
  opacity: .74;
  transform: scale(1.02);
}

.home-v7-three {
  z-index: 1;
  mix-blend-mode: screen;
  opacity: .48;
  contain: strict;
  transform: translateZ(0);
}

.home-v7-hero::before {
  z-index: 2;
  opacity: .54;
  animation: none;
}

.home-v7-hero::after {
  z-index: 3;
  background:
    radial-gradient(620px circle at var(--home-v6-cursor-x) var(--home-v6-cursor-y), rgba(125, 211, 252, .28), transparent 58%),
    linear-gradient(90deg, rgba(3, 7, 18, .86) 0%, rgba(3, 7, 18, .48) 38%, rgba(3, 7, 18, .12) 72%, rgba(3, 7, 18, .58) 100%),
    linear-gradient(180deg, rgba(3, 7, 18, .24) 0%, rgba(3, 7, 18, .10) 64%, rgba(244, 249, 252, .95) 100%);
  opacity: 1;
}

.home-v7 .home-v6-hero-shell {
  z-index: 4;
  min-height: min(860px, 94vh);
  padding: 58px 0 30px;
}

.home-v7 .home-v6-hero-top {
  grid-template-columns: minmax(0, 860px) minmax(220px, auto);
  min-height: 280px;
  align-items: start;
}

.home-v7-hero-copy {
  max-width: 860px;
}

.home-v7 .home-v6-hero h1 {
  max-width: 850px;
  font-size: 78px;
  line-height: 1.03;
  letter-spacing: 0;
}

.home-v7 .home-v6-lead {
  max-width: 820px;
  color: rgba(236, 246, 255, .86);
  font-size: 18px;
  line-height: 1.78;
}

.home-v7-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-v7-hero-meta span {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: rgba(236, 246, 255, .88);
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 950;
}

.home-v7 .home-v6-hero-actions {
  padding-top: 36px;
}

.home-v7-hero-media {
  height: clamp(320px, 38vh, 440px);
  margin-top: 18px;
  backdrop-filter: none;
}

.home-v7-hero-media::before {
  background:
    radial-gradient(circle at var(--home-v6-cursor-x) var(--home-v6-cursor-y), rgba(255, 255, 255, .24), transparent 48%),
    linear-gradient(90deg, rgba(125, 211, 252, .28), transparent 20%, transparent 78%, rgba(255, 177, 92, .22));
  opacity: .72;
}

.home-v7 .home-v6-hero-media::after {
  animation: none;
  opacity: .78;
}

.home-v7 .home-v6-quick-links {
  max-width: 1180px;
  margin-top: 14px;
}

.home-v7 .home-v6-quick-links a {
  min-height: 146px;
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(6px);
}

.home-v7 .home-v6-projects::before {
  animation-duration: 18s;
}

.home-v7 .home-v6-proof {
  padding-top: 72px;
}

.home-v7 .home-v6-proof h2,
.home-v7 .home-v6-section-title h2 {
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-v7 .home-v6-project-grid {
  grid-template-columns: 1.08fr .96fr .96fr;
}

.home-v7 .home-v6-project-card:first-child {
  grid-column: span 2;
}

.home-v7 .home-v6-project-card:first-child strong {
  max-width: 620px;
  font-size: 42px;
}

.home-v7 .home-v6-project-card:first-child p {
  max-width: 620px;
}

.home-v7 .home-v4-ad-services {
  background:
    radial-gradient(circle at 18% 16%, rgba(125, 211, 252, .18), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(255, 177, 92, .14), transparent 32%),
    linear-gradient(180deg, #060b16 0%, #0c1828 100%);
}

.home-v7 .home-v4-ad-grid article {
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .07)),
    linear-gradient(135deg, rgba(125, 211, 252, .28), rgba(79, 70, 229, .22) 46%, rgba(255, 177, 92, .12));
  backdrop-filter: none;
}

.home-v7 .home-v4-ad-grid article:nth-child(1),
.home-v7 .home-v4-ad-grid article:nth-child(2),
.home-v7 .home-v4-ad-grid article:nth-child(3),
.home-v7 .home-v4-ad-grid article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .07)),
    linear-gradient(135deg, rgba(125, 211, 252, .26), rgba(79, 70, 229, .22) 48%, rgba(255, 177, 92, .12));
}

.home-v7 .home-v5-blueprint-grid article,
.home-v7 .home-v6-proof-items article,
.home-v7 .home-v6-case-strip a {
  border-color: rgba(8, 17, 31, .10);
  box-shadow: 0 18px 58px rgba(15, 32, 51, .08);
}

.home-v7 .home-v2-final .container-page {
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, .92), rgba(15, 61, 109, .72)),
    url("/assets/wxxlm/images/home/home-hero-premium-lightfield-ai.webp") center / cover;
}

.home-v7.gsap-ready [data-motion] {
  will-change: auto;
}

.home-v6.gsap-ready.motion-ready .home-v6-hero-top,
.home-v6.gsap-ready.motion-ready .home-v6-quick-links,
.home-v6.gsap-ready.motion-ready .home-v6-hero-media {
  animation: none;
}

.home-v6.lite-motion .home-v7-three {
  display: none;
}

.home-v6.lite-motion .home-v6-hero::before,
.home-v6.lite-motion .home-v6-hero-media::after,
.home-v6.lite-motion .home-v6-projects::before {
  animation: none;
}

.home-v6 + .xlm-footer .xlm-floating {
  display: none;
}

.home-v6 [data-motion] {
  opacity: 0;
  transform: translateY(32px);
}

.home-v6 [data-motion].is-visible,
.home-v6.motion-ready .home-v6-hero-top,
.home-v6.motion-ready .home-v6-quick-links {
  opacity: 1;
  transform: translateY(0);
}

.home-v6.motion-ready .home-v6-hero-top,
.home-v6.motion-ready .home-v6-quick-links {
  animation: homeV6Rise .82s cubic-bezier(.2, .8, .2, 1) both;
}

.home-v6.motion-ready .home-v6-hero-media {
  animation: homeV6Fade .82s ease .08s both;
}

.home-v6.motion-ready .home-v6-quick-links {
  animation-delay: .16s;
}

.home-v6 [data-motion].is-visible {
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

@keyframes homeV6Rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeV6Fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes homeV6LightField {
  0%,
  100% {
    filter: hue-rotate(0deg) saturate(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    filter: hue-rotate(12deg) saturate(1.16);
    transform: translate3d(-1.5%, 1%, 0) scale(1.025);
  }
}

@keyframes homeV6Sweep {
  0%,
  18% {
    background-position: 125% 0, 0 0;
  }
  52%,
  100% {
    background-position: -35% 0, 0 0;
  }
}

@keyframes homeV6MediaShine {
  0%,
  28% {
    background-position: 125% 0, 0 0;
  }
  62%,
  100% {
    background-position: -45% 0, 0 0;
  }
}

@keyframes homeV6ScrollCue {
  0%,
  100% {
    transform: translateY(-8px);
    opacity: .28;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

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

  .home-v6 [data-motion],
  .home-v6.motion-ready .home-v6-hero-top,
  .home-v6.motion-ready .home-v6-hero-media,
  .home-v6.motion-ready .home-v6-quick-links {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .home-v6-hero-top,
  .home-v6-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-v6-hero h1,
  .home-v7 .home-v6-hero h1 {
    font-size: 62px;
    line-height: 1.05;
  }

  .home-v6-proof h2,
  .home-v6-section-title h2,
  .home-v7 .home-v6-proof h2,
  .home-v7 .home-v6-section-title h2,
  .home-v6 .home-v4-ad-services .home-v2-section-head h2 {
    font-size: 40px;
    line-height: 1.14;
  }

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

  .home-v6-project-grid,
  .home-v6 .home-v4-ad-grid,
  .home-v6 .home-v2-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v7 .home-v6-hero-top,
  .home-v7 .home-v6-project-grid {
    grid-template-columns: 1fr;
  }

  .home-v7 .home-v6-project-card:first-child {
    grid-column: auto;
  }

  .home-v7 .home-v6-project-card:first-child strong {
    font-size: 34px;
  }

  .home-v8-case-head h2 {
    font-size: 40px;
    line-height: 1.14;
  }

  .home-v8-case-stage {
    grid-template-columns: 1fr;
  }

  .home-v8-case-feature {
    min-height: auto;
  }

  .home-v8-case-feature img {
    height: 420px;
  }

  .home-v8-case-item {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .home-v8-case-mini {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .home-v6-hero-shell {
    padding: 26px 0 18px;
  }

  .home-v7 .home-v6-hero-shell {
    min-height: auto;
    padding: 28px 0 20px;
  }

  .home-v6-hero h1,
  .home-v7 .home-v6-hero h1 {
    font-size: 56px;
    line-height: 1.02;
  }

  .home-v6-lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.66;
  }

  .home-v7 .home-v6-lead {
    font-size: 16px;
    line-height: 1.66;
  }

  .home-v6-hero-media {
    height: 230px;
    margin-top: 22px;
  }

  .home-v7-hero {
    min-height: auto;
  }

  .home-v6-hero-media figcaption {
    bottom: 18px;
  }

  .home-v6-quick-links {
    display: grid;
    margin-top: 12px;
  }

  .home-v6-quick-links a,
  .home-v7 .home-v6-quick-links a {
    min-height: 118px;
    padding: 14px;
  }

  .home-v6-quick-links strong {
    font-size: 17px;
  }

  .home-v6-quick-links p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.56;
  }
}

@media (max-width: 720px) {
  .home-v6-hero-shell {
    width: min(1120px, calc(100% - 24px));
    padding: 28px 0 18px;
  }

  .home-v7 .home-v6-hero-shell {
    min-height: auto;
    padding: 26px 0 18px;
  }

  .home-v7-hero-bg {
    object-position: 66% 42%;
    opacity: .6;
  }

  .home-v7-three {
    opacity: .44;
  }

  .home-v6-hero h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .home-v7 .home-v6-hero h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .home-v6-lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-v7 .home-v6-lead {
    font-size: 15px;
    line-height: 1.72;
  }

  .home-v7-hero-meta {
    margin-top: 16px;
  }

  .home-v7-hero-meta span {
    padding: 7px 10px;
  }

  .home-v6-hero-actions,
  .home-v6-hero-actions .btn {
    width: 100%;
  }

  .home-v6-hero-media {
    height: 212px;
    margin-top: 24px;
    transform: none;
  }

  .home-v7-hero-media {
    height: 238px;
  }

  .home-v6-hero-media figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-v6-hero-media strong {
    font-size: 23px;
  }

  .home-v6-quick-links,
  .home-v6-proof-items,
  .home-v6-project-grid,
  .home-v6-case-strip,
  .home-v8-case-head,
  .home-v8-case-brief,
  .home-v8-case-item,
  .home-v6 .home-v4-ad-grid,
  .home-v6 .home-v2-service-grid {
    grid-template-columns: 1fr;
  }

  .home-v6-quick-links {
    display: none;
  }

  .home-v6-scroll-cue {
    display: none;
  }

  .home-v6-proof,
  .home-v6-projects,
  .home-v8-cases,
  .home-v6 .home-v4-ad-services,
  .home-v6 .home-v5-blueprint,
  .home-v6 .home-v2-proofstack,
  .home-v6 .home-v2-services {
    padding: 54px 0;
  }

  .home-v6-proof h2,
  .home-v6-section-title h2,
  .home-v7 .home-v6-proof h2,
  .home-v7 .home-v6-section-title h2,
  .home-v6 .home-v4-ad-services .home-v2-section-head h2,
  .home-v6 .home-v5-blueprint .home-v2-section-head h2,
  .home-v6 .home-v2-proofstack .home-v2-section-head h2,
  .home-v6 .home-v2-final h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .home-v6-proof-items article,
  .home-v6 .home-v4-ad-grid article,
  .home-v6 .home-v2-service-grid article {
    min-height: auto;
  }

  .home-v6-project-card,
  .home-v6-project-card img {
    min-height: 460px;
  }

  .home-v6-project-card span {
    bottom: 198px;
  }

  .home-v6-project-card strong,
  .home-v7 .home-v6-project-card:first-child strong {
    bottom: 128px;
    font-size: 26px;
  }

  .home-v6-project-card p {
    bottom: 22px;
    line-height: 1.66;
  }

  .home-v7 .home-v4-ad-grid article {
    min-height: auto;
  }

  .home-v6-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-v8-case-head {
    align-items: start;
    gap: 18px;
    margin-bottom: 26px;
  }

  .home-v8-case-head h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .home-v8-case-head p:not(.home-v6-eyebrow) {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.68;
  }

  .home-v8-case-head a {
    width: 100%;
  }

  .home-v8-case-stage {
    gap: 14px;
  }

  .home-v8-case-feature {
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .home-v8-case-feature img {
    height: 238px;
    min-height: 0;
  }

  .home-v8-case-mark {
    top: 18px;
    left: 18px;
    font-size: 50px;
  }

  .home-v8-case-feature-body {
    padding: 22px;
  }

  .home-v8-case-feature h3 {
    font-size: 25px;
    line-height: 1.22;
  }

  .home-v8-case-item {
    gap: 14px;
    padding: 12px;
  }

  .home-v8-case-item img {
    height: 190px;
  }

  .home-v8-case-item h3 {
    font-size: 20px;
  }

  .home-v8-case-mini {
    grid-template-columns: 1fr;
  }
}
/* Authenticated CMS preview only; public pages never render this notice. */
.cms-preview-notice {
  background: #153f68;
  color: #ffffff;
  border-bottom: 3px solid #e6a419;
}

.cms-preview-notice .container-page {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.cms-preview-notice strong {
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .cms-preview-notice .container-page {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}
