/*
 * MYRILUM Marketing Site v0.4 — route-scoped local candidate styles.
 * This file consumes the locked v0.3 primitives and does not supersede v0.3.
 */

.v2-shell,
.v2-shell *,
.v2-shell *::before,
.v2-shell *::after {
  box-sizing: border-box;
}

.v2-shell {
  --gray-500: var(--gray-600);
  --space-7: 28px;
  min-height: 100vh;
  overflow: clip;
  background: var(--v4-surface);
  color: var(--v4-content-strong);
  font-family: var(--font-ui);
  text-rendering: optimizeLegibility;
}

.v2-shell button,
.v2-shell input,
.v2-shell select,
.v2-shell textarea {
  font: inherit;
}

.v2-shell input,
.v2-shell select,
.v2-shell textarea {
  color: inherit;
}

.v2-shell a {
  color: inherit;
  text-decoration: none;
}

.v2-shell button,
.v2-shell a {
  -webkit-tap-highlight-color: transparent;
}

.v2-shell :focus-visible {
  outline: 3px solid var(--v4-focus);
  outline-offset: 3px;
}

.v2-shell-skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-3);
  left: var(--space-3);
  min-height: var(--v4-control-min);
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--blue-300);
  border-radius: var(--v4-radius-control);
  background: var(--v4-surface);
  color: var(--blue-900);
  font-size: var(--text-footnote);
  font-weight: var(--weight-semibold);
  transform: translateY(-180%);
  transition: transform var(--v4-duration-fast) ease-out;
}

.v2-shell-skip-link:focus {
  transform: translateY(0);
}

.v2-shell-status-bar {
  position: relative;
  z-index: 90;
  display: flex;
  min-height: 38px;
  align-items: center;
  border-bottom: 1px solid rgba(194, 213, 248, 0.2);
  background: #03142f;
  color: var(--blue-100);
}

.v2-shell-status-inner {
  display: flex;
  width: min(100%, var(--v4-page-max));
  align-items: center;
  margin: 0 auto;
  padding: 6px var(--v4-gutter);
}

.v2-shell-review-state {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: var(--space-3);
}

.v2-shell-review-state > span {
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-shell-review-state > strong {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.045em;
}

.v2-shell-header {
  position: sticky;
  z-index: 80;
  top: 0;
  min-height: var(--v4-header-height);
  border-bottom: 1px solid rgba(194, 213, 248, 0.16);
  background: rgba(6, 29, 71, 0.96);
  backdrop-filter: blur(18px) saturate(1.12);
  color: var(--v4-content-inverse);
  transition: min-height var(--v4-duration-base) ease-out,
    box-shadow var(--v4-duration-base) ease-out,
    background var(--v4-duration-base) ease-out;
}

.v2-shell-header.is-condensed {
  min-height: 64px;
  background: rgba(3, 20, 47, 0.97);
  box-shadow: 0 12px 34px rgba(3, 20, 47, 0.2);
}

.v2-shell-header-inner {
  display: grid;
  width: min(100%, var(--v4-page-max));
  min-height: var(--v4-header-height);
  grid-template-columns: minmax(150px, 0.75fr) minmax(0, 3fr);
  align-items: center;
  gap: var(--space-6);
  margin: 0 auto;
  padding: 0 var(--v4-gutter);
  transition: min-height var(--v4-duration-base) ease-out;
}

.v2-shell-header.is-condensed .v2-shell-header-inner {
  min-height: 64px;
}

.v2-shell-brand-slot,
.v2-shell-brand-link {
  display: inline-flex;
  width: fit-content;
  min-height: var(--v4-control-min);
  align-items: center;
}

.v2-shell-brand-link .brand-lockup {
  width: 142px;
  transition: width var(--v4-duration-base) ease-out;
}

.v2-shell-header.is-condensed .v2-shell-brand-link .brand-lockup {
  width: 132px;
}

.v2-shell-navigation {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--space-4);
}

.v2-shell-menu-masthead,
.v2-shell-menu-intro,
.v2-shell-nav-copy small,
.v2-shell-utility-label,
.v2-shell-utility-link--mobile,
.v2-shell-language-label,
.v2-shell-cta-copy small {
  display: none;
}

.v2-shell-primary-nav,
.v2-shell-nav-list {
  min-width: 0;
}

.v2-shell-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-shell-nav-label--compact {
  white-space: nowrap;
}

.v2-shell-nav-label--full {
  display: none;
}

.v2-shell-nav-trigger,
.v2-shell-utility-link {
  position: relative;
  display: inline-flex;
  min-height: var(--v4-control-min);
  align-items: center;
  gap: var(--space-2);
  padding: 0 var(--space-3);
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--blue-200);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--weight-medium);
  transition: color var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out,
    background var(--v4-duration-fast) ease-out;
}

.v2-shell-nav-trigger:hover,
.v2-shell-utility-link:hover {
  border-color: var(--blue-400);
  background: rgba(228, 237, 252, 0.06);
  color: #fff;
}

.v2-shell-nav-trigger.is-active,
.v2-shell-nav-item.is-expanded .v2-shell-nav-trigger,
.v2-shell-utility-link.is-active {
  border-color: var(--amber-400);
  background: rgba(227, 161, 47, 0.08);
  color: #fff;
}

.v2-shell-nav-caret {
  flex: 0 0 auto;
  color: var(--blue-400);
  transition: transform var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out;
}

.v2-shell-nav-item.is-expanded .v2-shell-nav-caret {
  color: var(--amber-300);
  transform: rotate(180deg);
}

.v2-shell-mega-panel {
  position: absolute;
  z-index: 95;
  top: 100%;
  right: 0;
  left: 0;
  max-height: min(520px, calc(100vh - 72px));
  overflow-y: auto;
  border-top: 1px solid rgba(194, 213, 248, 0.18);
  border-bottom: 1px solid var(--gray-300);
  background: var(--v4-surface);
  box-shadow: var(--shadow-3);
  color: var(--v4-content-default);
  animation: v2-shell-mega-enter var(--v4-duration-base) ease-out both;
}

.v2-shell-header.is-condensed .v2-shell-mega-panel {
  max-height: min(520px, calc(100vh - 60px));
}

.v2-shell-mega-panel[hidden] {
  display: none;
}

.v2-shell-mega-panel__inner {
  display: grid;
  width: min(100%, var(--v4-page-max));
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 2.22fr);
  margin: 0 auto;
  padding: 0 var(--v4-gutter);
}

.v2-shell-mega-featured {
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(194, 213, 248, 0.18);
  background: var(--blue-950);
}

.v2-shell-mega-overview,
.v2-shell-mega-featured-link {
  position: relative;
  display: grid;
  min-width: 0;
  color: #fff;
}

.v2-shell-mega-overview {
  min-height: 122px;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-content: center;
  gap: var(--space-2) var(--space-4);
  padding: var(--space-6) var(--space-6) var(--space-5);
  border-bottom: 1px solid rgba(143, 178, 240, 0.22);
}

.v2-shell-mega-overview > span,
.v2-shell-mega-featured-link > span,
.v2-shell-mega-group h3 {
  color: var(--amber-500);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.045em;
  line-height: 1.4;
}

.v2-shell-mega-overview > span,
.v2-shell-mega-overview > strong,
.v2-shell-mega-overview > small {
  grid-column: 1;
}

.v2-shell-mega-overview > strong {
  font-size: 21px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.v2-shell-mega-overview > small,
.v2-shell-mega-featured-link > small {
  color: var(--blue-300);
  font-size: 12px;
  font-style: normal;
  font-weight: var(--weight-regular);
  line-height: 1.55;
}

.v2-shell-mega-overview > svg {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  color: var(--amber-400);
  transition: transform var(--v4-duration-fast) ease-out;
}

.v2-shell-mega-overview:hover > svg,
.v2-shell-mega-featured-link:hover em svg {
  transform: translateX(3px);
}

.v2-shell-mega-overview.is-active {
  box-shadow: inset 3px 0 0 var(--amber-400);
}

.v2-shell-mega-featured-link {
  align-content: start;
  gap: var(--space-2);
  min-height: 154px;
  padding: var(--space-5) var(--space-6) var(--space-6);
}

.v2-shell-mega-featured-link > strong {
  max-width: 290px;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
}

.v2-shell-mega-featured-link > em {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  color: var(--amber-300);
  font-size: 12px;
  font-style: normal;
  font-weight: var(--weight-semibold);
}

.v2-shell-mega-groups {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 0;
  padding: var(--space-5) 0 var(--space-6) var(--space-6);
  background: var(--v4-surface);
}

.v2-shell-mega-group {
  min-width: 0;
  padding: 0 var(--space-5);
  border-left: 1px solid var(--gray-200);
}

.v2-shell-mega-group:first-child {
  border-left: 0;
}

.v2-shell-mega-group h3 {
  margin: 0 0 var(--space-3);
  color: var(--blue-600);
}

.v2-shell-mega-group ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-shell-mega-group li {
  border-top: 1px solid var(--gray-200);
}

.v2-shell-mega-group a {
  display: grid;
  min-height: 52px;
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  transition: color var(--v4-duration-fast) ease-out,
    background var(--v4-duration-fast) ease-out,
    padding var(--v4-duration-fast) ease-out;
}

.v2-shell-mega-group a svg {
  color: var(--blue-400);
  opacity: 0;
  transition: opacity var(--v4-duration-fast) ease-out,
    transform var(--v4-duration-fast) ease-out;
}

.v2-shell-mega-group a:hover,
.v2-shell-mega-group a:focus-visible,
.v2-shell-mega-group a.is-active {
  padding-left: var(--space-2);
  background: var(--v4-surface-subtle);
  color: var(--blue-700);
}

.v2-shell-mega-group a:hover svg,
.v2-shell-mega-group a:focus-visible svg,
.v2-shell-mega-group a.is-active svg {
  opacity: 1;
  transform: translateX(2px);
}

.v2-shell-mega-group a.is-active {
  box-shadow: inset 2px 0 0 var(--amber-500);
}

.v2-shell-mega-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(3, 20, 47, 0.34);
}

@keyframes v2-shell-mega-enter {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v2-shell-utility {
  display: none;
}

.v2-shell-language-switch {
  display: inline-flex;
  min-height: var(--v4-control-min);
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(194, 213, 248, 0.18);
  border-radius: var(--v4-radius-control);
  background: rgba(3, 20, 47, 0.38);
}

.v2-shell-language-option {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: var(--v4-radius-control);
  background: transparent;
  color: var(--blue-300);
  cursor: pointer;
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
}

.v2-shell-language-option:hover {
  background: rgba(228, 237, 252, 0.07);
  color: #fff;
}

.v2-shell-language-option.is-active {
  background: rgba(228, 237, 252, 0.12);
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--amber-400);
}

.v2-shell-utility-link.v2-shell-utility-link--mobile {
  display: none;
}

.v2-shell-language-divider {
  color: var(--blue-600);
  font-size: var(--text-caption2);
}

.v2-shell .v2-shell-cta,
.v2-primary-action {
  display: inline-flex;
  min-height: var(--v4-control-min);
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-5);
  border: 1px solid var(--amber-400);
  border-radius: var(--v4-radius-control);
  background: var(--amber-400);
  color: var(--amber-900);
  cursor: pointer;
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
  line-height: 1;
  transition: background var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out,
    transform var(--v4-duration-fast) ease-out;
}

.v2-shell .v2-shell-cta:hover,
.v2-primary-action:hover {
  border-color: var(--amber-300);
  background: var(--amber-300);
  color: var(--amber-900);
}

.v2-shell-cta:active,
.v2-primary-action:active {
  transform: translateY(1px);
}

.v2-shell-cta-icon,
.v2-primary-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.v2-shell-cta-copy {
  display: grid;
  gap: 2px;
}

.v2-shell-menu-toggle {
  display: none;
}

.v2-shell-main {
  min-height: 60vh;
  outline: none;
}

.v2-shell-footer {
  display: block;
  min-height: 0;
  padding: 0;
  border-top: 1px solid var(--blue-800);
  background: #03142f;
  color: #fff;
}

.v2-shell-footer-cta {
  display: grid;
  width: min(100%, var(--v4-content-max));
  grid-template-columns: 56px minmax(0, 1fr) minmax(230px, 0.34fr);
  align-items: center;
  gap: clamp(var(--space-5), 3vw, var(--space-10));
  margin: 0 auto;
  padding: clamp(var(--space-8), 5vw, var(--space-12)) var(--v4-gutter);
  border-bottom: 1px solid var(--blue-200);
  background:
    linear-gradient(125deg, rgba(228, 237, 252, 0.94), rgba(255, 249, 237, 0.98)),
    #fff;
  color: var(--blue-950);
}

.v2-shell-footer-cta__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--amber-300);
  background: var(--amber-50);
  color: var(--amber-800);
}

.v2-shell-footer-cta__copy {
  min-width: 0;
}

.v2-shell-footer-cta__copy > p:first-child {
  margin: 0;
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.v2-shell-footer-cta__copy h2 {
  max-width: 760px;
  margin: var(--space-3) 0 0;
  color: var(--blue-950);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.v2-shell-footer-cta__copy > p:last-child {
  max-width: 820px;
  margin: var(--space-4) 0 0;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.7;
}

.v2-shell-footer-cta__actions {
  display: grid;
  gap: var(--space-2);
}

.v2-shell-footer-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0 var(--space-4);
  border: 1px solid var(--blue-300);
  border-radius: var(--v4-radius-control);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-900);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  transition: background var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out;
}

.v2-shell-footer-action:hover {
  border-color: var(--blue-600);
  background: #fff;
}

.v2-shell-footer-action.is-primary {
  border-color: var(--blue-900);
  background: var(--blue-900);
  color: #fff;
}

.v2-shell-footer-action.is-primary:hover {
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.v2-shell-footer-cta__actions small {
  color: var(--gray-600);
  font-size: 11px;
  line-height: 1.5;
}

.v2-shell-footer-inner {
  display: grid;
  width: min(100%, var(--v4-content-max));
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(var(--space-8), 4vw, var(--space-12));
  margin: 0 auto;
  padding: var(--space-16) var(--v4-gutter) var(--space-12);
}

.v2-shell-footer-brand-link {
  display: inline-flex;
  min-height: var(--v4-control-min);
  align-items: center;
}

.v2-shell-footer-brand-link .brand-lockup {
  width: 150px;
}

.v2-shell-footer-promise {
  margin: var(--space-5) 0 var(--space-2);
  color: #fff;
  font-size: var(--text-title3);
  font-weight: var(--weight-semibold);
}

.v2-shell-footer-boundary {
  max-width: 360px;
  margin: 0;
  color: var(--blue-200);
  font-size: 13px;
  line-height: 1.7;
}

.v2-shell-footer-directory-label {
  margin: 0 0 var(--space-5);
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-shell-footer-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

.v2-shell-footer-group h2 {
  margin: 0;
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.045em;
  line-height: 1.5;
  text-transform: uppercase;
}

.v2-shell-footer-group ul {
  display: grid;
  gap: 0;
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
}

.v2-shell-footer-group a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid transparent;
  color: var(--blue-100);
  font-size: 14px;
  line-height: 1.35;
  transition: border-color var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out;
}

.v2-shell-footer-group a:hover {
  border-color: rgba(143, 178, 240, 0.34);
  color: #fff;
}

.v2-shell-footer-meta {
  display: grid;
  width: min(100%, var(--v4-content-max));
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--space-6);
  margin: 0 auto;
  padding: var(--space-5) var(--v4-gutter) var(--space-6);
  border-top: 1px solid rgba(143, 178, 240, 0.22);
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.v2-shell-footer-meta-brand,
.v2-shell-footer-meta nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.v2-shell-footer-meta nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.v2-shell-footer-meta nav a:hover {
  color: #fff;
}

.v2-concept-switcher {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  min-height: 48px;
  padding: 3px var(--v4-gutter);
  border: 0;
  border-bottom: 1px solid rgba(143, 178, 240, 0.24);
  border-radius: 0;
  background: #03142f;
  box-shadow: none;
  color: var(--blue-100);
}

.v2-concept-switcher > span {
  padding: 0 var(--space-3);
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-concept-switcher a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 var(--space-3);
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--blue-200);
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
}

.v2-concept-switcher a:hover {
  color: #fff;
}

.v2-concept-switcher a.is-active {
  border-color: var(--amber-500);
  background: var(--amber-400);
  color: var(--amber-900);
}

.v2-section-inner {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding-right: var(--v4-gutter);
  padding-left: var(--v4-gutter);
}

.v2-kicker {
  margin: 0;
  color: var(--blue-700);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.v2-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: var(--space-12);
  margin-bottom: var(--space-10);
}

.v2-section-heading h2 {
  max-width: 780px;
  margin: var(--space-4) 0 0;
  color: var(--blue-950);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.v2-section-heading > p {
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-callout);
  line-height: 1.8;
}

/* Candidate A — Delivery Atlas */

.v2-home-page {
  background: var(--v4-surface);
}

.v2-home-hero {
  position: relative;
  background: var(--v4-canvas);
  color: var(--v4-content-inverse);
}

.v2-home-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(194, 213, 248, 0.22);
  content: "";
}

.v2-home-hero__inner {
  display: grid;
  width: min(100%, var(--v4-page-max));
  min-height: min(790px, calc(100vh - 106px));
  grid-template-columns: minmax(390px, 0.82fr) minmax(680px, 1.38fr);
  align-items: center;
  gap: clamp(var(--space-10), 4vw, var(--space-16));
  margin: 0 auto;
  padding: clamp(var(--space-16), 8vh, 112px) var(--v4-gutter);
}

.v2-home-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.v2-home-hero__kicker {
  color: var(--blue-300);
}

.v2-home-hero__title {
  margin: var(--space-5) 0 0;
  font-size: clamp(54px, 5.7vw, 82px);
  font-weight: var(--weight-regular);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.v2-home-hero__title span,
.v2-home-hero__title strong {
  display: block;
}

.v2-home-hero__title span {
  color: #fff;
  font-weight: var(--weight-regular);
}

.v2-home-hero__title strong {
  margin-top: var(--space-2);
  color: var(--amber-400);
  font-weight: var(--weight-semibold);
}

.v2-home-hero__summary {
  max-width: 500px;
  margin: var(--space-8) 0 0;
  color: var(--blue-100);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
}

.v2-home-hero__action {
  min-height: 52px;
  margin-top: var(--space-8);
  padding: 0 var(--space-6);
  font-size: var(--text-callout);
}

.v2-home-hero__boundary {
  max-width: 480px;
  margin: var(--space-5) 0 0;
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  letter-spacing: 0.035em;
  line-height: 1.7;
}

.v2-delivery-atlas {
  position: relative;
  margin: 0;
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  border: 1px solid rgba(143, 178, 240, 0.32);
  border-radius: var(--v4-radius-panel);
  background: var(--v4-canvas-raised);
  box-shadow: 0 28px 72px rgba(0, 8, 24, 0.28);
}

.v2-delivery-atlas__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(143, 178, 240, 0.22);
}

.v2-delivery-atlas__header > span:first-child {
  display: grid;
  gap: var(--space-2);
}

.v2-delivery-atlas__header strong {
  color: #fff;
  font-size: var(--text-title2);
  font-weight: var(--weight-semibold);
}

.v2-delivery-atlas__kicker,
.v2-delivery-atlas__disclaimer {
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.v2-delivery-atlas__disclaimer {
  max-width: 210px;
  color: var(--amber-300);
  text-align: right;
}

.v2-delivery-atlas__entry {
  width: fit-content;
  margin: var(--space-6) 0 var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-left: 3px solid var(--amber-400);
  background: rgba(228, 237, 252, 0.08);
  color: var(--blue-100);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-delivery-atlas__steps {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-delivery-atlas__step {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  align-items: center;
}

.v2-delivery-atlas__step-card {
  min-width: 0;
  min-height: 274px;
  flex: 1 1 auto;
  padding: var(--space-4);
  border: 1px solid rgba(143, 178, 240, 0.24);
  border-top: 3px solid var(--blue-500);
  background: rgba(6, 31, 71, 0.56);
}

.v2-delivery-atlas__step--outcome .v2-delivery-atlas__step-card {
  border-color: var(--amber-500);
  border-top-color: var(--amber-400);
  background: rgba(92, 52, 0, 0.22);
}

.v2-delivery-atlas__step-heading {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.v2-delivery-atlas__number {
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-delivery-atlas__outcome-icon {
  width: 20px;
  height: 20px;
  color: var(--amber-400);
}

.v2-delivery-atlas__step-card > strong {
  display: block;
  min-height: 46px;
  margin-top: var(--space-4);
  color: #fff;
  font-size: var(--text-title3);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
}

.v2-delivery-atlas__step-card > p {
  min-height: 44px;
  margin: var(--space-2) 0 0;
  color: var(--blue-200);
  font-size: var(--text-footnote);
  line-height: 1.6;
}

.v2-delivery-atlas__detail-list {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: var(--space-4) 0 0;
  border-top: 1px solid rgba(143, 178, 240, 0.18);
  list-style: none;
}

.v2-delivery-atlas__detail-list li {
  position: relative;
  padding-left: var(--space-3);
  color: var(--blue-200);
  font-size: 11px;
  line-height: 1.45;
}

.v2-delivery-atlas__detail-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--blue-500);
  content: "";
}

.v2-delivery-atlas__connector {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 0 5px;
  color: var(--blue-400);
}

.v2-delivery-atlas__feedback {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(143, 178, 240, 0.22);
  color: var(--blue-200);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  letter-spacing: 0.03em;
}

.v2-delivery-atlas__feedback svg {
  width: 18px;
  height: 18px;
  color: var(--amber-400);
  transform: rotate(180deg);
}

.v2-service-directory {
  padding: var(--v4-section-space) 0;
  background: var(--v4-surface);
}

.v2-service-directory__status {
  padding: var(--space-5);
  border-left: 3px solid var(--amber-500);
  background: var(--amber-50);
}

.v2-service-directory__status strong {
  display: block;
  color: var(--amber-900);
  font-size: var(--text-footnote);
}

.v2-service-directory__status p {
  margin: var(--space-2) 0 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.65;
}

.v2-service-directory__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 2fr);
  border: 1px solid var(--gray-200);
  background: #fff;
  box-shadow: 0 18px 56px rgba(6, 31, 71, 0.08);
}

.v2-service-directory__master {
  border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.v2-service-directory__master-heading,
.v2-service-directory__sku-heading {
  display: grid;
  gap: var(--space-1);
  padding: var(--space-5);
  border-bottom: 1px solid var(--gray-200);
}

.v2-service-directory__master-heading strong,
.v2-service-directory__sku-heading strong {
  color: var(--blue-950);
  font-size: var(--text-callout);
}

.v2-service-directory__master-heading span,
.v2-service-directory__sku-heading span {
  color: var(--gray-600);
  font-size: var(--text-caption);
}

.v2-service-directory__family-list,
.v2-service-directory__sku-list {
  display: grid;
}

.v2-service-directory__family-button,
.v2-service-directory__sku-button {
  display: grid;
  width: 100%;
  min-height: 64px;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border: 0;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
  transition: background var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out;
}

.v2-service-directory__family-button {
  grid-template-columns: 34px minmax(0, 1fr) 18px;
}

.v2-service-directory__sku-button {
  grid-template-columns: 54px minmax(0, 1fr) 18px;
}

.v2-service-directory__family-button:hover,
.v2-service-directory__sku-button:hover {
  background: var(--blue-50);
  color: var(--blue-900);
}

.v2-service-directory__family-button--selected,
.v2-service-directory__sku-button--selected {
  background: var(--blue-900);
  color: #fff;
}

.v2-service-directory__family-button--selected:hover,
.v2-service-directory__sku-button--selected:hover {
  background: var(--blue-800);
  color: #fff;
}

.v2-service-directory__family-code,
.v2-service-directory__sku-button > span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
}

.v2-service-directory__family-button--selected .v2-service-directory__family-code,
.v2-service-directory__sku-button--selected > span {
  color: var(--amber-300);
}

.v2-service-directory__family-copy {
  display: grid;
  min-width: 0;
  gap: var(--space-1);
}

.v2-service-directory__family-copy strong,
.v2-service-directory__sku-button strong {
  font-size: var(--text-footnote);
  font-weight: var(--weight-semibold);
}

.v2-service-directory__family-copy small {
  overflow: hidden;
  color: var(--gray-600);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-service-directory__family-button--selected small {
  color: var(--blue-200);
}

.v2-service-directory__family-button--selected strong,
.v2-service-directory__sku-button--selected strong {
  color: #fff;
}

.v2-service-directory__family-button svg,
.v2-service-directory__sku-button svg {
  width: 16px;
  height: 16px;
}

.v2-service-directory__detail {
  min-width: 0;
  background: #fff;
}

.v2-service-directory__detail-header {
  padding: clamp(var(--space-6), 4vw, var(--space-12));
  border-bottom: 1px solid var(--gray-200);
}

.v2-service-directory__selection-label {
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-caption);
}

.v2-service-directory__selection-code {
  margin: var(--space-3) 0 0;
  color: var(--blue-700);
  font-family: var(--font-mono);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
}

.v2-service-directory__detail-header h3 {
  margin: var(--space-3) 0 0;
  color: var(--blue-950);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.v2-service-directory__detail-header > p:last-child {
  max-width: 780px;
  margin: var(--space-5) 0 0;
  color: var(--gray-700);
  font-size: var(--text-callout);
  line-height: 1.8;
}

.v2-service-directory__outcome {
  padding: var(--space-6) clamp(var(--space-6), 4vw, var(--space-12));
  border-bottom: 1px solid var(--amber-200);
  background: var(--amber-50);
}

.v2-service-directory__outcome h4,
.v2-service-directory__detail-card h4 {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.v2-service-directory__outcome p {
  max-width: 860px;
  margin: var(--space-3) 0 0;
  color: var(--amber-900);
  font-size: var(--text-title3);
  font-weight: var(--weight-semibold);
  line-height: 1.55;
}

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

.v2-service-directory__detail-card {
  min-width: 0;
  padding: clamp(var(--space-5), 3vw, var(--space-8));
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.v2-service-directory__detail-card:nth-child(even) {
  border-right: 0;
}

.v2-service-directory__detail-card > p,
.v2-service-directory__detail-card > strong {
  display: block;
  margin: var(--space-3) 0 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-service-directory__detail-card > strong {
  color: var(--blue-900);
}

.v2-service-directory__detail-card--gate {
  border-left: 4px solid var(--amber-500);
  background: var(--amber-50);
}

.v2-service-directory__detail-card--availability {
  background: var(--blue-50);
}

.v2-service-directory__detail-list {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.v2-service-directory__detail-list li {
  position: relative;
  padding-left: var(--space-4);
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.65;
}

.v2-service-directory__detail-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue-500);
  content: "";
}

.v2-service-directory__definition-list {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-4) 0 0;
}

.v2-service-directory__definition-list > div {
  display: grid;
  gap: var(--space-1);
}

.v2-service-directory__definition-list dt {
  color: var(--gray-500);
  font-size: var(--text-caption2);
  font-weight: var(--weight-semibold);
}

.v2-service-directory__definition-list dd {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.65;
}

.v2-results {
  padding: var(--v4-section-space) 0;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.v2-results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--gray-300);
  border-left: 1px solid var(--gray-300);
}

.v2-results__card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background: #fff;
}

.v2-results__family,
.v2-results__service {
  display: grid;
  gap: var(--space-2);
  margin: 0;
}

.v2-results__family span,
.v2-results__service span {
  color: var(--gray-500);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-results__family strong,
.v2-results__service strong {
  color: var(--blue-700);
  font-size: var(--text-footnote);
}

.v2-results__card h3 {
  margin: var(--space-8) 0;
  color: var(--blue-950);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: var(--weight-medium);
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.v2-results__service {
  margin-top: auto;
  padding-top: var(--space-5);
  border-top: 1px solid var(--gray-200);
}

.v2-trust {
  padding: var(--v4-section-space) 0;
  background: var(--blue-950);
  color: #fff;
}

.v2-trust__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: start;
  gap: clamp(var(--space-12), 7vw, 112px);
}

.v2-trust__copy .v2-kicker {
  color: var(--blue-300);
}

.v2-trust__copy h2 {
  margin: var(--space-4) 0 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.v2-trust__copy > p:not(.v2-kicker) {
  max-width: 680px;
  margin: var(--space-6) 0 0;
  color: var(--blue-100);
  font-size: var(--text-callout);
  line-height: 1.8;
}

.v2-trust__copy .v2-trust__note {
  padding-left: var(--space-5);
  border-left: 3px solid var(--amber-400);
  color: var(--blue-200);
  font-size: var(--text-footnote);
}

.v2-trust__status-list {
  margin: 0;
  border-top: 1px solid rgba(143, 178, 240, 0.32);
}

.v2-trust__status {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.3fr);
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(143, 178, 240, 0.28);
}

.v2-trust__status dt {
  color: var(--blue-300);
  font-size: var(--text-footnote);
}

.v2-trust__status dd {
  margin: 0;
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.045em;
  text-align: right;
}

/* Candidate B — Goal Studio */

.v2-studio-page {
  background: #fff;
}

.v2-studio-kicker,
.v2-market-eyebrow {
  margin: 0;
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.v2-studio-hero {
  background: var(--blue-950);
  color: #fff;
}

.v2-studio-hero__inner {
  display: grid;
  width: min(100%, var(--v4-page-max));
  min-height: min(1040px, calc(100vh - 106px));
  grid-template-columns: minmax(390px, 0.7fr) minmax(700px, 1.3fr);
  align-items: center;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  margin: 0 auto;
  padding: clamp(var(--space-16), 7vw, 108px) var(--v4-gutter);
}

.v2-studio-hero__copy {
  position: sticky;
  top: 130px;
  align-self: start;
  padding-top: var(--space-8);
}

.v2-studio-hero__copy .v2-studio-kicker {
  color: var(--blue-300);
}

.v2-studio-hero__title {
  margin: var(--space-5) 0 0;
  font-size: clamp(50px, 5vw, 72px);
  font-weight: var(--weight-regular);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.v2-studio-hero__title span,
.v2-studio-hero__title strong {
  display: block;
}

.v2-studio-hero__title strong {
  margin-top: var(--space-2);
  color: var(--amber-400);
  font-weight: var(--weight-semibold);
}

.v2-shell[data-language="zh"] .v2-home-hero__title span,
.v2-shell[data-language="zh"] .v2-home-hero__title strong,
.v2-shell[data-language="zh"] .v2-studio-hero__title span,
.v2-shell[data-language="zh"] .v2-studio-hero__title strong {
  white-space: nowrap;
}

.v2-studio-hero__body {
  max-width: 520px;
  margin: var(--space-7, 28px) 0 0;
  color: var(--blue-100);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
}

.v2-studio-hero__actions,
.v2-studio-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.v2-studio-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-5);
  border: 1px solid transparent;
  border-radius: var(--v4-radius-control);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
  transition: background var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out;
}

.v2-studio-action svg {
  width: 18px;
  height: 18px;
}

.v2-studio-action--primary {
  border-color: var(--amber-400);
  background: var(--amber-400);
  color: var(--amber-900);
}

.v2-studio-action--primary:hover {
  border-color: var(--amber-300);
  background: var(--amber-300);
  color: var(--amber-900);
}

.v2-studio-action--secondary {
  border-color: rgba(194, 213, 248, 0.38);
  background: transparent;
  color: var(--blue-100);
}

.v2-studio-action--secondary:hover {
  border-color: var(--blue-200);
  color: #fff;
}

.v2-studio-hero__note {
  max-width: 520px;
  margin: var(--space-5) 0 0;
  color: var(--blue-300);
  font-size: var(--text-caption);
  line-height: 1.7;
}

.v2-studio-truth-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}

.v2-studio-truth-list li {
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(143, 178, 240, 0.24);
  color: var(--blue-200);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.v2-studio-workbench {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  border: 1px solid var(--blue-300);
  border-radius: var(--v4-radius-panel);
  background: #fff;
  box-shadow: 0 32px 84px rgba(0, 8, 24, 0.36);
  color: var(--gray-950);
}

.v2-studio-workbench__header {
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  border-bottom: 1px solid var(--gray-200);
}

.v2-studio-workbench__header h2 {
  max-width: 720px;
  margin: var(--space-3) 0 0;
  color: var(--blue-950);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.v2-studio-workbench__header > p:last-child {
  max-width: 760px;
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-studio-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--gray-200);
}

.v2-studio-fieldset {
  min-width: 0;
  margin: 0;
  padding: var(--space-5);
  border: 0;
  border-right: 1px solid var(--gray-200);
}

.v2-studio-fieldset:last-child {
  border-right: 0;
}

.v2-studio-fieldset legend {
  width: 100%;
  margin: 0;
  padding: 0 0 var(--space-4);
  color: var(--blue-900);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
}

.v2-studio-goal-options,
.v2-studio-compact-options {
  display: grid;
  gap: var(--space-2);
}

.v2-studio-choice {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 66px;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--gray-200);
  border-radius: var(--v4-radius-control);
  background: var(--gray-50);
  color: var(--gray-700);
  cursor: pointer;
  transition: background var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out;
}

.v2-studio-choice:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
  color: var(--blue-950);
}

.v2-studio-choice--goal {
  grid-template-columns: 32px minmax(0, 1fr) 18px;
}

.v2-studio-choice--compact {
  grid-template-columns: minmax(0, 1fr);
}

.v2-studio-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.v2-studio-choice:has(input:focus-visible) {
  outline: 3px solid var(--v4-focus);
  outline-offset: 2px;
}

.v2-studio-choice--selected {
  border-color: var(--blue-700);
  background: var(--blue-900);
  color: #fff;
}

.v2-studio-choice--selected:hover {
  border-color: var(--blue-600);
  background: var(--blue-800);
  color: #fff;
}

.v2-studio-choice__icon {
  display: inline-flex;
  color: var(--blue-600);
}

.v2-studio-choice__icon svg {
  width: 24px;
  height: 24px;
}

.v2-studio-choice--selected .v2-studio-choice__icon {
  color: var(--amber-300);
}

.v2-studio-choice__copy,
.v2-studio-choice--compact > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.v2-studio-choice strong {
  font-size: var(--text-footnote);
  font-weight: var(--weight-semibold);
  line-height: 1.35;
}

.v2-studio-choice small {
  color: var(--gray-600);
  font-size: 10px;
  line-height: 1.45;
}

.v2-studio-choice--selected small {
  color: var(--blue-200);
}

.v2-studio-choice__check {
  width: 18px;
  height: 18px;
  color: transparent;
}

.v2-studio-choice--selected .v2-studio-choice__check {
  color: var(--amber-400);
}

.v2-studio-result {
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  background: var(--blue-50);
}

.v2-studio-result__header h3 {
  margin: var(--space-2) 0 0;
  color: var(--blue-950);
  font-size: var(--text-title2);
  font-weight: var(--weight-semibold);
}

.v2-studio-result__header > p:last-child {
  max-width: 760px;
  margin: var(--space-3) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.65;
}

.v2-studio-result__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: var(--space-5) 0 0;
  background: var(--gray-200);
}

.v2-studio-result__summary > div {
  min-width: 0;
  padding: var(--space-4);
  background: #fff;
}

.v2-studio-result__summary dt,
.v2-studio-service-card dt {
  color: var(--gray-500);
  font-size: var(--text-caption2);
  font-weight: var(--weight-semibold);
}

.v2-studio-result__summary dd {
  margin: var(--space-2) 0 0;
  color: var(--blue-900);
  font-size: var(--text-footnote);
  font-weight: var(--weight-semibold);
  line-height: 1.5;
}

.v2-studio-result__services {
  display: grid;
  margin: var(--space-5) 0 0;
  padding: 0;
  border-top: 1px solid var(--gray-200);
  list-style: none;
}

.v2-studio-result__services li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--gray-200);
}

.v2-studio-result__rank {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
}

.v2-studio-result__services li > span:nth-child(2) {
  display: grid;
  gap: var(--space-1);
}

.v2-studio-result__services strong {
  color: var(--blue-950);
  font-size: var(--text-footnote);
}

.v2-studio-result__services small {
  color: var(--gray-600);
  font-size: 10px;
  line-height: 1.45;
}

.v2-studio-result__services a,
.v2-studio-text-link,
.v2-studio-service-card > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: var(--space-2);
  color: var(--blue-700);
  font-size: var(--text-footnote);
  font-weight: var(--weight-semibold);
}

.v2-studio-result__services a:hover,
.v2-studio-text-link:hover,
.v2-studio-service-card > a:hover {
  color: var(--blue-900);
}

.v2-studio-result__services a svg,
.v2-studio-text-link svg,
.v2-studio-service-card > a svg {
  width: 16px;
  height: 16px;
}

.v2-studio-text-link {
  margin-top: var(--space-4);
}

.v2-studio-method,
.v2-studio-services,
.v2-studio-verification,
.v2-studio-cta {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: var(--v4-section-space) var(--v4-gutter);
}

.v2-studio-section-heading {
  display: grid;
  max-width: 850px;
  gap: var(--space-4);
}

.v2-studio-section-heading h2,
.v2-studio-cta h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.v2-studio-section-heading > p:last-child,
.v2-studio-cta > div > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-callout);
  line-height: 1.8;
}

.v2-studio-method__stages {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: var(--space-12) 0 0;
  padding: 0;
  border-top: 1px solid var(--gray-300);
  border-left: 1px solid var(--gray-300);
  list-style: none;
}

.v2-studio-method__stage {
  position: relative;
  min-height: 250px;
  padding: var(--space-6);
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background: #fff;
}

.v2-studio-method__stage--current {
  border-top: 4px solid var(--amber-500);
  background: var(--amber-50);
}

.v2-studio-method__number {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
}

.v2-studio-method__stage > strong {
  display: block;
  margin-top: var(--space-8);
  color: var(--blue-950);
  font-size: var(--text-title3);
}

.v2-studio-method__stage > p {
  margin: var(--space-3) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-studio-method__stage > small {
  position: absolute;
  right: var(--space-5);
  bottom: var(--space-5);
  left: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--amber-200);
  color: var(--amber-800);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
}

.v2-studio-services {
  width: 100%;
  max-width: none;
  background: var(--gray-50);
}

.v2-studio-services > .v2-studio-section-heading,
.v2-studio-services__grid,
.v2-studio-services__boundary {
  width: min(100%, var(--v4-content-max));
  margin-right: auto;
  margin-left: auto;
}

.v2-studio-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.v2-studio-service-card {
  display: flex;
  min-width: 0;
  min-height: 480px;
  flex-direction: column;
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  border: 1px solid var(--gray-300);
  background: #fff;
}

.v2-studio-service-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
}

.v2-studio-service-card h3 {
  margin: var(--space-8) 0 0;
  color: var(--blue-950);
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.v2-studio-service-card > p {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-studio-service-card dl {
  display: grid;
  gap: var(--space-5);
  margin: var(--space-8) 0 0;
}

.v2-studio-service-card dl > div {
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.v2-studio-service-card dd {
  margin: var(--space-2) 0 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.6;
}

.v2-studio-service-card > a {
  margin-top: auto;
  padding-top: var(--space-6);
}

.v2-studio-services__boundary {
  margin-top: var(--space-8);
  padding: var(--space-5);
  border-left: 3px solid var(--amber-500);
  background: var(--amber-50);
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-studio-verification {
  width: 100%;
  max-width: none;
  background: var(--blue-950);
  color: #fff;
}

.v2-studio-verification > .v2-studio-section-heading,
.v2-studio-verification__grid {
  width: min(100%, var(--v4-content-max));
  margin-right: auto;
  margin-left: auto;
}

.v2-studio-verification .v2-studio-kicker {
  color: var(--blue-300);
}

.v2-studio-verification .v2-studio-section-heading h2 {
  color: #fff;
}

.v2-studio-verification__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--space-10);
  border-top: 1px solid rgba(143, 178, 240, 0.3);
  border-left: 1px solid rgba(143, 178, 240, 0.3);
}

.v2-studio-verification__grid article {
  min-height: 270px;
  padding: var(--space-8);
  border-right: 1px solid rgba(143, 178, 240, 0.3);
  border-bottom: 1px solid rgba(143, 178, 240, 0.3);
}

.v2-studio-verification__grid svg {
  width: 30px;
  height: 30px;
  color: var(--amber-400);
}

.v2-studio-verification__grid h3 {
  margin: var(--space-8) 0 0;
  color: #fff;
  font-size: var(--text-title2);
}

.v2-studio-verification__grid p {
  margin: var(--space-4) 0 0;
  color: var(--blue-200);
  font-size: var(--text-footnote);
  line-height: 1.75;
}

.v2-studio-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: var(--space-12);
}

.v2-studio-cta__actions {
  justify-content: flex-end;
  margin: 0;
}

.v2-studio-cta .v2-studio-action--secondary {
  border-color: var(--gray-300);
  color: var(--blue-900);
}

.v2-studio-cta .v2-studio-action--secondary:hover {
  border-color: var(--blue-600);
  color: var(--blue-700);
}

/* Shared AI-native Service Market */

.v2-market-page {
  background: #fff;
}

.v2-market-hero {
  background: var(--blue-950);
  color: #fff;
}

.v2-market-hero-inner,
.v2-market-goal-studio,
.v2-market-directory-inner,
.v2-market-final-boundary {
  width: min(100%, var(--v4-content-max));
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--v4-gutter);
  padding-left: var(--v4-gutter);
}

.v2-market-hero-inner {
  padding-top: clamp(var(--space-12), 6vw, 88px);
  padding-bottom: clamp(var(--space-10), 5vw, 72px);
}

.v2-market-hero-copy {
  max-width: 900px;
}

.v2-market-hero .v2-market-eyebrow {
  color: var(--blue-300);
}

.v2-market-hero h1 {
  margin: var(--space-5) 0 0;
  color: #fff;
  font-size: clamp(50px, 5.3vw, 74px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.v2-shell[data-language="zh"] .v2-market-hero h1 {
  word-break: keep-all;
}

.v2-market-introduction {
  max-width: 720px;
  margin: var(--space-7, 28px) 0 0;
  color: var(--blue-100);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
}

.v2-market-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.v2-market-hero-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-5);
  border: 1px solid transparent;
  border-radius: var(--v4-radius-control);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-shell .v2-market-hero-action--primary {
  border-color: var(--amber-400);
  background: var(--amber-400);
  color: var(--amber-900);
}

.v2-shell .v2-market-hero-action--primary:hover {
  border-color: var(--amber-300);
  background: var(--amber-300);
  color: var(--amber-900);
}

.v2-market-hero-action--secondary {
  border-color: rgba(194, 213, 248, 0.38);
  color: var(--blue-100);
}

.v2-market-hero-action--secondary:hover {
  border-color: var(--blue-200);
  color: #fff;
}

.v2-market-capability-map {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: var(--v4-section-space) var(--v4-gutter);
  background: #fff;
}

.v2-market-capability-map__heading {
  display: grid;
  max-width: 900px;
  gap: var(--space-4);
}

.v2-market-capability-map__heading > p:first-child {
  margin: 0;
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-market-capability-map__heading h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.v2-market-capability-map__heading > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-callout);
  line-height: 1.75;
}

.v2-market-capability-map__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: var(--space-10) 0 0;
  padding: 0;
  border-top: 1px solid var(--gray-300);
  border-left: 1px solid var(--gray-300);
  list-style: none;
}

.v2-market-capability-map__grid li {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  gap: var(--space-6);
  padding: var(--space-5);
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background: var(--gray-50);
}

.v2-market-capability-map__grid span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
}

.v2-market-capability-map__grid strong {
  color: var(--blue-950);
  font-size: var(--text-footnote);
  line-height: 1.5;
}

.v2-market-capability-map__boundary {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding: var(--space-5);
  border-left: 3px solid var(--amber-500);
  background: var(--amber-50);
}

.v2-market-capability-map__boundary span {
  color: var(--amber-800);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
}

.v2-market-capability-map__boundary p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-market-studio-context {
  display: grid;
  width: min(100%, var(--v4-content-max));
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: var(--space-10);
  margin: 0 auto;
  padding: var(--space-8) var(--v4-gutter);
  border-top: 1px solid var(--blue-200);
  border-bottom: 1px solid var(--blue-200);
  background: var(--blue-50);
}

.v2-market-studio-context > div > p:first-child {
  margin: 0;
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v2-market-studio-context h2 {
  margin: var(--space-3) 0 0;
  color: var(--blue-950);
  font-size: var(--text-title2);
  line-height: 1.2;
}

.v2-market-studio-context > div > p:last-child {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-market-studio-context dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--blue-200);
  border-left: 1px solid var(--blue-200);
}

.v2-market-studio-context dl > div {
  display: grid;
  align-content: start;
  gap: var(--space-3);
  padding: var(--space-5);
  border-right: 1px solid var(--blue-200);
  border-bottom: 1px solid var(--blue-200);
  background: #fff;
}

.v2-market-studio-context dt {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
}

.v2-market-studio-context dd {
  margin: 0;
  color: var(--blue-950);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1.45;
}

.v2-market-goal-studio {
  padding-top: var(--v4-section-space);
  padding-bottom: var(--v4-section-space);
}

.v2-market-section-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: var(--space-5);
}

.v2-market-section-index {
  padding-top: 6px;
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
}

.v2-market-section-heading h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.v2-market-section-heading p {
  max-width: 760px;
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-callout);
  line-height: 1.75;
}

.v2-market-goal-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: var(--space-10);
  border-top: 1px solid var(--gray-300);
  border-left: 1px solid var(--gray-300);
}

.v2-market-goal-option {
  display: grid;
  min-width: 0;
  min-height: 220px;
  grid-template-rows: auto 1fr auto;
  gap: var(--space-6);
  padding: var(--space-6);
  border: 0;
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background: #fff;
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
  transition: background var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out;
}

.v2-market-goal-option:hover {
  background: var(--blue-50);
  color: var(--blue-950);
}

.v2-market-goal-option--active {
  background: var(--blue-900);
  color: #fff;
}

.v2-market-goal-option--active:hover {
  background: var(--blue-800);
  color: #fff;
}

.v2-market-goal-number {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
}

.v2-market-goal-option--active .v2-market-goal-number {
  color: var(--amber-300);
}

.v2-market-goal-option-copy {
  display: grid;
  align-content: start;
  gap: var(--space-3);
}

.v2-market-goal-option-copy strong {
  color: var(--blue-950);
  font-size: var(--text-title3);
  line-height: 1.3;
}

.v2-market-goal-option-copy span {
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.65;
}

.v2-market-goal-option--active strong {
  color: #fff;
}

.v2-market-goal-option--active .v2-market-goal-option-copy span {
  color: var(--blue-200);
}

.v2-market-goal-option > svg {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
}

.v2-market-goal-option--active > svg {
  color: var(--amber-400);
}

.v2-market-directory {
  padding: var(--v4-section-space) 0;
  background: var(--gray-50);
}

.v2-market-filter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
}

.v2-market-filter-header > svg {
  color: var(--blue-600);
}

.v2-market-filter-toggle {
  display: none;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-4);
  border: 1px solid var(--blue-800);
  border-radius: var(--v4-radius-control);
  background: #fff;
  color: var(--blue-800);
  cursor: pointer;
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-market-filter-toggle strong {
  color: var(--gray-500);
  font-size: 10px;
  font-weight: var(--weight-semibold);
}

.v2-market-filters {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding: var(--space-6);
  border: 1px solid var(--gray-300);
  background: #fff;
}

.v2-market-filter-help {
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-caption);
  line-height: 1.65;
}

.v2-market-filter-group {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: start;
  gap: var(--space-5);
  margin: 0;
  padding: var(--space-5) 0 0;
  border: 0;
  border-top: 1px solid var(--gray-200);
}

.v2-market-filter-group legend {
  float: left;
  width: 160px;
  padding-top: 10px;
  color: var(--blue-900);
  font-size: var(--text-footnote);
  font-weight: var(--weight-semibold);
}

.v2-market-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.v2-market-filter-option,
.v2-market-clear-filters,
.v2-market-empty button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: var(--space-2);
  padding: 0 var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--v4-radius-control);
  background: #fff;
  color: var(--gray-700);
  cursor: pointer;
  font-size: var(--text-footnote);
  font-weight: var(--weight-medium);
}

.v2-market-filter-option:hover,
.v2-market-clear-filters:hover,
.v2-market-empty button:hover {
  border-color: var(--blue-400);
  color: var(--blue-800);
}

.v2-market-filter-option--active {
  border-color: var(--blue-800);
  background: var(--blue-900);
  color: #fff;
}

.v2-market-filter-option--active:hover {
  color: #fff;
}

.v2-market-filter-option > span {
  color: var(--blue-500);
  font-family: var(--font-mono);
  font-size: 9px;
}

.v2-market-filter-option--active > span {
  color: var(--amber-300);
}

.v2-market-clear-filters {
  justify-self: end;
}

.v2-market-result-announcement {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.v2-studio-live-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.v2-market-results {
  margin-top: var(--space-10);
  outline: none;
}

.v2-market-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.v2-market-card {
  display: flex;
  min-width: 0;
  min-height: 590px;
  flex-direction: column;
  border: 1px solid var(--gray-300);
  background: #fff;
  transition: border-color var(--v4-duration-fast) ease-out,
    box-shadow var(--v4-duration-fast) ease-out;
  scroll-margin-top: calc(var(--v4-header-height) + var(--space-6));
}

.v2-market-card:hover,
.v2-market-card--selected {
  border-color: var(--blue-500);
  box-shadow: 0 16px 42px rgba(6, 31, 71, 0.1);
}

.v2-market-card-header {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-5);
  border-bottom: 1px solid var(--gray-200);
  background: var(--blue-50);
}

.v2-market-card-classification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.v2-market-card-code,
.v2-market-card-family {
  color: var(--blue-700);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
}

.v2-market-card-availability {
  color: var(--gray-600);
  font-size: 10px;
  line-height: 1.45;
}

.v2-market-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: var(--space-6);
}

.v2-market-card-body h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.v2-market-card-summary {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-market-card-domains {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.v2-market-card-domains span {
  padding: 5px 8px;
  border: 1px solid var(--blue-200);
  background: var(--blue-50);
  color: var(--blue-700);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: var(--weight-bold);
}

.v2-market-card-outcome {
  margin-top: var(--space-6);
  padding: var(--space-5);
  border-left: 3px solid var(--amber-500);
  background: var(--amber-50);
}

.v2-market-card-outcome > span {
  color: var(--amber-800);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v2-market-card-outcome p {
  margin: var(--space-3) 0 0;
  color: var(--amber-900);
  font-size: var(--text-callout);
  font-weight: var(--weight-semibold);
  line-height: 1.6;
}

.v2-market-card-facts {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-6) 0 0;
}

.v2-market-card-facts > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1.3fr);
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--gray-200);
}

.v2-market-card-facts dt {
  color: var(--gray-500);
  font-size: var(--text-caption2);
}

.v2-market-card-facts dd {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  text-align: right;
}

.v2-market-card-footer {
  display: grid;
  min-height: 0;
  align-items: stretch;
  justify-content: initial;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6) var(--space-6);
  border-top: 1px solid var(--gray-200);
  background: #fff;
  color: inherit;
}

.v2-market-card-footer p {
  margin: 0;
  color: var(--gray-500);
  font-size: 10px;
  line-height: 1.5;
}

.v2-market-card-footer-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2);
}

.v2-market-card-page-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--v4-radius-control);
  background: #fff;
  color: var(--blue-800);
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.v2-market-card-page-link:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
}

.v2-market-card-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0 var(--space-4);
  border: 1px solid var(--blue-800);
  border-radius: var(--v4-radius-control);
  background: var(--blue-900);
  color: #fff;
  cursor: pointer;
  font-size: var(--text-footnote);
  font-weight: var(--weight-semibold);
}

.v2-market-card-action:hover {
  background: var(--blue-800);
}

.v2-market-empty {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  gap: var(--space-4);
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--gray-600);
  text-align: center;
}

.v2-market-empty > svg {
  color: var(--blue-500);
}

.v2-market-empty p {
  max-width: 480px;
  margin: 0;
}

.v2-market-detail {
  margin-top: var(--space-8);
  border: 1px solid var(--blue-400);
  background: #fff;
  box-shadow: 0 24px 64px rgba(6, 31, 71, 0.12);
  outline: none;
}

.v2-market-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: var(--space-6);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  border-bottom: 1px solid var(--gray-200);
}

.v2-market-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.v2-market-detail-code,
.v2-market-detail-status {
  padding: var(--space-2) var(--space-3);
  background: var(--blue-50);
  color: var(--blue-700);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
}

.v2-market-detail-title {
  margin: var(--space-5) 0 0;
  color: var(--blue-950);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.v2-market-detail-summary {
  max-width: 820px;
  margin: var(--space-5) 0 0;
  color: var(--gray-600);
  font-size: var(--text-callout);
  line-height: 1.8;
}

.v2-market-detail-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--v4-radius-control);
  background: #fff;
  color: var(--blue-900);
  cursor: pointer;
}

.v2-market-detail-keyline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--gray-200);
  background: var(--blue-950);
  color: #fff;
}

.v2-market-detail-keyline-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: var(--space-3);
  padding: var(--space-5);
  border-right: 1px solid rgba(143, 178, 240, 0.24);
}

.v2-market-detail-keyline-item:last-child {
  border-right: 0;
}

.v2-market-detail-keyline-item > svg {
  color: var(--amber-400);
}

.v2-market-detail-keyline-item div {
  display: grid;
  gap: var(--space-2);
}

.v2-market-detail-keyline-item span {
  color: var(--blue-300);
  font-size: var(--text-caption2);
}

.v2-market-detail-keyline-item strong {
  color: #fff;
  font-size: var(--text-footnote);
}

.v2-market-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-market-detail-section {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: var(--space-4);
  padding: clamp(var(--space-5), 3vw, var(--space-8));
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.v2-market-detail-section:nth-child(even) {
  border-right: 0;
}

.v2-market-detail-section--outcome {
  background: var(--amber-50);
}

.v2-market-detail-section > svg {
  color: var(--blue-600);
}

.v2-market-detail-section h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: var(--text-callout);
}

.v2-market-detail-section p {
  margin: var(--space-3) 0 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-market-detail-list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.v2-market-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.65;
}

.v2-market-detail-list li > svg {
  flex: 0 0 18px;
  color: var(--blue-500);
}

.v2-market-detail-tags,
.v2-market-detail-domain-list,
.v2-market-detail-linked-services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.v2-market-detail-tags li {
  padding: 6px 9px;
  border: 1px solid var(--gray-300);
  background: var(--gray-50);
  color: var(--gray-700);
  font-size: var(--text-caption2);
}

.v2-market-detail-domain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-market-detail-domain-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: var(--space-2);
  padding: var(--space-3);
  border: 1px solid var(--blue-100);
  background: var(--blue-50);
}

.v2-market-detail-domain-list span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
}

.v2-market-detail-domain-list strong {
  color: var(--blue-900);
  font-size: var(--text-caption2);
  line-height: 1.5;
}

.v2-market-detail-linked-services {
  display: grid;
}

.v2-market-detail-linked-services a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue-700);
  font-size: var(--text-footnote);
  font-weight: var(--weight-semibold);
  line-height: 1.5;
}

.v2-market-detail-linked-services a:hover {
  color: var(--blue-950);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v2-market-detail-subheading {
  margin-top: var(--space-6) !important;
}

.v2-market-detail-definition-list {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-5) 0 0;
}

.v2-market-detail-definition-list > div {
  padding-top: var(--space-3);
  border-top: 1px solid var(--gray-200);
}

.v2-market-detail-definition-list dt {
  color: var(--gray-500);
  font-size: var(--text-caption2);
}

.v2-market-detail-definition-list dd {
  margin: var(--space-2) 0 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.65;
}

.v2-market-detail-boundary,
.v2-market-detail-note {
  padding-left: var(--space-4);
  border-left: 3px solid var(--amber-400);
  color: var(--gray-600);
}

.v2-market-human-gate,
.v2-market-detail-engagement-boundary {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: var(--space-6);
  padding: var(--space-6) clamp(var(--space-6), 4vw, var(--space-10));
}

.v2-market-human-gate {
  border-bottom: 1px solid var(--amber-200);
  background: var(--amber-50);
}

.v2-market-human-gate-label,
.v2-market-detail-engagement-boundary span {
  color: var(--amber-800);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-market-human-gate p,
.v2-market-detail-engagement-boundary p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-market-detail-engagement-boundary {
  align-items: start;
  background: var(--blue-50);
}

.v2-market-detail-engagement-boundary > div {
  display: grid;
  gap: var(--space-2);
}

.v2-market-detail-engagement-boundary strong {
  color: var(--blue-900);
  font-size: var(--text-footnote);
  line-height: 1.5;
}

.v2-market-final-boundary {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: var(--space-12);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background: #fff;
}

.v2-market-final-boundary-label {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
}

.v2-market-final-boundary h2 {
  margin: var(--space-3) 0 0;
  color: var(--blue-950);
  font-size: var(--text-title2);
}

.v2-market-final-boundary > p {
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.75;
}

@media (max-width: 1240px) {
  .v2-shell-header-inner {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .v2-shell-navigation {
    gap: var(--space-2);
  }

  .v2-shell-nav-trigger,
  .v2-shell-utility-link {
    padding-right: var(--space-2);
    padding-left: var(--space-2);
  }

  .v2-shell-nav-index {
    display: none;
  }

  .v2-home-hero__inner {
    grid-template-columns: minmax(350px, 0.75fr) minmax(620px, 1.25fr);
    gap: var(--space-10);
  }

  .v2-delivery-atlas {
    padding: var(--space-6);
  }

  .v2-delivery-atlas__step-card {
    min-height: 292px;
    padding: var(--space-3);
  }

  .v2-delivery-atlas__connector {
    width: 14px;
    flex-basis: 14px;
    margin: 0 3px;
  }

  .v2-studio-hero__inner {
    grid-template-columns: minmax(350px, 0.66fr) minmax(620px, 1.34fr);
    gap: var(--space-10);
  }

  .v2-studio-fieldset {
    padding: var(--space-4);
  }

  .v2-studio-choice {
    padding: var(--space-3);
  }

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

@media (max-width: 1120px) {
  .v2-shell-header-inner {
    grid-template-columns: 1fr auto;
  }

  .v2-shell--menu-open .v2-shell-header {
    z-index: 200;
    backdrop-filter: none;
  }

  .v2-shell--menu-open .v2-shell-menu-toggle {
    visibility: hidden;
  }

  .v2-shell-navigation {
    position: fixed;
    z-index: 210;
    inset: 0;
    display: none;
    align-content: start;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    width: 100%;
    height: 100dvh;
    padding: 0 0 max(var(--space-12), env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      linear-gradient(135deg, rgba(41, 94, 182, 0.12), transparent 46%),
      var(--blue-950);
  }

  .v2-shell-navigation.is-open {
    display: grid;
  }

  .v2-shell-menu-masthead {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
    padding: max(var(--space-3), env(safe-area-inset-top)) var(--v4-gutter)
      var(--space-3);
    border-bottom: 1px solid rgba(143, 178, 240, 0.24);
    background: rgba(3, 20, 47, 0.97);
    backdrop-filter: blur(18px);
  }

  .v2-shell-menu-brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .v2-shell-menu-brand .brand-lockup {
    width: 142px;
  }

  .v2-shell-menu-close {
    display: inline-flex;
    min-width: 116px;
    min-height: 48px;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-3);
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: var(--weight-semibold);
  }

  .v2-shell-menu-intro {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-5) var(--v4-gutter) var(--space-2);
  }

  .v2-shell-menu-intro > span {
    color: var(--amber-400);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: var(--weight-bold);
    letter-spacing: 0.08em;
  }

  .v2-shell-menu-intro h2 {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: var(--weight-semibold);
    letter-spacing: -0.03em;
    line-height: 1.25;
  }

  .v2-shell-primary-nav {
    padding: 0 var(--v4-gutter);
  }

  .v2-shell-nav-list {
    display: grid;
    gap: 0;
  }

  .v2-shell-nav-trigger {
    display: grid;
    width: 100%;
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) 20px;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(143, 178, 240, 0.24);
    color: #fff;
    font-size: 18px;
    text-align: left;
  }

  .v2-shell-nav-copy {
    display: grid;
    gap: 5px;
  }

  .v2-shell-nav-label--compact {
    display: none;
  }

  .v2-shell-nav-label--full {
    display: inline;
    white-space: normal;
  }

  .v2-shell-nav-copy small,
  .v2-shell-nav-caret {
    display: block;
  }

  .v2-shell-nav-copy small {
    color: var(--blue-300);
    font-size: 12px;
    font-weight: var(--weight-regular);
    line-height: 1.45;
  }

  .v2-shell-nav-caret {
    color: var(--blue-400);
  }

  .v2-shell-nav-trigger:hover {
    border-color: var(--blue-300);
    background: transparent;
  }

  .v2-shell-nav-trigger.is-active,
  .v2-shell-nav-item.is-expanded .v2-shell-nav-trigger {
    padding-left: var(--space-4);
    border-color: rgba(143, 178, 240, 0.24);
    background: rgba(227, 161, 47, 0.08);
    box-shadow: inset 3px 0 0 var(--amber-400);
  }

  .v2-shell-mega-panel {
    position: static;
    max-height: none;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
    animation-duration: var(--v4-duration-fast);
  }

  .v2-shell-header.is-condensed .v2-shell-mega-panel {
    max-height: none;
  }

  .v2-shell-mega-panel__inner {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 0 var(--space-4) var(--space-4);
    border-left: 2px solid var(--amber-400);
  }

  .v2-shell-mega-featured {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    background: transparent;
  }

  .v2-shell-mega-overview,
  .v2-shell-mega-featured-link {
    min-height: 0;
    padding: var(--space-4);
    border: 0;
    border-bottom: 1px solid rgba(143, 178, 240, 0.22);
    background: rgba(228, 237, 252, 0.04);
  }

  .v2-shell-mega-overview {
    grid-template-columns: minmax(0, 1fr) 18px;
  }

  .v2-shell-mega-overview > strong {
    font-size: 17px;
  }

  .v2-shell-mega-featured-link > strong {
    font-size: 14px;
  }

  .v2-shell-mega-overview > small,
  .v2-shell-mega-featured-link > small {
    display: none;
  }

  .v2-shell-mega-featured-link > em {
    margin-top: 0;
  }

  .v2-shell-mega-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5) var(--space-6);
    padding: var(--space-5) var(--space-4) 0;
    background: transparent;
  }

  .v2-shell-mega-group {
    padding: 0;
    border: 0;
  }

  .v2-shell-mega-group h3 {
    color: var(--blue-300);
  }

  .v2-shell-mega-group li {
    border-color: rgba(143, 178, 240, 0.18);
  }

  .v2-shell-mega-group a {
    min-height: 48px;
    color: var(--blue-100);
    font-size: 13px;
  }

  .v2-shell-mega-group a:hover,
  .v2-shell-mega-group a.is-active {
    background: rgba(228, 237, 252, 0.06);
    color: #fff;
  }

  .v2-shell-mega-backdrop {
    display: none;
  }

  .v2-shell-utility {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 var(--v4-gutter);
    padding: var(--space-5) 0 0;
    border: 0;
    border-top: 1px solid rgba(143, 178, 240, 0.24);
  }

  .v2-shell-utility-label {
    display: block;
    grid-column: 1 / -1;
    margin-bottom: var(--space-3);
    color: var(--blue-300);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: var(--weight-bold);
    letter-spacing: 0.06em;
  }

  .v2-shell-utility-link,
  .v2-shell-utility-link.v2-shell-utility-link--mobile {
    display: inline-flex;
    min-height: 48px;
    justify-content: center;
    padding: 0 var(--space-2);
    border-right: 1px solid rgba(143, 178, 240, 0.2);
    border-bottom: 0;
    color: var(--blue-100);
    font-size: 14px;
    text-align: center;
  }

  .v2-shell-utility-link:last-child {
    border-right: 0;
  }

  .v2-shell-utility-link.is-active {
    border-bottom: 2px solid var(--amber-400);
    background: rgba(227, 161, 47, 0.08);
  }

  .v2-shell-language-switch {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    margin: 0 var(--v4-gutter);
    padding: var(--space-2);
  }

  .v2-shell-language-label {
    display: inline-flex;
    align-items: center;
    padding-left: var(--space-2);
    color: var(--blue-300);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: var(--weight-bold);
    letter-spacing: 0.06em;
  }

  .v2-shell .v2-shell-cta {
    min-height: 58px;
    justify-self: stretch;
    justify-content: space-between;
    margin: 0 var(--v4-gutter);
  }

  .v2-shell-cta-copy small {
    display: block;
    font-size: 11px;
    font-weight: var(--weight-medium);
    line-height: 1.2;
    opacity: 0.76;
  }

  .v2-shell-menu-toggle {
    display: inline-flex;
    min-width: 92px;
    min-height: var(--v4-control-min);
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-3);
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .v2-shell-menu-label {
    color: var(--blue-200);
    font-size: var(--text-footnote);
    font-weight: var(--weight-semibold);
  }

  .v2-shell-footer-cta {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .v2-shell-footer-cta__actions {
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-shell-footer-cta__actions small {
    grid-column: 1 / -1;
  }

  .v2-shell-footer-inner {
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  }

  .v2-home-hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: var(--space-16);
    padding-bottom: var(--space-20);
  }

  .v2-home-hero__copy {
    max-width: 760px;
  }

  .v2-delivery-atlas {
    width: 100%;
  }

  .v2-studio-hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .v2-studio-hero__copy {
    position: static;
    max-width: 820px;
    padding-top: 0;
  }

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

  .v2-market-hero-inner {
    grid-template-columns: 1fr;
  }

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

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

  .v2-market-goal-option:nth-child(4),
  .v2-market-goal-option:nth-child(5) {
    min-height: 180px;
  }
}

@media (max-width: 820px) {
  .v2-shell-status-inner {
    padding-right: var(--space-4);
    padding-left: var(--space-4);
  }

  .v2-shell-review-state {
    min-height: 22px;
  }

  .v2-shell-mega-featured,
  .v2-shell-mega-groups {
    grid-template-columns: 1fr;
  }

  .v2-shell-footer-cta__actions {
    grid-column: 1 / -1;
  }

  .v2-shell-footer-inner,
  .v2-section-heading,
  .v2-trust__layout {
    grid-template-columns: 1fr;
  }

  .v2-shell-footer-inner,
  .v2-section-heading,
  .v2-trust__layout {
    gap: var(--space-8);
  }

  .v2-shell-footer-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-8) var(--space-6);
  }

  .v2-shell-footer-meta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-2);
  }

  .v2-section-heading {
    align-items: start;
  }

  .v2-delivery-atlas__steps {
    display: grid;
  }

  .v2-delivery-atlas__step {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v2-delivery-atlas__step-card {
    min-height: auto;
  }

  .v2-delivery-atlas__step-card > strong,
  .v2-delivery-atlas__step-card > p {
    min-height: 0;
  }

  .v2-delivery-atlas__connector {
    margin: var(--space-2) auto;
    transform: rotate(90deg);
  }

  .v2-service-directory__layout,
  .v2-service-directory__detail-grid {
    grid-template-columns: 1fr;
  }

  .v2-service-directory__master {
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }

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

  .v2-service-directory__family-button:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }

  .v2-service-directory__detail-card,
  .v2-service-directory__detail-card:nth-child(even) {
    border-right: 0;
  }

  .v2-results__grid {
    grid-template-columns: 1fr;
  }

  .v2-results__card {
    min-height: auto;
  }

  .v2-trust__layout {
    grid-template-columns: 1fr;
  }

  .v2-studio-controls,
  .v2-studio-method__stages,
  .v2-studio-services__grid,
  .v2-studio-verification__grid,
  .v2-studio-cta,
  .v2-market-card-grid,
  .v2-market-detail-keyline,
  .v2-market-detail-grid,
  .v2-market-final-boundary {
    grid-template-columns: 1fr;
  }

  .v2-studio-fieldset {
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .v2-studio-fieldset:last-child {
    border-bottom: 0;
  }

  .v2-studio-goal-options,
  .v2-studio-compact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-studio-result__summary {
    grid-template-columns: 1fr;
  }

  .v2-studio-method__stage {
    min-height: 190px;
  }

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

  .v2-studio-cta__actions {
    justify-content: flex-start;
  }

  .v2-market-goal-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-market-capability-map__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-market-capability-map__boundary {
    grid-template-columns: 1fr;
  }

  .v2-market-goal-option {
    min-height: 180px;
  }

  .v2-market-filter-group {
    grid-template-columns: 1fr;
  }

  .v2-market-filter-group legend {
    float: none;
    width: auto;
    padding-top: 0;
  }

  .v2-market-detail-keyline-item,
  .v2-market-detail-keyline-item:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(143, 178, 240, 0.24);
  }

  .v2-market-detail-section,
  .v2-market-detail-section:nth-child(even) {
    border-right: 0;
  }

  .v2-market-human-gate,
  .v2-market-detail-engagement-boundary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --v4-gutter: var(--space-5);
    --v4-section-space: var(--space-16);
  }

  .v2-shell-header-inner {
    min-height: 64px;
  }

  .v2-shell-header {
    min-height: 64px;
  }

  .v2-shell-menu-toggle {
    min-width: 44px;
  }

  .v2-shell-menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .v2-shell-menu-masthead {
    min-height: 64px;
  }

  .v2-shell-menu-close {
    min-width: 48px;
  }

  .v2-shell-menu-close > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .v2-shell-menu-intro {
    padding-top: var(--space-4);
  }

  .v2-shell-menu-intro h2 {
    font-size: 22px;
  }

  .v2-shell-nav-trigger {
    min-height: 60px;
    font-size: 16px;
  }

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

  .v2-shell-utility-link:nth-of-type(3) {
    border-right: 0;
  }

  .v2-shell-mega-panel__inner {
    padding-left: var(--space-3);
  }

  .v2-shell-mega-overview,
  .v2-shell-mega-featured-link {
    padding-right: var(--space-3);
    padding-left: var(--space-3);
  }

  .v2-shell-mega-groups {
    gap: var(--space-4);
    padding-right: var(--space-3);
    padding-left: var(--space-3);
  }

  .v2-shell-footer-cta {
    grid-template-columns: 1fr;
  }

  .v2-shell-footer-cta__icon {
    width: 48px;
    height: 48px;
  }

  .v2-shell-footer-cta__actions {
    grid-template-columns: 1fr;
  }

  .v2-shell-footer-cta__actions small {
    grid-column: auto;
  }

  .v2-shell-footer-inner {
    padding-top: var(--space-12);
  }

  .v2-concept-switcher {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-right: var(--space-3);
    padding-left: var(--space-3);
  }

  .v2-concept-switcher > span {
    display: none;
  }

  .v2-concept-switcher a {
    justify-content: center;
  }

  .v2-home-hero__inner {
    padding-top: var(--space-12);
    padding-bottom: var(--space-16);
  }

  .v2-home-hero__title {
    font-size: clamp(48px, 16vw, 68px);
  }

  .v2-home-hero__summary {
    margin-top: var(--space-6);
    font-size: var(--text-subheadline);
  }

  .v2-home-hero__action {
    width: 100%;
  }

  .v2-delivery-atlas {
    padding: var(--space-4);
  }

  .v2-delivery-atlas__header {
    display: grid;
  }

  .v2-delivery-atlas__disclaimer {
    max-width: none;
    text-align: left;
  }

  .v2-section-heading h2,
  .v2-service-directory__detail-header h3,
  .v2-trust__copy h2 {
    font-size: 34px;
  }

  .v2-service-directory__family-list {
    grid-template-columns: 1fr;
  }

  .v2-service-directory__family-button:nth-child(odd) {
    border-right: 0;
  }

  .v2-service-directory__detail-card,
  .v2-service-directory__detail-card:nth-child(even) {
    padding: var(--space-5);
  }

  .v2-trust__status {
    grid-template-columns: 1fr;
  }

  .v2-trust__status dd {
    text-align: left;
  }

  .v2-studio-hero__inner {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .v2-studio-hero__title,
  .v2-market-hero h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .v2-market-hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .v2-shell[data-language="zh"] .v2-studio-hero__title strong {
    white-space: normal;
    word-break: keep-all;
  }

  .v2-studio-hero__actions,
  .v2-studio-cta__actions {
    display: grid;
  }

  .v2-studio-workbench__header,
  .v2-studio-result {
    padding: var(--space-5);
  }

  .v2-studio-goal-options,
  .v2-studio-compact-options,
  .v2-market-goal-options {
    grid-template-columns: 1fr;
  }

  .v2-studio-result__services li {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .v2-studio-result__services li > a {
    grid-column: 2;
    justify-self: start;
  }

  .v2-studio-method,
  .v2-studio-services,
  .v2-studio-verification,
  .v2-studio-cta {
    padding-right: var(--v4-gutter);
    padding-left: var(--v4-gutter);
  }

  .v2-studio-method__stage {
    min-height: 170px;
  }

  .v2-studio-verification__grid article {
    min-height: auto;
  }

  .v2-market-hero-inner {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .v2-market-hero-actions {
    display: grid;
  }

  .v2-market-goal-option,
  .v2-market-goal-option:nth-child(4),
  .v2-market-goal-option:nth-child(5) {
    min-height: 150px;
  }

  .v2-market-capability-map__grid,
  .v2-market-detail-domain-list {
    grid-template-columns: 1fr;
  }

  .v2-market-capability-map__grid li {
    min-height: 112px;
  }

  .v2-market-filter-header > svg {
    display: none;
  }

  .v2-market-filters,
  .v2-market-card-body,
  .v2-market-card-footer {
    padding: var(--space-5);
  }

  .v2-market-filter-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v2-market-filter-option {
    width: 100%;
    justify-content: flex-start;
  }

  .v2-market-clear-filters {
    width: 100%;
    justify-content: center;
  }

  .v2-market-card {
    min-height: auto;
  }

  .v2-market-card-facts > div {
    grid-template-columns: 1fr;
  }

  .v2-market-card-facts dd {
    text-align: left;
  }

  .v2-market-detail-header {
    grid-template-columns: 1fr;
  }

  .v2-market-detail-close {
    grid-row: 1;
    justify-self: end;
  }

  .v2-market-detail-identity {
    grid-row: 2;
  }

  .v2-market-detail-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .v2-market-studio-context {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .v2-market-filter-toggle {
    display: inline-flex;
  }

  .v2-market-filters {
    display: none;
    margin-top: var(--space-4);
  }

  .v2-market-filters.is-open {
    display: grid;
  }

  .v2-market-results {
    margin-top: var(--space-6);
  }
}

@media (max-width: 560px) {
  .v2-market-studio-context {
    padding: var(--space-6) var(--v4-gutter);
  }

  .v2-market-studio-context dl {
    grid-template-columns: 1fr;
  }

  .v2-market-studio-context dl > div {
    gap: var(--space-2);
    padding: var(--space-4);
  }

  .v2-market-capability-map__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-market-capability-map__grid li {
    min-height: 92px;
    gap: var(--space-3);
    padding: var(--space-4);
  }

  .v2-market-capability-map__grid strong {
    font-size: 12px;
  }

  .v2-market-goal-option,
  .v2-market-goal-option:nth-child(4),
  .v2-market-goal-option:nth-child(5) {
    min-height: 118px;
    gap: var(--space-3);
    padding: var(--space-5);
  }

  .v2-market-filter-header {
    display: grid;
  }

  .v2-market-filter-toggle {
    width: 100%;
  }

  .v2-market-card-grid {
    gap: var(--space-3);
  }

  .v2-market-card-header,
  .v2-market-card-body,
  .v2-market-card-footer {
    padding: var(--space-4);
  }

  .v2-market-card-header {
    gap: var(--space-2);
  }

  .v2-market-card-body h3 {
    font-size: 26px;
  }

  .v2-market-card-summary {
    display: -webkit-box;
    margin-top: var(--space-3);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .v2-market-card-domains {
    margin-top: var(--space-4);
  }

  .v2-market-card-outcome,
  .v2-market-card-facts,
  .v2-market-card-footer > p {
    display: none;
  }
}

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

/* AI Agent product-family page — v0.3 primitives, v0.4 application mapping. */
.v2-agent-family {
  --agent-page-max: 1280px;
  --agent-sticky-offset: 146px;
  background: var(--gray-50);
  color: var(--blue-950);
  font-family: var(--font-ui);
  overflow-x: clip;
  overflow-y: visible;
}

.v2-agent-family :where(section, div)[id] {
  scroll-margin-top: calc(var(--agent-sticky-offset) + var(--space-6));
}

.v2-agent-family-local-nav {
  position: sticky;
  z-index: 60;
  top: var(--v4-header-height);
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: 0 max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  border-bottom: 1px solid var(--gray-200);
  background: color-mix(in srgb, var(--bg-content) 96%, transparent);
  backdrop-filter: blur(20px) saturate(1.1);
  transition: top var(--v4-duration-base) ease-out;
}

.v2-shell-header.is-condensed ~ .v2-shell-main .v2-agent-family-local-nav {
  top: 64px;
}

.v2-agent-family-local-nav__name {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-title);
}

.v2-agent-family-local-nav__links {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-1);
}

.v2-agent-family-local-nav__links a {
  display: inline-flex;
  min-height: var(--v4-control-min);
  align-items: center;
  padding: 0 var(--space-3);
  border-radius: var(--radius-full);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: var(--weight-medium);
  white-space: nowrap;
}

.v2-agent-family-local-nav__links a:hover {
  background: var(--blue-50);
  color: var(--blue-800);
}

.v2-agent-family-local-nav__links a.is-primary {
  margin-left: var(--space-2);
  padding-inline: var(--space-5);
  background: var(--blue-800);
  color: var(--text-on-accent);
}

.v2-agent-family-shelf {
  background: var(--bg-content);
  border-bottom: 1px solid var(--gray-200);
}

.v2-agent-family-shelf__scroller {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: var(--space-5) 0 var(--space-6);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  scrollbar-width: none;
}

.v2-agent-family-shelf__scroller::-webkit-scrollbar { display: none; }

.v2-agent-family-shelf__list {
  display: grid;
  min-width: max-content;
  grid-auto-columns: 124px;
  grid-auto-flow: column;
  gap: var(--space-5);
  margin: 0;
  padding: 0 max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  list-style: none;
}

.v2-agent-family-shelf__link {
  display: grid;
  min-height: 132px;
  place-items: center;
  align-content: center;
  gap: var(--space-2);
  padding: var(--space-2);
  color: var(--blue-950);
  text-align: center;
}

.v2-agent-family-shelf__visual {
  display: grid;
  width: 76px;
  height: 68px;
  place-items: center;
  color: var(--blue-700);
  transition: transform var(--v4-duration-base) ease-out;
}

.v2-agent-family-shelf__item.is-utility .v2-agent-family-shelf__visual { color: var(--amber-800); }
.v2-agent-family-shelf__link:hover .v2-agent-family-shelf__visual { transform: translateY(-2px); }
.v2-agent-family-shelf__link strong { font-size: 13px; font-weight: var(--weight-semibold); line-height: 1.25; }
.v2-agent-family-shelf__link small { color: var(--gray-600); font-size: 11px; line-height: 1.25; }

.v2-agent-family-hero {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: clamp(48px, 5vw, 72px) max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2)) var(--space-8);
  background: var(--bg-content);
}

.v2-agent-family-hero__copy { display: flex; max-width: 980px; flex-direction: column; align-items: flex-start; text-align: left; }

.v2-agent-family-hero__copy > p,
.v2-agent-family-heading > p,
.v2-agent-family-evidence > div > p,
.v2-agent-family-final > p {
  margin: 0 0 var(--space-5);
  color: var(--blue-700);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.09em;
}

.v2-agent-family-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(64px, 6vw, 84px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.v2-shell[data-language="zh"] .v2-agent-family-hero h1 {
  max-width: min(100%, 12em);
}

.v2-agent-family-hero__copy > span {
  display: block;
  max-width: 860px;
  margin-top: var(--space-3);
  color: var(--gray-700);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.38;
}

.v2-agent-family-hero__copy > small {
  display: block;
  max-width: 760px;
  margin-top: var(--space-6);
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.55;
}

.v2-agent-family-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.v2-agent-family-hero .v2-agent-family-actions { justify-content: flex-start; }

.v2-agent-family-actions a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-6);
  border-radius: var(--radius-full);
  color: var(--blue-700);
  font-size: 16px;
  font-weight: var(--weight-semibold);
}

.v2-agent-family-actions a.is-primary {
  background: var(--blue-800);
  color: #fff;
}

.v2-agent-family-actions a:hover {
  transform: translateY(-1px);
}

.v2-agent-family-hero__visual {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.v2-agent-family-hero__visual img {
  width: min(72vw, 760px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(6, 31, 71, 0.14));
}

.v2-agent-family-lineup,
.v2-agent-family-chooser,
.v2-agent-family-trust,
.v2-agent-family-why,
.v2-agent-family-integrations,
.v2-agent-family-foundation,
.v2-agent-family-operations {
  position: relative;
  padding: clamp(96px, 9vw, 152px) max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
}

.v2-agent-family-lineup {
  background: var(--gray-50);
}

.v2-agent-family-heading {
  max-width: 880px;
}

.v2-agent-family-tour > .v2-agent-family-heading,
.v2-agent-family-support > .v2-agent-family-heading {
  max-width: 1120px;
}

.v2-agent-family-heading h2,
.v2-agent-family-evidence h2,
.v2-agent-family-final h2 {
  margin: 0;
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.v2-agent-family-heading > span,
.v2-agent-family-evidence > div > span,
.v2-agent-family-final > span {
  display: block;
  max-width: 720px;
  margin-top: var(--space-6);
  color: var(--gray-600);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.48;
}

.v2-agent-family-rail-controls {
  position: absolute;
  top: clamp(112px, 10vw, 168px);
  right: max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  display: flex;
  gap: var(--space-2);
}

.v2-agent-family-rail-controls button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--blue-950);
  cursor: pointer;
}

.v2-agent-family-rail-controls button:disabled {
  background: var(--gray-50);
  color: var(--gray-500);
  cursor: not-allowed;
  opacity: 0.42;
}

.v2-agent-family-product-rail {
  display: block;
  width: 100vw;
  margin-top: var(--space-16);
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.v2-agent-family-product-rail > ul {
  display: grid;
  min-width: 100%;
  grid-auto-columns: minmax(420px, 33vw);
  grid-auto-flow: column;
  gap: var(--space-5);
  margin: 0;
  padding: 0 max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2)) var(--space-6);
  list-style: none;
}

.v2-agent-family-product-rail::-webkit-scrollbar {
  display: none;
}

.v2-agent-family-product-rail > ul > li {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: clamp(30px, 3.2vw, 48px);
  border-radius: var(--radius-window);
  background: var(--gray-50);
  box-shadow: 0 18px 48px rgba(6, 31, 71, 0.08);
  scroll-snap-align: start;
}

.v2-agent-family-product-rail > ul > li[data-tone="warm"] { background: var(--amber-50); }
.v2-agent-family-product-rail > ul > li[data-tone="cool"] { background: var(--blue-50); }
.v2-agent-family-product-rail > ul > li[data-tone="dark"] { background: var(--blue-950); color: var(--text-on-accent); }

.v2-agent-family-product-card__visual {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  color: var(--blue-600);
}

.v2-agent-family-product-card__visual > svg {
  filter: drop-shadow(0 20px 28px rgba(6, 31, 71, 0.16));
}

.v2-agent-family-product-rail h3 {
  margin: auto 0 0;
  font-size: clamp(28px, 2.3vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.v2-agent-family-product-rail li > small {
  margin: auto 0 var(--space-3);
  color: var(--amber-800);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
}

.v2-agent-family-product-rail li > small + h3 { margin-top: 0; }

.v2-agent-family-product-rail p {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.55;
}

.v2-agent-family-product-rail > ul > li[data-tone="dark"] p { color: var(--blue-200); }

.v2-agent-family-product-rail a {
  display: inline-flex;
  width: fit-content;
  min-height: var(--v4-control-min);
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  color: var(--blue-600);
  font-weight: var(--weight-semibold);
}

.v2-agent-family-product-rail > ul > li[data-tone="dark"] a { color: var(--blue-200); }

.v2-agent-family-chooser {
  background: var(--amber-50);
}

.v2-agent-family-chooser__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: clamp(44px, 6vw, 96px);
  margin-top: var(--space-16);
}

.v2-agent-family-questions {
  display: grid;
  gap: var(--space-8);
}

.v2-agent-family-questions fieldset {
  margin: 0;
  padding: 0 0 var(--space-8);
  border: 0;
  border-bottom: 1px solid rgba(6, 31, 71, 0.14);
}

.v2-agent-family-questions legend {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.025em;
}

.v2-agent-family-questions legend span {
  color: var(--amber-700);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.v2-agent-family-questions fieldset > div {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.v2-agent-family-questions label {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-5);
  border: 1px solid rgba(6, 31, 71, 0.14);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.68);
  color: var(--gray-700);
  cursor: pointer;
  font-weight: var(--weight-medium);
}

.v2-agent-family-questions label:hover {
  border-color: rgba(6, 31, 71, 0.32);
  background: #fff;
}

.v2-agent-family-questions label.is-selected {
  border-color: var(--blue-950);
  background: var(--blue-950);
  color: #fff;
}

.v2-agent-family-questions label > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.v2-agent-family-questions label:has(input:focus-visible) {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.v2-agent-family-recommendation {
  position: sticky;
  top: 164px;
  align-self: start;
  padding: var(--space-8);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-3);
}

.v2-agent-family-recommendation > p {
  margin: var(--space-5) 0 var(--space-2);
  color: var(--amber-700);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.v2-agent-family-recommendation h3 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.035em;
}

.v2-agent-family-recommendation > span,
.v2-agent-family-recommendation > small {
  display: block;
  margin-top: var(--space-4);
  color: var(--gray-600);
  line-height: 1.55;
}

.v2-agent-family-recommendation > small { font-size: 12px; }

.v2-agent-family-recommendation dl {
  display: grid;
  margin: var(--space-5) 0 0;
  border-top: 1px solid rgba(6, 31, 71, 0.12);
  border-bottom: 1px solid rgba(6, 31, 71, 0.12);
}

.v2-agent-family-recommendation dl > div {
  display: grid;
  grid-template-columns: minmax(96px, 0.7fr) minmax(0, 1.3fr);
  gap: var(--space-4);
  padding: var(--space-3) 0;
}

.v2-agent-family-recommendation dl > div + div {
  border-top: 1px solid rgba(6, 31, 71, 0.08);
}

.v2-agent-family-recommendation dt {
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.5;
}

.v2-agent-family-recommendation dd {
  margin: 0;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1.45;
}

.v2-agent-family-recommendation > a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  color: var(--blue-600);
  font-weight: var(--weight-semibold);
}

.v2-agent-family-workflow {
  padding: clamp(96px, 9vw, 152px) max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  background: var(--blue-950);
  color: var(--text-on-accent);
}

.v2-agent-family-heading--inverse > p { color: var(--amber-400); }
.v2-agent-family-heading--inverse > span { color: var(--blue-200); }

.v2-agent-family-workflow__body {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(40px, 6vw, 88px);
  margin-top: var(--space-16);
}

.v2-agent-family-workflow ol {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-agent-family-workflow li button {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  gap: var(--space-4);
  padding: 0 var(--space-4);
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--blue-200);
  cursor: pointer;
  text-align: left;
}

.v2-agent-family-workflow li button span {
  font-family: var(--font-mono);
  font-size: 11px;
}

.v2-agent-family-workflow li button.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-on-accent);
}

.v2-agent-family-workflow__stage {
  display: grid;
  min-height: clamp(600px, 56vw, 760px);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(194, 213, 248, 0.16);
  border-radius: var(--radius-window);
  background:
    radial-gradient(circle at 80% 0%, rgba(235, 174, 82, 0.15), transparent 35%),
    rgba(255, 255, 255, 0.055);
}

.v2-agent-family-tour__visual {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-4);
  background: radial-gradient(circle at 50% 46%, rgba(47, 111, 222, 0.26), transparent 56%);
}

.v2-agent-family-tour__visual img {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 54px rgba(0, 0, 0, 0.24));
}

.v2-agent-family-tour__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
  background: rgba(3, 20, 47, 0.64);
}

.v2-agent-family-tour__content > small {
  color: var(--amber-300);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-agent-family-tour__content > p {
  margin: var(--space-8) 0 var(--space-3);
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.v2-agent-family-tour__content h3 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  letter-spacing: -0.045em;
}

.v2-agent-family-tour__content > span {
  display: block;
  margin-top: var(--space-5);
  color: var(--blue-100);
  font-size: 19px;
  line-height: 1.55;
}

.v2-agent-family-tour__content dl {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-8) 0 0;
}

.v2-agent-family-tour__content dl > div { padding-top: var(--space-4); border-top: 1px solid rgba(194, 213, 248, 0.18); }
.v2-agent-family-tour__content dt { color: var(--amber-300); font-size: 11px; font-weight: var(--weight-semibold); letter-spacing: 0.06em; text-transform: uppercase; }
.v2-agent-family-tour__content dd { margin: var(--space-2) 0 0; color: var(--blue-100); font-size: 14px; line-height: 1.55; }
.v2-agent-family-tour__content > strong { display: flex; align-items: center; gap: var(--space-2); margin-top: var(--space-8); color: var(--amber-300); font-size: 14px; }
.v2-agent-family-tour__content > em { display: block; margin-top: var(--space-4); color: var(--blue-200); font-size: 11px; font-style: normal; line-height: 1.5; }

.v2-agent-family-workflow :focus-visible { outline-color: var(--amber-300); }

.v2-agent-family-workflow__stage > p {
  margin: var(--space-8) 0 var(--space-3);
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.v2-agent-family-workflow__stage h3 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  letter-spacing: -0.045em;
}

.v2-agent-family-workflow__stage > span {
  display: block;
  max-width: 650px;
  margin-top: var(--space-5);
  color: var(--blue-100);
  font-size: 20px;
  line-height: 1.55;
}

.v2-agent-family-workflow__stage > strong {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  color: var(--amber-300);
  font-size: 14px;
}

.v2-agent-family-support {
  padding: clamp(96px, 9vw, 152px) max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  background: var(--gray-50);
}

.v2-agent-family-support__rail {
  width: 100vw;
  margin-top: var(--space-16);
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.v2-agent-family-support__rail::-webkit-scrollbar { display: none; }

.v2-agent-family-support__rail > ul {
  display: grid;
  min-width: 100%;
  grid-auto-columns: clamp(320px, 30vw, 410px);
  grid-auto-flow: column;
  gap: var(--space-5);
  margin: 0;
  padding: 0 max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2)) var(--space-6);
  list-style: none;
}

.v2-agent-family-support__rail li {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: var(--space-8);
  border-radius: var(--radius-window);
  background: var(--bg-content);
  box-shadow: var(--shadow-2);
  scroll-snap-align: start;
}

.v2-agent-family-support__visual {
  display: grid;
  min-height: 180px;
  place-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--blue-50), var(--amber-50));
  color: var(--blue-700);
}

.v2-agent-family-support__rail li > small { margin-top: auto; padding-top: var(--space-8); color: var(--amber-800); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; }
.v2-agent-family-support__rail h3 { margin: var(--space-3) 0 0; font-size: 26px; letter-spacing: -0.03em; }
.v2-agent-family-support__rail p { margin: var(--space-3) 0 0; color: var(--gray-600); line-height: 1.58; }

.v2-agent-family-trust { background: var(--bg-content); }

.v2-agent-family-trust__grid,
.v2-agent-family-integrations > div,
.v2-agent-family-foundation > div,
.v2-agent-family-operations > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-16);
}

.v2-agent-family-trust__grid article,
.v2-agent-family-integrations article,
.v2-agent-family-foundation article,
.v2-agent-family-operations article {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(6, 31, 71, 0.16);
}

.v2-agent-family-trust__grid h3,
.v2-agent-family-integrations h3,
.v2-agent-family-foundation h3,
.v2-agent-family-operations h3 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.v2-agent-family-trust__grid p,
.v2-agent-family-integrations p,
.v2-agent-family-foundation p,
.v2-agent-family-operations p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.58;
}

.v2-agent-family-trust__note {
  max-width: 860px;
  margin: var(--space-16) 0 0;
  padding: var(--space-6) 0 0;
  border-top: 1px solid var(--amber-300);
  color: var(--gray-700);
  font-size: 18px;
}

.v2-agent-family-why { background: var(--blue-50); }

.v2-agent-family-why ol {
  display: grid;
  margin: var(--space-16) 0 0;
  padding: 0;
  list-style: none;
}

.v2-agent-family-why li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(6, 31, 71, 0.14);
}

.v2-agent-family-why li > span,
.v2-agent-family-operations article > span {
  color: var(--amber-700);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.v2-agent-family-why h3 { margin: 0; font-size: 26px; }
.v2-agent-family-why p { margin: var(--space-2) 0 0; color: var(--gray-600); }

.v2-agent-family-operating {
  padding: clamp(96px, 9vw, 152px) max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  background: var(--blue-950);
  color: var(--text-on-accent);
}

.v2-agent-family-operating > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--space-16);
  border: 1px solid rgba(194, 213, 248, 0.16);
  background: rgba(194, 213, 248, 0.16);
}

.v2-agent-family-operating > div > span {
  display: flex;
  min-height: 124px;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--blue-950);
  color: var(--blue-100);
  font-size: 18px;
}

.v2-agent-family-operating b {
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-medium);
}

.v2-agent-family-system-stack > section:nth-child(1) { background: var(--bg-content); }
.v2-agent-family-system-stack > section:nth-child(2) { background: var(--amber-50); }
.v2-agent-family-system-stack > section:nth-child(3) { background: var(--blue-50); }

.v2-agent-family-integrations .v2-agent-family-heading > small {
  display: block;
  margin-top: var(--space-6);
  color: var(--amber-700);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.v2-agent-family-foundation > div { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v2-agent-family-foundation article { min-height: 240px; }
.v2-agent-family-operations article > span { display: block; margin-bottom: var(--space-6); }

.v2-agent-family-evidence {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(48px, 7vw, 108px);
  padding: clamp(96px, 9vw, 152px) max(var(--v4-gutter), calc((100vw - var(--agent-page-max)) / 2));
  background: var(--blue-900);
  color: var(--text-on-accent);
}

.v2-agent-family-evidence > div > p { color: var(--amber-400); }
.v2-agent-family-evidence > div > span { color: var(--blue-100); }
.v2-agent-family-evidence > div > strong { display: block; margin-top: var(--space-8); color: var(--amber-300); font-size: 18px; }
.v2-agent-family-evidence ul { display: grid; gap: var(--space-3); align-content: start; margin: 0; padding: 0; list-style: none; }
.v2-agent-family-evidence li { display: flex; align-items: center; gap: var(--space-3); min-height: 52px; padding: 0 var(--space-4); border-bottom: 1px solid rgba(194, 213, 248, 0.18); color: var(--blue-100); }
.v2-agent-family-evidence > small { grid-column: 2; color: var(--blue-200); line-height: 1.55; }

.v2-agent-family-final {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(96px, 10vw, 168px) var(--v4-gutter);
  background: var(--bg-content);
  text-align: center;
}

.v2-agent-family-final > p { color: var(--amber-700); }
.v2-agent-family-final > span { max-width: 800px; }
.v2-agent-family-final .v2-agent-family-actions { justify-content: center; }

.v2-agent-family :where(a, button):focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.v2-agent-family-questions legend span,
.v2-agent-family-recommendation > p,
.v2-agent-family-why li > span,
.v2-agent-family-operations article > span,
.v2-agent-family-integrations .v2-agent-family-heading > small,
.v2-agent-family-final > p {
  color: var(--amber-800);
}

.v2-market-family-entry {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: 0 var(--space-5);
  border-radius: var(--radius-full);
  background: var(--blue-800);
  color: #fff !important;
  font-weight: var(--weight-semibold);
}

@media (max-width: 1120px) {
  .v2-agent-family-local-nav {
    display: flex;
    max-width: 100%;
    align-items: center;
    gap: var(--space-3);
  }
  .v2-agent-family-local-nav__name { max-width: min(34vw, 280px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .v2-agent-family-local-nav__links {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    padding-bottom: 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .v2-agent-family-local-nav__links::-webkit-scrollbar { display: none; }
  .v2-agent-family-local-nav__links a {
    min-height: var(--v4-control-min);
    flex: 0 0 auto;
    padding-inline: 10px;
    font-size: 12px;
  }
  .v2-agent-family-local-nav__links a.is-primary {
    margin-left: var(--space-1);
  }
  .v2-agent-family-hero { min-height: 220px; padding-top: 56px; }
  .v2-agent-family-hero__copy { max-width: 900px; }
  .v2-agent-family-hero__visual img { width: min(78vw, 680px); }
  .v2-agent-family-chooser__layout { grid-template-columns: 1fr; }
  .v2-agent-family-recommendation { position: static; }
  .v2-agent-family-trust__grid,
  .v2-agent-family-integrations > div,
  .v2-agent-family-operations > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .v2-agent-family-local-nav { min-height: 54px; padding-inline: var(--space-5); }
  .v2-agent-family-local-nav__name { font-size: 14px; }
  .v2-agent-family-local-nav__links .is-primary { min-height: var(--v4-control-min); margin: 0; padding-inline: var(--space-4); }
  .v2-agent-family-hero,
  .v2-agent-family-lineup,
  .v2-agent-family-chooser,
  .v2-agent-family-support,
  .v2-agent-family-trust,
  .v2-agent-family-why,
  .v2-agent-family-integrations,
  .v2-agent-family-foundation,
  .v2-agent-family-operations,
  .v2-agent-family-workflow,
  .v2-agent-family-operating,
  .v2-agent-family-evidence { padding-inline: var(--space-5); }
  .v2-agent-family-hero { min-height: 210px; padding-top: 48px; padding-bottom: var(--space-8); gap: 0; }
  .v2-agent-family-hero h1 { font-size: clamp(48px, 12vw, 68px); }
  .v2-agent-family-hero__copy > span { font-size: 19px; }
  .v2-agent-family-hero__visual img { width: min(88vw, 560px); }
  .v2-agent-family-heading h2,
  .v2-agent-family-evidence h2,
  .v2-agent-family-final h2 { font-size: clamp(40px, 10vw, 58px); }
  .v2-agent-family-rail-controls { position: static; justify-content: flex-end; margin-top: var(--space-6); }
  .v2-agent-family-product-rail { margin-top: var(--space-6); scroll-padding-inline: var(--space-5); }
  .v2-agent-family-product-rail > ul { grid-auto-columns: min(82vw, 410px); padding-inline: var(--space-5); }
  .v2-agent-family-product-rail > ul > li { min-height: 540px; padding: var(--space-6); border-radius: 26px; }
  .v2-agent-family-product-card__visual { min-height: 260px; }
  .v2-agent-family-workflow__body { grid-template-columns: 1fr; }
  .v2-agent-family-workflow ol { display: flex; max-width: 100%; gap: var(--space-2); overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  .v2-agent-family-workflow li { flex: 0 0 min(62vw, 250px); scroll-snap-align: start; }
  .v2-agent-family-workflow li button { min-height: 72px; }
  .v2-agent-family-workflow__stage { min-height: 0; grid-template-columns: 1fr; }
  .v2-agent-family-tour__visual { min-height: 340px; }
  .v2-agent-family-tour__visual img { width: min(78vw, 540px); }
  .v2-agent-family-tour__content { padding: var(--space-8); }
  .v2-agent-family-foundation > div,
  .v2-agent-family-operating > div { grid-template-columns: 1fr; }
  .v2-agent-family-evidence { grid-template-columns: 1fr; }
  .v2-agent-family-evidence > small { grid-column: auto; }
}

@media (max-width: 560px) {
  .v2-agent-family-local-nav__name { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .v2-agent-family-local-nav__links .is-primary { font-size: 12px; }
  .v2-agent-family-actions { align-items: stretch; }
  .v2-agent-family-actions a { width: 100%; min-height: 48px; }
  .v2-agent-family-hero { min-height: 190px; padding-top: var(--space-8); padding-bottom: var(--space-6); }
  .v2-shell[data-language="zh"] .v2-agent-family-hero h1 { font-size: clamp(40px, 10.5vw, 48px); line-height: 1.02; }
  .v2-agent-family-hero__visual img { width: 86vw; }
  .v2-agent-family-shelf__list { grid-auto-columns: 100px; gap: var(--space-3); padding-inline: var(--space-5); }
  .v2-agent-family-shelf__link { min-height: 116px; }
  .v2-agent-family-shelf__visual { width: 66px; height: 60px; }
  .v2-agent-family-product-rail > ul { grid-auto-columns: calc(100vw - 48px); gap: var(--space-3); }
  .v2-agent-family-product-rail > ul > li { min-height: 500px; }
  .v2-agent-family-product-card__visual { min-height: 230px; }
  .v2-agent-family-questions fieldset > div { display: grid; grid-template-columns: 1fr 1fr; }
  .v2-agent-family-questions label { min-width: 0; padding-inline: var(--space-3); }
  .v2-agent-family-recommendation dl > div { grid-template-columns: 1fr; gap: 2px; }
  .v2-agent-family-workflow ol { grid-template-columns: 1fr 1fr; }
  .v2-agent-family-workflow li { flex-basis: min(74vw, 250px); }
  .v2-agent-family-tour__visual { min-height: 280px; }
  .v2-agent-family-tour__content { padding: var(--space-6); }
  .v2-agent-family-tour__content > span { font-size: 17px; }
  .v2-agent-family-support__rail { margin-top: var(--space-10); scroll-padding-inline: var(--space-5); }
  .v2-agent-family-support__rail > ul { grid-auto-columns: calc(100vw - 48px); gap: var(--space-3); padding-inline: var(--space-5); }
  .v2-agent-family-support__rail li { min-height: 390px; padding: var(--space-6); }
  .v2-agent-family-trust__grid,
  .v2-agent-family-integrations > div,
  .v2-agent-family-operations > div { grid-template-columns: 1fr; }
  .v2-agent-family-trust__grid article,
  .v2-agent-family-integrations article,
  .v2-agent-family-foundation article,
  .v2-agent-family-operations article { min-height: 0; }
  .v2-agent-family-why li { grid-template-columns: 40px 1fr; }
  .v2-agent-family-final { min-height: 520px; padding-inline: var(--space-5); }
}

@media (prefers-reduced-motion: reduce) {
  .v2-agent-family *,
  .v2-agent-family *::before,
  .v2-agent-family *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .v2-agent-family-actions a:hover,
  .v2-agent-family-shelf__link:hover .v2-agent-family-shelf__visual {
    transform: none;
  }

  .v2-agent-family :where(
    .v2-agent-family-shelf__scroller,
    .v2-agent-family-product-rail,
    .v2-agent-family-support__rail
  ) {
    scroll-behavior: auto;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .v2-agent-family-local-nav {
    background: var(--bg-content);
    backdrop-filter: none;
  }
}

/*
 * Service-product detail system.
 * Apple-like product hierarchy and pacing, expressed with original Myrilum
 * service content, delivery evidence, and brand materials.
 */

.v2-product-page {
  --v2-product-accent: var(--blue-600);
  --v2-product-tint: var(--blue-50);
  overflow: clip;
  background: var(--v4-surface-subtle);
  color: var(--blue-950);
}

.v2-product-page[data-category="strategy-consulting"],
.v2-product-page[data-category="trust-security-compliance"],
.v2-product-page[data-category="industry-science-engineering"] {
  --v2-product-accent: var(--amber-500);
  --v2-product-tint: var(--amber-50);
}

.v2-product-page[data-category="agents-automation"],
.v2-product-page[data-category="models-training"],
.v2-product-page[data-category="managed-operations-enablement"] {
  --v2-product-accent: var(--blue-500);
  --v2-product-tint: var(--blue-50);
}

.v2-product-local-nav {
  position: sticky;
  z-index: 70;
  top: var(--v4-header-height);
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-inline: max(
    var(--v4-gutter),
    calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter))
  );
  border-bottom: 1px solid rgba(6, 28, 61, 0.1);
  background: rgba(250, 250, 252, 0.9);
  backdrop-filter: blur(22px) saturate(160%);
}

.v2-product-local-nav__name {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  max-width: 34ch;
  overflow: hidden;
  color: var(--blue-950);
  font-size: 15px;
  font-weight: var(--weight-semibold);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-product-local-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.v2-product-local-nav__links > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: var(--weight-medium);
}

.v2-product-local-nav__links > a:hover {
  color: var(--blue-950);
}

.v2-product-local-nav__links .v2-product-local-nav__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 var(--space-4);
  border-radius: var(--radius-full);
  background: var(--blue-900);
  color: #fff;
}

.v2-product-local-nav__links .v2-product-local-nav__cta:hover {
  background: var(--blue-800);
  color: #fff;
}

.v2-product-scope-strip {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--v4-gutter);
  background: #fff;
  color: var(--gray-700);
  font-size: 12px;
  text-align: center;
}

.v2-product-scope-strip strong {
  color: var(--blue-950);
}

.v2-product-hero {
  display: grid;
  width: min(100%, var(--v4-content-max));
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  margin: 0 auto;
  padding: clamp(var(--space-16), 9vw, 132px) var(--v4-gutter);
  scroll-margin-top: calc(var(--v4-header-height) + 70px);
}

.v2-product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  color: var(--gray-600);
  font-size: 12px;
}

.v2-product-breadcrumbs a:hover {
  color: var(--blue-900);
}

.v2-product-breadcrumbs a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.v2-product-eyebrow,
.v2-product-section__header > p {
  margin: 0;
  color: var(--v2-product-accent);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
}

.v2-product-hero h1 {
  max-width: 12ch;
  margin: var(--space-4) 0 0;
  color: var(--blue-950);
  font-size: clamp(54px, 5.8vw, 84px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.058em;
  line-height: 0.98;
  text-wrap: balance;
}

.v2-product-hero__lead {
  max-width: 650px;
  margin: var(--space-7) 0 0;
  color: var(--gray-700);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: var(--weight-medium);
  letter-spacing: -0.025em;
  line-height: 1.36;
  text-wrap: balance;
}

.v2-product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.v2-product-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-6);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.v2-shell .v2-product-action--primary {
  background: var(--blue-900);
  color: #fff;
}

.v2-shell .v2-product-action--primary:hover {
  background: var(--blue-800);
  color: #fff;
}

.v2-shell .v2-product-action--secondary {
  color: var(--blue-700);
}

.v2-shell .v2-product-action--secondary:hover {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.v2-product-hero__visual {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  align-content: space-between;
  padding: clamp(var(--space-7), 3.4vw, var(--space-10));
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 52% 48%,
      color-mix(in srgb, var(--v2-product-accent) 22%, transparent),
      transparent 34%
    ),
    linear-gradient(150deg, #fff 4%, var(--v2-product-tint) 54%, var(--gray-200));
  box-shadow: 0 22px 70px rgba(6, 28, 61, 0.12);
  isolation: isolate;
}

.v2-product-hero__visual-label {
  display: grid;
  gap: var(--space-2);
}

.v2-product-hero__visual-label span {
  color: var(--gray-600);
  font-size: 12px;
  font-weight: var(--weight-semibold);
}

.v2-product-hero__visual-label strong {
  max-width: 16ch;
  color: var(--blue-950);
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.v2-product-hero__icon {
  display: grid;
  width: clamp(220px, 24vw, 310px);
  aspect-ratio: 1;
  place-self: center;
  border-radius: 34%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 30px 80px rgba(6, 28, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--v2-product-accent);
  place-items: center;
  transform: rotate(var(--v2-product-hero-turn, -4deg));
  transition:
    box-shadow var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.v2-product-hero__icon svg {
  max-width: 64%;
  height: auto;
  transform-origin: center;
  transition: transform var(--duration-slow) var(--ease-out);
}

.v2-product-hero__artifact {
  position: absolute;
  z-index: 2;
  right: 12%;
  top: 52%;
  display: grid;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 18px 44px rgba(6, 28, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  color: var(--v2-product-accent);
  place-items: center;
  transform: rotate(var(--v2-product-artifact-turn, 4deg));
  transition: transform var(--duration-slow) var(--ease-out);
}

.v2-product-page[data-visual-composition="focus"] .v2-product-hero__artifact {
  right: 13%;
  top: 52%;
}

.v2-product-page[data-visual-composition="offset"] .v2-product-hero__artifact {
  left: 12%;
  right: auto;
  top: 58%;
}

.v2-product-page[data-visual-composition="split"] .v2-product-hero__artifact {
  right: 16%;
  top: 34%;
}

.v2-product-page[data-visual-composition="stack"] .v2-product-hero__artifact {
  right: 27%;
  top: 61%;
}

.v2-product-page[data-visual-composition="counterpoint"] .v2-product-hero__artifact {
  left: 15%;
  right: auto;
  top: 36%;
}

.v2-product-page[data-visual-composition="signal"] .v2-product-hero__artifact {
  right: 9%;
  top: 44%;
}

.v2-product-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.v2-product-hero__facts > div {
  display: grid;
  min-height: 88px;
  align-content: space-between;
  padding: var(--space-4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--gray-700);
}

.v2-product-hero__facts svg {
  color: var(--v2-product-accent);
}

.v2-product-hero__facts span {
  font-size: 11px;
  font-weight: var(--weight-semibold);
}

.v2-product-section {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: clamp(var(--space-16), 9vw, 132px) var(--v4-gutter);
  scroll-margin-top: calc(var(--v4-header-height) + 70px);
}

.v2-product-section__header {
  max-width: 940px;
}

.v2-product-section__header h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.v2-product-highlights {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: max(
    var(--v4-gutter),
    calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter))
  );
}

.v2-product-rail-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  padding-right: max(
    var(--v4-gutter),
    calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter))
  );
}

.v2-product-rail-controls {
  display: flex;
  flex: none;
  gap: var(--space-3);
}

.v2-product-rail-controls button {
  display: inline-grid;
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-700);
  cursor: pointer;
  place-items: center;
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.v2-product-rail-controls button:disabled {
  cursor: default;
  opacity: 0.38;
}

@media (hover: hover) and (pointer: fine) {
  .v2-product-rail-controls button:not(:disabled):hover {
    background: var(--blue-900);
    color: #fff;
    transform: scale(1.04);
  }

  .v2-product-page[data-motion-kind="focus"] .v2-product-hero__visual:hover .v2-product-hero__icon svg {
    transform: scale(var(--v2-product-motion-scale, 1.06));
  }

  .v2-product-page[data-motion-kind="assemble"] .v2-product-hero__visual:hover .v2-product-hero__icon svg {
    transform:
      translateY(calc(-1 * var(--v2-product-motion-y, 6px)))
      rotate(calc(-1 * var(--v2-product-motion-rotate, 4deg)));
  }

  .v2-product-page[data-motion-kind="flow"] .v2-product-hero__visual:hover .v2-product-hero__icon svg {
    transform: translateX(var(--v2-product-motion-x, 7px));
  }

  .v2-product-page[data-motion-kind="orbit"] .v2-product-hero__visual:hover .v2-product-hero__icon svg {
    transform: rotate(var(--v2-product-motion-rotate, 8deg));
  }

  .v2-product-page[data-motion-kind="pulse"] .v2-product-hero__visual:hover .v2-product-hero__icon svg {
    transform: scale(var(--v2-product-motion-scale, 1.05));
  }

  .v2-product-page[data-motion-kind="scan"] .v2-product-hero__visual:hover .v2-product-hero__icon svg {
    transform: translateY(calc(-1 * var(--v2-product-motion-y, 5px)));
  }

  .v2-product-hero__visual:hover .v2-product-hero__artifact {
    transform:
      rotate(calc(var(--v2-product-artifact-turn, 4deg) + var(--v2-product-motion-rotate, 4deg)))
      translateY(calc(-1 * var(--v2-product-motion-y, 4px)));
  }
}

.v2-product-highlight-rail,
.v2-product-related__rail {
  display: grid;
  grid-auto-flow: column;
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding: 4px max(var(--v4-gutter), env(safe-area-inset-right)) var(--space-8) 4px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.v2-product-highlight-rail {
  grid-auto-columns: clamp(360px, 34vw, 470px);
}

.v2-product-highlight-rail::-webkit-scrollbar,
.v2-product-related__rail::-webkit-scrollbar {
  display: none;
}

.v2-product-highlight-card {
  display: grid;
  min-height: 570px;
  overflow: hidden;
  align-content: space-between;
  padding: clamp(var(--space-7), 3vw, var(--space-10));
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(6, 28, 61, 0.08);
  scroll-snap-align: start;
}

.v2-product-highlight-card[data-tone="delivery"] {
  background: linear-gradient(155deg, #fff 36%, var(--blue-50));
}

.v2-product-highlight-card[data-tone="acceptance"] {
  background: linear-gradient(155deg, #fff 36%, var(--amber-50));
}

.v2-product-highlight-card[data-tone="boundary"] {
  background: linear-gradient(155deg, #fff 36%, var(--gray-200));
}

.v2-product-highlight-card span {
  color: var(--gray-600);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.v2-product-highlight-card h3 {
  margin: var(--space-4) 0 0;
  color: var(--blue-950);
  font-size: clamp(28px, 2.7vw, 38px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}

.v2-product-highlight-card > svg {
  justify-self: end;
  color: var(--v2-product-accent);
}

.v2-product-deliverables__lead {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) minmax(0, 1.6fr);
  gap: var(--space-10);
  margin-top: clamp(var(--space-10), 6vw, var(--space-20));
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-300);
}

.v2-product-deliverables__lead > span {
  color: var(--gray-600);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.v2-product-deliverables__lead > p {
  max-width: 900px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.16;
  text-wrap: balance;
}

.v2-product-deliverables__package {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-10);
  margin-top: clamp(var(--space-12), 7vw, var(--space-20));
  border-radius: 34px;
  background: var(--blue-950);
  color: #fff;
}

.v2-product-deliverables__visual {
  display: grid;
  min-height: 520px;
  background: linear-gradient(145deg, var(--blue-800), var(--blue-950));
  color: var(--amber-400);
  place-items: center;
}

.v2-product-deliverables__package > div:last-child {
  align-self: center;
  padding: clamp(var(--space-8), 4vw, var(--space-12)) var(--space-10) clamp(var(--space-8), 4vw, var(--space-12)) 0;
}

.v2-product-deliverables__package h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.04em;
}

.v2-product-deliverables__package ul,
.v2-product-evidence ul,
.v2-product-scope__accordions ul,
.v2-product-configuration ul {
  margin: var(--space-7) 0 0;
  padding: 0;
  list-style: none;
}

.v2-product-deliverables__package li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--blue-100);
  font-size: 15px;
  line-height: 1.55;
}

.v2-product-deliverables__package li svg {
  color: var(--amber-400);
}

.v2-product-process {
  width: 100%;
  max-width: none;
  padding-inline: max(
    var(--v4-gutter),
    calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter))
  );
  background: #fff;
}

.v2-product-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: var(--space-12) 0 0;
  padding: 0;
  border-top: 1px solid var(--gray-300);
  list-style: none;
}

.v2-product-process__steps li {
  min-height: 330px;
  padding: var(--space-6) var(--space-7) var(--space-8) 0;
  border-right: 1px solid var(--gray-300);
}

.v2-product-process__steps li + li {
  padding-left: var(--space-7);
}

.v2-product-process__steps li:last-child {
  border-right: 0;
}

.v2-product-process__steps > li > span {
  color: var(--v2-product-accent);
  font-size: 12px;
  font-weight: var(--weight-bold);
}

.v2-product-process__steps h3 {
  margin: var(--space-8) 0 0;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.035em;
}

.v2-product-process__steps p {
  margin: var(--space-4) 0 0;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
}

.v2-product-evidence {
  width: 100%;
  max-width: none;
  padding-inline: max(
    var(--v4-gutter),
    calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter))
  );
  background: var(--blue-950);
  color: #fff;
}

.v2-product-section__header--light h2 {
  color: #fff;
}

.v2-product-section__header--light > p {
  color: var(--amber-400);
}

.v2-product-evidence__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.v2-product-evidence__summary {
  max-width: 900px;
  margin: var(--space-8) 0 0;
  color: var(--blue-100);
  font-size: clamp(20px, 2.1vw, 29px);
  font-weight: var(--weight-medium);
  letter-spacing: -0.025em;
  line-height: 1.45;
  text-wrap: balance;
}

.v2-product-evidence__grid > section {
  padding: clamp(var(--space-7), 3vw, var(--space-10));
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.065);
}

.v2-product-evidence h3 {
  margin: 0;
  color: var(--blue-100);
  font-size: 20px;
}

.v2-product-evidence li {
  position: relative;
  padding: var(--space-4) 0 var(--space-4) var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--blue-100);
  font-size: 15px;
  line-height: 1.65;
}

.v2-product-evidence li::before {
  position: absolute;
  left: 0;
  top: 23px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-400);
  content: "";
}

.v2-product-evidence__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
  margin: var(--space-8) 0 0;
}

.v2-product-evidence__notes > div {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.v2-product-evidence__notes dt {
  color: var(--amber-400);
  font-size: 12px;
  font-weight: var(--weight-bold);
}

.v2-product-evidence__notes dd {
  margin: var(--space-3) 0 0;
  color: var(--blue-100);
  font-size: 15px;
  line-height: 1.7;
}

.v2-product-scope__accordions {
  margin-top: var(--space-10);
  border-top: 1px solid var(--gray-300);
}

.v2-product-scope__accordions details {
  border-bottom: 1px solid var(--gray-300);
}

.v2-product-scope__accordions summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  color: var(--blue-950);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  list-style: none;
}

.v2-product-scope__accordions summary::-webkit-details-marker {
  display: none;
}

.v2-product-scope__accordions summary svg {
  transition: transform var(--v4-duration-fast) ease-out;
}

.v2-product-scope__accordions details[open] summary svg {
  transform: rotate(90deg);
}

.v2-product-scope__accordions ul {
  display: grid;
  max-width: 920px;
  gap: var(--space-3);
  margin: 0;
  padding: 0 0 var(--space-8);
}

.v2-product-scope__accordions li {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.65;
}

.v2-product-configuration {
  width: 100%;
  max-width: none;
  padding-inline: max(
    var(--v4-gutter),
    calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter))
  );
  background: var(--gray-100);
}

.v2-product-configuration__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.v2-product-configuration__grid > section {
  min-height: 330px;
  padding: var(--space-7);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(6, 28, 61, 0.06);
}

.v2-product-configuration__grid > section > svg {
  color: var(--v2-product-accent);
}

.v2-product-configuration__grid h3 {
  margin: var(--space-10) 0 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.v2-product-configuration__grid p,
.v2-product-configuration__grid li {
  margin: var(--space-4) 0 0;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
}

.v2-product-configuration__grid a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.v2-product-related {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: max(
    var(--v4-gutter),
    calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter))
  );
}

.v2-product-related__rail {
  grid-auto-columns: clamp(300px, 28vw, 380px);
}

.v2-product-related__rail > article {
  display: grid;
  min-height: 460px;
  align-content: start;
  padding: var(--space-7);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(6, 28, 61, 0.07);
  scroll-snap-align: start;
}

.v2-product-related__rail article > div {
  display: grid;
  min-height: 190px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--v2-product-tint), var(--gray-100));
  color: var(--v2-product-accent);
  place-items: center;
}

.v2-product-related__rail h3 {
  margin: var(--space-6) 0 0;
  color: var(--blue-950);
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.v2-product-related__rail p {
  display: -webkit-box;
  margin: var(--space-3) 0 0;
  overflow: hidden;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.v2-product-related__rail a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-6);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.v2-product-final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(var(--space-16), 10vw, 148px) var(--v4-gutter);
  background: var(--blue-950);
  color: #fff;
  text-align: center;
}

.v2-product-final-cta > p {
  margin: 0;
  color: var(--amber-400);
  font-size: 13px;
  font-weight: var(--weight-bold);
}

.v2-product-final-cta h2 {
  max-width: 880px;
  margin: var(--space-5) 0 0;
  font-size: clamp(44px, 6vw, 82px);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.v2-product-final-cta > span {
  max-width: 700px;
  margin-top: var(--space-6);
  color: var(--blue-100);
  font-size: 17px;
  line-height: 1.7;
}

.v2-product-final-cta > a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  padding: 0 var(--space-7);
  border-radius: var(--radius-full);
  background: var(--amber-400);
  color: var(--amber-900);
  font-size: 14px;
  font-weight: var(--weight-bold);
}

.v2-product-final-cta small {
  margin-top: var(--space-4);
  color: var(--blue-300);
  font-size: 11px;
}

@media (hover: hover) and (pointer: fine) {
  .v2-product-highlight-card,
  .v2-product-related__rail > article,
  .v2-product-configuration__grid > section {
    transition:
      box-shadow var(--duration-slow) var(--ease-out),
      transform var(--duration-slow) var(--ease-out);
  }

  .v2-product-highlight-card:hover,
  .v2-product-related__rail > article:hover,
  .v2-product-configuration__grid > section:hover {
    box-shadow: 0 18px 48px rgba(6, 28, 61, 0.13);
    transform: translateY(-2px);
  }
}

@media (max-width: 1180px) {
  .v2-product-hero {
    grid-template-columns: 1fr;
  }

  .v2-product-hero__copy {
    max-width: 860px;
  }

  .v2-product-hero h1 {
    max-width: 14ch;
  }

  .v2-product-hero__visual {
    min-height: 580px;
  }

  .v2-product-process__steps,
  .v2-product-configuration__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-product-process__steps li:nth-child(2) {
    border-right: 0;
  }

  .v2-product-process__steps li:nth-child(n + 3) {
    border-top: 1px solid var(--gray-300);
  }
}

@media (max-width: 734px) {
  .v2-product-local-nav {
    top: 64px;
    min-height: 54px;
    gap: var(--space-3);
  }

  .v2-product-local-nav__name {
    max-width: 50vw;
    font-size: 13px;
  }

  .v2-product-local-nav__links > a:not(.v2-product-local-nav__cta) {
    display: none;
  }

  .v2-product-local-nav__links .v2-product-local-nav__cta {
    min-height: 44px;
    padding: 0 var(--space-4);
    font-size: 12px;
  }

  .v2-product-scope-strip {
    display: grid;
    gap: 2px;
    font-size: 11px;
  }

  .v2-product-hero {
    gap: var(--space-10);
    padding-top: var(--space-14);
    padding-bottom: var(--space-16);
  }

  .v2-product-breadcrumbs {
    margin-bottom: var(--space-6);
  }

  .v2-product-hero h1 {
    font-size: clamp(46px, 13vw, 60px);
  }

  .v2-product-hero__lead {
    font-size: 20px;
  }

  .v2-product-hero__visual {
    min-height: 500px;
    border-radius: 28px;
  }

  .v2-product-hero__icon {
    width: min(58vw, 230px);
  }

  .v2-product-hero__artifact {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .v2-product-hero__facts {
    gap: var(--space-2);
  }

  .v2-product-hero__facts > div {
    min-height: 76px;
    padding: var(--space-3);
  }

  .v2-product-hero__facts span {
    font-size: 9px;
  }

  .v2-product-section__header h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .v2-product-highlight-rail {
    grid-auto-columns: min(84vw, 350px);
    gap: var(--space-4);
    scroll-snap-type: inline mandatory;
  }

  .v2-product-highlight-card {
    min-height: 500px;
    border-radius: 26px;
  }

  .v2-product-highlight-card h3 {
    font-size: 29px;
  }

  .v2-product-deliverables__lead,
  .v2-product-deliverables__package,
  .v2-product-evidence__grid,
  .v2-product-evidence__notes {
    grid-template-columns: 1fr;
  }

  .v2-product-deliverables__lead {
    gap: var(--space-4);
  }

  .v2-product-deliverables__package {
    gap: 0;
    border-radius: 28px;
  }

  .v2-product-deliverables__visual {
    min-height: 320px;
  }

  .v2-product-deliverables__package > div:last-child {
    padding: var(--space-8) var(--space-6);
  }

  .v2-product-process__steps,
  .v2-product-configuration__grid {
    grid-template-columns: 1fr;
  }

  .v2-product-process__steps li,
  .v2-product-process__steps li + li {
    min-height: 0;
    padding: var(--space-6) 0 var(--space-8);
    border-right: 0;
    border-top: 1px solid var(--gray-300);
  }

  .v2-product-process__steps li:first-child {
    border-top: 0;
  }

  .v2-product-process__steps h3 {
    margin-top: var(--space-5);
  }

  .v2-product-configuration__grid > section {
    min-height: 0;
  }

  .v2-product-related__rail {
    grid-auto-columns: min(82vw, 330px);
    gap: var(--space-4);
    scroll-snap-type: inline mandatory;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-product-hero__icon,
  .v2-product-hero__icon svg,
  .v2-product-highlight-card,
  .v2-product-related__rail > article,
  .v2-product-configuration__grid > section,
  .v2-product-scope__accordions summary svg {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Complete v0.4 candidate content system ---------------------------------- */

.v2-content-page {
  background: var(--v4-surface-subtle);
  color: var(--v4-content-strong);
}

.v2-content-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--blue-800);
  background:
    linear-gradient(90deg, rgba(60, 122, 226, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(60, 122, 226, 0.08) 1px, transparent 1px),
    var(--blue-950);
  background-size: 64px 64px;
  color: #fff;
}

.v2-content-page--studio .v2-content-hero {
  background:
    linear-gradient(120deg, rgba(173, 98, 0, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(60, 122, 226, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(60, 122, 226, 0.08) 1px, transparent 1px),
    #061c3d;
  background-size: auto, 80px 80px, 80px 80px, auto;
}

.v2-content-hero::after {
  position: absolute;
  right: -100px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(143, 178, 240, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(60, 122, 226, 0.035),
    0 0 0 160px rgba(60, 122, 226, 0.025);
  content: "";
  pointer-events: none;
}

.v2-content-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: var(--space-6) var(--v4-gutter) clamp(72px, 9vw, 132px);
}

.v2-content-breadcrumbs {
  display: flex;
  min-height: var(--v4-control-min);
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  color: var(--blue-200);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  letter-spacing: 0.035em;
}

.v2-content-breadcrumbs a {
  display: inline-flex;
  min-width: var(--v4-control-min);
  min-height: var(--v4-control-min);
  align-items: center;
  justify-content: center;
  color: var(--blue-200);
  transition: color var(--v4-duration-fast) ease-out;
}

.v2-content-breadcrumbs a:hover {
  color: #fff;
}

.v2-content-breadcrumbs > span:last-child {
  color: #fff;
}

.v2-content-hero__grid {
  margin-top: clamp(var(--space-10), 7vw, 96px);
}

.v2-content-hero__copy {
  max-width: 960px;
}

.v2-content-hero .v2-kicker {
  color: var(--amber-400);
}

.v2-content-hero h1 {
  max-width: 940px;
  margin: var(--space-5) 0 0;
  color: #fff;
  font-size: clamp(52px, 5.8vw, 88px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.v2-shell[data-language="zh"] .v2-content-hero h1 {
  max-width: 860px;
  font-size: clamp(48px, 5.25vw, 78px);
  line-height: 1.06;
}

.v2-content-hero__lead {
  max-width: 760px;
  margin: var(--space-7) 0 0;
  color: var(--blue-100);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.7;
}

.v2-content-hero__status {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-7);
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-left: 3px solid var(--amber-400);
  background: rgba(92, 52, 0, 0.28);
  color: var(--amber-100);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.035em;
  line-height: 1.5;
}

.v2-content-hero__status svg {
  flex: 0 0 auto;
  color: var(--amber-400);
}

.v2-content-hero__actions,
.v2-content-closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.v2-content-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-5);
  border: 1px solid transparent;
  border-radius: var(--v4-radius-control);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  transition:
    background var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out,
    transform var(--v4-duration-fast) ease-out;
}

.v2-content-action:active {
  transform: translateY(1px);
}

.v2-shell .v2-content-action--primary {
  border-color: var(--amber-400);
  background: var(--amber-400);
  color: var(--amber-900);
}

.v2-shell .v2-content-action--primary:hover {
  border-color: var(--amber-300);
  background: var(--amber-300);
  color: var(--amber-900);
}

.v2-content-action--secondary {
  border-color: var(--blue-600);
  background: rgba(11, 59, 141, 0.24);
  color: #fff;
}

.v2-content-action--secondary:hover {
  border-color: var(--blue-300);
  background: rgba(60, 122, 226, 0.24);
}

.v2-content-action--secondary-dark {
  border-color: var(--blue-600);
  background: transparent;
  color: #fff;
}

.v2-content-action--secondary-dark:hover {
  border-color: var(--blue-300);
  background: rgba(60, 122, 226, 0.16);
}

.v2-content-body {
  display: grid;
  width: min(100%, var(--v4-content-max));
  grid-template-columns: minmax(190px, 0.25fr) minmax(0, 1fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  margin: 0 auto;
  padding: var(--space-12) var(--v4-gutter) var(--v4-section-space);
}

.v2-content-index {
  min-width: 0;
}

.v2-content-index > div {
  position: sticky;
  top: calc(var(--v4-header-height) + 92px);
  padding-top: var(--space-4);
  border-top: 3px solid var(--blue-700);
}

.v2-content-index p {
  margin: 0 0 var(--space-4);
  color: var(--gray-600);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.v2-content-index nav {
  display: grid;
}

.v2-content-index a {
  display: grid;
  min-height: 44px;
  align-items: center;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: var(--text-caption);
  line-height: 1.35;
  transition: color var(--v4-duration-fast) ease-out;
}

.v2-content-index a:hover {
  color: var(--blue-700);
}

.v2-content-index a span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 10px;
}

.v2-content-sections,
.v2-capability-directory {
  display: grid;
  min-width: 0;
  gap: var(--space-8);
}

.v2-content-section {
  scroll-margin-top: calc(var(--v4-header-height) + 78px);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--blue-700);
  background: #fff;
  box-shadow: 0 18px 56px rgba(6, 31, 71, 0.055);
}

.v2-content-section--soft,
.v2-content-section--blue {
  background: var(--blue-50);
}

.v2-content-section--blue {
  border-top-color: var(--blue-500);
}

.v2-content-section--amber {
  border-top-color: var(--amber-500);
  background: var(--amber-50);
}

.v2-content-section--dark {
  border-color: var(--blue-800);
  border-top-color: var(--amber-400);
  background: var(--blue-950);
  color: #fff;
}

.v2-content-section__header {
  max-width: 900px;
  padding: clamp(var(--space-7), 5vw, var(--space-12));
}

.v2-content-section__header .v2-kicker {
  color: var(--blue-700);
}

.v2-content-section--amber .v2-kicker,
.v2-content-section--dark .v2-kicker {
  color: var(--amber-600);
}

.v2-content-section--dark .v2-kicker {
  color: var(--amber-400);
}

.v2-content-section__header h2,
.v2-capability-governance h2 {
  margin: var(--space-4) 0 0;
  color: var(--blue-950);
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.v2-shell[data-language="zh"] .v2-content-section__header h2,
.v2-shell[data-language="zh"] .v2-capability-governance h2 {
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.v2-shell[data-language="zh"] .v2-capability-directory .v2-content-section__header h2 {
  text-wrap: wrap;
}

.v2-content-section--dark .v2-content-section__header h2,
.v2-content-section--dark .v2-capability-governance h2 {
  color: #fff;
}

.v2-content-section__header > p:last-child,
.v2-capability-governance > div > p {
  max-width: 780px;
  margin: var(--space-5) 0 0;
  color: var(--gray-700);
  font-size: var(--text-body);
  line-height: 1.75;
}

.v2-content-section--dark .v2-content-section__header > p:last-child,
.v2-content-section--dark .v2-capability-governance > div > p {
  color: var(--blue-200);
}

.v2-content-grid {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--gray-200);
  list-style: none;
}

.v2-content-grid--grid,
.v2-content-grid--comparison,
.v2-content-grid--status {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-content-grid--comparison > div,
.v2-content-grid--status > div,
.v2-content-grid--grid > div {
  min-width: 0;
  border-bottom: 1px solid var(--gray-200);
}

.v2-content-grid--comparison > div:nth-child(odd),
.v2-content-grid--status > div:nth-child(odd),
.v2-content-grid--grid > div:nth-child(odd) {
  border-right: 1px solid var(--gray-200);
}

.v2-content-grid--timeline {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.v2-content-grid--timeline > li {
  min-width: 0;
  border-right: 1px solid var(--gray-200);
}

.v2-content-grid--timeline > li:last-child {
  border-right: 0;
}

.v2-content-section--dark .v2-content-grid,
.v2-content-section--dark .v2-content-grid > * {
  border-color: rgba(143, 178, 240, 0.18);
}

.v2-content-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(var(--space-6), 4vw, var(--space-9));
  background: transparent;
}

.v2-content-card__topline {
  display: flex;
  min-height: 28px;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.v2-content-card__index {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.v2-content-card__status {
  max-width: 170px;
  padding: 4px var(--space-2);
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--gray-700);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-align: right;
}

.v2-content-card__status.is-human-gate,
.v2-content-card__status.is-unverified,
.v2-content-card__status.is-blocked {
  border-color: var(--amber-300);
  background: var(--amber-50);
  color: var(--amber-900);
}

.v2-content-card__status.is-verified,
.v2-content-card__status.is-approved {
  border-color: var(--blue-300);
  background: var(--blue-50);
  color: var(--blue-900);
}

.v2-content-card h3 {
  margin: var(--space-5) 0 0;
  color: var(--blue-950);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.v2-content-card > p {
  margin: var(--space-4) 0 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.78;
}

.v2-content-section--dark .v2-content-card h3 {
  color: #fff;
}

.v2-content-section--dark .v2-content-card > p,
.v2-content-section--dark .v2-content-card__index {
  color: var(--blue-200);
}

.v2-content-card__boundary {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding: var(--space-4);
  border-left: 3px solid var(--amber-500);
  background: rgba(245, 158, 11, 0.08);
}

.v2-content-card__boundary svg {
  flex: 0 0 auto;
  color: var(--amber-600);
}

.v2-content-card__boundary div {
  display: grid;
  gap: var(--space-1);
}

.v2-content-card__boundary strong {
  color: var(--amber-900);
  font-size: var(--text-caption2);
}

.v2-content-card__boundary span {
  color: var(--gray-700);
  font-size: var(--text-caption);
  line-height: 1.6;
}

.v2-content-card__link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-5);
  color: var(--blue-700);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-content-card__link svg {
  transition: transform var(--v4-duration-fast) ease-out;
}

.v2-content-card__link:hover svg {
  transform: translateX(3px);
}

.v2-content-section--dark .v2-content-card__link {
  color: var(--blue-200);
}

.v2-content-section__note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin: 0 clamp(var(--space-6), 4vw, var(--space-10)) clamp(var(--space-6), 4vw, var(--space-10));
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--blue-600);
  background: var(--gray-50);
}

.v2-content-section__note svg {
  flex: 0 0 auto;
  color: var(--blue-600);
}

.v2-content-section__note p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-caption);
  line-height: 1.65;
}

.v2-content-closing {
  display: grid;
  width: min(calc(100% - (2 * var(--v4-gutter))), var(--v4-content-max));
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(var(--space-6), 4vw, var(--space-10));
  margin: 0 auto;
  padding: clamp(var(--space-8), 6vw, var(--space-16));
  border-top: 4px solid var(--amber-400);
  background: var(--blue-950);
  color: #fff;
  box-shadow: 0 32px 80px rgba(6, 31, 71, 0.16);
}

.v2-content-closing__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--blue-700);
  color: var(--amber-400);
}

.v2-content-closing .v2-kicker {
  color: var(--amber-400);
}

.v2-content-closing h2 {
  max-width: 860px;
  margin: var(--space-4) 0 0;
  color: #fff;
  font-size: clamp(36px, 4.3vw, 62px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.v2-content-closing__copy > p:not(.v2-kicker) {
  max-width: 760px;
  margin: var(--space-5) 0 0;
  color: var(--blue-100);
  font-size: var(--text-body);
  line-height: 1.75;
}

.v2-content-closing small {
  display: block;
  max-width: 760px;
  margin-top: var(--space-7);
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.035em;
  line-height: 1.55;
  text-transform: uppercase;
}

.v2-content-related {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: var(--v4-section-space) var(--v4-gutter);
}

.v2-content-related > header {
  display: grid;
  max-width: 780px;
  gap: var(--space-4);
}

.v2-content-related h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-wrap: balance;
}

.v2-content-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--space-10);
  border: 1px solid var(--gray-200);
  background: #fff;
}

.v2-content-related__card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: clamp(var(--space-6), 4vw, var(--space-9));
  border-right: 1px solid var(--gray-200);
  transition:
    background var(--v4-duration-base) ease-out,
    color var(--v4-duration-base) ease-out;
}

.v2-content-related__card:last-child {
  border-right: 0;
}

.v2-content-related__card:hover {
  background: var(--blue-950);
  color: #fff;
}

.v2-content-related__card > span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.055em;
}

.v2-content-related__card > strong {
  margin-top: var(--space-5);
  color: var(--blue-950);
  font-size: var(--text-title2);
  line-height: 1.2;
}

.v2-content-related__card > p {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-content-related__card > svg {
  margin-top: auto;
  color: var(--blue-700);
}

.v2-content-related__card:hover > span,
.v2-content-related__card:hover > p,
.v2-content-related__card:hover > svg {
  color: var(--blue-200);
}

.v2-content-related__card:hover > strong {
  color: #fff;
}

/* Full-spectrum capability directory */

.v2-capability-clusters {
  display: grid;
  border-top: 1px solid var(--gray-200);
}

.v2-capability-cluster {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.75fr);
  border-bottom: 1px solid var(--gray-200);
  scroll-margin-top: calc(var(--v4-header-height) + 78px);
}

.v2-capability-cluster:last-child {
  border-bottom: 0;
}

.v2-capability-cluster > header {
  padding: var(--space-8);
  border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.v2-capability-cluster > header > span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
}

.v2-capability-cluster > header h3 {
  margin: var(--space-4) 0 0;
  color: var(--blue-950);
  font-size: var(--text-title2);
  line-height: 1.2;
}

.v2-capability-cluster > header p {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-caption);
  line-height: 1.65;
}

.v2-capability-domain-stack {
  min-width: 0;
}

.v2-capability-domain {
  border-bottom: 1px solid var(--gray-200);
  background: #fff;
}

.v2-capability-domain:last-child {
  border-bottom: 0;
}

.v2-capability-domain summary {
  display: grid;
  min-height: 92px;
  align-items: center;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-7);
  color: var(--blue-950);
  cursor: pointer;
  list-style: none;
  transition: background var(--v4-duration-fast) ease-out;
}

.v2-capability-domain summary::-webkit-details-marker {
  display: none;
}

.v2-capability-domain summary:hover {
  background: var(--blue-50);
}

.v2-capability-domain summary > span:first-child {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-capability-domain summary > span:nth-child(2) {
  display: grid;
  gap: var(--space-2);
}

.v2-capability-domain summary strong {
  font-size: var(--text-callout);
}

.v2-capability-domain summary small {
  color: var(--gray-600);
  font-size: var(--text-caption2);
  line-height: 1.55;
}

.v2-capability-domain summary svg {
  color: var(--blue-600);
  transition: transform var(--v4-duration-expand) ease-out;
}

.v2-capability-domain[open] summary {
  background: var(--blue-950);
  color: #fff;
}

.v2-capability-domain[open] summary > span:first-child,
.v2-capability-domain[open] summary small,
.v2-capability-domain[open] summary svg {
  color: var(--blue-200);
}

.v2-capability-domain[open] summary svg {
  transform: rotate(90deg);
}

.v2-capability-domain__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.v2-capability-domain-list {
  padding: var(--space-6);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.v2-capability-domain-list:nth-child(even) {
  border-right: 0;
}

.v2-capability-domain-list h4,
.v2-capability-domain__gate h4 {
  margin: 0;
  color: var(--blue-900);
  font-size: var(--text-footnote);
}

.v2-capability-domain-list ul {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.v2-capability-domain-list li {
  position: relative;
  padding-left: var(--space-4);
  color: var(--gray-700);
  font-size: var(--text-caption);
  line-height: 1.6;
}

.v2-capability-domain-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue-500);
  content: "";
}

.v2-capability-domain__gate {
  display: flex;
  grid-column: 1 / -1;
  gap: var(--space-4);
  padding: var(--space-6);
  border-left: 3px solid var(--amber-500);
  background: var(--amber-50);
}

.v2-capability-domain__gate svg {
  flex: 0 0 auto;
  color: var(--amber-700);
}

.v2-capability-domain__gate p {
  margin: var(--space-2) 0 0;
  color: var(--gray-700);
  font-size: var(--text-caption);
  line-height: 1.65;
}

.v2-capability-domain__page-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--gray-200);
  background: #fff;
  color: var(--blue-800);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-capability-domain__page-link:hover {
  background: var(--blue-50);
  color: var(--blue-950);
}

.v2-capability-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--gray-200);
}

.v2-capability-compact-card {
  min-width: 0;
  padding: var(--space-7);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.v2-capability-compact-card:nth-child(3n) {
  border-right: 0;
}

.v2-capability-compact-card > span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.045em;
}

.v2-capability-compact-card h3 {
  margin: var(--space-4) 0 0;
  color: var(--blue-950);
  font-size: var(--text-title3);
  line-height: 1.25;
}

.v2-capability-compact-card p {
  margin: var(--space-3) 0 0;
  color: var(--gray-700);
  font-size: var(--text-caption);
  line-height: 1.68;
}

.v2-content-section--dark .v2-capability-compact-grid,
.v2-content-section--dark .v2-capability-compact-card {
  border-color: rgba(143, 178, 240, 0.18);
}

.v2-capability-governance {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: var(--space-6);
  padding: clamp(var(--space-8), 6vw, var(--space-14));
}

.v2-capability-governance > svg {
  color: var(--amber-400);
}

.v2-capability-governance > div > span {
  display: inline-flex;
  margin-top: var(--space-6);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--blue-700);
  color: var(--blue-200);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.045em;
}

@media (max-width: 1120px) {
  .v2-content-body {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: var(--space-8);
  }

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

  .v2-content-grid--timeline > li:nth-child(2n) {
    border-right: 0;
  }

  .v2-capability-cluster {
    grid-template-columns: 1fr;
  }

  .v2-capability-cluster > header {
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }
}

@media (max-width: 820px) {
  .v2-content-hero__inner {
    padding-bottom: var(--space-16);
  }

  .v2-content-hero__grid {
    margin-top: var(--space-10);
  }

  .v2-content-body {
    grid-template-columns: 1fr;
    padding-top: var(--space-8);
  }

  .v2-content-index > div {
    position: static;
    padding-top: 0;
    border-top: 0;
  }

  .v2-content-index p {
    margin-bottom: var(--space-3);
  }

  .v2-content-index nav {
    display: flex;
    padding-bottom: var(--space-2);
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .v2-content-index a {
    min-width: 190px;
    flex: 0 0 190px;
    padding-right: var(--space-4);
    border-top: 1px solid var(--gray-200);
  }

  .v2-content-grid--grid,
  .v2-content-grid--comparison,
  .v2-content-grid--status,
  .v2-content-grid--timeline {
    grid-template-columns: 1fr;
  }

  .v2-content-grid--comparison > div:nth-child(odd),
  .v2-content-grid--status > div:nth-child(odd),
  .v2-content-grid--grid > div:nth-child(odd),
  .v2-content-grid--timeline > li {
    border-right: 0;
  }

  .v2-content-closing {
    grid-template-columns: 1fr;
  }

  .v2-content-related__grid {
    grid-template-columns: 1fr;
  }

  .v2-content-related__card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .v2-content-related__card:last-child {
    border-bottom: 0;
  }

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

  .v2-capability-compact-card:nth-child(3n) {
    border-right: 1px solid var(--gray-200);
  }

  .v2-capability-compact-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 540px) {
  .v2-content-breadcrumbs {
    gap: var(--space-1) var(--space-2);
  }

  .v2-content-hero h1,
  .v2-shell[data-language="zh"] .v2-content-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .v2-shell[data-language="zh"] .v2-content-hero h1 {
    text-wrap: wrap;
  }

  .v2-shell[data-language="zh"]
    .v2-content-page[data-page-slug="delivery"]
    .v2-content-hero
    h1 {
    font-size: clamp(38px, 10.3vw, 46px);
  }

  .v2-content-hero__lead {
    font-size: var(--text-body);
  }

  .v2-content-hero__actions,
  .v2-content-closing__actions {
    display: grid;
  }

  .v2-content-action {
    width: 100%;
  }

  .v2-content-section__header,
  .v2-content-card,
  .v2-capability-cluster > header,
  .v2-capability-domain summary,
  .v2-capability-domain-list,
  .v2-capability-domain__gate,
  .v2-capability-compact-card {
    padding: var(--space-5);
  }

  .v2-content-section__header h2,
  .v2-capability-governance h2 {
    font-size: 32px;
  }

  .v2-content-closing {
    width: calc(100% - (2 * var(--space-4)));
    padding: var(--space-6);
  }

  .v2-content-closing h2 {
    font-size: 34px;
  }

  .v2-capability-domain summary {
    grid-template-columns: 42px minmax(0, 1fr) 20px;
  }

  .v2-capability-domain__body,
  .v2-capability-compact-grid,
  .v2-capability-governance {
    grid-template-columns: 1fr;
  }

  .v2-capability-domain-list {
    border-right: 0;
  }
}

/* Service-unit decision pages */

.v2-sku-page {
  background: var(--v4-surface-subtle);
}

.v2-sku-hero-brief {
  border: 1px solid rgba(143, 178, 240, 0.24);
  border-top: 3px solid var(--amber-400);
  background: rgba(3, 20, 47, 0.74);
}

.v2-sku-hero-brief > div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: var(--space-2) var(--space-3);
  padding: var(--space-5);
  border-bottom: 1px solid rgba(143, 178, 240, 0.18);
}

.v2-sku-hero-brief > div:last-child {
  border-bottom: 0;
}

.v2-sku-hero-brief svg {
  grid-row: 1 / span 2;
  color: var(--amber-400);
}

.v2-sku-hero-brief span {
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.v2-sku-hero-brief strong {
  color: #fff;
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
  line-height: 1.6;
}

.v2-sku-content {
  display: grid;
  width: min(100%, var(--v4-content-max));
  gap: var(--space-8);
  margin: 0 auto;
  padding: var(--v4-section-space) var(--v4-gutter);
}

.v2-sku-section {
  scroll-margin-top: calc(var(--v4-header-height) + 72px);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--blue-700);
  background: #fff;
  box-shadow: 0 18px 56px rgba(6, 31, 71, 0.055);
}

.v2-sku-section--soft {
  background: var(--blue-50);
}

.v2-sku-section--dark {
  border-color: var(--blue-800);
  border-top-color: var(--amber-400);
  background: var(--blue-950);
  color: #fff;
}

.v2-sku-section__header {
  max-width: 900px;
  padding: clamp(var(--space-7), 5vw, var(--space-12));
}

.v2-sku-section__header h2 {
  margin: var(--space-4) 0 0;
  color: var(--blue-950);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.v2-sku-section--dark .v2-kicker {
  color: var(--amber-400);
}

.v2-sku-section--dark .v2-sku-section__header h2 {
  color: #fff;
}

.v2-sku-scope-grid,
.v2-sku-composition-grid,
.v2-sku-verification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--gray-200);
}

.v2-sku-list-card,
.v2-sku-composition-grid > section,
.v2-sku-verification-grid > section {
  padding: clamp(var(--space-6), 4vw, var(--space-9));
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.v2-sku-list-card:nth-child(even),
.v2-sku-composition-grid > section:nth-child(even),
.v2-sku-verification-grid > section:nth-child(even) {
  border-right: 0;
}

.v2-sku-list-card.is-amber {
  background: var(--amber-50);
}

.v2-sku-list-card h3,
.v2-sku-composition-grid h3,
.v2-sku-verification-grid h3,
.v2-sku-graph h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: var(--text-title3);
  line-height: 1.25;
}

.v2-sku-list-card ul,
.v2-sku-composition-grid ul,
.v2-sku-verification-grid ul {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
}

.v2-sku-list-card li {
  position: relative;
  padding-left: var(--space-5);
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-sku-list-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  content: "";
}

.v2-sku-list-card.is-amber li::before {
  background: var(--amber-600);
}

.v2-sku-composition-grid li {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(150, 164, 188, 0.2);
  color: var(--gray-700);
  font-size: var(--text-caption);
  line-height: 1.5;
}

.v2-sku-composition-grid li span {
  flex: 0 0 40px;
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
}

.v2-sku-composition-grid section > p {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-5) 0 0;
  color: var(--gray-700);
  font-size: var(--text-caption);
  line-height: 1.65;
}

.v2-sku-composition-grid section > p strong {
  color: var(--blue-900);
}

.v2-sku-section--dark .v2-sku-verification-grid {
  border-color: rgba(143, 178, 240, 0.18);
}

.v2-sku-section--dark .v2-sku-verification-grid > section {
  border-color: rgba(143, 178, 240, 0.18);
}

.v2-sku-verification-grid h3,
.v2-sku-verification-grid h4 {
  color: #fff;
}

.v2-sku-verification-grid > section > ul:not(.v2-sku-states) li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--blue-100);
  font-size: var(--text-caption);
  line-height: 1.65;
}

.v2-sku-verification-grid li svg {
  flex: 0 0 auto;
  color: var(--amber-400);
}

.v2-sku-verification-grid dl {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0 0;
}

.v2-sku-verification-grid dl > div {
  padding: var(--space-4);
  border: 1px solid rgba(143, 178, 240, 0.18);
  background: rgba(6, 31, 71, 0.52);
}

.v2-sku-verification-grid dt {
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
}

.v2-sku-verification-grid dd {
  margin: var(--space-2) 0 0;
  color: var(--blue-100);
  font-size: var(--text-caption);
  line-height: 1.65;
}

.v2-sku-verification-grid h4 {
  margin: var(--space-6) 0 0;
  font-size: var(--text-footnote);
}

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

.v2-sku-states li {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4);
  border: 1px solid rgba(143, 178, 240, 0.18);
  background: rgba(6, 31, 71, 0.52);
}

.v2-sku-states span {
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: var(--weight-bold);
}

.v2-sku-states strong {
  color: #fff;
  font-size: var(--text-caption);
}

.v2-sku-states small {
  color: var(--blue-200);
  font-size: var(--text-caption2);
  line-height: 1.55;
}

.v2-sku-human-gate {
  display: flex;
  gap: var(--space-4);
  margin: clamp(var(--space-6), 4vw, var(--space-9));
  padding: var(--space-6);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-left: 4px solid var(--amber-400);
  background: rgba(92, 52, 0, 0.22);
}

.v2-sku-human-gate svg {
  flex: 0 0 auto;
  color: var(--amber-400);
}

.v2-sku-human-gate strong {
  color: var(--amber-300);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v2-sku-human-gate p {
  margin: var(--space-2) 0 0;
  color: var(--blue-100);
  font-size: var(--text-footnote);
  line-height: 1.68;
}

.v2-sku-graph {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: var(--space-5);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  border-top: 1px solid var(--gray-200);
}

.v2-sku-graph > svg {
  color: var(--blue-600);
}

.v2-sku-graph section {
  display: grid;
  gap: var(--space-3);
}

.v2-sku-graph section > p {
  margin: 0;
  padding: var(--space-5);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: var(--text-caption);
}

.v2-sku-graph a {
  display: grid;
  min-height: 72px;
  align-items: center;
  grid-template-columns: 58px minmax(0, 1fr) 20px;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  transition:
    border-color var(--v4-duration-fast) ease-out,
    background var(--v4-duration-fast) ease-out;
}

.v2-sku-graph a:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
}

.v2-sku-graph a span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
}

.v2-sku-graph a strong {
  color: var(--blue-950);
  font-size: var(--text-caption);
  line-height: 1.45;
}

.v2-sku-graph a svg {
  color: var(--blue-600);
}

.v2-sku-boundary {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  border: 1px solid var(--amber-300);
  border-left: 4px solid var(--amber-600);
  background: var(--amber-50);
}

.v2-sku-boundary svg {
  flex: 0 0 auto;
  color: var(--amber-700);
}

.v2-sku-boundary p {
  margin: 0;
  color: var(--amber-900);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

@media (max-width: 820px) {
  .v2-sku-scope-grid,
  .v2-sku-composition-grid,
  .v2-sku-verification-grid {
    grid-template-columns: 1fr;
  }

  .v2-sku-list-card,
  .v2-sku-composition-grid > section,
  .v2-sku-verification-grid > section {
    border-right: 0;
  }

  .v2-sku-graph {
    grid-template-columns: 1fr;
  }

  .v2-sku-graph > svg {
    transform: rotate(90deg);
  }
}

@media (max-width: 540px) {
  .v2-sku-section__header,
  .v2-sku-list-card,
  .v2-sku-composition-grid > section,
  .v2-sku-verification-grid > section,
  .v2-sku-graph {
    padding: var(--space-5);
  }

  .v2-sku-section__header h2 {
    font-size: 32px;
  }

  .v2-sku-states {
    grid-template-columns: 1fr;
  }

  .v2-market-card-footer-actions {
    grid-template-columns: 1fr;
  }
}

/* Fusion candidate: Goal Studio state drives Delivery Atlas and the service system. */

.v2-fusion-page {
  background: var(--gray-50);
  color: var(--blue-950);
}

.v2-fusion-kicker {
  margin: 0;
  color: var(--blue-700);
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.v2-fusion-hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(143, 178, 240, 0.2);
  background: #061d47;
  color: #fff;
}

.v2-fusion-hero__inner {
  width: min(100%, var(--v4-page-max));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 104px) var(--v4-gutter) var(--space-12);
}

.v2-fusion-hero__heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.78fr);
  gap: clamp(var(--space-10), 7vw, 112px);
}

.v2-fusion-hero .v2-fusion-kicker,
.v2-fusion-atlas .v2-fusion-kicker {
  color: var(--amber-300);
}

.v2-fusion-hero h1 {
  max-width: 840px;
  margin: var(--space-5) 0 0;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.v2-shell[data-language="zh"] .v2-fusion-hero h1 {
  font-size: clamp(54px, 5.6vw, 84px);
}

.v2-fusion-hero h1 span,
.v2-fusion-hero h1 strong {
  display: block;
}

.v2-fusion-hero h1 strong {
  color: var(--amber-400);
  font-weight: inherit;
}

.v2-fusion-hero h1 .v2-fusion-title-nowrap {
  display: inline;
  white-space: nowrap;
}

.v2-fusion-hero__intro > p:first-child {
  margin: 0;
  color: var(--blue-100);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.7;
}

.v2-fusion-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-7);
}

.v2-fusion-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-6);
  border: 1px solid rgba(143, 178, 240, 0.48);
  border-radius: var(--v4-radius-control);
  color: #fff;
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-fusion-action:hover {
  border-color: var(--blue-200);
  background: rgba(228, 237, 252, 0.08);
}

.v2-shell .v2-fusion-action.is-primary {
  border-color: var(--amber-400);
  background: var(--amber-400);
  color: var(--amber-900);
}

.v2-shell .v2-fusion-action.is-primary:hover {
  border-color: var(--amber-300);
  background: var(--amber-300);
}

.v2-fusion-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.v2-fusion-hero__note {
  margin: var(--space-5) 0 0;
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
}

.v2-fusion-atlas {
  margin-top: clamp(var(--space-12), 6vw, var(--space-20));
  border: 1px solid rgba(143, 178, 240, 0.28);
  background: #03142f;
}

.v2-fusion-atlas > header {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.4fr);
  gap: var(--space-8);
  padding: var(--space-7);
  border-bottom: 1px solid rgba(143, 178, 240, 0.22);
}

.v2-fusion-atlas > header .v2-fusion-kicker {
  grid-column: 1 / -1;
}

.v2-fusion-atlas h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.5vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.v2-fusion-atlas > header > p:last-child {
  margin: 0;
  color: var(--blue-200);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-fusion-atlas__route {
  display: flex;
  align-items: stretch;
  padding: var(--space-5);
  overflow-x: auto;
  scrollbar-width: thin;
}

.v2-fusion-atlas__step-wrap {
  display: flex;
  min-width: 0;
  align-items: center;
  flex: 1 1 0;
}

.v2-fusion-atlas__step {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 168px;
  flex: 1 1 auto;
  align-items: flex-start;
  flex-direction: column;
  padding: var(--space-5);
  border: 1px solid rgba(143, 178, 240, 0.22);
  border-radius: var(--v4-radius-control);
  background: rgba(16, 49, 103, 0.45);
  color: var(--blue-100);
  cursor: pointer;
  text-align: left;
}

.v2-fusion-atlas__step:hover {
  border-color: var(--blue-300);
}

.v2-fusion-atlas__step.is-current {
  border-color: var(--amber-400);
  background: var(--amber-400);
  color: var(--amber-900);
}

.v2-fusion-atlas__step.is-earlier {
  border-color: rgba(143, 178, 240, 0.42);
  background: rgba(16, 49, 103, 0.72);
}

.v2-fusion-atlas__step > span {
  font-family: var(--font-mono);
  font-size: var(--text-caption2);
  font-weight: var(--weight-bold);
}

.v2-fusion-atlas__step > strong {
  margin-top: var(--space-4);
  font-size: var(--text-subheadline);
  line-height: 1.25;
}

.v2-fusion-atlas__step > small {
  margin-top: var(--space-2);
  color: currentColor;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.78;
}

.v2-fusion-atlas__step > em {
  margin-top: auto;
  padding-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v2-fusion-atlas__arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0 var(--space-2);
  color: var(--blue-400);
}

.v2-fusion-atlas__feedback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: 0;
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid rgba(143, 178, 240, 0.2);
  color: var(--blue-200);
  font-size: var(--text-caption);
  text-align: center;
}

.v2-fusion-atlas__feedback svg {
  color: var(--amber-400);
}

.v2-fusion-truth {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}

.v2-fusion-truth li {
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(143, 178, 240, 0.28);
  color: var(--blue-200);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.v2-fusion-studio,
.v2-fusion-system,
.v2-fusion-trust,
.v2-fusion-closing {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: clamp(80px, 8vw, 128px) var(--v4-gutter);
}

.v2-fusion-studio {
  scroll-margin-top: calc(var(--v4-header-height) + 24px);
}

.v2-fusion-section-heading {
  max-width: 900px;
}

.v2-fusion-section-heading h2 {
  margin: var(--space-4) 0 0;
  color: var(--blue-950);
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.v2-fusion-section-heading > p:last-child {
  max-width: 760px;
  margin: var(--space-6) 0 0;
  color: var(--gray-600);
  font-size: var(--text-body);
  line-height: 1.75;
}

.v2-fusion-studio__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.78fr);
  margin-top: var(--space-12);
  border: 1px solid var(--gray-300);
  background: #fff;
}

.v2-fusion-choice-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-fusion-choice-workflow {
  min-width: 0;
}

@media (min-width: 1121px) {
  .v2-fusion-choice-workflow {
    position: sticky;
    top: calc(var(--v4-header-height) + var(--space-4));
    align-self: start;
  }
}

.v2-fusion-mobile-progress,
.v2-fusion-mobile-navigation {
  display: none;
}

.v2-fusion-choice-group {
  min-width: 0;
  margin: 0;
  padding: var(--space-6);
  border: 0;
  border-right: 1px solid var(--gray-200);
}

.v2-fusion-choice-group:last-child {
  border-right: 0;
}

.v2-fusion-choice-group legend {
  width: 100%;
  padding: 0 0 var(--space-5);
  color: var(--blue-950);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.035em;
}

.v2-fusion-choice-list {
  display: grid;
  gap: var(--space-3);
}

.v2-fusion-choice-list label {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: flex-start;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-10) var(--space-4) var(--space-4);
  border: 1px solid var(--gray-200);
  border-radius: var(--v4-radius-control);
  background: var(--gray-50);
  color: var(--blue-950);
  cursor: pointer;
  text-align: left;
}

.v2-fusion-choice-list label:hover {
  border-color: var(--blue-400);
}

.v2-fusion-choice-list label.is-selected {
  border-color: var(--blue-900);
  background: var(--blue-900);
  color: #fff;
}

.v2-fusion-choice-list input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.v2-fusion-choice-list label:has(input:focus-visible) {
  outline: 3px solid var(--amber-400);
  outline-offset: 3px;
}

.v2-fusion-choice-list label > span {
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
  line-height: 1.35;
}

.v2-fusion-choice-list label > small {
  color: currentColor;
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.72;
}

.v2-fusion-choice-list label > svg {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 18px;
  height: 18px;
  color: var(--amber-400);
}

.v2-fusion-result {
  min-width: 0;
  padding: var(--space-7);
  background: var(--blue-950);
  color: #fff;
}

.v2-fusion-result .v2-fusion-kicker {
  color: var(--amber-400);
}

.v2-fusion-result > h3 {
  margin: var(--space-4) 0 0;
  font-size: clamp(28px, 2.3vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.v2-fusion-result__primary {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-6);
  padding: var(--space-5);
  border: 1px solid var(--amber-500);
  background: rgba(92, 52, 0, 0.24);
}

.v2-fusion-result__primary > span,
.v2-fusion-result__primary > small {
  color: var(--amber-200);
  font-family: var(--font-mono);
  font-size: 12px;
}

.v2-fusion-result__primary > strong {
  font-size: var(--text-title3);
  line-height: 1.25;
}

.v2-fusion-result__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: var(--space-5) 0 0;
  border-top: 1px solid rgba(143, 178, 240, 0.22);
  border-left: 1px solid rgba(143, 178, 240, 0.22);
}

.v2-fusion-result__facts > div {
  padding: var(--space-4);
  border-right: 1px solid rgba(143, 178, 240, 0.22);
  border-bottom: 1px solid rgba(143, 178, 240, 0.22);
}

.v2-fusion-result dt,
.v2-fusion-result__services h4,
.v2-fusion-result__confirmation h4,
.v2-fusion-result__reasons h4 {
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v2-fusion-result dd {
  margin: var(--space-2) 0 0;
  color: var(--blue-50);
  font-size: 13px;
  line-height: 1.55;
}

.v2-fusion-result__services,
.v2-fusion-result__confirmation,
.v2-fusion-result__reasons,
.v2-fusion-result__methodology {
  margin-top: var(--space-6);
}

.v2-fusion-result__services h4,
.v2-fusion-result__confirmation h4,
.v2-fusion-result__reasons h4 {
  margin: 0 0 var(--space-3);
}

.v2-fusion-result__services ol,
.v2-fusion-result__confirmation ul {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-fusion-result__confirmation ul {
  padding-left: var(--space-4);
  list-style: square;
}

.v2-fusion-result__services li {
  display: grid;
  align-items: center;
  grid-template-columns: 30px 1fr;
  gap: var(--space-3);
  border-bottom: 1px solid rgba(143, 178, 240, 0.18);
}

.v2-fusion-result__services li > span {
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 12px;
}

.v2-fusion-result__services a {
  display: grid;
  min-height: 66px;
  align-content: center;
  gap: var(--space-1);
  color: #fff;
}

.v2-fusion-result__services a small {
  color: var(--blue-300);
  font-size: 12px;
  line-height: 1.4;
}

.v2-fusion-result__confirmation li {
  color: var(--blue-100);
  font-size: 13px;
  line-height: 1.55;
}

.v2-fusion-result__reasons > ul {
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-fusion-result__reasons li {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4);
  border: 1px solid rgba(143, 178, 240, 0.22);
  background: rgba(16, 49, 103, 0.5);
}

.v2-fusion-result__reasons li > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}

.v2-fusion-result__reasons li span,
.v2-fusion-result__reasons li small {
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 11px;
}

.v2-fusion-result__reasons li strong {
  color: #fff;
  font-size: 13px;
  text-align: right;
}

.v2-fusion-result__reasons li p {
  margin: 0;
  color: var(--blue-100);
  font-size: 13px;
  line-height: 1.55;
}

.v2-fusion-result__methodology {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4);
  border-left: 3px solid var(--amber-400);
  background: rgba(92, 52, 0, 0.2);
}

.v2-fusion-result__methodology > span {
  color: var(--amber-300);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.v2-fusion-result__methodology > strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
}

.v2-fusion-result__methodology > p {
  margin: 0;
  color: var(--blue-100);
  font-size: 12px;
  line-height: 1.65;
}

.v2-fusion-result__empty {
  display: grid;
  min-height: 100%;
  align-content: center;
  gap: var(--space-5);
}

.v2-fusion-result__empty > svg {
  width: 34px;
  height: 34px;
  color: var(--amber-400);
}

.v2-fusion-result__empty > h3 {
  margin: 0;
  font-size: clamp(28px, 2.3vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.v2-fusion-result__empty > p:not(.v2-fusion-kicker) {
  margin: 0;
  color: var(--blue-100);
  font-size: 14px;
  line-height: 1.7;
}

.v2-fusion-result__empty ol {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-fusion-result__empty li {
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(143, 178, 240, 0.24);
  color: var(--blue-200);
  font-size: 13px;
}

.v2-fusion-result__empty li.is-complete {
  border-color: var(--amber-500);
  color: var(--amber-200);
}

.v2-fusion-result__gate {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: var(--space-4);
  border: 1px solid var(--amber-500);
  color: var(--amber-100);
}

.v2-fusion-result__gate svg {
  flex: 0 0 auto;
  color: var(--amber-400);
}

.v2-fusion-result__gate div {
  display: grid;
  gap: var(--space-2);
}

.v2-fusion-result__gate span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v2-fusion-result__gate strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
}

.v2-fusion-result__all {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  color: var(--amber-300);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-fusion-system {
  width: 100%;
  max-width: none;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: #fff;
}

.v2-fusion-system > .v2-fusion-section-heading,
.v2-fusion-system__grid,
.v2-fusion-system__directory {
  width: min(100%, var(--v4-content-max));
  margin-right: auto;
  margin-left: auto;
}

.v2-fusion-system__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--space-12);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}

.v2-fusion-system__grid > article {
  min-width: 0;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.v2-fusion-system__grid header {
  min-height: 230px;
  padding: var(--space-6);
  background: var(--gray-50);
}

.v2-fusion-system__grid header > span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
}

.v2-fusion-system__grid h3 {
  margin: var(--space-5) 0 0;
  color: var(--blue-950);
  font-size: var(--text-title2);
  letter-spacing: -0.03em;
}

.v2-fusion-system__grid header p {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.65;
}

.v2-fusion-system__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-fusion-system__grid li + li {
  border-top: 1px solid var(--gray-200);
}

.v2-fusion-system__grid li a {
  display: grid;
  min-height: 66px;
  align-items: center;
  grid-template-columns: 38px 1fr 18px;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  color: var(--blue-950);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  line-height: 1.4;
}

.v2-fusion-system__grid li a:hover {
  background: var(--blue-50);
}

.v2-fusion-system__grid li a > span {
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 9px;
}

.v2-fusion-system__grid li a > svg {
  color: var(--blue-500);
}

.v2-fusion-system__directory {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  border: 1px solid var(--blue-300);
  color: var(--blue-800);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-fusion-system__directory:hover {
  background: var(--blue-50);
}

.v2-fusion-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--space-12);
  border-top: 1px solid var(--gray-300);
  border-left: 1px solid var(--gray-300);
}

.v2-fusion-trust__grid article {
  min-height: 260px;
  padding: var(--space-7);
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background: #fff;
}

.v2-fusion-trust__grid svg {
  width: 30px;
  height: 30px;
  color: var(--blue-600);
}

.v2-fusion-trust__grid h3 {
  margin: var(--space-8) 0 0;
  color: var(--blue-950);
  font-size: var(--text-title3);
}

.v2-fusion-trust__grid p {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.75;
}

.v2-fusion-closing {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: var(--space-12);
  padding-right: max(var(--v4-gutter), calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter)));
  padding-left: max(var(--v4-gutter), calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter)));
  background: #061d47;
  color: #fff;
}

.v2-fusion-closing .v2-fusion-kicker {
  color: var(--amber-400);
}

.v2-fusion-closing h2 {
  max-width: 820px;
  margin: var(--space-5) 0 0;
  font-size: clamp(42px, 4.2vw, 66px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.v2-fusion-closing p:last-child {
  max-width: 740px;
  margin: var(--space-6) 0 0;
  color: var(--blue-100);
  line-height: 1.75;
}

.v2-fusion-closing > .v2-fusion-actions {
  align-content: center;
  justify-content: flex-start;
  margin-top: 0;
}

@media (max-width: 1120px) {
  .v2-fusion-hero__heading,
  .v2-fusion-atlas > header,
  .v2-fusion-studio__layout,
  .v2-fusion-closing {
    grid-template-columns: 1fr;
  }

  .v2-fusion-hero__intro {
    max-width: 760px;
  }

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

@media (max-width: 820px) {
  .v2-concept-switcher {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v2-fusion-hero__inner {
    padding-top: var(--space-14);
  }

  .v2-fusion-hero h1 {
    font-size: clamp(52px, 13vw, 72px);
  }

  .v2-fusion-atlas__route {
    display: grid;
    gap: 0;
    padding: var(--space-5);
    overflow: visible;
  }

  .v2-fusion-atlas__step-wrap {
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .v2-fusion-atlas__step {
    width: 100%;
    min-height: 128px;
  }

  .v2-fusion-atlas__arrow {
    margin: var(--space-2) auto;
    transform: rotate(90deg);
  }

  .v2-fusion-choice-matrix {
    display: block;
  }

  .v2-fusion-choice-group {
    display: none;
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .v2-fusion-choice-group.is-mobile-current {
    display: block;
  }

  .v2-fusion-mobile-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    margin: 0;
    padding: var(--space-5) var(--space-6) 0;
    list-style: none;
  }

  .v2-fusion-mobile-progress button {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--gray-300);
    border-radius: var(--v4-radius-control);
    background: #fff;
    color: var(--blue-700);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: var(--weight-bold);
  }

  .v2-fusion-mobile-progress li.is-current button {
    border-color: var(--blue-900);
    background: var(--blue-900);
    color: #fff;
  }

  .v2-fusion-mobile-navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3);
    padding: 0 var(--space-6) var(--space-6);
  }

  .v2-fusion-mobile-navigation button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex: 1 1 0;
    padding: 0 var(--space-4);
    border: 1px solid var(--blue-900);
    border-radius: var(--v4-radius-control);
    background: var(--blue-900);
    color: #fff;
    cursor: pointer;
    font-weight: var(--weight-bold);
  }

  .v2-fusion-mobile-navigation button.is-secondary {
    border-color: var(--gray-300);
    background: #fff;
    color: var(--blue-800);
  }

  .v2-fusion-mobile-navigation button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
  }

  .v2-fusion-trust__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .v2-fusion-hero__inner,
  .v2-fusion-studio,
  .v2-fusion-trust,
  .v2-fusion-closing {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-fusion-hero h1 {
    font-size: clamp(46px, 12.5vw, 58px);
    text-wrap: wrap;
  }

  .v2-shell[data-language="zh"] .v2-fusion-hero h1 {
    font-size: clamp(44px, 12vw, 54px);
  }

  .v2-fusion-actions {
    display: grid;
    width: 100%;
  }

  .v2-fusion-action {
    width: 100%;
  }

  .v2-fusion-atlas {
    margin-right: calc(var(--space-5) * -1);
    margin-left: calc(var(--space-5) * -1);
    border-right: 0;
    border-left: 0;
  }

  .v2-fusion-atlas > header {
    padding: var(--space-5);
  }

  .v2-fusion-atlas h2,
  .v2-fusion-section-heading h2 {
    font-size: 36px;
  }

  .v2-fusion-truth {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .v2-fusion-truth li {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .v2-fusion-studio__layout {
    margin-right: calc(var(--space-5) * -1);
    margin-left: calc(var(--space-5) * -1);
  }

  .v2-fusion-choice-group,
  .v2-fusion-result {
    padding: var(--space-5);
  }

  .v2-fusion-mobile-progress {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-fusion-mobile-navigation {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-fusion-result__facts,
  .v2-fusion-system__grid {
    grid-template-columns: 1fr;
  }

  .v2-fusion-system {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-fusion-system__grid header {
    min-height: 0;
  }

  .v2-fusion-closing > .v2-fusion-actions {
    margin-top: var(--space-2);
  }
}

/*
 * v0.4.1 Editorial refinement
 * Preserve the adopted palette, type stack, content, and interaction model while
 * replacing repeated card lattices with evidence rails and editorial rhythm.
 */

.v2-shell-status-bar {
  min-height: 32px;
  background: var(--v4-canvas);
}

.v2-shell-status-inner {
  padding-top: 4px;
  padding-bottom: 4px;
}

.v2-shell-review-state > span,
.v2-shell-review-state > strong {
  font-family: var(--font-ui);
  letter-spacing: 0.015em;
  text-transform: none;
}

.v2-shell-header,
.v2-shell-header-inner {
  min-height: 72px;
}

.v2-shell-header.is-condensed,
.v2-shell-header.is-condensed .v2-shell-header-inner {
  min-height: 60px;
}

.v2-shell-header.is-condensed {
  box-shadow: var(--shadow-1);
}

.v2-shell-nav-trigger,
.v2-shell-utility-link {
  background: transparent;
}

.v2-shell-nav-trigger.is-active,
.v2-shell-nav-item.is-expanded .v2-shell-nav-trigger,
.v2-shell-utility-link.is-active {
  background: transparent;
}

.v2-shell-language-switch {
  background: transparent;
}

.v2-shell-footer-cta {
  grid-template-columns: 40px minmax(0, 1fr) minmax(230px, 0.34fr);
  border-bottom-color: var(--gray-300);
  background: var(--v4-surface-subtle);
}

.v2-shell-footer-cta__icon {
  width: 40px;
  height: 40px;
  border: 0;
  border-left: 2px solid var(--amber-500);
  background: transparent;
}

.v2-shell-footer-cta__copy > p:first-child,
.v2-shell-footer-directory-label,
.v2-shell-footer-group h2,
.v2-shell-footer-meta {
  letter-spacing: 0.025em;
}

.v2-shell-footer-cta__copy > p:first-child,
.v2-shell-footer-group h2 {
  font-family: var(--font-ui);
}

.v2-shell-footer-directory-label,
.v2-shell-footer-group h2 {
  text-transform: none;
}

.v2-shell-footer-inner {
  padding-top: clamp(var(--space-12), 6vw, var(--space-16));
}

.v2-shell-footer-directory-grid {
  gap: var(--space-8) clamp(var(--space-6), 3vw, var(--space-10));
}

.v2-shell-footer-group a {
  border-bottom-color: var(--blue-900);
}

.v2-fusion-kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.065em;
}

.v2-fusion-hero__inner {
  padding-top: clamp(58px, 6vw, 84px);
  padding-bottom: var(--space-10);
}

.v2-fusion-hero__heading {
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.72fr);
  gap: clamp(var(--space-10), 6vw, 88px);
}

.v2-fusion-hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 5.25vw, 76px);
  letter-spacing: -0.032em;
  line-height: 1.01;
  text-wrap: balance;
}

.v2-shell[data-language="zh"] .v2-fusion-hero h1 {
  font-size: clamp(52px, 5vw, 72px);
}

.v2-fusion-hero__intro > p:first-child {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}

.v2-fusion-hero__note {
  max-width: 640px;
  color: var(--blue-300);
  font-family: var(--font-ui);
  font-size: 12px;
}

.v2-fusion-atlas {
  margin-top: clamp(var(--space-12), 5vw, var(--space-16));
  border: 0;
  border-top: 1px solid var(--blue-700);
  border-bottom: 1px solid var(--blue-800);
  background: transparent;
}

.v2-fusion-atlas > header {
  grid-template-columns: minmax(250px, 0.72fr) minmax(360px, 1.28fr);
  padding: var(--space-6) 0 var(--space-5);
  border-bottom: 0;
}

.v2-fusion-atlas h2 {
  font-size: clamp(27px, 2.25vw, 36px);
  letter-spacing: -0.02em;
}

.v2-fusion-atlas__route {
  position: relative;
  padding: 36px 0 0;
  overflow: visible;
}

.v2-fusion-atlas__route::before {
  position: absolute;
  top: 41px;
  right: 5px;
  left: 5px;
  height: 1px;
  background: var(--blue-700);
  content: "";
}

.v2-fusion-atlas__step-wrap {
  position: relative;
  min-width: 172px;
  align-items: stretch;
}

.v2-fusion-atlas__step {
  min-height: 140px;
  padding: 34px var(--space-5) var(--space-5) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue-200);
  transition: color var(--v4-duration-fast) ease-out;
}

.v2-fusion-atlas__step::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--blue-300);
  border-radius: 50%;
  background: var(--v4-canvas);
  content: "";
  transition: background var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out,
    transform var(--v4-duration-fast) ease-out;
}

.v2-fusion-atlas__step:hover,
.v2-fusion-atlas__step.is-earlier {
  border-color: transparent;
  background: transparent;
  color: var(--v4-content-inverse);
}

.v2-fusion-atlas__step:hover::before,
.v2-fusion-atlas__step.is-earlier::before {
  background: var(--blue-300);
}

.v2-fusion-atlas__step.is-current {
  border-color: transparent;
  background: transparent;
  color: var(--v4-content-inverse);
}

.v2-fusion-atlas__step.is-current::before {
  border-color: var(--amber-400);
  background: var(--amber-400);
  transform: scale(1.2);
}

.v2-fusion-atlas__step > span,
.v2-fusion-atlas__step > em {
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
}

.v2-fusion-atlas__step > strong {
  margin-top: var(--space-3);
}

.v2-fusion-atlas__step > em {
  color: var(--blue-300);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  text-transform: none;
}

.v2-fusion-atlas__step:focus-visible,
.v2-market-goal-option:focus-visible {
  outline: 3px solid var(--amber-400);
  outline-offset: 4px;
}

.v2-fusion-atlas__step.is-current > em {
  color: var(--amber-300);
}

.v2-fusion-atlas__arrow {
  display: none;
}

.v2-fusion-atlas__feedback {
  justify-content: flex-start;
  padding: var(--space-4) 0;
  border-top-color: var(--blue-800);
  text-align: left;
}

.v2-fusion-truth {
  gap: 0;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--blue-800);
}

.v2-fusion-truth li {
  padding: 0;
  border: 0;
  color: var(--blue-300);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0;
}

.v2-fusion-truth li:not(:last-child)::after {
  margin: 0 var(--space-3);
  color: var(--blue-600);
  content: "/";
}

.v2-fusion-studio,
.v2-fusion-trust {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

.v2-fusion-system {
  padding-top: clamp(88px, 8vw, 120px);
  padding-bottom: clamp(88px, 8vw, 120px);
}

.v2-fusion-section-heading {
  max-width: 820px;
}

.v2-fusion-section-heading h2 {
  font-size: clamp(38px, 3.7vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.v2-fusion-section-heading > p:last-child {
  max-width: 700px;
  margin-top: var(--space-5);
}

.v2-fusion-studio__layout {
  margin-top: var(--space-10);
  border: 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  box-shadow: none;
}

.v2-fusion-choice-group {
  padding: var(--space-6) var(--space-5);
}

.v2-fusion-choice-group legend {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.015em;
}

.v2-fusion-choice-list {
  gap: 0;
}

.v2-fusion-choice-list label {
  min-height: 78px;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-9) var(--space-4) var(--space-3);
  border: 0;
  border-top: 1px solid var(--gray-200);
  border-radius: 0;
  background: transparent;
  transition: background var(--v4-duration-fast) ease-out,
    box-shadow var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out;
}

.v2-fusion-choice-list label:hover {
  border-color: var(--gray-200);
  background: var(--blue-50);
}

.v2-fusion-choice-list label.is-selected {
  border-color: var(--gray-200);
  background: var(--blue-50);
  color: var(--blue-950);
  box-shadow: inset 3px 0 0 var(--blue-900);
}

.v2-fusion-choice-list label > svg {
  color: var(--blue-500);
  opacity: 0.48;
}

.v2-fusion-choice-list label.is-selected > svg {
  color: var(--amber-600);
  opacity: 1;
}

.v2-fusion-result {
  padding: var(--space-8);
  background: var(--v4-canvas);
}

.v2-fusion-result__primary {
  padding: var(--space-5) 0 var(--space-5) var(--space-5);
  border: 0;
  border-left: 2px solid var(--amber-400);
  background: transparent;
}

.v2-fusion-result__facts {
  border-left: 0;
}

.v2-fusion-result__facts > div {
  padding: var(--space-4) var(--space-4) var(--space-4) 0;
  border-right: 0;
}

.v2-fusion-result dt,
.v2-fusion-result__services h4,
.v2-fusion-result__confirmation h4,
.v2-fusion-result__reasons h4 {
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
  text-transform: none;
}

.v2-fusion-result__reasons > ul {
  gap: 0;
}

.v2-fusion-result__reasons li {
  padding: var(--space-4) 0;
  border: 0;
  border-top: 1px solid var(--blue-800);
  background: transparent;
}

.v2-fusion-result__methodology {
  padding-right: 0;
  background: transparent;
}

.v2-fusion-result__empty li {
  padding: var(--space-3) 0;
  border: 0;
  border-top: 1px solid var(--blue-800);
}

.v2-fusion-result__empty li.is-complete {
  border-color: var(--blue-800);
  color: var(--amber-200);
}

.v2-fusion-result__gate {
  padding: var(--space-4) 0 var(--space-4) var(--space-4);
  border: 0;
  border-left: 2px solid var(--amber-400);
}

.v2-fusion-system__grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-12) clamp(var(--space-10), 6vw, 88px);
  margin-top: var(--space-12);
  border: 0;
}

.v2-fusion-system__grid > article {
  grid-column: span 7;
  border: 0;
  border-top: 1px solid var(--gray-300);
}

.v2-fusion-system__grid > article:nth-child(4n + 2),
.v2-fusion-system__grid > article:nth-child(4n + 3) {
  grid-column: span 5;
}

.v2-fusion-system__grid header {
  min-height: 0;
  padding: var(--space-6) 0 var(--space-5);
  background: transparent;
}

.v2-fusion-system__grid header > span,
.v2-fusion-system__grid li a > span {
  font-family: var(--font-ui);
  letter-spacing: 0.015em;
}

.v2-fusion-system__grid h3 {
  margin-top: var(--space-4);
}

.v2-fusion-system__grid ul {
  border-top: 1px solid var(--gray-200);
}

.v2-fusion-system__grid li a {
  min-height: 58px;
  padding-right: 0;
  padding-left: 0;
}

.v2-fusion-system__directory {
  min-height: 56px;
  justify-content: flex-start;
  padding: 0 var(--space-5);
  border-right: 0;
  border-left: 0;
}

.v2-fusion-trust__grid {
  gap: clamp(var(--space-8), 4vw, var(--space-12));
  border: 0;
}

.v2-fusion-trust__grid article {
  min-height: 220px;
  padding: var(--space-6) 0 0;
  border: 0;
  border-top: 1px solid var(--gray-300);
  background: transparent;
  transition: background var(--v4-duration-fast) ease-out,
    box-shadow var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out;
}

.v2-fusion-trust__grid svg {
  width: 24px;
  height: 24px;
}

.v2-fusion-trust__grid h3 {
  margin-top: var(--space-8);
}

.v2-fusion-closing {
  padding-top: clamp(80px, 7vw, 108px);
  padding-bottom: clamp(80px, 7vw, 108px);
}

.v2-fusion-closing h2 {
  font-size: clamp(38px, 3.6vw, 54px);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.v2-market-hero-inner {
  padding-top: clamp(var(--space-10), 5vw, 72px);
  padding-bottom: clamp(var(--space-10), 5vw, 64px);
}

.v2-market-hero h1 {
  max-width: 860px;
  font-size: clamp(48px, 4.65vw, 64px);
  letter-spacing: -0.032em;
  line-height: 1.03;
  text-wrap: balance;
}

.v2-market-title-line {
  display: block;
}

.v2-market-capability-map,
.v2-market-goal-studio {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

.v2-market-capability-map__heading h2,
.v2-market-section-heading h2 {
  font-size: clamp(36px, 3.55vw, 50px);
  letter-spacing: -0.028em;
  line-height: 1.1;
  text-wrap: balance;
}

.v2-market-capability-map__heading > p:first-child,
.v2-market-studio-context > div > p:first-child {
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  text-transform: none;
}

.v2-market-capability-map__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(var(--space-8), 4vw, var(--space-12));
  border: 0;
}

.v2-market-capability-map__grid li {
  min-height: 94px;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border: 0;
  border-top: 1px solid var(--gray-300);
  background: transparent;
}

.v2-market-capability-map__grid span {
  font-family: var(--font-ui);
  letter-spacing: 0.015em;
}

.v2-market-capability-map__grid strong {
  font-size: 14px;
}

.v2-market-capability-map__boundary {
  margin-top: var(--space-8);
  padding: var(--space-5) 0 var(--space-5) var(--space-5);
  border-top: 1px solid var(--gray-200);
  border-left-width: 2px;
  background: transparent;
}

.v2-market-studio-context {
  gap: clamp(var(--space-8), 4vw, var(--space-12));
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
  border-color: var(--gray-300);
  background: var(--v4-surface-subtle);
}

.v2-market-studio-context dl {
  gap: var(--space-6);
  border: 0;
}

.v2-market-studio-context dl > div {
  padding: var(--space-4) 0 0;
  border: 0;
  border-top: 1px solid var(--gray-300);
  background: transparent;
}

.v2-market-studio-context dt {
  font-family: var(--font-ui);
}

.v2-market-goal-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(var(--space-8), 5vw, var(--space-16));
  border: 0;
}

.v2-market-goal-option {
  min-height: 132px;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  grid-template-rows: 1fr;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border: 0;
  border-top: 1px solid var(--gray-300);
  background: transparent;
}

.v2-market-goal-option:last-child {
  grid-column: 1 / -1;
}

.v2-market-goal-option:hover {
  background: transparent;
  color: var(--blue-950);
  box-shadow: inset 2px 0 0 var(--blue-300);
}

.v2-market-goal-option--active,
.v2-market-goal-option--active:hover {
  border-color: var(--gray-300);
  background: var(--blue-50);
  color: var(--blue-950);
  box-shadow: inset 4px 0 0 var(--blue-900);
}

.v2-market-goal-option--active strong {
  color: var(--blue-900);
  font-weight: var(--weight-bold);
}

.v2-market-goal-option--active .v2-market-goal-option-copy span {
  color: var(--gray-600);
}

.v2-market-goal-option--active .v2-market-goal-number,
.v2-market-goal-option--active > svg {
  color: var(--amber-700);
}

.v2-market-goal-option-copy {
  gap: var(--space-2);
}

.v2-market-directory {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

.v2-market-filters {
  padding: var(--space-5) 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
}

.v2-market-filter-option,
.v2-market-clear-filters {
  border: 0;
  border-bottom: 1px solid var(--gray-300);
  border-radius: 0;
  background: transparent;
}

.v2-market-filter-option:hover,
.v2-market-clear-filters:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
}

.v2-market-filter-option--active,
.v2-market-filter-option--active:hover {
  border-color: var(--blue-900);
  background: var(--blue-900);
  color: var(--v4-content-inverse);
}

.v2-market-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-12) clamp(var(--space-10), 5vw, var(--space-16));
}

.v2-market-card {
  min-height: 0;
  border: 0;
  border-top: 1px solid var(--gray-300);
  background: transparent;
  transition: border-color var(--v4-duration-fast) ease-out;
}

.v2-market-card:hover,
.v2-market-card--selected {
  border-color: var(--blue-700);
  box-shadow: none;
}

.v2-market-card-header {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
}

.v2-market-card-body {
  padding: var(--space-6) 0;
}

.v2-market-card-domains {
  gap: var(--space-3);
}

.v2-market-card-domains span {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.015em;
}

.v2-market-card-domains span:not(:last-child)::after {
  margin-left: var(--space-3);
  color: var(--gray-400);
  content: "/";
}

.v2-market-card-outcome {
  padding: var(--space-4) 0 var(--space-4) var(--space-5);
  border-left-width: 2px;
  background: transparent;
}

.v2-market-card-outcome > span {
  font-family: var(--font-ui);
  letter-spacing: 0.025em;
  text-transform: none;
}

.v2-market-card-footer {
  padding: var(--space-5) 0 0;
  background: transparent;
}

.v2-market-detail {
  border-right: 0;
  border-left: 0;
  box-shadow: none;
}

.v2-market-detail-code,
.v2-market-detail-status {
  background: transparent;
}

.v2-market-detail-title {
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -0.03em;
}

.v2-market-detail-domain-list li,
.v2-market-detail-tags li {
  border: 0;
  border-top: 1px solid var(--gray-200);
  background: transparent;
}

@media (max-width: 1120px) {
  .v2-fusion-hero__heading,
  .v2-fusion-atlas > header {
    grid-template-columns: 1fr;
  }

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

  .v2-fusion-system__grid > article,
  .v2-fusion-system__grid > article:nth-child(4n + 2),
  .v2-fusion-system__grid > article:nth-child(4n + 3) {
    grid-column: auto;
  }

  .v2-fusion-system__grid > article:first-child,
  .v2-fusion-system__grid > article:last-child {
    grid-column: 1 / -1;
  }

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

  .v2-market-goal-option:last-child {
    grid-column: auto;
  }

  .v2-shell-footer-cta {
    grid-template-columns: 40px minmax(0, 1fr);
  }
}

@media (min-width: 821px) and (max-width: 1240px) {
  .v2-fusion-atlas__route {
    overflow-x: auto;
    scrollbar-width: thin;
  }
}

@media (max-width: 820px) {
  .v2-shell-header,
  .v2-shell-header-inner,
  .v2-shell-header.is-condensed,
  .v2-shell-header.is-condensed .v2-shell-header-inner {
    min-height: 64px;
  }

  .v2-fusion-hero__inner {
    padding-top: var(--space-10);
  }

  .v2-fusion-hero h1,
  .v2-shell[data-language="zh"] .v2-fusion-hero h1 {
    max-width: 680px;
    font-size: clamp(44px, 10vw, 58px);
  }

  .v2-fusion-atlas__route {
    display: grid;
    gap: 0;
    padding: var(--space-4) 0 0 30px;
    overflow: visible;
  }

  .v2-fusion-atlas__route::before {
    top: 28px;
    bottom: 28px;
    left: 5px;
    width: 1px;
    height: auto;
  }

  .v2-fusion-atlas__step-wrap {
    display: block;
    min-width: 0;
  }

  .v2-fusion-atlas__step {
    min-height: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: var(--space-4) 0 var(--space-5) var(--space-2);
  }

  .v2-fusion-atlas__step::before {
    top: 20px;
    left: -30px;
  }

  .v2-fusion-atlas__step > span {
    grid-column: 1;
    grid-row: 1 / span 3;
    padding-top: 2px;
  }

  .v2-fusion-atlas__step > strong,
  .v2-fusion-atlas__step > small,
  .v2-fusion-atlas__step > em {
    grid-column: 2;
    margin-top: 0;
  }

  .v2-fusion-atlas__step > small {
    margin-top: var(--space-1);
  }

  .v2-fusion-atlas__step > em {
    margin-top: var(--space-2);
    padding-top: 0;
  }

  .v2-fusion-truth {
    display: flex;
    grid-template-columns: none;
  }

  .v2-fusion-truth li {
    display: inline;
    min-height: 0;
  }

  .v2-fusion-choice-matrix,
  .v2-fusion-system__grid,
  .v2-market-capability-map__grid,
  .v2-market-goal-options,
  .v2-market-card-grid {
    grid-template-columns: 1fr;
  }

  .v2-fusion-system__grid,
  .v2-market-card-grid {
    gap: var(--space-10);
  }

  .v2-market-goal-option:last-child {
    grid-column: auto;
  }

  .v2-market-studio-context dl {
    gap: var(--space-5);
  }
}

@media (max-width: 540px) {
  .v2-shell-status-inner {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-fusion-hero h1,
  .v2-shell[data-language="zh"] .v2-fusion-hero h1 {
    font-size: clamp(39px, 10.8vw, 48px);
    line-height: 1.04;
  }

  .v2-fusion-atlas {
    margin-right: 0;
    margin-left: 0;
  }

  .v2-fusion-atlas > header {
    padding-right: 0;
    padding-left: 0;
  }

  .v2-fusion-atlas h2,
  .v2-fusion-section-heading h2 {
    font-size: 34px;
  }

  .v2-fusion-studio__layout {
    margin-right: 0;
    margin-left: 0;
    box-shadow: none;
  }

  .v2-fusion-result {
    padding: var(--space-6) var(--space-5);
  }

  .v2-market-capability-map__boundary,
  .v2-market-studio-context {
    grid-template-columns: 1fr;
  }

  .v2-market-card-footer-actions {
    grid-template-columns: 1fr;
  }

  .v2-shell-footer-cta__icon {
    display: none;
  }

  .v2-shell-footer-cta {
    grid-template-columns: 1fr;
  }
}

/* Shared editorial language for the official content routes. */

.v2-content-hero,
.v2-content-page--studio .v2-content-hero {
  background: var(--v4-canvas);
  background-size: auto;
}

.v2-content-hero::after {
  display: none;
}

.v2-content-hero__inner {
  padding-bottom: clamp(64px, 7vw, 96px);
}

.v2-content-hero__grid {
  margin-top: clamp(var(--space-8), 5vw, 72px);
}

.v2-content-hero__copy {
  max-width: 860px;
}

.v2-content-hero h1,
.v2-shell[data-language="zh"] .v2-content-hero h1 {
  max-width: 820px;
  font-size: clamp(46px, 4.65vw, 68px);
  letter-spacing: -0.032em;
  line-height: 1.04;
}

.v2-content-page[data-page-slug="services"] .v2-content-hero__copy {
  max-width: 780px;
}

.v2-content-page[data-page-slug="audiences"] .v2-content-hero {
  background: var(--v4-canvas-raised);
}

.v2-content-hero__lead {
  max-width: 720px;
  margin-top: var(--space-6);
  font-size: clamp(17px, 1.4vw, 20px);
}

.v2-content-breadcrumbs,
.v2-content-index p,
.v2-content-card__index,
.v2-content-card__status,
.v2-capability-cluster > header > span,
.v2-capability-compact-card > span {
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
}

.v2-content-hero__status {
  width: auto;
  padding: var(--space-3) 0 var(--space-3) var(--space-4);
  border: 0;
  border-left: 2px solid var(--amber-400);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0;
}

.v2-content-body {
  padding-top: clamp(var(--space-12), 6vw, var(--space-16));
}

.v2-content-index > div {
  border-top-width: 1px;
}

.v2-content-index p,
.v2-content-card__index {
  text-transform: none;
}

.v2-content-sections,
.v2-capability-directory {
  gap: clamp(var(--space-12), 7vw, 104px);
}

.v2-content-section {
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--gray-300);
  background: transparent;
  box-shadow: none;
}

.v2-content-section--soft,
.v2-content-section--blue,
.v2-content-section--amber {
  background: transparent;
}

.v2-content-section--blue {
  border-top-color: var(--blue-300);
}

.v2-content-section--amber {
  border-top-color: var(--amber-400);
}

.v2-content-section--dark {
  border-top: 0;
  background: var(--v4-canvas);
}

.v2-content-section__header {
  padding: var(--space-7) 0 var(--space-8);
}

.v2-content-section--dark .v2-content-section__header {
  padding: clamp(var(--space-7), 5vw, var(--space-12));
}

.v2-content-section__header h2,
.v2-capability-governance h2 {
  font-size: clamp(32px, 3.25vw, 48px);
  letter-spacing: -0.028em;
}

.v2-content-grid {
  gap: 0 clamp(var(--space-8), 5vw, var(--space-16));
  border-top-color: var(--gray-300);
}

.v2-content-grid--comparison > div,
.v2-content-grid--status > div,
.v2-content-grid--grid > div,
.v2-content-grid--comparison > div:nth-child(odd),
.v2-content-grid--status > div:nth-child(odd),
.v2-content-grid--grid > div:nth-child(odd),
.v2-content-grid--timeline > li {
  border-right: 0;
  border-bottom: 0;
  border-top: 1px solid var(--gray-200);
}

.v2-content-grid--timeline {
  gap: 0 clamp(var(--space-6), 4vw, var(--space-12));
}

.v2-content-card {
  padding: var(--space-6) 0 var(--space-8);
}

.v2-content-section--dark .v2-content-card {
  padding-right: clamp(var(--space-6), 4vw, var(--space-9));
  padding-left: clamp(var(--space-6), 4vw, var(--space-9));
}

.v2-content-card__status {
  max-width: 190px;
  padding: 2px 0 2px var(--space-2);
  border: 0;
  border-left: 2px solid var(--blue-300);
  background: transparent;
  font-size: 10px;
  text-align: left;
}

.v2-content-card__status.is-human-gate,
.v2-content-card__status.is-unverified,
.v2-content-card__status.is-blocked {
  border-color: var(--amber-400);
  background: transparent;
}

.v2-content-card__status.is-verified,
.v2-content-card__status.is-approved {
  border-color: var(--blue-300);
  background: transparent;
}

.v2-content-card__boundary {
  padding: var(--space-4) 0 var(--space-4) var(--space-4);
  border-left-width: 2px;
  background: transparent;
}

.v2-content-section__note {
  margin-right: 0;
  margin-left: 0;
  padding: var(--space-4) 0 var(--space-4) var(--space-5);
  border: 0;
  border-left: 2px solid var(--blue-600);
  background: transparent;
}

.v2-content-closing {
  border-top-width: 2px;
  box-shadow: none;
}

.v2-content-closing__icon {
  width: 48px;
  height: 48px;
  border: 0;
  border-left: 2px solid var(--amber-400);
}

.v2-content-closing h2 {
  font-size: clamp(34px, 3.65vw, 54px);
  letter-spacing: -0.03em;
}

.v2-content-closing small {
  font-family: var(--font-ui);
  letter-spacing: 0.015em;
  text-transform: none;
}

.v2-content-related h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  letter-spacing: -0.028em;
}

.v2-content-related__grid {
  gap: 0 clamp(var(--space-8), 4vw, var(--space-12));
  border: 0;
  background: transparent;
}

.v2-content-related__card,
.v2-content-related__card:last-child {
  min-height: 230px;
  padding: var(--space-6) 0;
  border: 0;
  border-top: 1px solid var(--gray-300);
}

.v2-content-related__card:hover {
  background: transparent;
  color: inherit;
}

.v2-content-related__card:hover > span,
.v2-content-related__card:hover > svg {
  color: var(--blue-700);
}

.v2-content-related__card:hover > p {
  color: var(--gray-600);
}

.v2-content-related__card:hover > strong {
  color: var(--blue-950);
}

.v2-capability-clusters {
  border-top-color: var(--gray-300);
}

.v2-capability-cluster {
  grid-template-columns: minmax(210px, 0.5fr) minmax(0, 1.5fr);
}

.v2-capability-cluster > header {
  padding: var(--space-7) var(--space-8) var(--space-7) 0;
  border-right: 0;
  background: transparent;
}

.v2-capability-domain {
  background: transparent;
}

.v2-capability-domain summary {
  padding-right: 0;
  background: transparent;
}

.v2-capability-compact-grid {
  gap: 0 clamp(var(--space-8), 4vw, var(--space-12));
  border-top-color: var(--gray-300);
}

.v2-capability-compact-card,
.v2-capability-compact-card:nth-child(3n) {
  padding: var(--space-6) 0;
  border-right: 0;
}

@media (max-width: 1120px) {
  .v2-capability-cluster {
    grid-template-columns: 1fr;
  }

  .v2-capability-cluster > header {
    padding-right: 0;
  }
}

@media (max-width: 820px) {
  .v2-content-hero__inner {
    padding-bottom: var(--space-12);
  }

  .v2-content-hero__grid {
    margin-top: var(--space-8);
  }

  .v2-content-body {
    padding-top: var(--space-8);
  }

  .v2-content-grid,
  .v2-content-related__grid,
  .v2-capability-compact-grid {
    grid-template-columns: 1fr;
  }

  .v2-content-related__card,
  .v2-content-related__card:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 0;
  }
}

@media (max-width: 540px) {
  .v2-content-hero h1,
  .v2-shell[data-language="zh"] .v2-content-hero h1 {
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 1.07;
  }

  .v2-content-section__header {
    padding-right: 0;
    padding-left: 0;
  }

  .v2-content-section--dark .v2-content-section__header,
  .v2-content-section--dark .v2-content-card {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-content-card {
    padding-right: 0;
    padding-left: 0;
  }

  .v2-capability-cluster > header,
  .v2-capability-domain summary,
  .v2-capability-compact-card {
    padding-right: 0;
    padding-left: 0;
  }
}

/* Demand-first service-market navigation. */

.v2-market-demand-navigator {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: clamp(72px, 7vw, 104px) var(--v4-gutter);
  scroll-margin-top: calc(var(--v4-header-height) + var(--space-4));
}

.v2-market-demand-eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--blue-700) !important;
  font-family: var(--font-ui);
  font-size: 11px !important;
  font-weight: var(--weight-bold);
  letter-spacing: 0.045em;
}

.v2-market-demand-search {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-10);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.v2-market-demand-search > label {
  color: var(--blue-900);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-market-demand-search__field {
  display: grid;
  min-height: 68px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  border-bottom: 2px solid var(--blue-900);
  color: var(--blue-700);
}

.v2-market-demand-search__field input {
  width: 100%;
  min-width: 0;
  height: 66px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-950);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: var(--weight-medium);
  outline: 0;
}

.v2-market-demand-search__field input::placeholder {
  color: var(--gray-500);
  opacity: 1;
}

.v2-market-demand-search__field:focus-within {
  border-bottom-color: var(--amber-500);
}

.v2-market-demand-search__field:focus-within > svg {
  color: var(--amber-700);
}

.v2-market-demand-search__field > button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--blue-800);
  cursor: pointer;
}

.v2-market-demand-search__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.v2-market-demand-search__meta small {
  max-width: 760px;
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.6;
}

.v2-market-demand-search__meta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: var(--space-2);
  color: var(--blue-800);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
  white-space: nowrap;
}

.v2-market-demand-all {
  margin-top: var(--space-8);
}

.v2-market-demand-all button {
  display: grid;
  width: 100%;
  min-height: 64px;
  grid-template-columns: 48px minmax(0, 1fr) auto 20px;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border: 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background: transparent;
  color: var(--blue-950);
  cursor: pointer;
  text-align: left;
}

.v2-market-demand-all button.is-active {
  background: var(--blue-50);
  box-shadow: inset 4px 0 0 var(--blue-900);
}

.v2-market-demand-all button > span {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: var(--weight-bold);
}

.v2-market-demand-all button > small {
  color: var(--gray-600);
  font-size: 12px;
}

.v2-market-demand-all button > svg {
  color: var(--blue-600);
}

.v2-market-demand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-12) clamp(var(--space-8), 4vw, var(--space-12));
  margin-top: var(--space-10);
}

.v2-market-demand-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 330px;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: var(--space-4);
  padding: var(--space-6) 0 0;
  border: 0;
  border-top: 1px solid var(--gray-300);
  background: transparent;
  color: var(--blue-950);
  cursor: pointer;
  text-align: left;
  transition: background var(--v4-duration-fast) ease-out,
    box-shadow var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out;
}

.v2-market-demand-card:hover {
  border-top-color: var(--blue-600);
  background: var(--blue-50);
  box-shadow: inset 2px 0 0 var(--blue-300);
}

.v2-market-demand-card.is-active {
  border-top-color: var(--blue-900);
  background: var(--blue-50);
  box-shadow: inset 4px 0 0 var(--blue-900);
}

.v2-market-demand-card:focus-visible,
.v2-market-demand-all button:focus-visible {
  outline: 3px solid var(--blue-800);
  outline-offset: 4px;
}

.v2-market-section-heading h2:focus-visible {
  outline: 3px solid var(--blue-800);
  outline-offset: 6px;
}

#v2-market-results-title,
.v2-market-delivery-path-header h3 {
  scroll-margin-top: calc(var(--v4-header-height) + var(--space-5));
}

.v2-market-demand-card__code {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.03em;
}

.v2-market-demand-card > strong {
  max-width: 330px;
  color: var(--blue-950);
  font-size: clamp(22px, 2.1vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.v2-market-demand-card > p {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-footnote);
  line-height: 1.68;
}

.v2-market-demand-card > small {
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.6;
}

.v2-market-demand-card__modes {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.v2-market-demand-card__modes em {
  padding-left: var(--space-2);
  border-left: 2px solid var(--amber-400);
  color: var(--gray-700);
  font-size: 10px;
  font-style: normal;
  font-weight: var(--weight-semibold);
  line-height: 1.45;
}

.v2-market-demand-card__action {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--blue-800);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-market-demand-uncertain {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-5);
  margin-top: clamp(var(--space-12), 7vw, var(--space-16));
  padding: var(--space-6) 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.v2-market-demand-uncertain > svg {
  color: var(--amber-700);
}

.v2-market-demand-uncertain strong {
  color: var(--blue-950);
  font-size: var(--text-callout);
}

.v2-market-demand-uncertain p {
  margin: var(--space-2) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.6;
}

.v2-market-demand-uncertain a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: var(--space-3);
  padding: 0 var(--space-5);
  border: 1px solid var(--blue-800);
  color: var(--blue-800);
  font-size: var(--text-footnote);
  font-weight: var(--weight-bold);
}

.v2-market-demand-selection {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  margin-top: var(--space-8);
  padding: var(--space-7) 0;
  border-top: 2px solid var(--blue-800);
  border-bottom: 1px solid var(--gray-300);
  background: transparent;
}

.v2-market-demand-selection__identity > span,
.v2-market-demand-selection__facts span {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.035em;
}

.v2-market-demand-selection__identity h3 {
  margin: var(--space-3) 0 0;
  color: var(--blue-950);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.v2-market-demand-selection__identity p {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
  line-height: 1.7;
}

.v2-market-demand-selection__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5) var(--space-8);
}

.v2-market-demand-selection__facts > div {
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-300);
}

.v2-market-demand-selection__facts p,
.v2-market-demand-selection__facts ul {
  margin: var(--space-2) 0 0;
  padding: 0;
  color: var(--gray-700);
  font-size: 12px;
  line-height: 1.65;
  list-style: none;
}

.v2-market-demand-selection__facts li + li {
  margin-top: var(--space-1);
}

.v2-market-demand-selection__boundary {
  border-top-color: var(--amber-400) !important;
}

.v2-market-product-shelf {
  margin-top: clamp(var(--space-10), 6vw, var(--space-16));
  padding-top: var(--space-8);
  border-top: 2px solid var(--blue-900);
  scroll-margin-top: calc(var(--v4-header-height) + var(--space-4));
}

.v2-market-product-shelf__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.v2-market-product-shelf__header > span {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.045em;
}

.v2-market-product-shelf__header > strong {
  padding-bottom: var(--space-2);
  color: var(--blue-700);
  font-size: 11px;
  white-space: nowrap;
}

.v2-market-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-8) var(--space-5);
  margin-top: var(--space-10);
}

.v2-market-product-card {
  display: grid;
  min-width: 0;
  min-height: 610px;
  align-content: start;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-4) var(--space-4);
  border-top: 1px solid var(--gray-300);
  background: transparent;
  transition: background var(--v4-duration-fast) ease-out,
    box-shadow var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out;
}

.v2-market-product-card.is-selected {
  border-top-color: var(--blue-900);
  background: var(--blue-50);
  box-shadow: inset 4px 0 0 var(--blue-900);
}

.v2-market-product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.v2-market-product-card__header > span {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: var(--weight-bold);
}

.v2-market-product-card__header > em {
  max-width: 150px;
  color: var(--gray-600);
  font-size: 9px;
  font-style: normal;
  font-weight: var(--weight-semibold);
  line-height: 1.45;
  text-align: right;
}

.v2-market-product-card h4 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(20px, 1.8vw, 25px);
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.v2-market-product-card__outcome > span,
.v2-market-product-card__scope dt,
.v2-market-product-card__boundary > span {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.035em;
}

.v2-market-product-card__outcome p,
.v2-market-product-card__scope dd,
.v2-market-product-card__boundary p {
  margin: var(--space-2) 0 0;
  color: var(--gray-700);
  font-size: 11px;
  line-height: 1.65;
}

.v2-market-product-card__scope {
  display: grid;
  gap: var(--space-4);
  margin: 0;
}

.v2-market-product-card__scope > div,
.v2-market-product-card__boundary {
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.v2-market-product-card__scope dd {
  margin-left: 0;
}

.v2-market-product-card__boundary {
  border-top-color: var(--amber-400);
}

.v2-market-product-card__footer {
  display: grid;
  align-self: end;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-300);
}

.v2-market-product-card__footer small {
  color: var(--gray-600);
  font-size: 9px;
  line-height: 1.5;
}

.v2-market-product-card__footer button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0 var(--space-3);
  border: 1px solid var(--blue-800);
  background: transparent;
  color: var(--blue-800);
  font-size: 11px;
  font-weight: var(--weight-bold);
  cursor: pointer;
  text-align: left;
}

.v2-market-product-card__footer button[aria-pressed="true"] {
  background: var(--blue-900);
  color: var(--gray-50);
}

.v2-market-product-card__footer button:focus-visible {
  outline: 3px solid var(--blue-800);
  outline-offset: 4px;
}

.v2-market-delivery-path-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-top: clamp(var(--space-12), 7vw, var(--space-20));
  padding-top: var(--space-8);
  border-top: 2px solid var(--blue-900);
  scroll-margin-top: calc(var(--v4-header-height) + var(--space-4));
}

.v2-market-delivery-path-header > div > span {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.045em;
}

.v2-market-delivery-path-header h3 {
  max-width: 880px;
  margin: var(--space-3) 0 0;
  color: var(--blue-950);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.v2-market-delivery-path-header h3:focus-visible {
  outline: 3px solid var(--blue-800);
  outline-offset: 6px;
}

.v2-market-delivery-path-header p {
  margin: var(--space-3) 0 0;
  color: var(--gray-600);
  font-size: var(--text-footnote);
}

.v2-market-capability-map {
  border-top: 1px solid var(--gray-300);
}

@media (max-width: 1120px) {
  .v2-market-demand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-market-demand-selection {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .v2-market-demand-grid,
  .v2-market-demand-selection__facts {
    grid-template-columns: 1fr;
  }

  .v2-market-product-shelf__header,
  .v2-market-product-grid {
    grid-template-columns: 1fr;
  }

  .v2-market-delivery-path-header {
    display: grid;
    align-items: start;
  }

  .v2-market-product-shelf__header > strong {
    justify-self: start;
  }

  .v2-market-product-card {
    min-height: 0;
  }

  .v2-market-demand-card {
    min-height: 0;
  }

  .v2-market-demand-search__meta,
  .v2-market-demand-uncertain {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .v2-market-demand-search__meta {
    display: grid;
  }

  .v2-market-demand-search__meta a {
    width: fit-content;
  }

  .v2-market-demand-uncertain > svg {
    display: none;
  }

  .v2-market-demand-uncertain a {
    width: fit-content;
  }
}

@media (max-width: 540px) {
  .v2-shell[data-language="zh"] .v2-market-hero h1 {
    font-size: clamp(36px, 9vw, 42px);
    letter-spacing: -0.04em;
    line-height: 1.04;
    text-wrap: wrap;
    word-break: keep-all;
  }

  .v2-shell[data-language="zh"] .v2-market-title-line:last-child {
    word-break: normal;
  }

  .v2-market-demand-navigator {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-market-product-shelf {
    padding-top: var(--space-6);
  }

  .v2-market-product-grid {
    gap: var(--space-8);
    margin-top: var(--space-8);
  }

  .v2-market-product-card {
    gap: var(--space-4);
    padding-right: 0;
    padding-left: 0;
  }

  .v2-market-demand-search {
    margin-top: var(--space-8);
  }

  .v2-market-demand-search__field {
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: var(--space-3);
  }

  .v2-market-demand-search__field input {
    font-size: 17px;
  }

  .v2-market-demand-all button {
    grid-template-columns: 36px minmax(0, 1fr) 18px;
  }

  .v2-market-demand-all button > small {
    display: none;
  }

  .v2-market-demand-grid {
    gap: var(--space-8);
  }

  .v2-market-demand-card {
    grid-template-rows: auto auto auto auto;
    gap: var(--space-3);
    padding-top: var(--space-5);
  }

  .v2-market-demand-card > strong {
    font-size: 24px;
  }

  .v2-market-demand-card > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .v2-market-demand-card > small,
  .v2-market-demand-card__modes {
    display: none;
  }
}

/*
 * Product-led refinement — Apple structure, macOS control discipline,
 * Gemini-like ambient intelligence, expressed through MYRILUM v0.3 tokens.
 */

.v2-shell-header,
.v2-shell-header.is-condensed {
  min-height: 64px;
  border-bottom-color: var(--border-subtle);
  background: var(--material-toolbar);
  box-shadow: none;
  color: var(--blue-950);
  backdrop-filter: var(--glass-blur);
}

.v2-shell-header.is-condensed {
  min-height: 56px;
  background: var(--material-popover);
  box-shadow: var(--shadow-1);
}

.v2-shell-header-inner,
.v2-shell-header.is-condensed .v2-shell-header-inner {
  min-height: inherit;
  grid-template-columns: minmax(132px, 0.7fr) minmax(0, 3.3fr);
  gap: var(--space-5);
}

.v2-shell-brand-link .brand-lockup {
  width: 128px;
}

.v2-shell-header.is-condensed .v2-shell-brand-link .brand-lockup {
  width: 120px;
}

.v2-shell-nav-list {
  justify-content: center;
  gap: 0;
}

.v2-shell-nav-trigger,
.v2-shell-utility-link {
  min-width: 44px;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius-full);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: var(--weight-medium);
}

.v2-shell-nav-trigger:hover,
.v2-shell-utility-link:hover {
  border-color: transparent;
  background: var(--control-bg-hover);
  color: var(--blue-900);
}

.v2-shell-nav-trigger.is-active,
.v2-shell-nav-item.is-expanded .v2-shell-nav-trigger,
.v2-shell-utility-link.is-active {
  border-color: transparent;
  background: var(--control-bg-pressed);
  color: var(--blue-950);
  box-shadow: none;
}

.v2-shell-nav-caret,
.v2-shell-nav-item.is-expanded .v2-shell-nav-caret {
  color: var(--gray-500);
}

.v2-shell-language-switch {
  min-height: 44px;
  border-color: var(--border-subtle);
  border-radius: var(--radius-full);
  background: var(--material-toolbar);
  box-shadow: inset 0 1px 0 var(--glass-edge);
}

.v2-shell-language-option {
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-full);
  color: var(--gray-600);
}

.v2-shell-language-option:hover,
.v2-shell-language-option.is-active {
  background: var(--blue-50);
  color: var(--blue-900);
  box-shadow: none;
}

.v2-shell-language-divider {
  color: var(--gray-400);
}

.v2-shell .v2-shell-cta {
  min-height: 44px;
  padding: 0 var(--space-5);
  border: 1px solid var(--amber-500);
  border-radius: var(--radius-full);
  background: var(--amber-400);
  color: var(--amber-900);
  box-shadow: none;
}

.v2-shell .v2-shell-cta:hover {
  border-color: var(--amber-400);
  background: var(--amber-300);
  transform: none;
}

.v2-shell-mega-panel {
  max-height: min(480px, calc(100vh - 64px));
  border-top-color: var(--border-subtle);
  border-bottom-color: var(--border-default);
  background: var(--v4-surface);
  box-shadow: var(--shadow-popover);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.v2-shell-mega-panel__inner {
  width: min(100%, 1180px);
  grid-template-columns: 260px minmax(0, 1fr);
  padding: var(--space-6) var(--v4-gutter) var(--space-8);
}

.v2-shell-mega-featured {
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  background: var(--blue-50);
  overflow: hidden;
}

.v2-shell-mega-overview,
.v2-shell-mega-featured-link {
  color: var(--blue-950);
}

.v2-shell-mega-overview {
  min-height: 112px;
  border-bottom-color: var(--blue-100);
}

.v2-shell-mega-featured-link {
  min-height: 142px;
}

.v2-shell-mega-overview > span,
.v2-shell-mega-featured-link > span,
.v2-shell-mega-group h3 {
  color: var(--blue-600);
}

.v2-shell-mega-overview > small,
.v2-shell-mega-featured-link > small {
  color: var(--gray-600);
}

.v2-shell-mega-featured-link > em,
.v2-shell-mega-overview > svg {
  color: var(--amber-900);
}

.v2-shell-mega-groups {
  padding: 0 0 0 var(--space-6);
  background: transparent;
}

.v2-shell-mega-group a {
  min-height: 48px;
  font-size: 13px;
  font-weight: var(--weight-medium);
}

.v2-shell-mega-group a:hover,
.v2-shell-mega-group a:focus-visible,
.v2-shell-mega-group a.is-active {
  border-radius: var(--radius-sm);
  background: var(--blue-50);
}

.v2-shell-mega-backdrop {
  background: color-mix(in srgb, var(--blue-950) 20%, transparent);
  backdrop-filter: blur(2px);
}

.v2-market-page {
  background: var(--v4-surface-subtle);
}

.v2-market-hero {
  position: relative;
  min-height: clamp(600px, 72vh, 760px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, color-mix(in srgb, var(--blue-300) 20%, transparent), transparent 46%),
    radial-gradient(circle at 30% 86%, color-mix(in srgb, var(--amber-400) 10%, transparent), transparent 38%),
    var(--blue-950);
}

.v2-market-hero-inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: clamp(88px, 10vw, 132px);
  padding-bottom: clamp(88px, 10vw, 132px);
}

.v2-market-hero-copy {
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.v2-market-hero .v2-market-eyebrow {
  margin: 0;
  color: var(--blue-200);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
}

.v2-market-hero h1,
.v2-shell[data-language="zh"] .v2-market-hero h1 {
  max-width: 880px;
  margin: 0 auto;
  color: var(--text-on-accent);
  font-size: clamp(58px, 6.2vw, 86px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.v2-market-introduction {
  max-width: 720px;
  margin: var(--space-6) auto 0;
  color: var(--blue-100);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
  text-wrap: balance;
}

.v2-market-demand-search--hero {
  width: min(100%, 780px);
  gap: var(--space-3);
  margin: var(--space-10) auto 0;
  padding: 0;
  border: 0;
  text-align: left;
}

.v2-market-demand-search--hero > label {
  padding-left: var(--space-2);
  color: var(--blue-100);
  font-size: 12px;
  font-weight: var(--weight-medium);
}

.v2-market-demand-search--hero .v2-market-demand-search__field {
  min-height: 72px;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  padding: 0 var(--space-5);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-xl);
  background: var(--bg-content);
  color: var(--blue-700);
  box-shadow: var(--shadow-window);
}

.v2-market-demand-search--hero .v2-market-demand-search__field:focus-within {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-window), 0 0 0 3px var(--selection-bg);
}

.v2-market-demand-search--hero .v2-market-demand-search__field input {
  height: 70px;
  color: var(--blue-950);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: var(--weight-regular);
}

.v2-market-demand-search--hero .v2-market-demand-search__meta {
  padding: 0 var(--space-2);
}

.v2-market-demand-search--hero .v2-market-demand-search__meta small {
  color: var(--blue-200);
}

.v2-market-demand-search--hero .v2-market-demand-search__meta a {
  color: var(--amber-300);
}

.v2-market-demand-navigator {
  padding-top: clamp(88px, 8vw, 120px);
  padding-bottom: clamp(88px, 8vw, 120px);
  scroll-margin-top: 0;
}

.v2-market-section-heading--simple {
  display: block;
  max-width: 760px;
}

.v2-market-section-heading--simple > p:first-child {
  margin: 0 0 var(--space-3);
  color: var(--blue-600);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
}

.v2-market-section-heading--simple h2 {
  font-size: clamp(42px, 4.8vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.v2-market-section-heading--simple > p:last-child {
  margin-top: var(--space-4);
  font-size: 17px;
  line-height: 1.65;
}

.v2-market-demand-all {
  margin-top: var(--space-10);
}

.v2-market-demand-all button {
  min-height: 74px;
  grid-template-columns: 32px minmax(0, 1fr) auto 18px;
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--bg-content);
}

.v2-market-demand-all button.is-active {
  border-color: var(--blue-200);
  background: var(--blue-50);
  box-shadow: none;
}

.v2-market-demand-all button > svg:first-child {
  color: var(--blue-700);
}

.v2-market-demand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.v2-market-demand-card {
  min-height: 236px;
  grid-template-rows: auto auto 1fr auto;
  gap: var(--space-4);
  padding: var(--space-7);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--bg-content);
  box-shadow: var(--shadow-1);
}

.v2-market-demand-card:hover {
  border-color: var(--blue-200);
  background: var(--bg-content);
  box-shadow: var(--shadow-3);
}

.v2-market-demand-card.is-active {
  border-color: var(--blue-400);
  background: var(--blue-50);
  box-shadow: var(--shadow-2);
}

.v2-market-demand-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  color: var(--blue-700);
}

.v2-market-demand-card > strong {
  font-size: clamp(22px, 2vw, 28px);
}

.v2-market-demand-card > p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}

.v2-market-demand-card__action {
  min-height: 44px;
  color: var(--blue-700);
}

.v2-market-category-toggle,
.v2-market-products-more {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: 0 var(--space-5);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  background: var(--bg-content);
  color: var(--blue-800);
  cursor: pointer;
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.v2-market-category-toggle[aria-expanded="true"] > svg {
  transform: rotate(180deg);
}

.v2-market-demand-uncertain {
  margin-top: var(--space-10);
  padding: var(--space-6);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  background: var(--blue-50);
}

.v2-market-demand-uncertain a {
  border: 0;
  border-radius: var(--radius-full);
  background: var(--blue-900);
  color: var(--text-on-accent);
}

.v2-market-directory {
  padding-top: clamp(88px, 8vw, 120px);
  padding-bottom: clamp(88px, 8vw, 120px);
  background: var(--gray-50);
}

.v2-market-directory-anchor {
  display: block;
  scroll-margin-top: calc(64px + var(--space-4));
}

.v2-market-product-shelf {
  margin-top: var(--space-10);
  padding-top: 0;
  border: 0;
}

.v2-market-product-shelf__header {
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gray-300);
}

.v2-market-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.v2-market-product-card {
  min-height: 0;
  grid-template-rows: auto auto auto auto auto 1fr;
  gap: var(--space-5);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-window);
  background: var(--bg-content);
  box-shadow: var(--shadow-1);
}

.v2-market-product-card.is-selected {
  border-color: var(--blue-400);
  background: var(--bg-content);
  box-shadow: var(--shadow-3);
}

.v2-market-product-card__header {
  justify-content: flex-start;
}

.v2-market-product-card__header > span {
  color: var(--blue-600);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.v2-market-product-card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(27px, 2.6vw, 36px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.v2-market-product-card__outcome p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.65;
}

.v2-market-product-card__scope > div,
.v2-market-product-card__boundary {
  padding-top: var(--space-4);
  border-top-color: var(--gray-200);
}

.v2-market-product-card__scope dt,
.v2-market-product-card__boundary > span {
  color: var(--gray-500);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.v2-market-product-card__scope dd,
.v2-market-product-card__boundary p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
}

.v2-market-product-card__boundary {
  border-top-color: var(--gray-200);
}

.v2-market-product-card__footer {
  gap: var(--space-4);
  border-top-color: var(--gray-200);
}

.v2-market-product-card__footer small {
  color: var(--gray-500);
  font-size: 11px;
}

.v2-market-product-card__footer button {
  min-height: 46px;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-full);
  background: var(--blue-900);
  color: var(--text-on-accent);
  font-size: 13px;
}

.v2-market-product-card__footer button[aria-pressed="true"] {
  background: var(--blue-800);
}

.v2-market-products-more {
  margin-top: var(--space-8);
}

.v2-market-delivery-path-header {
  margin-top: clamp(var(--space-12), 7vw, var(--space-20));
  padding-top: var(--space-8);
  border-top-color: var(--blue-200);
}

.v2-market-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.v2-market-card {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--bg-content);
}

.v2-market-card:hover,
.v2-market-card--selected {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-3);
}

.v2-market-card-header,
.v2-market-card-body,
.v2-market-card-footer {
  padding-right: var(--space-6);
  padding-left: var(--space-6);
}

.v2-market-card-header {
  background: var(--blue-50);
}

.v2-market-card-family {
  font-family: var(--font-ui);
  font-weight: var(--weight-medium);
}

.v2-market-card-body h3 {
  font-size: clamp(25px, 2.5vw, 34px);
}

.v2-market-card-outcome {
  border-left-color: var(--amber-500);
  background: var(--amber-50);
}

.v2-market-all-delivery-services {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: var(--space-10) var(--v4-gutter);
  background: var(--v4-surface-subtle);
}

.v2-market-all-delivery-services details {
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.v2-market-all-delivery-services summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--blue-950);
  cursor: pointer;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  list-style: none;
}

.v2-market-all-delivery-services summary::-webkit-details-marker {
  display: none;
}

.v2-market-all-delivery-services summary strong {
  display: inline-flex;
  min-width: 32px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 12px;
}

.v2-market-all-delivery-services nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 var(--space-6);
  padding-bottom: var(--space-6);
}

.v2-market-all-delivery-services nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  border-top: 1px solid var(--gray-200);
  color: var(--blue-900);
  font-size: 13px;
}

.v2-market-simple-cta {
  display: grid;
  width: 100%;
  min-height: 480px;
  place-items: center;
  align-content: center;
  gap: var(--space-5);
  padding: clamp(88px, 10vw, 144px) var(--v4-gutter);
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--blue-300) 18%, transparent), transparent 48%),
    var(--blue-950);
  color: var(--text-on-accent);
  text-align: center;
}

.v2-market-simple-cta > p {
  margin: 0;
  color: var(--blue-200);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
}

.v2-market-simple-cta h2 {
  max-width: 860px;
  margin: 0;
  color: var(--text-on-accent);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.v2-market-simple-cta > span {
  max-width: 680px;
  color: var(--blue-100);
  font-size: 17px;
  line-height: 1.65;
}

.v2-market-simple-cta > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding: 0 var(--space-6);
  border-radius: var(--radius-full);
  background: var(--amber-400);
  color: var(--amber-900);
  font-size: 14px;
  font-weight: var(--weight-bold);
}

.v2-shell-footer-cta {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.v2-shell-footer-inner {
  padding-top: var(--space-12);
  padding-bottom: var(--space-10);
}

.v2-shell-footer-boundary {
  max-width: 320px;
}

.v2-market-section-heading h2:focus:not(:focus-visible),
.v2-market-delivery-path-header h3:focus:not(:focus-visible) {
  outline: 0;
}

.v2-market-detail:focus {
  outline: 0;
}

.v2-shell-footer-directory--mobile {
  display: none;
}

.v2-shell .v2-shell-cta-copy small {
  color: inherit;
  opacity: 1;
}

.v2-shell-footer-meta nav a {
  min-width: 44px;
  justify-content: center;
  padding-right: var(--space-2);
  padding-left: var(--space-2);
}

@media (max-width: 1120px) {
  .v2-shell-header-inner,
  .v2-shell-header.is-condensed .v2-shell-header-inner {
    grid-template-columns: 1fr auto;
  }

  .v2-shell-menu-toggle,
  .v2-shell-menu-label {
    color: var(--blue-900);
  }

  .v2-shell-navigation {
    background: var(--v4-surface-subtle);
    color: var(--blue-950);
  }

  .v2-shell-nav-list {
    justify-content: stretch;
  }

  .v2-shell-menu-masthead {
    min-height: 64px;
    border-bottom-color: var(--border-subtle);
    background: var(--v4-surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .v2-shell-menu-close {
    color: var(--blue-900);
  }

  .v2-shell-menu-intro {
    display: none;
  }

  .v2-shell-nav-trigger {
    min-height: 60px;
    border-radius: 0;
    border-bottom-color: var(--gray-200);
    color: var(--blue-950);
  }

  .v2-shell-nav-copy small,
  .v2-shell-nav-caret,
  .v2-shell-nav-item.is-expanded .v2-shell-nav-caret {
    color: var(--gray-500);
  }

  .v2-shell-nav-trigger.is-active,
  .v2-shell-nav-item.is-expanded .v2-shell-nav-trigger {
    padding-left: var(--space-4);
    border-color: var(--gray-200);
    background: var(--blue-50);
    box-shadow: inset 3px 0 0 var(--blue-700);
  }

  .v2-shell-mega-panel {
    max-height: none;
    overflow: visible;
    background: transparent;
    color: var(--blue-950);
    backdrop-filter: none;
  }

  .v2-shell-mega-panel__inner {
    padding: 0 0 var(--space-4) var(--space-4);
    border-left-color: var(--blue-300);
  }

  .v2-shell-mega-featured {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .v2-shell-mega-overview,
  .v2-shell-mega-featured-link {
    background: var(--blue-50);
    color: var(--blue-950);
  }

  .v2-shell-mega-group h3,
  .v2-shell-utility-label,
  .v2-shell-language-label {
    color: var(--blue-600);
  }

  .v2-shell-mega-group li,
  .v2-shell-utility {
    border-color: var(--gray-200);
  }

  .v2-shell-mega-group a,
  .v2-shell-utility-link,
  .v2-shell-utility-link.v2-shell-utility-link--mobile {
    color: var(--blue-900);
  }

  .v2-shell-utility-link.is-active {
    border-bottom-color: var(--amber-500);
    background: var(--amber-50);
  }

  .v2-shell-language-switch {
    background: var(--bg-content);
  }

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

  .v2-market-product-grid,
  .v2-market-card-grid {
    grid-template-columns: 1fr;
  }

  .v2-market-all-delivery-services nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .v2-shell-footer-directory--desktop {
    display: none;
  }

  .v2-shell-footer-directory--mobile {
    display: block;
  }

  .v2-shell-footer-mobile-groups {
    border-top: 1px solid var(--v4-line-inverse);
  }

  .v2-shell-footer-mobile-group {
    border-bottom: 1px solid var(--v4-line-inverse);
  }

  .v2-shell-footer-mobile-group > summary {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    color: var(--blue-100);
    cursor: pointer;
    font-size: 14px;
    font-weight: var(--weight-semibold);
    list-style: none;
  }

  .v2-shell-footer-mobile-group > summary::-webkit-details-marker {
    display: none;
  }

  .v2-shell-footer-mobile-group > summary svg {
    flex: 0 0 auto;
    color: var(--blue-300);
    transition: transform var(--v4-duration-fast) ease-out;
  }

  .v2-shell-footer-mobile-group[open] > summary svg {
    transform: rotate(180deg);
  }

  .v2-shell-footer-mobile-group ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0 0 var(--space-3);
    list-style: none;
  }

  .v2-shell-footer-mobile-group a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 var(--space-3);
    color: var(--blue-100);
    font-size: 14px;
  }

  .v2-market-hero {
    min-height: 620px;
  }

  .v2-market-hero-inner {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .v2-market-hero h1,
  .v2-shell[data-language="zh"] .v2-market-hero h1 {
    font-size: clamp(44px, 11vw, 62px);
  }

  .v2-market-demand-search--hero .v2-market-demand-search__meta {
    display: grid;
    gap: var(--space-3);
  }

  .v2-market-demand-search--hero .v2-market-demand-search__meta a {
    width: fit-content;
  }

  .v2-market-demand-grid {
    grid-template-columns: 1fr;
  }

  .v2-market-demand-card {
    min-height: 0;
  }

  .v2-market-demand-uncertain {
    grid-template-columns: 1fr;
  }

  .v2-market-demand-uncertain > svg {
    display: none;
  }

  .v2-market-demand-uncertain a {
    width: fit-content;
  }

  .v2-market-all-delivery-services nav {
    grid-template-columns: 1fr;
  }

  .v2-market-simple-cta {
    min-height: 420px;
  }
}

@media (max-width: 540px) {
  .v2-shell-header,
  .v2-shell-header-inner,
  .v2-shell-header.is-condensed,
  .v2-shell-header.is-condensed .v2-shell-header-inner {
    min-height: 60px;
  }

  .v2-shell-brand-link .brand-lockup,
  .v2-shell-header.is-condensed .v2-shell-brand-link .brand-lockup {
    width: 116px;
  }

  .v2-shell-menu-toggle {
    min-width: 52px;
  }

  .v2-shell-menu-label {
    display: none;
  }

  .v2-shell-menu-masthead {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-shell-menu-close {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    border-radius: var(--radius-full);
  }

  .v2-shell-menu-close > span {
    display: none;
  }

  .v2-shell-menu-close:focus-visible {
    outline-width: 2px;
    outline-offset: 2px;
  }

  .v2-shell-primary-nav {
    width: 100%;
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-shell-nav-list,
  .v2-shell-nav-item,
  .v2-shell-mega-panel,
  .v2-shell-mega-panel__inner,
  .v2-shell-mega-featured,
  .v2-shell-mega-groups {
    width: 100%;
  }

  .v2-shell-nav-list {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .v2-shell-nav-item {
    min-width: 0;
  }

  .v2-shell-mega-panel__inner {
    grid-template-columns: 1fr;
    padding: 0;
    border-left: 0;
  }

  .v2-shell-mega-featured {
    grid-template-columns: 1fr;
  }

  .v2-shell-mega-featured-link {
    display: none;
  }

  .v2-shell-mega-overview {
    min-height: 86px;
    padding: var(--space-4) 0;
    background: transparent;
  }

  .v2-shell-mega-groups {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    padding: var(--space-5) 0 var(--space-3);
  }

  .v2-shell-mega-group a {
    display: flex;
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding-right: var(--space-2);
    padding-left: 0;
    font-size: 14px;
  }

  .v2-shell-utility,
  .v2-shell-language-switch,
  .v2-shell .v2-shell-cta {
    margin-right: var(--space-5);
    margin-left: var(--space-5);
  }

  .v2-market-hero {
    min-height: 600px;
  }

  .v2-market-hero-copy {
    text-align: left;
  }

  .v2-market-hero h1,
  .v2-shell[data-language="zh"] .v2-market-hero h1 {
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(42px, 12vw, 54px);
    line-height: 1.02;
  }

  .v2-market-introduction {
    margin-right: 0;
    margin-left: 0;
    font-size: 17px;
  }

  .v2-market-demand-search--hero .v2-market-demand-search__field {
    min-height: 64px;
    padding: 0 var(--space-4);
    border-radius: var(--radius-lg);
  }

  .v2-market-demand-search--hero .v2-market-demand-search__field input {
    height: 62px;
    font-size: 16px;
  }

  .v2-market-demand-navigator,
  .v2-market-all-delivery-services {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }

  .v2-market-section-heading--simple h2 {
    font-size: 38px;
  }

  .v2-market-demand-all button {
    grid-template-columns: 28px minmax(0, 1fr) 18px;
  }

  .v2-market-demand-all button > small {
    display: none;
  }

  .v2-market-demand-card,
  .v2-market-product-card {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
  }

  .v2-market-product-card h3 {
    font-size: 28px;
  }

  .v2-market-card-footer-actions {
    grid-template-columns: 1fr;
  }

  .v2-market-simple-cta {
    min-height: 400px;
    align-content: center;
    padding: var(--space-16) var(--space-5);
    text-align: left;
  }

  .v2-market-simple-cta h2 {
    font-size: 40px;
  }

  .v2-market-simple-cta > a {
    justify-self: start;
  }
}

/* Sitewide product-led refinement — /market is the official visual benchmark. */

.v2-content-page {
  display: flex;
  flex-direction: column;
  background: var(--gray-50);
}

.v2-content-hero,
.v2-content-page--studio .v2-content-hero {
  display: grid;
  min-height: clamp(560px, 72vh, 720px);
  order: 1;
  align-items: center;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--blue-300) 17%, transparent), transparent 50%),
    var(--blue-950);
  color: var(--text-on-accent);
}

.v2-content-hero__inner {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 144px) var(--v4-gutter);
}

.v2-content-breadcrumbs {
  color: var(--blue-200);
  font-size: 12px;
}

.v2-content-breadcrumbs a {
  color: var(--blue-100);
}

.v2-content-breadcrumbs a:hover {
  color: var(--amber-300);
}

.v2-content-hero__grid {
  display: block;
  margin-top: clamp(var(--space-10), 6vw, var(--space-16));
}

.v2-content-hero__copy,
.v2-content-page[data-page-slug="services"] .v2-content-hero__copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.v2-content-hero .v2-kicker {
  color: var(--amber-300);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.v2-content-hero h1,
.v2-shell[data-language="zh"] .v2-content-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-on-accent);
  font-size: clamp(54px, 5.8vw, 82px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-wrap: balance;
}

.v2-content-hero__lead {
  max-width: 740px;
  margin: var(--space-6) auto 0;
  color: var(--blue-100);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
  text-wrap: balance;
}

.v2-content-hero__actions {
  justify-content: center;
  margin-top: var(--space-8);
}

.v2-content-hero .v2-content-action--primary {
  border-color: var(--amber-400);
  background: var(--amber-400);
  color: var(--amber-900);
}

.v2-content-hero .v2-content-action--secondary {
  border-color: var(--blue-500);
  background: transparent;
  color: var(--blue-100);
}

.v2-content-hero .v2-content-action--secondary:hover {
  border-color: var(--blue-300);
  background: color-mix(in srgb, var(--blue-700) 50%, transparent);
  color: var(--text-on-accent);
}

.v2-content-jump {
  display: grid;
  width: min(100%, var(--v4-content-max));
  order: 2;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: var(--space-6);
  margin: 0 auto;
  padding: var(--space-8) var(--v4-gutter);
  border-bottom: 1px solid var(--gray-300);
  background: var(--bg-content);
}

.v2-content-jump > strong {
  padding-top: 10px;
  color: var(--blue-950);
  font-size: 13px;
}

.v2-content-jump > div {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.v2-content-jump a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  background: var(--bg-content);
  color: var(--blue-800);
  font-size: 13px;
  font-weight: var(--weight-medium);
}

.v2-content-jump a:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
  color: var(--blue-950);
}

.v2-content-body {
  display: block;
  width: 100%;
  max-width: none;
  order: 3;
  margin: 0;
  padding: 0;
  background: var(--gray-50);
}

.v2-content-sections {
  display: block;
}

.v2-content-section {
  width: 100%;
  scroll-margin-top: calc(var(--v4-header-height) + var(--space-4));
  border: 0;
  background: var(--gray-50);
}

.v2-content-section.is-odd {
  background: var(--bg-content);
}

.v2-content-section--dark,
.v2-content-section--dark.is-odd {
  background: var(--blue-950);
  color: var(--text-on-accent);
}

.v2-content-section__inner {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: clamp(80px, 8vw, 120px) var(--v4-gutter);
}

.v2-content-section__header,
.v2-content-section--dark .v2-content-section__header {
  max-width: 800px;
  margin: 0 0 clamp(var(--space-8), 5vw, var(--space-12));
  padding: 0;
}

.v2-content-section__header .v2-kicker {
  margin-bottom: var(--space-3);
  color: var(--blue-700);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.v2-content-section--dark .v2-kicker {
  color: var(--amber-300);
}

.v2-content-section__header h2,
.v2-capability-governance h2 {
  color: var(--blue-950);
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.v2-content-section--dark .v2-content-section__header h2 {
  color: var(--text-on-accent);
}

.v2-content-section__header > p:last-child {
  max-width: 720px;
  margin-top: var(--space-5);
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.7;
}

.v2-content-section--dark .v2-content-section__header > p:last-child {
  color: var(--blue-100);
}

.v2-content-grid,
.v2-content-grid--comparison,
.v2-content-grid--status,
.v2-content-grid--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  border: 0;
}

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

.v2-content-grid--list {
  grid-template-columns: 1fr;
}

.v2-content-grid > div,
.v2-content-grid > li,
.v2-content-grid--comparison > div,
.v2-content-grid--status > div,
.v2-content-grid--grid > div,
.v2-content-grid--comparison > div:nth-child(odd),
.v2-content-grid--status > div:nth-child(odd),
.v2-content-grid--grid > div:nth-child(odd),
.v2-content-grid--timeline > li {
  border: 0;
}

.v2-content-card,
.v2-content-section--dark .v2-content-card {
  display: flex;
  min-height: 230px;
  height: 100%;
  flex-direction: column;
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--bg-content);
  box-shadow: var(--shadow-1);
  transition:
    border-color var(--v4-duration-fast) ease-out,
    box-shadow var(--v4-duration-fast) ease-out,
    transform var(--v4-duration-fast) ease-out;
}

.v2-content-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-3);
  transform: translateY(-2px);
}

.v2-content-card__topline {
  min-height: 24px;
  margin-bottom: var(--space-5);
}

.v2-content-card__index {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: var(--weight-semibold);
}

.v2-content-card h3 {
  color: var(--blue-950);
  font-size: clamp(23px, 2.1vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.v2-content-card > p {
  margin-top: var(--space-4);
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}

.v2-content-card__link {
  min-height: 44px;
  margin-top: auto;
  padding-top: var(--space-5);
  color: var(--blue-700);
}

.v2-content-card__boundary,
.v2-content-section__note {
  border-left-color: var(--amber-500);
  border-radius: 0;
}

.v2-content-section--dark .v2-content-card {
  border-color: var(--blue-700);
  background: var(--blue-900);
  box-shadow: none;
}

.v2-content-section--dark .v2-content-card h3,
.v2-content-section--dark .v2-content-card__link {
  color: var(--text-on-accent);
}

.v2-content-section--dark .v2-content-card > p,
.v2-content-section--dark .v2-content-card__boundary {
  color: var(--blue-100);
}

.v2-content-section__note {
  max-width: 820px;
  margin: var(--space-8) 0 0;
  color: var(--gray-600);
}

.v2-content-related {
  width: 100%;
  max-width: none;
  order: 4;
  margin: 0;
  padding: clamp(80px, 8vw, 120px) var(--v4-gutter);
  background: var(--bg-content);
}

.v2-content-related > header,
.v2-content-related__grid {
  width: min(100%, var(--v4-content-max));
  margin-right: auto;
  margin-left: auto;
}

.v2-content-related > header {
  max-width: 760px;
  margin-bottom: var(--space-10);
}

.v2-content-related h2 {
  color: var(--blue-950);
  font-size: clamp(38px, 4.2vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.v2-content-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.v2-content-related__card,
.v2-content-related__card:last-child {
  min-height: 270px;
  padding: var(--space-7);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--gray-50);
  box-shadow: var(--shadow-1);
}

.v2-content-related__card:hover {
  border-color: var(--blue-200);
  background: var(--bg-content);
  box-shadow: var(--shadow-3);
}

.v2-content-closing {
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 500px;
  order: 5;
  place-items: center;
  margin: 0;
  padding: clamp(88px, 10vw, 144px) var(--v4-gutter);
  border: 0;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--blue-300) 17%, transparent), transparent 48%),
    var(--blue-950);
  box-shadow: none;
  text-align: center;
}

.v2-content-closing__icon {
  display: none;
}

.v2-content-closing__copy {
  max-width: 900px;
}

.v2-content-closing .v2-kicker {
  color: var(--amber-300);
}

.v2-content-closing h2 {
  margin-top: var(--space-4);
  color: var(--text-on-accent);
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.v2-content-closing__copy > p:not(.v2-kicker) {
  max-width: 680px;
  margin: var(--space-5) auto 0;
  color: var(--blue-100);
  font-size: 17px;
  line-height: 1.7;
}

.v2-content-closing__actions {
  justify-content: center;
  margin-top: var(--space-8);
}

.v2-content-closing small {
  display: block;
  margin-top: var(--space-5);
  color: var(--blue-200);
}

.v2-content-page[data-page-slug="services/domains"] .v2-content-sections {
  width: min(100%, var(--v4-content-max));
  margin: 0 auto;
  padding: clamp(80px, 8vw, 120px) var(--v4-gutter);
}

/* Product/service detail pages use the same visual hierarchy without exposing internal codes. */

.v2-sku-page .v2-content-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
}

.v2-sku-page .v2-content-hero__copy {
  margin: 0;
  text-align: left;
}

.v2-sku-page .v2-content-hero h1,
.v2-shell[data-language="zh"] .v2-sku-page .v2-content-hero h1,
.v2-sku-page .v2-content-hero__lead {
  margin-right: 0;
  margin-left: 0;
}

.v2-sku-page .v2-content-hero__actions {
  justify-content: flex-start;
}

.v2-sku-hero-brief {
  overflow: hidden;
  border: 1px solid var(--blue-700);
  border-radius: var(--radius-window);
  background: color-mix(in srgb, var(--blue-900) 88%, transparent);
  box-shadow: none;
}

.v2-sku-hero-brief > div {
  border-color: var(--blue-700);
}

.v2-sku-hero-brief span {
  color: var(--blue-200);
}

.v2-sku-hero-brief strong {
  color: var(--text-on-accent);
}

.v2-sku-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--gray-50);
}

.v2-sku-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(80px, 8vw, 120px) var(--v4-gutter);
  border: 0;
}

.v2-sku-section:nth-of-type(even) {
  background: var(--bg-content);
}

.v2-sku-section > * {
  width: min(100%, var(--v4-content-max));
  margin-right: auto;
  margin-left: auto;
}

.v2-sku-section__header {
  max-width: 820px;
  margin-bottom: var(--space-10);
}

.v2-sku-section__header h2 {
  font-size: clamp(40px, 4.6vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.v2-sku-scope-grid,
.v2-sku-composition-grid,
.v2-sku-verification-grid {
  gap: var(--space-6);
  border: 0;
}

.v2-sku-list-card,
.v2-sku-composition-grid > section,
.v2-sku-verification-grid > section {
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--bg-content);
  box-shadow: var(--shadow-1);
}

.v2-sku-section--dark {
  background: var(--blue-950);
}

.v2-sku-section--dark .v2-sku-verification-grid > section {
  border-color: var(--blue-700);
  background: var(--blue-900);
  box-shadow: none;
}

.v2-sku-boundary {
  width: min(calc(100% - (2 * var(--v4-gutter))), var(--v4-content-max));
  margin: clamp(var(--space-10), 6vw, var(--space-16)) auto;
  border-radius: var(--radius-xl);
}

/* The homepage keeps its interactive value but adopts the market's calmer hierarchy. */

.v2-fusion-hero__heading {
  max-width: 980px;
  grid-template-columns: 1fr;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.v2-fusion-hero__heading h1,
.v2-shell[data-language="zh"] .v2-fusion-hero__heading h1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(58px, 6vw, 84px);
  letter-spacing: -0.052em;
  line-height: 1.01;
  text-wrap: balance;
}

.v2-fusion-hero__intro {
  max-width: 700px;
  margin: var(--space-7) auto 0;
}

.v2-fusion-actions {
  justify-content: center;
}

.v2-fusion-atlas {
  margin-top: clamp(var(--space-12), 7vw, var(--space-20));
  border-color: var(--blue-700);
  border-radius: var(--radius-window);
  background: color-mix(in srgb, var(--blue-900) 88%, transparent);
}

@media (max-width: 1120px) {
  .v2-content-grid--timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-sku-page .v2-content-hero__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .v2-content-hero,
  .v2-content-page--studio .v2-content-hero {
    min-height: 560px;
  }

  .v2-content-hero__inner {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .v2-content-hero__copy,
  .v2-content-page[data-page-slug="services"] .v2-content-hero__copy {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .v2-content-hero h1,
  .v2-shell[data-language="zh"] .v2-content-hero h1 {
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.04;
    text-wrap: pretty;
  }

  .v2-content-hero__lead {
    margin-right: 0;
    margin-left: 0;
    text-wrap: pretty;
  }

  .v2-content-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .v2-content-hero__actions .v2-content-action {
    width: 100%;
    justify-content: center;
  }

  .v2-content-jump {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }

  .v2-content-jump > strong {
    padding-top: 0;
  }

  .v2-content-grid,
  .v2-content-grid--comparison,
  .v2-content-grid--status,
  .v2-content-grid--grid,
  .v2-content-grid--timeline,
  .v2-content-related__grid {
    grid-template-columns: 1fr;
  }

  .v2-content-section__inner,
  .v2-content-related,
  .v2-sku-section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .v2-content-card,
  .v2-content-section--dark .v2-content-card {
    min-height: 0;
  }

  .v2-content-related__card,
  .v2-content-related__card:last-child {
    min-height: 0;
  }

  .v2-content-closing {
    min-height: 440px;
    text-align: left;
  }

  .v2-content-closing__actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .v2-content-closing__actions .v2-content-action {
    width: 100%;
    justify-content: center;
  }

  .v2-content-closing__copy > p:not(.v2-kicker) {
    margin-left: 0;
  }

  .v2-sku-hero-brief {
    grid-template-columns: 1fr;
  }

  .v2-fusion-hero__heading {
    text-align: left;
  }

  .v2-fusion-hero__heading h1,
  .v2-shell[data-language="zh"] .v2-fusion-hero__heading h1,
  .v2-fusion-hero__intro {
    margin-left: 0;
  }

  .v2-fusion-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .v2-content-hero,
  .v2-content-page--studio .v2-content-hero {
    min-height: 520px;
  }

  .v2-content-hero h1,
  .v2-shell[data-language="zh"] .v2-content-hero h1 {
    font-size: clamp(39px, 10.8vw, 48px);
  }

  .v2-content-jump > div {
    gap: var(--space-2);
  }

  .v2-content-jump a {
    min-height: 42px;
    padding-right: var(--space-3);
    padding-left: var(--space-3);
    font-size: 12px;
  }

  .v2-content-section__header h2,
  .v2-capability-governance h2,
  .v2-sku-section__header h2 {
    font-size: 38px;
  }

  .v2-content-card,
  .v2-content-section--dark .v2-content-card,
  .v2-content-related__card,
  .v2-content-related__card:last-child,
  .v2-sku-list-card,
  .v2-sku-composition-grid > section,
  .v2-sku-verification-grid > section {
    padding: var(--space-6);
  }

  .v2-content-closing h2 {
    font-size: 40px;
  }

  .v2-fusion-hero__heading h1,
  .v2-shell[data-language="zh"] .v2-fusion-hero__heading h1 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .v2-fusion-atlas {
    border-radius: var(--radius-xl);
  }
}

.v2-not-found {
  display: grid;
  min-height: min(760px, calc(100dvh - var(--v4-header-height)));
  place-items: center;
  padding: clamp(88px, 10vw, 144px) var(--v4-gutter);
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--blue-300) 17%, transparent), transparent 50%),
    var(--blue-950);
  color: var(--text-on-accent);
  text-align: center;
}

.v2-not-found > div {
  max-width: 820px;
}

.v2-not-found p {
  margin: 0;
  color: var(--amber-300);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
}

.v2-not-found h1 {
  margin: var(--space-5) 0 0;
  color: var(--text-on-accent);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.v2-not-found span {
  display: block;
  max-width: 640px;
  margin: var(--space-6) auto 0;
  color: var(--blue-100);
  font-size: 18px;
  line-height: 1.7;
}

.v2-not-found > div > div {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.v2-not-found a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-6);
  border: 1px solid var(--blue-500);
  border-radius: var(--radius-full);
  color: var(--blue-100);
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.v2-not-found a.is-primary {
  border-color: var(--amber-400);
  background: var(--amber-400);
  color: var(--amber-900);
}

@media (max-width: 540px) {
  .v2-not-found {
    min-height: 620px;
    text-align: left;
  }

  .v2-not-found h1 {
    font-size: 46px;
  }

  .v2-not-found span {
    margin-left: 0;
    font-size: 17px;
  }

  .v2-not-found > div > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v2-not-found a {
    width: 100%;
  }
}

.v2-content-closing {
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
}

.v2-content-closing__copy {
  width: min(100%, 900px);
  grid-column: 1;
  justify-self: center;
}

.v2-content-more-items {
  margin-top: var(--space-6);
}

.v2-content-more-items > summary,
.v2-content-more-sections > summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0 var(--space-5);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  background: var(--bg-content);
  color: var(--blue-900);
  cursor: pointer;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  list-style: none;
}

.v2-content-more-items > summary::-webkit-details-marker,
.v2-content-more-sections > summary::-webkit-details-marker {
  display: none;
}

.v2-content-more-items > summary:hover,
.v2-content-more-sections > summary:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
}

.v2-content-more-items > summary svg,
.v2-content-more-sections > summary svg {
  flex: 0 0 auto;
  transition: transform var(--v4-duration-fast) ease-out;
}

.v2-content-more-items[open] > summary svg,
.v2-content-more-sections[open] > summary svg {
  transform: rotate(180deg);
}

.v2-content-more-items > .v2-content-grid {
  margin-top: var(--space-6);
}

.v2-content-more-sections {
  padding: var(--space-8) var(--v4-gutter) clamp(80px, 8vw, 120px);
  background: var(--bg-content);
}

.v2-content-more-sections > summary {
  width: min(100%, var(--v4-content-max));
  min-height: 64px;
  margin: 0 auto;
}

.v2-content-more-sections > div {
  margin-top: var(--space-8);
}

/* One footer color system across every public route. */

.v2-shell-footer,
.v2-shell-footer-inner {
  border-color: var(--blue-800);
  background: var(--blue-950);
  color: var(--text-on-accent);
}

.v2-shell-footer-cta {
  border-color: var(--blue-800);
  background: var(--blue-950);
  color: var(--text-on-accent);
  box-shadow: none;
}

.v2-shell-footer-cta__icon {
  border-color: var(--amber-400);
  background: transparent;
  color: var(--amber-300);
}

.v2-shell-footer-cta__copy > p:first-child,
.v2-shell-footer-directory-title {
  color: var(--amber-300);
}

.v2-shell-footer-cta__copy h2,
.v2-shell-footer-brand strong {
  color: var(--text-on-accent);
}

.v2-shell-footer-cta__copy > p:not(:first-child),
.v2-shell-footer-cta__actions small,
.v2-shell-footer-brand p {
  color: var(--blue-100);
}

.v2-shell-footer-action.is-primary {
  border-color: var(--amber-400);
  background: var(--amber-400);
  color: var(--amber-900);
}

.v2-shell-footer-action:not(.is-primary) {
  border-color: var(--blue-500);
  background: transparent;
  color: var(--blue-100);
}

.v2-shell-footer-directory-group h3,
.v2-shell-footer-mobile-group > summary,
.v2-shell-footer-directory-group a,
.v2-shell-footer-mobile-group a,
.v2-shell-footer-meta,
.v2-shell-footer-meta a {
  color: var(--blue-100);
}

.v2-shell-footer-directory-group li,
.v2-shell-footer-mobile-groups,
.v2-shell-footer-mobile-group,
.v2-shell-footer-meta {
  border-color: var(--blue-800);
}

.v2-shell-footer-directory-group a:hover,
.v2-shell-footer-mobile-group a:hover,
.v2-shell-footer-meta a:hover {
  color: var(--amber-300);
}

@media (max-width: 820px) {
  .v2-content-more-sections {
    padding-right: var(--space-5);
    padding-bottom: var(--space-16);
    padding-left: var(--space-5);
  }

  .v2-content-more-sections > div {
    margin-right: calc(-1 * var(--space-5));
    margin-left: calc(-1 * var(--space-5));
  }
}

.v2-fusion-delivery-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: clamp(var(--space-10), 6vw, var(--space-16)) auto 0;
  padding: 0 var(--space-6);
  border: 1px solid var(--blue-500);
  border-radius: var(--radius-full);
  color: var(--blue-100);
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.v2-fusion-delivery-link:hover {
  border-color: var(--amber-400);
  color: var(--amber-300);
}

@media (max-width: 820px) {
  .v2-fusion-delivery-link {
    margin-left: 0;
  }
}

/* Apple-inspired product presentation system — Myrilum visual language. */

.v2-market-product-shelf {
  --v2-market-rail-edge: max(
    var(--v4-gutter),
    calc((100vw - var(--v4-content-max)) / 2 + var(--v4-gutter))
  );
  width: calc(100% + var(--v2-market-rail-edge));
}

.v2-market-product-shelf__header {
  align-items: center;
  padding-right: var(--v2-market-rail-edge);
  padding-bottom: var(--space-5);
}

.v2-market-product-shelf__status {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.v2-market-product-shelf__status > strong {
  color: var(--gray-600);
  font-size: 12px;
  font-weight: var(--weight-medium);
  white-space: nowrap;
}

.v2-market-product-rail-controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.v2-market-product-rail-controls button {
  display: inline-grid;
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-700);
  cursor: pointer;
  place-items: center;
  transition:
    background var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out,
    transform var(--v4-duration-fast) ease-out;
}

.v2-market-product-rail-controls button:hover:not(:disabled) {
  background: var(--blue-900);
  color: var(--text-on-accent);
  transform: scale(1.04);
}

.v2-market-product-rail-controls button:disabled {
  opacity: 0.34;
  cursor: default;
}

.v2-market-product-rail-controls button:focus-visible,
.v2-market-product-rail:focus-visible {
  outline: 3px solid var(--blue-700);
  outline-offset: 4px;
}

.v2-market-product-rail:focus-visible {
  outline-offset: -4px;
}

.v2-market-product-grid.v2-market-product-rail {
  display: grid;
  width: auto;
  max-width: none;
  grid-auto-columns: clamp(340px, 32vw, 430px);
  grid-auto-flow: column;
  grid-template-columns: none;
  align-items: stretch;
  gap: var(--space-6);
  margin-top: var(--space-6);
  margin-left: calc(-1 * var(--v2-market-rail-edge));
  padding:
    4px
    max(var(--v4-gutter), env(safe-area-inset-right))
    var(--space-7)
    4px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 4px;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.v2-market-product-grid.v2-market-product-rail::-webkit-scrollbar {
  display: none;
}

.v2-market-product-rail .v2-market-product-card {
  --v2-product-card-padding: clamp(28px, 2.8vw, 38px);
  --v2-product-card-accent: var(--blue-500);
  --v2-product-card-glow: var(--blue-100);
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  align-content: stretch;
  grid-template-rows: auto auto auto minmax(250px, 1fr);
  gap: var(--space-5);
  padding: var(--v2-product-card-padding);
  border: 0;
  border-radius: 30px;
  background: var(--bg-content);
  box-shadow: 0 10px 32px rgba(6, 28, 61, 0.08);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  isolation: isolate;
  transition:
    box-shadow var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.v2-market-product-rail .v2-market-product-card[data-category="strategy-consulting"],
.v2-market-product-rail .v2-market-product-card[data-category="trust-security-compliance"],
.v2-market-product-rail .v2-market-product-card[data-category="industry-science-engineering"] {
  --v2-product-card-accent: var(--amber-500);
  --v2-product-card-glow: var(--amber-50);
}

.v2-market-product-rail .v2-market-product-card[data-category="agents-automation"],
.v2-market-product-rail .v2-market-product-card[data-category="models-training"],
.v2-market-product-rail .v2-market-product-card[data-category="managed-operations-enablement"] {
  --v2-product-card-accent: var(--blue-400);
  --v2-product-card-glow: var(--blue-50);
}

.v2-market-product-rail .v2-market-product-card.is-selected {
  border: 0;
  background: var(--bg-content);
  box-shadow: 0 20px 50px rgba(6, 28, 61, 0.16);
}

.v2-market-product-rail .v2-market-product-card__header {
  min-height: 20px;
}

.v2-market-product-rail .v2-market-product-card__header > span {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
}

.v2-market-product-rail .v2-market-product-card h3 {
  display: -webkit-box;
  min-height: 2.2em;
  margin: 0;
  overflow: hidden;
  color: var(--blue-950);
  font-size: clamp(31px, 2.55vw, 39px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.v2-market-product-rail .v2-market-product-card__outcome p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.v2-market-product-card__visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  align-self: end;
  margin:
    var(--space-4)
    calc(-1 * var(--v2-product-card-padding))
    calc(-1 * var(--v2-product-card-padding));
  background:
    radial-gradient(
      circle at 50% 48%,
      color-mix(in srgb, var(--v2-product-card-accent) 28%, transparent),
      transparent 42%
    ),
    linear-gradient(155deg, var(--v2-product-card-glow), var(--gray-100));
}

.v2-market-product-card__visual::before,
.v2-market-product-card__visual::after,
.v2-market-product-card__visual-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid color-mix(in srgb, var(--v2-product-card-accent) 34%, transparent);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-12deg);
}

.v2-market-product-card__visual::before {
  width: 310px;
  height: 168px;
}

.v2-market-product-card__visual::after {
  width: 226px;
  height: 226px;
  border-color: color-mix(in srgb, var(--v2-product-card-accent) 18%, transparent);
}

.v2-market-product-card__visual-orbit {
  width: 360px;
  height: 112px;
  transform: translate(-50%, -50%) rotate(18deg);
}

.v2-market-product-card__visual-icon {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  display: grid;
  width: 166px;
  height: 166px;
  border: 1px solid color-mix(in srgb, var(--v2-product-card-accent) 24%, transparent);
  border-radius: 42px;
  background: color-mix(in srgb, var(--bg-content) 72%, transparent);
  box-shadow:
    0 22px 60px rgba(6, 28, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: var(--v2-product-card-accent);
  place-items: center;
  transform:
    translate(-50%, -48%)
    rotate(var(--v2-product-visual-turn, -5deg));
  transition: transform var(--duration-slow) var(--ease-out);
}

.v2-market-product-card__visual-icon svg {
  transform-origin: center;
  transition: transform var(--duration-slow) var(--ease-out);
}

@keyframes v2-product-focus-in {
  0% {
    opacity: 0.25;
    transform: scale(0.68);
  }

  68% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes v2-product-assemble-in {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) rotate(-9deg) scale(0.88);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

@keyframes v2-product-flow-in {
  from {
    opacity: 0;
    transform: translate3d(-34px, 0, 0) skewX(-7deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewX(0);
  }
}

@keyframes v2-product-orbit-in {
  from {
    opacity: 0;
    transform: rotate(-32deg) scale(0.78);
  }

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

@keyframes v2-product-pulse-in {
  0% {
    opacity: 0.25;
    transform: scale(0.74);
  }

  62% {
    opacity: 1;
    transform: scale(1.06);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes v2-product-scan-in {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scaleY(0.72);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}

.v2-market-product-card[data-motion-kind="focus"] .v2-market-product-card__visual-orbit {
  width: 230px;
  height: 230px;
}

.v2-market-product-card[data-motion-kind="assemble"] .v2-market-product-card__visual-orbit {
  width: 210px;
  height: 210px;
  border-radius: 52px;
  transform: translate(-50%, -50%) rotate(42deg);
}

.v2-market-product-card[data-motion-kind="flow"] .v2-market-product-card__visual-orbit {
  width: 420px;
  height: 74px;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.v2-market-product-card[data-motion-kind="pulse"] .v2-market-product-card__visual-orbit {
  width: 190px;
  height: 190px;
  border-width: 2px;
}

.v2-market-product-card[data-motion-kind="scan"] .v2-market-product-card__visual-orbit {
  width: 360px;
  height: 150px;
  border-radius: 24px;
  transform: translate(-50%, -50%);
}

.v2-market-product-card__footer {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0;
  border: 0;
}

.v2-market-product-card__page-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: var(--space-2);
  color: var(--blue-700);
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.v2-market-product-card__page-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.v2-market-product-card__footer button,
.v2-market-product-card__footer button[aria-pressed="true"] {
  display: inline-grid;
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(224, 224, 229, 0.94);
  color: var(--gray-700);
  cursor: pointer;
  place-items: center;
  transition:
    background var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out,
    transform var(--v4-duration-fast) ease-out;
}

.v2-market-product-card.is-selected .v2-market-product-card__footer button {
  background: var(--blue-900);
  color: var(--text-on-accent);
}

.v2-market-product-card__footer button:hover {
  background: var(--blue-900);
  color: var(--text-on-accent);
  transform: scale(1.06);
}

.v2-market-product-card__footer button:focus-visible {
  outline: 3px solid var(--blue-700);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .v2-market-product-rail .v2-market-product-card:hover {
    box-shadow: 0 22px 58px rgba(6, 28, 61, 0.15);
    transform: translateY(-4px);
  }

  .v2-market-product-card:hover .v2-market-product-card__visual-icon {
    transform: translate(-50%, -52%) rotate(-2deg) scale(1.035);
  }

  .v2-market-product-card[data-motion-kind="focus"]:hover .v2-market-product-card__visual-icon svg {
    transform: scale(var(--v2-product-motion-scale, 1.06));
  }

  .v2-market-product-card[data-motion-kind="assemble"]:hover .v2-market-product-card__visual-icon svg {
    transform:
      translateY(calc(-1 * var(--v2-product-motion-y, 6px)))
      rotate(calc(-1 * var(--v2-product-motion-rotate, 4deg)));
  }

  .v2-market-product-card[data-motion-kind="flow"]:hover .v2-market-product-card__visual-icon svg {
    transform: translateX(var(--v2-product-motion-x, 7px));
  }

  .v2-market-product-card[data-motion-kind="orbit"]:hover .v2-market-product-card__visual-icon svg {
    transform: rotate(var(--v2-product-motion-rotate, 8deg));
  }

  .v2-market-product-card[data-motion-kind="pulse"]:hover .v2-market-product-card__visual-icon svg {
    transform: scale(var(--v2-product-motion-scale, 1.05));
  }

  .v2-market-product-card[data-motion-kind="scan"]:hover .v2-market-product-card__visual-icon svg {
    transform: translateY(calc(-1 * var(--v2-product-motion-y, 5px)));
  }

}

.v2-market-selected-product {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.6fr);
  gap: var(--space-8);
  margin-top: var(--space-7);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  border-radius: var(--radius-xl);
  background: var(--bg-content);
  box-shadow: var(--shadow-1);
}

.v2-market-selected-product__outcome > span,
.v2-market-selected-product dt {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.03em;
}

.v2-market-selected-product__outcome > strong {
  display: block;
  margin-top: var(--space-3);
  color: var(--blue-950);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.v2-market-selected-product dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin: 0;
}

.v2-market-selected-product dl > div {
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.v2-market-selected-product dd {
  margin: var(--space-3) 0 0;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
}

@media (pointer: coarse) {
  .v2-market-product-grid.v2-market-product-rail {
    scroll-snap-type: inline mandatory;
  }
}

@media (max-width: 820px) {
  .v2-product-rail-heading {
    display: grid;
    align-items: start;
    gap: var(--space-6);
  }

  .v2-market-product-shelf__header,
  .v2-market-product-shelf__status {
    align-items: flex-start;
  }

  .v2-market-product-shelf__header {
    display: grid;
    gap: var(--space-4);
  }

  .v2-market-product-shelf__status {
    width: 100%;
    justify-content: space-between;
  }

  .v2-market-product-grid.v2-market-product-rail {
    grid-auto-columns: min(84vw, 360px);
    grid-template-columns: none;
    padding-bottom: var(--space-6);
  }

  .v2-market-product-rail .v2-market-product-card {
    --v2-product-card-padding: 28px;
    min-height: 570px;
    grid-template-rows: auto auto auto minmax(220px, 1fr);
    border-radius: 28px;
  }

  .v2-market-product-rail .v2-market-product-card h3 {
    font-size: 31px;
  }

  .v2-market-product-card__visual {
    min-height: 230px;
  }

  .v2-market-product-card__visual-icon {
    width: 146px;
    height: 146px;
    border-radius: 36px;
  }

  .v2-market-selected-product,
  .v2-market-selected-product dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .v2-market-product-rail-controls button {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  .v2-market-product-grid.v2-market-product-rail {
    grid-auto-columns: min(82vw, 340px);
    gap: var(--space-4);
  }

  .v2-market-product-rail .v2-market-product-card {
    min-height: 550px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-market-product-grid.v2-market-product-rail {
    scroll-behavior: auto;
  }

  .v2-market-product-rail .v2-market-product-card,
  .v2-market-product-card__visual-icon,
  .v2-market-product-card__visual-icon svg,
  .v2-market-product-card__footer button,
  .v2-market-product-rail-controls button {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Final interaction-state overrides: no persistent blue card selection. */
.v2-market-demand-card,
.v2-market-demand-card:hover,
.v2-market-demand-card.is-active {
  border-color: transparent;
  background: var(--bg-content);
}

.v2-market-demand-card.is-active {
  box-shadow: 0 18px 48px rgba(6, 28, 61, 0.13);
}

.v2-market-demand-card.is-active .v2-market-demand-card__icon {
  border-color: transparent;
  background: var(--blue-950);
  color: #fff;
}

.v2-market-card--selected {
  border-color: transparent;
  box-shadow: var(--shadow-3);
}

/*
 * Official homepage — Apple-like product hierarchy, expressed through the
 * locked MYRILUM visual system. One promise, two priority products, then the
 * broader service family. The motion is semantic, hover-only, and restrained.
 */

.v2-apple-home {
  display: grid;
  gap: 12px;
  padding: 0 0 12px;
  background: #f5f5f7;
}

.v2-apple-home-products {
  display: grid;
  gap: 12px;
}

#home-goal,
#home-services,
#home-delivery,
#home-start {
  scroll-margin-top: 88px;
}

.v2-apple-home-hero,
.v2-apple-home-spotlight,
.v2-apple-home-grid > article,
.v2-apple-home-method,
.v2-apple-home-closing {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.v2-apple-home-hero {
  display: grid;
  min-height: clamp(760px, calc(100svh - 64px), 940px);
  grid-template-rows: auto minmax(280px, 1fr);
  align-items: stretch;
  padding: clamp(88px, 9vw, 132px) var(--v4-gutter) clamp(42px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 72%, rgba(91, 149, 242, 0.28), transparent 38%),
    linear-gradient(155deg, var(--blue-950) 0%, var(--blue-900) 58%, var(--blue-800) 100%);
  color: var(--text-on-accent);
  isolation: isolate;
}

.v2-apple-home-hero::after {
  position: absolute;
  z-index: -1;
  right: -9vw;
  bottom: -18vw;
  width: min(52vw, 720px);
  height: min(52vw, 720px);
  border: 1px solid rgba(194, 213, 248, 0.22);
  border-radius: 50%;
  content: "";
}

.v2-apple-home-hero__copy,
.v2-apple-home-module-copy,
.v2-apple-home-closing {
  position: relative;
  z-index: 2;
  text-align: center;
}

.v2-apple-home-hero__copy {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.v2-apple-home-hero__eyebrow {
  margin: 0;
  color: var(--blue-200);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-apple-home-hero h1 {
  margin: 0 auto;
  color: #fff;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.v2-apple-home-hero__lead {
  max-width: 780px;
  margin: var(--space-5) auto 0;
  color: var(--blue-100);
  font-size: clamp(21px, 2.4vw, 32px);
  font-weight: var(--weight-medium);
  letter-spacing: -0.025em;
  line-height: 1.22;
  text-wrap: balance;
}

.v2-apple-home-goal-router {
  width: min(100%, 960px);
  margin: var(--space-8) auto 0;
}

.v2-apple-home-goal-search {
  display: grid;
  gap: var(--space-3);
}

.v2-apple-home-goal-search > label {
  color: var(--blue-100);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1.4;
  text-align: left;
}

.v2-apple-home-goal-search__field {
  display: grid;
  min-height: 66px;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-3);
  padding: 6px 6px 6px var(--space-4);
  border: 1px solid rgba(194, 213, 248, 0.68);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(3, 20, 47, 0.28);
  color: var(--blue-700);
}

.v2-apple-home-goal-search__field:focus-within {
  outline: 3px solid var(--amber-400);
  outline-offset: 3px;
}

.v2-apple-home-goal-search__field input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--blue-950);
  font: inherit;
  font-size: 17px;
  line-height: 1.4;
}

.v2-apple-home-goal-search__field input::placeholder {
  color: var(--gray-500);
  opacity: 1;
}

.v2-apple-home-goal-search__field button,
.v2-apple-home-goal-result button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-5);
  border: 0;
  border-radius: 14px;
  background: var(--amber-400);
  color: var(--amber-900);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: var(--weight-semibold);
  transition:
    background var(--v4-duration-fast) ease-out,
    border-color var(--v4-duration-fast) ease-out,
    color var(--v4-duration-fast) ease-out,
    opacity var(--v4-duration-fast) ease-out,
    transform var(--v4-duration-fast) ease-out;
}

.v2-apple-home-goal-search__field button:disabled {
  cursor: default;
  opacity: 0.45;
}

.v2-apple-home-goal-search__field button:focus-visible,
.v2-apple-home-goal-examples button:focus-visible,
.v2-apple-home-goal-browse:focus-visible {
  outline: 3px solid var(--amber-300);
  outline-offset: 3px;
}

.v2-apple-home-goal-result button:focus-visible {
  outline: 3px solid var(--blue-800);
  outline-offset: 3px;
}

.v2-apple-home-goal-examples {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  color: var(--blue-100);
  text-align: left;
}

.v2-apple-home-goal-examples > span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-300);
  font-size: 12px;
  font-weight: var(--weight-semibold);
}

.v2-apple-home-goal-examples > div {
  display: flex;
  flex: 1 1 520px;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.v2-apple-home-goal-examples button {
  min-height: 44px;
  padding: 0 var(--space-3);
  border: 1px solid rgba(194, 213, 248, 0.28);
  border-radius: var(--radius-full);
  background: rgba(16, 49, 103, 0.78);
  color: var(--blue-100);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}

.v2-apple-home-goal-browse {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: var(--space-1);
  margin-left: auto;
  color: var(--blue-100);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.v2-apple-home-goal-browse svg,
.v2-apple-home-goal-primary-match a::after,
.v2-apple-home-actions a::after {
  display: inline-block;
  transition: transform var(--v4-duration-expand) ease-out;
}

.v2-apple-home-goal-router :where(button:not(:disabled), a):active,
.v2-apple-home-actions a:active {
  transform: scale(0.98);
}

.v2-apple-home-actions a:not(.is-primary):focus-visible::after,
.v2-apple-home-goal-primary-match a:focus-visible::after,
.v2-apple-home-goal-browse:focus-visible svg {
  transform: translateX(3px);
}

.v2-apple-home-goal-result[data-state="idle"] {
  display: none;
}

.v2-apple-home-goal-result__surface {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-5);
  padding: clamp(24px, 3vw, 38px);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 86px rgba(3, 20, 47, 0.34);
  color: var(--blue-950);
  text-align: left;
  animation: v2-apple-home-result-enter var(--v4-duration-expand) ease-out both;
}

@keyframes v2-apple-home-result-enter {
  from {
    opacity: 0.78;
    transform: translateY(8px);
  }

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

.v2-apple-home-goal-result__surface > header {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-5);
}

.v2-apple-home-goal-result__surface > header > div {
  display: grid;
  gap: var(--space-2);
}

.v2-apple-home-goal-result__surface > header span,
.v2-apple-home-goal-primary-match > span,
.v2-apple-home-goal-other-matches > span {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-apple-home-goal-result__surface > header h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.v2-apple-home-goal-result__surface > header q {
  color: var(--amber-800);
  font-size: 16px;
  font-weight: var(--weight-semibold);
  quotes: "“" "”";
}

.v2-apple-home-goal-result__surface > header p {
  margin: 0;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.55;
}

.v2-apple-home-goal-result__surface > header button {
  min-height: 44px;
  padding: 0 var(--space-4);
  border: 1px solid var(--gray-300);
  background: var(--gray-50);
  color: var(--blue-800);
}

.v2-apple-home-goal-primary-match {
  display: grid;
  gap: var(--space-3);
  padding: clamp(22px, 3vw, 32px);
  border-left: 4px solid var(--amber-400);
  border-radius: 0 20px 20px 0;
  background: var(--blue-50);
}

.v2-apple-home-goal-primary-match h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.v2-apple-home-goal-primary-match p,
.v2-apple-home-goal-no-match p {
  margin: 0;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
}

.v2-apple-home-goal-primary-match a {
  display: inline-flex;
  min-height: 44px;
  width: fit-content;
  align-items: center;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.v2-apple-home-goal-primary-match a::after {
  margin-left: 0.34em;
  content: "›";
  font-size: 1.35em;
}

.v2-apple-home-goal-other-matches {
  display: grid;
  gap: var(--space-3);
}

.v2-apple-home-goal-other-matches ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-apple-home-goal-other-matches a {
  display: grid;
  min-height: 72px;
  align-content: center;
  gap: var(--space-1);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--gray-50);
  color: var(--blue-950);
}

.v2-apple-home-goal-other-matches small {
  color: var(--gray-600);
  font-size: 12px;
}

.v2-apple-home-goal-no-match {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-5);
  border-left: 4px solid var(--amber-400);
  background: var(--amber-50);
}

.v2-apple-home-goal-result__actions {
  display: flex;
  justify-content: flex-start;
}

.v2-apple-home-goal-result__actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-5);
  border-radius: var(--radius-full);
  background: var(--blue-900);
  color: #fff;
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.v2-apple-home-hero:has(.v2-apple-home-goal-result[data-state="resolved"]) {
  min-height: 0;
  grid-template-rows: auto;
}

.v2-apple-home-hero:has(.v2-apple-home-goal-result[data-state="resolved"]) .v2-apple-home-hero__visual {
  display: none;
}

.v2-apple-home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3) var(--space-5);
  margin-top: var(--space-6);
}

.v2-apple-home-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-2);
  border-radius: var(--radius-full);
  color: var(--blue-700);
  font-size: 16px;
  font-weight: var(--weight-medium);
  line-height: 1.2;
  transition:
    background var(--v4-duration-expand) ease-out,
    color var(--v4-duration-expand) ease-out,
    transform var(--v4-duration-expand) ease-out;
}

.v2-apple-home-actions a::after {
  margin-left: 0.36em;
  content: "›";
  font-size: 1.35em;
  line-height: 0;
}

.v2-apple-home-actions a.is-primary {
  min-height: 46px;
  padding: 0 var(--space-5);
  background: var(--blue-900);
  color: #fff;
}

.v2-apple-home-actions a.is-primary::after {
  display: none;
}

.v2-apple-home-actions a:focus-visible,
.v2-apple-home-goal-primary-match a:focus-visible,
.v2-apple-home-goal-other-matches a:focus-visible,
.v2-apple-home-goal-result__actions a:focus-visible {
  outline: 3px solid var(--blue-800);
  outline-offset: 3px;
}

.v2-apple-home-spotlight[data-tone="navy"] .v2-apple-home-actions a:focus-visible,
.v2-apple-home-grid > article[data-tone="navy"] .v2-apple-home-actions a:focus-visible,
.v2-apple-home-method .v2-apple-home-actions a:focus-visible {
  outline-color: var(--amber-300);
}

.v2-apple-home-hero .v2-apple-home-actions a {
  color: var(--blue-100);
}

.v2-apple-home-hero .v2-apple-home-actions a.is-primary,
.v2-apple-home-method .v2-apple-home-actions a.is-primary {
  background: var(--amber-400);
  color: var(--amber-900);
}

.v2-apple-home-hero__visual {
  position: relative;
  display: flex;
  width: min(100%, 760px);
  min-height: 270px;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 28px);
  margin: clamp(28px, 5vw, 58px) auto 0;
}

.v2-apple-home-hero__visual > div {
  display: grid;
  width: clamp(138px, 20vw, 214px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(228, 237, 252, 0.24);
  border-radius: clamp(38px, 5vw, 62px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 28px 70px rgba(3, 20, 47, 0.34);
  color: var(--blue-100);
  backdrop-filter: blur(16px) saturate(1.12);
  transition:
    transform var(--v4-duration-expand) ease-out,
    background var(--v4-duration-expand) ease-out;
}

.v2-apple-home-hero__visual > div:nth-child(1) {
  transform: translateY(24px) rotate(-4deg);
}

.v2-apple-home-hero__visual > div:nth-child(2) {
  width: clamp(168px, 24vw, 252px);
  color: var(--amber-300);
}

.v2-apple-home-hero__visual > div:nth-child(3) {
  color: #fff;
  transform: translateY(24px) rotate(4deg);
}

.v2-apple-home-stack {
  display: grid;
  gap: 14px;
}

.v2-apple-home-spotlight {
  display: grid;
  min-height: clamp(650px, 76vw, 790px);
  grid-template-rows: auto minmax(330px, 1fr);
  align-items: stretch;
  padding: clamp(72px, 7vw, 104px) var(--v4-gutter) clamp(44px, 5vw, 72px);
  background: var(--bg-content);
}

.v2-apple-home-spotlight[data-media="full-bleed"] {
  overflow: hidden;
  min-height: 0;
  grid-template-rows: auto auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding-right: 0;
  padding-bottom: clamp(36px, 4vw, 56px);
  padding-left: 0;
}

.v2-apple-home-spotlight[data-media="full-bleed"] .v2-apple-home-module-copy {
  padding-right: var(--v4-gutter);
  padding-left: var(--v4-gutter);
}

.v2-apple-home-module-copy {
  width: min(100%, 820px);
  margin: 0 auto;
}

.v2-apple-home-module-copy h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.v2-apple-home-module-copy > p {
  max-width: 710px;
  margin: var(--space-4) auto 0;
  color: var(--gray-700);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: var(--weight-regular);
  letter-spacing: -0.018em;
  line-height: 1.4;
  text-wrap: balance;
}

.v2-apple-home-spotlight[data-tone="ice"],
.v2-apple-home-grid > article[data-tone="ice"] {
  background:
    radial-gradient(circle at 50% 78%, rgba(91, 149, 242, 0.18), transparent 38%),
    var(--blue-50);
}

.v2-apple-home-spotlight[data-tone="light"],
.v2-apple-home-grid > article[data-tone="light"] {
  background: var(--bg-content);
}

.v2-apple-home-spotlight[data-media="full-bleed"][data-tone="ice"] {
  background:
    radial-gradient(circle at 50% 70%, rgba(181, 199, 226, 0.32), transparent 44%),
    linear-gradient(180deg, #f5f5f7 0%, #edf1f6 100%);
}

.v2-apple-home-spotlight[data-media="full-bleed"][data-tone="light"] {
  background:
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.82), transparent 42%),
    linear-gradient(135deg, #d5efff 0%, #eef9ff 52%, #dceeff 100%);
}

.v2-apple-home-spotlight[data-tone="soft"],
.v2-apple-home-grid > article[data-tone="soft"] {
  background:
    radial-gradient(circle at 78% 82%, rgba(173, 98, 0, 0.08), transparent 35%),
    var(--amber-50);
}

.v2-apple-home-grid > article[data-product="knowledge"] {
  background: linear-gradient(180deg, #f5f1e8 0%, #f6f0e6 52%, #f6efe5 100%);
}

.v2-apple-home-grid > article[data-product="models"] {
  background: linear-gradient(180deg, #071226 0%, #0a1832 54%, #0b162c 100%);
}

.v2-apple-home-grid > article[data-product="models"] .v2-apple-home-actions a.is-primary {
  background: var(--amber-300);
  color: var(--amber-900);
}

.v2-apple-home-grid > article[data-product="enterprise"] {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(169, 177, 192, 0.32), transparent 38%),
    linear-gradient(180deg, #e9edf5 0%, #e7ebf3 54%, #e5e8f1 100%);
}

.v2-apple-home-grid > article[data-product="infrastructure"] {
  background: linear-gradient(180deg, #f2f1ed 0%, #f1f0ec 52%, #efeee9 100%);
}

.v2-apple-home-grid > article[data-tone="navy"][data-product="trust"] {
  background:
    radial-gradient(ellipse at 50% 100%, #173368 0%, rgba(23, 51, 104, 0) 46%),
    #0d214b;
}

.v2-apple-home-grid > article[data-product="operations"] {
  background: linear-gradient(
    180deg,
    #fff6ed 0%,
    #fff6ed 50%,
    #ebe6e3 75%,
    #d4d1d8 100%
  );
}

.v2-apple-home-spotlight[data-tone="navy"],
.v2-apple-home-grid > article[data-tone="navy"] {
  background:
    radial-gradient(circle at 52% 84%, rgba(91, 149, 242, 0.24), transparent 42%),
    var(--blue-950);
  color: #fff;
}

[data-tone="navy"] .v2-apple-home-module-copy h2 {
  color: #fff;
}

[data-tone="navy"] .v2-apple-home-module-copy > p {
  color: var(--blue-100);
}

[data-tone="navy"] .v2-apple-home-actions a {
  color: var(--blue-100);
}

[data-tone="navy"] .v2-apple-home-actions a.is-primary {
  background: #fff;
  color: var(--blue-950);
}

.v2-apple-home-visual {
  position: relative;
  display: grid;
  width: min(90vw, 720px);
  min-height: 350px;
  align-self: end;
  place-items: center;
  margin: clamp(34px, 5vw, 64px) auto 0;
  color: var(--blue-700);
  isolation: isolate;
}

.v2-apple-home-media {
  position: relative;
  width: 100%;
  align-self: start;
  margin: clamp(30px, 4vw, 52px) auto 0;
  background: transparent;
}

.v2-apple-home-media__stage {
  display: grid;
  width: 100%;
  place-items: center;
  transform-origin: center bottom;
}

.v2-apple-home-media img {
  display: block;
  width: min(42vw, 820px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.v2-apple-home-spotlight[data-media="full-bleed"] .v2-apple-home-media {
  height: min(28vw, 546.667px);
}

.v2-apple-home-spotlight[data-product="digital-products"] .v2-apple-home-media img {
  width: min(35.7vw, 697px);
  transform: translateY(-9.49%);
}

.v2-apple-home-visual::before {
  position: absolute;
  z-index: -1;
  width: min(72vw, 560px);
  aspect-ratio: 1.45;
  border: 1px solid rgba(135, 169, 227, 0.34);
  border-radius: clamp(48px, 7vw, 96px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 36px 90px rgba(24, 68, 137, 0.14);
  content: "";
  backdrop-filter: blur(18px) saturate(1.08);
}

[data-tone="navy"] .v2-apple-home-visual::before {
  border-color: rgba(194, 213, 248, 0.18);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 36px 90px rgba(0, 0, 0, 0.24);
}

.v2-apple-home-visual__main,
.v2-apple-home-visual__artifact {
  position: absolute;
  display: grid;
  place-items: center;
  transition: transform var(--v4-duration-expand) ease-out;
}

.v2-apple-home-visual__main {
  color: currentColor;
}

.v2-apple-home-visual__artifact {
  width: 94px;
  height: 94px;
  border: 1px solid rgba(135, 169, 227, 0.36);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(24, 68, 137, 0.18);
  color: var(--amber-700);
}

[data-tone="navy"] .v2-apple-home-visual__main {
  color: var(--blue-200);
}

[data-tone="navy"] .v2-apple-home-visual__artifact {
  border-color: rgba(194, 213, 248, 0.2);
  background: rgba(255, 255, 255, 0.14);
  color: var(--amber-300);
}

.v2-apple-home-visual[data-composition="workflow"] .v2-apple-home-visual__main {
  left: 24%;
  transform: rotate(-5deg);
}

.v2-apple-home-visual[data-composition="workflow"] .v2-apple-home-visual__artifact {
  right: 21%;
  transform: translateY(54px) rotate(6deg);
}

.v2-apple-home-visual[data-composition="product"]::before {
  aspect-ratio: 1.62;
  border-radius: 38px;
}

.v2-apple-home-visual[data-composition="product"] .v2-apple-home-visual__main {
  transform: translateX(-30px) scale(1.12);
}

.v2-apple-home-visual[data-composition="product"] .v2-apple-home-visual__artifact {
  right: 18%;
  bottom: 12%;
  transform: rotate(-5deg);
}

.v2-apple-home-visual[data-composition="model"] .v2-apple-home-visual__main {
  transform: translateY(18px) scale(1.04);
}

.v2-apple-home-visual[data-composition="model"] .v2-apple-home-visual__artifact {
  top: 9%;
  right: 20%;
  transform: rotate(7deg);
}

.v2-apple-home-visual[data-composition="knowledge"] .v2-apple-home-visual__main {
  left: 25%;
  bottom: 17%;
}

.v2-apple-home-visual[data-composition="knowledge"] .v2-apple-home-visual__artifact {
  top: 14%;
  right: 21%;
  width: 118px;
  height: 118px;
  transform: rotate(5deg);
}

.v2-apple-home-visual[data-composition="integration"] .v2-apple-home-visual__main {
  left: 22%;
  transform: scale(0.94);
}

.v2-apple-home-visual[data-composition="integration"] .v2-apple-home-visual__artifact {
  right: 17%;
  transform: rotate(90deg);
}

.v2-apple-home-visual[data-composition="compute"]::before {
  aspect-ratio: 1;
  width: min(58vw, 390px);
}

.v2-apple-home-visual[data-composition="compute"] .v2-apple-home-visual__main {
  transform: rotate(-4deg) scale(1.08);
}

.v2-apple-home-visual[data-composition="compute"] .v2-apple-home-visual__artifact {
  right: 22%;
  bottom: 11%;
  transform: rotate(8deg);
}

.v2-apple-home-visual[data-composition="trust"]::before {
  aspect-ratio: 1;
  width: min(58vw, 400px);
  border-radius: 50%;
}

.v2-apple-home-visual[data-composition="trust"] .v2-apple-home-visual__main {
  transform: scale(1.08);
}

.v2-apple-home-visual[data-composition="trust"] .v2-apple-home-visual__artifact {
  width: 86px;
  height: 86px;
  transform: translate(36px, 34px);
  border-radius: 50%;
}

.v2-apple-home-visual[data-composition="operations"] .v2-apple-home-visual__main {
  left: 24%;
  transform: rotate(-8deg);
}

.v2-apple-home-visual[data-composition="operations"] .v2-apple-home-visual__artifact {
  right: 19%;
  width: 132px;
  height: 86px;
  border-radius: 28px;
  transform: translateY(40px);
}

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

.v2-apple-home-grid > article {
  display: grid;
  min-height: 680px;
  grid-template-rows: auto minmax(270px, 1fr);
  padding: clamp(64px, 6vw, 88px) clamp(28px, 4.2vw, 64px) clamp(36px, 4vw, 56px);
  background: var(--bg-content);
}

.v2-apple-home-grid .v2-apple-home-module-copy h2 {
  font-size: clamp(38px, 4.1vw, 58px);
}

.v2-apple-home-grid > article[data-product="infrastructure"] .v2-apple-home-module-copy h2 {
  font-size: clamp(36px, 3.6vw, 52px);
}

.v2-apple-home-grid .v2-apple-home-module-copy > p {
  font-size: clamp(17px, 1.7vw, 21px);
}

.v2-apple-home-grid .v2-apple-home-visual {
  width: 100%;
  min-height: 300px;
}

.v2-apple-home-grid .v2-apple-home-media[data-media-variant="tile"] {
  display: grid;
  width: 100%;
  min-height: 300px;
  align-self: end;
  place-items: center;
  margin: clamp(28px, 4vw, 48px) auto 0;
}

.v2-apple-home-grid .v2-apple-home-media[data-media-variant="tile"] .v2-apple-home-media__stage {
  align-self: end;
}

html[data-motion-engine="css"] .v2-apple-home-media[data-composition] .v2-apple-home-media__stage {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out),
    clip-path var(--duration-slow) var(--ease-in-out);
}

html[data-motion-engine="css"] .v2-apple-home-media[data-motion-reveal="true"] {
  opacity: 1;
  transform: none;
  transition: none;
}

html[data-motion-engine="css"] .v2-apple-home [data-home-motion][data-motion-reveal="true"] {
  opacity: 0.92;
  transform: translateY(10px);
}

html[data-motion-engine="css"]
  .v2-apple-home
  [data-home-motion][data-motion-reveal="true"][data-motion-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
}

html[data-motion-engine="css"]
  .v2-apple-home
  [data-home-motion][data-motion-reveal="true"]:is(:focus, :focus-within) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

html[data-motion-engine="css"] .v2-apple-home [data-home-motion="eyebrow"] {
  transition-duration: 180ms;
}

html[data-motion-engine="css"] .v2-apple-home [data-home-motion="title"] {
  transition-duration: 240ms;
}

html[data-motion-engine="css"] .v2-apple-home [data-home-motion="lead"] {
  transition-duration: 220ms;
}

html[data-motion-engine="css"] .v2-apple-home [data-home-motion="goal-router"],
html[data-motion-engine="css"] .v2-apple-home [data-home-motion="copy"],
html[data-motion-engine="css"] .v2-apple-home [data-home-motion="actions"] {
  transition-duration: 240ms;
}

html[data-motion-engine="css"] .v2-apple-home-media[data-composition="workflow"] .v2-apple-home-media__stage,
html[data-motion-engine="css"] .v2-apple-home-media[data-composition="knowledge"] .v2-apple-home-media__stage {
  transform: translateX(-12px);
}

html[data-motion-engine="css"] .v2-apple-home-media[data-composition="product"] .v2-apple-home-media__stage {
  transform: translateY(12px) scale(0.985);
}

html[data-motion-engine="css"] .v2-apple-home-media[data-composition="model"] .v2-apple-home-media__stage {
  transform: scale(1.02);
}

html[data-motion-engine="css"] .v2-apple-home-media[data-composition="integration"] .v2-apple-home-media__stage {
  transform: scale(0.975);
}

html[data-motion-engine="css"] .v2-apple-home-media[data-composition="compute"] .v2-apple-home-media__stage {
  transform: translateY(10px);
}

html[data-motion-engine="css"] .v2-apple-home-media[data-composition="trust"] .v2-apple-home-media__stage {
  clip-path: inset(0 0 12% 0);
  transform: none;
}

html[data-motion-engine="css"] .v2-apple-home-media[data-composition="operations"] .v2-apple-home-media__stage {
  transform: rotate(-1deg) scale(0.985);
}

html[data-motion-engine="css"] .v2-apple-home-media[data-composition][data-motion-revealed="true"] .v2-apple-home-media__stage {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: none;
}

.v2-apple-home-grid .v2-apple-home-media[data-media-variant="tile"] img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.v2-apple-home-grid > article[data-product="models"] .v2-apple-home-media img {
  object-position: 52% center;
}

.v2-apple-home-grid > article[data-product="knowledge"] .v2-apple-home-media[data-media-variant="tile"] {
  align-self: start;
}

.v2-apple-home-grid .v2-apple-home-visual::before {
  width: min(38vw, 420px);
}

.v2-apple-home-grid .v2-apple-home-visual__main svg {
  width: clamp(132px, 15vw, 184px);
  height: clamp(132px, 15vw, 184px);
}

.v2-apple-home-method {
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: var(--blue-950);
  color: #fff;
}

.v2-apple-home-method__copy {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(72px, 7vw, 112px) var(--v4-gutter) clamp(48px, 5vw, 76px);
  text-align: center;
}

.v2-apple-home-method__copy > p:not(.v2-apple-home-method__body) {
  margin: 0;
  color: var(--amber-300);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.09em;
}

.v2-apple-home-method__copy h2 {
  margin: var(--space-4) 0 0;
  color: #fff;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.058em;
  line-height: 1.01;
  text-wrap: balance;
}

.v2-apple-home-method__body {
  display: block;
  max-width: 680px;
  margin: var(--space-5) auto 0;
  color: var(--blue-100);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.v2-apple-home-method .v2-apple-home-actions {
  justify-content: center;
}

.v2-apple-home-method .v2-apple-home-actions a:not(.is-primary) {
  color: var(--blue-100);
}

.v2-apple-home-method__visual {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2560 / 966;
  min-height: 0;
  overflow: hidden;
  background: #344351;
  line-height: 0;
}

.v2-apple-home-method__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 20, 47, 0.58) 0%,
    rgba(4, 20, 47, 0.08) 20%,
    rgba(4, 20, 47, 0) 70%,
    rgba(4, 20, 47, 0.46) 100%
  );
  content: "";
  pointer-events: none;
}

.v2-apple-home-method__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.v2-apple-home-closing {
  display: grid;
  min-height: 480px;
  align-content: center;
  justify-items: center;
  padding: clamp(80px, 10vw, 140px) var(--v4-gutter);
  background: var(--bg-content);
}

.v2-apple-home-closing h2 {
  max-width: 940px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.058em;
  line-height: 1.02;
  text-wrap: balance;
}

.v2-apple-home-closing > p {
  max-width: 720px;
  margin: var(--space-5) auto 0;
  color: var(--gray-700);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  text-wrap: balance;
}

@media (hover: hover) and (pointer: fine) {
  .v2-apple-home-actions a:hover {
    color: var(--blue-900);
    transform: translateY(-1px);
  }

  .v2-apple-home-actions a.is-primary:hover {
    background: var(--blue-700);
    color: #fff;
  }

  .v2-apple-home-actions a:not(.is-primary):hover::after,
  .v2-apple-home-goal-primary-match a:hover::after,
  .v2-apple-home-goal-browse:hover svg {
    transform: translateX(3px);
  }

  .v2-apple-home-hero .v2-apple-home-actions a:hover,
  [data-tone="navy"] .v2-apple-home-actions a:hover,
  .v2-apple-home-method .v2-apple-home-actions a:hover {
    color: #fff;
  }

  .v2-apple-home-hero .v2-apple-home-actions a.is-primary:hover,
  .v2-apple-home-method .v2-apple-home-actions a.is-primary:hover {
    background: var(--amber-300);
    color: var(--amber-900);
  }

  [data-tone="navy"] .v2-apple-home-actions a.is-primary:hover {
    background: var(--blue-100);
    color: var(--blue-950);
  }

  .v2-apple-home-goal-examples button:hover {
    border-color: rgba(194, 213, 248, 0.58);
    background: var(--blue-800);
    color: #fff;
  }

  .v2-apple-home-goal-search__field button:not(:disabled):hover {
    background: var(--amber-300);
  }

  .v2-apple-home-goal-result__surface > header button:hover {
    border-color: var(--blue-200);
    background: #fff;
    color: var(--blue-950);
  }

  .v2-apple-home-goal-browse:hover {
    color: #fff;
  }

  .v2-apple-home-goal-other-matches a:hover {
    border-color: var(--gray-300);
    background: #fff;
    box-shadow: var(--shadow-1);
  }

}

.chapter-rail {
  right: var(--space-4);
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  background: var(--material-popover);
  box-shadow: var(--shadow-2);
}

.chapter-rail a {
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-2);
}

.chapter-rail a:focus-visible {
  outline: 3px solid var(--blue-800);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .v2-apple-home-grid {
    grid-template-columns: 1fr;
  }

  .v2-apple-home-grid > article {
    min-height: 640px;
  }

  .v2-apple-home-grid .v2-apple-home-visual::before {
    width: min(70vw, 480px);
  }

  .v2-apple-home-method {
    text-align: center;
  }

  .v2-apple-home-method__copy {
    margin: 0 auto;
  }

  .v2-apple-home-method .v2-apple-home-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .v2-apple-home {
    gap: 8px;
    padding-bottom: 8px;
  }

  .v2-apple-home-stack,
  .v2-apple-home-grid {
    gap: 8px;
  }

  .v2-apple-home-hero {
    min-height: 0;
    grid-template-rows: auto;
    padding: 64px var(--space-5) 48px;
  }

  .v2-apple-home-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .v2-apple-home-hero__lead {
    font-size: 21px;
  }

  .v2-apple-home-goal-router {
    margin-top: var(--space-6);
  }

  .v2-apple-home-goal-search__field {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 6px;
    padding-left: var(--space-3);
    border-radius: 18px;
  }

  .v2-apple-home-goal-search__field button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .v2-apple-home-goal-examples {
    display: grid;
  }

  .v2-apple-home-goal-examples > span {
    min-height: 28px;
  }

  .v2-apple-home-goal-examples > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v2-apple-home-goal-examples button {
    width: 100%;
    text-align: left;
  }

  .v2-apple-home-goal-browse {
    width: fit-content;
    margin-left: 0;
  }

  .v2-apple-home-goal-result__surface {
    margin-right: calc(-1 * var(--space-2));
    margin-left: calc(-1 * var(--space-2));
    padding: var(--space-5);
    border-radius: 24px;
  }

  .v2-apple-home-goal-result__surface > header {
    grid-template-columns: 1fr;
  }

  .v2-apple-home-goal-result__surface > header button {
    width: fit-content;
  }

  .v2-apple-home-goal-other-matches ul {
    grid-template-columns: 1fr;
  }

  .v2-apple-home-goal-result__actions a {
    width: 100%;
    text-align: center;
  }

  .v2-apple-home-actions {
    gap: var(--space-2) var(--space-3);
    margin-top: var(--space-5);
  }

  .v2-apple-home-actions a {
    font-size: 15px;
  }

  .v2-apple-home-hero__visual {
    display: none;
  }

  .v2-apple-home-hero__visual > div {
    width: clamp(98px, 30vw, 138px);
    border-radius: 30px;
  }

  .v2-apple-home-hero__visual > div:nth-child(2) {
    width: clamp(116px, 34vw, 158px);
  }

  .v2-apple-home-hero__visual svg {
    width: 54%;
    height: 54%;
  }

  .v2-apple-home-spotlight,
  .v2-apple-home-grid > article {
    min-height: 590px;
    grid-template-rows: auto minmax(250px, 1fr);
    padding: 58px var(--space-5) 32px;
  }

  .v2-apple-home-module-copy h2,
  .v2-apple-home-grid .v2-apple-home-module-copy h2 {
    font-size: clamp(38px, 10.5vw, 50px);
  }

  .v2-apple-home-module-copy > p,
  .v2-apple-home-grid .v2-apple-home-module-copy > p {
    font-size: 17px;
  }

  .v2-apple-home-visual,
  .v2-apple-home-media,
  .v2-apple-home-grid .v2-apple-home-visual {
    min-height: 250px;
    margin-top: var(--space-5);
  }

  .v2-apple-home-media {
    width: 100%;
    min-height: 0;
  }

  .v2-apple-home-media img {
    width: 78vw;
  }

  .v2-apple-home-spotlight[data-media="full-bleed"] .v2-apple-home-media {
    height: 52vw;
  }

  .v2-apple-home-spotlight[data-product="digital-products"] .v2-apple-home-media img {
    width: 66.3vw;
  }

  .v2-apple-home-spotlight[data-media="full-bleed"] {
    min-height: 0;
    grid-template-rows: auto auto;
    padding: 58px 0 36px;
  }

  .v2-apple-home-visual::before,
  .v2-apple-home-grid .v2-apple-home-visual::before {
    width: min(82vw, 390px);
  }

  .v2-apple-home-visual__main svg,
  .v2-apple-home-grid .v2-apple-home-visual__main svg {
    width: 118px;
    height: 118px;
  }

  .v2-apple-home-visual__artifact {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .v2-apple-home-visual__artifact svg {
    width: 42px;
    height: 42px;
  }

  .v2-apple-home-method {
    min-height: 0;
    gap: 0;
    padding: 0;
  }

  .v2-apple-home-method__copy {
    padding: 72px var(--space-5) 48px;
  }

  .v2-apple-home-method__copy h2,
  .v2-apple-home-closing h2 {
    font-size: clamp(42px, 11.2vw, 56px);
  }

  .v2-apple-home-method__body {
    font-size: 18px;
  }

  .v2-apple-home-method__visual {
    aspect-ratio: 2.2 / 1;
  }

  .v2-apple-home-closing {
    min-height: 440px;
    padding: 72px var(--space-5);
  }

  .v2-apple-home-closing > p {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-apple-home *,
  .v2-apple-home *::before,
  .v2-apple-home *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .v2-apple-home-media__stage,
  .v2-apple-home [data-home-motion],
  .v2-apple-home-actions a,
  .v2-apple-home-goal-router :where(button, a),
  .v2-apple-home-goal-result__surface {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Apple-structured Agent family page — narrow overrides for the dedicated route. */
.v2-agent-family-page--apple-structured {
  --agent-structured-card-width: clamp(300px, 29vw, 396px);
  --agent-structured-gutter: max(var(--v4-gutter), calc((100vw - 1280px) / 2));
}

.v2-agent-family-page--apple-structured .v2-agent-family-heading--with-link {
  position: relative;
  max-width: none;
  padding-right: 0;
}

.v2-agent-family-page--apple-structured .v2-agent-family-heading--with-link:has(> .v2-agent-family-section-link) {
  padding-right: 190px;
}

.v2-agent-family-page--apple-structured .v2-agent-family-heading--with-link > :not(.v2-agent-family-section-link) {
  max-width: 880px;
}

.v2-agent-family-page--apple-structured .v2-agent-family-heading--with-link > .v2-agent-family-section-link {
  position: absolute;
  right: 0;
  bottom: 0;
}

.v2-agent-family-page--apple-structured .v2-agent-family-section-link {
  display: inline-flex;
  width: fit-content;
  min-height: var(--v4-control-min);
  align-items: center;
  gap: var(--space-2);
  border: 0;
  background: transparent;
  color: var(--blue-700);
  font-size: 15px;
  font-weight: var(--weight-semibold);
  text-decoration: none;
}

.v2-agent-family-page--apple-structured .v2-agent-family-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-6);
}

.v2-agent-family-page--apple-structured .v2-agent-family-product-card__actions :where(a, button) {
  display: inline-flex;
  min-height: var(--v4-control-min);
  align-items: center;
  gap: var(--space-2);
  margin-top: 0;
  border: 0;
  background: transparent;
  color: var(--blue-700);
  font: inherit;
  font-weight: var(--weight-semibold);
}

.v2-agent-family-page--apple-structured .v2-agent-family-product-card__actions :where(a, button).is-primary {
  padding: 0 var(--space-5);
  border-radius: var(--radius-full);
  background: var(--blue-800);
  color: var(--text-on-accent);
}

.v2-agent-family-page--apple-structured :where(
  .v2-agent-family-features,
  .v2-agent-family-work,
  .v2-agent-family-essentials,
  .v2-agent-family-ecosystem,
  .v2-agent-family-trust-evidence
) {
  position: relative;
  padding: clamp(96px, 9vw, 152px) var(--agent-structured-gutter);
}

.v2-agent-family-page--apple-structured .v2-agent-family-features,
.v2-agent-family-page--apple-structured .v2-agent-family-essentials {
  background: var(--bg-content);
}

.v2-agent-family-page--apple-structured .v2-agent-family-work {
  background: var(--gray-50);
}

.v2-agent-family-page--apple-structured .v2-agent-family-support {
  position: relative;
}

.v2-agent-family-page--apple-structured .v2-agent-family-essentials > .v2-agent-family-rail-controls {
  position: static;
  justify-content: flex-end;
  margin-top: var(--space-5);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(40px, 6vw, 88px);
  margin-top: clamp(64px, 7vw, 104px);
  padding: clamp(36px, 5vw, 72px);
  border-radius: var(--radius-window);
  background: var(--amber-50);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator > .v2-agent-family-heading {
  grid-column: 1 / -1;
}

.v2-agent-family-page--apple-structured :where(
  .v2-agent-family-product-rail,
  .v2-agent-family-feature-rail,
  .v2-agent-family-work-rail,
  .v2-agent-family-related-rail
) {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--agent-structured-gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.v2-agent-family-page--apple-structured :where(
  .v2-agent-family-product-rail,
  .v2-agent-family-feature-rail,
  .v2-agent-family-work-rail,
  .v2-agent-family-related-rail
)::-webkit-scrollbar {
  display: none;
}

.v2-agent-family-page--apple-structured :where(
  .v2-agent-family-feature-rail,
  .v2-agent-family-work-rail,
  .v2-agent-family-related-rail
) {
  margin-top: var(--space-16);
}

.v2-agent-family-page--apple-structured :where(
  .v2-agent-family-feature-rail,
  .v2-agent-family-work-rail,
  .v2-agent-family-related-rail
) > :where(ul, ol, div),
.v2-agent-family-page--apple-structured :where(
  ul.v2-agent-family-feature-rail,
  ol.v2-agent-family-work-rail,
  ul.v2-agent-family-related-rail
) {
  display: grid;
  min-width: 100%;
  grid-auto-columns: var(--agent-structured-card-width);
  grid-auto-flow: column;
  gap: var(--space-5);
  margin: 0;
  padding: 0 var(--agent-structured-gutter) var(--space-6);
  list-style: none;
}

.v2-agent-family-page--apple-structured .v2-agent-family-product-rail > ul {
  grid-auto-columns: var(--agent-structured-card-width);
}

.v2-agent-family-page--apple-structured :where(
  .v2-agent-family-feature-card,
  .v2-agent-family-work-card
) {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-window);
  background: var(--bg-content);
  color: var(--blue-950);
  box-shadow: var(--shadow-2);
  scroll-snap-align: start;
  text-align: left;
  transition:
    transform var(--v4-duration-base) ease-out,
    box-shadow var(--v4-duration-base) ease-out;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-card {
  min-height: 500px;
  padding: clamp(28px, 3vw, 44px);
  padding-bottom: calc(var(--space-12) + 44px);
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-card > :where(svg, img, picture) {
  align-self: center;
  max-width: 100%;
  margin-block: var(--space-5) auto;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-card h3,
.v2-agent-family-page--apple-structured .v2-agent-family-work-card h3,
.v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-card p,
.v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid p {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  line-height: 1.58;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-card > small {
  margin-bottom: var(--space-3);
  color: var(--amber-800);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-card > button[aria-haspopup="dialog"] {
  position: absolute;
  right: var(--space-6);
  bottom: var(--space-6);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--blue-950);
  color: var(--text-on-accent);
  cursor: pointer;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-card > button[aria-haspopup="dialog"] > span {
  font-size: 28px;
  font-weight: var(--weight-medium);
  line-height: 1;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  place-items: center;
  margin: 0;
  padding: var(--space-6);
  overflow: hidden;
  border: 0;
  background: color-mix(in srgb, var(--blue-950) 72%, transparent);
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-modal[hidden] {
  display: none;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-modal::backdrop {
  background: color-mix(in srgb, var(--blue-950) 72%, transparent);
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-modal > :where(div, article, section) {
  position: relative;
  width: min(100%, 760px);
  max-height: min(82dvh, 820px);
  padding: clamp(28px, 5vw, 64px);
  overflow-y: auto;
  border-radius: var(--radius-window);
  background: var(--bg-content);
  color: var(--blue-950);
  box-shadow: var(--shadow-3);
  overscroll-behavior: contain;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-modal > button[aria-label],
.v2-agent-family-page--apple-structured .v2-agent-family-feature-modal > :where(div, article, section) > button[aria-label] {
  position: absolute;
  z-index: 2;
  top: var(--space-4);
  right: var(--space-4);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--blue-950);
  cursor: pointer;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-modal h2 {
  max-width: 14em;
  margin: 0;
  padding-right: var(--space-10);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.v2-agent-family-page--apple-structured .v2-agent-family-feature-modal p {
  margin: var(--space-5) 0 0;
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1.62;
}

.v2-agent-family-page--apple-structured .v2-agent-family-work-card {
  min-height: 420px;
  padding: 0;
}

.v2-agent-family-page--apple-structured .v2-agent-family-work-card > button {
  display: flex;
  width: 100%;
  min-height: inherit;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-8);
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.v2-agent-family-page--apple-structured .v2-agent-family-work-card > button > small {
  margin-top: auto;
  padding-top: var(--space-8);
  color: var(--amber-800);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-work-card > button > strong {
  margin-top: var(--space-3);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.v2-agent-family-page--apple-structured .v2-agent-family-work-card > button > span {
  margin-top: var(--space-3);
  color: var(--gray-600);
  line-height: 1.55;
}

.v2-agent-family-page--apple-structured .v2-agent-family-work-card:has(> button[aria-pressed="true"]) {
  background: var(--blue-950);
  color: var(--text-on-accent);
}

.v2-agent-family-page--apple-structured .v2-agent-family-work-card:has(> button[aria-pressed="true"]) > button > :where(small, span) {
  color: var(--blue-200);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions {
  display: grid;
  min-width: 0;
  gap: var(--space-8);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions fieldset {
  min-width: 0;
  margin: 0;
  padding: 0 0 var(--space-8);
  border: 0;
  border-bottom: 1px solid var(--gray-300);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions legend {
  padding: 0;
  color: var(--blue-950);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.025em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions fieldset > div {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions label,
.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions button {
  position: relative;
  display: inline-flex;
  min-height: var(--v4-control-min);
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-5);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  background: var(--bg-content);
  color: var(--gray-700);
  cursor: pointer;
  font: inherit;
  font-weight: var(--weight-medium);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions :where(label, button).is-selected,
.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions :where(label, button)[aria-pressed="true"] {
  border-color: var(--blue-950);
  background: var(--blue-950);
  color: var(--text-on-accent);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions label > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation {
  position: sticky;
  top: var(--agent-sticky-offset);
  align-self: start;
  min-width: 0;
  padding: var(--space-8);
  border-radius: var(--radius-window);
  background: var(--bg-content);
  box-shadow: var(--shadow-3);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation h3 {
  margin: var(--space-4) 0 0;
  font-size: clamp(28px, 2.5vw, 38px);
  letter-spacing: -0.035em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation p {
  margin: var(--space-4) 0 0;
  color: var(--gray-600);
  line-height: 1.58;
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation > span,
.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation > small {
  display: block;
  margin-top: var(--space-4);
  color: var(--gray-600);
  line-height: 1.55;
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation > strong {
  display: block;
  margin-top: var(--space-5);
  color: var(--blue-950);
  line-height: 1.5;
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation dl {
  display: grid;
  margin: var(--space-6) 0 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation dl > div {
  display: grid;
  grid-template-columns: minmax(100px, 0.7fr) minmax(0, 1.3fr);
  gap: var(--space-4);
  padding: var(--space-3) 0;
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation dl > div + div {
  border-top: 1px solid var(--gray-200);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation dt {
  color: var(--gray-600);
  font-size: 12px;
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation dd {
  margin: 0;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation a {
  display: inline-flex;
  min-height: var(--v4-control-min);
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  color: var(--blue-700);
  font-weight: var(--weight-semibold);
}

.v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-16);
}

.v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid > :where(article, section, div) {
  min-width: 0;
  min-height: 320px;
  padding: var(--space-8);
  border-radius: var(--radius-window);
  background: var(--gray-50);
}

.v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid > :where(article, section, div) > svg {
  margin-bottom: var(--space-8);
  color: var(--blue-700);
}

.v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid ul {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}

.v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
}

.v2-agent-family-page--apple-structured .v2-agent-family-essentials__related-title {
  margin: clamp(64px, 7vw, 104px) 0 0;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.035em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-related-rail > :where(ul, ol, div) > *,
.v2-agent-family-page--apple-structured :where(ul, ol).v2-agent-family-related-rail > * {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 0;
  border-radius: var(--radius-window);
  background: var(--blue-50);
  scroll-snap-align: start;
}

.v2-agent-family-page--apple-structured .v2-agent-family-related-rail li > a {
  display: flex;
  width: 100%;
  min-height: 330px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: var(--space-8);
  color: inherit;
}

.v2-agent-family-page--apple-structured .v2-agent-family-related-rail h4 {
  margin: auto 0 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-related-rail p {
  margin: var(--space-3) 0 0;
  color: var(--gray-600);
  line-height: 1.55;
}

.v2-agent-family-page--apple-structured .v2-agent-family-related-rail a > span {
  display: inline-flex;
  width: fit-content;
  min-height: var(--v4-control-min);
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  color: var(--blue-700);
  font-weight: var(--weight-semibold);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem {
  background: var(--blue-50);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: stretch;
  margin-top: var(--space-16);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion {
  min-width: 0;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion details {
  border-top: 1px solid var(--gray-300);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion article {
  border-top: 1px solid var(--gray-300);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion details:last-child {
  border-bottom: 1px solid var(--gray-300);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion article:last-child {
  border-bottom: 1px solid var(--gray-300);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--blue-950);
  cursor: pointer;
  font-size: 20px;
  font-weight: var(--weight-semibold);
  list-style: none;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion h3 {
  margin: 0;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion h3 > button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-950);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion h3 > button > span {
  flex: 1;
  font-size: 20px;
  font-weight: var(--weight-semibold);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion h3 > button > svg:last-child {
  transition: transform var(--v4-duration-base) ease-out;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion article.is-expanded h3 > button > svg:last-child {
  transform: rotate(180deg);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion summary::-webkit-details-marker {
  display: none;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion summary::after {
  content: "+";
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-content);
  color: var(--blue-950);
  font-size: 24px;
  font-weight: var(--weight-medium);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion details[open] summary::after {
  content: "−";
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion article > [role="region"] {
  margin: 0;
  padding: 0 var(--space-16) var(--space-6) 0;
  color: var(--gray-700);
  line-height: 1.58;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion article > [role="region"] p {
  margin: 0;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion article > [role="region"] strong {
  display: block;
  margin-top: var(--space-3);
  color: var(--blue-950);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion details > :not(summary) {
  margin: 0;
  padding: 0 var(--space-16) var(--space-6) 0;
  color: var(--gray-700);
  line-height: 1.58;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__visual {
  display: grid;
  min-width: 0;
  min-height: 560px;
  place-items: center;
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
  border-radius: var(--radius-window);
  background: var(--blue-950);
  color: var(--blue-100);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__visual > img {
  width: min(100%, 560px);
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__visual > div {
  align-self: end;
  text-align: center;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__visual > div > small {
  color: var(--amber-300);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__visual > div > h3 {
  margin: var(--space-3) 0 0;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__visual > div > p {
  margin: var(--space-3) 0 0;
  color: var(--blue-200);
  line-height: 1.55;
}

.v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__visual :where(img, svg) {
  max-width: 100%;
  height: auto;
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(44px, 7vw, 104px);
  background: var(--blue-950);
  color: var(--text-on-accent);
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence > div:first-child > p {
  margin: 0 0 var(--space-5);
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.09em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence > div:first-child > h2 {
  margin: 0;
  font-size: clamp(48px, 4.8vw, 68px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence > div:first-child > span {
  display: block;
  margin-top: var(--space-6);
  color: var(--blue-100);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.48;
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence > div:first-child > strong {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  color: var(--amber-300);
  line-height: 1.5;
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence > div:last-child > small {
  color: var(--amber-300);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence > div:last-child > ul {
  display: grid;
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence > div:last-child li {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 1px solid var(--blue-700);
  color: var(--blue-100);
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence .v2-agent-family-heading > p {
  color: var(--amber-400);
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence .v2-agent-family-heading > span,
.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence p {
  color: var(--blue-100);
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence > :where(ul, ol) {
  display: grid;
  align-content: start;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence > :where(ul, ol) > li {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 1px solid var(--blue-700);
  color: var(--blue-100);
}

.v2-agent-family-page--apple-structured :where(
  .v2-agent-family-section-link,
  .v2-agent-family-product-card__actions a,
  .v2-agent-family-product-card__actions button,
  .v2-agent-family-feature-card,
  .v2-agent-family-feature-card > button[aria-haspopup="dialog"],
  .v2-agent-family-work-card,
  .v2-agent-family-work-card > button,
  .v2-agent-family-configurator__questions label,
  .v2-agent-family-configurator__questions button,
  .v2-agent-family-feature-modal button,
  .v2-agent-family-ecosystem__accordion summary,
  .v2-agent-family-ecosystem__accordion h3 > button,
  .v2-agent-family-feature-rail[tabindex],
  .v2-agent-family-work-rail[tabindex],
  .v2-agent-family-related-rail[tabindex]
):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.v2-agent-family-page--apple-structured :where(
  .v2-agent-family-section-link,
  .v2-agent-family-product-card__actions a,
  .v2-agent-family-product-card__actions button,
  .v2-agent-family-feature-card,
  .v2-agent-family-feature-card > button[aria-haspopup="dialog"],
  .v2-agent-family-work-card,
  .v2-agent-family-work-card > button,
  .v2-agent-family-configurator__questions label,
  .v2-agent-family-configurator__questions button,
  .v2-agent-family-feature-modal button,
  .v2-agent-family-ecosystem__accordion summary,
  .v2-agent-family-ecosystem__accordion h3 > button,
  .v2-agent-family-feature-rail[tabindex],
  .v2-agent-family-work-rail[tabindex],
  .v2-agent-family-related-rail[tabindex]
):focus-visible,
.v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions label:has(input:focus-visible) {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .v2-agent-family-page--apple-structured .v2-agent-family-section-link:hover {
    color: var(--blue-900);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-feature-card:hover,
  .v2-agent-family-page--apple-structured .v2-agent-family-work-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-3);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions :where(label, button):hover {
    border-color: var(--gray-500);
  }
}

@media (max-width: 820px) {
  .v2-agent-family-page--apple-structured {
    --agent-structured-card-width: calc(100vw - 56px);
    --agent-structured-gutter: var(--space-5);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-heading--with-link {
    padding-right: 0;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-heading--with-link > .v2-agent-family-section-link {
    position: static;
    margin-top: var(--space-5);
  }

  .v2-agent-family-page--apple-structured :where(
    .v2-agent-family-features,
    .v2-agent-family-work,
    .v2-agent-family-essentials,
    .v2-agent-family-ecosystem,
    .v2-agent-family-trust-evidence
  ) {
    padding: 88px var(--space-5);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-product-rail > ul,
  .v2-agent-family-page--apple-structured :where(
    .v2-agent-family-feature-rail,
    .v2-agent-family-work-rail,
    .v2-agent-family-related-rail
  ) > :where(ul, ol, div),
  .v2-agent-family-page--apple-structured :where(
    ul.v2-agent-family-feature-rail,
    ol.v2-agent-family-work-rail,
    ul.v2-agent-family-related-rail
  ) {
    grid-auto-columns: var(--agent-structured-card-width);
    padding-inline: var(--space-5);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-feature-card {
    min-height: 470px;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-feature-modal {
    align-items: end;
    padding: 0;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-feature-modal > :where(div, article, section) {
    width: 100%;
    max-height: 88dvh;
    padding: var(--space-10) var(--space-6) calc(var(--space-8) + env(safe-area-inset-bottom));
    border-radius: var(--radius-window) var(--radius-window) 0 0;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-configurator {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-top: var(--space-16);
    padding: var(--space-8);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-configurator > .v2-agent-family-heading,
  .v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions,
  .v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation {
    grid-column: 1;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation {
    position: static;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__layout,
  .v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence {
    grid-template-columns: 1fr;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__visual {
    min-height: 380px;
  }
}

@media (max-width: 520px) {
  .v2-agent-family-page--apple-structured {
    --agent-structured-card-width: calc(100vw - 64px);
  }

  .v2-agent-family-page--apple-structured :where(
    .v2-agent-family-features,
    .v2-agent-family-work,
    .v2-agent-family-essentials,
    .v2-agent-family-ecosystem,
    .v2-agent-family-trust-evidence
  ) {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .v2-agent-family-page--apple-structured :where(
    .v2-agent-family-feature-rail,
    .v2-agent-family-work-rail,
    .v2-agent-family-related-rail
  ) {
    margin-top: var(--space-10);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-product-rail > ul,
  .v2-agent-family-page--apple-structured :where(
    .v2-agent-family-feature-rail,
    .v2-agent-family-work-rail,
    .v2-agent-family-related-rail
  ) > :where(ul, ol, div),
  .v2-agent-family-page--apple-structured :where(
    ul.v2-agent-family-feature-rail,
    ol.v2-agent-family-work-rail,
    ul.v2-agent-family-related-rail
  ) {
    gap: var(--space-3);
    padding-inline: var(--space-5);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-product-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-product-card__actions :where(a, button) {
    width: 100%;
    justify-content: center;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-feature-card {
    min-height: 440px;
    padding: var(--space-6);
    padding-bottom: calc(var(--space-12) + 44px);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-feature-card > button[aria-haspopup="dialog"] {
    right: var(--space-5);
    bottom: var(--space-5);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-work-card {
    min-height: 360px;
    padding: 0;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-work-card > button {
    padding: var(--space-6);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-configurator {
    margin-top: var(--space-12);
    padding: var(--space-5);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions fieldset > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-configurator__questions :where(label, button) {
    width: 100%;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-configurator__recommendation {
    padding: var(--space-6);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid {
    grid-template-columns: 1fr;
    margin-top: var(--space-10);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-essentials__grid > :where(article, section, div) {
    min-height: 0;
    padding: var(--space-6);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-related-rail > :where(ul, ol, div) > *,
  .v2-agent-family-page--apple-structured :where(ul, ol).v2-agent-family-related-rail > * {
    min-height: 300px;
    padding: 0;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-related-rail li > a {
    min-height: 300px;
    padding: var(--space-6);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__layout {
    gap: var(--space-10);
    margin-top: var(--space-10);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion summary {
    min-height: 64px;
    font-size: 18px;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion h3 > button {
    min-height: 64px;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion h3 > button > span {
    font-size: 18px;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__accordion details > :not(summary) {
    padding-right: 0;
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-ecosystem__visual {
    min-height: 280px;
    padding: var(--space-6);
  }

  .v2-agent-family-page--apple-structured .v2-agent-family-trust-evidence {
    gap: var(--space-10);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-agent-family-page--apple-structured :where(
    .v2-agent-family-product-rail,
    .v2-agent-family-feature-rail,
    .v2-agent-family-work-rail,
    .v2-agent-family-related-rail
  ) {
    scroll-behavior: auto !important;
  }

  .v2-agent-family-page--apple-structured :where(
    .v2-agent-family-section-link,
    .v2-agent-family-feature-card,
    .v2-agent-family-work-card,
    .v2-agent-family-feature-modal,
    .v2-agent-family-feature-modal > *,
    .v2-agent-family-ecosystem__accordion summary::after
  ) {
    animation: none !important;
    transition: none !important;
  }

  .v2-agent-family-page--apple-structured :where(
    .v2-agent-family-feature-card,
    .v2-agent-family-work-card
  ):hover {
    transform: none !important;
  }
}

/* Apple-system integration: one calm navigation plane and a layered footer. */

.v2-shell {
  --v4-header-height: 48px;
}

.v2-agent-family {
  --agent-sticky-offset: 100px;
}

.v2-shell-header.is-condensed ~ .v2-shell-main .v2-agent-family-local-nav {
  top: 48px;
}

.v2-shell-header,
.v2-shell-header.is-condensed {
  min-height: 48px;
  border-bottom-color: rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.9);
  box-shadow: none;
  color: var(--text-primary);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.v2-shell-header-inner,
.v2-shell-header.is-condensed .v2-shell-header-inner {
  width: min(100%, 1080px);
  min-height: 48px;
  grid-template-columns: minmax(120px, 132px) minmax(0, 1fr);
  gap: 20px;
  padding-right: 22px;
  padding-left: 22px;
}

.v2-shell-brand-link .brand-lockup,
.v2-shell-header.is-condensed .v2-shell-brand-link .brand-lockup {
  width: 120px;
}

.v2-shell-navigation {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
}

.v2-shell-navigation:focus {
  outline: none;
}

.v2-shell-nav-list {
  gap: 2px;
}

.v2-shell-nav-trigger,
.v2-shell-utility-link {
  min-height: 44px;
  padding: 0 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: var(--weight-regular);
}

.v2-shell-nav-trigger:hover,
.v2-shell-nav-trigger.is-active,
.v2-shell-nav-item.is-expanded .v2-shell-nav-trigger,
.v2-shell-utility-link:hover,
.v2-shell-utility-link.is-active {
  border: 0;
  background: transparent;
  color: var(--blue-900);
  box-shadow: none;
}

.v2-shell-nav-trigger.is-active,
.v2-shell-nav-item.is-expanded .v2-shell-nav-trigger,
.v2-shell-utility-link.is-active {
  font-weight: var(--weight-semibold);
}

.v2-shell-language-switch {
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v2-shell-language-option {
  min-width: 44px;
  min-height: 44px;
  border-radius: 0;
  color: var(--gray-600);
  font-size: 12px;
}

.v2-shell-language-option:hover,
.v2-shell-language-option.is-active {
  background: transparent;
  color: var(--blue-900);
  box-shadow: none;
}

.v2-shell .v2-shell-cta {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gray-700);
  box-shadow: none;
  font-size: 12px;
}

.v2-shell .v2-shell-cta:hover {
  border: 0;
  background: transparent;
  color: var(--blue-900);
  transform: none;
}

.v2-shell .v2-shell-cta-icon {
  width: 14px;
  height: 14px;
}

.v2-shell-header.has-mega-open,
.v2-shell--menu-open .v2-shell-header {
  background: var(--bg-content);
  box-shadow: 0 1px 0 var(--border-subtle);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.v2-shell-mega-back {
  display: none;
}

.v2-shell-mega-overview.is-current,
.v2-shell-mega-group a.is-current {
  background: transparent;
  color: var(--blue-900);
  box-shadow: none;
  font-weight: var(--weight-semibold);
}

.v2-shell-footer {
  border-color: var(--border-subtle);
  background: var(--bg-inset);
  color: var(--text-primary);
}

.v2-shell-footer-cta {
  width: min(100%, 1080px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(var(--space-8), 5vw, var(--space-12));
  padding: clamp(var(--space-10), 5vw, var(--space-16)) 22px;
  border-color: var(--border-subtle);
  background: var(--bg-content);
  color: var(--text-primary);
  box-shadow: none;
}

.v2-shell-footer-cta__copy {
  max-width: 760px;
}

.v2-shell-footer-cta__copy h2 {
  max-width: 720px;
  color: var(--text-primary);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.v2-shell-footer-cta__copy > p:last-child {
  max-width: 680px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.55;
}

.v2-shell-footer-cta__actions {
  align-content: center;
  gap: var(--space-2);
}

.v2-shell-footer-action {
  min-height: 44px;
  justify-content: space-between;
  border: 0;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--blue-700);
  font-size: 13px;
}

.v2-shell-footer-action.is-primary {
  border: 1px solid var(--blue-600);
  background: var(--blue-600);
  color: #fff;
}

.v2-shell-footer-action:not(.is-primary) {
  border: 0;
  background: transparent;
  color: var(--blue-700);
}

.v2-shell-footer-action:not(.is-primary):hover {
  background: transparent;
  color: var(--blue-900);
}

.v2-shell-footer-cta__actions small {
  margin-top: var(--space-2);
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.45;
}

.v2-shell-footer-inner {
  width: min(100%, 1080px);
  display: block;
  grid-template-columns: none;
  gap: clamp(var(--space-8), 5vw, var(--space-12));
  padding: var(--space-10) 22px var(--space-8);
  border-color: var(--border-subtle);
  background: var(--bg-inset);
  color: var(--text-primary);
}

.v2-shell-footer-brand-link .brand-lockup {
  width: min(100%, 124px);
}

.v2-shell-footer-brand .v2-shell-footer-promise {
  max-width: 240px;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: var(--weight-regular);
  line-height: 1.4;
}

.v2-shell-footer-directory-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(var(--space-6), 3vw, var(--space-8));
}

.v2-shell-footer-group h2 {
  min-height: 0;
  margin: 0;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.v2-shell-footer-group li {
  border: 0;
}

.v2-shell-footer-group a {
  min-height: 28px;
  border: 0;
  color: var(--gray-700);
  font-family: inherit;
  font-size: 12px;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.v2-shell-footer-group a > span,
.v2-shell-footer-mobile-group a > span,
.v2-shell-footer-mobile-group > summary > span {
  color: inherit;
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.v2-shell-footer-group a:hover,
.v2-shell-footer-group a:focus-visible,
.v2-shell-footer-group a.is-current {
  color: var(--blue-900);
}

.v2-shell-footer-group a.is-current {
  font-weight: var(--weight-semibold);
}

.v2-shell-footer-meta {
  width: min(100%, 1080px);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: var(--space-3) 22px var(--space-5);
  border-color: var(--border-subtle);
  background: var(--bg-inset);
  color: var(--gray-600);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.v2-shell-footer-meta-brand span {
  color: inherit;
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.v2-shell-footer-meta-controls,
.v2-shell-footer-language,
.v2-shell-footer-meta nav {
  display: flex;
  align-items: center;
}

.v2-shell-footer-meta-controls {
  justify-content: flex-end;
  gap: var(--space-5);
}

.v2-shell-footer-language {
  gap: var(--space-1);
}

.v2-shell-footer-language button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  font: inherit;
}

.v2-shell-footer-language button[aria-pressed="true"] {
  background: transparent;
  color: var(--blue-900);
  font-weight: var(--weight-semibold);
}

.v2-shell-footer-meta nav a {
  color: var(--gray-600);
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.v2-shell-footer-meta nav a:hover,
.v2-shell-footer-meta nav a:focus-visible,
.v2-shell-footer-meta nav a.is-current {
  color: var(--blue-900);
}

@media (min-width: 1121px) {
  .v2-shell-nav-caret {
    display: none;
  }

  .v2-shell-mega-panel {
    max-height: min(540px, calc(100vh - 48px));
    border-color: var(--border-subtle);
    background: var(--bg-content);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  }

  .v2-shell-mega-panel__inner {
    width: min(100%, 1080px);
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: clamp(var(--space-10), 5vw, var(--space-12));
    padding: var(--space-8) 22px var(--space-12);
  }

  .v2-shell-mega-featured {
    display: grid;
    align-content: start;
    gap: var(--space-6);
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .v2-shell-mega-overview,
  .v2-shell-mega-featured-link {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-primary);
  }

  .v2-shell-mega-overview {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2) var(--space-4);
    padding-bottom: var(--space-2);
    border: 0;
  }

  .v2-shell-mega-overview > strong {
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .v2-shell-mega-overview > small {
    display: none;
  }

  .v2-shell-mega-featured-link {
    display: grid;
    gap: var(--space-2);
  }

  .v2-shell-mega-featured-link > strong {
    font-size: 17px;
    line-height: 1.3;
  }

  .v2-shell-mega-featured-link > small {
    display: none;
  }

  .v2-shell-mega-featured-link > em {
    margin-top: var(--space-2);
    color: var(--blue-700);
    font-size: 13px;
  }

  .v2-shell-mega-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(var(--space-7), 3vw, var(--space-10));
    padding: 0;
  }

  .v2-shell-mega-group {
    padding: 0;
    border: 0;
  }

  .v2-shell-mega-group h3 {
    min-height: 0;
    margin: 0 0 var(--space-3);
    color: var(--gray-600);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
  }

  .v2-shell-mega-group li {
    border: 0;
  }

  .v2-shell-mega-group a {
    min-height: 36px;
    padding: 5px 0;
    border-radius: 0;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.35;
  }

  .v2-shell-mega-group a:hover,
  .v2-shell-mega-group a:focus-visible {
    padding-left: 0;
    background: transparent;
    color: var(--blue-900);
  }
}

@media (max-width: 1120px) {
  .v2-shell {
    --v4-header-height: 56px;
  }

  .v2-agent-family {
    --agent-sticky-offset: 108px;
  }

  .v2-shell-header.is-condensed ~ .v2-shell-main .v2-agent-family-local-nav {
    top: 56px;
  }

  .v2-shell-header,
  .v2-shell-header.is-condensed,
  .v2-shell-header-inner,
  .v2-shell-header.is-condensed .v2-shell-header-inner {
    min-height: 56px;
  }

  .v2-shell-header-inner,
  .v2-shell-header.is-condensed .v2-shell-header-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .v2-shell-menu-toggle {
    min-width: 44px;
    min-height: 44px;
    color: var(--gray-700);
  }

  .v2-shell-navigation {
    --v2-shell-mobile-masthead: calc(56px + env(safe-area-inset-top));
    gap: 0;
    background: color-mix(in srgb, var(--bg-content) 70%, var(--bg-inset));
  }

  .v2-shell-navigation.is-open {
    display: block;
    align-content: normal;
    grid-template-columns: none;
    gap: 0;
  }

  .v2-shell-menu-masthead {
    width: 100%;
    min-height: var(--v2-shell-mobile-masthead);
    justify-content: flex-end;
    padding: max(6px, env(safe-area-inset-top)) 20px 6px;
    border-color: var(--border-subtle);
    background: color-mix(in srgb, var(--bg-content) 70%, var(--bg-inset));
  }

  .v2-shell-menu-brand {
    display: none;
  }

  .v2-shell-menu-close {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gray-700);
  }

  .v2-shell-menu-close > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .v2-shell-mega-back {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--blue-900);
    cursor: pointer;
    font-size: 14px;
    font-weight: var(--weight-semibold);
    margin-right: auto;
  }

  .v2-shell-primary-nav {
    padding: var(--space-7) 0 var(--space-4);
  }

  .v2-shell-nav-list {
    display: grid;
    gap: 0;
  }

  .v2-shell-nav-item {
    border: 0;
  }

  .v2-shell-navigation.is-open .v2-shell-nav-item[inert],
  .v2-shell-navigation.is-open .v2-shell-utility[inert],
  .v2-shell-navigation.is-open .v2-shell-language-switch[inert],
  .v2-shell-navigation.is-open .v2-shell-cta[inert] {
    display: none !important;
  }

  .v2-shell-navigation.is-open .v2-shell-nav-item.is-expanded > .v2-shell-nav-trigger {
    display: none;
  }

  .v2-shell-nav-trigger {
    min-height: 54px;
    padding: 0 clamp(var(--space-6), 8vw, var(--space-8));
    border: 0;
    background: transparent;
    color: var(--text-primary);
  }

  .v2-shell-nav-trigger.is-active,
  .v2-shell-nav-item.is-expanded .v2-shell-nav-trigger {
    padding-left: clamp(var(--space-6), 8vw, var(--space-10));
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .v2-shell-nav-label--compact {
    display: none;
  }

  .v2-shell-nav-label--full {
    display: block;
  }

  .v2-shell-nav-copy small {
    display: none;
  }

  .v2-shell-nav-label {
    font-size: clamp(25px, 6.4vw, 29px);
    font-weight: var(--weight-semibold);
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

  .v2-shell-nav-caret,
  .v2-shell-nav-item.is-expanded .v2-shell-nav-caret {
    display: none;
  }

  .v2-shell-nav-trigger:hover,
  .v2-shell-nav-trigger:focus-visible,
  .v2-shell-nav-trigger.is-active {
    color: var(--blue-900);
  }

  .v2-shell-navigation.is-open .v2-shell-nav-item.is-expanded .v2-shell-mega-panel {
    position: fixed;
    inset: var(--v2-shell-mobile-masthead) 0 0;
    z-index: 220;
    max-height: none;
    overflow-y: auto;
    border: 0;
    background: color-mix(in srgb, var(--bg-content) 70%, var(--bg-inset));
    color: var(--text-primary);
    box-shadow: none;
    animation: v2-shell-mobile-submenu-enter var(--v4-duration-base) ease-out both;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-panel__inner {
    display: grid;
    gap: var(--space-10);
    width: min(100%, 620px);
    margin: 0 auto;
    padding: var(--space-7) clamp(var(--space-6), 8vw, var(--space-8)) var(--space-16);
    border: 0;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-featured {
    display: grid;
    gap: var(--space-6);
    border: 0;
    background: transparent;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-overview,
  .v2-shell-navigation.is-open .v2-shell-mega-featured-link {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-primary);
  }

  .v2-shell-navigation.is-open .v2-shell-mega-overview {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2) var(--space-4);
    padding-bottom: 0;
    border: 0;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-overview > strong {
    font-size: clamp(26px, 7vw, 34px);
    letter-spacing: -0.035em;
    line-height: 1.08;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-overview > small {
    display: none;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-featured-link {
    display: none !important;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-featured-link > strong {
    font-size: 18px;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-featured-link > small {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-featured-link > em {
    color: var(--blue-700);
    font-size: 14px;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-7);
    padding: 0;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-group {
    padding: 0;
    border: 0;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-group h3 {
    margin: 0 0 var(--space-2);
    color: var(--gray-500);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-group li {
    border: 0;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-group a {
    min-height: 44px;
    padding: 6px 0;
    border-radius: 0;
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.35;
  }

  .v2-shell-navigation.is-open .v2-shell-mega-group a:hover,
  .v2-shell-navigation.is-open .v2-shell-mega-group a:focus-visible,
  .v2-shell-navigation.is-open .v2-shell-mega-group a.is-current {
    padding-left: 0;
    background: transparent;
    color: var(--blue-900);
  }

  .v2-shell-utility,
  .v2-shell-navigation > .v2-shell-language-switch,
  .v2-shell-navigation > .v2-shell-cta {
    display: none !important;
  }
}

@keyframes v2-shell-mobile-submenu-enter {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

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

@media (max-width: 1024px) {
  .v2-shell-footer-inner {
    display: block;
  }

  .v2-shell-footer-brand {
    display: grid;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
  }

  .v2-shell-footer-directory--desktop {
    display: none;
  }

  .v2-shell-footer-directory--mobile {
    display: block;
  }

  .v2-shell-footer-mobile-groups {
    border-top: 1px solid var(--border-subtle);
  }

  .v2-shell-footer-mobile-group {
    border-bottom: 1px solid var(--border-subtle);
  }

  .v2-shell-footer-mobile-group > summary {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 12px;
    font-weight: var(--weight-semibold);
    list-style: none;
  }

  .v2-shell-footer-mobile-group > summary svg {
    color: var(--gray-500);
    width: 12px;
    height: 12px;
  }

  .v2-shell-footer-mobile-group ul {
    margin: 0;
    padding: 0 0 var(--space-3);
  }

  .v2-shell-footer-mobile-group a {
    min-height: 44px;
    padding: 0 var(--space-3);
    color: var(--gray-700);
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
  }

  .v2-shell-footer-mobile-group a:hover,
  .v2-shell-footer-mobile-group a:focus-visible,
  .v2-shell-footer-mobile-group a.is-current {
    color: var(--blue-900);
  }
}

@media (max-width: 820px) {
  .v2-shell-footer-cta {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .v2-shell-footer-meta {
    align-items: flex-start;
  }

  .v2-shell-footer-meta-controls {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .v2-shell-footer-cta,
  .v2-shell-footer-inner,
  .v2-shell-footer-meta {
    padding-right: var(--space-4);
    padding-left: var(--space-4);
  }

  .v2-shell-footer-meta,
  .v2-shell-footer-meta-controls {
    display: grid;
    justify-content: stretch;
    gap: var(--space-3);
  }

  .v2-shell-footer-language {
    justify-content: flex-start;
  }

  .v2-shell-footer-meta nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.v2-shell :where(
  .v2-shell-menu-toggle,
  .v2-shell-menu-close,
  .v2-shell-mega-back,
  .v2-shell-mega-overview,
  .v2-shell-mega-featured-link,
  .v2-shell-mega-group a,
  .v2-shell-footer-group a,
  .v2-shell-footer-mobile-group > summary,
  .v2-shell-footer-mobile-group a,
  .v2-shell-footer-language button,
  .v2-shell-footer-meta a
):focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
}

.v2-shell-footer-cta :where(a, button):focus-visible {
  outline-color: var(--blue-600);
}

.v2-shell-mega-group a > svg {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .v2-shell-navigation.is-open .v2-shell-nav-item.is-expanded .v2-shell-mega-panel {
    animation: none;
  }
}
