/*
  UI system polish layer.
  Scope: typography, spacing, surface quality, radii, and page-level readability.
  This file intentionally does not control WebGL, particle density, intro reveal,
  homepage scene transitions, or product camera motion.
*/

:root {
  --ui-font: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif;
  --ui-radius-xs: 16px;
  --ui-radius-sm: 20px;
  --ui-radius-md: 24px;
  --ui-radius-lg: 32px;
  --ui-radius-xl: 40px;
  --ui-surface: rgba(6, 17, 36, 0.54);
  --ui-surface-quiet: rgba(7, 19, 39, 0.38);
  --ui-surface-strong: rgba(5, 12, 26, 0.66);
  --ui-border: rgba(175, 218, 255, 0.16);
  --ui-border-strong: rgba(187, 226, 255, 0.28);
  --ui-text: rgba(248, 252, 255, 0.96);
  --ui-text-soft: rgba(229, 241, 255, 0.78);
  --ui-text-muted: rgba(199, 220, 244, 0.58);
  --ui-panel-shadow:
    0 32px 110px rgba(0, 0, 0, 0.32),
    0 0 72px rgba(47, 140, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --ui-panel-fill:
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.024)),
    radial-gradient(ellipse at 18% 0%, rgba(48, 142, 255, 0.16), transparent 42%),
    rgba(6, 17, 36, 0.46);
  --ui-page-veil:
    linear-gradient(180deg, rgba(2, 7, 18, 0.28) 0%, rgba(3, 9, 21, 0.58) 32%, rgba(3, 8, 18, 0.74) 100%);
}

body {
  font-family: var(--ui-font);
  font-weight: 500;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body,
html[data-view="about"],
html[data-view="products"],
html[data-view="contact"] {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar,
html[data-view="about"]::-webkit-scrollbar,
html[data-view="products"]::-webkit-scrollbar,
html[data-view="contact"]::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.brand-mark,
.nav-links button,
.nav-links a,
.primary-action,
.secondary-action,
.product-card,
.product-stage,
.inner-page,
.product-tabs,
.contact-feature-card,
.about-panel,
.founder-card,
.promise-card,
.global-copy,
.product-info-card,
.department-card,
.market-mechanism,
.comparison-table,
.contact-info,
.qr-grid figure {
  font-family: var(--ui-font);
  letter-spacing: 0;
}

.site-nav {
  padding-inline: clamp(40px, 7vw, 112px);
}

.brand-mark {
  gap: 0;
  color: rgba(246, 251, 255, 0.92);
  font-size: 1rem;
  font-weight: 780;
}

.site-nav .brand-mark span.brand-symbol {
  width: 154px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  border-radius: 0;
  background: none !important;
  box-shadow: none;
}

.site-nav .brand-mark span.brand-symbol img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  height: 44px;
}

.nav-links {
  gap: 10px;
  padding: 5px;
  border-radius: 24px;
  background: rgba(6, 18, 39, 0.08);
}

.nav-links button,
.nav-links a {
  min-width: 88px;
  padding: 11px 18px;
  border-radius: 19px;
  color: rgba(229, 241, 255, 0.7);
  font-size: 0.96rem;
  font-weight: 760;
  text-decoration: none;
}

.nav-links button:hover,
.nav-links a:hover {
  border-color: rgba(15, 31, 59, 0.58);
  background: rgba(7, 18, 38, 0.26);
}

.nav-links button.is-current,
.nav-links a.is-current {
  border-color: rgba(255, 159, 47, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 159, 47, 0.42), rgba(255, 133, 58, 0.18)),
    rgba(23, 31, 48, 0.18);
  box-shadow:
    0 16px 42px rgba(255, 159, 47, 0.2),
    inset 0 1px 0 rgba(255, 245, 230, 0.24);
}

html[data-view="about"] .site-nav,
html[data-view="products"] .site-nav,
html[data-view="contact"] .site-nav {
  background: transparent;
  box-shadow: none;
}

html[data-view="about"] .nav-links,
html[data-view="products"] .nav-links,
html[data-view="contact"] .nav-links {
  background: rgba(5, 14, 30, 0.12);
}

.page-about,
.page-products,
.page-contact {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  background: var(--ui-page-veil);
}

.page-about::before,
.page-products::before,
.page-contact::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 18%, rgba(47, 140, 255, 0.14), transparent 34%),
    radial-gradient(ellipse at 82% 20%, rgba(255, 159, 47, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(2, 7, 18, 0.32), rgba(3, 8, 18, 0.66));
}

.inner-page {
  width: min(1240px, calc(100% - 88px));
  padding-top: clamp(132px, 15vh, 158px);
  padding-bottom: clamp(112px, 13vh, 164px);
}

.inner-page h1,
.hero-copy h1,
.product-panel-copy h2,
.about-panel h2,
.promise-section h2,
.global-copy h2,
.product-section-head h2,
.contact-feature-card h2 {
  color: var(--ui-text);
  letter-spacing: 0;
}

.inner-page h1 {
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: 1.08;
  font-weight: 820;
}

.page-lead {
  color: var(--ui-text-soft);
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
  line-height: 1.82;
}

.page-kicker,
.section-label,
.detail-eyebrow,
.eyebrow {
  color: rgba(143, 210, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
}

.about-content-shell,
.product-content-shell {
  background:
    linear-gradient(180deg, rgba(3, 8, 20, 0) 0, rgba(3, 8, 20, 0.16) 84px, rgba(3, 8, 20, 0.48) 210px, rgba(3, 8, 20, 0.66) 100%),
    radial-gradient(ellipse at 24% 0%, rgba(47, 140, 255, 0.16), transparent 36%),
    radial-gradient(ellipse at 86% 3%, rgba(255, 159, 47, 0.08), transparent 30%);
  background-color: transparent;
  box-shadow:
    0 -52px 132px rgba(2, 8, 20, 0.42),
    inset 0 1px 0 rgba(176, 222, 255, 0.12);
}

.about-content-shell {
  margin-bottom: -2px;
  margin-top: -42px;
  padding-top: clamp(92px, 9vh, 126px);
  padding-bottom: clamp(158px, 16vh, 220px);
}

.product-content-shell {
  margin-bottom: -2px;
  padding-bottom: clamp(150px, 14vh, 210px);
}

.about-content-shell::before,
.product-content-shell::before {
  opacity: 0.36;
}

.about-content-shell::after,
.product-content-shell::after {
  opacity: 0.62;
}

.about-content-inner,
.product-content-inner {
  width: min(1240px, calc(100% - 96px));
}

.about-content-inner {
  gap: clamp(96px, 10vw, 138px);
}

.about-hero {
  min-height: clamp(520px, 64vh, 640px);
  gap: clamp(72px, 7vw, 124px);
  align-items: start;
  padding-top: clamp(6px, 2vh, 24px);
}

.about-hero__copy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 4vw, 4.36rem);
  line-height: 1.13;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.about-hero__copy .page-lead {
  max-width: 700px;
  margin-top: 20px;
  line-height: 1.72;
}

.about-hero__signal {
  gap: 12px;
  margin-top: 38px;
}

.about-hero__signal span,
.promise-card > span,
.product-stat-strip span,
.market-category-cloud span,
.partner-ability-cloud span {
  border-radius: 999px;
  border-color: rgba(181, 222, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02)),
    rgba(6, 18, 38, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-visual,
.founder-photo,
.global-map,
.about-panel,
.founder-card,
.promise-card,
.about-principles article,
.global-copy,
.products-metric-strip,
.products-hero-panel,
.product-tabs,
.product-panel-hero,
.product-media-board,
.product-info-card,
.department-card,
.market-mechanism,
.comparison-table,
.product-flow li,
.contact-feature-card,
.contact-info,
.contact-info p,
.qr-grid figure,
.contact-link-row span {
  border-color: var(--ui-border);
  border-radius: var(--ui-radius-lg);
  background: var(--ui-panel-fill);
  box-shadow: var(--ui-panel-shadow);
}

.about-panel,
.founder-card,
.global-copy,
.contact-feature-card,
.contact-info,
.qr-grid figure {
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.about-panel--intro {
  max-width: 980px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-panel h2,
.promise-section h2,
.global-copy h2 {
  font-size: clamp(2.2rem, 3.1vw, 3.45rem);
  line-height: 1.14;
  font-weight: 820;
}

.about-panel p,
.founder-card blockquote p,
.promise-card p,
.global-copy p,
.global-copy li,
.product-panel-summary,
.product-section-head > span,
.product-info-card p,
.department-card p,
.market-mechanism p,
.contact-feature-card p,
.contact-feature-card li,
.contact-info p {
  color: var(--ui-text-soft);
  line-height: 1.84;
  font-weight: 560;
}

.about-panel p {
  max-width: 940px;
  margin-top: 22px;
}

.about-principles {
  gap: 24px;
}

.about-principles article {
  min-height: 198px;
  padding: 32px;
}

.about-principles span,
.product-info-card span,
.market-mechanism span {
  color: rgba(144, 211, 255, 0.82);
}

.about-principles strong,
.promise-card h3,
.product-info-card h3,
.department-card strong {
  color: rgba(248, 252, 255, 0.94);
  font-weight: 780;
}

.founder-section,
.global-section {
  gap: clamp(34px, 4vw, 48px);
}

.founder-card,
.global-copy {
  padding: clamp(44px, 5vw, 68px);
}

.founder-photo,
.global-map {
  min-height: 540px;
}

.promise-grid {
  gap: 26px;
}

.promise-card {
  min-height: 312px;
  padding: 34px;
}

.products-hero {
  min-height: calc(100vh - 56px);
  padding-top: clamp(116px, 12vh, 142px);
  padding-bottom: clamp(70px, 9vh, 104px);
  place-items: start center;
}

.products-hero h1 {
  font-size: clamp(2.85rem, 4.7vw, 5.15rem);
  line-height: 1.09;
}

.products-hero .page-lead {
  margin-top: 20px;
  line-height: 1.78;
}

.page-lead--support {
  margin-top: 12px;
}

.products-metric-strip {
  margin-top: 30px;
  border-radius: var(--ui-radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.024)),
    rgba(6, 18, 38, 0.4);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.products-metric-strip strong {
  font-weight: 820;
}

.products-metric-strip span {
  color: var(--ui-text-soft);
  font-weight: 720;
}

.product-tabs-anchor {
  position: relative;
  min-height: var(--product-tabs-height, 112px);
}

.product-tabs {
  position: relative;
  top: auto;
  width: 100%;
  gap: 14px;
  padding: 12px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
    rgba(4, 14, 31, 0.7);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    opacity 260ms ease,
    transform 320ms var(--ease-cinematic);
}

.product-tabs.is-docked {
  position: fixed;
  left: 50%;
  right: auto;
  top: auto;
  bottom: clamp(18px, 3vh, 30px);
  z-index: 118;
  width: min(var(--product-tabs-dock-width, 1240px), calc(100vw - 96px));
  transform: translateX(-50%);
  border-color: rgba(191, 226, 255, 0.26);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.028)),
    radial-gradient(ellipse at 72% 0%, rgba(255, 159, 47, 0.12), transparent 44%),
    rgba(4, 13, 29, 0.78);
  box-shadow:
    0 24px 88px rgba(0, 0, 0, 0.42),
    0 0 62px rgba(47, 140, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.product-tabs.is-docked button {
  min-height: 76px;
  padding: 14px 16px;
  border-radius: 22px;
}

.product-tabs.is-docked button span {
  width: 34px;
  height: 34px;
  border-radius: 13px;
}

.products-layout.is-product-tabs-docked .product-content-shell {
  padding-bottom: clamp(230px, 20vh, 300px);
}

.product-tabs button {
  min-height: 88px;
  border-radius: 24px;
  font-weight: 740;
}

.product-tabs button:hover,
.product-tabs button.is-current {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 22%, rgba(255, 255, 255, 0.04)), rgba(255, 255, 255, 0.025)),
    rgba(10, 28, 57, 0.56);
}

.product-detail-grid {
  margin-top: clamp(58px, 6vw, 76px);
}

.product-panel-hero {
  min-height: 620px;
  padding: clamp(46px, 5.2vw, 68px);
  border-radius: var(--ui-radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.024)),
    radial-gradient(ellipse at 10% 0%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 48%),
    rgba(6, 17, 36, 0.48);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.product-panel-copy h2 {
  font-size: clamp(2.65rem, 4.2vw, 4.9rem);
  line-height: 1.08;
  font-weight: 820;
}

.product-panel-copy h2 em {
  color: rgba(229, 244, 255, 0.7);
  font-weight: 720;
}

.product-slogan {
  margin-top: 30px;
  color: rgba(248, 252, 255, 0.92);
  font-weight: 760;
}

.product-media-board {
  min-height: 450px;
  border-radius: 34px;
}

.product-section {
  margin-top: clamp(78px, 8vw, 118px);
}

.feature-grid,
.capability-list,
.department-grid {
  gap: 20px;
}

.product-info-card,
.department-card,
.market-mechanism {
  min-height: 202px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
    rgba(7, 20, 42, 0.46);
}

.comparison-table {
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.076), rgba(255, 255, 255, 0.018)),
    rgba(7, 19, 42, 0.52);
}

.contact-layout {
  width: min(1240px, calc(100% - 88px));
}

.contact-partner-grid,
.contact-bottom-grid {
  gap: 32px;
}

.contact-feature-card {
  padding: clamp(34px, 4vw, 52px);
}

.contact-feature-card--wide {
  min-height: 448px;
}

.contact-feature-card h2 {
  font-weight: 820;
}

.contact-feature-card h3 {
  color: rgba(144, 211, 255, 0.86);
  font-weight: 780;
}

.contact-feature-card li,
.contact-info p,
.contact-link-row span {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.016)),
    rgba(8, 22, 48, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contact-info {
  gap: 16px;
  padding: 30px;
}

.qr-grid {
  gap: 18px;
}

.qr-grid figure {
  min-height: 292px;
  border-radius: 30px;
}

.qr-grid canvas {
  border-radius: 22px;
}

.product-card {
  border-radius: 24px;
}

.product-stage {
  border-radius: 28px;
  clip-path: inset(var(--panel-clip-y, 8%) var(--panel-clip-x, 12%) var(--panel-clip-y, 8%) 0 round 28px);
}

.visual-frame {
  border-radius: 24px;
}

@media (max-width: 1180px) {
  .inner-page,
  .contact-layout {
    width: min(960px, calc(100% - 64px));
  }

  .about-content-inner,
  .product-content-inner {
    width: min(960px, calc(100% - 64px));
  }
}

@media (max-width: 860px) {
  .site-nav {
    padding-inline: 18px;
  }

  .nav-links {
    gap: 5px;
    padding: 4px;
  }

  .nav-links button,
  .nav-links a {
    min-width: auto;
    padding: 9px 10px;
    border-radius: 16px;
    font-size: 0.84rem;
  }

  .inner-page,
  .contact-layout {
    width: calc(100% - 36px);
    padding-top: 114px;
    padding-bottom: 86px;
  }

  .inner-page h1,
  .products-hero h1 {
    font-size: 2.58rem;
  }

  .about-content-inner,
  .product-content-inner {
    width: calc(100% - 36px);
  }

  .product-tabs-anchor {
    min-height: auto;
  }

  .product-tabs.is-docked {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 42;
    width: 100%;
    transform: none;
  }

  .about-content-shell {
    padding-top: 82px;
    padding-bottom: 112px;
  }

  .product-content-shell {
    padding-bottom: 112px;
  }

  .about-panel h2,
  .promise-section h2,
  .global-copy h2,
  .product-section-head h2 {
    font-size: 1.86rem;
  }

  .about-visual,
  .founder-photo,
  .global-map,
  .about-panel,
  .founder-card,
  .promise-card,
  .about-principles article,
  .global-copy,
  .product-panel-hero,
  .product-media-board,
  .product-info-card,
  .department-card,
  .market-mechanism,
  .contact-feature-card,
  .contact-info,
  .qr-grid figure {
    border-radius: 24px;
  }

  .product-panel-hero,
  .founder-card,
  .global-copy,
  .contact-feature-card {
    padding: 24px;
  }
}

/*
  Late-page refinement.
  Keeps the home motion untouched; only reshapes about/products reading surfaces.
*/

.about-layout,
.products-layout {
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
}

.about-hero {
  width: min(1240px, calc(100% - 96px));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--nav-height) + clamp(44px, 6vh, 74px)) 0 clamp(74px, 9vh, 112px);
  grid-template-columns: minmax(430px, 0.86fr) minmax(500px, 0.98fr);
  gap: clamp(104px, 9vw, 154px);
  align-items: center;
}

.about-hero__copy {
  max-width: 700px;
  padding-top: clamp(8px, 2vh, 24px);
}

.about-hero__copy h1 {
  max-width: 640px;
  font-size: clamp(3.42rem, 5.35vw, 5.76rem);
  line-height: 1.03;
  white-space: normal;
  text-wrap: balance;
}

.about-hero__copy h1 span {
  display: block;
}

.about-hero__copy .page-lead {
  max-width: 660px;
  margin-top: clamp(24px, 3vh, 34px);
  color: rgba(232, 244, 255, 0.78);
  font-size: clamp(1.04rem, 1.22vw, 1.18rem);
  line-height: 1.86;
}

.about-hero__signal {
  margin-top: clamp(34px, 4vh, 52px);
  gap: 14px;
}

.about-hero__signal span {
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.02)),
    rgba(8, 24, 50, 0.42);
}

.about-visual {
  min-height: clamp(460px, 58vh, 620px);
  border-radius: 42px;
  overflow: hidden;
  transform: translateY(0);
}

.about-visual img {
  min-height: inherit;
}

.about-content-shell {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: clamp(118px, 12vh, 170px);
  padding-bottom: clamp(150px, 14vh, 210px);
  background:
    linear-gradient(180deg, rgba(3, 8, 20, 0.08) 0%, rgba(3, 8, 20, 0.28) 20%, rgba(4, 10, 22, 0.58) 58%, rgba(4, 9, 19, 0.74) 100%),
    radial-gradient(ellipse at 24% 0%, rgba(47, 140, 255, 0.16), transparent 42%),
    radial-gradient(ellipse at 78% 4%, rgba(255, 159, 47, 0.08), transparent 34%);
  background-color: rgba(3, 8, 20, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(176, 222, 255, 0.08),
    0 -22px 86px rgba(35, 128, 255, 0.08);
}

.about-content-shell::before {
  opacity: 0.22;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.about-content-shell::after {
  height: 300px;
  opacity: 0.36;
  background:
    radial-gradient(ellipse at calc(34% + var(--about-glow-shift, 0px)) 0%, rgba(82, 222, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at calc(78% - var(--about-glow-shift, 0px)) 8%, rgba(255, 159, 47, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(104, 178, 255, 0.07), transparent 72%);
}

.about-content-inner {
  width: min(1220px, calc(100% - 96px));
  gap: clamp(104px, 10vw, 150px);
}

.about-brand {
  gap: clamp(36px, 5vw, 64px);
}

.about-panel--intro h2 {
  max-width: 880px;
  font-size: clamp(2.46rem, 3.6vw, 4.08rem);
}

.about-panel p {
  max-width: 900px;
  margin-top: 24px;
}

.about-principles {
  align-content: start;
  gap: 20px;
}

.about-principles article {
  min-height: 176px;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.026)),
    rgba(7, 20, 42, 0.42);
}

.products-hero {
  width: min(1240px, calc(100% - 96px));
  min-height: 100svh;
  padding: calc(var(--nav-height) + clamp(44px, 6vh, 74px)) 0 clamp(70px, 9vh, 108px);
  place-items: center;
  text-align: left;
}

.products-hero::before {
  right: 2%;
  top: 21%;
  width: 520px;
  height: 520px;
  opacity: 0.34;
}

.products-hero-copy {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.72fr);
  grid-template-areas:
    "copy system"
    "metrics metrics";
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
  justify-items: stretch;
}

.products-hero-text {
  grid-area: copy;
}

.products-hero-copy .page-kicker {
  margin-bottom: 18px;
}

.products-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.35rem, 5.8vw, 6.34rem);
  line-height: 1.05;
}

.products-hero .page-lead,
.products-layout .page-lead {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.products-hero .page-lead {
  margin-top: clamp(22px, 2.8vh, 34px);
  font-size: clamp(1.05rem, 1.32vw, 1.24rem);
  line-height: 1.86;
}

.page-lead--support {
  margin-top: 14px;
  color: rgba(221, 238, 255, 0.72);
}

.products-hero-system {
  grid-area: system;
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid rgba(177, 220, 255, 0.18);
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.024)),
    radial-gradient(ellipse at 24% 18%, rgba(47, 140, 255, 0.2), transparent 42%),
    radial-gradient(ellipse at 86% 82%, rgba(255, 159, 47, 0.1), transparent 38%),
    rgba(6, 17, 36, 0.48);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.32),
    0 0 82px rgba(47, 140, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
}

.products-hero-system::before,
.products-hero-system::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.products-hero-system::before {
  inset: 26px;
  border-radius: 34px;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(150, 210, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(150, 210, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at 56% 44%, #000 0 56%, transparent 76%);
}

.products-hero-system::after {
  left: 16%;
  right: 12%;
  top: 43%;
  height: 1px;
  opacity: 0.72;
  background: linear-gradient(90deg, transparent, rgba(47, 140, 255, 0.56), rgba(124, 92, 255, 0.5), rgba(255, 159, 47, 0.52), transparent);
  box-shadow: 0 0 26px rgba(47, 140, 255, 0.36);
}

.products-system-kicker {
  position: relative;
  z-index: 1;
  color: rgba(143, 210, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 820;
}

.products-hero-system > strong {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: rgba(249, 252, 255, 0.94);
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.32;
}

.products-system-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.products-system-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, rgba(176, 222, 255, 0.14));
  border-radius: 24px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 13%, rgba(255, 255, 255, 0.045)), rgba(255, 255, 255, 0.018)),
    rgba(5, 16, 34, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.products-system-flow article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: color-mix(in srgb, var(--accent) 70%, #fff);
  background: color-mix(in srgb, var(--accent) 16%, rgba(255, 255, 255, 0.05));
  font-size: 0.76rem;
  font-weight: 850;
}

.products-system-flow strong {
  display: block;
  color: rgba(248, 252, 255, 0.92);
  font-size: 1rem;
  line-height: 1.2;
}

.products-system-flow small {
  display: block;
  margin-top: 5px;
  color: rgba(202, 225, 248, 0.62);
  line-height: 1.4;
}

.products-metric-strip {
  grid-area: metrics;
  width: 100%;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.products-metric-strip article {
  min-height: 104px;
  padding: 22px 20px;
  border: 1px solid rgba(171, 217, 255, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.024)),
    rgba(7, 20, 42, 0.38);
  box-shadow:
    0 20px 64px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.products-metric-strip article:first-child {
  border-left: 1px solid rgba(171, 217, 255, 0.16);
}

.product-content-shell {
  margin-top: 0;
  padding-top: clamp(96px, 10vh, 136px);
  background:
    linear-gradient(180deg, rgba(3, 8, 20, 0.12) 0%, rgba(3, 8, 20, 0.34) 22%, rgba(4, 9, 21, 0.62) 62%, rgba(5, 10, 20, 0.76) 100%),
    radial-gradient(ellipse at calc(20% + var(--product-glow-shift, 0px)) 4%, color-mix(in srgb, var(--product-active-accent) 18%, transparent), transparent 40%),
    radial-gradient(ellipse at 82% 2%, color-mix(in srgb, var(--product-active-secondary) 13%, transparent), transparent 36%);
  background-color: rgba(4, 9, 21, 0.52);
}

.product-content-shell::before {
  opacity: 0.28;
}

.product-content-shell::after {
  height: 360px;
  opacity: 0.44;
}

.product-tabs-anchor {
  min-height: var(--product-tabs-height, 94px);
}

.product-tabs {
  gap: 10px;
  padding: 10px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.022)),
    rgba(5, 16, 35, 0.62);
}

