:root {
  --ink: #17212b;
  --deep: #081521;
  --muted: #67717b;
  --paper: #f4f5f6;
  --surface: #ffffff;
  --line: #e1e5e8;
  --accent: #c7192d;
  --accent-dark: #9d1020;
  --steel: #52616c;
  --gold: #c99a43;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.68;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 24px rgba(8, 21, 33, .08);
  transition: box-shadow .25s ease, transform .25s ease;
}

.site-header.is-compact {
  box-shadow: 0 12px 30px rgba(8, 21, 33, .14);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px clamp(20px, 5vw, 74px);
  color: rgba(255, 255, 255, .82);
  background: var(--deep);
  font-size: 13px;
  transition: padding .25s ease, opacity .25s ease;
}

.top-strip div {
  display: flex;
  gap: 18px;
}

.main-nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  padding: 18px clamp(20px, 5vw, 74px) 16px;
  transition: padding .25s ease;
}

.site-header.is-compact .top-strip {
  padding-top: 4px;
  padding-bottom: 4px;
  opacity: .94;
}

.site-header.is-compact .main-nav-row {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  min-width: 270px;
}

.brand strong {
  display: block;
  line-height: 1.2;
  font-size: 18px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  color: #fff;
  background: linear-gradient(145deg, #ffffff 0%, #f4f7f9 58%, #e8edf1 100%);
  border: 1px solid rgba(8, 21, 33, .1);
  border-left: 4px solid var(--accent);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(8, 21, 33, .12);
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  overflow: visible;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 96%;
  height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(8, 21, 33, .2));
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .42) 48%, transparent 56%);
  transform: translateX(-120%);
  animation: mark-sheen 4.8s ease-in-out infinite;
}

.footer-brand .brand-mark::after {
  content: none;
  animation: none;
}

.site-header.is-compact .brand-mark {
  width: 58px;
  height: 58px;
}

.site-nav {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 16.5px;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  white-space: nowrap;
  color: #17212b;
  letter-spacing: 0;
  transition: color .2s ease, transform .2s ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  opacity: 0;
  transform: translate(-50%, -8px) rotate(45deg);
  transition: opacity .2s ease, transform .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 4px;
  background: var(--accent);
  transition: width .2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
  transform: translateY(-1px);
}

.site-nav a:hover::before,
.site-nav a.is-active::before {
  opacity: 1;
  transform: translate(-50%, 0) rotate(45deg);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.language-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: var(--accent);
  border: 1px solid rgba(199, 25, 45, .25);
  border-radius: 2px;
  background: #fff;
  font-weight: 900;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(560px, 78vh, 680px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center calc(50% + var(--scroll-shift, 0px));
  padding: clamp(84px, 13vw, 166px) clamp(20px, 7vw, 110px);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-media video {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media video {
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(1.04) contrast(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 21, 33, .9) 0%, rgba(8, 21, 33, .58) 50%, rgba(8, 21, 33, .2) 100%),
    linear-gradient(180deg, rgba(8, 21, 33, .08) 0%, rgba(8, 21, 33, .42) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .055) 46%, transparent 54%),
    linear-gradient(180deg, transparent 0%, rgba(8, 21, 33, .48) 100%);
  opacity: .78;
  transform: translateX(-95%);
  animation: hero-scan 12s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 250px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 21, 33, .56) 48%, rgba(244, 245, 246, .98) 100%);
  pointer-events: none;
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 43%, rgba(201, 154, 67, .16), transparent 0 12%, transparent 30%),
    radial-gradient(circle at 73% 43%, transparent 0 13%, rgba(255, 255, 255, .18) 13.2%, transparent 13.8%),
    radial-gradient(circle at 73% 43%, transparent 0 24%, rgba(255, 255, 255, .1) 24.2%, transparent 24.8%),
    linear-gradient(90deg, transparent 0 56%, rgba(255, 255, 255, .045) 56% 100%);
}

.hero-network::before,
.hero-network::after {
  content: "";
  position: absolute;
  top: 43%;
  left: 73%;
  border: 1px solid rgba(201, 154, 67, .3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.82);
  animation: network-ring 6.4s ease-out infinite;
}

.hero-network::before {
  width: min(31vw, 430px);
  height: min(31vw, 430px);
}

.hero-network::after {
  width: min(21vw, 290px);
  height: min(21vw, 290px);
  animation-delay: 1.8s;
}

.network-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), rgba(201, 154, 67, .46), transparent);
  transform-origin: left center;
  opacity: .56;
}

.network-line-a {
  top: 41%;
  left: 64%;
  width: 17%;
  transform: rotate(-17deg);
}

.network-line-b {
  top: 49%;
  left: 67%;
  width: 18%;
  transform: rotate(24deg);
}

.network-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: rgba(199, 25, 45, .74);
  box-shadow: 0 0 0 5px rgba(199, 25, 45, .12);
  animation: node-pulse 4.8s ease-in-out infinite;
}

.network-node-a {
  top: 40%;
  left: 63.5%;
}

.network-node-b {
  top: 35%;
  right: 18.5%;
  animation-delay: .45s;
}

.network-node-c {
  top: 57%;
  right: 27%;
  animation-delay: .9s;
}

.network-packet {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(201, 154, 67, .85);
}

.network-packet-a {
  top: 41%;
  left: 64%;
  animation: packet-a 6.8s ease-in-out infinite;
}

.network-packet-b {
  top: 49%;
  left: 67%;
  animation: packet-b 7.6s ease-in-out infinite;
  animation-delay: 1.2s;
}

.route-truck {
  display: none;
}

.truck-body,
.truck-cab,
.truck-wheel {
  position: absolute;
  display: block;
}

.truck-body {
  left: 0;
  bottom: 18px;
  width: 92px;
  height: 34px;
  background: rgba(255, 255, 255, .92);
  border-left: 5px solid var(--accent);
}

.truck-cab {
  left: 96px;
  bottom: 18px;
  width: 42px;
  height: 34px;
  background: var(--accent);
  clip-path: polygon(0 0, 74% 0, 100% 42%, 100% 100%, 0 100%);
}

.truck-wheel {
  bottom: 7px;
  width: 22px;
  height: 22px;
  border: 5px solid #101820;
  border-radius: 50%;
  background: #c2ccd3;
  animation: wheel-spin .75s linear infinite;
}

.truck-wheel-a {
  left: 22px;
}

.truck-wheel-b {
  left: 104px;
}

.hero-content,
.page-hero > div,
.compact-hero,
.article-hero {
  position: relative;
  z-index: 4;
  width: min(980px, 100%);
}

.hero h1,
.page-hero h1,
.compact-hero h1,
.article-hero h1 {
  max-width: 850px;
  margin: 14px 0 20px;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.article-hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 20px;
}

.eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy-motion {
  width: min(930px, 100%);
  max-width: 930px;
  padding-left: clamp(18px, 2.2vw, 32px);
  isolation: isolate;
}

.hero-copy-motion::before,
.hero-copy-motion::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  pointer-events: none;
}

.hero-copy-motion::before {
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  box-shadow: 0 0 22px rgba(199, 25, 45, .38);
}

.hero-copy-motion::after {
  width: 128px;
  height: 128px;
  border-top: 1px solid rgba(255, 255, 255, .34);
  border-left: 1px solid rgba(255, 255, 255, .26);
  opacity: 0;
  transform: translate(14px, 14px);
}

.hero.is-motion-ready .hero-copy-motion::before {
  animation: hero-copy-rail .8s cubic-bezier(.2, .8, .2, 1) .16s both;
}

.hero.is-motion-ready .hero-copy-motion::after {
  animation: hero-copy-corner .75s cubic-bezier(.2, .8, .2, 1) .24s both;
}

.hero-copy-mark {
  position: absolute;
  left: clamp(210px, 38vw, 610px);
  top: clamp(20px, 5vw, 70px);
  z-index: -1;
  width: clamp(190px, 22vw, 320px);
  height: clamp(190px, 22vw, 320px);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.hero-copy-mark::before,
.hero-copy-mark::after,
.hero-copy-mark span {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-copy-mark::before {
  inset: 18%;
  border: 1px solid rgba(216, 160, 55, .3);
}

.hero-copy-mark::after {
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: rotate(-28deg);
}

.hero-copy-mark span:first-child {
  right: 12%;
  top: 18%;
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(199, 25, 45, .2);
}

.hero-copy-mark span:last-child {
  left: 18%;
  bottom: 24%;
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(216, 160, 55, .18);
}

.hero.is-motion-ready .hero-copy-motion .hero-copy-mark {
  animation: hero-mark-in .95s cubic-bezier(.2, .8, .2, 1) .38s both;
}

.hero.is-motion-ready .hero-copy-motion .hero-copy-mark span:first-child {
  animation: node-pulse 2.8s ease-in-out 1.2s infinite;
}

.hero.is-motion-ready .hero-copy-motion .hero-copy-mark span:last-child {
  animation: node-pulse 3.2s ease-in-out 1.35s infinite;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker i {
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold), rgba(255, 255, 255, .92), var(--gold));
  background-size: 220% 100%;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-kicker span {
  opacity: 0;
  transform: translateY(120%);
}

.hero.is-motion-ready .hero-copy-motion .hero-kicker i {
  animation:
    hero-kicker-line .68s cubic-bezier(.2, .8, .2, 1) .22s both,
    hero-kicker-flow 2.4s linear 1.05s infinite;
}

.hero.is-motion-ready .hero-copy-motion .hero-kicker span {
  animation: hero-text-rise .62s cubic-bezier(.2, .8, .2, 1) .32s both;
}

.hero .hero-title-motion {
  max-width: min(950px, 100%);
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 18px 40px rgba(0, 0, 0, .32);
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding: .03em 0 .1em;
}

.hero-title-line > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(112%) skewY(3deg);
}

.hero-title-line:nth-child(1) > span {
  animation-delay: .58s;
}

.hero-title-line:nth-child(2) > span:first-child {
  animation-delay: .9s;
}

.hero-title-line:nth-child(2) > span:last-child {
  animation-delay: 1.12s;
}

.hero.is-motion-ready .hero-copy-motion .hero-title-line > span {
  animation-name: hero-title-reveal;
  animation-duration: .96s;
  animation-timing-function: cubic-bezier(.2, .8, .2, 1);
  animation-fill-mode: both;
}

.hero-title-key {
  position: relative;
  z-index: 0;
  margin-right: .16em;
  padding: 0 .08em .02em;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(199, 25, 45, .98), rgba(144, 16, 30, .88));
  background-repeat: no-repeat;
  background-position: left 56%;
  background-size: 0% 78%;
  isolation: isolate;
}

.hero-title-key::before {
  content: "";
  position: absolute;
  inset: .11em .04em .08em;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, .28) 48%, transparent 72%);
  transform: translateX(-135%) skewX(-16deg);
}

