:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #f9fbfd;
  --text: #0f172a;
  --muted: #5f6f85;
  --line: #e5eaf0;
  --navy: #0b1f3a;
  --navy-2: #102a4c;
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --teal: #14b8a6;
  --aqua: #e8fbf8;
  --ink-soft: #24364d;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(15, 23, 42, .08);
  --shadow-soft: 0 10px 26px rgba(15, 23, 42, .06);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Noto Sans SC", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff 0, var(--bg) 38%, #fff 100%);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

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

.container {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 234, 240, .86);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--navy);
  font-size: 18px;
  font-weight: 760;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 10px 22px rgba(37, 99, 235, .18);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.nav a,
.language a {
  border-radius: var(--radius);
  color: #334155;
  font-size: 14px;
  font-weight: 610;
  line-height: 1;
}

.nav a {
  padding: 9px 10px;
  white-space: nowrap;
}

.nav a:hover,
.language a:hover {
  background: #eef4ff;
  color: var(--blue);
}

.nav a.active,
.language a.active {
  background: #eef4ff;
  color: var(--blue);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: max-content;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
}

.language a {
  padding: 7px 4px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -6px;
}

.menu-lines::after {
  position: absolute;
  top: 6px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .22);
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-2);
  box-shadow: 0 16px 34px rgba(37, 99, 235, .27);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
}

.button.ghost {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: none;
}

.hero {
  padding: 58px 0 60px;
  border-bottom: 1px solid rgba(229, 234, 240, .86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 253, .98)),
    linear-gradient(120deg, rgba(37, 99, 235, .05), rgba(20, 184, 166, .045));
}

.home-video-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 70px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 104px 0 98px;
  border-bottom: 0;
  background: #071d35;
  isolation: isolate;
}

.home-video-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 145px;
  background: linear-gradient(180deg, transparent, rgba(246, 248, 251, 1));
  content: "";
  pointer-events: none;
  z-index: 1;
}

.home-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-video-bg::before,
.home-video-bg::after {
  position: absolute;
  inset: -18% -26%;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.home-video-bg::before {
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(125, 211, 252, .11) 47%, rgba(20, 184, 166, .07) 52%, transparent 64%),
    linear-gradient(20deg, transparent 0 58%, rgba(37, 99, 235, .08) 66%, transparent 78%);
  mix-blend-mode: screen;
  animation: hero-light-sweep 9.5s ease-in-out infinite;
}

.home-video-bg::after {
  background:
    radial-gradient(circle at 22% 78%, rgba(37, 99, 235, .13), transparent 26%),
    radial-gradient(circle at 78% 24%, rgba(20, 184, 166, .1), transparent 24%);
  opacity: .78;
  animation: hero-breath 13s ease-in-out infinite alternate;
}

.home-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  backface-visibility: hidden;
  will-change: transform;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.home-video-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(20, 184, 166, .18), transparent 28%),
    linear-gradient(90deg, rgba(7, 29, 53, .84), rgba(7, 29, 53, .58) 42%, rgba(7, 29, 53, .42) 100%),
    linear-gradient(180deg, rgba(3, 10, 23, .54), rgba(7, 29, 53, .08) 44%, rgba(3, 10, 23, .72));
  pointer-events: none;
  z-index: 1;
}

.home-hero-stage {
  position: relative;
  z-index: 3;
}

.home-hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.home-hero-copy h1 {
  max-width: 1030px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 720;
  line-height: 1.06;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .44);
}

.home-hero-copy > p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(226, 235, 247, .88);
  font-size: 18px;
  line-height: 1.72;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .34);
}

.home-video-hero .eyebrow {
  border-color: rgba(148, 163, 184, .34);
  background: rgba(8, 24, 45, .48);
  color: rgba(226, 235, 247, .92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}

.home-video-hero .hero-actions {
  justify-content: center;
}

.home-video-hero .button.secondary {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .94);
  color: #071d35;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

.home-video-hero .trust-row {
  margin-right: auto;
  margin-left: auto;
}

.home-video-hero .trust-item {
  border-color: rgba(148, 163, 184, .25);
  background: rgba(7, 29, 53, .46);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}

.home-video-hero .trust-item strong {
  color: #fff;
}

.home-video-hero .trust-item span {
  color: rgba(226, 235, 247, .78);
}

@keyframes hero-drift {
  from {
    transform: scale(1.025) translate3d(-.55%, -.4%, 0);
  }

  to {
    transform: scale(1.065) translate3d(.75%, .55%, 0);
  }
}

@keyframes page-photo-drift {
  from {
    transform: scale(1.018) translate3d(-.2%, -.12%, 0);
  }

  to {
    transform: scale(1.04) translate3d(.28%, .2%, 0);
  }
}

@keyframes hero-light-sweep {
  0% {
    opacity: .18;
    transform: translate3d(-34%, 0, 0);
  }

  42% {
    opacity: .62;
  }

  78% {
    opacity: .22;
    transform: translate3d(30%, 0, 0);
  }

  100% {
    opacity: .18;
    transform: translate3d(42%, 0, 0);
  }
}

@keyframes hero-breath {
  from {
    opacity: .48;
    transform: scale(1);
  }

  to {
    opacity: .82;
    transform: scale(1.03);
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 74px;
  border-bottom: 1px solid rgba(229, 234, 240, .86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 248, 251, .99)),
    linear-gradient(120deg, rgba(37, 99, 235, .045), rgba(20, 184, 166, .045));
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, .03) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 86%);
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(400px, .84fr);
  gap: 64px;
  align-items: center;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: #526278;
  font-size: 18px;
  line-height: 1.68;
}

.page-stat-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(219, 226, 236, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
}