.product-tabs button {
  min-height: 72px;
  padding: 13px 15px;
  border-radius: 22px;
  column-gap: 12px;
}

.product-tabs button span {
  width: 33px;
  height: 33px;
  border-radius: 13px;
}

.product-tabs button strong {
  font-size: 0.96rem;
}

.product-tabs button small {
  max-width: 100%;
  color: rgba(199, 221, 246, 0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-tabs.is-docked {
  bottom: clamp(18px, 2.6vh, 26px);
  width: min(980px, calc(100vw - 72px));
  padding: 8px;
  border-radius: 26px;
  border-color: rgba(190, 226, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.026)),
    radial-gradient(ellipse at 70% 0%, rgba(255, 159, 47, 0.12), transparent 42%),
    rgba(4, 13, 29, 0.76);
  box-shadow:
    0 22px 74px rgba(0, 0, 0, 0.38),
    0 0 54px rgba(47, 140, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.product-tabs.is-docked.product-scroll-reveal {
  opacity: 1;
  filter: none;
  transform: translateX(-50%);
}

.product-tabs.is-docked button {
  min-height: 56px;
  padding: 9px 12px;
  border-radius: 18px;
  grid-template-areas: "index name";
  row-gap: 0;
}

.product-tabs.is-docked button span {
  width: 28px;
  height: 28px;
  border-radius: 11px;
  font-size: 0.7rem;
}

.product-tabs.is-docked button strong {
  font-size: 0.9rem;
}

.product-tabs.is-docked button small {
  display: none;
}

.products-layout.is-product-tabs-docked .product-content-shell {
  padding-bottom: clamp(176px, 16vh, 230px);
}

@media (max-width: 1180px) {
  .about-hero,
  .products-hero {
    width: min(960px, calc(100% - 64px));
    min-height: auto;
    padding-top: calc(var(--nav-height) + 48px);
  }

  .about-hero,
  .products-hero-copy {
    grid-template-columns: 1fr;
  }

  .products-hero-copy {
    grid-template-areas:
      "copy"
      "system"
      "metrics";
  }

  .products-hero-system {
    min-height: 340px;
  }
}

@media (max-width: 860px) {
  .about-hero,
  .products-hero,
  .about-content-inner,
  .product-content-inner {
    width: calc(100% - 36px);
  }

  .about-hero,
  .products-hero {
    padding-top: 116px;
    padding-bottom: 70px;
  }

  .about-hero {
    gap: 38px;
  }

  .about-visual,
  .about-visual img {
    min-height: 360px;
  }

  .about-content-shell {
    padding-top: 84px;
    padding-bottom: 112px;
  }

  .products-hero-copy {
    gap: 28px;
  }

  .products-hero h1,
  .about-hero__copy h1 {
    font-size: 2.58rem;
  }

  .products-hero-system {
    min-height: 300px;
    padding: 24px;
    border-radius: 30px;
  }

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

  .products-metric-strip article {
    min-height: 88px;
  }

  .product-tabs-anchor {
    min-height: auto;
  }

  .product-tabs {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .product-tabs.is-docked {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 42;
    width: 100%;
    transform: none;
  }

  .product-tabs.is-docked.product-scroll-reveal {
    transform: none;
  }
}

/*
  Product/about detail refinement.
  Removes stray orange bars, lightens heavy scroll effects, and adds calmer media-led product reading.
*/

.about-visual--placeholder {
  min-height: clamp(430px, 54vh, 580px);
  display: grid;
  place-items: center;
  border-radius: 42px;
  background:
    radial-gradient(ellipse at 34% 24%, rgba(47, 140, 255, 0.26), transparent 38%),
    radial-gradient(ellipse at 76% 72%, rgba(124, 92, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.024)),
    rgba(6, 18, 38, 0.52);
}

.about-visual--placeholder::before {
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  mix-blend-mode: screen;
  background:
    linear-gradient(90deg, rgba(180, 224, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(180, 224, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 54%, transparent 78%);
}

.about-visual--placeholder::after {
  display: none;
}

.about-placeholder-card {
  position: relative;
  z-index: 2;
  width: min(420px, calc(100% - 80px));
  min-height: 230px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 38px;
  border: 1px solid rgba(190, 226, 255, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(5, 14, 30, 0.42);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.about-placeholder-card span {
  color: rgba(143, 210, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
}

.about-placeholder-card strong {
  color: rgba(248, 252, 255, 0.94);
  font-size: clamp(1.52rem, 2.2vw, 2.12rem);
  line-height: 1.24;
}

.about-placeholder-card small {
  color: rgba(214, 234, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.72;
}

.about-placeholder-node {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #5fc7ff;
  box-shadow: 0 0 28px rgba(95, 199, 255, 0.58);
}

.about-placeholder-node--one {
  left: 18%;
  top: 24%;
}

.about-placeholder-node--two {
  right: 20%;
  top: 36%;
  background: #8d79ff;
  box-shadow: 0 0 28px rgba(141, 121, 255, 0.54);
}

.about-placeholder-node--three {
  left: 24%;
  bottom: 22%;
  width: 10px;
  height: 10px;
}

.about-principles article::after,
.product-info-card::before,
.department-card::before,
.market-mechanism::before {
  display: none;
}

.about-principles article,
.product-info-card,
.department-card,
.market-mechanism {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.022)),
    radial-gradient(ellipse at 22% 0%, rgba(47, 140, 255, 0.1), transparent 42%),
    rgba(7, 20, 42, 0.42);
}

.products-hero {
  width: min(1180px, calc(100% - 116px));
  padding-top: calc(var(--nav-height) + clamp(36px, 5vh, 62px));
  padding-bottom: clamp(72px, 9vh, 118px);
}

.products-hero-copy {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: clamp(46px, 6vw, 86px);
}

.products-hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 4.8vw, 5.36rem);
}

.products-hero .page-lead,
.products-layout .page-lead {
  max-width: 690px;
}

.products-hero .page-lead {
  font-size: clamp(1rem, 1.18vw, 1.13rem);
  line-height: 1.82;
}

.products-hero-system {
  min-height: 360px;
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: 36px;
}

.products-hero-system > strong {
  max-width: 320px;
  font-size: clamp(1.34rem, 1.72vw, 1.76rem);
}

.products-system-flow {
  gap: 10px;
}

.products-system-flow article {
  min-height: 62px;
  padding: 12px;
  border-radius: 20px;
}

.products-metric-strip {
  gap: 16px;
}

.products-metric-strip article {
  min-height: 88px;
  padding: 18px;
  border-radius: 24px;
}

.products-metric-strip strong {
  font-size: clamp(1.42rem, 2vw, 1.92rem);
}

.product-panel-hero {
  min-height: 540px;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.88fr);
  gap: clamp(50px, 5.4vw, 78px);
  padding: clamp(42px, 5.2vw, 68px);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.024)),
    radial-gradient(ellipse at 8% 0%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 48%),
    rgba(7, 20, 43, 0.48);
}

.product-panel-copy h2 {
  font-size: clamp(2.35rem, 3.9vw, 4.22rem);
}

.product-panel-copy h2 em {
  font-size: clamp(1.16rem, 1.86vw, 1.74rem);
}

.product-slogan {
  margin-top: 24px;
}

.product-panel-copy h3 {
  margin-top: 26px;
}

.product-panel-summary {
  max-width: 620px;
  line-height: 1.8;
}

.product-highlight {
  margin-top: 22px;
  border-left-width: 2px;
}

.product-stat-strip {
  margin-top: 30px;
}

.product-media-board {
  min-height: 380px;
  border-radius: 34px;
}

.product-media-board img {
  min-height: 380px;
}

.product-section {
  margin-top: clamp(82px, 8vw, 128px);
}

.product-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.product-section-head h2 {
  font-size: clamp(1.88rem, 2.8vw, 3rem);
}

.product-section--visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.product-section--visual .product-section-head {
  position: sticky;
  top: calc(var(--nav-height) + 34px);
  margin-bottom: 0;
}

.product-intro-media {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: 18px;
}

.product-intro-media__card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(177, 220, 255, 0.16);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(7, 19, 40, 0.48);
  box-shadow:
    0 24px 84px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-intro-media__card:first-child {
  grid-row: span 2;
  min-height: 520px;
}

.product-intro-media__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.03);
}

.product-intro-media__card:nth-child(2) img {
  object-position: 66% 50%;
}

.product-intro-media__card:nth-child(3) img {
  object-position: 36% 58%;
}

.product-intro-media__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(4, 10, 22, 0.24) 42%, rgba(4, 10, 22, 0.86) 100%),
    radial-gradient(ellipse at 18% 100%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 46%);
}

.product-intro-media__card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.product-intro-media__card span {
  display: block;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--accent) 76%, #eef8ff);
  font-size: 0.72rem;
  font-weight: 850;
}

.product-intro-media__card strong {
  display: block;
  color: rgba(248, 252, 255, 0.94);
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  line-height: 1.35;
}

.product-intro-media__card p {
  margin: 12px 0 0;
  color: rgba(219, 236, 255, 0.68);
  line-height: 1.7;
}

.feature-grid,
.capability-list,
.department-grid {
  gap: 22px;
}

.product-info-card,
.department-card,
.market-mechanism {
  min-height: 172px;
  padding: 24px;
  border-radius: 28px;
}

.product-animate-item,
.product-scroll-reveal {
  transform: translate3d(0, 20px, 0) scale(0.994);
  filter: none;
  transition:
    opacity 540ms var(--ease-cinematic) calc(var(--item-index, 0) * 32ms),
    transform 540ms var(--ease-cinematic) calc(var(--item-index, 0) * 32ms);
}

@media (max-width: 1180px) {
  .products-hero {
    width: min(960px, calc(100% - 64px));
  }

  .product-section--visual {
    grid-template-columns: 1fr;
  }

  .product-section--visual .product-section-head {
    position: static;
  }
}

@media (max-width: 860px) {
  .about-placeholder-card {
    width: calc(100% - 48px);
    padding: 28px;
  }

  .products-hero {
    width: calc(100% - 36px);
  }

  .products-hero-copy,
  .product-panel-hero,
  .product-intro-media {
    grid-template-columns: 1fr;
  }

  .product-intro-media__card:first-child {
    grid-row: auto;
    min-height: 320px;
  }
}

/*
  Final unified inner-page pass.
  Keeps the approved home motion intact while tightening layout, page masks,
  docked product tabs, and long-page rendering.
*/

html[data-view="about"],
html[data-view="products"],
html[data-view="contact"] {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: auto;
}

html[data-view="about"] body,
html[data-view="products"] body,
html[data-view="contact"] body {
  overflow-x: hidden;
  overflow-y: visible;
  background: #020812;
}

html[data-view="about"]::-webkit-scrollbar,
html[data-view="products"]::-webkit-scrollbar,
html[data-view="contact"]::-webkit-scrollbar,
html[data-view="about"] body::-webkit-scrollbar,
html[data-view="products"] body::-webkit-scrollbar,
html[data-view="contact"] body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

html[data-view="about"] .app-shell,
html[data-view="products"] .app-shell,
html[data-view="contact"] .app-shell {
  overflow-x: clip;
  min-height: 100svh;
}

.page-about,
.page-products,
.page-contact {
  overflow-x: clip;
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(3, 10, 22, 0.58) 0%, rgba(4, 11, 22, 0.7) 58%, rgba(4, 9, 18, 0.86) 100%),
    radial-gradient(ellipse at 18% 18%, rgba(47, 140, 255, 0.12), transparent 36%),
    radial-gradient(ellipse at 84% 20%, rgba(124, 92, 255, 0.09), transparent 34%);
}

.page-about::before,
.page-products::before,
.page-contact::before {
  z-index: 0;
  opacity: 0.82;
  background:
    linear-gradient(180deg, rgba(4, 12, 26, 0.16), rgba(3, 8, 18, 0.68)),
    radial-gradient(ellipse at 50% 0%, rgba(74, 178, 255, 0.11), transparent 42%);
}

.page-about > .inner-page,
.page-products > .inner-page,
.page-contact > .inner-page {
  position: relative;
  z-index: 1;
}

.about-content-shell,
.product-content-shell {
  width: 100%;
  margin-left: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0) 0%, rgba(3, 9, 20, 0.22) 96px, rgba(5, 13, 27, 0.56) 236px, rgba(5, 12, 24, 0.78) 100%),
    radial-gradient(ellipse at 24% 0%, rgba(59, 164, 255, 0.13), transparent 38%),
    radial-gradient(ellipse at 84% 6%, rgba(255, 159, 47, 0.07), transparent 34%);
  box-shadow:
    0 -42px 124px rgba(2, 8, 20, 0.34),
    inset 0 1px 0 rgba(176, 222, 255, 0.1);
}

.about-content-shell::before,
.product-content-shell::before {
  opacity: 0.18;
}

.about-content-shell::after,
.product-content-shell::after {
  opacity: 0.34;
}

.about-layout,
.products-layout,
.contact-layout {
  width: 100%;
  max-width: none;
}

.about-hero,
.products-hero {
  width: min(1180px, calc(100% - 112px));
  min-height: 100svh;
  margin-inline: auto;
  padding-top: calc(var(--nav-height) + clamp(52px, 7vh, 86px));
  padding-bottom: clamp(76px, 9vh, 120px);
}

.about-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.86fr);
  gap: clamp(76px, 8vw, 132px);
  align-items: center;
}

.about-hero__copy {
  max-width: 660px;
  padding-top: 0;
}

.about-hero__copy h1 {
  max-width: 660px;
  font-size: clamp(3.05rem, 4.85vw, 5.08rem);
  line-height: 1.06;
  white-space: normal;
  text-wrap: balance;
}

.about-hero__copy .page-lead {
  max-width: 640px;
  margin-top: clamp(24px, 3.2vh, 38px);
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.86;
}

.about-hero__signal {
  margin-top: clamp(32px, 4.6vh, 54px);
  gap: 12px;
}

.about-hero__signal span {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(6, 20, 42, 0.34);
}

.about-visual--placeholder {
  min-height: clamp(440px, 54vh, 560px);
  border-radius: 46px;
  background:
    radial-gradient(ellipse at 32% 20%, rgba(71, 175, 255, 0.22), transparent 40%),
    radial-gradient(ellipse at 74% 72%, rgba(124, 92, 255, 0.18), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(7, 20, 42, 0.42);
  box-shadow:
    0 36px 116px rgba(0, 0, 0, 0.28),
    0 0 82px rgba(47, 140, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.about-placeholder-card {
  width: min(390px, calc(100% - 96px));
  min-height: 214px;
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.026)),
    rgba(5, 15, 32, 0.36);
}

.about-placeholder-card strong {
  font-size: clamp(1.42rem, 1.9vw, 1.9rem);
}

.about-content-shell {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: clamp(118px, 12vh, 168px);
  padding-bottom: clamp(160px, 16vh, 228px);
  background-color: rgba(4, 11, 22, 0.72);
}

.about-content-inner {
  width: min(1120px, calc(100% - 112px));
  gap: clamp(112px, 11vw, 168px);
}

.about-panel,
.founder-card,
.global-copy,
.promise-card,
.about-principles article {
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.018)),
    rgba(7, 20, 42, 0.34);
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-panel h2,
.promise-section h2,
.global-copy h2 {
  line-height: 1.14;
}

.about-panel p,
.founder-card p,
.global-copy p,
.promise-card p,
.about-principles article p {
  line-height: 1.86;
}

.products-hero {
  width: min(1160px, calc(100% - 116px));
  place-items: center;
}

.products-hero-copy {
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.58fr);
  gap: clamp(54px, 6.4vw, 94px);
  align-items: center;
}

.products-hero-text {
  position: relative;
  max-width: 650px;
}

.products-hero-text::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 8px;
  bottom: 10px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(95, 199, 255, 0), rgba(95, 199, 255, 0.72), rgba(255, 159, 47, 0.42), rgba(255, 159, 47, 0));
  opacity: 0.55;
}

.products-hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 4.85vw, 5.05rem);
  line-height: 1.06;
}

.products-hero .page-lead,
.products-layout .page-lead {
  max-width: 640px;
}

.products-hero .page-lead {
  margin-top: clamp(20px, 2.6vh, 30px);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.84;
}

.products-hero-system {
  min-height: 340px;
  max-width: 390px;
  justify-self: end;
  gap: 20px;
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: 38px;
}

.products-hero-system > strong {
  max-width: 300px;
  font-size: clamp(1.22rem, 1.5vw, 1.58rem);
}

.products-system-flow {
  gap: 9px;
}

.products-system-flow article {
  min-height: 58px;
  padding: 11px;
  border-radius: 19px;
}

.products-system-flow article > span {
  width: 30px;
  height: 30px;
  border-radius: 12px;
}

.products-system-flow strong {
  font-size: 0.94rem;
}

.products-system-flow small {
  font-size: 0.8rem;
  line-height: 1.3;
}

.products-metric-strip {
  gap: 18px;
  margin-top: clamp(4px, 1vh, 12px);
}

.products-metric-strip article {
  min-height: 82px;
  padding: 16px 18px;
  border-radius: 24px;
}

.products-metric-strip strong {
  font-size: clamp(1.34rem, 1.76vw, 1.72rem);
}

.products-metric-strip span {
  font-size: 0.94rem;
}

.product-content-shell {
  padding-top: clamp(108px, 11vh, 148px);
  padding-bottom: clamp(190px, 18vh, 260px);
  background-color: rgba(4, 10, 20, 0.68);
}

.product-content-inner {
  width: min(1180px, calc(100% - 112px));
}

.product-tabs-anchor {
  min-height: var(--product-tabs-height, 86px);
}

.product-tabs {
  gap: 12px;
  padding: 8px;
  border-radius: 32px;
  border-color: rgba(181, 220, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(5, 16, 35, 0.54);
}

.product-tabs button {
  min-height: 68px;
  padding: 12px 14px;
  border-radius: 24px;
}

.product-tabs button.is-current,
.product-tabs button:hover {
  transform: translateY(-1px);
}

.product-tabs.is-docked {
  bottom: clamp(20px, 2.6vh, 28px);
  width: min(820px, calc(100vw - 104px));
  padding: 7px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.022)),
    rgba(4, 13, 28, 0.78);
  box-shadow:
    0 24px 84px rgba(0, 0, 0, 0.42),
    0 0 52px rgba(47, 140, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.product-tabs.is-docked button {
  min-height: 50px;
  padding: 7px 11px;
  border-radius: 999px;
}

.product-tabs.is-docked button span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
}

.product-tabs.is-docked button strong {
  font-size: 0.86rem;
}

.products-layout.is-product-tabs-docked .product-content-shell {
  padding-bottom: clamp(220px, 20vh, 310px);
}

.product-detail-grid {
  margin-top: clamp(64px, 7vh, 96px);
  padding-bottom: clamp(160px, 16vh, 240px);
}

.product-detail {
  scroll-margin-top: calc(var(--nav-height) + 52px);
}

.product-panel-hero {
  min-height: 520px;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.86fr);
  gap: clamp(58px, 6vw, 92px);
  padding: clamp(46px, 5vw, 72px);
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.02)),
    radial-gradient(ellipse at 8% 0%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 48%),
    rgba(7, 20, 43, 0.42);
}

.product-panel-copy h2 {
  font-size: clamp(2.28rem, 3.55vw, 4.02rem);
  line-height: 1.08;
}

.product-panel-copy h2 em {
  font-size: clamp(1.08rem, 1.62vw, 1.58rem);
}

.product-panel-summary {
  max-width: 590px;
  font-size: 1rem;
  line-height: 1.86;
}

.product-media-board {
  min-height: 370px;
  border-radius: 38px;
}

.product-media-board img {
  min-height: 370px;
}

.product-section {
  margin-top: clamp(98px, 9vw, 152px);
  scroll-margin-top: calc(var(--nav-height) + 56px);
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.product-section-head {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.product-section--visual {
  grid-template-columns: minmax(260px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(46px, 5.6vw, 84px);
}

.product-section--visual .product-section-head {
  top: calc(var(--nav-height) + 48px);
}

.product-intro-media {
  gap: 22px;
}

.product-intro-media__card {
  min-height: 260px;
  border-radius: 36px;
}

.product-intro-media__card:first-child {
  min-height: 500px;
}

.feature-grid,
.capability-list,
.department-grid {
  gap: 24px;
}

.product-info-card,
.department-card,
.market-mechanism {
  min-height: 168px;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.018)),
    rgba(7, 20, 42, 0.34);
  content-visibility: auto;
  contain-intrinsic-size: 190px;
}

.comparison-table {
  border-radius: 32px;
  background: rgba(7, 19, 42, 0.42);
}

.contact-layout {
  width: min(1180px, calc(100% - 112px));
  padding-top: calc(var(--nav-height) + clamp(58px, 8vh, 96px));
  padding-bottom: clamp(132px, 14vh, 190px);
}

.contact-layout > h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.7vw, 5rem);
}

.contact-layout > .page-lead {
  max-width: 760px;
  margin-top: 24px;
  line-height: 1.84;
}

.contact-partner-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 32px;
  margin-top: clamp(48px, 5vw, 72px);
}

.contact-bottom-grid {
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  margin-top: 32px;
}

.contact-feature-card,
.contact-info,
.qr-grid figure {
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(7, 20, 42, 0.38);
}

.contact-feature-card {
  min-height: 360px;
  padding: clamp(32px, 3.6vw, 48px);
}

.contact-feature-card--wide {
  min-height: 410px;
}

.contact-feature-card::before {
  display: none;
}

.contact-feature-card h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.82rem);
  line-height: 1.16;
}

.contact-feature-card p {
  line-height: 1.86;
}

.contact-feature-card li {
  border-radius: 20px;
  background: rgba(8, 22, 48, 0.28);
}

.qr-grid figure {
  min-height: 270px;
}

@media (max-width: 1180px) {
  .about-hero,
  .products-hero,
  .about-content-inner,
  .product-content-inner,
  .contact-layout {
    width: min(960px, calc(100% - 64px));
  }

  .about-hero,
  .products-hero-copy,
  .product-panel-hero,
  .product-section--visual,
  .contact-partner-grid,
  .contact-bottom-grid {
    grid-template-columns: 1fr;
  }

  .products-hero-copy {
    grid-template-areas:
      "copy"
      "system"
      "metrics";
  }

  .products-hero-system {
    justify-self: stretch;
    max-width: none;
  }

  .product-section--visual .product-section-head {
    position: static;
  }
}

@media (max-width: 860px) {
  .about-hero,
  .products-hero,
  .about-content-inner,
  .product-content-inner,
  .contact-layout {
    width: calc(100% - 36px);
  }

  .about-hero,
  .products-hero,
  .contact-layout {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 72px;
  }

  .about-hero__copy h1,
  .products-hero h1,
  .contact-layout > h1 {
    font-size: 2.58rem;
  }

  .about-visual--placeholder {
    min-height: 340px;
    border-radius: 32px;
  }

  .about-placeholder-card {
    width: calc(100% - 48px);
    padding: 26px;
  }

  .about-content-shell,
  .product-content-shell {
    padding-top: 78px;
    padding-bottom: 104px;
  }

  .products-metric-strip,
  .feature-grid--four,
  .feature-grid--five,
  .feature-grid--centers,
  .capability-list,
  .department-grid,
  .product-intro-media,
  .qr-grid,
  .contact-link-row {
    grid-template-columns: 1fr;
  }

  .products-hero-text::before {
    display: none;
  }

  .product-tabs,
  .product-tabs.is-docked {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    border-radius: 28px;
  }

  .product-tabs.is-docked.product-scroll-reveal {
    transform: none;
  }

  .product-detail-grid {
    padding-bottom: 60px;
  }

  .product-panel-hero {
    padding: 26px;
    border-radius: 30px;
  }

  .product-media-board,
  .product-media-board img {
    min-height: 300px;
  }
}

/* Inner-page micro QA: shorten about transition and keep docked tabs off content. */

