@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

:root {
  --black: #050505;
  --panel: #0a0a0a;
  --panel-2: #0f0f0f;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --white: #fafafa;
  --muted: #a7a6a6;
  --dim: #6f6f6f;
  --ice: #9bd8ff;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: 'Manrope', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

body.contact-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -100px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.page-inner .site-header {
  border-color: var(--line-soft);
  background: rgba(5, 5, 5, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr 250px;
  align-items: center;
  width: min(1360px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 124px;
  height: auto;
}

.brand .brand-primary-logo {
  width: 104px;
}

.brand .brand-openocto-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a,
.footer-links a,
.text-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current='page'],
.header-utility[aria-current='page'],
.footer-links a:hover,
.text-link:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
}

.header-utility {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.header-utility:hover {
  color: #fff;
}

/* The homepage starts transparent with the nav on the right, then centers it as the dark bar appears. */
.page-home .site-header {
  --home-nav-progress: 0;
  --home-nav-shift: 0px;
  --home-nav-bg-alpha: 0;
  top: calc(var(--home-nav-progress) * 10px);
  right: 0;
  left: 0;
  width: calc(100% - (var(--home-nav-progress) * 112px));
  height: calc(96px - (var(--home-nav-progress) * 14px));
  margin: 0 auto;
  transform: none;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: calc(var(--home-nav-progress) * 8px);
  background: rgba(5, 5, 5, var(--home-nav-bg-alpha));
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background 120ms linear, border-color 180ms ease, box-shadow 180ms ease;
}

.page-home .site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, var(--home-nav-bg-alpha));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.page-home .header-inner {
  grid-template-columns: auto 1fr auto;
  column-gap: 34px;
  width: min(1360px, calc(100% - 88px));
}

.page-home .desktop-nav {
  visibility: visible;
  justify-self: end;
  gap: 38px;
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  transform: translateX(calc(var(--home-nav-progress) * var(--home-nav-shift)));
  pointer-events: auto;
  transition: color 180ms ease;
  white-space: nowrap;
  will-change: transform;
}

.page-home .header-actions {
  gap: 24px;
  color: rgba(255, 255, 255, 0.88);
}

.page-home .header-utility {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.page-home .header-utility + .header-utility {
  border-left: 0;
}

.page-home .header-utility:hover {
  color: #fff;
}

.page-home .site-header.is-home-nav-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(5, 5, 5, var(--home-nav-bg-alpha));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.page-home .site-header.is-home-nav-visible .desktop-nav {
  visibility: visible;
  opacity: 1;
  transform: translateX(calc(var(--home-nav-progress) * var(--home-nav-shift)));
  pointer-events: auto;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .site-header.is-home-nav-visible .desktop-nav a:hover,
.page-home .site-header.is-home-nav-visible .desktop-nav a[aria-current='page'],
.page-home .site-header.is-home-nav-visible .header-utility:hover {
  color: #fff;
}

.page-home .site-header.is-home-nav-visible .header-actions {
  color: rgba(255, 255, 255, 0.88);
}

.page-home .site-header.is-home-nav-visible .header-utility + .header-utility {
  border-color: transparent;
}

.page-inner .site-header.site-header-unified {
  top: 10px;
  right: 0;
  left: 0;
  width: calc(100% - 112px);
  height: 82px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header-unified .header-inner {
  grid-template-columns: auto 1fr auto;
  column-gap: 34px;
  width: min(1360px, calc(100% - 88px));
}

.site-header-unified .desktop-nav {
  justify-self: end;
  gap: 38px;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.site-header-unified .header-actions {
  gap: 24px;
}

.page-home main {
  scroll-snap-type: y proximity;
}

.page-home .home-anchor {
  scroll-snap-align: start;
  scroll-margin-top: 96px;
}

.product-feature-section {
  position: relative;
  display: flex;
  min-height: clamp(560px, 68svh, 700px);
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(64px, 8svh, 88px) 0 clamp(48px, 6svh, 72px);
  background: linear-gradient(180deg, #050505 0%, #070a10 46%, #0a0d13 100%);
  color: #f4f8ff;
}

.product-feature-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(155, 216, 255, 0.08), transparent 42%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
  content: '';
  pointer-events: none;
}

.product-feature-section-alt {
  background: linear-gradient(180deg, #06080d 0%, #080c14 44%, #05070b 100%);
}

.product-feature-section-alt::before {
  background: linear-gradient(270deg, rgba(104, 166, 255, 0.08), transparent 46%), linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%);
}

.product-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.product-feature-section .container {
  width: min(1440px, calc(100% - 56px));
}

.product-feature-grid-reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-feature-grid-reverse .product-feature-copy {
  justify-self: start;
}

.product-feature-grid-reverse .product-feature-media {
  justify-self: end;
}

.product-feature-media {
  min-width: 0;
  width: 100%;
  margin: 0;
  position: relative;
  isolation: isolate;
}

.product-feature-media::before {
  position: absolute;
  z-index: -1;
  inset: 18px -16px -18px 16px;
  border: 1px solid rgba(129, 195, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(102, 177, 255, 0.24), rgba(9, 17, 29, 0.06) 58%);
  box-shadow: 0 40px 88px rgba(0, 0, 0, 0.5);
  content: '';
  transform: none;
}

.product-feature-grid-reverse .product-feature-media::before {
  inset: 18px 16px -18px -16px;
  transform: none;
}

.product-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.4;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: #e9eef8;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  object-fit: contain;
  transform: none;
  transition: box-shadow 180ms ease-out;
}

.product-feature-grid-reverse .product-feature-media img {
  transform: none;
}

#capability-hotshop .product-feature-media img {
  height: 100%;
  object-fit: cover;
}

#capability-hotshop .product-feature-media::before {
  content: none;
}

.product-feature-media:hover img {
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.5);
  transform: none;
}

.product-feature-grid-reverse .product-feature-media:hover img {
  transform: none;
}

.product-feature-copy {
  width: 100%;
  max-width: none;
  justify-self: end;
}

.product-feature-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 600;
  line-height: 1.08;
}

.product-feature-copy h2.product-feature-kicker {
  max-width: 460px;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 700;
  line-height: 1.25;
}

.product-feature-copy > p {
  margin: 26px 0 0;
  color: rgba(229, 238, 255, 0.72);
  font-size: 17px;
  line-height: 1.85;
}

.product-feature-list {
  margin-top: 36px;
  border-top: 1px solid rgba(227, 236, 255, 0.18);
}

.product-feature-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(227, 236, 255, 0.16);
}