.mini-stat {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mini-stat strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.mini-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-art {
  --hero-a: #2563eb;
  --hero-b: #14b8a6;
  --hero-c: #64748b;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(210, 219, 232, .92);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(243, 247, 252, .96) 50%, rgba(238, 246, 246, .92)),
    linear-gradient(120deg, color-mix(in srgb, var(--hero-a) 10%, transparent), color-mix(in srgb, var(--hero-b) 8%, transparent));
  box-shadow: 0 34px 88px rgba(15, 23, 42, .13);
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  opacity: .5;
  pointer-events: none;
}

.hero-art-strip {
  position: absolute;
  width: 62%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--hero-a) 38%, transparent), color-mix(in srgb, var(--hero-b) 30%, transparent), transparent);
  filter: blur(.1px);
  opacity: .72;
  transition: transform .18s ease-out;
}

.hero-art-strip-a {
  top: 70px;
  right: -14%;
}

.hero-art-strip-b {
  left: -18%;
  bottom: 72px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--hero-c) 22%, transparent), color-mix(in srgb, var(--hero-b) 24%, transparent), transparent);
}

.hero-art-frame {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: transform .18s ease-out;
}

.hero-art-topline,
.hero-art-signals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-art-topline span {
  color: #496077;
  font-size: 13px;
  font-weight: 760;
}

.hero-art-topline strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 780;
}

.hero-art-canvas {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 219, 232, .74);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .18)),
    linear-gradient(160deg, color-mix(in srgb, var(--hero-a) 10%, #f8fbff), color-mix(in srgb, var(--hero-b) 10%, #f6fbfb));
}

.hero-art-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(260px, calc(100% - 56px));
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 58px rgba(15, 23, 42, .12);
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-art-core strong {
  max-width: 220px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.16;
}

.hero-art-core small {
  color: #5f6f85;
  font-size: 12px;
  font-weight: 720;
}

.hero-art-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(255, 255, 255, .92);
  border-radius: 999px;
  background: var(--hero-a);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--hero-a) 28%, transparent);
}

.node-a {
  left: 14%;
  top: 24%;
}

.node-b {
  right: 14%;
  top: 30%;
  background: var(--hero-b);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--hero-b) 28%, transparent);
}

.node-c {
  left: 24%;
  bottom: 22%;
  background: var(--hero-c);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--hero-c) 24%, transparent);
}

.hero-art-route {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--hero-a) 48%, transparent), color-mix(in srgb, var(--hero-b) 42%, transparent));
  transform-origin: left center;
}

.route-a {
  left: 17%;
  top: 31%;
  width: 62%;
  transform: rotate(8deg);
}

.route-b {
  left: 26%;
  bottom: 30%;
  width: 54%;
  transform: rotate(-13deg);
}

.hero-art-signals {
  justify-content: start;
  flex-wrap: wrap;
}

.hero-art-signals span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(210, 219, 232, .86);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #334155;
  font-size: 12px;
  font-weight: 720;
}

.hero-art-products {
  --hero-a: #2563eb;
  --hero-b: #14b8a6;
  --hero-c: #f59e0b;
}

.hero-art-sourcing {
  --hero-a: #0f766e;
  --hero-b: #2563eb;
  --hero-c: #64748b;
}

.hero-art-quality {
  --hero-a: #1d4ed8;
  --hero-b: #059669;
  --hero-c: #475569;
}

.hero-art-about {
  --hero-a: #0f766e;
  --hero-b: #1d4ed8;
  --hero-c: #c084fc;
}

.hero-art-insights {
  --hero-a: #2563eb;
  --hero-b: #0891b2;
  --hero-c: #10b981;
}

.hero-art-contact {
  --hero-a: #0b1f3a;
  --hero-b: #2563eb;
  --hero-c: #14b8a6;
}

.cinematic-hero {
  --scene-a: #2563eb;
  --scene-b: #14b8a6;
  --scene-c: #38bdf8;
  position: relative;
  min-height: min(620px, calc(100vh - 70px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0 88px;
  border-bottom: 0;
  background: #071d35;
  color: #fff;
  isolation: isolate;
}

.cinematic-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148, 163, 184, .06) 1px, transparent 1px),
    radial-gradient(circle at 76% 28%, color-mix(in srgb, var(--scene-b) 20%, transparent), transparent 30%),
    linear-gradient(115deg, rgba(3, 10, 23, .72), rgba(7, 29, 53, .92) 46%, rgba(3, 10, 23, .78));
  background-size: 74px 74px, 74px 74px, auto, auto;
  content: "";
  mask-image: none;
  pointer-events: none;
}

.cinematic-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(246, 248, 251, .98));
  content: "";
  pointer-events: none;
}

.cinematic-products {
  --scene-a: #2563eb;
  --scene-b: #14b8a6;
  --scene-c: #60a5fa;
}

.cinematic-sourcing {
  --scene-a: #0f766e;
  --scene-b: #2563eb;
  --scene-c: #f8fafc;
}

.cinematic-quality {
  --scene-a: #1d4ed8;
  --scene-b: #059669;
  --scene-c: #94a3b8;
}

.cinematic-about {
  --scene-a: #0f766e;
  --scene-b: #1d4ed8;
  --scene-c: #a78bfa;
}

.cinematic-insights {
  --scene-a: #2563eb;
  --scene-b: #0891b2;
  --scene-c: #10b981;
}

.cinematic-contact {
  --scene-a: #2563eb;
  --scene-b: #14b8a6;
  --scene-c: #f8fafc;
}

.cinematic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cinematic-bg span {
  position: absolute;
  width: 42vw;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--scene-c) 44%, transparent), transparent);
  filter: blur(.1px);
  opacity: .42;
  animation: cinematic-pan 13s ease-in-out infinite;
}

.cinematic-bg span:nth-child(1) {
  top: 20%;
  left: -10%;
}