.about-content-shell {
  margin-top: 0;
  padding-top: clamp(102px, 10vh, 140px);
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0) 0%, rgba(3, 9, 20, 0) 118px, rgba(5, 13, 27, 0.44) 250px, rgba(5, 12, 24, 0.78) 100%),
    radial-gradient(ellipse at 24% 0%, rgba(59, 164, 255, 0.12), transparent 40%),
    radial-gradient(ellipse at 84% 6%, rgba(255, 159, 47, 0.06), transparent 34%);
  background-color: transparent;
  box-shadow: none;
}

.about-content-shell::before {
  inset: 94px 0 -18px;
  opacity: 0.12;
}

.about-content-shell::after {
  inset: 94px 0 auto;
  height: 360px;
  opacity: 0.2;
  background:
    radial-gradient(ellipse at calc(34% + var(--about-glow-shift, 0px)) 0%, rgba(82, 222, 255, 0.16), transparent 34%),
    radial-gradient(ellipse at calc(78% - var(--about-glow-shift, 0px)) 4%, rgba(255, 159, 47, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(73, 156, 255, 0.06), transparent 58%);
}

.product-detail .product-panel-hero + .product-section {
  margin-top: clamp(260px, 20vw, 340px);
}

.product-tabs.is-docked {
  bottom: clamp(14px, 2vh, 20px);
  width: min(760px, calc(100vw - 132px));
}

.product-tabs.is-docked button {
  min-height: 46px;
  padding: 6px 10px;
}

.product-tabs.is-docked button strong {
  font-size: 0.84rem;
}

@media (max-width: 860px) {
  .about-content-shell {
    margin-top: 0;
    padding-top: 78px;
  }

  .product-detail .product-panel-hero + .product-section {
    margin-top: 72px;
  }
}

/* About page: editorial brand layer, kept separate from the home scene. */

.about-layout {
  isolation: isolate;
  overflow: hidden;
}

.about-layout::before {
  opacity: 0.18;
  filter: blur(34px);
}

.about-hero {
  position: relative;
  width: min(1220px, calc(100% - 112px));
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.9fr);
  gap: clamp(64px, 7vw, 112px);
  align-items: center;
  padding-top: calc(var(--nav-height) + clamp(40px, 6vh, 72px));
  padding-bottom: clamp(58px, 7vh, 92px);
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(26px, 4vh, 46px);
  height: 1px;
  opacity: 0.58;
  background: linear-gradient(90deg, transparent, rgba(90, 190, 255, 0.42), rgba(255, 159, 47, 0.18), transparent);
}

.about-hero__copy {
  position: relative;
  max-width: 680px;
  z-index: 2;
}

.about-hero__copy::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 10px;
  width: 3px;
  height: clamp(74px, 11vh, 126px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(60, 184, 255, 0.95), rgba(126, 94, 255, 0.78), rgba(255, 159, 47, 0.72));
  box-shadow: 0 0 24px rgba(60, 184, 255, 0.28);
}

.about-hero__copy h1 {
  max-width: 680px;
  font-size: clamp(3.08rem, 4.9vw, 5.18rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.about-hero__copy .page-lead {
  max-width: 620px;
  margin-top: clamp(22px, 3vh, 34px);
  color: rgba(233, 244, 255, 0.82);
  line-height: 1.78;
}

.about-hero__signal {
  margin-top: clamp(28px, 4vh, 46px);
  gap: 12px;
}

.about-hero__signal span {
  min-height: 40px;
  padding: 9px 17px;
  border: 1px solid rgba(162, 217, 255, 0.22);
  border-radius: 999px;
  color: rgba(234, 246, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.02)),
    rgba(7, 19, 38, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-visual--placeholder {
  min-height: clamp(430px, 52vh, 568px);
  border-radius: 44px;
  border-color: rgba(174, 222, 255, 0.24);
  display: block;
  background:
    radial-gradient(ellipse at 20% 22%, rgba(64, 181, 255, 0.2), transparent 36%),
    radial-gradient(ellipse at 92% 86%, rgba(255, 159, 47, 0.12), transparent 34%),
    linear-gradient(115deg, rgba(8, 29, 58, 0.54), rgba(7, 15, 30, 0.18) 48%, rgba(18, 35, 66, 0.5)),
    rgba(6, 17, 34, 0.34);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.28),
    0 0 70px rgba(52, 173, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.about-visual--placeholder::before {
  inset: 0;
  z-index: 0;
  opacity: 0.92;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 1px),
    linear-gradient(135deg, transparent 0 17%, rgba(91, 174, 255, 0.1) 17.2% 18%, transparent 18.2% 100%),
    radial-gradient(circle at 48% 48%, rgba(92, 186, 255, 0.28), transparent 9%),
    radial-gradient(ellipse at 56% 58%, rgba(54, 120, 255, 0.16), transparent 34%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
}

.about-visual--placeholder::after {
  content: "";
  display: block;
  position: absolute;
  inset: 9%;
  z-index: 1;
  border: 1px solid rgba(202, 232, 255, 0.13);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 34%),
    radial-gradient(ellipse at 72% 34%, rgba(86, 171, 255, 0.13), transparent 34%);
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}

.about-placeholder-card {
  position: absolute;
  left: clamp(24px, 4vw, 42px);
  bottom: clamp(24px, 4vw, 42px);
  z-index: 3;
  width: min(380px, calc(100% - 72px));
  min-height: 0;
  padding: 26px 28px;
  border-radius: 28px;
  border: 1px solid rgba(174, 222, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.028)),
    rgba(5, 14, 28, 0.52);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.about-placeholder-card strong {
  font-size: clamp(1.32rem, 1.72vw, 1.72rem);
  line-height: 1.22;
}

.about-placeholder-card small {
  max-width: 300px;
  line-height: 1.66;
}

.about-placeholder-node {
  display: none;
}

.about-content-shell {
  margin-top: -1px;
  padding-top: clamp(96px, 10vh, 138px);
  padding-bottom: clamp(160px, 16vh, 218px);
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0) 0%, rgba(5, 12, 24, 0.2) 96px, rgba(5, 12, 24, 0.56) 220px, rgba(4, 10, 20, 0.7) 100%),
    radial-gradient(ellipse at 20% 0%, rgba(59, 164, 255, 0.13), transparent 38%),
    radial-gradient(ellipse at 82% 4%, rgba(255, 159, 47, 0.07), transparent 34%);
  background-color: rgba(4, 10, 20, 0.5);
  backdrop-filter: blur(8px);
}

.about-content-shell::before {
  inset: 40px 0 -24px;
  opacity: 0.1;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.about-content-shell::after {
  inset: 20px 0 auto;
  height: 420px;
  opacity: 0.24;
  background:
    radial-gradient(ellipse at calc(28% + var(--about-glow-shift, 0px)) 0%, rgba(82, 222, 255, 0.16), transparent 32%),
    radial-gradient(ellipse at calc(78% - var(--about-glow-shift, 0px)) 2%, rgba(255, 159, 47, 0.1), transparent 25%),
    linear-gradient(180deg, rgba(122, 197, 255, 0.07), transparent 68%);
}

.about-content-inner {
  width: min(1180px, calc(100% - 112px));
  gap: clamp(104px, 10vw, 148px);
}

.about-brand {
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.58fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: start;
}

.about-panel--intro {
  position: relative;
  max-width: none;
  padding: 4px 0 8px clamp(24px, 3vw, 38px);
  border: 0;
  border-left: 1px solid rgba(116, 205, 255, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-panel--intro::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 4px;
  width: 3px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(180deg, #48c5ff, #8068ff, #ff9f2f);
  box-shadow: 0 0 26px rgba(72, 197, 255, 0.26);
}

.about-panel--intro h2 {
  max-width: 780px;
  font-size: clamp(2.42rem, 3.5vw, 3.88rem);
  line-height: 1.12;
}

.about-panel p {
  max-width: 800px;
  margin-top: 24px;
  line-height: 1.84;
}

.about-principles {
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 8px;
}

.about-principles article {
  min-height: 0;
  padding: 24px 26px;
  border-radius: 26px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.018)),
    rgba(6, 18, 36, 0.34);
  box-shadow:
    0 20px 68px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.about-principles article::after {
  inset: auto -18% -40% 48%;
  opacity: 0.16;
}

.about-principles span {
  margin-bottom: 14px;
}

.about-principles strong {
  font-size: clamp(1.12rem, 1.45vw, 1.46rem);
  line-height: 1.52;
}

.founder-section {
  grid-template-columns: minmax(0, 0.66fr) minmax(300px, 0.34fr);
  gap: clamp(36px, 4.6vw, 62px);
  align-items: stretch;
}

.founder-card {
  position: relative;
  padding: clamp(46px, 5vw, 72px);
  border-radius: 40px;
  border-color: rgba(168, 217, 255, 0.2);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(12, 31, 60, 0.44), rgba(5, 14, 28, 0.38));
}

.founder-card::before {
  content: "";
  position: absolute;
  left: clamp(24px, 3vw, 36px);
  top: clamp(28px, 3.6vw, 42px);
  bottom: clamp(28px, 3.6vw, 42px);
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(74, 197, 255, 0.84), rgba(255, 159, 47, 0.46), transparent);
}

.founder-card .section-label,
.founder-card blockquote {
  position: relative;
  z-index: 1;
}

.founder-card blockquote {
  max-width: 790px;
  padding-left: clamp(18px, 2vw, 28px);
}

.founder-card blockquote p {
  margin-top: 20px;
  color: rgba(234, 244, 255, 0.86);
  line-height: 1.9;
}

.founder-photo {
  min-height: 520px;
  border-radius: 40px;
  border-color: rgba(166, 213, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)),
    radial-gradient(ellipse at 52% 24%, rgba(74, 185, 255, 0.16), transparent 34%),
    rgba(6, 17, 34, 0.42);
}

.founder-photo::before {
  inset: 10%;
  border-radius: 30px;
  border-color: rgba(202, 232, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 1px),
    radial-gradient(ellipse at 50% 22%, rgba(98, 184, 255, 0.18), transparent 30%);
  background-size: 60px 60px, 60px 60px, auto;
}

.founder-photo span {
  padding: 12px 16px;
  border: 1px solid rgba(176, 224, 255, 0.14);
  border-radius: 999px;
  background: rgba(4, 13, 27, 0.38);
  backdrop-filter: blur(14px);
}

.promise-section {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.promise-section > div:first-child {
  position: sticky;
  top: calc(var(--nav-height) + 52px);
  max-width: 360px;
}

.promise-section h2 {
  font-size: clamp(2.08rem, 3vw, 3.32rem);
}

.promise-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.promise-card {
  min-height: 0;
  padding: 28px 30px 30px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.016)),
    rgba(5, 17, 34, 0.36);
}

.promise-card::after {
  inset: auto -12% -55% 48%;
  opacity: 0.16;
}

.promise-card > span {
  grid-row: span 2;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  padding: 0;
  color: rgba(255, 215, 160, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 159, 47, 0.24), rgba(90, 176, 255, 0.12)),
    rgba(7, 20, 39, 0.42);
}

.promise-card h3 {
  margin-top: 2px;
  font-size: clamp(1.1rem, 1.35vw, 1.42rem);
}

.promise-card p {
  grid-column: 2;
  margin-top: 12px;
  line-height: 1.76;
}

.global-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 1fr);
  gap: clamp(38px, 5vw, 68px);
}

.global-copy {
  padding: clamp(42px, 4.5vw, 62px);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.018)),
    rgba(6, 18, 36, 0.36);
}

.global-map {
  min-height: 520px;
  border-radius: 42px;
  background:
    radial-gradient(ellipse at 34% 38%, rgba(64, 196, 255, 0.16), transparent 30%),
    radial-gradient(ellipse at 72% 50%, rgba(255, 159, 47, 0.1), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.016)),
    rgba(5, 16, 32, 0.4);
}

.global-map::before {
  inset: 12% 10%;
  border-radius: 42% 58% 54% 46% / 48% 44% 56% 52%;
  opacity: 0.7;
}

.global-map::after {
  inset: 24% 14%;
  border-radius: 52% 48% 44% 56% / 50% 46% 54% 50%;
  opacity: 0.6;
}

.about-scroll-reveal {
  transform: translate3d(0, 26px, 0) scale(0.992);
  filter: blur(5px) saturate(0.96);
  transition-duration: 700ms;
}

@media (max-width: 1180px) {
  .about-hero,
  .about-brand,
  .founder-section,
  .promise-section,
  .global-section {
    grid-template-columns: 1fr;
  }

  .about-hero {
    width: min(960px, calc(100% - 64px));
    min-height: auto;
    gap: 48px;
  }

  .about-content-inner {
    width: min(960px, calc(100% - 64px));
  }

  .promise-section > div:first-child {
    position: relative;
    top: auto;
    max-width: 720px;
  }

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

@media (max-width: 860px) {
  .about-hero {
    width: calc(100% - 36px);
    padding-top: 112px;
    padding-bottom: 58px;
    gap: 34px;
  }

  .about-hero::after {
    bottom: 24px;
  }

  .about-hero__copy::before {
    left: -14px;
    height: 84px;
  }

  .about-hero__copy h1 {
    font-size: clamp(2.44rem, 13vw, 3.08rem);
  }

  .about-hero__copy .page-lead {
    margin-top: 20px;
    line-height: 1.72;
  }

  .about-hero__signal {
    margin-top: 26px;
  }

  .about-visual--placeholder {
    min-height: 322px;
    border-radius: 32px;
  }

  .about-visual--placeholder::after {
    inset: 8%;
    border-radius: 26px;
    transform: none;
  }

  .about-placeholder-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .about-content-shell {
    padding-top: 70px;
    padding-bottom: 96px;
  }

  .about-content-inner {
    width: calc(100% - 36px);
    gap: 70px;
  }

  .about-brand,
  .about-principles,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .about-panel--intro {
    padding-left: 22px;
  }

  .about-panel--intro h2,
  .promise-section h2,
  .global-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.46rem);
  }

  .about-panel p,
  .founder-card blockquote p,
  .global-copy p,
  .global-copy li,
  .promise-card p {
    line-height: 1.74;
  }

  .about-principles article,
  .founder-card,
  .global-copy,
  .promise-card {
    border-radius: 26px;
  }

  .founder-card,
  .global-copy {
    padding: 28px;
  }

  .founder-card::before {
    left: 20px;
  }

  .founder-card blockquote {
    padding-left: 16px;
  }

  .founder-photo,
  .global-map {
    min-height: 312px;
    border-radius: 30px;
  }

  .promise-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .promise-card > span {
    grid-row: auto;
    width: 46px;
  }

  .promise-card p {
    grid-column: auto;
  }
}

/* Product page final pass: stable fixed controls and lighter editorial content. */

html:not(.is-ready) .app-shell {
  will-change: opacity, transform, filter;
}

html.is-ready .app-shell,
html[data-view="about"] .app-shell,
html[data-view="products"] .app-shell,
html[data-view="contact"] .app-shell {
  transform: none;
  filter: none;
  will-change: auto;
}

html[data-view="products"] .site-nav {
  transform: translate3d(0, 0, 0);
}

.product-content-shell {
  padding-top: clamp(104px, 10vh, 136px);
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0) 0%, rgba(5, 12, 24, 0.2) 90px, rgba(5, 12, 24, 0.58) 228px, rgba(4, 10, 20, 0.72) 100%),
    radial-gradient(ellipse at 20% 0%, rgba(59, 164, 255, 0.13), transparent 38%),
    radial-gradient(ellipse at 82% 5%, rgba(255, 159, 47, 0.075), transparent 34%);
  background-color: rgba(4, 10, 20, 0.54);
}

.product-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: rgba(181, 220, 255, 0.18);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-tabs button {
  overflow: hidden;
  align-items: center;
}

.product-tabs.is-docked {
  position: fixed;
  left: 50%;
  top: auto;
  right: auto;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 150;
  width: min(740px, calc(100vw - 112px));
  min-height: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border-color: rgba(203, 232, 255, 0.26);
  opacity: 1;
  filter: none;
  transform: translateX(-50%);
  pointer-events: auto;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.026)),
    radial-gradient(ellipse at 20% 0%, color-mix(in srgb, var(--product-active-accent, #2f8cff) 22%, transparent), transparent 50%),
    rgba(4, 13, 28, 0.76);
  box-shadow:
    0 24px 86px rgba(0, 0, 0, 0.44),
    0 0 58px color-mix(in srgb, var(--product-active-accent, #2f8cff) 14%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.product-tabs.is-docked.product-scroll-reveal,
.product-tabs.is-docked.product-scroll-reveal.is-inview {
  opacity: 1;
  filter: none;
  transform: translateX(-50%);
}

.product-tabs.is-docked button {
  min-height: 50px;
  grid-template-columns: auto minmax(0, auto);
  grid-template-areas: "index name";
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: transparent;
}

.product-tabs.is-docked button span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 0.72rem;
}

.product-tabs.is-docked button strong {
  max-width: 150px;
  font-size: 0.84rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-tabs.is-docked button small {
  display: none;
}

.product-tabs.is-docked button.is-current {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 28%, rgba(255, 255, 255, 0.045)), rgba(255, 255, 255, 0.026)),
    rgba(8, 23, 46, 0.72);
  box-shadow:
    0 12px 32px color-mix(in srgb, var(--accent) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.products-layout.is-product-tabs-docked .product-content-shell {
  padding-bottom: clamp(180px, 17vh, 248px);
}

.product-detail-grid {
  margin-top: clamp(58px, 6vh, 84px);
}

.product-detail {
  scroll-margin-top: calc(var(--nav-height) + 46px);
}

.product-detail .product-panel-hero + .product-section {
  margin-top: clamp(110px, 11vw, 168px);
}

.product-section {
  margin-top: clamp(92px, 8vw, 132px);
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.product-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 1px;
  opacity: 0.42;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 38%, transparent), rgba(255, 159, 47, 0.14), transparent);
}

.product-section:first-of-type::before,
.product-section--visual::before {
  display: none;
}

.product-section-head {
  position: relative;
  max-width: 860px;
  margin-bottom: clamp(28px, 3.6vw, 44px);
  padding-left: 22px;
}

.product-section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--secondary), rgba(255, 159, 47, 0.78));
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 24%, transparent);
}

.product-section-head--center {
  max-width: 860px;
  margin-inline: auto;
  padding-left: 0;
  text-align: center;
}

.product-section-head--center::before {
  left: 50%;
  top: -18px;
  width: 70px;
  height: 3px;
  transform: translateX(-50%);
}

.product-panel-hero {
  border-color: rgba(191, 226, 255, 0.18);
  box-shadow:
    0 30px 110px rgba(0, 0, 0, 0.28),
    0 0 80px color-mix(in srgb, var(--accent) 10%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-info-card,
.department-card,
.market-mechanism {
  content-visibility: visible;
  contain-intrinsic-size: auto;
  border-color: rgba(165, 213, 255, 0.17);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.018)),
    radial-gradient(ellipse at 18% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 44%),
    rgba(7, 19, 39, 0.38);
  box-shadow:
    0 20px 68px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-info-card::before,
.department-card::before,
.market-mechanism::before {
  height: 1px;
  opacity: 0.72;
}

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

.department-card {
  min-height: 150px;
}

.comparison-table {
  overflow-x: auto;
  border-color: rgba(170, 214, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.014)),
    rgba(5, 16, 34, 0.48);
  box-shadow:
    0 22px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.comparison-row--head {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 24%, rgba(255, 255, 255, 0.04)), rgba(255, 255, 255, 0.026));
}

.comparison-row span:last-child {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), rgba(124, 92, 255, 0.06));
}

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

@media (max-width: 860px) {
  .product-tabs,
  .product-tabs.is-docked {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    transform: none;
    border-radius: 28px;
  }

  .product-tabs.is-docked.product-scroll-reveal,
  .product-tabs.is-docked.product-scroll-reveal.is-inview {
    transform: none;
  }

  .product-tabs.is-docked button {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "index name"
      "index desc";
    justify-content: stretch;
    min-height: 66px;
    border-radius: 22px;
  }

  .product-tabs.is-docked button small {
    display: block;
  }

  .product-tabs.is-docked button strong {
    max-width: none;
  }

  .product-section {
    margin-top: 74px;
  }

  .product-detail .product-panel-hero + .product-section {
    margin-top: 72px;
  }

  .product-section-head {
    padding-left: 18px;
  }

  .product-section-head--center {
    padding-left: 0;
  }

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

/* Contact page conversion layout */
.contact-layout {
  width: min(1180px, calc(100% - 112px));
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + clamp(58px, 7vh, 86px));
  padding-bottom: clamp(104px, 11vh, 156px);
}

.contact-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
  min-height: clamp(560px, calc(100svh - var(--nav-height) - 116px), 720px);
}

.contact-hero-copy {
  max-width: 610px;
}

.contact-hero-copy > h1 {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(3.4rem, 5vw, 5.85rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: #f5fbff;
  text-shadow: 0 22px 80px rgba(26, 161, 255, 0.16);
}

.contact-hero-copy > .page-lead {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(229, 244, 255, 0.78);
  font-size: clamp(1.02rem, 1.24vw, 1.16rem);
  line-height: 1.92;
}

.contact-center-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
  align-items: stretch;
  gap: 24px;
  min-height: 430px;
  padding: clamp(24px, 2.8vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(164, 213, 255, 0.19);
  border-radius: 38px;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(66, 179, 255, 0.16), transparent 42%),
    radial-gradient(ellipse at 82% 0%, rgba(255, 158, 47, 0.11), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.096), rgba(255, 255, 255, 0.018)),
    rgba(5, 17, 38, 0.44);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.34),
    0 0 86px rgba(47, 140, 255, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.contact-center-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.075), transparent 30%),
    radial-gradient(ellipse at 50% 100%, rgba(47, 140, 255, 0.11), transparent 50%);
  opacity: 0.74;
  pointer-events: none;
}

.contact-center-card .contact-info {
  align-content: center;
  gap: 14px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(164, 213, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(64, 165, 255, 0.1), rgba(255, 255, 255, 0.016)),
    rgba(5, 18, 40, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.056),
    0 18px 54px rgba(0, 0, 0, 0.14);
}

.contact-center-card .contact-info p {
  min-height: 58px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(160, 210, 255, 0.16);
  border-radius: 999px;
  color: rgba(238, 248, 255, 0.84);
  background: rgba(6, 20, 44, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.064);
  line-height: 1.48;
}

.contact-center-card .contact-info p:first-child {
  color: rgba(138, 211, 255, 0.92);
  font-weight: 820;
}

.contact-center-card .contact-info p:nth-child(3) {
  color: #f7fbff;
  font-size: 1.24rem;
  font-weight: 860;
}

.contact-center-card .contact-link-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.contact-center-card .contact-link-row span {
  min-height: 50px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.014)),
    rgba(7, 22, 48, 0.36);
}

.contact-center-card .qr-grid {
  grid-template-columns: 1fr;
  align-content: stretch;
  gap: 12px;
}

.contact-center-card .qr-grid figure {
  min-height: 174px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  column-gap: 18px;
  padding: 18px;
  border-radius: 28px;
  border-color: rgba(164, 213, 255, 0.16);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 140, 255, 0.12), transparent 48%),
    rgba(6, 18, 39, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 52px rgba(0, 0, 0, 0.18);
}

.contact-center-card .qr-grid canvas {
  width: clamp(112px, 8.6vw, 128px);
  height: clamp(112px, 8.6vw, 128px);
  border-radius: 20px;
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contact-center-card .qr-grid figcaption {
  color: rgba(240, 248, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.45;
}

.contact-partner-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 30px;
  margin-top: clamp(38px, 4.4vw, 60px);
}

.contact-feature-card {
  min-height: 328px;
  padding: clamp(30px, 3.2vw, 44px);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.016)),
    rgba(7, 20, 42, 0.34);
  box-shadow:
    0 26px 92px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.contact-feature-card--wide {
  min-height: 328px;
}

.contact-feature-card::before {
  display: none !important;
}

.contact-feature-card h2 {
  margin-top: 12px;
  font-size: clamp(1.95rem, 2.52vw, 2.72rem);
  line-height: 1.14;
}