.product-feature-list h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.product-feature-list p {
  margin: 0;
  color: rgba(213, 226, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.product-office-copy .product-feature-list {
  margin-top: 20px;
}

.product-office-copy .product-feature-list article {
  display: block;
  padding: 18px 0;
}

.product-office-copy .product-feature-list p {
  color: rgba(213, 226, 255, 0.7);
  font-size: 17px;
  line-height: 1.85;
}

.product-office-copy .product-feature-list strong {
  color: #fff;
  font-weight: 600;
}

.product-feature-detail {
  min-width: 0;
}

.product-feature-assets {
  margin-top: 10px;
}

.product-feature-assets.brand-strip {
  gap: 9px 13px;
}

.product-feature-assets.brand-strip img {
  width: 25px;
  height: 25px;
}

.product-feature-assets.channel-strip img:nth-child(7) {
  width: 29px;
}

.product-feature-assets .wordmark-token {
  width: 25px;
  height: 25px;
  font-size: 8px;
}

.product-feature-assets.node-strip {
  max-width: 430px;
  gap: 8px;
}

.product-feature-assets.node-strip span {
  color: rgba(229, 238, 255, 0.76);
  font-size: 11px;
}

.product-feature-assets.node-strip img {
  width: 18px;
  height: 18px;
}

.product-feature-assets.office-model-strip img:nth-child(-n+3) {
  width: 52px;
  height: 27px;
}

.home-reserve {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-reserve::after {
  position: absolute;
  right: max(48px, calc((100% - 1240px) / 2));
  bottom: 13%;
  left: max(48px, calc((100% - 1240px) / 2));
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: '';
}

.home-reserve-inner {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 36px;
  align-items: baseline;
}

.home-reserve-index {
  color: var(--ice);
  font-size: 14px;
  font-weight: 600;
}

.home-reserve h2 {
  margin: 0;
  font-size: 88px;
  font-weight: 400;
  line-height: 1.08;
}

.home-capabilities {
  background: #101914;
}

.capability-section {
  display: block;
  min-height: 100svh;
  padding: 96px 0 38px;
  border-top: 0;
  background: #0a0d13;
  color: #f1f5ff;
}

.capability-section::after {
  display: none;
}

.capability-shell {
  display: grid;
  min-height: calc(100svh - 134px);
  grid-template-columns: 224px minmax(0, 1fr);
  gap: 46px;
}

.capability-nav {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 0 0;
  border-top: 1px solid rgba(227, 236, 255, 0.22);
}

.capability-nav-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.capability-nav h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.capability-tabs {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 26px;
  border-top: 1px solid rgba(227, 236, 255, 0.16);
}

.capability-tabs button {
  position: relative;
  width: 100%;
  min-height: 46px;
  padding: 0 18px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(227, 236, 255, 0.16);
  background: transparent;
  color: #8290a7;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  transition: color 180ms ease, padding 180ms ease;
}

.capability-tabs button::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  content: '';
  opacity: 0;
  transform: translateY(-50%) scale(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.capability-tabs button:hover,
.capability-tabs button.is-active {
  padding-left: 8px;
  color: #fff;
}

.capability-tabs button.is-active::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.capability-panels,
.capability-panel {
  min-width: 0;
}

.capability-panel {
  min-height: 100%;
}

.capability-panel-head {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(227, 236, 255, 0.22);
}

.capability-panel-head > span {
  color: #1556ff;
  font-size: 12px;
  font-weight: 700;
}

.capability-panel h3 {
  margin: 0;
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
}

.office-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(460px, 1.12fr);
  gap: 34px;
  padding-top: 0;
}

.office-visual-stack {
  display: grid;
  min-width: 0;
  min-height: 100%;
  grid-template-rows: auto minmax(118px, 1fr);
  gap: 24px;
}

.office-visual {
  align-self: start;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #e8edf8;
  box-shadow: 16px 16px 0 rgba(255, 255, 255, 0.1);
  cursor: zoom-in;
}

.office-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.office-visual > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  background: rgba(8, 12, 20, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 180ms ease;
}

.office-visual:hover > span,
.office-visual:focus-visible > span {
  opacity: 1;
}

.office-visual:focus-visible {
  outline: 2px solid #7fb0ff;
  outline-offset: 4px;
}

.office-signal-field {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background-color: rgba(255, 255, 255, 0.02);
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

.office-signal-field::before,
.office-signal-field::after {
  position: absolute;
  content: '';
}

.office-signal-field::before {
  top: 50%;
  left: -12%;
  width: 124%;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.65), 0 0 42px rgba(255, 255, 255, 0.25);
  opacity: 0.88;
  transform: rotate(-13deg);
  animation: office-signal-scan 3.8s linear infinite;
}

.office-signal-field::after {
  inset: 18% 14%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.08);
}

.office-signal-field i {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.09), 0 0 12px rgba(255, 255, 255, 0.78);
  animation: office-signal-pulse 2.4s ease-in-out infinite;
}

.office-signal-field i:nth-child(1) { top: 24%; left: 16%; }
.office-signal-field i:nth-child(2) { top: 65%; left: 31%; animation-delay: -1.2s; }
.office-signal-field i:nth-child(3) { top: 38%; left: 46%; animation-delay: -0.4s; }
.office-signal-field i:nth-child(4) { top: 75%; left: 58%; animation-delay: -1.7s; }
.office-signal-field i:nth-child(5) { top: 20%; left: 69%; animation-delay: -0.8s; }
.office-signal-field i:nth-child(6) { top: 49%; left: 84%; animation-delay: -2s; }
.office-signal-field i:nth-child(7) { top: 76%; left: 91%; animation-delay: -1s; }

@keyframes office-signal-scan {
  0% { transform: translateX(-13%) rotate(-13deg); }
  100% { transform: translateX(13%) rotate(-13deg); }
}

@keyframes office-signal-pulse {
  0%, 100% { opacity: 0.48; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

.office-signal-command::before {
  top: 12%;
  left: 50%;
  width: 1px;
  height: 76%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.32);
  transform: none;
  animation: office-command-flow 3.2s ease-in-out infinite;
}

.office-signal-command::after {
  inset: 18% 18%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 100% 33.333%, 33.333% 100%;
  box-shadow: none;
}

.office-signal-command i {
  width: 8px;
  height: 8px;
  border-radius: 0;
  animation-name: office-command-node;
}

.office-signal-command i:nth-child(1) { top: 20%; left: 32%; }
.office-signal-command i:nth-child(2) { top: 20%; left: 64%; animation-delay: -0.4s; }
.office-signal-command i:nth-child(3) { top: 47%; left: 32%; animation-delay: -1.2s; }
.office-signal-command i:nth-child(4) { top: 47%; left: 64%; animation-delay: -1.6s; }
.office-signal-command i:nth-child(5) { top: 74%; left: 32%; animation-delay: -0.8s; }
.office-signal-command i:nth-child(6) { top: 74%; left: 64%; animation-delay: -2s; }
.office-signal-command i:nth-child(7) { top: 47%; left: 48%; animation-delay: -2.4s; }

.office-signal-workbuddy::before {
  top: 20%;
  left: 12%;
  width: 76%;
  height: 13px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 28px 0 -1px rgba(255, 255, 255, 0.62), 0 29px 0 -1px rgba(255, 255, 255, 0.26), 0 56px 0 -1px rgba(255, 255, 255, 0.62), 0 57px 0 -1px rgba(255, 255, 255, 0.26);
  transform: none;
  animation: office-workbuddy-scan 3.5s ease-in-out infinite;
}

.office-signal-workbuddy::after {
  inset: 18% 12%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.office-signal-workbuddy i {
  width: 9px;
  height: 5px;
  border-radius: 1px;
  animation-name: office-workbuddy-task;
}

.office-signal-workbuddy i:nth-child(1) { top: 23%; left: 17%; }
.office-signal-workbuddy i:nth-child(2) { top: 23%; left: 52%; animation-delay: -0.7s; }
.office-signal-workbuddy i:nth-child(3) { top: 23%; left: 78%; animation-delay: -1.4s; }
.office-signal-workbuddy i:nth-child(4) { top: 48%; left: 30%; animation-delay: -0.4s; }
.office-signal-workbuddy i:nth-child(5) { top: 48%; left: 64%; animation-delay: -1.1s; }
.office-signal-workbuddy i:nth-child(6) { top: 73%; left: 18%; animation-delay: -1.8s; }
.office-signal-workbuddy i:nth-child(7) { top: 73%; left: 70%; animation-delay: -2.5s; }

.office-signal-doubao::before {
  top: 50%;
  left: 12%;
  width: 76%;
  height: 1px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 -34px 0 rgba(255, 255, 255, 0.22), 0 34px 0 rgba(255, 255, 255, 0.22);
  transform: none;
  animation: office-doubao-flow 2.9s linear infinite;
}

.office-signal-doubao::after {
  inset: 20% 12%;
  border: 0;
  background: linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.18) 18% 18.5%, transparent 18.5% 48%, rgba(255, 255, 255, 0.18) 48% 48.5%, transparent 48.5% 78%, rgba(255, 255, 255, 0.18) 78% 78.5%, transparent 78.5%);
  box-shadow: none;
}

.office-signal-doubao i {
  width: 8px;
  height: 8px;
  animation-name: office-doubao-node;
}

.office-signal-doubao i:nth-child(1) { top: 47%; left: 18%; }
.office-signal-doubao i:nth-child(2) { top: 47%; left: 38%; animation-delay: -0.5s; }
.office-signal-doubao i:nth-child(3) { top: 47%; left: 58%; animation-delay: -1s; }
.office-signal-doubao i:nth-child(4) { top: 47%; left: 78%; animation-delay: -1.5s; }
.office-signal-doubao i:nth-child(5) { top: 22%; left: 38%; animation-delay: -0.8s; }
.office-signal-doubao i:nth-child(6) { top: 72%; left: 58%; animation-delay: -1.8s; }
.office-signal-doubao i:nth-child(7) { top: 22%; left: 78%; animation-delay: -2.3s; }

@keyframes office-command-flow {
  0%, 100% { opacity: 0.36; transform: scaleY(0.72); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes office-command-node {
  0%, 100% { opacity: 0.34; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes office-workbuddy-scan {
  0%, 100% { opacity: 0.32; transform: translateX(-3%); }
  50% { opacity: 1; transform: translateX(3%); }
}

@keyframes office-workbuddy-task {
  0%, 100% { opacity: 0.28; transform: scaleX(0.55); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

@keyframes office-doubao-flow {
  0% { opacity: 0.3; transform: translateX(-6%); }
  50% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0.3; transform: translateX(6%); }
}

@keyframes office-doubao-node {
  0%, 100% { opacity: 0.35; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1.35); }
}

.office-routes {
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(227, 236, 255, 0.22);
}

.office-route {
  display: grid;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(227, 236, 255, 0.16);
}

.office-route h4 {
  margin: 0;
  color: #f1f5ff;
  font-size: 18px;
  font-weight: 700;
}

.office-route p {
  margin: 8px 0 0;
  color: #aeb9cc;
  font-size: 13px;
  line-height: 1.62;
}

.brand-strip,
.node-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.brand-strip img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.channel-strip img:nth-child(7) {
  width: 28px;
}

.wordmark-token {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid #23a455;
  border-radius: 50%;
  color: #168943;
  font-size: 8px;
  font-weight: 700;
}

.node-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}

.node-strip span {
  display: grid;
  gap: 5px;
  justify-items: center;
  color: #c5cede;
  font-size: 11px;
  font-weight: 600;
}

.node-strip img {
  width: 19px;
  height: 19px;
  filter: invert(1);
  opacity: 0.92;
}

.office-model-strip img:nth-child(-n+3) {
  width: 55px;
}

.capability-pending {
  display: grid;
  place-items: center start;
  border-top: 1px solid rgba(227, 236, 255, 0.22);
}

.capability-pending h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 400;
}

.capability-panels [hidden] {
  display: none !important;
}

.command-layout {
  display: grid;
  min-height: 100%;
  grid-template-columns: minmax(340px, 0.88fr) minmax(460px, 1.12fr);
  gap: 34px;
  align-items: stretch;
}

.command-routes {
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(227, 236, 255, 0.22);
}

.command-route {
  padding: 20px 0;
  border-bottom: 1px solid rgba(227, 236, 255, 0.16);
}

.command-route h3,
.command-route h4 {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.command-route h3 {
  max-width: 420px;
  font-size: 34px;
  line-height: 1.18;
}

.command-route h4 {
  font-size: 18px;
}

.command-panel .command-route h3 {
  font-size: 18px;
  line-height: 1.45;
}

.workbuddy-panel .command-route h3,
.doubao-panel .command-route h3,
.qwen-panel .command-route h3,
.hotshop-panel .command-route h3 {
  font-size: 18px;
  line-height: 1.45;
}

.command-route p {
  margin: 10px 0 0;
  color: #c5cede;
  font-size: 14px;
  line-height: 1.68;
}

.command-visual,
.workbuddy-visual,
.doubao-visual,
.qwen-visual,
.hotshop-visual {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: #fff;
  box-shadow: 15px 15px 0 rgba(255, 255, 255, 0.1);
  cursor: zoom-in;
}

.command-visual img,
.workbuddy-visual img,
.doubao-visual img,
.qwen-visual img,
.hotshop-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1152 / 596;
  object-fit: cover;
}

.command-visual > span,
.workbuddy-visual > span,
.doubao-visual > span,
.qwen-visual > span,
.hotshop-visual > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  background: rgba(8, 12, 20, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 180ms ease;
}

.command-visual:hover > span,
.command-visual:focus-visible > span,
.workbuddy-visual:hover > span,
.workbuddy-visual:focus-visible > span,
.doubao-visual:hover > span,
.doubao-visual:focus-visible > span,
.qwen-visual:hover > span,
.qwen-visual:focus-visible > span,
.hotshop-visual:hover > span,
.hotshop-visual:focus-visible > span {
  opacity: 1;
}

.command-visual:focus-visible,
.workbuddy-visual:focus-visible,
.doubao-visual:focus-visible,
.qwen-visual:focus-visible,
.hotshop-visual:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.product-partner-image {
  display: block;
  width: min(100%, 280px);
  margin-top: 20px;
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.3));
}

#capability-doubao-work .product-partner-image,
#capability-qwen-work .product-partner-image {
  width: min(100%, 420px);
}