.hero-title-key::after {
  content: "";
  position: absolute;
  left: .1em;
  right: -.05em;
  bottom: -.03em;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero.is-motion-ready .hero-copy-motion .hero-title-key::before {
  animation: hero-key-sheen 2.9s ease-in-out 1.35s infinite;
}

.hero.is-motion-ready .hero-copy-motion .hero-title-line > .hero-title-key {
  animation-name: hero-title-reveal, hero-key-fill;
  animation-duration: .96s, .64s;
  animation-timing-function: cubic-bezier(.2, .8, .2, 1), cubic-bezier(.2, .8, .2, 1);
  animation-delay: .9s, 1.28s;
  animation-fill-mode: both, both;
}

.hero.is-motion-ready .hero-copy-motion .hero-title-key::after {
  animation:
    hero-key-line .72s cubic-bezier(.2, .8, .2, 1) 1.48s both,
    hero-key-glow 2.4s ease-in-out 2.08s infinite;
}

.hero-lead {
  opacity: 0;
  transform: translateY(18px);
}

.hero.is-motion-ready .hero-copy-motion .hero-lead {
  animation: hero-soft-up .64s ease 1.48s both;
}

.hero-copy-motion .hero-actions {
  opacity: 0;
  transform: translateY(16px);
}

.hero.is-motion-ready .hero-copy-motion .hero-actions {
  animation: hero-soft-up .6s ease 1.68s both;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-link,
.ghost-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 2px;
  font-weight: 800;
}

.button-link {
  color: #fff;
  background: var(--accent);
}

.button-link:hover {
  background: var(--accent-dark);
}

.ghost-link {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
}

.text-link {
  padding: 0;
  color: var(--accent);
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.hero-ops-panel {
  position: absolute;
  right: clamp(20px, 6vw, 92px);
  bottom: 92px;
  z-index: 5;
  width: 300px;
  padding: 22px;
  color: #fff;
  background: rgba(8, 21, 33, .78);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.hero-ops-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}

.hero-ops-panel small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .68);
}

.ops-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  margin: 10px 0;
  font-weight: 800;
  font-size: 13px;
}

.ops-row i {
  position: relative;
  overflow: hidden;
  height: 8px;
  background: rgba(255, 255, 255, .16);
}

.ops-row i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: left center;
  animation: ops-level 2.8s ease-in-out infinite;
}

.section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
}

.centered {
  text-align: center;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.about-band {
  position: relative;
  z-index: 6;
  overflow: visible;
  margin-top: -86px;
  padding-top: 0;
  background: linear-gradient(180deg, transparent 0 86px, #f4f5f6 86px 100%);
}

.about-band::before {
  content: none;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(38px, 5vw, 58px);
  background: #fff;
  box-shadow: 0 28px 72px rgba(8, 21, 33, .16);
}

.about-layout::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  height: 4px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold), transparent);
  pointer-events: none;
}

.about-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 26px 70px rgba(8, 21, 33, .16);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 34%;
  background:
    linear-gradient(90deg, transparent, rgba(8, 21, 33, .62));
  pointer-events: none;
}

.about-media::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .38);
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  transition: transform .72s ease;
}

.about-media:hover .about-carousel-slide.is-active img {
  filter: saturate(1.08) contrast(1.03);
}

.about-carousel-track,
.about-carousel-slide {
  position: absolute;
  inset: 0;
}

.about-carousel-slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(34px) scale(1.04);
  transition: opacity .46s ease, transform .72s cubic-bezier(.2, .8, .2, 1);
}

.about-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.about-carousel-slide img {
  height: 100%;
  transform: scale(1.08);
}

.about-carousel-slide.is-active img {
  animation: about-carousel-drift 2.65s ease-in-out both;
}

.about-carousel-slide:nth-child(2).is-active img {
  animation-name: about-carousel-drift-reverse;
}

.about-carousel-dots {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.about-carousel-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .46);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.about-carousel-dots button.is-active {
  width: 54px;
  background: var(--gold);
}

.about-carousel-dots button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.about-copy {
  position: relative;
  min-width: 0;
  padding: 38px 0 38px 36px;
}

.about-copy::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: 44px;
  left: 0;
  width: 5px;
  background: var(--accent);
}

.about-copy .section-heading {
  margin-bottom: 18px;
}

.about-copy .section-heading h2 {
  max-width: 560px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.18;
}

.media-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .24) 48%, transparent 58%);
  transform: translateX(-120%);
  animation: media-scan 6.4s ease-in-out infinite;
  pointer-events: none;
}

.intro-copy {
  max-width: 620px;
  color: #34404a;
  font-size: 17px;
}

.about-statement {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.7;
}

.about-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}

.about-tag-row span {
  padding: 8px 13px;
  color: #26313a;
  background: #fff;
  border: 1px solid rgba(8, 21, 33, .12);
  border-left: 3px solid var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.stats-band {
  color: #fff;
  background: var(--accent);
}

.stats-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.stat-item::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, .72);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .8s ease;
}

.stat-item.is-visible::after {
  transform: scaleX(1);
}

.stat-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.stat-item strong {
  display: block;
  color: rgba(255, 255, 255, .38);
  font-size: 54px;
  line-height: 1;
}

.stat-item h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.stat-item p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.honors-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(132deg, #0b1722 0%, #182b38 44%, #f4f5f6 44%, #ffffff 100%);
}

.honors-pattern {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .5) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}

.honors-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 86px 0;
}

.honors-copy {
  color: #fff;
}

.honors-copy > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.honors-copy h2 {
  margin: 10px 0 16px;
  font-size: 40px;
  line-height: 1.18;
}

.honors-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.honors-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.honors-proof div {
  min-height: 94px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 3px solid var(--gold);
}

.honors-proof strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.honors-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.35;
}

.honors-wall {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(360px, .95fr);
  gap: 18px;
  align-items: stretch;
}

.honor-feature-card,
.honor-card {
  position: relative;
  overflow: hidden;
  display: block;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(8, 21, 33, .08);
  border-radius: 6px;
  box-shadow: 0 24px 58px rgba(8, 21, 33, .14);
  transition: transform .28s ease, box-shadow .28s ease;
}

.honor-feature-card {
  align-self: center;
  transform: none;
}

.honor-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .34) 47%, transparent 58%);
  transform: translateX(-120%);
  animation: honor-sheen 5.8s ease-in-out infinite;
  pointer-events: none;
}

.honor-feature-card:hover,
.honor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(8, 21, 33, .2);
}

.honor-feature-card:hover {
  transform: translateY(-6px);
}

.honor-feature-card img,
.honor-card img {
  width: 100%;
  object-fit: cover;
  background: #e6e1d5;
}

.honor-feature-card img {
  height: auto;
  aspect-ratio: 3 / 2;
  object-position: center;
  transform: scale(1.012);
  transform-origin: center;
}

.honor-feature-card div {
  padding: 18px 22px 22px;
}

.honor-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.honor-card img {
  aspect-ratio: 16 / 10;
}

.honor-card div {
  min-height: 136px;
  padding: 14px 16px 16px;
}

.honor-feature-card span,
.honor-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.honor-feature-card h3,
.honor-card h3 {
  margin: 7px 0 6px;
  line-height: 1.28;
}

.honor-feature-card h3 {
  font-size: 24px;
}

.honor-card h3 {
  font-size: 16px;
}

.honor-feature-card p,
.honor-card p {
  margin: 0;
  color: var(--muted);
}

.honor-card p {
  font-size: 12px;
  line-height: 1.45;
}

.process-section {
  position: relative;
  background: var(--paper);
}

.supply-line {
  position: relative;
  width: min(820px, 80%);
  height: 22px;
  margin: -8px auto 34px;
  overflow: hidden;
}

.supply-line::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(199, 25, 45, .65), transparent);
}

.supply-line span {
  position: absolute;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  transform: rotate(45deg);
  animation: supply-move 4s linear infinite;
}

.supply-line span:nth-child(2) {
  animation-delay: 1.25s;
}

.supply-line span:nth-child(3) {
  animation-delay: 2.5s;
}

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

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  box-shadow: 0 14px 34px rgba(8, 21, 33, .05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(199, 25, 45, .08) 100%);
  opacity: 0;
  transition: opacity .28s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 25, 45, .34);
  box-shadow: 0 22px 48px rgba(8, 21, 33, .12);
}

.process-card:hover::after {
  opacity: 1;
}

.process-card span {
  color: #ccd3d9;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.process-card h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

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

.feature-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(8, 21, 33, .96), rgba(30, 47, 61, .94)), url("/images/brand/hongshen-hero.svg");
  background-size: cover;
  background-position: center;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .32) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: map-drift 18s linear infinite;
}

.feature-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: start;
}

.feature-band .section-heading p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .76);
}

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

.feature-card,
.article-card,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.feature-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ink);
  transition: transform .28s ease, box-shadow .28s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(.2);
  transform-origin: left center;
  transition: transform .28s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .22);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.subsidiary-feature-card {
  min-height: 250px;
  justify-content: space-between;
}

.subsidiary-feature-card[data-animate="home-subsidiary-card"] {
  opacity: 0;
  transform: translateY(42px) scale(.975);
  filter: blur(8px);
  transition: none;
}

.subsidiary-feature-card[data-animate="home-subsidiary-card"]::before {
  transform: scaleX(.18);
}

.subsidiary-feature-card[data-animate="home-subsidiary-card"].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
  animation: subsidiary-feature-in .78s cubic-bezier(.2, .8, .2, 1);
  animation-delay: var(--delay, 0ms);
}

.subsidiary-feature-card[data-animate="home-subsidiary-card"].is-visible::before {
  animation: subsidiary-feature-line .82s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--delay, 0ms) + 180ms);
}

.subsidiary-feature-card[data-animate="home-subsidiary-card"].is-visible:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .22);
}

.feature-card span,
.article-card time,
.article-row time,
.article-hero time {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.feature-card h3,
.article-card h3,
.article-row h2 {
  margin: 10px 0;
  line-height: 1.28;
}

.feature-card p,
.article-card p,
.article-row p {
  margin: 0;
  color: var(--muted);
}

.subsidiaries-section {
  padding-top: 72px;
}

.subsidiaries-showcase {
  position: relative;
}

.subsidiaries-showcase::before {
  content: "";
  position: absolute;
  top: 178px;
  left: max(20px, calc((100vw - 1200px) / 2));
  right: max(20px, calc((100vw - 1200px) / 2));
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(199, 25, 45, .28), rgba(201, 154, 67, .44), transparent);
}

.subsidiary-heading p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}

.subsidiary-flow {
  position: relative;
  height: 20px;
  margin: -8px 0 26px;
  overflow: hidden;
}

.subsidiary-flow::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 25, 45, .35), transparent);
}

.subsidiary-flow span {
  position: absolute;
  top: 4px;
  width: 11px;
  height: 11px;
  background: var(--accent);
  transform: rotate(45deg);
  animation: supply-move 5s linear infinite;
}

.subsidiary-flow span:nth-child(2) {
  animation-delay: 1.6s;
}

.subsidiary-flow span:nth-child(3) {
  animation-delay: 3.2s;
}

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

.subsidiary-showcase-grid {
  gap: 24px;
}