.contact-feature-card p {
  margin-top: 20px;
  color: rgba(226, 240, 255, 0.75);
  line-height: 1.84;
}

.contact-feature-card h3 {
  margin-top: 26px;
}

.partner-ability-cloud {
  gap: 10px;
  margin-top: 18px;
}

.partner-ability-cloud span,
.contact-feature-card li {
  border-color: rgba(164, 213, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(8, 22, 48, 0.26);
}

@media (max-width: 1180px) {
  .contact-hero-stage,
  .contact-center-card,
  .contact-partner-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-stage {
    min-height: auto;
    gap: 30px;
  }

  .contact-center-card {
    min-height: auto;
  }

  .contact-center-card .qr-grid {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .contact-layout {
    width: calc(100% - 36px);
    padding-top: 112px;
    padding-bottom: 76px;
  }

  .contact-hero-copy > h1 {
    font-size: 2.68rem;
    line-height: 1.04;
  }

  .contact-hero-copy > .page-lead {
    margin-top: 20px;
    line-height: 1.78;
  }

  .contact-center-card {
    gap: 22px;
    padding: 22px;
    border-radius: 30px;
  }

  .contact-center-card .contact-info {
    padding: 16px;
    border-radius: 24px;
  }

  .contact-center-card .contact-info p {
    min-height: 56px;
    border-radius: 22px;
  }

  .contact-center-card .contact-link-row,
  .contact-center-card .qr-grid {
    grid-template-columns: 1fr;
  }

  .contact-center-card .qr-grid figure {
    min-height: 238px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    border-radius: 26px;
  }

  .contact-center-card .qr-grid canvas {
    width: 148px;
    height: 148px;
  }

  .contact-partner-grid {
    margin-top: 28px;
  }

  .contact-feature-card,
  .contact-feature-card--wide {
    min-height: auto;
    padding: 26px;
    border-radius: 30px;
  }

  .contact-feature-card h2 {
    font-size: 2rem;
  }

  .partner-ability-cloud {
    display: grid;
  }

  .partner-ability-cloud span {
    width: 100%;
    justify-content: center;
  }
}

/* Contact page one-screen redesign */
html[data-view="contact"] {
  overflow: hidden;
}

html[data-view="contact"] body {
  overflow: hidden;
}

.contact-layout--one-screen {
  width: min(1260px, calc(100% - 88px));
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + clamp(34px, 4.6vh, 58px));
  padding-bottom: clamp(28px, 4vh, 46px);
  display: grid;
  align-items: center;
}

.contact-screen {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.16fr) minmax(280px, 0.84fr);
  grid-template-rows: minmax(250px, 0.92fr) minmax(250px, 1fr);
  grid-template-areas:
    "intro partner alliance"
    "intro partner qr";
  gap: clamp(14px, 1.45vw, 20px);
  height: min(760px, calc(100svh - var(--nav-height) - 84px));
  min-height: 650px;
}

.contact-screen::before {
  content: "";
  position: absolute;
  inset: -4% -3%;
  z-index: -1;
  border-radius: 48px;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(65, 183, 255, 0.13), transparent 36%),
    radial-gradient(ellipse at 84% 22%, rgba(255, 159, 47, 0.105), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 62%);
  opacity: 0.9;
  pointer-events: none;
}

.contact-screen__intro,
.contact-feature-card--partner,
.contact-feature-card--alliance,
.contact-qr-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(166, 216, 255, 0.17);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.017)),
    rgba(6, 18, 38, 0.38);
  box-shadow:
    0 26px 92px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.085);
}

.contact-screen__intro {
  grid-area: intro;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: clamp(28px, 3.1vw, 42px);
}

.contact-screen__intro::after,
.contact-feature-card--partner::after,
.contact-qr-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -22% 22%;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(56, 180, 255, 0.16), transparent 65%);
  opacity: 0.72;
  pointer-events: none;
}

.contact-screen__intro h1 {
  margin: 14px 0 0;
  color: #f5fbff;
  font-size: clamp(3rem, 4.8vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 20px 80px rgba(65, 183, 255, 0.15);
}

.contact-screen__intro .page-lead {
  max-width: 360px;
  margin-top: 22px;
  color: rgba(229, 244, 255, 0.76);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.78;
}

.contact-info--compact {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(164, 213, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(64, 165, 255, 0.105), rgba(255, 255, 255, 0.014)),
    rgba(5, 18, 40, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.056);
}

.contact-info--compact p {
  min-height: 46px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(160, 210, 255, 0.14);
  border-radius: 999px;
  color: rgba(238, 248, 255, 0.84);
  background: rgba(6, 20, 44, 0.33);
  line-height: 1.38;
}

.contact-info--compact p:first-child {
  color: rgba(138, 211, 255, 0.92);
  font-weight: 820;
}

.contact-info--compact p:nth-child(3) {
  color: #f8fcff;
  font-size: 1.18rem;
  font-weight: 860;
}

.contact-info--compact .contact-link-row {
  grid-template-columns: 1fr;
  gap: 8px;
}

.contact-info--compact .contact-link-row span {
  min-height: 38px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(7, 22, 48, 0.3);
  font-size: 0.92rem;
}

.contact-feature-card--partner {
  grid-area: partner;
  min-height: 0;
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  align-content: start;
}

.contact-feature-card--alliance {
  grid-area: alliance;
  min-height: 0;
  padding: clamp(22px, 2vw, 28px);
  display: grid;
  align-content: start;
}

.contact-feature-card--partner::before,
.contact-feature-card--alliance::before {
  display: none !important;
}

.contact-feature-card--partner h2,
.contact-feature-card--alliance h2 {
  margin-top: 10px;
  color: #f6fbff;
  line-height: 1.12;
  letter-spacing: 0;
}

.contact-feature-card--partner h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.contact-feature-card--alliance h2 {
  font-size: clamp(1.52rem, 2.05vw, 2rem);
}

.contact-feature-card--partner p,
.contact-feature-card--alliance p {
  margin-top: 12px;
  color: rgba(228, 241, 255, 0.77);
  line-height: 1.48;
  font-size: clamp(0.86rem, 0.94vw, 0.96rem);
}

.contact-feature-card--partner h3,
.contact-feature-card--alliance h3 {
  margin-top: 13px;
  color: rgba(135, 213, 255, 0.92);
  font-size: 0.9rem;
}

.contact-feature-card--partner .partner-ability-cloud {
  gap: 8px;
  margin-top: 14px;
}

.contact-feature-card--partner .partner-ability-cloud span {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  line-height: 1.2;
}

.contact-feature-card--alliance ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.contact-feature-card--alliance li {
  padding: 9px 11px;
  border-radius: 14px;
  color: rgba(235, 246, 255, 0.84);
  background: rgba(8, 22, 48, 0.28);
  border: 1px solid rgba(164, 213, 255, 0.13);
  line-height: 1.34;
  font-size: 0.82rem;
}

.contact-qr-panel {
  grid-area: qr;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
}

.contact-qr-panel figure {
  min-height: 0;
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(164, 213, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(56, 180, 255, 0.11), transparent 45%),
    rgba(6, 18, 39, 0.28);
}

.contact-qr-panel canvas {
  width: clamp(96px, 7.3vw, 116px);
  height: clamp(96px, 7.3vw, 116px);
  border-radius: 18px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contact-qr-panel figcaption {
  color: rgba(240, 248, 255, 0.84);
  font-weight: 760;
  line-height: 1.36;
}

@media (max-width: 1180px) {
  html[data-view="contact"],
  html[data-view="contact"] body {
    overflow-y: auto;
  }

  .contact-layout--one-screen {
    width: min(960px, calc(100% - 64px));
    min-height: 100svh;
    padding-top: 128px;
    padding-bottom: 88px;
  }

  .contact-screen {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "intro"
      "partner"
      "alliance"
      "qr";
  }

  .contact-info--compact .contact-link-row,
  .contact-qr-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .contact-layout--one-screen {
    width: calc(100% - 36px);
    padding-top: 112px;
    padding-bottom: 78px;
  }

  .contact-screen {
    gap: 18px;
  }

  .contact-screen__intro,
  .contact-feature-card--partner,
  .contact-feature-card--alliance,
  .contact-qr-panel {
    border-radius: 30px;
  }

  .contact-screen__intro,
  .contact-feature-card--partner,
  .contact-feature-card--alliance {
    padding: 24px;
  }

  .contact-screen__intro h1 {
    font-size: 2.72rem;
    line-height: 1.04;
  }

  .contact-info--compact .contact-link-row,
  .contact-qr-panel {
    grid-template-columns: 1fr;
  }

  .contact-qr-panel figure {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: 220px;
  }

  .contact-qr-panel canvas {
    width: 148px;
    height: 148px;
  }
}

/* Contact page poster redesign v5: asymmetric one-screen layout */
html[data-view="contact"],
html[data-view="contact"] body {
  overflow: hidden;
}

.contact-layout--poster {
  width: min(1420px, calc(100% - 96px));
  max-width: none;
  height: 100svh;
  min-height: 0;
  margin-inline: auto;
  padding-top: calc(var(--nav-height) + clamp(24px, 3.4vh, 42px));
  padding-bottom: clamp(24px, 3.4vh, 38px);
  box-sizing: border-box;
}

.contact-poster {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(560px, 1.14fr) minmax(286px, 0.54fr);
  grid-template-rows: minmax(218px, 0.3fr) minmax(218px, 0.3fr) minmax(270px, 0.4fr);
  grid-template-areas:
    "hero partner qr"
    "hero partner qr"
    "line alliance qr";
  gap: clamp(20px, 1.7vw, 26px);
  width: 100%;
  height: min(820px, calc(100svh - var(--nav-height) - 52px));
  min-height: 668px;
  isolation: isolate;
}

.contact-poster::before {
  content: "";
  position: absolute;
  inset: 8% -3% 6%;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(91, 197, 255, 0.12) 28%, rgba(255, 159, 47, 0.09) 58%, transparent),
    linear-gradient(180deg, transparent, rgba(6, 18, 38, 0.24) 46%, transparent 72%);
  filter: blur(8px);
  opacity: 0.8;
}

.contact-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(153, 205, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 205, 255, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at 50% 45%, black 0%, transparent 70%);
  opacity: 0.32;
}

.contact-poster__hero,
.contact-poster__line,
.contact-poster__partner,
.contact-poster__alliance,
.contact-poster__qr {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153, 205, 255, 0.18);
  border-radius: 42px;
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 34px 98px rgba(1, 10, 27, 0.36);
}

.contact-poster__hero::after,
.contact-poster__line::after,
.contact-poster__partner::after,
.contact-poster__alliance::after,
.contact-poster__qr::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.1), transparent 19%, transparent 76%, rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, transparent, rgba(3, 12, 29, 0.2));
  opacity: 0.52;
}

.contact-poster__hero {
  grid-area: hero;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 4.4vw, 58px);
  background:
    radial-gradient(ellipse at 10% 10%, rgba(72, 196, 255, 0.2), transparent 42%),
    radial-gradient(ellipse at 86% 90%, rgba(255, 159, 47, 0.08), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.016)),
    rgba(5, 18, 38, 0.42);
}

.contact-poster__hero .page-kicker,
.contact-poster__partner .section-label,
.contact-poster__alliance .section-label {
  position: relative;
  z-index: 1;
}

.contact-poster__hero h1 {
  position: relative;
  z-index: 1;
  width: min-content;
  max-width: 100%;
  margin: clamp(44px, 7vh, 78px) 0 0;
  color: rgba(248, 252, 255, 0.98);
  font-size: clamp(4.8rem, 5.82vw, 6.72rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 22px 58px rgba(0, 12, 34, 0.42);
  white-space: nowrap;
}

.contact-poster__hero .page-lead {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin-top: clamp(28px, 4.5vh, 46px);
  color: rgba(229, 243, 255, 0.88);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.76;
}

.contact-poster__line {
  grid-area: line;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 2.45vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.014)),
    rgba(5, 18, 38, 0.44);
}

.contact-poster__line > span,
.contact-poster__line > strong,
.contact-poster__line > p,
.contact-poster__links {
  position: relative;
  z-index: 1;
}

.contact-poster__line > span {
  color: rgba(137, 212, 255, 0.92);
  font-weight: 760;
}

.contact-poster__line > strong {
  color: rgba(248, 252, 255, 0.98);
  font-size: clamp(1.55rem, 1.72vw, 2rem);
  line-height: 1;
}

.contact-poster__line > p {
  margin: 0;
  color: rgba(226, 240, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.contact-poster__links span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border: 1px solid rgba(153, 205, 255, 0.18);
  border-radius: 999px;
  color: rgba(237, 247, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 760;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.012)),
    rgba(7, 23, 52, 0.38);
}

.contact-poster__partner {
  grid-area: partner;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3vw, 44px);
  background:
    radial-gradient(ellipse at 18% 4%, rgba(72, 196, 255, 0.16), transparent 38%),
    radial-gradient(ellipse at 88% 92%, rgba(255, 159, 47, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.014)),
    rgba(5, 18, 38, 0.43);
}

.contact-poster__alliance {
  grid-area: alliance;
  display: grid;
  grid-template-columns: minmax(210px, 0.46fr) minmax(0, 1fr);
  grid-template-areas:
    "head req"
    "title req"
    "copy req";
  column-gap: clamp(22px, 2.4vw, 34px);
  align-items: center;
  padding: clamp(26px, 2.7vw, 38px);
  background:
    radial-gradient(ellipse at 84% 12%, rgba(124, 92, 255, 0.15), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.012)),
    rgba(5, 18, 38, 0.42);
}

.contact-poster__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-poster__head > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(120, 190, 255, 0.26);
  border-radius: 999px;
  color: rgba(161, 219, 255, 0.96);
  font-weight: 820;
  background: rgba(32, 98, 175, 0.2);
}

.contact-poster__partner h2,
.contact-poster__alliance h2 {
  position: relative;
  z-index: 1;
  color: rgba(248, 252, 255, 0.98);
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 12, 34, 0.38);
}

.contact-poster__partner h2 {
  margin: 18px 0 0;
  white-space: nowrap;
  font-size: clamp(2.9rem, 3.36vw, 3.85rem);
  line-height: 1.02;
}

.contact-poster__partner > p {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 16px 0 0;
  color: rgba(229, 243, 255, 0.86);
  font-size: clamp(0.94rem, 0.98vw, 1.04rem);
  font-weight: 620;
  line-height: 1.58;
}

.contact-poster__abilities {
  position: relative;
  z-index: 1;
  margin-top: clamp(18px, 2.3vh, 26px);
}

.contact-poster__abilities > strong,
.contact-poster__requirements > strong {
  display: block;
  color: rgba(126, 215, 255, 0.96);
  font-weight: 820;
}

.contact-poster__abilities > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.contact-poster__abilities span,
.contact-poster__alliance li {
  border: 1px solid rgba(153, 205, 255, 0.18);
  border-radius: 999px;
  color: rgba(236, 247, 255, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.012)),
    rgba(7, 23, 52, 0.38);
}

.contact-poster__abilities span {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0 12px;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 760;
}

.contact-poster__alliance .contact-poster__head {
  grid-area: head;
}

.contact-poster__alliance h2 {
  grid-area: title;
  margin: 10px 0 0;
  white-space: nowrap;
  font-size: clamp(1.94rem, 2.12vw, 2.34rem);
  line-height: 1.08;
}

.contact-poster__alliance > p {
  grid-area: copy;
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: rgba(229, 243, 255, 0.84);
  font-weight: 620;
  line-height: 1.5;
}

.contact-poster__requirements {
  grid-area: req;
  position: relative;
  z-index: 1;
  align-self: center;
}

.contact-poster__requirements ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.contact-poster__alliance li {
  padding: 9px 13px;
  border-radius: 18px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.36;
}

.contact-poster__qr {
  grid-area: qr;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(ellipse at 52% 4%, rgba(255, 159, 47, 0.12), transparent 36%),
    radial-gradient(ellipse at 28% 100%, rgba(72, 196, 255, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.084), rgba(255, 255, 255, 0.014)),
    rgba(5, 18, 38, 0.42);
}

.contact-poster__qr figure {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  min-height: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(153, 205, 255, 0.18);
  border-radius: 32px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.014)),
    rgba(7, 23, 52, 0.38);
}

.contact-poster__qr canvas {
  width: clamp(132px, 8.4vw, 156px);
  height: clamp(132px, 8.4vw, 156px);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(1, 10, 27, 0.32);
}

.contact-poster__qr figcaption {
  color: rgba(241, 249, 255, 0.94);
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.35;
}

.contact-poster__trace {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.contact-poster__trace span {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 214, 255, 0.3), transparent);
  transform-origin: left center;
  opacity: 0.5;
}

.contact-poster__trace span:nth-child(1) {
  top: 34%;
  left: 22%;
  width: 56%;
  transform: rotate(-7deg);
}

.contact-poster__trace span:nth-child(2) {
  top: 68%;
  left: 12%;
  width: 68%;
  transform: rotate(4deg);
}

.contact-poster__trace span:nth-child(3) {
  top: 20%;
  left: 44%;
  width: 42%;
  transform: rotate(14deg);
}

@media (min-width: 1181px) and (max-height: 860px) {
  .contact-layout--poster {
    padding-top: calc(var(--nav-height) + 22px);
    padding-bottom: 22px;
  }

  .contact-poster {
    grid-template-rows: minmax(194px, 0.3fr) minmax(196px, 0.3fr) minmax(236px, 0.4fr);
    height: calc(100svh - var(--nav-height) - 44px);
    min-height: 612px;
  }

  .contact-poster__hero {
    padding: 36px 42px;
  }

  .contact-poster__hero h1 {
    margin-top: 42px;
    font-size: clamp(4.4rem, 5.25vw, 5.8rem);
  }

  .contact-poster__partner {
    padding: 30px 40px;
  }

  .contact-poster__partner h2 {
    font-size: clamp(2.82rem, 3.2vw, 3.56rem);
  }

  .contact-poster__partner > p {
    margin-top: 14px;
    line-height: 1.52;
    font-size: 0.96rem;
  }

  .contact-poster__abilities {
    margin-top: 18px;
  }

  .contact-poster__abilities span {
    min-height: 32px;
    font-size: 0.82rem;
  }

  .contact-poster__alliance {
    padding: 22px 30px;
  }

  .contact-poster__alliance h2 {
    font-size: clamp(1.82rem, 2vw, 2.12rem);
  }

  .contact-poster__alliance li {
    padding: 8px 11px;
    font-size: 0.8rem;
  }

  .contact-poster__qr canvas {
    width: 122px;
    height: 122px;
  }
}

@media (max-width: 1180px) {
  html[data-view="contact"],
  html[data-view="contact"] body {
    overflow-y: auto;
  }

  .contact-layout--poster {
    width: min(960px, calc(100% - 64px));
    padding-top: 128px;
    padding-bottom: 88px;
  }

  .contact-poster {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "hero"
      "partner"
      "alliance"
      "line"
      "qr";
  }

  .contact-poster__hero h1 {
    width: auto;
    white-space: normal;
  }

  .contact-poster__hero .page-lead {
    max-width: 720px;
  }

  .contact-poster__alliance {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "title"
      "copy"
      "list";
  }

  .contact-poster__requirements {
    grid-area: auto;
    margin-top: 14px;
  }
}

@media (max-width: 860px) {
  .contact-layout--poster {
    width: calc(100% - 36px);
    padding-top: 112px;
    padding-bottom: 78px;
  }

  .contact-poster__hero,
  .contact-poster__line,
  .contact-poster__partner,
  .contact-poster__alliance,
  .contact-poster__qr {
    border-radius: 30px;
    padding: 24px;
  }

  .contact-poster__hero h1 {
    font-size: 3rem;
  }

  .contact-poster__partner h2,
  .contact-poster__alliance h2 {
    white-space: normal;
  }

  .contact-poster__abilities > div,
  .contact-poster__links,
  .contact-poster__qr {
    grid-template-columns: 1fr;
  }
}

/* Contact page constellation redesign v6: no grid-card wall, one orbital composition */
html[data-view="contact"],
html[data-view="contact"] body {
  overflow: hidden;
}

.contact-layout--constellation {
  width: min(1500px, calc(100% - 84px));
  max-width: none;
  height: 100svh;
  min-height: 0;
  margin-inline: auto;
  padding-top: calc(var(--nav-height) + clamp(24px, 3.3vh, 42px));
  padding-bottom: clamp(24px, 3.2vh, 38px);
  box-sizing: border-box;
}

.contact-constellation {
  position: relative;
  width: 100%;
  height: min(820px, calc(100svh - var(--nav-height) - 52px));
  min-height: 650px;
  isolation: isolate;
}

.contact-constellation::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -2;
  width: min(78vw, 1180px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%, rgba(71, 196, 255, 0.16), transparent 18%),
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(119, 205, 255, 0.12) 29%, transparent 30%),
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(255, 159, 47, 0.08) 43%, transparent 44%),
    radial-gradient(circle at 50% 50%, transparent 56%, rgba(124, 92, 255, 0.1) 57%, transparent 58%);
  filter: blur(0.2px);
  opacity: 0.92;
}

.contact-constellation::after {
  content: "";
  position: absolute;
  inset: 8% 3% 4%;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(70, 190, 255, 0.13), transparent 36%),
    linear-gradient(90deg, transparent, rgba(57, 177, 255, 0.08) 38%, rgba(255, 159, 47, 0.06) 58%, transparent);
  filter: blur(12px);
}

.contact-constellation__field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.contact-constellation__field span {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  width: min(64vw, 940px);
  height: min(64vw, 940px);
  border: 1px solid rgba(144, 211, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--orbit-rotate, 0deg)) scale(var(--orbit-scale, 1));
  box-shadow: inset 0 0 42px rgba(72, 196, 255, 0.035);
}

.contact-constellation__field span:nth-child(1) {
  --orbit-rotate: -11deg;
  --orbit-scale: 0.72;
}

.contact-constellation__field span:nth-child(2) {
  --orbit-rotate: 18deg;
  --orbit-scale: 0.98;
  border-color: rgba(255, 159, 47, 0.12);
}

.contact-constellation__field span:nth-child(3) {
  --orbit-rotate: 34deg;
  --orbit-scale: 1.18;
  border-style: dashed;
}

