.site-shell {
  min-height: 100vh;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-nav);
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.site-nav::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.site-nav.is-scrolled {
  background: rgba(7, 21, 47, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(4, 12, 26, 0.18);
}

.site-nav.is-scrolled::after {
  opacity: 1;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: var(--nav-height);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  min-width: 0;
}

.brand-mark--nav {
  gap: 0;
}

.brand-mark__plate {
  width: 68px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0.45rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(7, 21, 47, 0.18);
}

.brand-mark__logo {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark__plate--wide {
  width: 182px;
  height: 50px;
  padding: 0.45rem 0.7rem;
}

.brand-mark__logo--wide {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.brand-mark__text {
  min-width: 0;
}

.brand-mark__name {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark__sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav__link {
  position: relative;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0.95rem 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-amber), transparent);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-nav__panel {
  display: none;
  padding-bottom: var(--space-6);
}

.site-nav__panel.is-open {
  display: block;
}

.site-nav__panel-inner {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav__panel .site-nav__link {
  border-radius: 14px;
}

.page-hero {
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-16);
  background: var(--gradient-hero);
  color: rgba(255, 255, 255, 0.76);
}

.page-hero__inner {
  display: grid;
  gap: var(--space-6);
  max-width: 58rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--font-size-4xl);
  line-height: 1.04;
  color: #fff;
}

.page-hero__desc {
  max-width: 52rem;
  font-size: var(--font-size-lg);
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.page-hero__chip {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.62);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  padding: clamp(2.1rem, 3.8vw, 2.9rem) 0 clamp(0.95rem, 1.6vw, 1.35rem);
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(7, 21, 47, 0.92), rgba(7, 21, 47, 1)),
    var(--color-navy);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) repeat(2, minmax(190px, 0.72fr));
  gap: clamp(0.95rem, 1.8vw, 1.6rem);
  align-items: start;
}

.site-footer__copy {
  max-width: 34rem;
}

.site-footer__copy p {
  margin-top: 0.72rem !important;
  font-size: 0.9rem;
  line-height: 1.58;
}