.cinematic-bg span:nth-child(2) {
  top: 54%;
  right: -12%;
  animation-delay: -5s;
  animation-duration: 16s;
}

.cinematic-bg span:nth-child(3) {
  bottom: 18%;
  left: 18%;
  width: 30vw;
  opacity: .24;
  animation-delay: -8s;
}

.cinematic-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, .95fr);
  gap: 64px;
  align-items: center;
}

.cinematic-article .page-hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(480px, .9fr);
}

.cinematic-copy > div {
  max-width: 760px;
}

.cinematic-hero .eyebrow {
  border-color: rgba(148, 163, 184, .32);
  background: rgba(8, 24, 45, .52);
  color: rgba(226, 235, 247, .95);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
}

.cinematic-hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1.05;
  text-shadow: 0 18px 58px rgba(0, 0, 0, .36);
}

.cinematic-hero p {
  max-width: 700px;
  color: rgba(226, 235, 247, .82);
  font-size: 18px;
  line-height: 1.72;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .26);
}

.cinematic-hero .button.secondary {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .92);
  color: #071d35;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

.photo-page-hero {
  min-height: min(700px, calc(100vh - 70px));
  justify-content: center;
  padding: 106px 0 96px;
  background: #071d35;
  color: #fff;
  contain: paint;
}

.photo-page-hero::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(148, 163, 184, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148, 163, 184, .045) 1px, transparent 1px),
    linear-gradient(110deg, rgba(125, 211, 252, .11), transparent 26%, transparent 72%, rgba(20, 184, 166, .08));
  background-size: 88px 88px, 88px 88px, auto;
  opacity: .2;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 88%);
}

.photo-page-hero::after {
  display: none;
}

.page-photo-bg {
  z-index: 0;
}

.photo-page-hero .page-photo-bg::before {
  animation: none;
  opacity: .32;
}

.page-photo-bg img {
  object-position: center;
  transform: scale(1.018);
  filter: saturate(.92) contrast(1.05) brightness(.82);
  animation: page-photo-drift 30s ease-in-out infinite alternate;
}

.photo-page-hero .page-photo-bg::after {
  opacity: .38;
  animation-duration: 24s;
}

.page-photo-wash {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 36%, rgba(20, 184, 166, .13), transparent 30%),
    linear-gradient(90deg, rgba(3, 10, 23, .76), rgba(7, 29, 53, .58) 46%, rgba(3, 10, 23, .64) 100%),
    linear-gradient(180deg, rgba(3, 10, 23, .48), rgba(7, 29, 53, .16) 43%, rgba(3, 10, 23, .66));
}

.page-photo-stage {
  position: relative;
  z-index: 4;
  transform: translateZ(0);
}

.page-photo-copy > div {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  opacity: 1;
}

.photo-page-hero .eyebrow {
  display: none;
}

.photo-page-hero h1 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  color: #fff !important;
  opacity: 1;
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: 1.04;
  text-shadow: 0 20px 62px rgba(0, 0, 0, .62);
}

.photo-page-hero p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(238, 246, 255, .94) !important;
  opacity: 1;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .58);
}

.photo-page-hero .article-meta,
.photo-page-hero .article-meta span {
  color: rgba(226, 235, 247, .92) !important;
  opacity: 1;
}

.photo-page-hero .button.secondary {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .94);
  color: #071d35;
}

.photo-page-hero .hero-actions {
  justify-content: center;
}

.photo-page-products .page-photo-bg img {
  object-position: center center;
}

.photo-page-sourcing .page-photo-bg img,
.photo-page-contact .page-photo-bg img,
.photo-page-insights .page-photo-bg img,
.photo-page-about .page-photo-bg img {
  object-position: center right;
}

.photo-page-quality .page-photo-bg img {
  object-position: center center;
}

.cinematic-scene {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(15, 38, 68, .92), rgba(4, 16, 31, .92) 54%, rgba(11, 31, 58, .88)),
    radial-gradient(circle at 24% 16%, color-mix(in srgb, var(--scene-a) 28%, transparent), transparent 30%),
    radial-gradient(circle at 82% 74%, color-mix(in srgb, var(--scene-b) 22%, transparent), transparent 28%);
  box-shadow: 0 36px 110px rgba(0, 0, 0, .34);
  transform: translate3d(0, calc(var(--scene-scroll, 0) * -12px), 0);
}

.cinematic-scene::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(226, 235, 247, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(226, 235, 247, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  opacity: .42;
  pointer-events: none;
}

.cinematic-scene::after {
  position: absolute;
  inset: -28% -40%;
  background: linear-gradient(110deg, transparent 30%, rgba(125, 211, 252, .13) 45%, rgba(20, 184, 166, .1) 50%, transparent 66%);
  content: "";
  mix-blend-mode: screen;
  animation: cinematic-sweep 9s ease-in-out infinite;
  pointer-events: none;
}

.scene-layer {
  position: absolute;
  transition: transform .18s ease-out;
  will-change: transform;
}

.scene-horizon {
  inset: 0;
  opacity: .9;
}

.scene-factory,
.scene-warehouse,
.scene-port {
  position: absolute;
  bottom: 46px;
  display: block;
  border: 1px solid rgba(148, 163, 184, .22);
  background: rgba(226, 235, 247, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.scene-factory {
  left: 34px;
  width: 170px;
  height: 82px;
  clip-path: polygon(0 42%, 22% 42%, 22% 28%, 42% 42%, 62% 26%, 62% 42%, 100% 42%, 100% 100%, 0 100%);
}

.scene-warehouse {
  right: 34px;
  width: 168px;
  height: 72px;
  border-radius: 3px;
}

.scene-port {
  left: 45%;
  bottom: 40px;
  width: 104px;
  height: 52px;
  transform: skewX(-8deg);
}

.scene-route {
  left: 92px;
  right: 96px;
  top: 46%;
  height: 78px;
}

.scene-route span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--scene-a) 65%, transparent), color-mix(in srgb, var(--scene-b) 70%, transparent));
  transform: rotate(-8deg);
}