.contact-constellation__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  width: clamp(390px, 31.5vw, 500px);
  aspect-ratio: 1;
  padding: clamp(30px, 3.2vw, 46px);
  border: 1px solid rgba(155, 215, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(87, 204, 255, 0.18), transparent 30%),
    radial-gradient(circle at 70% 78%, rgba(255, 159, 47, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(5, 18, 38, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 70px rgba(73, 195, 255, 0.07),
    0 44px 120px rgba(1, 10, 27, 0.42);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.contact-constellation__hub::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(
    from 212deg,
    transparent 0 18%,
    rgba(88, 207, 255, 0.36) 24%,
    transparent 31% 58%,
    rgba(255, 159, 47, 0.32) 64%,
    transparent 71% 100%
  );
  filter: blur(18px);
  opacity: 0.56;
}

.contact-constellation__hub .page-kicker {
  margin: 0;
}

.contact-constellation__hub h1 {
  margin: 14px 0 0;
  color: rgba(248, 252, 255, 0.99);
  font-size: clamp(3.75rem, 4.65vw, 5.55rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 22px 58px rgba(0, 12, 34, 0.45);
  white-space: nowrap;
}

.contact-constellation__hub .page-lead {
  max-width: 300px;
  margin-top: 14px;
  color: rgba(230, 244, 255, 0.86);
  font-size: clamp(0.94rem, 1vw, 1.06rem);
  line-height: 1.54;
}

.contact-constellation__phone {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.contact-constellation__phone span {
  color: rgba(130, 215, 255, 0.95);
  font-weight: 800;
}

.contact-constellation__phone strong {
  color: rgba(248, 252, 255, 0.98);
  font-size: clamp(1.55rem, 1.82vw, 2rem);
  line-height: 1;
}

.contact-constellation__phone p {
  margin: 0;
  color: rgba(226, 240, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.35;
}

.contact-constellation__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.contact-constellation__links span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(153, 205, 255, 0.2);
  border-radius: 999px;
  color: rgba(236, 247, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 780;
  background: rgba(7, 23, 52, 0.34);
}

.contact-constellation__copy {
  position: absolute;
  width: clamp(315px, 27vw, 400px);
  padding-left: 28px;
  border-left: 1px solid rgba(132, 216, 255, 0.28);
}

.contact-constellation__partner {
  left: clamp(24px, 3.5vw, 58px);
  top: clamp(82px, 14vh, 130px);
}

.contact-constellation__alliance {
  right: clamp(24px, 3.5vw, 58px);
  top: clamp(78px, 13vh, 118px);
}

.contact-constellation__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-constellation__head > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(126, 207, 255, 0.25);
  border-radius: 999px;
  color: rgba(163, 224, 255, 0.96);
  font-weight: 840;
  background: rgba(32, 98, 175, 0.18);
}

.contact-constellation__copy h2 {
  margin: 16px 0 0;
  color: rgba(248, 252, 255, 0.98);
  font-size: clamp(2.2rem, 2.8vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 12, 34, 0.4);
}

.contact-constellation__copy > p {
  margin: 16px 0 0;
  color: rgba(229, 243, 255, 0.84);
  font-size: clamp(0.9rem, 0.94vw, 1rem);
  font-weight: 620;
  line-height: 1.68;
}

.contact-constellation__abilities {
  position: absolute;
  left: clamp(24px, 3.5vw, 58px);
  bottom: clamp(62px, 9vh, 96px);
  width: clamp(410px, 37vw, 560px);
}

.contact-constellation__abilities > strong,
.contact-constellation__requirements > strong {
  color: rgba(126, 215, 255, 0.96);
  font-weight: 840;
}

.contact-constellation__abilities > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-constellation__abilities span,
.contact-constellation__requirements li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(153, 205, 255, 0.18);
  border-radius: 999px;
  color: rgba(236, 247, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 760;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.012)),
    rgba(7, 23, 52, 0.34);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
}

.contact-constellation__abilities span {
  padding: 0 14px;
}

.contact-constellation__requirements {
  margin-top: 18px;
}

.contact-constellation__requirements ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.contact-constellation__requirements li {
  padding: 9px 14px;
  border-radius: 18px;
  line-height: 1.35;
}

.contact-constellation__qr {
  position: absolute;
  right: clamp(24px, 3.5vw, 58px);
  bottom: clamp(54px, 8vh, 86px);
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.contact-constellation__qr figure {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  width: clamp(138px, 10.4vw, 176px);
  min-height: clamp(188px, 15vw, 224px);
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(153, 205, 255, 0.2);
  border-radius: 999px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 159, 47, 0.11), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.014)),
    rgba(7, 23, 52, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 72px rgba(1, 10, 27, 0.34);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.contact-constellation__qr canvas {
  width: clamp(104px, 8vw, 132px);
  height: clamp(104px, 8vw, 132px);
  border-radius: 20px;
}

.contact-constellation__qr figcaption {
  color: rgba(241, 249, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 820;
  line-height: 1.3;
}

@media (min-width: 1181px) and (max-height: 860px) {
  .contact-layout--constellation {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 20px;
  }

  .contact-constellation {
    height: calc(100svh - var(--nav-height) - 40px);
    min-height: 610px;
  }

  .contact-constellation__hub {
    width: clamp(360px, 30vw, 450px);
    padding: 36px;
  }

  .contact-constellation__hub h1 {
    font-size: clamp(3.75rem, 4.55vw, 5.3rem);
  }

  .contact-constellation__partner,
  .contact-constellation__alliance {
    top: 70px;
  }

  .contact-constellation__copy {
    width: clamp(315px, 28vw, 420px);
  }

  .contact-constellation__copy h2 {
    font-size: clamp(2rem, 2.42vw, 2.85rem);
  }

  .contact-constellation__copy > p {
    line-height: 1.52;
    font-size: 0.88rem;
  }

  .contact-constellation__abilities {
    bottom: 52px;
  }

  .contact-constellation__abilities span,
  .contact-constellation__requirements li {
    min-height: 32px;
    font-size: 0.78rem;
  }

  .contact-constellation__qr {
    bottom: 48px;
  }

  .contact-constellation__qr figure {
    width: 136px;
    min-height: 180px;
  }

  .contact-constellation__qr canvas {
    width: 102px;
    height: 102px;
  }
}

@media (max-width: 1180px) {
  html[data-view="contact"],
  html[data-view="contact"] body {
    overflow-y: auto;
  }

  .contact-layout--constellation {
    width: min(960px, calc(100% - 64px));
    height: auto;
    padding-top: 128px;
    padding-bottom: 88px;
  }

  .contact-constellation {
    height: auto;
    min-height: 0;
    display: grid;
    gap: 24px;
  }

  .contact-constellation__hub,
  .contact-constellation__copy,
  .contact-constellation__abilities,
  .contact-constellation__qr {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .contact-constellation__hub {
    width: min(520px, 100%);
    justify-self: center;
  }

  .contact-constellation__copy,
  .contact-constellation__abilities {
    width: min(760px, 100%);
    justify-self: center;
  }

  .contact-constellation__qr {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  .contact-layout--constellation {
    width: calc(100% - 36px);
    padding-top: 112px;
    padding-bottom: 78px;
  }

  .contact-constellation__hub {
    border-radius: 34px;
    aspect-ratio: auto;
  }

  .contact-constellation__hub h1 {
    white-space: normal;
    font-size: 3rem;
  }

  .contact-constellation__qr figure {
    border-radius: 34px;
  }
}

/* Contact readability pass: keep transparent depth, raise editorial contrast */
.contact-screen__intro h1,
.contact-feature-card--partner h2,
.contact-feature-card--alliance h2 {
  color: rgba(248, 252, 255, 0.97);
  text-shadow: 0 18px 48px rgba(0, 12, 34, 0.38);
}

.contact-screen__intro .page-lead,
.contact-feature-card--partner p,
.contact-feature-card--alliance p,
.contact-feature-card--alliance li,
.contact-info--compact p,
.contact-qr-panel figcaption {
  color: rgba(228, 241, 255, 0.86);
}

.contact-screen__intro {
  background:
    radial-gradient(ellipse at 14% 15%, rgba(68, 190, 255, 0.18), transparent 38%),
    radial-gradient(ellipse at 88% 88%, rgba(255, 159, 47, 0.09), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.096), rgba(255, 255, 255, 0.018)),
    rgba(5, 18, 38, 0.43);
}

.contact-feature-card--partner {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(70, 190, 255, 0.15), transparent 36%),
    radial-gradient(ellipse at 92% 88%, rgba(255, 159, 47, 0.09), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.016)),
    rgba(6, 18, 38, 0.43);
}

.contact-feature-card--alliance {
  background:
    radial-gradient(ellipse at 84% 12%, rgba(124, 92, 255, 0.15), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.016)),
    rgba(6, 18, 38, 0.42);
}

.contact-qr-panel {
  background:
    radial-gradient(ellipse at 52% 0%, rgba(255, 159, 47, 0.11), transparent 36%),
    radial-gradient(ellipse at 30% 100%, rgba(72, 196, 255, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.016)),
    rgba(6, 18, 38, 0.42);
}

.contact-info--compact p,
.contact-info--compact .contact-link-row span,
.contact-feature-card--partner .partner-ability-cloud span,
.contact-feature-card--alliance li,
.contact-qr-panel figure {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.014)),
    rgba(7, 22, 49, 0.4);
  border-color: rgba(153, 205, 255, 0.18);
}

/* Contact page redesign v2: editorial one-screen composition */
.contact-layout--one-screen {
  width: min(1280px, calc(100% - 96px));
  padding-top: calc(var(--nav-height) + clamp(28px, 3.8vh, 46px));
  padding-bottom: clamp(26px, 3.4vh, 42px);
}

.contact-screen {
  grid-template-columns: minmax(390px, 0.92fr) minmax(390px, 1fr) minmax(300px, 0.78fr);
  grid-template-rows: minmax(300px, 0.52fr) minmax(300px, 0.48fr);
  grid-template-areas:
    "intro partner partner"
    "intro alliance qr";
  gap: clamp(16px, 1.5vw, 22px);
  height: min(736px, calc(100svh - var(--nav-height) - 74px));
  min-height: 660px;
}

.contact-screen::before {
  inset: -4% -2.5%;
  border-radius: 44px;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(64, 188, 255, 0.11), transparent 34%),
    radial-gradient(ellipse at 72% 12%, rgba(255, 159, 47, 0.11), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.012));
}

.contact-screen__intro {
  padding: clamp(34px, 3.4vw, 48px);
  border-radius: 36px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.018)),
    radial-gradient(ellipse at 22% 18%, rgba(64, 188, 255, 0.14), transparent 36%),
    rgba(5, 18, 38, 0.34);
}

.contact-screen__intro h1 {
  max-width: none;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  font-size: clamp(4.25rem, 5.4vw, 6.25rem);
  line-height: 0.98;
}

.contact-screen__intro .page-lead {
  max-width: 420px;
  margin-top: 26px;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.78;
}

.contact-info--compact {
  gap: 9px;
  padding: 18px;
  border-radius: 28px;
}

.contact-info--compact p {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 22px;
  font-size: 0.94rem;
}

.contact-info--compact p:nth-child(2) {
  min-height: 58px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.contact-info--compact p:nth-child(3) {
  font-size: 1.24rem;
}

.contact-info--compact .contact-link-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-info--compact .contact-link-row span {
  min-height: 40px;
  padding: 0 8px;
  font-size: 0.9rem;
}

.contact-feature-card--partner {
  grid-area: partner;
  min-height: 0;
  padding: clamp(32px, 3.2vw, 44px);
  border-radius: 36px;
  align-content: center;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.017)),
    radial-gradient(ellipse at 12% 6%, rgba(76, 190, 255, 0.12), transparent 34%),
    rgba(6, 18, 38, 0.36);
}

.contact-feature-card--partner h2 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4vw, 4.32rem);
  line-height: 1.03;
}

.contact-feature-card--partner p {
  max-width: 760px;
  margin-top: 16px;
  line-height: 1.64;
  font-size: clamp(0.94rem, 1.02vw, 1.06rem);
}

.contact-feature-card--partner h3 {
  margin-top: 18px;
}

.contact-feature-card--partner .partner-ability-cloud {
  max-width: 720px;
  gap: 9px;
  margin-top: 14px;
}

.contact-feature-card--partner .partner-ability-cloud span {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.contact-feature-card--alliance {
  grid-area: alliance;
  border-radius: 34px;
  padding: clamp(24px, 2.3vw, 32px);
}

.contact-feature-card--alliance h2 {
  white-space: nowrap;
  font-size: clamp(1.72rem, 2.18vw, 2.18rem);
}

.contact-feature-card--alliance p {
  font-size: 0.92rem;
}

.contact-feature-card--alliance li {
  font-size: 0.84rem;
}

.contact-qr-panel {
  grid-area: qr;
  border-radius: 34px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.016)),
    radial-gradient(ellipse at 82% 0%, rgba(255, 159, 47, 0.1), transparent 36%),
    rgba(6, 18, 38, 0.35);
}

.contact-qr-panel figure {
  min-height: 0;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 15px;
  border-radius: 24px;
}

.contact-qr-panel canvas {
  width: clamp(104px, 7vw, 120px);
  height: clamp(104px, 7vw, 120px);
  border-radius: 18px;
}

.contact-qr-panel figcaption {
  font-size: 0.96rem;
  line-height: 1.4;
}

@media (min-width: 1181px) and (max-height: 820px) {
  .contact-screen {
    height: calc(100svh - var(--nav-height) - 58px);
    min-height: 610px;
  }

  .contact-screen__intro {
    padding: 32px;
  }

  .contact-screen__intro h1 {
    font-size: clamp(3.74rem, 4.7vw, 5.35rem);
  }

  .contact-feature-card--partner h2 {
    font-size: clamp(2.26rem, 3.4vw, 3.62rem);
  }
}

@media (max-width: 1180px) {
  .contact-layout--one-screen {
    width: min(960px, calc(100% - 64px));
  }

  .contact-screen {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "partner"
      "alliance"
      "qr";
  }

  .contact-screen__intro h1,
  .contact-feature-card--alliance h2 {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .contact-layout--one-screen {
    width: calc(100% - 36px);
  }

  .contact-screen__intro h1 {
    font-size: 2.82rem;
  }

  .contact-info--compact p:nth-child(2) {
    white-space: normal;
  }

  .contact-info--compact .contact-link-row,
  .contact-qr-panel {
    grid-template-columns: 1fr;
  }

  .contact-qr-panel figure {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* Contact page full rebuild v3: top masthead + three clear action zones */
.contact-layout--one-screen {
  width: min(1360px, calc(100% - 96px));
  padding-top: calc(var(--nav-height) + clamp(30px, 4vh, 52px));
  padding-bottom: clamp(30px, 3.8vh, 48px);
}

.contact-screen {
  grid-template-columns: minmax(520px, 1.18fr) minmax(330px, 0.76fr) minmax(300px, 0.62fr);
  grid-template-rows: minmax(228px, 0.36fr) minmax(410px, 0.64fr);
  grid-template-areas:
    "intro intro intro"
    "partner alliance qr";
  gap: clamp(18px, 1.65vw, 24px);
  height: min(762px, calc(100svh - var(--nav-height) - 78px));
  min-height: 650px;
}

.contact-screen::before {
  inset: -5% -2.8%;
  border-radius: 48px;
  background:
    radial-gradient(ellipse at 16% 18%, rgba(76, 193, 255, 0.14), transparent 33%),
    radial-gradient(ellipse at 72% 4%, rgba(255, 159, 47, 0.11), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.contact-screen__intro {
  grid-area: intro;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "kicker info"
    "title info"
    "lead info";
  align-items: center;
  column-gap: clamp(34px, 4vw, 64px);
  min-height: 0;
  padding: clamp(30px, 3vw, 42px) clamp(34px, 3.5vw, 52px);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.016)),
    radial-gradient(ellipse at 16% 26%, rgba(67, 186, 255, 0.16), transparent 38%),
    rgba(5, 18, 38, 0.34);
}

.contact-screen__intro .page-kicker {
  grid-area: kicker;
}

.contact-screen__intro h1 {
  grid-area: title;
  width: max-content;
  max-width: 100%;
  margin: 10px 0 0;
  white-space: nowrap;
  word-break: keep-all;
  overflow: visible;
  font-size: clamp(4.4rem, 6.2vw, 6.95rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.contact-screen__intro .page-lead {
  grid-area: lead;
  max-width: 680px;
  margin-top: 22px;
  line-height: 1.68;
}

.contact-info--compact {
  grid-area: info;
  align-self: center;
  gap: 10px;
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.014)),
    rgba(6, 20, 44, 0.34);
}

.contact-info--compact p {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 22px;
}

.contact-info--compact p:nth-child(2) {
  min-height: 50px;
  white-space: nowrap;
  font-size: clamp(0.72rem, 0.78vw, 0.84rem);
}

.contact-info--compact p:nth-child(3) {
  min-height: 48px;
  font-size: clamp(1.14rem, 1.35vw, 1.34rem);
}

.contact-info--compact .contact-link-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.contact-info--compact .contact-link-row span {
  min-height: 38px;
  padding: 0 8px;
  font-size: 0.88rem;
}

.contact-feature-card--partner,
.contact-feature-card--alliance,
.contact-qr-panel {
  min-height: 0;
  border-radius: 38px;
}

.contact-feature-card--partner {
  grid-area: partner;
  padding: clamp(34px, 3.4vw, 50px);
  align-content: start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.015)),
    radial-gradient(ellipse at 16% 8%, rgba(70, 190, 255, 0.13), transparent 36%),
    rgba(6, 18, 38, 0.34);
}

.contact-feature-card--partner h2 {
  max-width: 680px;
  margin-top: 12px;
  font-size: clamp(2.7rem, 4.25vw, 4.55rem);
  line-height: 1.02;
}

.contact-feature-card--partner p {
  max-width: 760px;
  margin-top: 18px;
  line-height: 1.6;
  font-size: clamp(0.94rem, 1vw, 1.04rem);
}

.contact-feature-card--partner h3 {
  margin-top: 18px;
}

.contact-feature-card--partner .partner-ability-cloud {
  gap: 9px;
  margin-top: 14px;
}

.contact-feature-card--partner .partner-ability-cloud span {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.contact-feature-card--alliance {
  grid-area: alliance;
  padding: clamp(26px, 2.45vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.014)),
    radial-gradient(ellipse at 84% 0%, rgba(124, 92, 255, 0.1), transparent 36%),
    rgba(6, 18, 38, 0.32);
}

.contact-feature-card--alliance h2 {
  margin-top: 10px;
  white-space: normal;
  font-size: clamp(1.88rem, 2.35vw, 2.42rem);
  line-height: 1.12;
}

.contact-feature-card--alliance p {
  margin-top: 12px;
  line-height: 1.5;
  font-size: 0.92rem;
}

.contact-feature-card--alliance h3 {
  margin-top: 14px;
}

.contact-feature-card--alliance ul {
  gap: 8px;
  margin-top: 10px;
}

.contact-feature-card--alliance li {
  padding: 10px 11px;
  border-radius: 15px;
  font-size: 0.84rem;
  line-height: 1.36;
}

.contact-qr-panel {
  grid-area: qr;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.014)),
    radial-gradient(ellipse at 82% 0%, rgba(255, 159, 47, 0.1), transparent 34%),
    rgba(6, 18, 38, 0.32);
}

.contact-qr-panel figure {
  min-height: 0;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
  border-radius: 26px;
}

.contact-qr-panel canvas {
  width: clamp(110px, 7.2vw, 124px);
  height: clamp(110px, 7.2vw, 124px);
  border-radius: 18px;
}

.contact-qr-panel figcaption {
  font-size: 0.92rem;
  line-height: 1.35;
}

@media (min-width: 1181px) and (max-height: 860px) {
  .contact-screen {
    grid-template-rows: minmax(208px, 0.34fr) minmax(380px, 0.66fr);
    height: calc(100svh - var(--nav-height) - 66px);
    min-height: 610px;
  }

  .contact-screen__intro {
    padding: 28px 42px;
  }

  .contact-screen__intro h1 {
    font-size: clamp(4rem, 5.4vw, 5.85rem);
  }

  .contact-feature-card--partner {
    padding: 32px 40px;
  }

  .contact-feature-card--partner h2 {
    font-size: clamp(2.45rem, 3.72vw, 3.9rem);
  }

  .contact-feature-card--partner p {
    line-height: 1.52;
  }

  .contact-feature-card--alliance {
    padding: 24px 28px;
  }

  .contact-feature-card--alliance li {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1180px) {
  html[data-view="contact"],
  html[data-view="contact"] body {
    overflow-y: auto;
  }

  .contact-layout--one-screen {
    width: min(960px, calc(100% - 64px));
    padding-top: 128px;
    padding-bottom: 88px;
  }

  .contact-screen {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "intro"
      "partner"
      "alliance"
      "qr";
  }

  .contact-screen__intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "lead"
      "info";
  }

  .contact-info--compact {
    margin-top: 18px;
  }
}

@media (max-width: 860px) {
  .contact-layout--one-screen {
    width: calc(100% - 36px);
    padding-top: 112px;
    padding-bottom: 78px;
  }

  .contact-screen__intro,
  .contact-feature-card--partner,
  .contact-feature-card--alliance,
  .contact-qr-panel {
    border-radius: 30px;
    padding: 24px;
  }

  .contact-screen__intro h1 {
    width: auto;
    white-space: normal;
    font-size: 2.9rem;
  }

  .contact-info--compact p:nth-child(2) {
    white-space: normal;
  }

  .contact-info--compact .contact-link-row {
    grid-template-columns: 1fr;
  }
}

/* Contact page full rebuild v4: left contact command, center partnership, right QR lane */
.contact-layout--one-screen {
  width: min(1360px, calc(100% - 96px));
  padding-top: calc(var(--nav-height) + clamp(34px, 4.4vh, 58px));
  padding-bottom: clamp(30px, 4vh, 52px);
}

.contact-screen {
  grid-template-columns: minmax(374px, 0.82fr) minmax(530px, 1.18fr) minmax(292px, 0.56fr);
  grid-template-rows: minmax(326px, 0.52fr) minmax(326px, 0.48fr);
  grid-template-areas:
    "intro partner qr"
    "intro alliance qr";
  gap: clamp(20px, 1.75vw, 26px);
  height: min(772px, calc(100svh - var(--nav-height) - 82px));
  min-height: 670px;
}

.contact-screen::before {
  display: none;
}

.contact-screen__intro,
.contact-feature-card--partner,
.contact-feature-card--alliance,
.contact-qr-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 203, 255, 0.18);
  border-radius: 40px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 34px 96px rgba(1, 10, 27, 0.34);
}

.contact-screen__intro {
  grid-area: intro;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto 1fr;
  grid-template-areas:
    "kicker"
    "title"
    "lead"
    "info";
  align-content: stretch;
  padding: clamp(40px, 4vw, 56px) clamp(36px, 3vw, 46px);
  background:
    radial-gradient(ellipse at 14% 15%, rgba(68, 190, 255, 0.18), transparent 38%),
    radial-gradient(ellipse at 88% 88%, rgba(255, 159, 47, 0.08), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.014)),
    rgba(5, 18, 38, 0.33);
}

.contact-screen__intro::after,
.contact-feature-card--partner::after,
.contact-feature-card--alliance::after,
.contact-qr-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.09), transparent 18%, transparent 76%, rgba(255, 255, 255, 0.045)),
    linear-gradient(180deg, transparent, rgba(4, 12, 28, 0.18));
  opacity: 0.55;
}

.contact-screen__intro .page-kicker {
  grid-area: kicker;
}

.contact-screen__intro h1 {
  grid-area: title;
  width: auto;
  max-width: 100%;
  margin: clamp(28px, 5vh, 54px) 0 0;
  white-space: nowrap;
  word-break: keep-all;
  overflow: visible;
  font-size: clamp(4rem, 4.1vw, 5.05rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.contact-screen__intro .page-lead {
  grid-area: lead;
  max-width: 360px;
  margin-top: 24px;
  line-height: 1.72;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
}

.contact-info--compact {
  grid-area: info;
  align-self: end;
  gap: 10px;
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.012)),
    rgba(5, 19, 43, 0.32);
}

.contact-info--compact p {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 22px;
}

.contact-info--compact p:nth-child(2) {
  min-height: 50px;
  white-space: normal;
  font-size: clamp(0.78rem, 0.8vw, 0.86rem);
}

.contact-info--compact p:nth-child(3) {
  min-height: 50px;
  font-size: clamp(1.24rem, 1.45vw, 1.42rem);
}

.contact-info--compact .contact-link-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.contact-info--compact .contact-link-row span {
  min-height: 38px;
  padding: 0 8px;
  font-size: 0.86rem;
}

.contact-feature-card--partner {
  grid-area: partner;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 2.8vw, 38px);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(70, 190, 255, 0.14), transparent 36%),
    radial-gradient(ellipse at 92% 88%, rgba(255, 159, 47, 0.08), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.014)),
    rgba(6, 18, 38, 0.33);
}

.contact-feature-card--partner h2 {
  max-width: none;
  margin-top: 14px;
  white-space: nowrap;
  font-size: clamp(2.72rem, 3.05vw, 3.38rem);
  line-height: 1.02;
}

.contact-feature-card--partner p {
  max-width: 740px;
  margin-top: 14px;
  line-height: 1.5;
  font-size: clamp(0.92rem, 0.96vw, 1rem);
}

.contact-feature-card--partner h3 {
  margin-top: 16px;
}

.contact-feature-card--partner .partner-ability-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.contact-feature-card--partner .partner-ability-cloud span {
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.contact-feature-card--alliance {
  grid-area: alliance;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 2.35vw, 34px);
  background:
    radial-gradient(ellipse at 84% 12%, rgba(124, 92, 255, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.012)),
    rgba(6, 18, 38, 0.32);
}