.site-footer__title {
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__list {
  display: grid;
  gap: 0.42rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer__grid > div:nth-child(2) .site-footer__list {
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 1.4rem;
  row-gap: 0.38rem;
}

.site-footer:not(.site-footer--home) .site-footer__grid > div:nth-child(3) .site-footer__list {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer:not(.site-footer--home) .site-footer__grid > div:nth-child(3) .site-footer__list span {
  display: block;
  white-space: normal;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.76);
  transition: color var(--transition-fast);
}

.site-footer__list a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: clamp(0.82rem, 1.4vw, 1.2rem);
  padding-top: clamp(0.62rem, 1vw, 0.82rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.54);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 1rem;
}

.site-footer__record-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.site-footer__record-link:hover {
  color: #fff;
}

.site-footer__tagline {
  text-align: right;
}

@media (min-width: 961px) {
  .site-footer {
    padding: clamp(1.55rem, 2.4vw, 2rem) 0 clamp(0.78rem, 1.2vw, 1rem);
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: clamp(0.72rem, 1.25vw, 1rem);
  }

  .site-footer:not(.site-footer--home) .site-footer__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  }

  .site-footer__copy {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    max-width: 31rem;
  }

  .site-footer__grid > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .site-footer__grid > div:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .site-footer__copy p {
    margin-top: 0.58rem !important;
  }

  .site-footer__title {
    margin-bottom: 0.36rem;
  }

  .site-footer__grid > div:nth-child(2) .site-footer__list,
  .site-footer__grid > div:nth-child(3) .site-footer__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.42rem 0.78rem;
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .site-footer:not(.site-footer--home) .site-footer__grid > div:nth-child(3) .site-footer__list {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .site-footer:not(.site-footer--home) .site-footer__grid > div:nth-child(3) .site-footer__list span {
    display: inline;
    font-size: inherit;
    white-space: nowrap;
  }

  .site-footer__grid > div:nth-child(2) .site-footer__list a,
  .site-footer__grid > div:nth-child(3) .site-footer__list span {
    white-space: nowrap;
  }

  .site-footer__bottom {
    margin-top: clamp(0.68rem, 1vw, 0.92rem);
    padding-top: clamp(0.52rem, 0.8vw, 0.68rem);
  }
}

@media (max-width: 960px) {
  .site-nav__links,
  .site-nav__actions .btn {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: grid;
    flex-shrink: 0;
  }

  .site-footer__bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-footer__tagline {
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(165px, 0.72fr));
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .brand-mark__plate {
    width: 60px;
    height: 46px;
  }

  .brand-mark__plate--wide {
    width: 152px;
    height: 44px;
    padding: 0.4rem 0.6rem;
  }

  .brand-mark__name {
    font-size: 0.92rem;
  }

  .brand-mark__sub {
    font-size: 0.66rem;
  }

  .site-footer {
    padding-top: 1.72rem;
    padding-bottom: 0.8rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .site-footer__title {
    margin-bottom: 0.32rem;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .site-footer__copy p {
    font-size: 0.82rem;
    line-height: 1.52;
  }

  .site-footer__grid > div:nth-child(2) .site-footer__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.32rem;
    width: 100%;
    font-size: 0.7rem;
    line-height: 1.28;
    letter-spacing: -0.01em;
  }

  .site-footer__grid > div:nth-child(2) .site-footer__list a {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .site-footer--home .site-footer__grid > div:nth-child(3) .site-footer__list {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 0.78rem;
    row-gap: 0.24rem;
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .site-footer--home .site-footer__grid > div:nth-child(3) .site-footer__list span {
    white-space: nowrap;
  }

  .site-footer:not(.site-footer--home) .site-footer__grid > div:nth-child(3) .site-footer__list {
    display: block;
    font-size: 0.78rem;
    line-height: 1.46;
    width: 100%;
    max-width: 100%;
  }

  .site-footer:not(.site-footer--home) .site-footer__grid > div:nth-child(3) .site-footer__list span {
    display: block;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer__legal {
    gap: 0.28rem 0.72rem;
  }

  .site-footer__record-link,
  .site-footer__tagline {
    font-size: 0.74rem;
    line-height: 1.42;
  }

  .site-footer__bottom {
    gap: 0.32rem;
    margin-top: 0.64rem;
    padding-top: 0.56rem;
  }

  .page-hero {
    padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
  }
}

/* 2026 redesign */
.site-nav {
  padding-top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(16, 29, 33, 0.08);
  box-shadow: 0 10px 30px rgba(16, 29, 33, 0.06);
}

.site-nav::after {
  display: none;
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(16, 29, 33, 0.08);
}

.site-nav__inner {
  min-height: 78px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.site-nav.is-scrolled .site-nav__inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.brand-mark__plate {
  width: 74px;
  height: 56px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 29, 33, 0.08);
  box-shadow: 0 8px 22px rgba(16, 29, 33, 0.06);
}

.brand-mark__plate--wide {
  width: 204px;
  height: 58px;
  padding: 0.55rem 0.8rem;
}

.site-nav__links {
  gap: 0.2rem;
}

.site-nav__link {
  padding: 0.58rem 0.9rem;
  font-size: 0.92rem;
  color: rgba(16, 29, 33, 0.78);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--color-ink);
  background: rgba(16, 29, 33, 0.06);
}

.site-nav__link.is-active::after {
  inset: auto 0.9rem 0.3rem;
  background: linear-gradient(90deg, var(--color-blue), rgba(63, 124, 240, 0));
}

.nav-toggle {
  color: var(--color-ink);
  border: 1px solid rgba(16, 29, 33, 0.1);
  background: rgba(16, 29, 33, 0.04);
}

.site-nav__panel {
  padding-top: 0.8rem;
}

.site-nav__panel-inner {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 29, 33, 0.08);
  box-shadow: 0 24px 60px rgba(16, 29, 33, 0.08);
}

.page-hero {
  min-height: clamp(520px, 72svh, 760px);
  padding: calc(var(--nav-height) + var(--space-20)) 0 var(--space-20);
  background:
    linear-gradient(90deg, rgba(4, 10, 12, 0.88) 0%, rgba(4, 10, 12, 0.78) 42%, rgba(4, 10, 12, 0.42) 100%),
    url("../media/atmosphere-section.jpg") center/cover no-repeat,
    var(--gradient-hero);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent);
  opacity: 0.35;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
}

.page-hero__title {
  max-width: 13ch;
  font-size: clamp(3rem, 2rem + 2.8vw, 5.2rem);
  letter-spacing: -0.05em;
}

.page-hero__desc {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero__chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #091416 0%, #0d1f24 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 143, 0.8), transparent);
  opacity: 0.55;
}

@media (max-width: 960px) {
  .site-nav {
    padding-top: 0;
  }

  .site-nav__inner {
    min-height: 68px;
  }
}

/* ZTE-inspired blue and white refinement */
.site-nav {
  border-bottom-color: rgba(0, 87, 217, 0.08);
  box-shadow: 0 10px 28px rgba(16, 55, 126, 0.06);
}

.site-nav.is-scrolled {
  box-shadow: 0 14px 32px rgba(16, 55, 126, 0.08);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  background: rgba(0, 87, 217, 0.06);
}

.site-nav__link.is-active::after {
  background: linear-gradient(90deg, var(--color-blue), rgba(104, 170, 255, 0));
}

.nav-toggle {
  border-color: rgba(0, 87, 217, 0.12);
  background: rgba(0, 87, 217, 0.04);
}

.page-hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(104, 170, 255, 0.2), transparent 22%),
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #0b45b8 0%, #0f5be2 48%, #4b95ff 100%);
}