.product-partner-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.08) inset;
}

.workbuddy-certificate {
  position: relative;
  display: block;
  width: 100%;
  min-height: 118px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: #fff;
  box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.08);
  cursor: zoom-in;
}

.workbuddy-certificate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.workbuddy-certificate > span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  background: rgba(8, 12, 20, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 180ms ease;
}

.workbuddy-certificate:hover > span,
.workbuddy-certificate:focus-visible > span {
  opacity: 1;
}

.workbuddy-certificate:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.hotshop-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 13px;
}

.hotshop-platforms img,
.hotshop-meituan {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hotshop-meituan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.hotshop-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 13px;
}

.hotshop-metrics div {
  padding: 2px 0 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.58);
}

.hotshop-metrics strong,
.hotshop-metrics span {
  display: block;
}

.hotshop-metrics strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.hotshop-metrics span {
  margin-top: 7px;
  color: #c5cede;
  font-size: 12px;
}

.office-signal-hotshop::before {
  top: 20%;
  left: 13%;
  width: 74%;
  height: 60%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(90deg, transparent 33%, rgba(255, 255, 255, 0.17) 33% 33.6%, transparent 33.6% 66%, rgba(255, 255, 255, 0.17) 66% 66.6%, transparent 66.6%), linear-gradient(transparent 33%, rgba(255, 255, 255, 0.17) 33% 33.6%, transparent 33.6% 66%, rgba(255, 255, 255, 0.17) 66% 66.6%, transparent 66.6%);
  box-shadow: none;
  transform: none;
  animation: office-hotshop-grid 3.6s ease-in-out infinite;
}

.office-signal-hotshop::after {
  inset: 32% 17%;
  border: 0;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 0 rgba(255, 255, 255, 0.11), 0 -24px 0 rgba(255, 255, 255, 0.11);
}

.office-signal-hotshop i {
  width: 7px;
  height: 7px;
  border-radius: 1px;
  animation-name: office-hotshop-pulse;
}

.office-signal-hotshop i:nth-child(1) { top: 26%; left: 20%; }
.office-signal-hotshop i:nth-child(2) { top: 26%; left: 48%; animation-delay: -0.5s; }
.office-signal-hotshop i:nth-child(3) { top: 26%; left: 76%; animation-delay: -1s; }
.office-signal-hotshop i:nth-child(4) { top: 48%; left: 34%; animation-delay: -1.5s; }
.office-signal-hotshop i:nth-child(5) { top: 48%; left: 63%; animation-delay: -2s; }
.office-signal-hotshop i:nth-child(6) { top: 70%; left: 20%; animation-delay: -2.5s; }
.office-signal-hotshop i:nth-child(7) { top: 70%; left: 76%; animation-delay: -3s; }

@keyframes office-hotshop-grid {
  0%, 100% { opacity: 0.38; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes office-hotshop-pulse {
  0%, 100% { opacity: 0.34; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.3); }
}

.home-about {
  background: #171112;
}

.home-insights {
  background: #11191a;
}

.home-insights-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.home-insights-heading .about-module-title {
  flex: 1 1 auto;
  margin-bottom: 0;
}

.home-insights-content .article-row {
  grid-template-columns: minmax(0, 1fr) 120px 30px;
}

.home-insights-more {
  flex: 0 0 auto;
  min-height: 42px;
  margin-top: 1px;
  padding: 0 20px;
}

.home-section-title {
  padding-top: 96px;
  padding-bottom: 0;
  border-top: 1px solid var(--line-soft);
}

.home-section-title h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.12;
}

.pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.pill:hover {
  transform: translateY(-2px);
  background: #e9e9e9;
}

.pill-dark {
  border-color: var(--line);
  background: transparent;
  color: #fff;
}

.pill-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.arrow {
  font-size: 18px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.menu-toggle span,
.menu-toggle span::after {
  display: block;
  width: 17px;
  height: 1px;
  background: #fff;
  transition: transform 220ms ease;
}

.menu-toggle span::after {
  content: '';
  transform: translateY(5px);
}

.menu-toggle[aria-expanded='true'] span {
  transform: translateY(2px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span::after {
  transform: rotate(-90deg);
}

.mobile-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 116px 32px 48px;
  background: rgba(5, 5, 5, 0.94);
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: opacity 260ms ease, visibility 260ms ease;
}

.mobile-panel.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-size: 25px;
}

.mobile-nav a::after {
  content: '\2197';
  color: var(--dim);
  font-size: 18px;
}

.mobile-menu-foot {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--ice);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

.home-hero video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  opacity: 1;
}