.contact-feature-card--alliance h2 {
  margin-top: 10px;
  white-space: nowrap;
  font-size: clamp(1.98rem, 2.16vw, 2.36rem);
  line-height: 1.12;
}

.contact-feature-card--alliance p {
  margin-top: 10px;
  line-height: 1.48;
  font-size: clamp(0.86rem, 0.9vw, 0.94rem);
}

.contact-feature-card--alliance h3 {
  margin-top: 12px;
}

.contact-feature-card--alliance ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.contact-feature-card--alliance li {
  padding: 8px 11px;
  border-radius: 16px;
  font-size: clamp(0.8rem, 0.82vw, 0.86rem);
  line-height: 1.34;
}

.contact-qr-panel {
  grid-area: qr;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(ellipse at 52% 0%, rgba(255, 159, 47, 0.1), transparent 36%),
    radial-gradient(ellipse at 30% 100%, rgba(72, 196, 255, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.014)),
    rgba(6, 18, 38, 0.32);
}

.contact-qr-panel figure {
  min-height: 0;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  gap: 14px;
  padding: 20px 16px;
  text-align: center;
  border-radius: 30px;
}

.contact-qr-panel canvas {
  width: clamp(124px, 8.2vw, 148px);
  height: clamp(124px, 8.2vw, 148px);
  border-radius: 20px;
}

.contact-qr-panel figcaption {
  font-size: 0.98rem;
  line-height: 1.35;
}

@media (min-width: 1181px) and (max-height: 860px) {
  .contact-layout--one-screen {
    padding-top: calc(var(--nav-height) + 28px);
    padding-bottom: 28px;
  }

  .contact-screen {
    grid-template-rows: minmax(294px, 0.51fr) minmax(294px, 0.49fr);
    height: calc(100svh - var(--nav-height) - 58px);
    min-height: 612px;
  }

  .contact-screen__intro {
    padding: 36px 34px;
  }

  .contact-screen__intro h1 {
    margin-top: 34px;
    font-size: clamp(4.08rem, 4.95vw, 5.35rem);
  }

  .contact-feature-card--partner {
    padding: 32px 38px;
  }

  .contact-feature-card--partner h2 {
    font-size: clamp(2.78rem, 3.1vw, 3.42rem);
  }

  .contact-feature-card--partner p {
    line-height: 1.5;
  }

  .contact-feature-card--partner .partner-ability-cloud span {
    min-height: 34px;
    font-size: 0.82rem;
  }

  .contact-feature-card--alliance {
    padding: 28px 34px;
  }

  .contact-feature-card--alliance li {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .contact-qr-panel canvas {
    width: 118px;
    height: 118px;
  }
}

@media (max-width: 1180px) {
  html[data-view="contact"],
  html[data-view="contact"] body {
    overflow-y: auto;
  }

  .contact-layout--one-screen {
    width: min(960px, calc(100% - 64px));
    padding-top: 128px;
    padding-bottom: 88px;
  }

  .contact-screen {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "intro"
      "partner"
      "alliance"
      "qr";
  }

  .contact-screen__intro {
    grid-template-rows: auto;
    grid-template-areas:
      "kicker"
      "title"
      "lead"
      "info";
  }

  .contact-screen__intro .page-lead {
    max-width: 680px;
  }

  .contact-info--compact {
    margin-top: 28px;
  }

  .contact-feature-card--partner h2,
  .contact-feature-card--alliance h2 {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .contact-layout--one-screen {
    width: calc(100% - 36px);
    padding-top: 112px;
    padding-bottom: 78px;
  }

  .contact-screen__intro,
  .contact-feature-card--partner,
  .contact-feature-card--alliance,
  .contact-qr-panel {
    border-radius: 30px;
    padding: 24px;
  }

  .contact-screen__intro h1 {
    white-space: normal;
    font-size: 2.9rem;
  }

  .contact-info--compact .contact-link-row,
  .contact-feature-card--partner .partner-ability-cloud,
  .contact-qr-panel {
    grid-template-columns: 1fr;
  }
}

/* Restores normal document scrolling after reverting contact back to the original long-page layout. */
html[data-view="contact"] {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

html[data-view="contact"] body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

/* About page real image system: replaces placeholder visuals with cinematic art cards. */
.about-visual--image,
.founder-photo--image,
.global-map--image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(181, 224, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.016)),
    rgba(5, 14, 28, 0.5);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.34),
    0 0 74px rgba(48, 161, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.about-visual--image img,
.founder-photo--image img,
.global-map--image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1);
  animation: none;
}

.about-visual--hero img {
  object-position: right center;
  opacity: 1;
  filter: brightness(1.04) saturate(1.06) contrast(1.02);
}

.founder-photo--image img {
  object-position: 50% center;
  opacity: 1;
  filter: brightness(1.16) saturate(1.08) contrast(1.02);
}

.global-map--image img {
  object-position: 50% center;
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
}

.about-visual--image::before,
.founder-photo--image::before,
.global-map--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(82, 190, 255, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(3, 9, 20, 0.24), transparent 34%, rgba(3, 9, 20, 0.34)),
    linear-gradient(180deg, transparent 55%, rgba(2, 8, 18, 0.44));
}

.about-visual--hero::before {
  background:
    radial-gradient(ellipse at 22% 72%, rgba(255, 164, 46, 0.18), transparent 36%),
    radial-gradient(ellipse at 76% 20%, rgba(74, 187, 255, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(2, 8, 18, 0.18), transparent 38%, rgba(2, 8, 18, 0.26)),
    linear-gradient(180deg, rgba(6, 18, 34, 0.1), rgba(2, 8, 18, 0.44));
}

.founder-photo--image::before,
.global-map--image::before {
  display: none;
}

.about-visual--image::after,
.founder-photo--image::after,
.global-map--image::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(222, 242, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
  mix-blend-mode: screen;
}

.founder-photo--image::after,
.global-map--image::after {
  display: none;
}

.about-image-orbit {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.58;
  filter: blur(0.2px);
}

.about-image-orbit--one {
  right: 7%;
  bottom: 13%;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 170, 56, 0.92), transparent);
  box-shadow: 0 0 24px rgba(255, 159, 47, 0.36);
  transform: rotate(-11deg);
}

.about-image-orbit--two {
  left: 8%;
  top: 16%;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83, 197, 255, 0.86), transparent);
  box-shadow: 0 0 22px rgba(73, 185, 255, 0.32);
  transform: rotate(8deg);
}

.about-image-scan {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 14%;
  z-index: 3;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(95, 213, 255, 0.84), rgba(255, 169, 63, 0.42), transparent);
  box-shadow: 0 0 22px rgba(83, 194, 255, 0.3);
  opacity: 0.52;
}

.founder-photo--image .about-image-scan {
  display: none;
  padding: 0;
  border: 0;
  backdrop-filter: none;
}

.global-map__arc {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: 999px;
  opacity: 0.56;
  mix-blend-mode: screen;
}

.global-map__arc--one {
  inset: 11% -18% auto 8%;
  height: 48%;
  border-top-color: rgba(90, 206, 255, 0.7);
  transform: rotate(-8deg);
  box-shadow: 0 -10px 26px rgba(72, 190, 255, 0.12);
}

.global-map__arc--two {
  left: -20%;
  right: 9%;
  bottom: 7%;
  height: 44%;
  border-bottom-color: rgba(255, 166, 48, 0.42);
  transform: rotate(8deg);
  box-shadow: 0 10px 24px rgba(255, 159, 47, 0.1);
}

.global-map--image .global-map__arc {
  display: none;
}

@keyframes aboutImageFloat {
  0%,
  100% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.065) translate3d(-0.8%, -0.7%, 0);
  }
}

@media (max-width: 1180px) {
  .about-visual--image,
  .founder-photo--image,
  .global-map--image {
    min-height: clamp(360px, 54vw, 520px);
  }
}

/* Global copy cleanup: remove vertical accent bars and standardize title rhythm. */
.about-hero__copy::before,
.about-panel--intro::before,
.founder-card::before,
.products-hero-text::before,
.product-section-head::before,
.contact-feature-card::before {
  display: none !important;
}

.about-panel--intro,
.product-section-head,
.contact-constellation__copy {
  padding-left: 0 !important;
  border-left: 0 !important;
}

.founder-card blockquote {
  padding-left: 0 !important;
}

.product-highlight {
  padding-left: 0 !important;
  border-left: 0 !important;
}

.about-hero__copy,
.products-hero-text,
.contact-layout > h1,
.contact-layout > .page-lead {
  text-wrap: balance;
}