.page-hero__desc {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero__chip {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  background: linear-gradient(180deg, #0a3faa 0%, #08328a 100%);
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), transparent);
}

/* 2026 final refinement */
.site-nav {
  background: rgba(255, 255, 255, 0.99);
  border-bottom-color: rgba(0, 87, 217, 0.08);
  box-shadow: 0 8px 24px rgba(16, 55, 126, 0.05);
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(16, 55, 126, 0.08);
}

.site-nav__inner {
  min-height: 80px;
}

.brand-mark__plate,
.brand-mark__plate--wide {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark__logo {
  width: auto;
  height: 30px;
  max-width: none;
}

.brand-mark__logo--wide {
  width: auto;
  height: 25px;
  max-width: 162px;
}

.page-hero {
  min-height: clamp(380px, 52svh, 520px);
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
  color: var(--color-body);
  background:
    radial-gradient(circle at 10% 10%, rgba(104, 170, 255, 0.16), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(0, 87, 217, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 54%, #eef5ff 100%);
}

.page-hero::before {
  background-image:
    linear-gradient(rgba(0, 87, 217, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 217, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
  opacity: 0.32;
}

.page-hero__inner {
  max-width: 76rem;
  gap: var(--space-6);
}

.page-hero .eyebrow {
  color: var(--color-blue);
}

.page-hero__title {
  max-width: 27.4ch;
  font-size: clamp(1.68rem, 1.26rem + 0.76vw, 2.26rem);
  line-height: 1.22;
  color: var(--color-ink);
  letter-spacing: -0.03em;
  text-wrap: balance;
  line-break: strict;
}

.page-hero__title .title-break {
  display: block;
}

.page-hero__desc {
  max-width: 54rem;
  font-size: 1.02rem;
  line-height: 1.82;
  color: rgba(13, 34, 80, 0.74);
}

.page-hero__chip {
  color: var(--color-ink);
  background: rgba(0, 87, 217, 0.06);
  border-color: rgba(0, 87, 217, 0.12);
}

.page-hero--products,
.page-hero--cases,
.page-hero--about,
.page-hero--careers {
  color: rgba(255, 255, 255, 0.82);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero--products {
  background-image:
    linear-gradient(90deg, rgba(5, 23, 66, 0.9) 0%, rgba(5, 23, 66, 0.68) 48%, rgba(5, 23, 66, 0.3) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    url("../media/cs6.jpg");
  background-position: 68% center;
}

.page-hero--cases {
  background-image:
    linear-gradient(90deg, rgba(4, 19, 58, 0.88) 0%, rgba(4, 19, 58, 0.62) 48%, rgba(4, 19, 58, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    url("../media/PA1.jpg");
  background-position: center center;
}

.page-hero--about {
  background-image:
    linear-gradient(90deg, rgba(6, 28, 78, 0.94) 0%, rgba(6, 28, 78, 0.72) 48%, rgba(6, 28, 78, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    url("../media/cs4.jpg");
  background-position: 74% center;
}

.page-hero--careers {
  background-image:
    linear-gradient(90deg, rgba(4, 24, 74, 0.9) 0%, rgba(4, 24, 74, 0.66) 50%, rgba(4, 24, 74, 0.26) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    url("../media/cs5.jpg");
  background-position: 70% center;
}

.page-hero--products::before,
.page-hero--cases::before,
.page-hero--about::before,
.page-hero--careers::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  opacity: 0.2;
}

.page-hero--products .eyebrow,
.page-hero--cases .eyebrow,
.page-hero--about .eyebrow,
.page-hero--careers .eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.page-hero--products .page-hero__title,
.page-hero--cases .page-hero__title,
.page-hero--about .page-hero__title,
.page-hero--careers .page-hero__title {
  color: #fff;
}

.page-hero--products .page-hero__title {
  max-width: 26.8ch;
}

.page-hero--cases .page-hero__title {
  max-width: 28.8ch;
  font-size: clamp(1.56rem, 1.18rem + 0.62vw, 2.02rem);
}

.page-hero--about .page-hero__title {
  max-width: 24.6ch;
}

.page-hero--careers .page-hero__title {
  max-width: 26.4ch;
}

.page-hero--cases .page-hero__inner {
  left: clamp(1.8rem, 3.4vw, 3.2rem);
}

.page-hero--products .page-hero__desc,
.page-hero--cases .page-hero__desc,
.page-hero--about .page-hero__desc,
.page-hero--careers .page-hero__desc {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero--products .page-hero__desc,
.page-hero--cases .page-hero__desc,
.page-hero--about .page-hero__desc,
.page-hero--careers .page-hero__desc {
  max-width: 47rem;
}

.page-hero--products .page-hero__chip,
.page-hero--cases .page-hero__chip,
.page-hero--about .page-hero__chip,
.page-hero--careers .page-hero__chip {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.page-hero--products .breadcrumb,
.page-hero--cases .breadcrumb,
.page-hero--about .breadcrumb,
.page-hero--careers .breadcrumb {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero--products .breadcrumb__sep,
.page-hero--cases .breadcrumb__sep,
.page-hero--about .breadcrumb__sep,
.page-hero--careers .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.34);
}

.breadcrumb {
  color: rgba(13, 34, 80, 0.58);
}

.breadcrumb__sep {
  color: rgba(13, 34, 80, 0.28);
}

@media (max-width: 640px) {
  .brand-mark__logo {
    height: 26px;
  }

  .brand-mark__logo--wide {
    height: 22px;
    max-width: 144px;
  }

  .site-nav__inner {
    min-height: 68px;
  }

  .page-hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-10);
  }

  .page-hero__title {
    max-width: 17.4ch;
    font-size: clamp(1.56rem, 6.6vw, 2.02rem);
    line-height: 1.22;
  }

  .page-hero__title .title-break {
    display: inline;
  }

  .page-hero--cases .page-hero__inner {
    left: 0;
  }
}

/* Mobile compact rhythm */
@media (max-width: 720px) {
  .page-hero {
    padding: calc(var(--nav-height) + 1.05rem) 0 1.75rem;
  }

  .page-hero__inner {
    gap: 0.92rem;
  }

  .page-hero__desc {
    line-height: 1.7;
  }

  .page-hero__meta {
    gap: 0.48rem;
  }

  .page-hero__chip {
    padding: 0.38rem 0.68rem;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 1.38rem;
    padding-bottom: 0.72rem;
  }

  .site-footer__grid {
    gap: 0.62rem;
  }

  .site-footer__bottom {
    gap: 0.28rem;
    margin-top: 0.52rem;
    padding-top: 0.48rem;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 0.95rem) 0 1.5rem;
  }
}