.scene-route i,
.scene-route b {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(255, 255, 255, .84);
  border-radius: 999px;
  background: var(--scene-b);
  box-shadow: 0 0 24px color-mix(in srgb, var(--scene-b) 55%, transparent);
  content: "";
}

.scene-route i {
  left: 18%;
  top: 18%;
  animation: scene-pulse 2.4s ease-in-out infinite;
}

.scene-route b {
  right: 12%;
  bottom: 20%;
  animation: scene-pulse 2.4s ease-in-out infinite .9s;
}

.scene-product-stack {
  left: 48px;
  bottom: 54px;
  width: 160px;
  height: 160px;
  animation: scene-float 7s ease-in-out infinite;
}

.scene-box,
.scene-vial {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(197, 219, 244, .76));
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.scene-box::after {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 18px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--scene-a), var(--scene-b));
  content: "";
}

.box-a {
  left: 8px;
  bottom: 8px;
  width: 112px;
  height: 64px;
}

.box-b {
  left: 40px;
  bottom: 62px;
  width: 96px;
  height: 58px;
}

.scene-vial {
  right: 0;
  bottom: 16px;
  width: 34px;
  height: 94px;
  border-radius: 12px 12px 7px 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(186, 230, 253, .64));
}

.scene-doc-stack {
  right: 48px;
  top: 58px;
  width: 156px;
  height: 150px;
  animation: scene-float 8s ease-in-out infinite -2s;
}

.scene-doc-stack span {
  position: absolute;
  display: block;
  width: 120px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  background: rgba(248, 250, 252, .9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .2);
}

.scene-doc-stack span::before,
.scene-doc-stack span::after {
  position: absolute;
  left: 14px;
  right: 16px;
  height: 5px;
  border-radius: 999px;
  background: rgba(51, 65, 85, .18);
  content: "";
}

.scene-doc-stack span::before {
  top: 24px;
}

.scene-doc-stack span::after {
  top: 40px;
  right: 40px;
}

.scene-doc-stack span:nth-child(1) {
  right: 0;
  top: 0;
  transform: rotate(5deg);
}

.scene-doc-stack span:nth-child(2) {
  right: 22px;
  top: 28px;
  transform: rotate(-4deg);
}

.scene-doc-stack span:nth-child(3) {
  right: 8px;
  top: 58px;
  transform: rotate(1deg);
}

.scene-dashboard,
.scene-contract {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(8, 24, 45, .78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  backdrop-filter: blur(20px);
  transition: transform .18s ease-out;
}

.scene-dashboard {
  left: 50%;
  top: 50%;
  width: min(360px, calc(100% - 72px));
  padding: 22px;
  translate: -50% -50%;
}

.scene-topline,
.scene-stat-row,
.scene-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.scene-topline {
  justify-content: space-between;
  color: rgba(226, 235, 247, .66);
  font-size: 12px;
  font-weight: 720;
}

.scene-topline strong {
  color: #fff;
}

.scene-dashboard h3 {
  margin-top: 18px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
}

.scene-dashboard p {
  margin-top: 8px;
  color: rgba(226, 235, 247, .72);
  font-size: 14px;
  line-height: 1.5;
}

.scene-card,
.scene-stat-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 740;
}

.scene-chip-row {
  margin-top: 18px;
}

.scene-card {
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, .22);
  background: rgba(255, 255, 255, .09);
  color: rgba(248, 250, 252, .9);
}

.scene-stat-row {
  margin-top: 12px;
}

.scene-stat-row span {
  padding: 7px 9px;
  border: 1px solid color-mix(in srgb, var(--scene-b) 38%, transparent);
  background: color-mix(in srgb, var(--scene-b) 14%, transparent);
  color: rgba(224, 242, 254, .95);
}

.scene-contract {
  right: 32px;
  bottom: 32px;
  width: min(260px, calc(100% - 64px));
  padding: 16px;
}

.scene-contract strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.scene-contract span {
  display: block;
  height: 6px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(226, 235, 247, .18);
}

.scene-contract span:nth-child(3) {
  width: 74%;
}

.scene-contract span:nth-child(4) {
  width: 54%;
}

.scene-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -16%;
  z-index: 4;
  height: 90px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--scene-c) 16%, transparent), transparent);
  animation: scene-scan 7.8s ease-in-out infinite;
  pointer-events: none;
}

.scene-products .scene-dashboard {
  top: 47%;
}

.scene-sourcing .scene-route span {
  transform: rotate(-2deg);
}

.scene-quality .scene-doc-stack {
  top: 36px;
}

.scene-about .scene-factory {
  opacity: .7;
}

.scene-contact .scene-contract {
  width: min(300px, calc(100% - 64px));
}

@keyframes cinematic-pan {
  0% {
    opacity: .16;
    transform: translate3d(-26%, 0, 0);
  }

  48% {
    opacity: .58;
  }

  100% {
    opacity: .2;
    transform: translate3d(48%, 0, 0);
  }
}

@keyframes cinematic-sweep {
  0% {
    opacity: .14;
    transform: translate3d(-38%, 0, 0);
  }

  52% {
    opacity: .48;
  }

  100% {
    opacity: .16;
    transform: translate3d(38%, 0, 0);
  }
}