.home-hero::before,
.home-hero::after,
.inner-hero::before,
.inner-hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.home-hero::before {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.26) 24%, rgba(5, 5, 5, 0.04) 47%, rgba(5, 5, 5, 0.02) 100%);
}

.home-hero::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, transparent 20%, transparent 78%, rgba(5, 5, 5, 0.2) 94%, #050505 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(180px, 30svh, 280px);
  padding-bottom: 112px;
}

.hero-copy {
  max-width: 820px;
}

.hero-title {
  max-width: 610px;
  margin: 0;
  color: #fafafa;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-title em {
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
}

.hero-partners {
  position: absolute;
  z-index: 2;
  top: calc(30svh + 190px);
  left: max(48px, calc((100% - 1240px) / 2));
  width: min(260px, calc(100% - 96px));
}

.partner-line {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
}

.partner-label {
  display: none;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-names {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: start;
  align-items: center;
  gap: 18px;
}

.partner-logos img {
  width: 100%;
  max-width: 112px;
  max-height: 32px;
  margin: 0;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-compact {
  padding: 88px 0;
}

.section-rule {
  border-top: 1px solid var(--line-soft);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.section-head h2,
.display-title,
.cta-title {
  margin: 0;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.section-head p,
.section-intro {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-head p {
  justify-self: end;
}

.business-list {
  border-top: 1px solid var(--line);
}

.business-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 42px;
  gap: 34px;
  align-items: start;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

.business-row:hover {
  background: rgba(255, 255, 255, 0.018);
}

.business-no {
  color: var(--ice);
  font-size: 12px;
  font-weight: 600;
}

.business-row h3 {
  margin: 0;
  font-size: 31px;
  font-weight: 500;
}

.business-row p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.business-arrow {
  color: var(--dim);
  font-size: 24px;
}

.dark-band {
  background: #080808;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.architecture-item {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.architecture-item:last-child {
  border-right: 0;
}

.architecture-item .index {
  display: block;
  margin-bottom: 70px;
  color: var(--ice);
  font-size: 12px;
}

.architecture-item h3 {
  margin: 0 0 14px;
  font-size: 23px;
  font-weight: 500;
}

.architecture-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.media-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 78px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: #0b0b0b;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.landscape {
  aspect-ratio: 16 / 10;
}

.media-frame.portrait {
  aspect-ratio: 4 / 5;
}

#company .media-frame.portrait {
  width: min(100%, 400px);
  justify-self: center;
}

.media-copy h2,
.media-copy h3 {
  margin: 0 0 24px;
  font-size: 47px;
  font-weight: 400;
  line-height: 1.14;
}

.media-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.media-copy .text-link {
  margin-top: 30px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 34px 24px 38px 0;
  border-right: 1px solid var(--line);
}

.metric:not(:first-child) {
  padding-left: 30px;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 11px;
  font-size: 42px;
  font-weight: 500;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.case-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.case-item,
.solution-item {
  min-height: 320px;
  padding: 34px;
  background: var(--black);
}

.case-item .tag,
.solution-item .tag,
.article-meta {
  color: var(--ice);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-item h3,
.solution-item h3 {
  margin: 80px 0 16px;
  font-size: 24px;
  font-weight: 500;
}

.case-item p,
.solution-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.case-result {
  display: block;
  margin-top: 24px;
  color: #fff;
  font-size: 13px;
}

.inner-hero {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: flex-end;
  overflow: hidden;
  background: #080808 var(--hero-image) center / cover no-repeat;
}

.inner-hero::before {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.67) 48%, rgba(5, 5, 5, 0.22) 100%);
}

.inner-hero::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, transparent 34%, rgba(5, 5, 5, 0.92) 94%, #050505 100%);
}

.inner-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 180px;
  padding-bottom: 88px;
}

.inner-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.08;
}

.inner-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.subnav {
  position: sticky;
  z-index: 30;
  top: var(--header-h);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 5, 5, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.subnav-inner {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  padding: 18px 0;
  scrollbar-width: none;
}

.subnav-inner::-webkit-scrollbar {
  display: none;
}

.subnav a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  transition: color 180ms ease;
}

.subnav a:hover {
  color: #fff;
}

.page-home .about-subnav {
  top: 83px;
  background: rgba(5, 5, 5, 0.96);
}

.home-about-content [id] {
  scroll-margin-top: calc(var(--header-h) + 64px);
}

.company-intro-copy p + p {
  margin-top: 18px;
}

.home-about-content > .about-module {
  padding-top: 32px;
  padding-bottom: 52px;
}

.page-home .home-insights-content {
  padding: 52px 0 64px;
}