.subsidiary-card {
  scroll-margin-top: 130px;
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  box-shadow: 0 16px 42px rgba(8, 21, 33, .06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.subsidiary-card[data-animate="subsidiary-card"] {
  opacity: 0;
  transform: translateY(48px) scale(.965);
  filter: blur(8px);
  transition:
    opacity .82s cubic-bezier(.2, .8, .2, 1),
    transform .82s cubic-bezier(.2, .8, .2, 1),
    filter .82s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--delay, 0ms);
}

.subsidiary-card[data-animate="subsidiary-card"].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

.subsidiary-card[data-animate="subsidiary-card"] .subsidiary-index,
.subsidiary-card[data-animate="subsidiary-card"] .subsidiary-card-head,
.subsidiary-card[data-animate="subsidiary-card"] .subsidiary-stats,
.subsidiary-card[data-animate="subsidiary-card"] .subsidiary-detail,
.subsidiary-card[data-animate="subsidiary-card"] .subsidiary-meta {
  opacity: 0;
  transform: translateY(16px);
}

.subsidiary-card[data-animate="subsidiary-card"].is-visible .subsidiary-index {
  animation: subsidiary-layer-in .55s ease forwards;
  animation-delay: calc(var(--delay, 0ms) + 120ms);
}

.subsidiary-card[data-animate="subsidiary-card"].is-visible .subsidiary-card-head {
  animation: subsidiary-layer-in .58s ease forwards;
  animation-delay: calc(var(--delay, 0ms) + 180ms);
}

.subsidiary-card[data-animate="subsidiary-card"].is-visible .subsidiary-stats {
  animation: subsidiary-layer-in .58s ease forwards;
  animation-delay: calc(var(--delay, 0ms) + 260ms);
}

.subsidiary-card[data-animate="subsidiary-card"].is-visible .subsidiary-detail {
  animation: subsidiary-layer-in .58s ease forwards;
  animation-delay: calc(var(--delay, 0ms) + 340ms);
}

.subsidiary-card[data-animate="subsidiary-card"].is-visible .subsidiary-meta {
  animation: subsidiary-layer-in .58s ease forwards;
  animation-delay: calc(var(--delay, 0ms) + 420ms);
}

.subsidiary-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(199, 25, 45, .08);
  transform: rotate(45deg);
}

.subsidiary-card:hover {
  transform: translateY(-7px);
  border-color: rgba(199, 25, 45, .34);
  box-shadow: 0 24px 56px rgba(8, 21, 33, .12);
}

.subsidiary-index {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(8, 21, 33, .08);
  font-size: 66px;
  line-height: 1;
  font-weight: 900;
}

.subsidiary-card-head {
  position: relative;
  z-index: 1;
}

.subsidiary-card-head span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.subsidiary-card-head h3 {
  margin: 10px 0 10px;
  font-size: 24px;
  line-height: 1.28;
}

.subsidiary-card-head p,
.subsidiary-detail {
  margin: 0;
  color: var(--muted);
}

.subsidiary-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 18px;
}

.subsidiary-stats strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: var(--accent-dark);
  background: rgba(199, 25, 45, .08);
  border: 1px solid rgba(199, 25, 45, .14);
  font-size: 12px;
}

.subsidiary-detail {
  position: relative;
  z-index: 1;
}

.subsidiary-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #3a4650;
  font-size: 14px;
}

.subsidiary-meta li {
  display: flex;
  gap: 8px;
}

.subsidiary-meta li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

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

.article-card {
  box-shadow: 0 14px 34px rgba(8, 21, 33, .05);
  transition: transform .28s ease, box-shadow .28s ease;
}

.article-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(8, 21, 33, .12);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .55s ease;
}

.article-card:hover img,
.article-row:hover img {
  transform: scale(1.04);
}

.article-card div {
  padding: 24px;
}

.article-card h3 {
  font-size: 21px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 54px clamp(20px, 6vw, 92px);
  color: #fff;
  background: var(--deep);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .08) 45%, transparent 55%),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, .04) 70px 71px);
  transform: translateX(-60%);
  animation: cta-flow 7.5s ease-in-out infinite;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band span {
  color: var(--gold);
  font-weight: 900;
}

.cta-band h2 {
  max-width: 860px;
  margin: 8px 0 0;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.22;
}

.page-hero,
.compact-hero {
  padding: clamp(92px, 12vw, 160px) clamp(20px, 6vw, 96px);
}

.page-hero {
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.about-hero {
  position: relative;
  display: block;
  min-height: clamp(560px, 68vh, 690px);
  overflow: hidden;
  padding: 0;
  background-position: center;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 190px;
  background: linear-gradient(0deg, rgba(8, 21, 33, .58), transparent);
  pointer-events: none;
}

.about-hero .about-command-grid {
  position: absolute;
  z-index: 1;
  width: auto;
}

.about-hero .about-hero-command {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 40px));
  min-height: clamp(560px, 68vh, 690px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 104px) 0 78px;
}

.business-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 690px);
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 82px 82px;
  animation: map-drift 22s linear infinite;
}

.business-hero .business-hero-panel {
  position: relative;
  z-index: 4;
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: clamp(78px, 10vw, 118px) 0;
}

.business-hero-copy h1 {
  max-width: 720px;
  margin: 10px 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.16;
}

.business-hero-copy,
.business-section-heading,
.partner-card,
.partner-card-body,
.cold-partner-card {
  min-width: 0;
}

.business-hero-copy h1,
.business-hero-copy p,
.business-section-heading h2,
.business-section-heading p {
  overflow-wrap: anywhere;
}

.business-hero-copy p {
  max-width: 760px;
  font-size: 17px;
}

.business-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 34px;
}

.business-hero-stats div {
  padding: 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 3px solid var(--gold);
}

.business-hero-stats strong {
  display: block;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.business-hero-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
}

.business-hero-map {
  position: relative;
  min-height: 360px;
}

.business-map-core,
.business-map-node,
.business-map-line {
  position: absolute;
  display: grid;
  place-items: center;
}

.business-map-core {
  inset: 50%;
  width: 148px;
  height: 148px;
  color: #fff;
  background: rgba(199, 25, 45, .92);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 44px rgba(199, 25, 45, .4);
  font-weight: 900;
}

.business-hero-map::before,
.business-hero-map::after {
  content: "";
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.business-hero-map::before {
  width: 300px;
  height: 300px;
  animation: orbit-spin 24s linear infinite;
}

.business-hero-map::after {
  width: 210px;
  height: 210px;
  border-color: rgba(201, 154, 67, .35);
  animation: orbit-spin 18s linear infinite reverse;
}

.business-map-node {
  z-index: 3;
  width: 66px;
  height: 66px;
  color: #07111a;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(201, 154, 67, .45);
  font-size: 13px;
  font-weight: 900;
}

.business-map-node-a {
  top: 38px;
  right: 70px;
}

.business-map-node-b {
  left: 12px;
  top: 152px;
}

.business-map-node-c {
  right: 34px;
  bottom: 42px;
}

.business-map-line {
  width: 104px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 16px rgba(201, 154, 67, .75);
}

.business-map-line-a {
  top: 124px;
  left: 134px;
  transform: rotate(30deg);
  animation: orbit-flow-a 4s linear infinite;
}

.business-map-line-b {
  right: 118px;
  bottom: 112px;
  transform: rotate(-24deg);
  animation: orbit-flow-b 4.5s linear infinite;
}

.compact-hero {
  color: #fff;
  background: linear-gradient(110deg, var(--deep), #243844);
}

.prose {
  max-width: 920px;
  font-size: 18px;
}

.page-prose {
  position: relative;
  background: #fff;
  margin-top: -52px;
  padding: 56px;
  box-shadow: 0 18px 48px rgba(8, 21, 33, .08);
}

.about-continuum {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, transparent 0 82px, rgba(8, 21, 33, .035) 82px 83px),
    linear-gradient(180deg, #eef1f3 0%, #ffffff 46%, #f4f5f6 100%);
}

.about-continuum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 25, 45, .22), rgba(201, 154, 67, .3), transparent);
}

.about-continuum > .section {
  position: relative;
  z-index: 1;
}

.about-page .page-prose {
  width: min(1200px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 58px 0 44px;
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: minmax(170px, .24fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 66px);
  align-items: start;
  border-top: 0;
  border-bottom: 1px solid rgba(8, 21, 33, .1);
}

.about-page .about-overview::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: min(420px, 42%);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--accent));
}

.prose-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.about-page .prose-label {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--gold);
}

.about-page .prose-label::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 5px;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
}

.about-page .prose-label span {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-page .prose-label strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

.prose-body {
  max-width: 900px;
}

.prose p {
  margin: 0 0 20px;
}

.prose-body > :last-child {
  margin-bottom: 0;
}

.about-page .page-prose p {
  color: #24313b;
  font-size: 17px;
  line-height: 1.9;
}

.about-page .subsidiaries-section {
  padding-top: 46px;
  padding-bottom: 90px;
}

.about-page .subsidiaries-showcase::before {
  top: 146px;
}

.about-command-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 21, 33, .98), rgba(16, 34, 48, .96)),
    url("/images/brand/hongshen-fleet-hero-poster.jpg");
  background-size: cover;
  background-position: center;
}

.about-command-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .26) 1px, transparent 1px);
  background-size: 76px 76px;
  animation: map-drift 20s linear infinite;
}

.about-command-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 56px;
  align-items: center;
  padding: 78px 0;
}

.about-command-copy > span,
.subsidiary-heading span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.about-command-copy h2 {
  max-width: 720px;
  margin: 10px 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.16;
}

.about-command-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.about-command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.about-command-metrics div {
  min-height: 116px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 3px solid var(--gold);
}

.about-command-metrics strong {
  display: block;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.about-command-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.about-orbit {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}

.orbit-ring,
.orbit-center,
.orbit-node,
.orbit-flow {
  position: absolute;
  display: block;
}

.orbit-ring {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.orbit-ring-a {
  width: 330px;
  height: 330px;
  animation: orbit-spin 24s linear infinite;
}

.orbit-ring-b {
  width: 220px;
  height: 220px;
  border-color: rgba(201, 154, 67, .35);
  animation: orbit-spin 18s linear infinite reverse;
}

.orbit-center {
  z-index: 2;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  color: #fff;
  background: rgba(199, 25, 45, .9);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(199, 25, 45, .36);
  font-weight: 900;
}

.orbit-node {
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #07111a;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(201, 154, 67, .44);
  font-weight: 900;
  animation: node-pulse 2.8s ease-in-out infinite;
}

.orbit-node-a {
  top: 34px;
  right: 96px;
}

.orbit-node-b {
  left: 40px;
  top: 168px;
  animation-delay: .45s;
}

.orbit-node-c {
  right: 58px;
  bottom: 64px;
  animation-delay: .9s;
}

.orbit-flow {
  width: 76px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 16px rgba(201, 154, 67, .8);
}

.orbit-flow-a {
  top: 120px;
  left: 142px;
  transform: rotate(28deg);
  animation: orbit-flow-a 3.8s linear infinite;
}

.orbit-flow-b {
  bottom: 128px;
  right: 132px;
  transform: rotate(-26deg);
  animation: orbit-flow-b 4.4s linear infinite;
}

.business-network-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 25, 45, .07), transparent 28%),
    radial-gradient(circle at 88% 34%, rgba(201, 154, 67, .09), transparent 30%),
    #f4f5f6;
}

.business-page {
  overflow-x: hidden;
}

.business-page .section,
.business-hero .business-hero-panel {
  width: min(1200px, calc(100vw - 40px));
}

.business-sector {
  position: relative;
  padding-top: 86px;
  padding-bottom: 94px;
}

.business-section-heading {
  max-width: 800px;
}

.business-section-heading span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.business-section-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.12;
}

.business-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.business-wave {
  position: relative;
  height: 116px;
  margin: 20px 0 10px;
  overflow: hidden;
}