@keyframes scene-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes scene-pulse {
  0%,
  100% {
    opacity: .64;
    transform: scale(.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}

@keyframes scene-scan {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  18% {
    opacity: .62;
  }

  62% {
    opacity: .18;
  }

  100% {
    opacity: 0;
    transform: translateY(560px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(420px, 1.07fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid #d9e4f2;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #31506f;
  font-size: 13px;
  font-weight: 720;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, .12);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 50px;
  font-weight: 690;
}

h2 {
  font-size: 34px;
  font-weight: 670;
}

h3 {
  font-size: 19px;
  font-weight: 680;
}

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

.hero-copy > p {
  max-width: 660px;
  margin-top: 18px;
  color: #526278;
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 650px;
}

.trust-item {
  min-height: 68px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 14px;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 226, 236, .9);
  border-radius: var(--radius);
  background: #eaf0f6;
  box-shadow: 0 30px 80px rgba(11, 31, 58, .16);
  transition: transform .18s ease-out;
  will-change: transform;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 46%, rgba(8, 23, 43, .22));
  content: "";
  pointer-events: none;
}

.visual-panel {
  position: absolute;
  left: 24px;
  bottom: -26px;
  width: min(410px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(11, 31, 58, .94);
  color: #fff;
  box-shadow: 0 24px 60px rgba(11, 31, 58, .24);
  transition: transform .18s ease-out;
  will-change: transform;
}

.visual-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
}

.visual-panel p {
  color: #cbd8e7;
  font-size: 14px;
  line-height: 1.55;
}

.visual-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.visual-kpis span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: #eaf2ff;
  font-size: 12px;
  font-weight: 640;
}

.section {
  padding: 78px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.section.compact {
  padding: 56px 0;
}

.section.navy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(37, 99, 235, .22), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(20, 184, 166, .16), transparent 28%),
    linear-gradient(180deg, #081c34 0%, var(--navy) 58%, #07182e 100%);
  color: #fff;
}

.section.navy::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  opacity: .34;
  pointer-events: none;
}

.section.navy > .container {
  position: relative;
  z-index: 1;
}

.section.navy h2,
.section.navy h3 {
  color: #fff;
}

.section.navy p {
  color: #cbd8e7;
}

.section-head {
  max-width: 840px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.66;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.card,
.step,
.insight-card {
  height: 100%;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.card:hover,
.step:hover,
.insight-card:hover {
  border-color: #d5dfec;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.num,
.tag {
  color: var(--blue);
  font-size: 13px;
  font-weight: 780;
}

.card p,
.step p,
.insight-card p {
  font-size: 15px;
  line-height: 1.62;
}

.product-card {
  min-height: 276px;
  justify-content: space-between;
}

.editorial-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f8fb 100%),
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, .08), transparent 30%);
}

.editorial-intro {
  max-width: 780px;
  margin: -6px auto 26px;
  text-align: center;
}

.editorial-intro p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.68;
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(219, 226, 236, .92);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .98)),
    radial-gradient(circle at 96% 6%, rgba(37, 99, 235, .1), transparent 24%);
  box-shadow: var(--shadow-soft);
}

.editorial-feature h2 {
  max-width: 720px;
  margin-top: 12px;
  font-size: 32px;
}

.editorial-feature p {
  max-width: 760px;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
}

.article-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
}

.editorial-points,
.article-points {
  display: grid;
  gap: 10px;
}

.editorial-points span,
.article-points span {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 11px 12px 11px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
}

.editorial-points span::before,
.article-points span::before {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .1);
  content: "";
}

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

.article-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.article-card:hover {
  border-color: #d5dfec;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.article-card p {
  font-size: 15px;
  line-height: 1.64;
}

.article-points {
  margin-top: auto;
}

.linkedin-band {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fbff, #fff);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.linkedin-band h3 {
  margin-bottom: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}

.pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: #25528c;
  font-size: 12px;
  font-weight: 680;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: start;
}

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.panel.dark {
  border-color: rgba(255, 255, 255, .12);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 24px 60px rgba(11, 31, 58, .22);
}

.panel.dark h2,
.panel.dark h3 {
  color: #fff;
}

.panel.dark p {
  color: #cbd8e7;
}

.panel.light-on-navy {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.section.navy .panel.light-on-navy p {
  color: #dbe8f7;
}

.clean-list {
  display: grid;
  gap: 10px;
}

.clean-list div {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 13px 14px 13px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
}

.clean-list div::before {
  position: absolute;
  left: 16px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, .1);
  content: "";
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(219, 226, 236, .9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(248, 251, 255, .96)),
    radial-gradient(circle at 95% 10%, rgba(20, 184, 166, .16), transparent 24%);
  box-shadow: var(--shadow-soft);
}

.cta-band p {
  max-width: 720px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.62;
}

.doc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.doc-item {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #334155;
  font-size: 15px;
  line-height: 1.55;
}

.doc-item::before {
  position: absolute;
  left: 16px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, .1);
  content: "";
}

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

.step {
  min-height: 154px;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.step b {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(125, 211, 252, .22);
  border-radius: 999px;
  background: rgba(37, 99, 235, .18);
  color: #93c5fd;
  font-size: 13px;
}

.section.navy .step p {
  color: #d5e3f5;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.cfim-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cfim-message {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 650;
}

.cfim-message.success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.cfim-message.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

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

label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 13px;
  font-weight: 680;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #dbe3ee;
  border-radius: var(--radius);
  outline: none;
  background: #fff;
  color: var(--text);
  font-size: 15px;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
}

.full {
  grid-column: 1 / -1;
}

.note {
  margin-top: 12px;
  color: #73829a;
  font-size: 13px;
}

.site-footer {
  padding: 44px 0;
  background: var(--navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  color: #cbd8e7;
  font-size: 14px;
}

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

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

.about-hero,
.contact-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 253, .98)),
    linear-gradient(120deg, rgba(37, 99, 235, .05), rgba(20, 184, 166, .045));
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.purpose-statement {
  position: sticky;
  top: 94px;
  padding: 30px;
  border: 1px solid rgba(219, 226, 236, .92);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #fff, #f8fbff),
    radial-gradient(circle at 96% 8%, rgba(20, 184, 166, .15), transparent 26%);
  box-shadow: var(--shadow-soft);
}