.about-module-title {
  margin: 0 0 32px;
  padding-top: 8px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.partner-section {
  border-top: 1px solid var(--line-soft);
}

.partner-group + .partner-group {
  margin-top: 48px;
}

.partner-group-head {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}

.partner-group-head p,
.partner-group-head h3 {
  margin: 0;
}

.partner-group-head p {
  color: var(--ice);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.partner-group-head h3 {
  font-size: 22px;
  font-weight: 500;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.partner-grid-brand {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.partner-grid-upstream {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.partner-item {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  background: #171a20;
}

.partner-grid-upstream .partner-item {
  min-height: 126px;
}

.partner-item img {
  width: min(100%, 120px);
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.partner-grid-brand .partner-item img {
  width: min(100%, 164px);
  height: 68px;
  padding: 5px 8px;
  border-radius: 4px;
}

.partner-grid-brand .partner-item {
  min-height: 108px;
  gap: 0;
}

.partner-wordmark {
  display: flex;
  width: min(100%, 120px);
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  font-size: 19px;
  font-weight: 600;
}

.partner-item strong,
.partner-item span {
  display: block;
}

.partner-item strong {
  margin: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.partner-item span {
  color: var(--muted);
  font-size: 14px;
}

.partner-item .partner-wordmark {
  color: #f5f5f5;
  font-size: 19px;
}

@media (max-width: 1100px) {
  .partner-grid-brand {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-grid-upstream {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-stack {
  border-top: 1px solid var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: center;
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.product-row:nth-child(even) .product-media {
  order: 2;
}

.product-row:nth-child(even) .product-copy {
  order: 1;
}

.product-copy .number {
  display: block;
  margin-bottom: 42px;
  color: var(--ice);
  font-size: 12px;
}

.product-copy h2 {
  margin: 0 0 20px;
  font-size: 43px;
  font-weight: 400;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.product-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 26px;
  margin-top: 28px;
}

.product-points span {
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.product-media {
  display: flex;
  min-height: 490px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: #0b0b0b;
}

.product-media img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.product-media.light {
  padding: 42px;
  background: #efefef;
}

.workspace-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.workspace-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #edf3ff;
}

.workspace-shot img {
  width: 100%;
  aspect-ratio: 1.525 / 1;
  object-fit: cover;
}

.feature-index {
  color: var(--ice);
  font-size: 12px;
  letter-spacing: .1em;
}

.workspace-copy h3 {
  margin: 34px 0 20px;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
}

.workspace-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.logo-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.logo-ribbon span {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: var(--black);
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.logo-ribbon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.knowledge-stack {
  width: min(880px, 100%);
  margin: 0 auto;
}

.knowledge-stack > div {
  display: grid;
  grid-template-columns: 52px minmax(190px, .8fr) 1.2fr;
  gap: 26px;
  align-items: center;
  min-height: 92px;
  margin: 0 auto 12px;
  padding: 20px 28px;
  border: 1px solid var(--line);
  background: #0c0c0c;
}

.knowledge-stack > div:nth-child(1) { width: 58%; }
.knowledge-stack > div:nth-child(2) { width: 72%; }
.knowledge-stack > div:nth-child(3) { width: 86%; }
.knowledge-stack > div:nth-child(4) { width: 100%; }

.knowledge-stack span {
  color: var(--ice);
  font-size: 12px;
}

.knowledge-stack strong {
  font-size: 17px;
  font-weight: 500;
}

.knowledge-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.model-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.model-strip > span {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.model-strip img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.product-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.product-brand h2 {
  margin: 0;
}

.proof-slot {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.proof-slot img {
  width: 82px;
  height: 58px;
  border: 1px solid var(--line-soft);
  object-fit: cover;
  opacity: .72;
}

.proof-slot span {
  color: var(--dim);
  font-size: 12px;
}

.client-band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #080808;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.client-logo-grid img {
  width: 100%;
  height: 112px;
  padding: 26px;
  background: #0a0a0a;
  object-fit: contain;
  filter: grayscale(1);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.credential-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0c0c;
}

.credential-card > a {
  display: block;
}

.credential-card img {
  width: 100%;
  height: 228px;
  object-fit: cover;
  object-position: top center;
  background: #111;
  transition: transform 240ms ease;
}

.honors-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.honors-heading .about-module-title {
  flex: 1;
  margin-bottom: 0;
}

.honors-controls:not([hidden]) {
  display: flex;
  gap: 8px;
}

.honors-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #fff;
  background: #111;
  cursor: pointer;
}

.honors-controls img { filter: invert(1); }
.honors-controls button:hover:not(:disabled) { background: #292929; }
.honors-controls button:disabled { opacity: 0.3; cursor: default; }
.honors-controls button:focus-visible,
.credential-carousel:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

.credential-grid.credential-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 0 16px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.credential-grid.credential-carousel::-webkit-scrollbar {
  display: none;
}

.credential-carousel .credential-card {
  flex: 0 0 232px;
  scroll-snap-align: start;
}

.credential-carousel .credential-card img {
  display: block;
  height: 156px;
  padding: 8px;
  object-fit: contain;
  object-position: center;
}

.credential-carousel .credential-card figcaption {
  min-height: 80px;
  padding: 12px 14px;
}

.credential-carousel .credential-card figcaption strong {
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .credential-carousel .credential-card { flex-basis: 208px; }
  .credential-carousel .credential-card img { height: 140px; }
}

.credential-card.certificate-card img {
  padding: 12px;
  object-fit: contain;
  background: #0d0d0d;
}

.credential-card:hover img {
  transform: scale(1.015);
}

.credential-card.is-pending img {
  opacity: .6;
}

.credential-card figcaption {
  min-height: 94px;
  padding: 18px 20px;
  border-top: 1px solid var(--line-soft);
}

.credential-card figcaption strong,
.credential-card figcaption span {
  display: block;
}

.credential-card figcaption strong {
  font-size: 15px;
  font-weight: 500;
}

.credential-card figcaption span {
  margin-top: 8px;
  color: var(--dim);
  font-size: 11px;
}

.contact-qr {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-qr img {
  width: 112px;
  height: 112px;
}

.contact-qr strong,
.contact-qr span {
  display: block;
}

.contact-qr strong {
  font-size: 16px;
  font-weight: 500;
}

.contact-qr span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.download-status {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100% - 48px));
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  background: #f3f3f3;
  color: #111;
  font-size: 13px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.download-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.download-status.is-error {
  border-color: #e5a4a4;
  background: #fff1f1;
  color: #8c1d1d;
}

.industry-row {
  display: grid;
  grid-template-columns: 80px 0.72fr 1.28fr;
  gap: 34px;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.industry-row:last-child {
  border-bottom: 1px solid var(--line);
}

.industry-row .number {
  color: var(--ice);
  font-size: 12px;
}

.industry-row h2 {
  margin: 0;
  font-size: 31px;
  font-weight: 500;
}

.industry-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.industry-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.timeline {
  border-top: 1px solid var(--line);
}

.history-visual {
  margin: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.history-visual img {
  display: block;
  width: 100%;
  height: auto;
}

#history {
  padding-top: 34px;
  padding-bottom: 44px;
}

#history .about-module-title {
  margin-bottom: 18px;
}

@media (min-width: 721px) {
  .history-visual {
    aspect-ratio: 2.35 / 1;
  }

  .history-visual img {
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
  }
}

.history-visual figcaption {
  margin: 0;
  padding: 26px 32px 30px;
  border-top: 1px solid rgba(5, 5, 5, 0.14);
  background: #0a0a0a;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.timeline-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 60px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-row time {
  color: var(--ice);
  font-size: 13px;
  font-weight: 600;
}

.timeline-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.honor-item {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.honor-item strong {
  display: block;
  margin-bottom: 46px;
  color: var(--ice);
  font-size: 12px;
}

.honor-item span {
  display: block;
  font-size: 19px;
  line-height: 1.5;
}

.insights-head {
  padding-top: 190px;
  padding-bottom: 80px;
}

.insights-head h1,
.home-insights-content .insights-head h2 {
  max-width: 850px;
  margin: 0;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.1;
}

.category-bar {
  display: flex;
  gap: 10px;
  margin-top: 38px;
}

.category-bar button {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.category-bar button.is-active,
.category-bar button:hover {
  border-color: #fff;
  background: #fff;
  color: #050505;
}

.article-list {
  border-top: 1px solid var(--line);
}

.article-row {
  display: grid;
  grid-template-columns: 150px 1fr 120px 30px;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.article-row[hidden] {
  display: none;
}

.article-row h2,
.article-row h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}

.article-row time {
  color: var(--dim);
  font-size: 12px;
}

.article-row .arrow {
  color: var(--dim);
}

.article-hero {
  padding: 190px 0 82px;
  border-bottom: 1px solid var(--line);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--dim);
  font-size: 12px;
}

.article-breadcrumb a:hover {
  color: #fff;
}

.article-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.16;
}

.article-deck {
  max-width: 750px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 34px;
  color: var(--dim);
  font-size: 12px;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
  padding-top: 88px;
  padding-bottom: 110px;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 126px;
}

.article-aside h2 {
  margin: 0 0 20px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-toc {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.article-toc a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.article-toc a:hover {
  color: #fff;
}

.article-content {
  min-width: 0;
}

.article-content > p:first-child {
  margin-top: 0;
  color: #e7e7e7;
  font-size: 21px;
  line-height: 1.75;
}

.article-content h2 {
  scroll-margin-top: 130px;
  margin: 68px 0 22px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.35;
}

.article-content p {
  margin: 0 0 24px;
  color: #b7b7b7;
  font-size: 17px;
  line-height: 2;
}

.article-content strong {
  color: #fff;
  font-weight: 600;
}

.article-callout {
  margin: 42px 0;
  padding: 28px 30px;
  border-left: 2px solid var(--ice);
  background: #0b0b0b;
  color: #e7e7e7;
  font-size: 18px;
  line-height: 1.8;
}

.article-steps {
  margin: 30px 0 40px;
  border-top: 1px solid var(--line);
}

.article-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}

.article-step span {
  color: var(--ice);
  font-size: 12px;
}

.article-step div {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.article-step strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-nav a {
  min-height: 180px;
  padding: 34px 0;
}

.article-nav a + a {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.article-nav span {
  display: block;
  margin-bottom: 32px;
  color: var(--dim);
  font-size: 11px;
  text-transform: uppercase;
}

.article-nav strong {
  display: block;
  max-width: 440px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(100svh - 88px);
  padding-top: var(--header-h);
}

.contact-main,
.contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vw;
}

.contact-main {
  border-right: 1px solid var(--line);
}

.contact-main h1 {
  max-width: 700px;
  margin: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

.contact-main p {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--dim);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.contact-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.74);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100svh - 60px);
  overflow: auto;
  padding: 30px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080808;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.contact-dialog-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.contact-dialog h2 {
  margin: 0;
  padding-right: 40px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.25;
}

.contact-modal-intro {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-form label,
.contact-form fieldset {
  min-width: 0;
  margin: 0;
}

.contact-form fieldset {
  padding: 0;
  border: 0;
}

.contact-form > label > span,
.contact-form legend {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.contact-form em,
.contact-form small {
  color: var(--dim);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(155, 216, 255, 0.12);
}

.contact-choice-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-choice-group label {
  position: relative;
}

.contact-choice-group input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.contact-choice-group span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.contact-choice-group input:checked + span,
.contact-choice-group label:hover span {
  border-color: #fff;
  background: #fff;
  color: #050505;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.55;
}

.contact-form .contact-consent input {
  flex: 0 0 auto;
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #fff;
}

.contact-form-message {
  min-height: 22px;
  margin: 0;
  color: var(--ice);
  font-size: 13px;
  line-height: 1.6;
}

.contact-form-message:empty {
  display: none;
}

.contact-form-message.is-error {
  color: #ff9b9b;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 2px;
}

.contact-dialog-qr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.contact-dialog-qr img {
  width: 60px;
  height: 60px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  object-fit: cover;
}

.contact-dialog-qr figcaption {
  max-width: 110px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact-dialog-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.contact-dialog-details strong {
  color: #fff;
  font-weight: 600;
}

.contact-dialog-details p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

@media (max-width: 460px) {
  .contact-form-actions {
    align-items: flex-end;
  }

  .contact-dialog-qr img {
    width: 64px;
    height: 64px;
  }

  .contact-dialog-qr figcaption { display: none; }

}

.cta-band {
  padding: 105px 0;
  border-top: 1px solid var(--line);
  background: #080808;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.cta-title {
  max-width: 800px;
}

.site-footer {
  padding: 70px 0 34px;
  border-top: 1px solid var(--line-soft);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 90px;
}

.footer-brand img {
  width: 132px;
}

.footer-brand p {
  max-width: 320px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-navs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.footer-col h3 {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 66px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 11px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-feature-section .product-feature-motion {
  opacity: 0;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  will-change: opacity, transform;
}

.product-feature-section .product-feature-copy.product-feature-motion {
  transition-delay: 0.12s;
}

.product-feature-section[data-feature-motion='rise'] .product-feature-motion {
  transform: translate3d(0, 28px, 0);
}

.product-feature-section[data-feature-motion='scale'] .product-feature-motion {
  transform: scale(0.94);
}

.product-feature-section[data-feature-motion='diagonal'] .product-feature-media.product-feature-motion {
  transform: translate3d(26px, 18px, 0);
}

.product-feature-section[data-feature-motion='diagonal'] .product-feature-copy.product-feature-motion {
  transform: translate3d(-18px, 14px, 0);
}

.product-feature-section[data-feature-motion='flip'] .product-feature-motion {
  transform: translate3d(0, 18px, 0);
}

.product-feature-section.is-feature-visible .product-feature-motion {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  :root {
    --header-h: 78px;
  }

  .container {
    width: min(100% - 56px, 960px);
  }

  .product-feature-section .container {
    width: min(100% - 56px, 960px);
  }

  .header-inner {
    width: calc(100% - 48px);
    grid-template-columns: 160px 1fr 230px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero-title,
  .inner-hero h1,
  .insights-head h1 {
    font-size: 62px;
  }

  .hero-title {
    font-size: 50px;
  }

  .section-head h2,
  .display-title,
  .cta-title {
    font-size: 48px;
  }

  .media-split,
  .product-row {
    gap: 48px;
  }

  .case-grid,
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .honor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-reserve h2 {
    font-size: 68px;
  }

  .product-feature-section {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .product-feature-grid,
  .product-feature-grid-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-feature-copy,
  .product-feature-grid-reverse .product-feature-copy {
    max-width: 760px;
    justify-self: start;
  }

  .product-feature-grid-reverse .product-feature-media {
    justify-self: stretch;
  }

  .product-feature-copy h2 {
    font-size: 52px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .product-feature-section .container {
    width: calc(100% - 40px);
  }

  .header-inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr auto;
  }

  .page-home .site-header {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    height: 54px;
    border: 1px solid transparent;
    border-radius: 10px;
  }

  .page-inner .site-header.site-header-unified {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    height: 54px;
    border-radius: 10px;
  }

  .page-home .site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.12);
  }

  .page-home .about-subnav {
    top: 65px;
  }

  .page-home .header-inner {
    grid-template-columns: auto 1fr auto;
    width: calc(100% - 24px);
  }

  .site-header-unified .header-inner {
    grid-template-columns: auto 1fr auto;
    width: calc(100% - 24px);
  }

  .page-home .header-actions {
    gap: 0;
  }

  .site-header-unified .header-actions {
    gap: 0;
  }

  .page-home .brand .brand-primary-logo {
    width: 78px;
  }

  .site-header-unified .brand .brand-primary-logo {
    width: 78px;
  }

  .page-home .brand .brand-openocto-logo {
    width: 27px;
    height: 27px;
  }

  .site-header-unified .brand .brand-openocto-logo {
    width: 27px;
    height: 27px;
  }

  .page-home .header-actions .header-utility {
    display: inline-flex;
    min-height: 26px;
    padding: 0 9px;
    font-size: 12px;
  }

  .site-header-unified .header-actions .header-utility {
    display: inline-flex;
    min-height: 26px;
    padding: 0 9px;
    font-size: 12px;
  }

  .page-home .menu-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    margin-left: 4px;
  }

  .site-header-unified .menu-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    margin-left: 4px;
  }

  .page-home .site-header.is-home-nav-visible .menu-toggle {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
  }

  .page-home .home-anchor {
    scroll-margin-top: 72px;
  }

  .product-feature-section {
    min-height: auto;
    padding: 56px 0 44px;
  }

  .product-feature-grid,
  .product-feature-grid-reverse {
    gap: 30px;
  }

  .product-feature-media {
    border-radius: 5px;
  }

  .product-feature-copy h2 {
    font-size: 36px;
  }

  .product-feature-copy > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
  }

  .product-feature-list {
    margin-top: 26px;
  }

  .product-feature-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .home-reserve {
    min-height: 100svh;
    padding: 112px 0 64px;
  }

  .home-reserve::after {
    right: 20px;
    bottom: 64px;
    left: 20px;
  }

  .home-reserve-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-reserve h2 {
    font-size: 48px;
  }

  .brand img {
    width: 104px;
  }

  .desktop-nav,
  .header-actions .pill,
  .header-actions .text-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .home-hero video {
    object-position: 52% center;
  }

  .home-hero::before {
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.2) 56%, rgba(5, 5, 5, 0.06) 100%);
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: 22svh;
    padding-bottom: 160px;
  }

  .hero-title,
  .inner-hero h1,
  .insights-head h1 {
    font-size: 44px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-lead,
  .inner-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    align-items: flex-start;
    gap: 20px;
  }

  .hero-partners {
    bottom: auto;
  }

  .page-home .hero-partners {
    top: auto;
    bottom: 110px;
    left: 20px;
    width: 220px;
  }

  .partner-line {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-home .partner-line {
    gap: 0;
  }

  .partner-names {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
    font-size: 11px;
  }

  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
  }

  .page-home .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 60px));
    gap: 10px;
  }

  .section {
    padding: 82px 0;
  }

  .section-compact {
    padding: 64px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-head h2,
  .display-title,
  .cta-title {
    font-size: 38px;
  }

  .section-head p {
    justify-self: start;
  }

  .business-row {
    grid-template-columns: 44px 1fr 24px;
    gap: 18px;
    padding: 32px 0;
  }

  .business-row p {
    grid-column: 2 / -1;
  }

  .business-row h3 {
    font-size: 25px;
  }

  .architecture-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .architecture-item,
  .metric {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .architecture-item:last-child,
  .metric:last-child {
    border-bottom: 0;
  }

  .architecture-item .index {
    margin-bottom: 42px;
  }

  .metric:not(:first-child) {
    padding-left: 0;
  }

  .metric strong {
    font-size: 36px;
  }

  .media-split,
  .product-row,
  .workspace-feature,
  .industry-row,
  .contact-layout,
  .cta-inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

  #company .media-frame.portrait {
    width: 100%;
  }

  .media-split,
  .product-row {
    gap: 36px;
  }

  .media-copy h2,
  .media-copy h3,
  .product-copy h2 {
    font-size: 34px;
  }

  .case-grid,
  .solution-grid,
  .honor-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .knowledge-stack > div,
  .knowledge-stack > div:nth-child(n) {
    width: 100%;
    grid-template-columns: 36px 1fr;
    gap: 10px 16px;
  }

  .knowledge-stack p {
    grid-column: 2;
  }

  .model-strip {
    flex-wrap: wrap;
    gap: 22px;
  }

  .case-item,
  .solution-item {
    min-height: 280px;
  }

  .inner-hero {
    min-height: 620px;
  }

  .inner-hero::before {
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.58) 72%, rgba(5, 5, 5, 0.32) 100%);
  }

  .inner-hero-content {
    padding-bottom: 62px;
  }

  .subnav {
    top: 72px;
  }

  .product-row {
    padding: 60px 0;
  }

  .product-row:nth-child(even) .product-media,
  .product-row:nth-child(even) .product-copy {
    order: initial;
  }

  .product-copy .number {
    margin-bottom: 28px;
  }

  .product-media {
    min-height: 360px;
  }

  .product-media.light {
    padding: 24px;
  }

  .industry-row {
    gap: 20px;
  }

  .industry-row .number {
    margin-bottom: -4px;
  }

  .timeline-row {
    grid-template-columns: 80px 1fr;
    gap: 24px;
  }

  .article-row {
    grid-template-columns: 1fr 24px;
    gap: 16px;
  }

  .article-row .article-meta,
  .article-row time {
    grid-column: 1;
  }

  .article-row h2 {
    grid-column: 1;
    font-size: 19px;
  }

  .article-row .arrow {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
  }

  .article-hero {
    padding: 142px 0 64px;
  }

  .article-hero h1 {
    font-size: 38px;
  }

  .article-deck {
    font-size: 16px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 62px;
    padding-bottom: 80px;
  }

  .article-aside {
    position: static;
  }

  .article-toc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 22px;
  }

  .article-content > p:first-child {
    font-size: 19px;
  }

  .article-content h2 {
    font-size: 27px;
  }

  .article-content p {
    font-size: 16px;
    line-height: 1.9;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav a + a {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-layout {
    min-height: 0;
  }

  .contact-main,
  .contact-aside {
    padding: 130px 20px 72px;
  }

  .contact-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-aside {
    padding-top: 72px;
  }

  .contact-main h1 {
    font-size: 42px;
  }

  .contact-dialog {
    padding: 34px 26px 28px;
  }

  .contact-dialog h2 {
    font-size: 28px;
  }

  .contact-choice-group {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    margin-top: 0;
  }

  .footer-main {
    gap: 54px;
  }

  .footer-navs {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 48px;
  }
}

@media (max-width: 420px) {
  .hero-title,
  .inner-hero h1,
  .insights-head h1 {
    font-size: 38px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-actions,
  .cta-actions,
  .mobile-menu-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .pill,
  .cta-actions .pill,
  .mobile-menu-foot .pill {
    width: 100%;
  }

  .partner-names {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-points,
  .footer-navs {
    grid-template-columns: 1fr;
  }

  .credential-grid,
  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .credential-card img {
    height: 250px;
  }

  .contact-qr {
    width: 100%;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .product-feature-section .product-feature-motion {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* OpenOcto Agent product landing page. Scoped so existing site pages keep their current presentation. */
.page-product {
  --product-ink: #0b1220;
  --product-muted: #596579;
  --product-blue: #245cff;
  --product-green: #00a887;
  --product-coral: #ff654d;
  --product-paper: #f5f7fb;
  background: var(--product-paper);
  color: var(--product-ink);
}

.page-product .site-header {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(6, 8, 13, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.page-product .site-header.is-scrolled {
  background: rgba(6, 8, 13, 0.96);
}

.page-product .desktop-nav,
.page-product .header-actions .text-link {
  color: rgba(255, 255, 255, 0.72);
}

.page-product .desktop-nav a:hover,
.page-product .header-actions .text-link:hover {
  color: #fff;
}

.product-hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 164px 0 84px;
  background: #06080d;
  color: #fff;
}

.product-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(112deg, rgba(6, 8, 13, 0.18), rgba(6, 8, 13, 0.82) 61%), linear-gradient(rgba(65, 96, 164, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(65, 96, 164, 0.12) 1px, transparent 1px);
  background-position: center;
  background-size: auto, 58px 58px, 58px 58px;
  opacity: 0.78;
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: 54px;
  align-items: center;
}

.product-hero-copy {
  padding: 30px 0;
}

.product-hero-copy::before {
  display: block;
  margin-bottom: 20px;
  color: #91cfff;
  content: 'ENTERPRISE AI · OPENOCTO';
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.product-hero h1 {
  margin: 0;
  font-size: 68px;
  font-weight: 600;
  line-height: 1.04;
}

.product-hero-lead {
  max-width: 575px;
  margin: 28px 0 0;
  color: rgba(238, 244, 255, 0.72);
  font-size: 19px;
  line-height: 1.75;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.page-product .product-primary {
  min-height: 54px;
  padding: 0 27px;
  background: #fff;
}

.page-product .product-primary:hover {
  background: #d9e9ff;
}

.product-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.product-secondary:hover {
  color: #91cfff;
}

.hero-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 52px;
  color: rgba(232, 239, 251, 0.64);
  font-size: 13px;
}

.hero-proof-line span {
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof-line span:first-child {
  padding-left: 0;
  border-left: 0;
}

.product-hero-visual {
  position: relative;
  min-width: 0;
}

.product-window {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(197, 216, 255, 0.42);
  background: #e8edf8;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45), 20px 20px 0 rgba(36, 92, 255, 0.18);
}

.window-chrome {
  display: flex;
  gap: 6px;
  height: 31px;
  align-items: center;
  padding-left: 13px;
  border-bottom: 1px solid #d7ddea;
  background: #f8faff;
}

.window-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b1bbcc;
}

.product-window img {
  width: 100%;
  aspect-ratio: 61 / 40;
  object-fit: cover;
  object-position: top left;
}

.floating-task {
  position: absolute;
  max-width: 224px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 19, 29, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.floating-task strong,
.floating-task span {
  display: block;
}

.floating-task strong {
  color: #fff;
  font-size: 13px;
}

.floating-task span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  line-height: 1.5;
}

.task-plan {
  top: -24px;
  right: 28px;
}

.task-audit {
  right: -20px;
  bottom: 30px;
  border-color: rgba(137, 255, 216, 0.38);
}

.landing-signal {
  border-bottom: 1px solid #dbe1ea;
  background: #fff;
}

.signal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  min-height: 188px;
}

.signal-grid > p {
  max-width: 510px;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.signal-marks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}

.signal-marks img {
  width: 38px;
  height: 38px;
  justify-self: center;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
}

.product-section {
  padding: 126px 0;
  background: var(--product-paper);
}

.product-section-grid,
.scenario-layout,
.governance-grid,
.proof-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 92px;
}

.product-index {
  display: block;
  margin-bottom: 22px;
  color: var(--product-blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.product-section h2,
.product-cta h2 {
  margin: 0;
  color: var(--product-ink);
  font-size: 43px;
  font-weight: 600;
  line-height: 1.22;
}

.capability-rail {
  border-top: 1px solid #cfd7e3;
}

.capability-rail article {
  display: grid;
  grid-template-columns: 104px 1fr 1.2fr;
  gap: 22px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid #cfd7e3;
}

.capability-rail article > span,
.governance-list article > span,
.scenario-detail > span {
  color: var(--product-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.capability-rail h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.capability-rail p {
  margin: 0;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.7;
}

.workflow-band {
  background: #0c1425;
  color: #fff;
}

.workflow-band .workflow-head {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 58px;
}

.workflow-band .product-index {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #8fbfff;
}

.workflow-band h2,
.workflow-band p {
  color: #fff;
}

.workflow-band .workflow-head p {
  max-width: 530px;
  margin: 0;
  color: rgba(231, 239, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: stretch;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.workflow-steps li {
  min-height: 188px;
  padding: 23px 25px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.workflow-steps li:nth-child(odd) {
  padding-right: 25px;
}

.workflow-steps li:nth-child(even) {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.workflow-steps span,
.console-top {
  color: #8fbfff;
  font-size: 11px;
  font-weight: 700;
}

.workflow-steps strong {
  display: block;
  margin-top: 40px;
  font-size: 18px;
}

.workflow-steps p {
  margin: 10px 0 0;
  color: rgba(231, 239, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.workflow-console {
  min-height: 400px;
  padding: 22px;
  border: 1px solid rgba(150, 186, 255, 0.34);
  background: #101e37;
  box-shadow: 18px 18px 0 rgba(36, 92, 255, 0.22);
}

.console-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(150, 186, 255, 0.22);
}

.console-top strong {
  color: rgba(231, 239, 255, 0.55);
  font-size: 11px;
  font-weight: 500;
}

.console-line {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  color: rgba(231, 239, 255, 0.65);
  font-size: 13px;
}

.console-line span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid #8fbfff;
  border-radius: 50%;
}

.console-line.is-active {
  color: #fff;
}

.console-line.is-active span {
  border-color: var(--product-green);
  background: var(--product-green);
  box-shadow: 0 0 0 5px rgba(0, 168, 135, 0.14);
}

.console-result {
  margin-top: 38px;
  padding: 21px;
  border-left: 2px solid var(--product-green);
  background: rgba(255, 255, 255, 0.06);
}

.console-result strong {
  font-size: 16px;
}

.console-result p {
  margin: 9px 0 0;
  color: rgba(231, 239, 255, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.scenario-section {
  background: #fff;
}

.scenario-copy p,
.governance-copy p,
.proof-copy p,
.product-cta p {
  margin: 24px 0 0;
  color: var(--product-muted);
  font-size: 16px;
  line-height: 1.75;
}

.scenario-panel {
  border: 1px solid #d7dfeb;
}

.scenario-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #d7dfeb;
}

.scenario-tabs button {
  min-height: 64px;
  flex: 1;
  border: 0;
  border-right: 1px solid #d7dfeb;
  background: #fff;
  color: #6c7788;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.scenario-tabs button:last-child {
  border-right: 0;
}

.scenario-tabs button.is-active {
  background: var(--product-blue);
  color: #fff;
}

.scenario-detail {
  min-height: 332px;
  padding: 42px;
}

.scenario-detail h3 {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.32;
}

.scenario-detail p {
  max-width: 490px;
  margin: 17px 0 0;
  color: var(--product-muted);
  font-size: 15px;
  line-height: 1.75;
}

.scenario-detail ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.scenario-detail li {
  padding-top: 12px;
  border-top: 1px solid #d7dfeb;
  color: #253249;
  font-size: 12px;
  line-height: 1.55;
}

.governance-band {
  background: #dff4ec;
}

.governance-list {
  border-top: 1px solid rgba(11, 18, 32, 0.22);
}

.governance-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(11, 18, 32, 0.22);
}

.governance-list article > span {
  color: #007d65;
}

.governance-list strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.proof-section {
  background: #f6eff0;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: #d8cfd3;
}

.proof-metrics div {
  min-height: 164px;
  padding: 24px;
  background: #f6eff0;
}

.proof-metrics strong,
.proof-metrics span {
  display: block;
}

.proof-metrics strong {
  color: var(--product-coral);
  font-size: 43px;
  font-weight: 600;
  line-height: 1;
}

.proof-metrics span {
  margin-top: 16px;
  color: var(--product-muted);
  font-size: 13px;
}

.proof-copy {
  align-self: center;
}

.product-cta {
  padding: 116px 0;
  background: #245cff;
  color: #fff;
}

.product-cta-inner {
  max-width: 790px;
}

.product-cta h2,
.product-cta p,
.product-cta .product-secondary {
  color: #fff;
}

.product-cta p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.76);
}

.product-cta .product-primary {
  color: var(--product-blue);
}

.page-product .site-footer {
  background: #080a0f;
}

@media (max-width: 1100px) {
  .product-hero-grid,
  .product-section-grid,
  .scenario-layout,
  .governance-grid,
  .proof-layout,
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .product-hero {
    padding-top: 138px;
  }

  .product-hero-copy {
    max-width: 670px;
  }

  .product-hero-visual {
    max-width: 780px;
  }

  .workflow-band .workflow-head {
    grid-template-columns: 1fr 1fr;
  }

  .product-section h2,
  .product-cta h2 {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .page-product .site-header {
    background: rgba(6, 8, 13, 0.96);
  }

  .product-hero {
    min-height: 0;
    padding: 122px 0 58px;
  }

  .product-hero h1 {
    font-size: 46px;
  }

  .product-hero-lead {
    margin-top: 21px;
    font-size: 16px;
  }

  .product-hero-actions {
    gap: 14px;
    margin-top: 27px;
  }

  .hero-proof-line {
    gap: 10px 0;
    margin-top: 36px;
  }

  .hero-proof-line span {
    padding: 0 12px;
    font-size: 12px;
  }

  .task-plan,
  .task-audit {
    display: none;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 42px 0;
  }

  .signal-marks {
    grid-template-columns: repeat(6, 1fr);
  }

  .signal-marks img {
    width: 30px;
    height: 30px;
  }

  .product-section,
  .product-cta {
    padding: 76px 0;
  }

  .product-section h2,
  .product-cta h2 {
    font-size: 31px;
  }

  .capability-rail article {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }

  .capability-rail p {
    grid-column: 2;
  }

  .workflow-band .workflow-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 42px;
  }

  .workflow-grid {
    gap: 38px;
  }

  .workflow-console {
    min-height: 0;
  }

  .scenario-detail {
    min-height: 0;
    padding: 28px;
  }

  .scenario-detail h3 {
    font-size: 25px;
  }

  .scenario-detail ul {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .governance-list article {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .proof-metrics div {
    min-height: 142px;
    padding: 19px;
  }

  .proof-metrics strong {
    font-size: 34px;
  }
}

@media (max-width: 420px) {
  .product-hero h1 {
    font-size: 40px;
  }

  .product-hero-actions {
    align-items: stretch;
  }

  .product-hero-actions .pill,
  .product-hero-actions .product-secondary {
    width: 100%;
  }

  .product-hero-actions .product-secondary {
    justify-content: center;
  }

  .hero-proof-line span {
    padding: 0 9px;
  }

  .signal-marks {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps li,
  .workflow-steps li:nth-child(odd),
  .workflow-steps li:nth-child(even) {
    min-height: 0;
    padding: 20px 0;
    border-left: 0;
  }

  .workflow-steps strong {
    margin-top: 25px;
  }

  .scenario-tabs {
    flex-direction: column;
  }

  .scenario-tabs button {
    min-height: 50px;
    border-right: 0;
    border-bottom: 1px solid #d7dfeb;
  }

  .scenario-tabs button:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .capability-shell {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 30px;
  }

  .office-layout {
    grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
  }

  .command-layout {
    grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
  }
}

@media (max-width: 820px) {
  .capability-section {
    min-height: auto;
  }

  .capability-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .capability-nav {
    display: block;
  }

  .capability-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
  }

  .capability-tabs button {
    min-height: 48px;
  }

  .office-layout {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  }

  .command-layout {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 760px) {
  .capability-section.home-reserve {
    min-height: auto;
    padding: 92px 0 64px;
  }

  .capability-section.home-reserve::after {
    display: none;
  }

  .capability-shell {
    min-height: 0;
    gap: 26px;
  }

  .capability-nav-head {
    gap: 12px;
  }

  .capability-nav h2 {
    font-size: 28px;
  }

  .capability-tabs {
    display: flex;
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
    scrollbar-width: none;
  }

  .capability-tabs::-webkit-scrollbar {
    display: none;
  }

  .capability-tabs button {
    width: 154px;
    min-width: 154px;
    min-height: 54px;
    padding-right: 22px;
    font-size: 13px;
  }

  .capability-tabs button:hover,
  .capability-tabs button.is-active {
    padding-left: 0;
  }

  .capability-panel-head {
    gap: 12px;
    padding-bottom: 15px;
  }

  .capability-panel h3 {
    font-size: 29px;
  }

  .office-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 18px;
  }

  .office-visual {
    box-shadow: 10px 10px 0 rgba(21, 86, 255, 0.22);
  }

  .office-visual > span {
    opacity: 1;
  }

  .office-route {
    gap: 13px;
    padding: 18px 0;
  }

  .office-route h4 {
    font-size: 17px;
  }

  .office-route p {
    font-size: 13px;
  }

  .node-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 13px 7px;
  }

  .capability-pending h3 {
    font-size: 36px;
  }

  .command-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .command-route h3 {
    font-size: 32px;
  }

  .command-route p {
    margin-top: 9px;
    font-size: 14px;
  }

  .command-visual,
  .workbuddy-visual,
  .doubao-visual {
    box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.1);
  }

  .command-visual > span,
  .workbuddy-visual > span,
  .doubao-visual > span {
    opacity: 1;
  }

}

@media (max-width: 960px) {
  .home-insights-content .insights-head h2 {
    font-size: 62px;
  }
}

@media (max-width: 720px) {
  .home-about-content [id] {
    scroll-margin-top: 126px;
  }

  .home-about-content > .about-module {
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .about-module-title {
    margin-bottom: 24px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-group + .partner-group {
    margin-top: 32px;
  }

  .partner-item,
  .partner-grid-upstream .partner-item,
  .partner-item:last-child {
    min-height: 112px;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partner-item:last-child {
    border-bottom: 0;
  }

  .home-insights-content .insights-head h2 {
    font-size: 44px;
  }

  .home-insights-heading {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }

  .home-insights-heading .about-module-title {
    width: 100%;
  }

  .home-section-title {
    padding-top: 82px;
  }

  .home-section-title h2 {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  .home-insights-content .insights-head h2 {
    font-size: 38px;
  }
}