.business-wave span {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 46px;
  height: 72px;
  border-top: 1px solid rgba(129, 86, 63, .32);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.business-wave span:nth-child(2) {
  top: 56px;
  border-color: rgba(199, 25, 45, .18);
  transform: rotate(2.6deg);
}

.business-wave span:nth-child(3) {
  top: 66px;
  border-color: rgba(201, 154, 67, .24);
  transform: rotate(-4deg);
}

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

.partner-card,
.cold-partner-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.partner-card {
  min-height: 348px;
  padding: 26px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(8, 21, 33, .1);
  box-shadow: 0 18px 44px rgba(8, 21, 33, .06);
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .28s ease;
}

.partner-card:hover,
.cold-partner-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 58px rgba(8, 21, 33, .14);
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(340px, 72%);
  min-height: 82px;
  padding: 16px 18px;
  background: #f7f8f9;
  border: 1px solid rgba(8, 21, 33, .07);
}

.partner-logo-box.is-mark {
  justify-content: center;
}

.partner-logo-box img {
  min-width: 0;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.partner-logo-mark {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #3a4853);
  border-radius: 50%;
  font-weight: 900;
}

.partner-region {
  white-space: nowrap;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.partner-card-body h3,
.cold-partner-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
}

.partner-legal {
  margin: 0 0 14px;
  color: var(--steel);
  font-weight: 800;
}

.partner-card-body p:not(.partner-legal),
.cold-partner-card p {
  margin: 0;
  color: var(--muted);
}

.partner-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.partner-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  color: #25313a;
  background: rgba(201, 154, 67, .16);
  border: 1px solid rgba(201, 154, 67, .28);
  font-size: 13px;
  font-weight: 800;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 900;
}

.partner-link::after {
  content: ">";
}

.business-cold-band {
  position: relative;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 21, 33, .98), rgba(18, 53, 63, .96)),
    url("/images/brand/hongshen-fleet-hero-poster.jpg");
  background-size: cover;
  background-position: center;
}

.business-cold-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255, 255, 255, .24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: 82px 82px;
}

.business-cold-layout {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  padding-bottom: 94px;
}

.business-cold-band .business-section-heading p {
  color: rgba(255, 255, 255, .76);
}

.cold-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0;
}

.cold-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), rgba(201, 154, 67, .65), rgba(255, 255, 255, .18));
}

.cold-flow span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 0 10px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 2px solid var(--gold);
  font-weight: 900;
}

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

.cold-partner-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 312px;
  padding: 22px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
}

.cold-logo-box {
  display: grid;
  place-items: center;
  min-height: 102px;
  padding: 16px;
  color: #1c7a2f;
  background: #fff;
  border-radius: 3px;
  font-size: 30px;
  font-weight: 900;
}

.cold-logo-box.is-deep {
  background: #07111a;
}

.cold-logo-box img {
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
}

.cold-partner-card > div:last-child > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.cold-partner-card h3 {
  color: #fff;
  margin-top: 6px;
}

.cold-partner-card p {
  color: rgba(255, 255, 255, .72);
}

.article-list {
  display: grid;
  gap: 22px;
}

.article-row {
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: center;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.article-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(8, 21, 33, .1);
}

.article-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .55s ease;
}

.article-hero {
  margin: 0 auto;
  padding: 72px 20px 36px;
  color: var(--ink);
}

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

.article-cover {
  width: min(1200px, calc(100% - 40px));
  max-height: 560px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 2px;
}

.back-link {
  color: var(--accent);
  font-weight: 900;
}

.contact-page {
  background:
    linear-gradient(180deg, #f4f5f6 0%, #ffffff 48%, #f4f5f6 100%);
  overflow-x: hidden;
}

.contact-hero {
  min-height: 500px;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 68px 68px;
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: clamp(32px, 9vw, 132px);
  bottom: 70px;
  width: clamp(220px, 29vw, 380px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 54px rgba(255, 255, 255, .035),
    inset 0 0 0 108px rgba(201, 154, 67, .08);
  animation: contact-orbit-pulse 5.6s ease-in-out infinite;
}

.contact-hero-grid {
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(36px, 8vw, 108px);
  align-items: end;
}

.contact-hero .contact-hero-grid {
  position: relative;
  z-index: 4;
}

.contact-hero-grid > *,
.contact-directory-head > *,
.contact-service-panel > * {
  min-width: 0;
}

.contact-hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.3vw, 56px);
  line-height: 1.12;
  word-break: keep-all;
}

.contact-hero p {
  max-width: 660px;
}

.contact-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.contact-hero-metrics span {
  min-width: 0;
  padding: 20px 18px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: inset 0 -3px 0 rgba(201, 154, 67, .86);
  backdrop-filter: blur(7px);
}

.contact-hero-metrics strong {
  display: block;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.contact-hero-metrics small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.contact-directory-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 154, 67, .08), transparent 36%),
    linear-gradient(180deg, #ffffff, #f4f5f6);
}

.contact-directory-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .58;
  background-image:
    linear-gradient(90deg, transparent 0 48%, rgba(8, 21, 33, .05) 49%, transparent 50%),
    linear-gradient(0deg, transparent 0 48%, rgba(8, 21, 33, .04) 49%, transparent 50%);
  background-size: 92px 92px;
  pointer-events: none;
}

.contact-directory {
  position: relative;
  z-index: 1;
  padding-top: 84px;
  padding-bottom: 92px;
}

.contact-directory-head {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .72fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.contact-directory-head span,
.contact-service-panel span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-directory-head h2,
.contact-service-panel h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.16;
}

.contact-directory-head p,
.contact-service-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.contact-company-card {
  position: relative;
  min-width: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(8, 21, 33, .1);
  box-shadow: 0 18px 46px rgba(8, 21, 33, .08);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.contact-company-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.contact-company-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -62px;
  width: 170px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 154, 67, .28);
  border-radius: 50%;
}

.contact-company-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 25, 45, .24);
  box-shadow: 0 28px 62px rgba(8, 21, 33, .14);
}

.contact-card-head,
.contact-detail-list,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-region {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 10px;
  color: #7b581b;
  background: rgba(201, 154, 67, .14);
  font-size: 12px;
  font-weight: 900;
}

.contact-card-head strong {
  display: block;
  min-height: 58px;
  color: var(--deep);
  font-size: 21px;
  line-height: 1.38;
}

.contact-card-head p {
  margin: 14px 0 0;
  color: var(--steel);
  font-weight: 800;
}

.contact-detail-list {
  display: grid;
  gap: 18px;
  margin: auto 0 0;
}

.contact-detail-list div,
.contact-service-panel dl div {
  display: grid;
  gap: 5px;
}

.contact-detail-list dt,
.contact-service-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail-list dd,
.contact-service-panel dd {
  margin: 0;
  color: var(--deep);
  font-weight: 800;
  line-height: 1.55;
}

.contact-detail-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.contact-map-link,
.contact-call-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.contact-map-link {
  color: #fff;
  background: var(--accent);
}

.contact-map-link:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.contact-map-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.contact-map-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.contact-call-link {
  color: var(--deep);
  border: 1px solid rgba(8, 21, 33, .16);
}

.contact-call-link:hover {
  color: var(--accent);
  border-color: rgba(199, 25, 45, .32);
  transform: translateY(-2px);
}

.contact-service-panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, 1fr);
  gap: 44px;
  align-items: center;
  margin-top: 24px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(199, 25, 45, .92), rgba(8, 21, 33, .96)),
    var(--deep);
  box-shadow: 0 24px 64px rgba(8, 21, 33, .16);
}

.contact-service-panel span {
  color: rgba(255, 255, 255, .72);
}

.contact-service-panel h2,
.contact-service-panel dd {
  color: #fff;
}

.contact-service-panel p,
.contact-service-panel dt {
  color: rgba(255, 255, 255, .7);
}

.contact-service-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.contact-company-card[data-animate="contact-card"] {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    box-shadow .28s ease,
    border-color .28s ease;
}

.contact-company-card[data-animate="contact-card"].is-visible {
  animation: contact-card-in .56s ease;
  animation-delay: var(--delay, 0ms);
}

@keyframes contact-card-in {
  from {
    opacity: 1;
    transform: translateY(18px);
    filter: none;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }
}

@keyframes contact-orbit-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: .78;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 42px;
  align-items: start;
}

.contact-panel {
  padding: 30px;
  border-top: 4px solid var(--accent);
  box-shadow: 0 18px 44px rgba(8, 21, 33, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.contact-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(8, 21, 33, .12);
}

.contact-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0 0 18px;
}

.empty-state {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .76);
  background: #07111a;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(30deg, transparent 0 48%, rgba(255, 255, 255, .22) 49%, transparent 50%),
    linear-gradient(150deg, transparent 0 48%, rgba(255, 255, 255, .18) 49%, transparent 50%);
  background-size: 120px 120px;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 48px;
  padding: 54px 0 38px;
}

.footer-brand h2,
.site-footer h3 {
  color: #fff;
  margin: 16px 0 12px;
}

.footer-brand p {
  max-width: 460px;
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s ease,
    transform .7s ease,
    filter .7s ease,
    clip-path .8s ease;
  transition-delay: var(--delay, 0ms);
}

[data-animate="fade-left"] {
  transform: translateX(26px);
}

[data-animate="clip-in"] {
  clip-path: inset(0 18% 0 0);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
  filter: none;
  clip-path: inset(0 0 0 0);
}

@keyframes mark-sheen {
  0%, 68% {
    transform: translateX(-120%);
  }
  82%, 100% {
    transform: translateX(120%);
  }
}

@keyframes hero-scan {
  0%, 52% {
    transform: translateX(-95%);
  }
  78%, 100% {
    transform: translateX(80%);
  }
}