.purpose-statement h2 {
  margin-top: 12px;
  font-size: 38px;
}

.purpose-statement p {
  margin-top: 16px;
  color: #4c5f78;
  font-size: 17px;
  line-height: 1.72;
}

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

.purpose-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.purpose-card .num {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.purpose-card p,
.principle-panel p {
  font-size: 15px;
  line-height: 1.68;
}

.principle-panel .clean-list {
  margin-top: 18px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.contact-side {
  position: sticky;
  top: 94px;
}

.contact-side p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-methods a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: #eaf2ff;
  font-size: 14px;
  line-height: 1.35;
}

.premium-form {
  padding: 4px 0 0;
}

.premium-form .button {
  width: 100%;
  margin-top: 8px;
}

.service-note {
  max-width: 720px;
  padding-left: 14px;
  border-left: 3px solid var(--teal);
  color: #5a6e87;
  font-size: 14px;
  line-height: 1.65;
}

.footer-shell {
  display: grid;
  gap: 30px;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 760;
}

.footer-brand-row p {
  max-width: 700px;
  color: #cbd8e7;
  line-height: 1.65;
}

.footer-social {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  white-space: nowrap;
}

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

.footer-columns > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-columns h3 {
  margin-bottom: 4px;
}

.footer-columns a {
  width: max-content;
  max-width: 100%;
  color: #cbd8e7;
  font-size: 14px;
}

.footer-columns a:hover,
.footer-social:hover {
  color: #fff;
}

.footer-meta {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #99abc0;
  font-size: 12px;
  line-height: 1.55;
}

.xc-assistant {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  font-family: inherit;
}

.xc-launch {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .22);
  border-radius: 999px;
  background: #06184d;
  color: #fff;
  box-shadow: 0 16px 36px rgba(6, 24, 77, .28);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.xc-launch-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 -7px 0 #dfeaf6;
}

.xc-launch-icon::before,
.xc-launch-icon::after {
  position: absolute;
  content: "";
}

.xc-launch-icon::before {
  left: 6px;
  right: 6px;
  top: 10px;
  height: 9px;
  border-radius: 999px;
  background: #06184d;
}

.xc-launch-icon::after {
  left: 13px;
  top: -5px;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 -3px 0 #fff;
}

.xc-launch-icon i {
  position: absolute;
  right: -6px;
  top: -2px;
  width: 15px;
  height: 10px;
  border-radius: 999px 999px 999px 3px;
  background: #18e4ef;
  box-shadow:
    -15px 15px 0 -12px #18e4ef,
    -7px 14px 0 -12px #18e4ef;
}

.xc-launch-icon i::after {
  position: absolute;
  left: -13px;
  top: 13px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #18e4ef;
  box-shadow: 8px 0 0 #18e4ef;
  content: "";
}

.xc-panel {
  position: absolute;
  right: 0;
  bottom: 52px;
  width: min(330px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(210, 219, 232, .96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 26px 72px rgba(15, 23, 42, .18);
  backdrop-filter: blur(18px);
}

.xc-panel[hidden] {
  display: none;
}

.xc-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--line);
}

.xc-panel header strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.xc-panel header span {
  color: #66778f;
  font-size: 12px;
  font-weight: 650;
}

.xc-close {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #526278;
  cursor: pointer;
}

.xc-log {
  max-height: 230px;
  display: grid;
  gap: 9px;
  overflow-y: auto;
  padding: 14px;
}

.xc-msg {
  max-width: 92%;
  padding: 10px 11px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.48;
}

.xc-msg.bot {
  justify-self: start;
  background: #f3f7fb;
  color: #40536c;
}

.xc-msg.user {
  justify-self: end;
  background: #eaf2ff;
  color: var(--navy);
}

.xc-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 14px 12px;
}

.xc-quick button {
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
}

.xc-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
}

.xc-form input {
  min-width: 0;
  height: 38px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 13px;
}

.xc-form button {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
}

.research-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.editorial-feature .research-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.research-category-card {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
}

.research-category-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
}

.research-category-card p {
  font-size: 14px;
  line-height: 1.58;
}

.research-shelves {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.research-shelf {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.research-shelf-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.research-shelf-head p {
  max-width: 640px;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.62;
}

.research-article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.research-article-row {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfd;
}

.research-article-row h3 {
  font-size: 20px;
}

.research-article-row p {
  font-size: 14px;
  line-height: 1.62;
}

.linkedin-research-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding: 26px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #f8fbff, #fff),
    linear-gradient(90deg, rgba(20, 184, 166, .06), rgba(37, 99, 235, .05));
  box-shadow: var(--shadow-soft);
}

.linkedin-research-band h2 {
  font-size: 28px;
}

.linkedin-research-band p {
  display: none;
}

.article-hero-simple .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.article-hero-rich .page-hero-grid {
  grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr);
}

.article-hero-rich .hero-art {
  min-height: 360px;
}

.article-hero-simple h1 {
  max-width: 920px;
}

.article-hero-simple p {
  max-width: 860px;
}

.article-shell {
  max-width: 980px;
}

.article-body {
  padding: 42px;
}

.article-body h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.16;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 21px;
}

.article-body p,
.article-body li {
  color: #40536c;
  font-size: 17px;
  line-height: 1.78;
}

.article-body p + p {
  margin-top: 14px;
}

.article-body ul,
.article-body ol {
  margin: 14px 0 0;
  padding-left: 1.25em;
}

.article-body li + li {
  margin-top: 8px;
}

.article-body table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
}

.article-body th,
.article-body td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: #f4f8fc;
  color: var(--navy);
}