.about-hero__copy h1,
.products-hero-text h1,
.contact-layout > h1 {
  max-width: min(760px, 100%);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-hero__copy h1,
.products-hero-text h1 {
  font-size: clamp(3.18rem, 4.72vw, 5.02rem);
}

.contact-layout > h1 {
  font-size: clamp(3.08rem, 4.55vw, 4.88rem);
}

.about-panel--intro h2,
.promise-section h2,
.global-copy h2,
.product-section-head h2,
.product-panel-copy h2,
.contact-feature-card h2,
.contact-poster h2,
.contact-constellation__copy h2 {
  max-width: min(940px, 100%);
  font-size: clamp(1.92rem, 2.24vw, 2.36rem);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-panel--intro h2 {
  max-width: min(900px, 100%);
}

.about-panel--intro h2 span {
  display: block;
}

.product-section-head--center {
  max-width: min(980px, 100%);
}

.product-section-head--center h2 {
  margin-inline: auto;
}

.products-system-title,
.products-system-title span,
.product-section-head h2 span {
  display: block;
}

.products-system-title {
  line-height: 1.2;
}

.products-system-title span + span,
.product-section-head h2 span + span {
  margin-top: 0.08em;
}

.product-detail[data-product-slug="qifu-ai-brain"] .product-media-board {
  display: grid;
  place-items: center;
  padding: clamp(20px, 2.8vw, 34px);
  background:
    radial-gradient(ellipse at 52% 42%, rgba(124, 92, 255, 0.16), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(246, 250, 255, 0.92);
}

.product-detail[data-product-slug="qifu-ai-brain"] .product-media-board img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.section-label {
  margin-bottom: 12px;
}

.about-panel p,
.founder-card blockquote p,
.global-copy p,
.global-copy li,
.product-section-head p,
.product-panel-summary,
.product-highlight,
.contact-feature-card p,
.contact-layout > .page-lead {
  line-height: 1.76;
}

.about-panel p,
.global-copy p,
.product-section-head p,
.contact-feature-card p {
  margin-top: 18px;
}

.founder-card blockquote p {
  margin-top: 18px;
}

.about-principles article,
.promise-card,
.global-copy,
.contact-feature-card {
  text-wrap: pretty;
}

@media (max-width: 1180px) {
  .about-hero__copy h1,
  .products-hero-text h1,
  .contact-layout > h1 {
    font-size: clamp(2.84rem, 7.2vw, 4.36rem);
  }

  .about-panel--intro h2,
  .promise-section h2,
  .global-copy h2,
  .product-section-head h2,
  .product-panel-copy h2,
  .contact-feature-card h2,
  .contact-poster h2,
  .contact-constellation__copy h2 {
    font-size: clamp(1.92rem, 4.8vw, 2.52rem);
  }
}

@media (max-width: 640px) {
  .about-hero__copy h1,
  .products-hero-text h1,
  .contact-layout > h1 {
    font-size: clamp(2.16rem, 9.4vw, 3rem);
  }

  .about-panel--intro h2,
  .promise-section h2,
  .global-copy h2,
  .product-section-head h2,
  .product-panel-copy h2,
  .contact-feature-card h2,
  .contact-poster h2,
  .contact-constellation__copy h2 {
    font-size: clamp(1.62rem, 7.2vw, 2.08rem);
  }
}

/* Qifuyun APP detail: copy-locked layout from the provided product document. */
.product-detail[data-product-slug="qifuyun-app"].app-product-detail {
  display: block;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-hero,
.product-detail[data-product-slug="qifuyun-app"] .app-product-core {
  position: relative;
  display: grid;
  border: 1px solid rgba(188, 224, 255, 0.16);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.026)),
    radial-gradient(ellipse at 12% 10%, rgba(47, 140, 255, 0.14), transparent 46%),
    radial-gradient(ellipse at 88% 92%, rgba(34, 211, 238, 0.1), transparent 42%),
    rgba(7, 20, 43, 0.42);
  box-shadow:
    0 28px 100px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  min-height: clamp(560px, 66vh, 720px);
  padding: clamp(42px, 5.2vw, 72px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-copy {
  max-width: 690px;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-copy h2 {
  max-width: 680px;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(2.52rem, 3.8vw, 4.28rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-copy h2 span {
  display: block;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-copy h2 span + span {
  margin-top: 0.06em;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-slogan {
  margin: clamp(24px, 3vh, 34px) 0 0;
  color: #fff;
  font-size: clamp(1.22rem, 1.58vw, 1.58rem);
  font-weight: 840;
  letter-spacing: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-intro {
  max-width: 650px;
  margin: clamp(18px, 2.4vh, 26px) 0 0;
  color: rgba(232, 245, 255, 0.78);
  font-size: clamp(1.02rem, 1.14vw, 1.14rem);
  font-weight: 650;
  line-height: 1.9;
  letter-spacing: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(183, 218, 255, 0.22);
  border-radius: 36px;
  background:
    radial-gradient(ellipse at 24% 20%, rgba(72, 198, 255, 0.22), transparent 44%),
    radial-gradient(ellipse at 78% 76%, rgba(124, 92, 255, 0.17), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9));
  box-shadow:
    0 24px 82px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42), transparent 35%),
    radial-gradient(ellipse at 50% 112%, rgba(47, 140, 255, 0.16), transparent 58%);
  opacity: 0.74;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual--hero {
  min-height: clamp(390px, 35vw, 510px);
  padding: clamp(16px, 2.1vw, 30px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core {
  grid-template-columns: minmax(360px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: stretch;
  margin-top: clamp(70px, 8vw, 118px);
  padding: clamp(34px, 4.8vw, 64px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core__copy h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(2.08rem, 2.6vw, 2.84rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core__list {
  display: grid;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 34px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core__item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 18px 20px;
  border: 1px solid rgba(190, 226, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(7, 20, 43, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4ed4ff, #7c5cff 58%, #ff9f2f);
  box-shadow: 0 0 22px rgba(78, 212, 255, 0.34);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core__item p {
  margin: 0;
  color: rgba(238, 248, 255, 0.84);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core__visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.62fr);
  gap: clamp(18px, 2.2vw, 28px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual--support {
  min-height: clamp(360px, 32vw, 510px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual--1 {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(47, 140, 255, 0.28), transparent 54%),
    linear-gradient(145deg, rgba(5, 12, 30, 0.98), rgba(18, 32, 76, 0.95));
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual--1 img {
  object-fit: cover;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual--2 {
  padding: clamp(18px, 2.1vw, 28px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual--2 img {
  object-fit: contain;
}

@media (max-width: 1180px) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-hero,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-core {
    grid-template-columns: 1fr;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-core__visuals {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-hero,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-core {
    padding: 24px;
    border-radius: 32px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-copy h2 {
    font-size: clamp(2rem, 11vw, 2.72rem);
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-core__visuals {
    grid-template-columns: 1fr;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-visual--hero,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-visual--support {
    min-height: 320px;
  }
}

/* Qifuyun APP core groups: two copy-led bands with a restrained mockup carousel. */
.product-detail[data-product-slug="qifuyun-app"] .app-product-copy h2 {
  font-size: clamp(2.46rem, 3.42vw, 3.82rem);
  line-height: 1.07;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core {
  display: block;
  margin-top: clamp(72px, 8vw, 118px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  scroll-margin-top: calc(var(--nav-height) + 42px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-core__title {
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: #f7fbff;
  font-size: clamp(2rem, 2.66vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-groups {
  display: grid;
  gap: clamp(30px, 4.2vw, 54px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  min-height: clamp(500px, 47vw, 660px);
  padding: clamp(30px, 4.2vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(188, 224, 255, 0.16);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.024)),
    radial-gradient(ellipse at 12% 16%, rgba(47, 140, 255, 0.13), transparent 46%),
    radial-gradient(ellipse at 90% 88%, rgba(255, 159, 47, 0.075), transparent 40%),
    rgba(7, 20, 43, 0.42);
  box-shadow:
    0 26px 96px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  scroll-margin-top: calc(var(--nav-height) + 42px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group::before {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(78, 212, 255, 0.5), rgba(255, 159, 47, 0.32), transparent);
  opacity: 0.58;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--bottom {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-copy {
  min-width: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-copy .app-product-core__list {
  gap: 16px;
  margin-top: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-copy .app-product-core__item {
  min-height: 104px;
  padding: 22px 24px;
  border-color: rgba(190, 226, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.02)),
    rgba(7, 20, 43, 0.34);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-copy .app-product-core__item p {
  color: rgba(242, 249, 255, 0.88);
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 1.62;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-visual {
  min-width: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel,
.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(460px, 38vw, 590px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 224, 248, 0.8);
  border-radius: 38px;
  background:
    radial-gradient(ellipse at 22% 18%, rgba(89, 204, 255, 0.24), transparent 46%),
    radial-gradient(ellipse at 80% 80%, rgba(124, 92, 255, 0.18), transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.92));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  isolation: isolate;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel::before,
.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup::before {
  content: "";
  position: absolute;
  inset: 9% 10%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(47, 140, 255, 0.18), transparent 60%),
    radial-gradient(ellipse at 48% 48%, rgba(255, 255, 255, 0.72), transparent 62%);
  filter: blur(10px);
  opacity: 0.9;
  z-index: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card {
  --carousel-duration: 12s;
  position: absolute;
  inset: clamp(20px, 2.4vw, 34px) clamp(42px, 5.2vw, 78px) clamp(46px, 4.8vw, 68px);
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(14px, 1.6vw, 22px);
  border: 1px solid rgba(205, 224, 248, 0.86);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 62px rgba(31, 78, 140, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(12%, 0, 0) scale(0.96);
  animation: qifuyunAppCarousel var(--carousel-duration) cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--slide-delay);
  animation-fill-mode: both;
  z-index: 1;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card img,
.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup img {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(390px, 34vw, 520px);
  object-fit: contain;
  border-radius: 28px;
  background: #fff;
  box-shadow:
    0 18px 46px rgba(31, 78, 140, 0.2),
    0 0 0 1px rgba(11, 34, 74, 0.06);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup {
  padding: clamp(24px, 3vw, 42px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup img {
  position: relative;
  z-index: 1;
  height: clamp(420px, 36vw, 560px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel__dots span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(39, 68, 118, 0.16);
  overflow: hidden;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel__dots span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22d3ee, #2f8cff 66%, #ff9f2f);
  transform-origin: left center;
  animation: qifuyunAppCarouselDot 12s linear infinite;
  animation-delay: var(--slide-delay);
}

@keyframes qifuyunAppCarousel {
  0%,
  25% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
  }

  33% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-10%, 0, 0) scale(0.96);
  }

  88% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(12%, 0, 0) scale(0.96);
  }

  94% {
    opacity: 0;
    visibility: visible;
    transform: translate3d(12%, 0, 0) scale(0.96);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes qifuyunAppCarouselDot {
  0% {
    transform: scaleX(0);
  }

  25% {
    transform: scaleX(1);
  }

  33%,
  100% {
    transform: scaleX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-carousel__dots span::before {
    animation: none;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card {
    opacity: 0;
    transform: none;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card:first-child {
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--bottom {
    grid-template-columns: 1fr;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--bottom .app-product-feature-visual {
    order: 2;
  }
}

@media (max-width: 720px) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group {
    min-height: auto;
    padding: 22px;
    border-radius: 32px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-core__title {
    font-size: clamp(1.72rem, 8vw, 2.2rem);
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-carousel,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup {
    min-height: 430px;
    border-radius: 30px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card {
    inset: 20px 24px 52px;
    border-radius: 26px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card img,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup img {
    height: 350px;
    border-radius: 22px;
  }
}

/* APP page balance pass: exact two-line title, larger hero phone, clean 3-card carousel. */
.product-detail[data-product-slug="qifuyun-app"] .app-product-hero {
  grid-template-columns: minmax(520px, 0.92fr) minmax(360px, 0.68fr);
  gap: clamp(34px, 4vw, 56px);
  min-height: clamp(520px, 60vh, 660px);
  padding: clamp(42px, 4.8vw, 64px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-copy {
  max-width: 760px;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-title {
  max-width: min(760px, 100%);
  font-size: clamp(2.32rem, 3.08vw, 3.42rem);
  line-height: 1.08;
  text-wrap: unset;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-title span {
  display: block;
  white-space: nowrap;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-title span + span {
  margin-top: 0.08em;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-visual--hero {
  display: grid;
  place-items: center;
  min-height: clamp(430px, 35vw, 530px);
  padding: clamp(18px, 2.5vw, 32px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-hero-phone-shell {
  position: relative;
  z-index: 1;
  display: block;
  height: clamp(405px, 34vw, 500px);
  aspect-ratio: 750 / 1600;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background: #050814;
  box-shadow:
    0 24px 64px rgba(18, 45, 86, 0.22),
    0 0 0 1px rgba(2, 8, 20, 0.74),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.product-detail[data-product-slug="qifuyun-app"] .app-hero-phone-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 29px;
  background: #fff;
  box-shadow: none;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group {
  min-height: clamp(470px, 40vw, 590px);
  padding: clamp(30px, 3.8vw, 52px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group::before {
  display: none;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--top {
  grid-template-columns: minmax(320px, 0.44fr) minmax(460px, 0.78fr);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel {
  min-height: clamp(390px, 32vw, 490px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  perspective: 1400px;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel::before {
  display: none;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card {
  --carousel-duration: 12s;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(200px, 17vw, 272px);
  height: clamp(334px, 28.5vw, 444px);
  inset: auto;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  background: #050814;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(2, 8, 20, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: qifuyunAppCarousel var(--carousel-duration) cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--slide-delay);
  animation-fill-mode: both;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 27px;
  background: #fff;
  box-shadow: none;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel__dots {
  display: none;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--bottom {
  grid-template-columns: minmax(360px, 0.64fr) minmax(320px, 0.52fr);
  min-height: clamp(400px, 32vw, 500px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-visual--single {
  display: grid;
  place-items: center;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup {
  width: clamp(220px, 18vw, 300px);
  min-height: 0;
  aspect-ratio: 750 / 1600;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  background: #050814;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(2, 8, 20, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup::before {
  display: none;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 27px;
  background: #fff;
  box-shadow: none;
}

@keyframes qifuyunAppCarousel {
  0%,
  26% {
    z-index: 3;
    opacity: 1;
    filter: blur(0) saturate(1) brightness(1);
    transform: translate(-50%, -50%) translateX(0) translateY(0) translateZ(70px) scale(1);
  }

  33%,
  59% {
    z-index: 1;
    opacity: 0.42;
    filter: blur(4px) saturate(0.78) brightness(0.88);
    transform: translate(-50%, -50%) translateX(-58%) translateY(4px) translateZ(-120px) scale(0.82);
  }

  66%,
  92% {
    z-index: 1;
    opacity: 0.42;
    filter: blur(4px) saturate(0.78) brightness(0.88);
    transform: translate(-50%, -50%) translateX(58%) translateY(4px) translateZ(-120px) scale(0.82);
  }

  100% {
    z-index: 3;
    opacity: 1;
    filter: blur(0) saturate(1) brightness(1);
    transform: translate(-50%, -50%) translateX(0) translateY(0) translateZ(70px) scale(1);
  }
}

@media (max-width: 1180px) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-hero,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--top,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--bottom {
    grid-template-columns: 1fr;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-title {
    font-size: clamp(2.12rem, 6vw, 3rem);
  }
}

@media (max-width: 720px) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-title {
    font-size: clamp(1.66rem, 8vw, 2.12rem);
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-title span {
    white-space: nowrap;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-visual--hero {
    min-height: 390px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-hero-phone-shell {
    height: 340px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-carousel {
    min-height: 410px;
    overflow: hidden;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card {
    width: 210px;
    height: 350px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup {
    width: 220px;
  }
}

/* APP correction pass: carousel must stay inside its visual card; lower mockup stays compact. */
.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group {
  overflow: hidden;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--top {
  grid-template-columns: minmax(330px, 0.46fr) minmax(520px, 0.84fr);
  min-height: clamp(440px, 36vw, 540px);
  padding: clamp(30px, 3.7vw, 50px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-visual--carousel {
  display: grid;
  place-items: center;
  min-height: clamp(350px, 29vw, 430px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel {
  width: 100%;
  max-width: clamp(520px, 43vw, 680px);
  min-height: clamp(340px, 28vw, 420px);
  overflow: hidden;
  border: 1px solid rgba(198, 221, 246, 0.7);
  border-radius: 36px;
  background:
    radial-gradient(ellipse at 30% 18%, rgba(214, 244, 255, 0.74), transparent 42%),
    radial-gradient(ellipse at 72% 88%, rgba(233, 225, 255, 0.74), transparent 46%),
    linear-gradient(145deg, rgba(250, 253, 255, 0.96), rgba(235, 244, 255, 0.86));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  isolation: isolate;
  perspective: none;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel::before {
  display: none;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel::after {
  content: "";
  position: absolute;
  inset: auto 15% 24px;
  height: 22px;
  border-radius: 999px;
  background: rgba(44, 88, 140, 0.12);
  filter: blur(14px);
  z-index: 0;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card {
  --carousel-duration: 12s;
  top: 50%;
  left: 50%;
  width: clamp(168px, 13.8vw, 226px);
  height: clamp(298px, 24.8vw, 396px);
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: #050814;
  box-shadow:
    0 22px 56px rgba(18, 42, 80, 0.2),
    0 0 0 1px rgba(2, 8, 20, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: qifuyunAppCarousel var(--carousel-duration) cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--slide-delay);
  animation-fill-mode: both;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--bottom {
  grid-template-columns: minmax(410px, 0.66fr) minmax(330px, 0.5fr);
  min-height: clamp(340px, 29vw, 430px);
  padding: clamp(28px, 3.4vw, 46px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-visual--single {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(300px, 24vw, 380px);
  overflow: hidden;
  border: 1px solid rgba(198, 221, 246, 0.72);
  border-radius: 36px;
  background:
    radial-gradient(ellipse at 30% 18%, rgba(214, 244, 255, 0.72), transparent 44%),
    radial-gradient(ellipse at 74% 86%, rgba(233, 225, 255, 0.72), transparent 48%),
    linear-gradient(145deg, rgba(250, 253, 255, 0.96), rgba(235, 244, 255, 0.88));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-visual--single::after {
  content: "";
  position: absolute;
  inset: auto 20% 22px;
  height: 20px;
  border-radius: 999px;
  background: rgba(44, 88, 140, 0.13);
  filter: blur(13px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup {
  position: relative;
  z-index: 1;
  width: clamp(160px, 12.8vw, 218px);
  min-height: 0;
  margin: 0;
  aspect-ratio: 750 / 1600;
  padding: 7px;
  border-radius: 31px;
  background: #050814;
  box-shadow:
    0 22px 56px rgba(18, 42, 80, 0.2),
    0 0 0 1px rgba(2, 8, 20, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 23px;
  background: #fff;
  box-shadow: none;
}

@keyframes qifuyunAppCarousel {
  0%,
  27% {
    z-index: 3;
    opacity: 1;
    filter: blur(0) saturate(1) brightness(1);
    transform: translate(-50%, -50%) translateX(0) scale(1);
  }

  33%,
  60% {
    z-index: 1;
    opacity: 0.34;
    filter: blur(4px) saturate(0.82) brightness(0.94);
    transform: translate(-50%, -50%) translateX(-86%) scale(0.82);
  }

  66%,
  93% {
    z-index: 1;
    opacity: 0.34;
    filter: blur(4px) saturate(0.82) brightness(0.94);
    transform: translate(-50%, -50%) translateX(86%) scale(0.82);
  }

  100% {
    z-index: 3;
    opacity: 1;
    filter: blur(0) saturate(1) brightness(1);
    transform: translate(-50%, -50%) translateX(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--top,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--top,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--bottom {
    min-height: auto;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-carousel,
  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-visual--single {
    min-height: 350px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card {
    width: 170px;
    height: 302px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup {
    width: 178px;
  }
}

/* APP mockup scale pass: show one clean screen inside each phone without touching the card edge. */
.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--top {
  min-height: clamp(430px, 34vw, 510px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-visual--carousel {
  min-height: clamp(340px, 27vw, 430px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-carousel {
  max-width: clamp(520px, 42vw, 660px);
  min-height: clamp(340px, 27vw, 430px);
  padding: clamp(22px, 2.5vw, 34px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card {
  width: clamp(158px, 12vw, 188px);
  height: auto;
  aspect-ratio: 750 / 1600;
  padding: 4px;
  border-radius: 28px;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card img {
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-group--bottom {
  min-height: clamp(300px, 23vw, 370px);
  padding: clamp(22px, 2.6vw, 34px);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-feature-visual--single {
  min-height: clamp(300px, 22vw, 340px);
  max-width: min(560px, 100%);
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup {
  width: clamp(128px, 9.4vw, 150px);
  height: auto;
  aspect-ratio: 750 / 1600;
  padding: 4px;
  border-radius: 28px;
}

.product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup img {
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

@keyframes qifuyunAppCarousel {
  0%,
  27% {
    z-index: 3;
    opacity: 1;
    filter: blur(0) saturate(1) brightness(1);
    transform: translate(-50%, -50%) translateX(0) scale(1);
  }

  33%,
  60% {
    z-index: 1;
    opacity: 0.32;
    filter: blur(4px) saturate(0.84) brightness(0.96);
    transform: translate(-50%, -50%) translateX(-92%) scale(0.82);
  }

  66%,
  93% {
    z-index: 1;
    opacity: 0.32;
    filter: blur(4px) saturate(0.84) brightness(0.96);
    transform: translate(-50%, -50%) translateX(92%) scale(0.82);
  }

  100% {
    z-index: 3;
    opacity: 1;
    filter: blur(0) saturate(1) brightness(1);
    transform: translate(-50%, -50%) translateX(0) scale(1);
  }
}

@media (max-width: 720px) {
  .product-detail[data-product-slug="qifuyun-app"] .app-product-carousel {
    min-height: 330px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-mockup-card {
    width: 150px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-feature-visual--single {
    min-height: 300px;
  }

  .product-detail[data-product-slug="qifuyun-app"] .app-product-single-mockup {
    width: 134px;
  }
}

/* Contact consultation rebuild: one focused form with contact channels and partner context. */
html[data-view="contact"] {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

html[data-view="contact"] body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.contact-layout--consult {
  width: min(1410px, calc(100% - 96px));
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + clamp(34px, 4.5vh, 62px));
  padding-bottom: clamp(34px, 4.6vh, 58px);
  display: flex;
  align-items: center;
}

.contact-consult-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: min(764px, calc(100svh - var(--nav-height) - 104px));
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(430px, 1fr) minmax(330px, 0.82fr);
  gap: clamp(18px, 1.6vw, 24px);
  align-items: stretch;
}

.contact-consult-shell::before {
  content: "";
  position: absolute;
  inset: clamp(-26px, -1.8vw, -18px);
  z-index: -1;
  border: 1px solid rgba(180, 218, 255, 0.1);
  border-radius: 46px;
  background:
    radial-gradient(ellipse at 13% 8%, rgba(67, 184, 255, 0.14), transparent 38%),
    radial-gradient(ellipse at 72% 8%, rgba(255, 171, 68, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.contact-consult-identity,
.contact-consult-form,
.contact-layout--consult .contact-feature-card {
  border: 1px solid rgba(189, 225, 255, 0.17);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.018)),
    rgba(6, 18, 38, 0.5);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
}

.contact-consult-identity {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(18px, 2vh, 24px);
  padding: clamp(28px, 2.7vw, 42px);
  overflow: hidden;
}

.contact-consult-identity h1 {
  max-width: 100%;
  margin: 10px 0 0;
  color: rgba(248, 252, 255, 0.98);
  font-size: clamp(4.05rem, 5.4vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  white-space: normal;
  text-wrap: balance;
}

.contact-consult-identity .page-lead {
  max-width: 26em;
  margin-top: clamp(18px, 2.4vh, 28px);
  color: rgba(224, 239, 255, 0.78);
  font-size: clamp(1rem, 1.04vw, 1.12rem);
  line-height: 1.72;
}

.contact-info--consult {
  align-self: end;
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(158, 205, 255, 0.14);
  border-radius: 26px;
  background: rgba(5, 18, 38, 0.34);
}

.contact-info--consult p {
  min-height: 42px;
  margin: 0;
  padding: 0 15px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(157, 205, 255, 0.13);
  border-radius: 18px;
  background: rgba(4, 17, 36, 0.42);
  color: rgba(229, 241, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-info--consult p:nth-child(2) {
  min-height: 48px;
  font-size: 0.82rem;
  line-height: 1.32;
}

.contact-info--consult p:nth-child(3) {
  color: rgba(249, 252, 255, 0.98);
  font-size: clamp(1.18rem, 1.38vw, 1.42rem);
  font-weight: 820;
}

.contact-info--consult .contact-link-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.contact-info--consult .contact-link-row span {
  min-height: 36px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 205, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 243, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

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

.contact-qr-strip figure {
  min-height: 0;
  margin: 0;
  padding: 14px 10px;
  display: grid;
  justify-items: center;
  gap: 9px;
  border: 1px solid rgba(157, 205, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(5, 18, 38, 0.34);
}

.contact-qr-strip canvas {
  width: clamp(76px, 5.6vw, 92px);
  height: clamp(76px, 5.6vw, 92px);
  border-radius: 14px;
  background: #f8fbff;
}

.contact-qr-strip figcaption {
  color: rgba(232, 243, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
}

.contact-consult-form {
  display: grid;
  align-content: center;
  gap: clamp(13px, 1.45vh, 17px);
  padding: clamp(30px, 3vw, 46px);
}

.contact-form-head {
  margin-bottom: clamp(4px, 1vh, 10px);
}

.contact-form-head h2 {
  margin: 0;
  color: rgba(248, 252, 255, 0.98);
  font-size: clamp(2.1rem, 2.55vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-form-head p {
  margin: 14px 0 0;
  color: rgba(218, 234, 252, 0.72);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.6;
}

.contact-consult-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: rgba(159, 198, 236, 0.9);
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.2;
}

.contact-consult-form input,
.contact-consult-form select,
.contact-consult-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(175, 218, 255, 0.2);
  border-radius: 16px;
  outline: 0;
  background: rgba(8, 24, 48, 0.58);
  color: rgba(248, 252, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-consult-form input::placeholder,
.contact-consult-form textarea::placeholder {
  color: rgba(186, 210, 235, 0.52);
}

.contact-consult-form input:focus,
.contact-consult-form select:focus,
.contact-consult-form textarea:focus {
  border-color: rgba(255, 193, 93, 0.42);
  background: rgba(10, 29, 56, 0.68);
  box-shadow:
    0 0 0 4px rgba(255, 159, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-consult-form textarea {
  min-height: clamp(112px, 12vh, 142px);
  padding-top: 16px;
  line-height: 1.55;
  resize: vertical;
}

.contact-consult-form button {
  min-height: 58px;
  margin-top: 2px;
  border-radius: 17px;
  background:
    linear-gradient(135deg, #f0c94c, #c8972b),
    #d9ad35;
  color: #08111f;
  font-size: 1rem;
  font-weight: 860;
  box-shadow:
    0 18px 46px rgba(216, 164, 46, 0.22),
    inset 0 1px 0 rgba(255, 249, 220, 0.46);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.contact-consult-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 22px 54px rgba(216, 164, 46, 0.28),
    inset 0 1px 0 rgba(255, 249, 220, 0.5);
}

.contact-form-note {
  margin: 0;
  color: rgba(181, 207, 236, 0.66);
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-consult-opportunity {
  display: grid;
  grid-template-rows: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(18px, 1.6vw, 24px);
}

.contact-layout--consult .contact-feature-card {
  grid-area: auto !important;
  display: grid !important;
  align-content: start;
  min-height: 0;
  padding: clamp(22px, 2.1vw, 30px);
  overflow: hidden;
}

.contact-layout--consult .contact-feature-card::before,
.contact-layout--consult .contact-feature-card::after {
  display: none !important;
}

.contact-layout--consult .contact-feature-card .section-label {
  margin: 0 0 10px;
  color: rgba(116, 195, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0;
}

.contact-layout--consult .contact-feature-card h2 {
  max-width: 100%;
  margin: 0;
  color: rgba(248, 252, 255, 0.98);
  font-size: clamp(1.54rem, 1.75vw, 2rem);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-layout--consult .contact-feature-card p {
  max-width: 100%;
  margin: 12px 0 0;
  color: rgba(218, 234, 252, 0.72);
  font-size: clamp(0.86rem, 0.88vw, 0.95rem);
  line-height: 1.66;
}

.contact-layout--consult .contact-feature-card h3 {
  margin: 14px 0 0;
  color: rgba(157, 210, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 820;
  line-height: 1.2;
}

.contact-layout--consult .partner-ability-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.contact-layout--consult .partner-ability-cloud span {
  min-height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(157, 205, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(232, 243, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
}

.contact-layout--consult .contact-feature-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.contact-layout--consult .contact-feature-card li {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(157, 205, 255, 0.13);
  border-radius: 14px;
  background: rgba(5, 18, 38, 0.28);
  color: rgba(229, 241, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.38;
}

@media (min-width: 1181px) and (max-height: 830px) {
  .contact-layout--consult {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 28px;
  }

  .contact-consult-shell {
    min-height: calc(100svh - var(--nav-height) - 52px);
  }

  .contact-consult-identity,
  .contact-consult-form,
  .contact-layout--consult .contact-feature-card {
    border-radius: 30px;
  }

  .contact-consult-identity,
  .contact-consult-form {
    padding: 26px;
  }

  .contact-consult-identity h1 {
    font-size: clamp(3.4rem, 5vw, 5.1rem);
  }

  .contact-consult-identity .page-lead {
    margin-top: 16px;
    line-height: 1.58;
  }

  .contact-consult-form {
    gap: 11px;
  }

  .contact-consult-form textarea {
    min-height: 92px;
  }

  .contact-layout--consult .contact-feature-card {
    padding: 20px;
  }
}

@media (max-width: 1180px) {
  .contact-layout--consult {
    width: min(100% - 56px, 960px);
    align-items: flex-start;
  }

  .contact-consult-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: auto;
  }

  .contact-consult-opportunity {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
}

@media (max-width: 820px) {
  .contact-layout--consult {
    width: min(100% - 32px, 640px);
    padding-top: calc(var(--nav-height) + 26px);
  }

  .contact-consult-shell,
  .contact-consult-opportunity {
    grid-template-columns: 1fr;
  }

  .contact-consult-identity h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

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

/* Contact air layout pass: reduce density and give the form a calmer reading area. */
.contact-layout--air {
  width: min(1450px, calc(100% - 88px));
  padding-top: calc(var(--nav-height) + clamp(28px, 3.8vh, 48px));
  padding-bottom: clamp(30px, 4vh, 48px);
}

.contact-air-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: min(770px, calc(100svh - var(--nav-height) - 86px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(18px, 1.7vw, 24px);
}

.contact-air-shell::before {
  content: "";
  position: absolute;
  inset: clamp(-24px, -1.8vw, -16px);
  z-index: -1;
  border: 1px solid rgba(180, 218, 255, 0.1);
  border-radius: 46px;
  background:
    radial-gradient(ellipse at 12% 16%, rgba(67, 184, 255, 0.13), transparent 38%),
    radial-gradient(ellipse at 74% 12%, rgba(255, 171, 68, 0.07), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.contact-air-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.68fr);
  gap: clamp(22px, 2.4vw, 34px);
  align-items: end;
  padding: clamp(24px, 2.5vw, 34px) clamp(28px, 3vw, 42px);
  border: 1px solid rgba(189, 225, 255, 0.15);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.018)),
    rgba(6, 18, 38, 0.45);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.contact-air-head h1 {
  margin: 8px 0 0;
  color: rgba(248, 252, 255, 0.98);
  font-size: clamp(3.25rem, 4.6vw, 5.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.contact-air-head .page-lead {
  max-width: 36em;
  margin: 16px 0 0;
  color: rgba(224, 239, 255, 0.76);
  font-size: clamp(1rem, 1.02vw, 1.1rem);
  line-height: 1.72;
}

.contact-air-head .contact-info--consult {
  align-self: stretch;
  padding: 12px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.42fr);
  grid-template-areas:
    "label company"
    "phone links";
  gap: 9px;
}

.contact-air-head .contact-info--consult p:nth-child(1) {
  grid-area: label;
}

.contact-air-head .contact-info--consult p:nth-child(2) {
  grid-area: company;
  min-height: 42px;
  white-space: normal;
}

.contact-air-head .contact-info--consult p:nth-child(3) {
  grid-area: phone;
  min-height: 42px;
}

.contact-air-head .contact-info--consult .contact-link-row {
  grid-area: links;
  align-self: stretch;
}

.contact-air-main {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(620px, 1.12fr);
  gap: clamp(18px, 1.7vw, 24px);
  min-height: 0;
}

.contact-air-main .contact-consult-form {
  min-height: 0;
  padding: clamp(28px, 2.7vw, 40px);
  align-content: center;
}

.contact-air-main .contact-form-head h2 {
  font-size: clamp(2.05rem, 2.28vw, 2.75rem);
}

.contact-air-main .contact-consult-form input,
.contact-air-main .contact-consult-form select,
.contact-air-main .contact-consult-form textarea {
  min-height: 52px;
}

.contact-air-main .contact-consult-form textarea {
  min-height: clamp(112px, 13vh, 138px);
}

.contact-air-content {
  display: grid;
  grid-template-rows: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(18px, 1.7vw, 24px);
  min-width: 0;
  min-height: 0;
}

.contact-air-content .contact-feature-card--partner {
  padding: clamp(24px, 2.4vw, 34px);
}

.contact-air-content .contact-feature-card--partner h2 {
  font-size: clamp(1.78rem, 2.1vw, 2.5rem);
}

.contact-air-content .contact-feature-card--partner p {
  max-width: 62em;
  margin-top: 12px;
  line-height: 1.62;
}

.contact-air-content .partner-ability-cloud {
  gap: 9px;
}

.contact-air-content .partner-ability-cloud span {
  min-height: 34px;
  padding-inline: 13px;
  font-size: 0.82rem;
}

.contact-air-lower {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(260px, 0.72fr);
  gap: clamp(18px, 1.7vw, 24px);
  min-width: 0;
  min-height: 0;
}

.contact-air-lower .contact-feature-card--alliance {
  padding: clamp(22px, 2.2vw, 30px);
}

.contact-air-lower .contact-feature-card--alliance h2 {
  font-size: clamp(1.58rem, 1.75vw, 2.1rem);
}

.contact-air-lower .contact-feature-card--alliance p {
  margin-top: 10px;
}

.contact-air-lower .contact-feature-card--alliance li {
  font-size: 0.84rem;
}

.contact-qr-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
  padding: clamp(18px, 1.9vw, 24px);
  border: 1px solid rgba(189, 225, 255, 0.17);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.018)),
    rgba(6, 18, 38, 0.46);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
}

.contact-qr-card figure {
  grid-template-columns: auto minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  gap: 14px;
  padding: 12px;
  text-align: left;
}

.contact-qr-card canvas {
  width: clamp(84px, 5.8vw, 104px);
  height: clamp(84px, 5.8vw, 104px);
}

.contact-qr-card figcaption {
  text-align: left;
  font-size: 0.9rem;
}

@media (min-width: 1181px) and (max-height: 830px) {
  .contact-layout--air {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 26px;
  }

  .contact-air-shell {
    min-height: calc(100svh - var(--nav-height) - 46px);
    gap: 16px;
  }

  .contact-air-head {
    padding: 22px 28px;
  }

  .contact-air-head h1 {
    font-size: clamp(3rem, 4vw, 4.45rem);
  }

  .contact-air-main {
    gap: 16px;
  }

  .contact-air-content,
  .contact-air-lower {
    gap: 16px;
  }

  .contact-air-main .contact-consult-form {
    gap: 10px;
    padding: 26px 30px;
  }

  .contact-air-main .contact-consult-form textarea {
    min-height: 96px;
  }

  .contact-air-content .contact-feature-card--partner,
  .contact-air-lower .contact-feature-card--alliance,
  .contact-qr-card {
    padding: 20px;
  }
}

@media (max-width: 1180px) {
  .contact-layout--air {
    width: min(100% - 56px, 980px);
  }

  .contact-air-shell,
  .contact-air-main,
  .contact-air-head,
  .contact-air-lower {
    grid-template-columns: 1fr;
  }

  .contact-air-head .contact-info--consult {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "company"
      "phone"
      "links";
  }

  .contact-air-content {
    grid-template-rows: auto;
  }
}

@media (max-width: 640px) {
  .contact-layout--air {
    width: min(100% - 32px, 640px);
  }

  .contact-air-head h1 {
    font-size: clamp(2.72rem, 13vw, 4rem);
  }

  .contact-qr-card figure {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-qr-card figcaption {
    text-align: center;
  }
}

/* Contact air layout fit pass: move QR codes to the header and keep the desktop view complete. */
.contact-air-head {
  grid-template-columns: minmax(350px, 1fr) minmax(390px, 0.72fr) minmax(230px, 0.42fr);
  align-items: stretch;
  padding: clamp(20px, 2vw, 28px) clamp(24px, 2.7vw, 38px);
}

.contact-air-head h1 {
  font-size: clamp(3.15rem, 4.25vw, 4.9rem);
}

.contact-air-head .page-lead {
  margin-top: 12px;
}

.contact-air-head .contact-info--consult {
  align-self: stretch;
}

.contact-air-head .contact-info--consult p {
  min-height: 38px;
}

.contact-air-head .contact-info--consult p:nth-child(3) {
  min-height: 38px;
  font-size: clamp(1.02rem, 1.12vw, 1.2rem);
  white-space: nowrap;
}

.contact-air-head .contact-info--consult .contact-link-row span {
  min-height: 34px;
}

.contact-qr-card--head {
  align-self: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 26px;
}

.contact-qr-card--head figure {
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 10px 8px;
  text-align: center;
}

.contact-qr-card--head canvas {
  width: clamp(70px, 5vw, 82px);
  height: clamp(70px, 5vw, 82px);
  border-radius: 13px;
}

.contact-qr-card--head figcaption {
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.22;
}

.contact-air-main {
  grid-template-columns: minmax(430px, 0.82fr) minmax(670px, 1.18fr);
  min-height: min(524px, calc(100svh - var(--nav-height) - 290px));
}

.contact-air-content {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-rows: 1fr;
}

.contact-air-lower {
  display: block;
  min-height: 0;
}

.contact-air-main .contact-consult-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: clamp(24px, 2.25vw, 34px);
}

.contact-air-main .contact-form-head,
.contact-air-main .contact-consult-form label:nth-of-type(3),
.contact-air-main .contact-field--message,
.contact-air-main .contact-consult-form button,
.contact-air-main .contact-form-note {
  grid-column: 1 / -1;
}

.contact-air-main .contact-form-head h2 {
  font-size: clamp(1.9rem, 2.08vw, 2.48rem);
}

.contact-air-main .contact-form-head p {
  margin-top: 10px;
}

.contact-air-main .contact-consult-form label {
  gap: 7px;
}

.contact-air-main .contact-consult-form input,
.contact-air-main .contact-consult-form select,
.contact-air-main .contact-consult-form textarea {
  min-height: 48px;
  border-radius: 15px;
}

.contact-air-main .contact-consult-form textarea {
  min-height: clamp(92px, 10.5vh, 112px);
}

.contact-air-main .contact-consult-form button {
  min-height: 52px;
}

.contact-air-content .contact-feature-card--partner,
.contact-air-lower .contact-feature-card--alliance {
  height: 100%;
}

.contact-air-content .contact-feature-card--partner,
.contact-air-content .contact-feature-card--alliance {
  padding: clamp(22px, 2vw, 28px);
}

.contact-air-content .contact-feature-card--partner h2 {
  font-size: clamp(1.7rem, 1.92vw, 2.25rem);
}

.contact-air-lower .contact-feature-card--alliance h2 {
  font-size: clamp(1.48rem, 1.62vw, 1.95rem);
}

.contact-air-lower .contact-feature-card--alliance ul {
  gap: 7px;
}

.contact-air-lower .contact-feature-card--alliance li {
  padding: 8px 11px;
}

@media (min-width: 1181px) and (max-height: 830px) {
  .contact-air-head {
    padding: 18px 26px;
  }

  .contact-air-main {
    min-height: calc(100svh - var(--nav-height) - 236px);
  }

  .contact-air-main .contact-consult-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 22px 28px;
  }

  .contact-air-main .contact-consult-form textarea {
    min-height: 82px;
  }
}

@media (max-width: 1180px) {
  .contact-air-head {
    grid-template-columns: 1fr;
  }

  .contact-air-main {
    min-height: auto;
  }

  .contact-air-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 1180px) {
  .contact-layout--air {
    width: min(100% - 56px, 980px);
  }

  .contact-air-head,
  .contact-air-main,
  .contact-air-content {
    grid-template-columns: 1fr !important;
  }

  .contact-air-head .contact-info--consult {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "company"
      "phone"
      "links";
  }
}

@media (max-width: 720px) {
  .contact-air-main .contact-consult-form {
    grid-template-columns: 1fr;
  }
}

/* Contact bottom info pass: move contact channels below partner cards and use real QR images. */
.contact-layout--air {
  width: min(1450px, calc(100% - 88px));
  padding-top: calc(var(--nav-height) + clamp(26px, 3.4vh, 42px));
  padding-bottom: clamp(28px, 3.6vh, 42px);
}

.contact-air-shell {
  min-height: min(768px, calc(100svh - var(--nav-height) - 76px));
  gap: clamp(16px, 1.45vw, 22px);
}

.contact-air-head {
  grid-template-columns: 1fr !important;
  align-items: start;
  padding: clamp(24px, 2.4vw, 34px) clamp(30px, 3vw, 46px);
}

.contact-air-head h1 {
  max-width: none;
  font-size: clamp(3.35rem, 4.55vw, 5.45rem);
  line-height: 0.98;
}

.contact-air-head .page-lead {
  max-width: 48em;
  margin-top: 12px;
}

.contact-air-main {
  grid-template-columns: minmax(430px, 0.78fr) minmax(720px, 1.22fr);
  min-height: min(558px, calc(100svh - var(--nav-height) - 282px));
}

.contact-air-content {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(16px, 1.45vw, 22px);
}

.contact-air-card-row {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(16px, 1.45vw, 22px);
  min-width: 0;
  min-height: 0;
}

.contact-air-card-row .contact-feature-card {
  height: auto;
  min-height: 0;
  padding: clamp(20px, 1.8vw, 26px);
}

.contact-air-card-row .contact-feature-card--partner h2 {
  font-size: clamp(1.62rem, 1.82vw, 2.16rem);
}

.contact-air-card-row .contact-feature-card--alliance h2 {
  font-size: clamp(1.46rem, 1.58vw, 1.9rem);
}

.contact-air-card-row .contact-feature-card p {
  margin-top: 10px;
  line-height: 1.58;
}

.contact-air-card-row .contact-feature-card h3 {
  margin-top: 12px;
}

.contact-air-card-row .partner-ability-cloud {
  gap: 7px;
  margin-top: 10px;
}

.contact-air-card-row .partner-ability-cloud span {
  min-height: 30px;
  padding-inline: 11px;
  font-size: 0.8rem;
}

.contact-air-card-row .contact-feature-card li {
  padding: 8px 10px;
}

.contact-air-footer {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(330px, 0.88fr);
  gap: clamp(16px, 1.45vw, 22px);
  min-width: 0;
}

.contact-info--footer {
  align-self: stretch;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  grid-template-areas:
    "label company"
    "phone links";
  gap: 9px;
  padding: 12px;
  border-radius: 28px;
}

.contact-info--footer p:nth-child(1) {
  grid-area: label;
}

.contact-info--footer p:nth-child(2) {
  grid-area: company;
  min-height: 44px;
  white-space: normal;
}

.contact-info--footer p:nth-child(3) {
  grid-area: phone;
  min-height: 44px;
  white-space: nowrap;
}

.contact-info--footer .contact-link-row {
  grid-area: links;
  align-self: stretch;
}

.contact-qr-card--bottom {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border-radius: 28px;
}

.contact-qr-card--bottom figure {
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  gap: 9px;
  padding: 12px;
  text-align: center;
}

.contact-qr-card--bottom img {
  width: clamp(104px, 7.2vw, 128px);
  height: clamp(104px, 7.2vw, 128px);
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.42);
}

.contact-qr-card--bottom figcaption {
  max-width: 100%;
  color: rgba(239, 247, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.24;
  text-align: center;
}

@media (min-width: 1181px) and (max-height: 830px) {
  .contact-layout--air {
    padding-top: calc(var(--nav-height) + 18px);
    padding-bottom: 24px;
  }

  .contact-air-head {
    padding: 22px 32px;
  }

  .contact-air-main {
    min-height: calc(100svh - var(--nav-height) - 220px);
  }

  .contact-air-card-row .contact-feature-card {
    padding: 20px;
  }

  .contact-air-card-row .contact-feature-card p {
    line-height: 1.5;
  }

  .contact-qr-card--bottom img {
    width: 106px;
    height: 106px;
  }
}

@media (max-width: 1180px) {
  .contact-air-main,
  .contact-air-content,
  .contact-air-card-row,
  .contact-air-footer {
    grid-template-columns: 1fr !important;
  }

  .contact-air-main {
    min-height: auto;
  }

  .contact-qr-card--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-info--footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "company"
      "phone"
      "links";
  }
}

/* Contact footer fit cleanup: prevent phone/link crowding while keeping the QR block larger. */
.contact-air-footer {
  grid-template-columns: minmax(440px, 1fr) minmax(360px, 0.88fr);
}

.contact-info--footer {
  grid-template-columns: minmax(168px, 0.52fr) minmax(0, 1.48fr);
}

.contact-info--footer p {
  padding-inline: 13px;
}

.contact-info--footer p:nth-child(3) {
  font-size: clamp(1rem, 1.06vw, 1.16rem);
}

.contact-info--footer .contact-link-row {
  gap: 8px;
}

.contact-info--footer .contact-link-row span {
  min-height: 40px;
  padding-inline: 9px;
  font-size: 0.82rem;
}

.contact-qr-card--bottom img {
  width: clamp(112px, 8.2vw, 136px);
  height: clamp(112px, 8.2vw, 136px);
}

@media (max-width: 1180px) {
  .contact-air-footer {
    grid-template-columns: 1fr !important;
  }
}

/* Contact QR/header placement pass: QR lives in the top-right hero space; footer info spans the right column. */
.contact-air-head {
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.35fr) !important;
  align-items: center;
  min-height: clamp(214px, 18vw, 252px);
  gap: clamp(28px, 4.4vw, 72px);
}

.contact-air-head > div:first-child {
  min-width: 0;
}

.contact-qr-card--head {
  justify-self: end;
  width: min(100%, 360px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.018)),
    rgba(6, 18, 38, 0.48);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.contact-qr-card--head figure {
  min-height: 158px;
  padding: 13px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  border-radius: 22px;
}

.contact-qr-card--head img {
  width: clamp(106px, 7.3vw, 126px);
  height: clamp(106px, 7.3vw, 126px);
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.42);
}

.contact-qr-card--head figcaption {
  color: rgba(239, 247, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
}

.contact-air-content {
  grid-template-rows: minmax(0, 1fr) auto;
}

.contact-air-footer {
  display: block;
  width: 100%;
}

.contact-info--footer {
  width: 100%;
  min-height: 126px;
  grid-template-columns: minmax(126px, 0.42fr) minmax(270px, 1.15fr) minmax(156px, 0.55fr) minmax(245px, 0.9fr);
  grid-template-areas: "label company phone links";
  align-items: stretch;
  padding: 13px;
}

.contact-info--footer p {
  min-height: 58px;
}

.contact-info--footer p:nth-child(2) {
  min-height: 58px;
  font-size: 0.82rem;
}

.contact-info--footer p:nth-child(3) {
  min-height: 58px;
  font-size: clamp(1rem, 1.08vw, 1.18rem);
}

.contact-info--footer .contact-link-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-info--footer .contact-link-row span {
  min-height: 58px;
  border-radius: 18px;
}

@media (min-width: 1181px) and (max-height: 830px) {
  .contact-air-head {
    min-height: 196px;
  }

  .contact-qr-card--head figure {
    min-height: 138px;
  }

  .contact-qr-card--head img {
    width: 108px;
    height: 108px;
  }

  .contact-info--footer {
    min-height: 106px;
  }

  .contact-info--footer p,
  .contact-info--footer p:nth-child(2),
  .contact-info--footer p:nth-child(3),
  .contact-info--footer .contact-link-row span {
    min-height: 48px;
  }
}

@media (max-width: 1180px) {
  .contact-air-head {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .contact-qr-card--head {
    justify-self: stretch;
    width: 100%;
  }

  .contact-info--footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "company"
      "phone"
      "links";
  }
}

/* Contact desktop fit polish: keep the wide footer fully visible without crowding. */
.contact-layout--air {
  padding-top: calc(var(--nav-height) + clamp(20px, 2.8vh, 34px));
  padding-bottom: clamp(22px, 3vh, 34px);
}

.contact-air-shell {
  min-height: min(724px, calc(100svh - var(--nav-height) - 60px));
  gap: clamp(14px, 1.2vw, 18px);
}

.contact-air-head {
  min-height: clamp(194px, 16.2vw, 226px);
  padding: clamp(22px, 2.2vw, 30px) clamp(30px, 3vw, 46px);
}

.contact-air-main {
  min-height: min(512px, calc(100svh - var(--nav-height) - 248px));
  gap: clamp(14px, 1.2vw, 18px);
}

.contact-air-content,
.contact-air-card-row {
  gap: clamp(14px, 1.2vw, 18px);
}

.contact-air-card-row .contact-feature-card {
  padding: clamp(19px, 1.7vw, 24px);
}

.contact-air-main .contact-consult-form {
  padding: clamp(22px, 2vw, 30px);
}

.contact-info--footer {
  min-height: 108px;
  padding: 10px;
  gap: 8px;
}

.contact-info--footer p,
.contact-info--footer p:nth-child(2),
.contact-info--footer p:nth-child(3),
.contact-info--footer .contact-link-row span {
  min-height: 48px;
}

/* Contact footer duplicate link cleanup. */
.contact-info--footer {
  grid-template-columns: minmax(150px, 0.7fr) minmax(360px, 1.35fr) minmax(180px, 0.75fr);
  grid-template-areas: "label company phone";
  min-height: 82px;
  padding: 10px;
  gap: 10px;
}

.contact-info--footer .contact-link-row {
  display: none !important;
}

.contact-info--footer p,
.contact-info--footer p:nth-child(2),
.contact-info--footer p:nth-child(3) {
  min-height: 54px;
}

@media (max-width: 1180px) {
  .contact-info--footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "company"
      "phone";
  }
}

/* Contact final reflow: remove repeated copy blocks and give the consultation form room to breathe. */
.site-nav .brand-mark span.brand-symbol {
  width: 132px;
  height: 38px;
}

.site-nav .brand-mark span.brand-symbol img {
  height: 38px;
}

.contact-layout--air {
  padding-top: calc(var(--nav-height) + clamp(22px, 3vh, 36px));
  padding-bottom: clamp(22px, 3.2vh, 38px);
}

.contact-air-shell {
  width: min(1360px, calc(100vw - 76px));
  min-height: min(720px, calc(100svh - var(--nav-height) - 62px));
  padding: clamp(20px, 2.1vw, 30px);
  gap: clamp(16px, 1.45vw, 22px);
}

.contact-air-head {
  min-height: clamp(176px, 14vw, 210px);
  grid-template-columns: minmax(0, 1fr) minmax(332px, 356px) !important;
  padding: clamp(24px, 2.5vw, 38px) clamp(32px, 3.2vw, 52px);
  gap: clamp(28px, 4vw, 70px);
}

.contact-air-head .page-kicker {
  display: none !important;
}

.contact-air-head h1 {
  max-width: 820px;
  font-size: clamp(4rem, 5.2vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.contact-air-head .page-lead {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(226, 240, 255, 0.78);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.72;
}

.contact-qr-card--head {
  width: min(100%, 352px);
  padding: 13px;
  border-radius: 28px;
}

.contact-qr-card--head figure {
  min-height: 152px;
  padding: 12px;
}

.contact-qr-card--head img {
  width: clamp(106px, 7vw, 124px);
  height: clamp(106px, 7vw, 124px);
}

.contact-air-main--focused {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(330px, 0.56fr);
  align-items: stretch;
  min-height: min(430px, calc(100svh - var(--nav-height) - 286px));
  gap: clamp(16px, 1.5vw, 22px);
}

.contact-air-main--focused .contact-consult-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 15px 16px;
  min-height: 100%;
  padding: clamp(26px, 2.25vw, 36px);
  border-radius: 30px;
  background:
    linear-gradient(152deg, rgba(42, 76, 103, 0.62), rgba(9, 22, 44, 0.78)),
    rgba(8, 19, 39, 0.72);
  border: 1px solid rgba(154, 201, 242, 0.18);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-air-main--focused .contact-form-head,
.contact-air-main--focused .contact-consult-form label:nth-of-type(3),
.contact-air-main--focused .contact-field--message,
.contact-air-main--focused .contact-consult-form button {
  grid-column: 1 / -1;
}

.contact-air-main--focused .contact-form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 6px;
}

.contact-air-main--focused .contact-form-head h2 {
  color: #f7fbff;
  font-size: clamp(2rem, 2.7vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.contact-air-main--focused .contact-form-head p,
.contact-air-main--focused .contact-consult-form label span {
  color: rgba(184, 215, 244, 0.8);
}

.contact-air-main--focused .contact-consult-form input,
.contact-air-main--focused .contact-consult-form select,
.contact-air-main--focused .contact-consult-form textarea {
  min-height: 54px;
  color: rgba(241, 248, 255, 0.95);
  background: rgba(5, 17, 37, 0.74);
  border: 1px solid rgba(155, 200, 238, 0.17);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.contact-air-main--focused .contact-consult-form textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-air-main--focused .contact-consult-form input::placeholder,
.contact-air-main--focused .contact-consult-form textarea::placeholder {
  color: rgba(165, 192, 216, 0.58);
}

.contact-air-main--focused .contact-consult-form input:focus,
.contact-air-main--focused .contact-consult-form select:focus,
.contact-air-main--focused .contact-consult-form textarea:focus {
  border-color: rgba(74, 167, 255, 0.82);
  box-shadow:
    0 0 0 3px rgba(74, 167, 255, 0.16),
    0 0 22px rgba(82, 102, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-air-main--focused .contact-consult-form button {
  justify-self: start;
  width: min(320px, 100%);
  min-height: 58px;
  border-radius: 18px;
  color: #fff;
  border: 1px solid rgba(122, 193, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.94), rgba(124, 92, 255, 0.82)),
    #154dac;
  box-shadow:
    0 18px 48px rgba(47, 140, 255, 0.32),
    0 0 0 1px rgba(209, 237, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-air-main--focused .contact-consult-form button:hover {
  background:
    linear-gradient(135deg, rgba(62, 177, 255, 0.98), rgba(126, 96, 255, 0.9)),
    #1e61cf;
  transform: translateY(-1px);
}

.contact-air-side {
  display: grid;
  align-content: stretch;
  min-height: 100%;
}

.contact-info--side {
  display: grid;
  grid-template-columns: 1fr;
  align-content: stretch;
  gap: 14px;
  height: 100%;
  padding: clamp(18px, 1.8vw, 24px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 24% 12%, rgba(219, 174, 82, 0.16), transparent 34%),
    linear-gradient(154deg, rgba(31, 58, 84, 0.66), rgba(8, 19, 39, 0.82));
  border: 1px solid rgba(154, 201, 242, 0.16);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-info--side p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 82px;
  margin: 0;
  padding: 18px 20px;
  border-radius: 20px;
  color: rgba(234, 244, 255, 0.86);
  background: rgba(4, 15, 33, 0.62);
  border: 1px solid rgba(154, 201, 242, 0.13);
}

.contact-info--side p:first-child {
  min-height: 112px;
}

.contact-info--side p:nth-child(2) {
  min-height: 118px;
}

.contact-info--side p:nth-child(3) {
  min-height: 112px;
}

.contact-info--side p span {
  color: rgba(127, 215, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 840;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.contact-info--side p strong {
  color: rgba(244, 249, 255, 0.94);
  font-size: clamp(1.02rem, 1.13vw, 1.2rem);
  font-weight: 820;
  line-height: 1.45;
  text-align: center;
}

.contact-info--side p:nth-child(2) strong {
  color: #f8fbff;
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
  line-height: 1;
}

.contact-info--side p:nth-child(3) strong {
  color: rgba(211, 237, 255, 0.92);
  font-size: clamp(1.1rem, 1.3vw, 1.34rem);
}

.contact-air-main--focused .contact-form-note {
  display: none !important;
}

@media (min-width: 1181px) and (max-height: 830px) {
  .site-nav .brand-mark span.brand-symbol {
    width: 124px;
    height: 36px;
  }

  .site-nav .brand-mark span.brand-symbol img {
    height: 36px;
  }

  .contact-air-head {
    min-height: 160px;
    padding-block: 22px;
  }

  .contact-air-head h1 {
    font-size: clamp(3.4rem, 4.5vw, 5.1rem);
  }

  .contact-air-head .page-lead {
    margin-top: 12px;
  }

  .contact-air-main--focused {
    min-height: 400px;
  }

  .contact-air-main--focused .contact-consult-form {
    padding: 24px;
  }

  .contact-air-main--focused .contact-consult-form textarea {
    min-height: 104px;
  }
}

@media (max-width: 1180px) {
  .contact-air-shell {
    width: min(100%, calc(100vw - 28px));
    min-height: auto;
  }

  .contact-air-head,
  .contact-air-main--focused {
    grid-template-columns: 1fr !important;
  }

  .contact-air-main--focused {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-nav .brand-mark span.brand-symbol {
    width: 104px;
    height: 30px;
  }

  .site-nav .brand-mark span.brand-symbol img {
    height: 30px;
  }

  .contact-air-main--focused .contact-consult-form {
    grid-template-columns: 1fr;
  }
}

/* Contact custom select: replace the browser dropdown with a page-native blue control. */
.contact-air-main--focused .contact-field--select {
  position: relative;
  z-index: 12;
}

.contact-select {
  position: relative;
  width: 100%;
}

.contact-air-main--focused .contact-consult-form .contact-select__button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px 0 20px;
  border-radius: 16px;
  color: rgba(243, 249, 255, 0.96);
  text-align: left;
  border: 1px solid rgba(155, 200, 238, 0.17);
  background: rgba(5, 17, 37, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transform: none;
}

.contact-air-main--focused .contact-consult-form .contact-select__button::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid rgba(142, 218, 255, 0.9);
  border-bottom: 2px solid rgba(142, 218, 255, 0.9);
  transform: rotate(45deg) translateY(-2px);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.contact-select.is-open .contact-select__button,
.contact-air-main--focused .contact-consult-form .contact-select__button:focus-visible {
  border-color: rgba(74, 167, 255, 0.82);
  background: rgba(5, 17, 37, 0.74);
  box-shadow:
    0 0 0 3px rgba(74, 167, 255, 0.16),
    0 0 22px rgba(82, 102, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.contact-select.is-open .contact-select__button::after {
  border-color: rgba(210, 238, 255, 0.96);
  transform: rotate(225deg) translate(-2px, -2px);
}

.contact-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  z-index: 30;
  border: 1px solid rgba(184, 207, 232, 0.76);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 42px rgba(3, 16, 33, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-select.is-open .contact-select__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-air-main--focused .contact-consult-form .contact-select__option {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 13px;
  color: #1a2c42;
  text-align: left;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  transform: none;
}

.contact-air-main--focused .contact-consult-form .contact-select__option:hover {
  color: #0d4ea6;
  border-color: rgba(71, 150, 238, 0.18);
  background: rgba(236, 247, 255, 0.96);
}

.contact-air-main--focused .contact-consult-form .contact-select__option.is-selected {
  color: #075ec7;
  border-color: rgba(66, 153, 245, 0.26);
  background: linear-gradient(135deg, rgba(228, 243, 255, 0.98), rgba(239, 235, 255, 0.96));
  box-shadow: inset 3px 0 0 rgba(62, 147, 255, 0.84);
}

.contact-air-main--focused .contact-consult-form button.contact-select__button,
.contact-air-main--focused .contact-consult-form button.contact-select__button:hover,
.contact-air-main--focused .contact-consult-form button.contact-select__button:focus-visible {
  width: 100%;
  min-height: 56px;
  color: rgba(243, 249, 255, 0.96);
  border: 1px solid rgba(155, 200, 238, 0.17);
  background: rgba(5, 17, 37, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transform: none;
}

.contact-air-main--focused .contact-consult-form .contact-select.is-open button.contact-select__button,
.contact-air-main--focused .contact-consult-form .contact-select.is-open button.contact-select__button:hover {
  border-color: rgba(74, 167, 255, 0.82);
  background: rgba(5, 17, 37, 0.74);
  box-shadow:
    0 0 0 3px rgba(74, 167, 255, 0.16),
    0 0 22px rgba(82, 102, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-air-main--focused .contact-consult-form button.contact-select__option,
.contact-air-main--focused .contact-consult-form button.contact-select__option:hover {
  width: 100%;
  min-height: 44px;
  color: #1a2c42;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: none;
  transform: none;
}

.contact-air-main--focused .contact-consult-form button.contact-select__option:hover {
  color: #0d4ea6;
  border-color: rgba(71, 150, 238, 0.18);
  background: rgba(236, 247, 255, 0.96);
}

.contact-air-main--focused .contact-consult-form button.contact-select__option.is-selected,
.contact-air-main--focused .contact-consult-form button.contact-select__option.is-selected:hover {
  color: #075ec7;
  border-color: rgba(66, 153, 245, 0.26);
  background: linear-gradient(135deg, rgba(228, 243, 255, 0.98), rgba(239, 235, 255, 0.96));
  box-shadow: inset 3px 0 0 rgba(62, 147, 255, 0.84);
}

/* Site-wide ICP beian footer
   Keep below site-nav (80) but above page veils.
   Must not overlap product-tabs dock — that bar lives inside an isolated
   stacking context and would lose click hit-testing to this layer. */
:root {
  --site-beian-height: 36px;
}

.site-beian {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(var(--site-beian-height) + env(safe-area-inset-bottom, 0px));
  padding: 0 16px env(safe-area-inset-bottom, 0px);
  pointer-events: none;
}

.site-beian a {
  pointer-events: auto;
  color: rgba(199, 220, 244, 0.55);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 200ms ease;
}

.site-beian a:hover {
  color: rgba(229, 241, 255, 0.88);
  text-decoration: underline;
}

/* Lift docked product switcher above the beian strip so clicks work */
.product-tabs.is-docked {
  bottom: calc(var(--site-beian-height, 36px) + env(safe-area-inset-bottom, 0px) + 14px) !important;
}

.products-layout.is-product-tabs-docked .product-content-shell {
  padding-bottom: calc(clamp(180px, 17vh, 248px) + var(--site-beian-height, 36px) + 14px);
}