@keyframes hero-copy-rail {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@keyframes hero-copy-corner {
  from {
    opacity: 0;
    transform: translate(14px, 14px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes hero-mark-in {
  from {
    opacity: 0;
    transform: translate3d(22px, 10px, 0) scale(.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-kicker-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes hero-kicker-flow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 220% 50%;
  }
}

@keyframes hero-text-rise {
  from {
    opacity: 0;
    transform: translateY(120%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 118%, 0) skewY(5deg) scaleY(.88);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewY(0) scaleY(1);
    filter: blur(0);
  }
}

@keyframes hero-key-block {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes hero-key-fill {
  from {
    background-size: 0% 78%;
  }
  to {
    background-size: 100% 78%;
  }
}

@keyframes hero-key-sheen {
  0%, 46% {
    transform: translateX(-135%) skewX(-16deg);
  }
  72%, 100% {
    transform: translateX(135%) skewX(-16deg);
  }
}

@keyframes hero-key-line {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes hero-key-glow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(216, 160, 55, 0));
  }
  50% {
    filter: drop-shadow(0 0 7px rgba(216, 160, 55, .55));
  }
}

@keyframes hero-soft-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes network-ring {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.68);
  }
  20% {
    opacity: .7;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes node-pulse {
  0%, 100% {
    opacity: .68;
    transform: scale(.94);
    box-shadow: 0 0 0 5px rgba(199, 25, 45, .12);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(201, 154, 67, .12), 0 0 22px rgba(255, 255, 255, .3);
  }
}

@keyframes packet-a {
  0% {
    transform: translate(-12px, 8px) scale(.72);
    opacity: 0;
  }
  20%, 72% {
    opacity: .9;
  }
  58% {
    transform: translate(128px, -38px) scale(1);
  }
  100% {
    transform: translate(214px, -20px) scale(.72);
    opacity: 0;
  }
}

@keyframes packet-b {
  0% {
    transform: translate(-10px, -8px) scale(.72);
    opacity: 0;
  }
  22%, 76% {
    opacity: .88;
  }
  60% {
    transform: translate(90px, 46px) scale(1);
  }
  100% {
    transform: translate(168px, 72px) scale(.72);
    opacity: 0;
  }
}

@keyframes subsidiary-feature-in {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.975);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes subsidiary-feature-line {
  from {
    transform: scaleX(.18);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes route-truck {
  0% {
    transform: translateX(-180px);
  }
  100% {
    transform: translateX(calc(100vw + 240px));
  }
}

@keyframes wheel-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ops-level {
  0%, 100% {
    transform: scaleX(.76);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes media-scan {
  0%, 58% {
    transform: translateX(-120%);
  }
  86%, 100% {
    transform: translateX(120%);
  }
}

@keyframes about-carousel-drift {
  0% {
    transform: scale(1.08) translateX(-1.8%);
  }
  100% {
    transform: scale(1.14) translateX(1.8%);
  }
}

@keyframes about-carousel-drift-reverse {
  0% {
    transform: scale(1.08) translateX(1.8%);
  }
  100% {
    transform: scale(1.14) translateX(-1.8%);
  }
}

@keyframes supply-move {
  0% {
    left: -20px;
    opacity: 0;
  }
  12%, 82% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 20px);
    opacity: 0;
  }
}

@keyframes map-drift {
  to {
    background-position: 72px 72px;
  }
}

@keyframes cta-flow {
  0%, 45% {
    transform: translateX(-60%);
  }
  78%, 100% {
    transform: translateX(60%);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-flow-a {
  0% {
    left: 104px;
    opacity: 0;
  }
  18%, 78% {
    opacity: 1;
  }
  100% {
    left: 214px;
    opacity: 0;
  }
}

@keyframes orbit-flow-b {
  0% {
    right: 106px;
    opacity: 0;
  }
  18%, 78% {
    opacity: 1;
  }
  100% {
    right: 220px;
    opacity: 0;
  }
}

@keyframes subsidiary-layer-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes honor-sheen {
  0%, 54% {
    transform: translateX(-120%);
  }
  82%, 100% {
    transform: translateX(120%);
  }
}

.green-smart-page {
  --green: #28a86b;
  --green-dark: #11654d;
  --teal: #1c9ea0;
  --night: #07171b;
  --leaf-paper: #f5f8f3;
  overflow-x: hidden;
  background: var(--leaf-paper);
}

.green-smart-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.green-smart-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(245, 248, 243, 0), var(--leaf-paper));
  z-index: -1;
}

.green-hero-layout {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 44px;
  padding-top: 118px;
  padding-bottom: 82px;
}

.green-hero-copy {
  min-width: 0;
  max-width: 760px;
}

.green-hero-copy .eyebrow,
.green-smart-page .section-heading span,
.green-overview-copy span,
.green-transport-copy span,
.green-smart-cta span {
  color: #8fe3b3;
  letter-spacing: 0;
}

.green-hero-copy h1 {
  margin: 12px 0 18px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.green-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

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

.green-hero-actions .button-link {
  background: var(--green);
}

.green-hero-actions .button-link:hover {
  background: #1e8f5a;
}

.green-hero-actions .ghost-link {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

.green-command-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(7, 23, 27, .74);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

.green-command-head {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.green-command-head span {
  color: #8fe3b3;
  font-weight: 900;
}

.green-command-head strong {
  font-size: 20px;
  line-height: 1.35;
}

.green-command-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  color: rgba(255, 255, 255, .84);
  font-weight: 900;
}

.green-command-row i {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  border-radius: 999px;
}

.green-command-row i::before {
  content: "";
  display: block;
  width: var(--level);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: inherit;
}

.green-command-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.green-command-foot b {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  color: #dffbed;
  border: 1px solid rgba(143, 227, 179, .28);
  background: rgba(143, 227, 179, .08);
  font-size: 13px;
  text-align: center;
}

.green-smart-overview {
  position: relative;
  overflow: hidden;
}

.green-hero-layout > *,
.green-overview-grid > *,
.green-platform-layout > *,
.green-transport-layout > * {
  min-width: 0;
}

.green-smart-overview::before,
.green-platform-map::before,
.green-transport-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 101, 77, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 101, 77, .08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.green-overview-grid {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.24fr;
  align-items: start;
  gap: 42px;
  padding-top: 70px;
}

.green-overview-copy span,
.green-transport-copy span,
.green-smart-cta span {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
}

.green-overview-copy h2,
.green-transport-copy h2,
.green-smart-cta h2 {
  margin: 10px 0 18px;
  color: var(--night);
  font-size: 42px;
  line-height: 1.16;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.green-overview-copy p,
.green-transport-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.green-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.green-stat-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(8, 21, 33, .08);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(20, 49, 45, .08);
}

.green-stat-card strong {
  display: block;
  min-height: 54px;
  color: var(--green-dark);
  font-size: 38px;
  line-height: 1;
}

.green-stat-card h3 {
  margin: 18px 0 8px;
  font-size: 18px;
}

.green-stat-card p,
.platform-module-card p,
.green-lever-card p,
.green-flow-card p {
  margin: 0;
  color: var(--muted);
}

.green-platform-section .split-heading {
  align-items: end;
}

.green-platform-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.green-platform-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(8, 21, 33, .08);
  background: linear-gradient(135deg, #ffffff, #eef7f1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.platform-core,
.platform-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}

.platform-core {
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--teal));
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(17, 101, 77, .26);
}

.platform-node {
  width: 72px;
  height: 72px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(17, 101, 77, .18);
  box-shadow: 0 14px 32px rgba(8, 21, 33, .08);
}

.node-ai {
  left: 32px;
  top: 34px;
}

.node-tms {
  right: 38px;
  top: 54px;
}

.node-wms {
  left: 42px;
  bottom: 48px;
}

.node-vms {
  right: 46px;
  bottom: 42px;
}

.platform-route {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(40, 168, 107, .08), rgba(28, 158, 160, .76), rgba(40, 168, 107, .08));
  transform-origin: 50% 50%;
}

.route-a {
  left: 72px;
  right: 72px;
  top: 50%;
}

.route-b {
  left: 90px;
  right: 88px;
  top: 50%;
  transform: rotate(42deg);
}

.route-c {
  left: 92px;
  right: 88px;
  top: 50%;
  transform: rotate(-42deg);
}

.platform-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.platform-module-card {
  min-height: 196px;
  padding: 24px;
  border: 1px solid rgba(8, 21, 33, .08);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.platform-module-card:hover,
.green-stat-card:hover,
.green-flow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40, 168, 107, .3);
  box-shadow: 0 22px 50px rgba(17, 101, 77, .12);
}

.platform-module-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--night);
  font-weight: 900;
}

.platform-module-card h3,
.green-lever-card h3,
.green-flow-card h3 {
  margin: 20px 0 10px;
  font-size: 21px;
  line-height: 1.3;
}

.green-transport-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 23, 27, .96), rgba(12, 57, 54, .94)),
    var(--night);
}

.green-transport-layout {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 38px;
  align-items: start;
}

.green-transport-copy {
  position: sticky;
  top: 120px;
}

.green-transport-copy h2 {
  color: #fff;
}

.green-transport-copy p {
  color: rgba(255, 255, 255, .76);
}

.green-lever-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.green-lever-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
}

.green-lever-card span {
  color: #8fe3b3;
  font-size: 32px;
  font-weight: 900;
}

.green-lever-card h3 {
  color: #fff;
}

.green-lever-card p {
  color: rgba(255, 255, 255, .72);
}

.green-flow-section {
  overflow: hidden;
}

.green-flow-line {
  width: min(860px, 100%);
  height: 2px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, rgba(40, 168, 107, 0), rgba(40, 168, 107, .9), rgba(201, 154, 67, .8), rgba(40, 168, 107, 0));
}

.green-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.green-flow-card {
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(8, 21, 33, .08);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.green-flow-card span {
  display: inline-flex;
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
}

.green-smart-cta {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 86px;
  padding: 40px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--night));
  box-shadow: 0 24px 70px rgba(7, 23, 27, .18);
}

.green-smart-cta span {
  color: #8fe3b3;
}

.green-smart-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: #fff;
}

.green-smart-cta .button-link {
  flex: 0 0 auto;
  background: #fff;
  color: var(--green-dark);
}

.news-media-page,
.article-detail-page,
.standard-content-page {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #eef1f3 0%, #ffffff 42%, #f4f5f6 100%);
}

.news-media-hero,
.article-detail-hero,
.standard-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.news-media-hero {
  min-height: clamp(500px, 68vh, 660px);
  display: flex;
  align-items: center;
  padding: clamp(88px, 12vw, 150px) 0 clamp(118px, 14vw, 178px);
}

.news-media-hero::after,
.article-detail-hero::after,
.standard-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(180deg, rgba(244, 245, 246, 0), rgba(244, 245, 246, .98));
  pointer-events: none;
}

.media-hero-grid,
.article-hero-grid,
.standard-page-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .36;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .7), transparent);
}

.media-hero-route {
  position: absolute;
  right: clamp(22px, 8vw, 130px);
  bottom: clamp(58px, 8vw, 108px);
  z-index: 0;
  width: min(410px, 34vw);
  height: 150px;
  border-bottom: 1px solid rgba(201, 154, 67, .55);
  border-left: 1px solid rgba(255, 255, 255, .22);
  transform: skewX(-12deg);
  pointer-events: none;
}

.media-hero-route span {
  position: absolute;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 67, .85), rgba(199, 25, 45, .68), transparent);
}

.media-hero-route span:nth-child(1) {
  left: 14%;
  right: 8%;
  top: 24%;
}

.media-hero-route span:nth-child(2) {
  left: 0;
  right: 30%;
  top: 54%;
}

.media-hero-route span:nth-child(3) {
  left: 34%;
  right: 0;
  top: 82%;
}

.news-hero-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(34px, 6vw, 80px);
  align-items: end;
}

.news-hero-copy {
  max-width: 760px;
  padding-left: clamp(18px, 2.5vw, 34px);
  border-left: 4px solid var(--accent);
}

.news-hero-copy h1,
.article-hero-inner h1,
.standard-page-intro h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.news-hero-copy p,
.article-hero-inner p,
.standard-page-intro p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.news-hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(8, 21, 33, .68);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .26);
  backdrop-filter: blur(14px);
}

.news-hero-metrics div {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.news-hero-metrics div:first-child {
  border-left: 0;
}

.news-hero-metrics strong {
  color: #fff;
  font-size: 46px;
  line-height: 1;
}

.news-hero-metrics span {
  margin-top: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 900;
}

.media-feature-section {
  position: relative;
  z-index: 4;
  margin-top: -76px;
  padding-top: 0;
}

.media-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 24px;
  align-items: stretch;
}

.media-feature-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(8, 21, 33, .08);
  box-shadow: 0 28px 70px rgba(8, 21, 33, .16);
}

.media-feature-card::before,
.media-digest-panel::before,
.standard-page-prose::before,
.article-prose::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), transparent);
}