.article-body tr:last-child td {
  border-bottom: 0;
}

.report-abstract,
.report-conclusion {
  margin: 30px 0;
  padding: 28px;
  border: 1px solid rgba(219, 226, 236, .95);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 251, 255, .98)),
    linear-gradient(120deg, rgba(37, 99, 235, .05), rgba(20, 184, 166, .05));
  box-shadow: 0 18px 46px rgba(15, 23, 42, .055);
}

.report-abstract h2,
.report-conclusion h2 {
  margin-top: 0;
}

.report-table-wrap {
  margin: 24px 0 34px;
  overflow: hidden;
  border: 1px solid rgba(219, 226, 236, .96);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .055);
}

.article-body .report-table {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.article-body .report-table caption {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
  color: #344860;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.55;
  text-align: left;
  caption-side: top;
}

.article-body .report-table th {
  background: #0b1f3a;
  color: #fff;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.article-body .report-table td {
  vertical-align: top;
}

.article-body .report-table td:first-child {
  color: var(--navy);
  font-weight: 720;
}

.article-body .report-table a {
  color: var(--blue);
  text-decoration: none;
}

.article-body .report-table a:hover {
  text-decoration: underline;
}

.article-figure {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.article-figure img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.article-figure figcaption {
  margin-top: 12px;
  color: #5f6f85;
  font-size: 13px;
  line-height: 1.55;
}

.cfin-framework-figure {
  overflow: hidden;
  padding: 0;
  background: #f8fbff;
}

.framework-canvas {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  padding: 46px 50px 34px;
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 84% 22%, rgba(20, 184, 166, .12), transparent 24%),
    radial-gradient(circle at 18% 36%, rgba(37, 99, 235, .09), transparent 24%),
    linear-gradient(145deg, #f8fbff, #eef6ff 62%, #e8f4fb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.framework-canvas::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, .03) 1px, transparent 1px);
  background-size: 50px 50px;
  content: "";
  opacity: .38;
  pointer-events: none;
}

.framework-head,
.framework-map,
.framework-warning {
  position: relative;
  z-index: 1;
}

.framework-head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.framework-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.12;
}

.framework-head p {
  margin-top: 8px;
  color: #40536c;
  font-size: 15px;
  line-height: 1.5;
}

.framework-map {
  min-height: 380px;
  margin-top: 26px;
}

.framework-line {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 49%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, .16), rgba(20, 184, 166, .42), rgba(37, 99, 235, .16));
}

.framework-line.line-a {
  transform: rotate(22deg);
}

.framework-line.line-b {
  transform: rotate(-22deg);
}

.framework-core,
.framework-node {
  position: absolute;
  border: 1px solid rgba(219, 226, 236, .95);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(15, 23, 42, .1);
}

.framework-core {
  left: 50%;
  top: 50%;
  width: min(310px, 36%);
  min-height: 118px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 22px;
  background: #0b1f3a;
  color: #fff;
  text-align: center;
  translate: -50% -50%;
}

.framework-core strong {
  font-size: 21px;
  line-height: 1.15;
}

.framework-core small {
  color: rgba(226, 235, 247, .78);
  font-size: 13px;
  line-height: 1.45;
}

.framework-node {
  width: min(250px, 28%);
  min-height: 118px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 5px 12px;
  align-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, .88);
}

.framework-node span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 13px 32px rgba(37, 99, 235, .18);
}

.framework-node strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}

.framework-node small {
  color: #526278;
  font-size: 13px;
  line-height: 1.45;
}

.framework-node-1 {
  left: 6%;
  top: 14%;
}

.framework-node-2 {
  left: 6%;
  bottom: 14%;
}

.framework-node-3 {
  right: 6%;
  top: 14%;
}

.framework-node-4 {
  right: 6%;
  bottom: 14%;
}

.framework-warning {
  max-width: 760px;
  margin: 4px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(219, 226, 236, .95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.source-card {
  min-height: 96px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.source-card strong {
  color: var(--navy);
}

.source-card span {
  color: #526278;
  font-size: 14px;
  line-height: 1.45;
}

.source-card a {
  color: var(--blue);
  font-weight: 680;
}

.zh h1 {
  max-width: 820px;
}

.zh .nav a,
.zh .button {
  font-weight: 680;
}

@media (min-width: 1600px) {
  :root {
    --container: 1240px;
  }

  h1 {
    font-size: 56px;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .page-hero {
    padding-top: 72px;
    padding-bottom: 66px;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 46px;
  }

  .header-inner {
    gap: 14px;
  }

  .nav a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 36px;
  }

  .home-hero-copy h1 {
    font-size: 50px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
  }

  .cinematic-hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
    gap: 40px;
  }

  .cinematic-scene {
    min-height: 380px;
  }

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

  .product-card {
    min-height: 230px;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .header-inner {
    min-height: 64px;
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 16px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(246, 248, 251, .98);
    box-shadow: 0 22px 46px rgba(15, 23, 42, .08);
  }

  .menu-open .nav {
    display: grid;
  }

  .nav a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid var(--line);
    background: #fff;
    text-align: center;
    white-space: normal;
  }

  .language {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    padding: 36px 0 44px;
  }

  .home-video-hero {
    min-height: 650px;
    padding: 76px 0 72px;
  }

  .home-hero-copy {
    max-width: 760px;
  }

  .home-hero-copy h1 {
    font-size: 44px;
  }

  .cinematic-hero {
    min-height: auto;
    padding: 76px 0 78px;
  }

  .photo-page-hero {
    min-height: 620px;
    padding: 82px 0 78px;
  }

  .cinematic-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cinematic-hero h1 {
    max-width: 780px;
    font-size: 44px;
  }

  .photo-page-hero h1 {
    font-size: 48px;
  }

  .cinematic-scene {
    min-height: 360px;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .purpose-layout,
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .purpose-statement,
  .contact-side {
    position: static;
  }

  .purpose-grid,
  .research-category-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .page-hero p {
    font-size: 16px;
  }

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

  .hero-art {
    min-height: 330px;
  }

  .article-hero-rich .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    padding-bottom: 38px;
  }

  .section {
    padding: 56px 0;
  }

  .grid.three,
  .article-grid,
  .process,
  .doc-list,
  .footer-grid,
  .research-article-list,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .editorial-feature,
  .cta-band,
  .linkedin-research-band,
  .footer-brand-row,
  .footer-meta {
    grid-template-columns: 1fr;
  }

  .editorial-feature {
    padding: 26px;
  }

  .editorial-feature h2 {
    font-size: 28px;
  }

  .linkedin-band {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 30px;
  }

  .framework-canvas {
    min-height: 540px;
    padding: 36px 28px 28px;
  }

  .framework-node {
    width: min(224px, 30%);
    padding: 16px;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    gap: 8px;
  }

  .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    font-size: 17px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 18px;
  }

  .hero {
    padding: 30px 0 42px;
  }

  .page-hero {
    padding: 34px 0 42px;
  }

  .home-video-hero {
    min-height: 620px;
    align-items: center;
    padding: 58px 0 58px;
  }

  .home-hero-copy h1 {
    font-size: 36px;
  }

  .home-hero-copy > p {
    font-size: 16px;
  }

  .home-video-wash {
    background:
      linear-gradient(180deg, rgba(3, 10, 23, .58), rgba(7, 29, 53, .52) 42%, rgba(3, 10, 23, .76)),
      linear-gradient(90deg, rgba(7, 29, 53, .78), rgba(7, 29, 53, .38));
  }

  .cinematic-hero {
    padding: 58px 0 62px;
  }

  .photo-page-hero {
    min-height: 580px;
    padding: 60px 0 62px;
  }

  .cinematic-hero h1 {
    font-size: 36px;
  }

  .photo-page-hero h1 {
    font-size: 38px;
  }

  .cinematic-hero p {
    font-size: 16px;
  }

  .page-photo-wash {
    background:
      linear-gradient(180deg, rgba(3, 10, 23, .62), rgba(7, 29, 53, .5) 44%, rgba(3, 10, 23, .82)),
      linear-gradient(90deg, rgba(7, 29, 53, .82), rgba(7, 29, 53, .44));
  }

  .cinematic-scene {
    min-height: 310px;
  }

  .scene-dashboard {
    width: calc(100% - 40px);
    padding: 18px;
  }

  .scene-dashboard h3 {
    font-size: 22px;
  }

  .scene-dashboard p {
    font-size: 13px;
  }

  .scene-product-stack {
    left: 18px;
    bottom: 34px;
  }

  .scene-doc-stack {
    right: 18px;
    top: 28px;
  }

  .scene-contract {
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    padding: 12px;
  }

  .scene-card,
  .scene-stat-row span {
    min-height: 28px;
    font-size: 11px;
  }

  .hero-art {
    min-height: 270px;
  }

  .hero-art-frame {
    inset: 16px;
    gap: 14px;
    padding: 16px;
  }

  .hero-art-core {
    width: min(220px, calc(100% - 34px));
    min-height: 92px;
  }

  .hero-art-core strong {
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-row,
  .grid.two,
  .grid.four,
  .form-grid,
  .page-stat-panel,
  .visual-kpis,
  .purpose-grid,
  .research-category-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .trust-row {
    display: none;
  }

  .card,
  .step,
  .panel,
  .article-card,
  .insight-card,
  .purpose-card,
  .research-shelf,
  .research-article-row,
  .article-body {
    padding: 20px;
  }

  .editorial-feature,
  .linkedin-band,
  .linkedin-research-band,
  .article-figure {
    padding: 20px;
  }

  .purpose-statement h2 {
    font-size: 28px;
  }

  .purpose-card {
    min-height: 0;
  }

  .research-shelf-head {
    display: grid;
  }

  .article-body h2 {
    font-size: 24px;
  }

  .framework-canvas {
    min-height: 0;
    padding: 24px 18px 18px;
  }

  .framework-head h3 {
    font-size: 25px;
  }

  .framework-map {
    min-height: 0;
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  .framework-line {
    display: none;
  }

  .framework-core,
  .framework-node {
    position: static;
    width: auto;
    min-height: 0;
    translate: none;
  }

  .framework-core {
    padding: 18px;
  }

  .framework-node {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .framework-node span {
    width: 30px;
    height: 30px;
  }

  .framework-warning {
    margin-top: 14px;
    text-align: left;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .article-body table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .report-table-wrap {
    overflow-x: auto;
  }

  .article-body .report-table {
    min-width: 760px;
  }

  .visual-panel {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .hero-visual {
    padding-bottom: 0;
  }

  .section {
    padding: 46px 0;
  }

  .xc-assistant {
    right: 14px;
    bottom: 14px;
  }

  .xc-launch {
    width: 40px;
    height: 40px;
  }

  .xc-panel {
    bottom: 50px;
    width: calc(100vw - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-art-strip,
  .hero-art-frame,
  .hero-image,
  .visual-panel,
  .button,
  .card,
  .step,
  .article-card,
  .insight-card {
    transition: none;
  }

  .home-video-bg img,
  .home-video-bg::before,
  .home-video-bg::after,
  .cinematic-bg span,
  .cinematic-scene::after,
  .scene-product-stack,
  .scene-doc-stack,
  .scene-route i,
  .scene-route b,
  .scene-scanline {
    animation: none;
  }

  .scene-layer,
  .scene-dashboard,
  .scene-contract,
  .cinematic-scene {
    transition: none;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 30px;
  }

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