.media-feature-card a {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  min-height: 430px;
  color: inherit;
}

.media-feature-image {
  overflow: hidden;
  background: var(--deep);
}

.media-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .65s ease;
}

.media-feature-card:hover .media-feature-image img,
.media-archive-row:hover .media-archive-image img {
  transform: scale(1.045);
}

.media-feature-copy {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px);
}

.media-feature-copy span,
.media-digest-head span,
.media-year-strip span,
.article-hero-meta span,
.article-meta-panel span,
.article-side-rail span,
.article-next-band span,
.standard-page-meta span,
.standard-prose-label span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.media-feature-copy time,
.media-digest-list time,
.media-archive-copy time {
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.media-feature-copy h2 {
  margin: 14px 0 14px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.media-feature-copy p,
.media-digest-panel p,
.media-archive-copy p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.media-read-more {
  width: fit-content;
  margin-top: 28px;
  color: var(--accent);
}

.media-read-more::after {
  content: ">";
  margin-left: 8px;
}

.media-digest-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 30px;
  color: #fff;
  background:
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, .055) 54px 55px),
    linear-gradient(150deg, #07111a, #172a38);
  box-shadow: 0 24px 64px rgba(8, 21, 33, .18);
}

.media-digest-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.media-digest-head strong {
  font-size: 24px;
  line-height: 1.2;
}

.media-digest-list {
  display: grid;
  gap: 14px;
}

.media-digest-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.media-digest-list em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.media-digest-list strong {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.media-archive-section {
  padding-top: 16px;
}

.media-year-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.media-year-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--accent);
  border: 1px solid rgba(199, 25, 45, .2);
  background: #fff;
}

.media-archive-row {
  position: relative;
  grid-template-columns: 360px minmax(0, 1fr);
  padding: 0;
  border: 1px solid rgba(8, 21, 33, .08);
  box-shadow: 0 14px 36px rgba(8, 21, 33, .05);
}

.media-archive-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .28s ease;
}

.media-archive-row:hover::after {
  transform: scaleY(1);
}

.media-archive-image {
  overflow: hidden;
  min-height: 230px;
  background: var(--deep);
}

.media-archive-image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .55s ease;
}

.media-archive-copy {
  min-width: 0;
  padding: 30px 34px 28px 6px;
}

.media-archive-copy h2 {
  margin: 10px 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.24;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.media-archive-copy .text-link {
  margin-top: 16px;
}

.article-detail-hero {
  min-height: clamp(520px, 70vh, 700px);
  display: flex;
  align-items: center;
  padding: clamp(92px, 13vw, 160px) 0 clamp(130px, 16vw, 190px);
}

.article-hero-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding-left: clamp(18px, 2.4vw, 34px);
  border-left: 4px solid var(--accent);
}

.article-back-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.article-hero-meta span,
.article-hero-meta time {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.article-cover-stage {
  position: relative;
  z-index: 5;
  width: min(1200px, calc(100% - 40px));
  margin: -96px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 20px;
}

.article-cover-frame {
  overflow: hidden;
  min-width: 0;
  background: var(--deep);
  box-shadow: 0 28px 80px rgba(8, 21, 33, .22);
}

.article-cover-frame .article-cover {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 420px;
  aspect-ratio: 21 / 9;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
}

.article-meta-panel {
  min-width: 0;
  padding: 26px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 22px 60px rgba(199, 25, 45, .22);
}

.article-meta-panel span {
  color: rgba(255, 255, 255, .72);
}

.article-meta-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.2;
}

.article-meta-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.article-reading-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-top: 72px;
}

.article-side-rail {
  position: sticky;
  top: 120px;
  min-width: 0;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
}

.article-side-rail strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.article-prose {
  position: relative;
  max-width: none;
  min-width: 0;
  padding: clamp(34px, 5vw, 62px);
  color: #25323c;
  background: #fff;
  box-shadow: 0 20px 58px rgba(8, 21, 33, .08);
}

.article-prose p {
  font-size: 18px;
  line-height: 1.95;
}

.article-prose > :last-child {
  margin-bottom: 0;
}

.article-next-band {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 82px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 38px clamp(24px, 5vw, 54px);
  color: #fff;
  background:
    repeating-linear-gradient(90deg, transparent 0 62px, rgba(255, 255, 255, .045) 62px 63px),
    linear-gradient(135deg, #081521, #1d3341);
}

.article-next-band span {
  color: var(--gold);
}

.article-next-band h2 {
  margin: 7px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: 0;
}

.standard-page-hero {
  min-height: 520px;
  padding: clamp(96px, 12vw, 156px) clamp(20px, 6vw, 96px);
}

.standard-page-intro {
  position: relative;
  min-width: 0;
  padding-left: clamp(18px, 2.5vw, 34px);
  border-left: 4px solid var(--accent);
}

.standard-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.standard-page-meta span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
}

.standard-page-prose {
  position: relative;
  width: min(1200px, calc(100% - 40px));
  max-width: none;
  margin: -72px auto 86px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid rgba(8, 21, 33, .08);
}

.standard-prose-label {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
}

.standard-prose-label strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: anywhere;
}

.standard-page-prose .prose-body {
  max-width: none;
}

.standard-page-prose p {
  color: #24313b;
  font-size: 17px;
  line-height: 1.95;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

@media (max-width: 1080px) {
  .hero-ops-panel {
    display: none;
  }

  .network-line,
  .network-node,
  .network-packet {
    opacity: .55;
  }

  .green-hero-layout,
  .green-overview-grid,
  .green-platform-layout,
  .green-transport-layout {
    grid-template-columns: 1fr;
  }

  .green-hero-layout {
    align-items: end;
  }

  .green-command-panel {
    max-width: 430px;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 360px;
    clip-path: none;
  }

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

  .about-copy::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 4px;
  }

  .green-transport-copy {
    position: static;
  }

  .main-nav-row {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .about-layout,
  .feature-layout,
  .honors-layout,
  .honors-wall,
  .about-command-layout,
  .contact-layout,
  .article-row {
    grid-template-columns: 1fr;
  }

  .about-orbit {
    min-height: 320px;
  }

  .about-hero {
    min-height: clamp(640px, 74vh, 760px);
  }

  .about-hero .about-hero-command {
    min-height: clamp(640px, 74vh, 760px);
    padding: 72px 0 68px;
  }

  .business-hero .business-hero-panel {
    grid-template-columns: 1fr;
    padding: 76px 0 68px;
  }

  .business-hero-map {
    min-height: 300px;
  }

  .contact-hero-grid,
  .contact-directory-head,
  .contact-service-panel {
    grid-template-columns: 1fr;
  }

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

  .contact-service-panel dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .honors-band {
    background: linear-gradient(180deg, #0b1722 0%, #182b38 42%, #f4f5f6 42%, #ffffff 100%);
  }

  .honors-copy {
    max-width: 720px;
  }

  .honor-feature-card {
    transform: none;
  }

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

@media (max-width: 720px) {
  .green-smart-hero,
  .green-hero-layout {
    min-height: auto;
  }

  .green-smart-hero {
    background-position: 62% center;
  }

  .green-hero-layout {
    gap: 26px;
    padding-top: 92px;
    padding-bottom: 58px;
  }

  .green-hero-copy h1 {
    font-size: 40px;
    line-height: 1.1;
    word-break: break-all;
  }

  .green-hero-copy p {
    font-size: 17px;
  }

  .green-command-panel {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .green-command-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .green-command-foot,
  .green-stat-grid,
  .platform-module-grid,
  .green-lever-grid,
  .green-flow-grid {
    grid-template-columns: 1fr;
  }

  .green-overview-copy h2,
  .green-transport-copy h2,
  .green-smart-cta h2 {
    font-size: 30px;
    line-height: 1.18;
    word-break: break-all;
  }

  .green-platform-map {
    min-height: 300px;
  }

  .platform-node {
    width: 62px;
    height: 62px;
    font-size: 13px;
  }

  .platform-core {
    width: 98px;
    height: 98px;
  }

  .green-flow-line {
    display: none;
  }

  .green-smart-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
    margin-bottom: 58px;
  }

  .top-strip,
  .top-strip div,
  .split-heading,
  .cta-band,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav-row {
    gap: 16px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 560px;
  }

  .honors-layout {
    padding-top: 62px;
  }

  .honors-copy h2 {
    font-size: 32px;
  }

  .honors-proof,
  .about-command-metrics,
  .honor-card-grid {
    grid-template-columns: 1fr;
  }

  .about-page .page-prose {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 0 34px;
  }

  .about-page .prose-label strong {
    font-size: 24px;
  }

  .about-page .subsidiaries-section {
    padding-top: 34px;
  }

  .about-command-layout {
    padding: 58px 0;
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero .about-hero-command {
    min-height: auto;
    padding: 54px 0 62px;
  }

  .about-command-copy h2 {
    font-size: 34px;
  }

  .business-hero {
    min-height: auto;
  }

  .business-hero .business-hero-panel {
    padding: 58px 0 54px;
  }

  .business-page .section,
  .business-hero .business-hero-panel,
  .business-page .partner-grid,
  .business-page .partner-card,
  .business-page .cold-partner-grid,
  .business-page .cold-partner-card {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
  }

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

  .business-hero-stats,
  .partner-grid,
  .cold-flow,
  .cold-partner-grid {
    grid-template-columns: 1fr;
  }

  .business-hero-map {
    display: none;
  }

  .business-sector,
  .business-cold-layout {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .business-wave {
    height: 72px;
    margin-bottom: 4px;
  }

  .contact-hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 58px;
  }

  .contact-hero::after {
    width: 210px;
    right: -80px;
    bottom: 42px;
  }

  .contact-hero-grid,
  .contact-directory,
  .contact-company-grid,
  .contact-service-panel {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
  }

  .contact-hero h1 {
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .contact-hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .contact-hero-metrics,
  .contact-company-grid,
  .contact-service-panel dl {
    grid-template-columns: 1fr;
  }

  .contact-directory {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .contact-directory-head {
    gap: 18px;
    margin-bottom: 24px;
  }

  .contact-directory-head h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .contact-directory-head h2,
  .contact-directory-head p,
  .contact-card-head strong,
  .contact-card-head p,
  .contact-detail-list dd,
  .contact-service-panel h2,
  .contact-service-panel p,
  .contact-service-panel dd {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .contact-company-card {
    min-height: auto;
    padding: 22px;
  }

  .contact-card-head strong {
    min-height: auto;
  }

  .contact-service-panel {
    padding: 24px;
    gap: 24px;
  }

  .partner-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-logo-box {
    width: 100%;
  }

  .cold-flow::before {
    left: 50%;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 1px;
    height: auto;
  }

  .about-orbit {
    display: none;
  }

  .hero h1,
  .page-hero h1,
  .compact-hero h1,
  .article-hero h1 {
    font-size: 40px;
  }

  .hero-copy-motion {
    max-width: 100%;
    padding-left: 18px;
  }

  .hero-copy-motion::after {
    width: 78px;
    height: 78px;
  }

  .hero-copy-mark {
    left: auto;
    right: -46px;
    top: 36px;
    width: 180px;
    height: 180px;
  }

  .hero-kicker {
    gap: 10px;
    font-size: 12px;
  }

  .hero-kicker i {
    width: 30px;
  }

  .hero .hero-title-motion {
    font-size: clamp(38px, 11.5vw, 52px);
    line-height: 1.02;
  }

  .hero-title-line:nth-child(2) > span:last-child {
    display: block;
    margin-top: .04em;
  }

  .hero-title-key {
    margin-right: 0;
  }

  .hero .hero-lead {
    max-width: 100%;
    font-size: 17px;
  }

  .business-hero .business-hero-copy h1 {
    font-size: 34px;
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .business-hero-copy p {
    font-size: 17px;
  }

  .partner-card {
    padding: 20px;
  }

  .partner-logo-box {
    min-height: 72px;
    padding: 12px;
    overflow: hidden;
  }

  .partner-logo-box img {
    width: auto;
    max-width: min(100%, 260px);
    max-height: 50px;
  }

  .business-page h1,
  .business-page h2,
  .business-page h3,
  .business-page p,
  .partner-facts span {
    word-break: break-all;
  }

  .feature-grid,
  .article-grid,
  .process-grid,
  .subsidiary-grid,
  .stats-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

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

  .about-carousel-dots {
    top: 20px;
    bottom: auto;
    left: 20px;
  }

  .about-layout {
    width: calc(100% - 40px);
  }

  .about-copy {
    padding: 34px 24px 38px;
  }

  .about-copy .section-heading h2 {
    font-size: 29px;
  }

  .about-capability-grid,
  .about-flow-strip {
    grid-template-columns: 1fr;
  }

  .about-media-badge {
    left: 18px;
    bottom: 18px;
  }

  .page-prose {
    width: calc(100% - 40px);
    padding: 32px 24px;
  }
}

@media (max-width: 1080px) {
  .news-hero-inner,
  .media-feature-layout,
  .media-feature-card a,
  .article-cover-stage,
  .article-reading-shell,
  .standard-page-prose {
    grid-template-columns: 1fr;
  }

  .news-hero-metrics {
    max-width: 420px;
  }

  .media-hero-route {
    opacity: .42;
  }

  .media-feature-card a {
    min-height: auto;
  }

  .media-feature-image img {
    min-height: 340px;
  }

  .media-digest-panel {
    min-height: auto;
  }

  .media-archive-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .media-archive-copy {
    padding: 28px;
  }

  .article-cover-stage {
    align-items: start;
  }

  .article-meta-panel {
    width: min(380px, 100%);
  }

  .article-side-rail,
  .standard-prose-label {
    position: static;
  }
}

@media (max-width: 720px) {
  .news-media-hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 104px;
  }

  .news-hero-inner {
    gap: 28px;
  }

  .news-hero-copy,
  .article-hero-inner,
  .standard-page-intro {
    padding-left: 18px;
  }

  .news-hero-copy h1,
  .article-hero-inner h1,
  .standard-page-intro h1 {
    font-size: 38px;
    line-height: 1.12;
    word-break: break-all;
  }

  .news-hero-copy p,
  .article-hero-inner p,
  .standard-page-intro p {
    font-size: 16px;
  }

  .news-hero-metrics {
    width: 100%;
  }

  .news-hero-metrics div {
    min-height: 112px;
    padding: 18px;
  }

  .news-hero-metrics strong {
    font-size: 36px;
  }

  .media-feature-section {
    margin-top: -58px;
    padding-bottom: 50px;
  }

  .media-feature-image img {
    min-height: 250px;
  }

  .media-feature-copy,
  .media-digest-panel {
    padding: 24px;
  }

  .media-feature-copy h2 {
    font-size: 26px;
    word-break: break-all;
  }

  .media-archive-section {
    padding-top: 0;
  }

  .media-year-strip {
    justify-content: flex-start;
  }

  .media-archive-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .media-archive-image,
  .media-archive-image img {
    min-height: 220px;
  }

  .media-archive-copy {
    padding: 24px;
  }

  .media-archive-copy h2 {
    font-size: 22px;
    word-break: break-all;
  }

  .article-detail-hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 118px;
  }

  .article-cover-stage {
    margin-top: -68px;
  }

  .article-cover-frame .article-cover {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .article-meta-panel {
    padding: 22px;
  }

  .article-reading-shell {
    padding-top: 52px;
  }

  .article-prose {
    padding: 30px 24px;
  }

  .article-prose p,
  .standard-page-prose p {
    font-size: 16px;
    line-height: 1.9;
  }

  .article-next-band {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 58px;
    padding: 28px 24px;
  }

  .standard-page-hero {
    min-height: auto;
    padding: 82px 20px 116px;
  }

  .standard-page-meta {
    margin-top: 22px;
  }

  .standard-page-prose {
    margin-top: -62px;
    margin-bottom: 58px;
    padding: 32px 24px;
  }

  .standard-prose-label strong {
    font-size: 24px;
  }
}

/* Newsroom redesign v2 */
.newsroom-page,
.article-story-page {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #eef1f3 0%, #ffffff 46%, #f4f5f6 100%);
}

.newsroom-hero,
.story-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(8, 21, 33, .98), rgba(16, 35, 48, .96) 58%, rgba(8, 21, 33, .98)),
    var(--deep);
}

.newsroom-hero::before,
.story-header::before {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 92px);
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--gold), transparent);
}

.newsroom-hero::after,
.story-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 150px;
  background: linear-gradient(180deg, rgba(244, 245, 246, 0), #eef1f3);
  pointer-events: none;
}

.newsroom-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: clamp(78px, 10vw, 132px) 0 clamp(108px, 12vw, 152px);
}

.newsroom-hero-map,
.story-header-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .74) 54%, transparent 100%);
}

.newsroom-hero-map::after,
.story-header-grid::after {
  content: "";
  position: absolute;
  right: clamp(24px, 8vw, 130px);
  top: 22%;
  width: min(430px, 36vw);
  height: min(430px, 36vw);
  border: 1px solid rgba(201, 154, 67, .34);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    0 0 0 72px rgba(255, 255, 255, .025);
}

.newsroom-hero-inner,
.story-header-inner {
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.newsroom-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(32px, 6vw, 78px);
  align-items: end;
}

.newsroom-title-block {
  min-width: 0;
  max-width: 760px;
}

.newsroom-title-block h1,
.story-header-inner h1 {
  margin: 12px 0 18px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.newsroom-title-block p,
.story-header-inner p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.82;
  overflow-wrap: anywhere;
}

.newsroom-status-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 24px 68px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.newsroom-status-panel span,
.newsroom-lead-copy span,
.newsroom-index-head span,
.newsroom-timeline-date span,
.story-kicker span,
.story-publish-panel span,
.story-body-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.newsroom-status-panel strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.22;
}

.newsroom-status-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  background: rgba(255, 255, 255, .12);
}

.newsroom-status-panel div {
  padding: 16px;
  background: rgba(8, 21, 33, .5);
}

.newsroom-status-panel dt {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 900;
}

.newsroom-status-panel dd {
  margin: 8px 0 0;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.newsroom-empty {
  margin-top: -72px;
  padding-top: 0;
}

.newsroom-lead-section {
  position: relative;
  z-index: 4;
  margin-top: -82px;
  padding-top: 0;
}

.newsroom-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: stretch;
}

.newsroom-lead-story,
.newsroom-recent-index {
  background: #fff;
  border: 1px solid rgba(8, 21, 33, .08);
  box-shadow: 0 26px 70px rgba(8, 21, 33, .12);
}

.newsroom-lead-story {
  overflow: hidden;
}

.newsroom-lead-story a {
  min-height: 410px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) minmax(340px, .72fr);
  color: inherit;
}

.newsroom-lead-date {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 18px;
  color: #fff;
  background: var(--accent);
}

.newsroom-lead-date strong {
  font-size: 52px;
  line-height: .9;
}

.newsroom-lead-date span {
  margin-top: 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 900;
  writing-mode: vertical-rl;
}

.newsroom-lead-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 52px);
}

.newsroom-lead-copy span {
  color: var(--accent);
}

.newsroom-lead-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.newsroom-lead-copy p,
.newsroom-recent-index p,
.newsroom-timeline-copy p,
.story-prose p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.newsroom-lead-copy em {
  width: fit-content;
  margin-top: 28px;
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.newsroom-lead-copy em::after {
  content: ">";
  margin-left: 8px;
}

.newsroom-lead-media {
  overflow: hidden;
  background: var(--deep);
}

.newsroom-lead-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  transition: transform .65s ease;
}

.newsroom-lead-story:hover .newsroom-lead-media img,
.newsroom-timeline-item:hover .newsroom-timeline-thumb img {
  transform: scale(1.045);
}

.newsroom-recent-index {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.newsroom-index-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.newsroom-index-head span {
  color: var(--accent);
}

.newsroom-index-head strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.newsroom-recent-index a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.newsroom-recent-index a:last-child {
  border-bottom: 0;
}

.newsroom-recent-index em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.newsroom-recent-index time,
.newsroom-timeline-copy time {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
}

.newsroom-recent-index a strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.newsroom-timeline-section {
  padding-top: 26px;
}

.newsroom-timeline {
  position: relative;
  display: grid;
  border-top: 1px solid rgba(8, 21, 33, .1);
}

.newsroom-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 72px;
  width: 1px;
  background: linear-gradient(180deg, rgba(199, 25, 45, .42), rgba(201, 154, 67, .28), transparent);
}

.newsroom-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 118px 190px minmax(0, 1fr) 48px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(8, 21, 33, .1);
}

.newsroom-timeline-date {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: var(--accent);
}

.newsroom-timeline-date::after {
  content: "";
  position: absolute;
  right: 38px;
  top: 14px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  transform: rotate(45deg);
}

.newsroom-timeline-date strong {
  font-size: 34px;
  line-height: 1;
}

.newsroom-timeline-thumb {
  overflow: hidden;
  background: var(--deep);
}

.newsroom-timeline-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .55s ease;
}

.newsroom-timeline-copy {
  min-width: 0;
}

.newsroom-timeline-copy h3 {
  margin: 7px 0 8px;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.28;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.newsroom-row-action {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(199, 25, 45, .22);
  font-weight: 900;
  transition: color .22s ease, background .22s ease, border-color .22s ease;
}

.newsroom-timeline-item:hover .newsroom-row-action {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.story-header {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: clamp(78px, 10vw, 132px) 0 clamp(96px, 12vw, 142px);
}

.story-header-inner {
  max-width: 1060px;
}

.story-back-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
}

.story-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.story-kicker time {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 900;
}

.story-cover-band {
  position: relative;
  z-index: 4;
  width: min(1200px, calc(100% - 40px));
  margin: -74px auto 0;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 26px 76px rgba(8, 21, 33, .2);
}

.story-cover-band img {
  width: 100%;
  height: clamp(260px, 38vw, 460px);
  object-fit: cover;
}

.story-reading-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-top: 68px;
  padding-bottom: 94px;
}

.story-publish-panel {
  position: sticky;
  top: 118px;
  min-width: 0;
  padding: 0 0 0 20px;
  border-left: 4px solid var(--accent);
}

.story-publish-panel span {
  color: var(--accent);
}

.story-publish-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

.story-publish-panel p {
  margin: 16px 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.story-publish-panel a {
  color: var(--accent);
  font-weight: 900;
}

.story-publish-panel a::before {
  content: "<";
  margin-right: 8px;
}

.story-body-wrap {
  position: relative;
  min-width: 0;
  padding: clamp(34px, 5vw, 58px);
  background: #fff;
  border: 1px solid rgba(8, 21, 33, .08);
  box-shadow: 0 18px 54px rgba(8, 21, 33, .08);
}

.story-body-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), transparent);
}

.story-body-label {
  margin-bottom: 24px;
  color: var(--accent);
}

.story-prose {
  max-width: none;
}

.story-prose p {
  font-size: 18px;
  line-height: 1.95;
}

.story-prose > :last-child {
  margin-bottom: 0;
}

/* Media article detail redesign */
.media-article-page {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #eef1f3 0%, #fff 38%, #f4f5f6 100%);
}

.media-article-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(520px, 64vh, 680px);
  display: flex;
  align-items: stretch;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.media-article-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(180deg, rgba(238, 241, 243, 0), #eef1f3);
  pointer-events: none;
}

.media-article-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .7) 68%, transparent 100%);
}

.media-article-hero-inner {
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(32px, 6vw, 78px);
  align-items: end;
  padding: clamp(80px, 10vw, 128px) 0 clamp(108px, 12vw, 158px);
}

.media-article-back {
  position: absolute;
  left: 0;
  top: clamp(36px, 5vw, 58px);
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
}

.media-article-back::before {
  content: "<";
  margin-right: 8px;
  color: var(--gold);
}

.media-article-title-block {
  min-width: 0;
  max-width: 840px;
}

.media-article-title-block span,
.media-article-brief span,
.media-article-date-card span,
.media-article-source-card span,
.media-article-paper-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.media-article-title-block h1 {
  margin: 14px 0 20px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .36);
  overflow-wrap: anywhere;
}

.media-article-title-block p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.82;
  overflow-wrap: anywhere;
}

.media-article-brief {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-top: 4px solid var(--gold);
  background: rgba(8, 21, 33, .72);
  box-shadow: 0 24px 68px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.media-article-brief dl {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
}

.media-article-brief dt {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 900;
}

.media-article-brief dd {
  margin: 6px 0 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.media-article-shell {
  position: relative;
  z-index: 4;
  width: min(1200px, calc(100% - 40px));
  margin: -74px auto 0;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  padding-bottom: 96px;
}

.media-article-side {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.media-article-date-card,
.media-article-source-card {
  min-width: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(8, 21, 33, .08);
  box-shadow: 0 18px 46px rgba(8, 21, 33, .08);
}

.media-article-date-card {
  border-top: 4px solid var(--accent);
}

.media-article-date-card span,
.media-article-source-card span,
.media-article-paper-head span {
  color: var(--accent);
}

.media-article-date-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 62px;
  line-height: .9;
}

.media-article-date-card small {
  display: block;
  margin-top: 12px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 900;
}

.media-article-source-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.32;
}

.media-article-source-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.media-article-paper {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(8, 21, 33, .08);
  box-shadow: 0 26px 76px rgba(8, 21, 33, .14);
}

.media-article-paper-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px) clamp(26px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
}

.media-article-paper-head strong {
  color: var(--ink);
  font-size: 20px;
}

.media-article-cover {
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

.media-article-cover img {
  width: 100%;
  height: clamp(260px, 38vw, 460px);
  object-fit: cover;
}

.media-article-prose {
  max-width: none;
  padding: clamp(34px, 5vw, 62px);
}

.media-article-prose p {
  margin-bottom: 22px;
  color: #23313b;
  font-size: 18px;
  line-height: 1.98;
}

.media-article-prose > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .newsroom-hero-inner,
  .newsroom-lead-layout,
  .story-reading-layout,
  .media-article-hero-inner,
  .media-article-shell {
    grid-template-columns: 1fr;
  }

  .newsroom-status-panel {
    max-width: 420px;
  }

  .newsroom-lead-story a {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .newsroom-lead-media {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .newsroom-lead-date,
  .newsroom-lead-copy {
    grid-row: 2;
  }

  .newsroom-timeline::before {
    left: 49px;
  }

  .newsroom-timeline-item {
    grid-template-columns: 92px 160px minmax(0, 1fr) 44px;
    gap: 18px;
  }

  .newsroom-timeline-date::after {
    right: 34px;
  }

  .story-publish-panel {
    position: static;
  }

  .media-article-brief {
    max-width: 430px;
  }

  .media-article-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .newsroom-hero,
  .story-header {
    min-height: auto;
    padding-top: 76px;
  }

  .newsroom-hero {
    padding-bottom: 102px;
  }

  .story-header {
    padding-bottom: 104px;
  }

  .newsroom-title-block h1,
  .story-header-inner h1 {
    font-size: 38px;
    line-height: 1.12;
    word-break: break-all;
  }

  .newsroom-title-block p,
  .story-header-inner p {
    font-size: 16px;
  }

  .newsroom-status-panel {
    width: 100%;
    padding: 20px;
  }

  .newsroom-lead-section {
    margin-top: -58px;
    padding-bottom: 46px;
  }

  .newsroom-lead-story a {
    grid-template-columns: 1fr;
  }

  .newsroom-lead-media,
  .newsroom-lead-date,
  .newsroom-lead-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .newsroom-lead-media img {
    min-height: 240px;
  }

  .newsroom-lead-date {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 12px;
    padding: 18px 22px;
  }

  .newsroom-lead-date span {
    writing-mode: horizontal-tb;
  }

  .newsroom-lead-copy,
  .newsroom-recent-index {
    padding: 24px;
  }

  .newsroom-lead-copy h2 {
    font-size: 26px;
    word-break: break-all;
  }

  .newsroom-timeline-section {
    padding-top: 0;
  }

  .newsroom-timeline::before {
    display: none;
  }

  .newsroom-timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .newsroom-timeline-date {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .newsroom-timeline-date::after {
    display: none;
  }

  .newsroom-timeline-thumb img {
    aspect-ratio: 16 / 9;
  }

  .newsroom-row-action {
    width: 100%;
    height: 40px;
  }

  .story-cover-band {
    margin-top: -58px;
  }

  .story-cover-band img {
    height: 260px;
  }

  .story-reading-layout {
    padding-top: 48px;
    padding-bottom: 62px;
  }

  .story-body-wrap {
    padding: 30px 24px;
  }

  .story-prose p {
    font-size: 16px;
    line-height: 1.9;
  }

  .media-article-hero {
    min-height: auto;
  }

  .media-article-hero-inner {
    width: calc(100% - 40px);
    padding-top: 92px;
    padding-bottom: 92px;
    gap: 22px;
  }

  .media-article-back {
    top: 24px;
  }

  .media-article-title-block h1 {
    font-size: 36px;
    line-height: 1.16;
    word-break: break-all;
  }

  .media-article-title-block p {
    font-size: 16px;
  }

  .media-article-brief {
    padding: 20px;
  }

  .media-article-shell {
    width: calc(100% - 40px);
    margin-top: -48px;
    padding-bottom: 62px;
  }

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

  .media-article-date-card,
  .media-article-source-card,
  .media-article-paper-head,
  .media-article-prose {
    padding: 24px;
  }

  .media-article-date-card strong {
    font-size: 48px;
  }

  .media-article-cover img {
    height: 250px;
  }

  .media-article-prose p {
    font-size: 16px;
    line-height: 1.9;
  }
}

/* Article document redesign v3 */
.article-document-page {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #eef1f3 0%, #ffffff 38%, #f4f5f6 100%);
}

.document-masthead {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 7vw, 86px) 0 76px;
  color: #fff;
  background:
    linear-gradient(115deg, #07111a 0%, #102533 58%, #07111a 100%);
}

.document-masthead::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 100px;
  background: linear-gradient(180deg, rgba(238, 241, 243, 0), #eef1f3);
  pointer-events: none;
}

.document-masthead-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .75) 62%, transparent 100%);
}

.document-masthead-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
}

.document-issue-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.document-issue-panel a {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  margin-bottom: auto;
  color: #fff;
  font-weight: 900;
}

.document-issue-panel a::before {
  content: "<";
  margin-right: 8px;
  color: var(--gold);
}

.document-issue-panel span,
.document-kicker span,
.document-visual-copy span,
.document-reading-aside span,
.document-paper-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.document-issue-panel strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.18;
}

.document-issue-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .66);
  font-weight: 800;
}

.document-title-card {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 4vw, 44px);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 62px rgba(0, 0, 0, .22);
}

.document-title-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
}

.document-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.document-kicker span {
  color: var(--accent);
}

.document-kicker time {
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.document-title-card h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.document-title-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.document-visual-band {
  position: relative;
  z-index: 4;
  width: min(1200px, calc(100% - 40px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(8, 21, 33, .08);
  box-shadow: 0 24px 68px rgba(8, 21, 33, .13);
}

.document-visual-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.document-visual-copy span {
  color: var(--accent);
}

.document-visual-copy strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.document-visual-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.document-visual-band figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

.document-visual-band img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
  transition: transform .65s ease;
}

.document-visual-band:hover img {
  transform: scale(1.035);
}

.document-reading-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-top: 62px;
  padding-bottom: 86px;
}

.document-reading-aside {
  position: sticky;
  top: 118px;
  min-width: 0;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}

.document-reading-aside span {
  color: var(--accent);
}

.document-reading-aside strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.document-reading-aside dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.document-reading-aside dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
}

.document-reading-aside dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.document-paper {
  position: relative;
  min-width: 0;
  padding: clamp(34px, 5vw, 62px);
  background: #fff;
  border: 1px solid rgba(8, 21, 33, .08);
  box-shadow: 0 18px 54px rgba(8, 21, 33, .07);
}

.document-paper::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), transparent 60%);
}

.document-paper-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.document-paper-head span {
  color: var(--accent);
}

.document-paper-head i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 25, 45, .28), transparent);
}

.document-paper-head strong {
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.document-prose {
  max-width: none;
}

.document-prose p {
  margin-bottom: 22px;
  color: #23313b;
  font-size: 18px;
  line-height: 1.98;
}

.document-prose > :last-child {
  margin-bottom: 0;
}

.document-paper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: clamp(34px, 5vw, 58px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .document-masthead-inner,
  .document-visual-band,
  .document-reading-section {
    grid-template-columns: 1fr;
  }

  .document-issue-panel {
    min-height: 180px;
  }

  .document-visual-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .document-reading-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .document-masthead {
    padding-top: 46px;
    padding-bottom: 68px;
  }

  .document-masthead-inner {
    width: calc(100% - 40px);
    gap: 18px;
  }

  .document-issue-panel {
    min-height: 150px;
    padding: 22px;
  }

  .document-issue-panel,
  .document-title-card {
    width: 100%;
    max-width: 100%;
  }

  .document-title-card {
    padding: 28px 24px;
  }

  .document-title-card h1 {
    font-size: 28px;
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .document-title-card p {
    font-size: 16px;
  }

  .document-visual-band {
    margin-top: -44px;
  }

  .document-visual-copy {
    padding: 22px;
  }

  .document-visual-band img {
    height: 250px;
  }

  .document-reading-section {
    padding-top: 48px;
    padding-bottom: 62px;
  }

  .document-paper {
    padding: 30px 24px;
  }

  .document-paper-head {
    align-items: flex-start;
  }

  .document-paper-head strong {
    white-space: normal;
  }

  .document-prose p {
    font-size: 16px;
    line-height: 1.9;
  }

  .document-paper-actions {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

}
