@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-400-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Marcellus";
  src: url("/assets/fonts/marcellus-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-latin-300-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --paper: #f4f5f3;
  --ink: #202b2d;
  --muted: #5f6b6d;
  --line: #d8dddc;
  --brand: #174f55;
  --brand-deep: #10383d;
  --red: #a72b3a;
  --font-heading: "Marcellus", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --header: 96px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.lang-zh {
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

body.lang-zh h1,
body.lang-zh h2 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
}

.page-summary section[id] {
  scroll-margin-top: calc(var(--header) + 24px);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 23px;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

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

.eyebrow {
  margin-bottom: 26px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-identity {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-identity-word {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.supporting-copy {
  margin-top: 24px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(216, 221, 220, 0.82);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 80px), 1220px);
  min-height: var(--header);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 78px;
  height: 72px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #303b3d;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  margin-left: 2px;
  padding-left: 18px;
  align-items: center;
  gap: 4px;
  border-left: 1px solid var(--line);
}

.site-nav .language-switch a {
  min-width: 30px;
  min-height: 36px;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.site-nav .language-switch a::after {
  display: none;
}

.site-nav .language-switch a:hover,
.site-nav .language-switch a[aria-current="true"] {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button-row {
  display: flex;
  margin-top: 36px;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-deep);
}

.button-primary:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.button-dark {
  border-color: var(--brand-deep);
  background: var(--brand-deep);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--red);
  background: var(--red);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--red);
}

.section {
  padding: 128px 0;
}

.section-compact {
  padding: 108px 0;
}

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

.section-dark {
  background: var(--brand-deep);
  color: var(--white);
}

.section-dark .eyebrow {
  color: #f0a8b1;
}

.section-dark .lead,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  max-width: 760px;
  margin-bottom: 72px;
}

.section-head h2 + .lead,
.section-head h2 + p {
  margin-top: 28px;
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.44fr 1.56fr;
  gap: 80px;
  align-items: start;
}

.intro-copy {
  max-width: 820px;
}

.intro-copy h2 {
  font-size: 42px;
}

.intro-copy h2 + .lead {
  margin-top: 34px;
}

.intro-copy .text-link {
  margin-top: 34px;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - var(--header) - 44px);
  max-height: 820px;
  align-items: center;
  overflow: hidden;
  background: var(--brand-deep);
  color: var(--white);
}

.home-hero-media,
.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 61fr) minmax(0, 17fr) minmax(0, 22fr);
}

.home-hero-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero-panel:last-child {
  border-right: 0;
}

.home-hero-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-panel-design img {
  object-position: 58% center;
  filter: saturate(0.76) contrast(0.96);
}

.home-hero-panel-legacy img {
  object-position: 48% center;
  filter: grayscale(1) sepia(0.14) contrast(0.92);
}

.home-hero-panel-present img {
  object-position: 64% 48%;
  filter: saturate(0.72) contrast(0.95);
}

.home-hero-shade {
  background: rgba(10, 31, 33, 0.5);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  padding: 104px 0;
}

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

.home-hero .eyebrow {
  color: var(--white);
}

.home-hero h1 {
  max-width: 760px;
  color: var(--white);
}

.home-hero .lead {
  max-width: 690px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
}

.activity-list {
  border-top: 1px solid var(--line);
}

.activity-row {
  display: grid;
  min-height: 150px;
  padding: 38px 0;
  grid-template-columns: 70px 0.72fr 1.28fr;
  gap: 30px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.activity-number {
  padding-top: 4px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.activity-row h3 {
  font-size: 25px;
}

.activity-row p {
  max-width: 600px;
  color: var(--muted);
}

.image-feature {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--brand-deep);
  color: var(--white);
}

.image-feature > img,
.image-feature-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-feature > img {
  object-fit: cover;
  object-position: center;
}

.image-feature-shade {
  background: rgba(10, 30, 32, 0.58);
}

.image-feature-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  padding: 96px 0;
  align-items: flex-end;
}

.image-feature-copy {
  max-width: 650px;
}

.image-feature-copy .eyebrow {
  color: var(--white);
}

.image-feature-copy h2 {
  color: var(--white);
}

.image-feature-copy p {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.innovation-feature {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.innovation-feature > img,
.innovation-feature-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.innovation-feature > img {
  object-fit: cover;
  object-position: center;
}

.innovation-feature-shade {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 27%, rgba(255, 255, 255, 0.5) 48%, rgba(255, 255, 255, 0) 68%);
}

.innovation-feature-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 650px;
  padding: 96px 0;
  align-items: center;
}

.innovation-feature-copy {
  max-width: 530px;
}

.innovation-feature-copy h2 {
  max-width: 500px;
}

.innovation-feature-copy p:not(.eyebrow) {
  margin-top: 28px;
  color: #455254;
  font-size: 19px;
}

.portfolio-summary {
  border-top: 1px solid var(--line);
}

.portfolio-summary-row {
  display: grid;
  min-height: 150px;
  padding: 32px 0;
  grid-template-columns: 150px 230px minmax(300px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.ledger-logo {
  display: flex;
  width: 150px;
  min-height: 84px;
  align-items: center;
  justify-content: flex-start;
}

.ledger-logo img {
  width: auto;
  height: auto;
  max-width: 146px;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
}

.role-label.ledger-role {
  margin-bottom: 0;
  font-size: 11px;
  line-height: 1.4;
  white-space: nowrap;
}

.ledger-identity h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.28;
  white-space: nowrap;
}

.ledger-description {
  color: var(--muted);
}

.role-label {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.story-split,
.content-split,
.technology-split,
.contact-layout,
.leadership-layout,
.feature-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px;
  align-items: center;
}

.story-copy h2 + .lead,
.content-copy h2 + .lead,
.technology-copy h2 + .lead {
  margin-top: 30px;
}

.story-copy .text-link,
.content-copy .text-link,
.technology-copy .text-link {
  margin-top: 34px;
}

.archive-collage {
  display: grid;
  min-height: 550px;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}

.archive-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-collage img:first-child {
  grid-row: 1 / -1;
}

.technology-list {
  margin-top: 38px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.technology-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-band {
  padding: 110px 0;
  background: var(--brand-deep);
  color: var(--white);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: end;
}

.contact-band h2 {
  max-width: 720px;
}

.contact-band .eyebrow {
  color: #f0a8b1;
}

.page-hero {
  padding: 108px 0 100px;
  background: var(--white);
}

.page-hero-inner {
  max-width: 900px;
}

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

.page-hero .lead {
  margin-top: 32px;
}

.editorial-image-band {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.editorial-image-band img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 58%;
}

.page-hero-photo {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 0;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brand-deep);
  color: var(--white);
}

.page-hero-photo > img,
.page-hero-photo .page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-photo > img {
  object-fit: cover;
}

.page-hero-photo .page-hero-shade {
  background: rgba(12, 34, 36, 0.58);
}

.page-hero-photo .page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 84px 0;
}

.page-hero-photo .eyebrow,
.page-hero-photo h1 {
  color: var(--white);
}

.page-hero-photo .lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-about .page-hero-photo > img,
.page-portfolio .page-hero-photo > img {
  object-position: center 48%;
}

.page-journey .page-hero-photo > img {
  object-position: center 42%;
  filter: grayscale(1) contrast(0.92);
}

.page-journey .page-hero-photo .page-hero-shade {
  background: rgba(12, 34, 36, 0.62);
}

.page-ai .page-hero-ai {
  min-height: 640px;
  align-items: center;
}

.page-ai .page-hero-ai > img {
  object-position: center;
}

.page-ai .page-hero-ai .page-hero-shade {
  background: rgba(8, 27, 29, 0.36);
}

.page-ai .page-hero-ai .page-hero-inner {
  max-width: 720px;
}

.juna-wordmark {
  display: block;
  width: 250px;
  height: auto;
  margin: -26px 0 14px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.principle {
  min-height: 270px;
  padding: 42px 38px 42px 0;
  border-bottom: 1px solid var(--line);
}

.principle + .principle {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.principle h3 {
  font-size: 25px;
}

.principle p {
  margin-top: 22px;
  color: var(--muted);
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  min-height: 210px;
  padding: 46px 0;
  grid-template-columns: 180px 1fr;
  gap: 54px;
  border-bottom: 1px solid var(--line);
}

.timeline-item time {
  color: var(--red);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
}

.timeline-item h3 {
  font-size: 27px;
}

.timeline-item p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
}

.history-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  gap: 12px;
}

.history-gallery figure {
  min-width: 0;
}

.history-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.history-gallery figcaption {
  padding-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.leadership-portrait img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center top;
}

.leadership-role {
  margin: 16px 0 28px;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-media img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.journey-person-layout {
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: 110px;
}

.journey-portrait {
  width: 100%;
  max-width: 330px;
  justify-self: center;
}

.journey-portrait img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}

.feature-logo {
  width: 170px;
  height: 110px;
  margin-bottom: 34px;
  object-fit: contain;
  object-position: left center;
}

.strategic-logo {
  width: 120px;
  height: 128px;
  margin-bottom: 26px;
}

.strategic-interest-media {
  margin: 0;
  overflow: hidden;
}

.strategic-interest-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.logo-stage {
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.logo-stage img {
  width: min(54%, 280px);
  max-height: 300px;
  object-fit: contain;
}

.feature-copy h2 + .lead {
  margin-top: 28px;
}

.entity-list {
  border-top: 1px solid var(--line);
}

.entity-row {
  display: grid;
  min-height: 150px;
  padding: 32px 0;
  grid-template-columns: 150px 230px minmax(300px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.entity-logo {
  max-width: 140px;
}

.entity-meta {
  margin-top: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 500;
}

.mode-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.mode {
  min-height: 390px;
  padding: 52px 52px 52px 0;
  border-bottom: 1px solid var(--line);
}

.mode + .mode {
  padding-right: 0;
  padding-left: 52px;
  border-left: 1px solid var(--line);
}

.mode h2 {
  font-size: 34px;
}

.mode p {
  margin-top: 24px;
  color: var(--muted);
}

.mode ul {
  margin-top: 28px;
  padding-left: 20px;
  color: var(--muted);
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability-row {
  display: grid;
  min-height: 132px;
  padding: 34px 0;
  grid-template-columns: 70px 0.8fr 1.2fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.capability-row span {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.capability-row h3 {
  font-size: 23px;
}

.capability-row p {
  color: var(--muted);
}

.boundary-statement {
  max-width: 900px;
}

.boundary-statement h2 {
  font-size: 42px;
}

.boundary-statement p {
  max-width: 720px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  min-height: 220px;
  padding: 48px 0;
  grid-template-columns: 170px 1fr 150px;
  gap: 46px;
  border-bottom: 1px solid var(--line);
}

.news-meta {
  color: var(--muted);
  font-size: 14px;
}

.news-item h2 {
  font-size: 29px;
}

.news-item p {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
}

.news-thumb {
  display: block;
  width: min(100%, 360px);
  aspect-ratio: 16 / 9;
  margin-bottom: 30px;
  object-fit: cover;
}

.news-action {
  justify-self: end;
}

.contact-layout {
  align-items: start;
}

.contact-intro {
  max-width: 470px;
}

.contact-intro h2 + p {
  margin-top: 26px;
  color: var(--muted);
}

.contact-list {
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  min-height: 120px;
  padding: 32px 0;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.contact-row > span {
  padding-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-row a,
.contact-row address {
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.contact-row a:hover {
  color: var(--red);
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.topic {
  min-height: 260px;
  padding: 42px 38px 42px 0;
  border-bottom: 1px solid var(--line);
}

.topic + .topic {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.topic p {
  margin-top: 22px;
  color: var(--muted);
}

.topic .text-link {
  margin-top: 24px;
}

.prose {
  max-width: 790px;
  color: #394547;
}

.prose h2 {
  margin-top: 64px;
  font-size: 32px;
}

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

.prose h3 {
  margin-top: 40px;
  font-size: 23px;
}

.prose p,
.prose ul {
  margin-top: 22px;
}

.prose ul {
  padding-left: 22px;
}

.site-footer {
  padding: 76px 0 30px;
  background: #172326;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 80px;
}

.site-footer .brand-logo {
  width: 86px;
  height: 78px;
  padding: 4px;
  background: var(--white);
}

.footer-brand p {
  max-width: 440px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.footer-title {
  display: block;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-base {
  display: flex;
  margin-top: 64px;
  padding-top: 24px;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-language {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-language a {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 600;
}

.footer-language a:hover,
.footer-language a[aria-current="true"] {
  color: var(--white);
}

@media (max-width: 1120px) {
  .journey-person-layout {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 64px;
  }

  .journey-portrait {
    max-width: 300px;
  }

  .portfolio-summary-row,
  .entity-row {
    grid-template-columns: 150px minmax(0, 1fr);
    grid-template-rows: repeat(3, auto);
    column-gap: 34px;
    row-gap: 10px;
    align-items: start;
  }

  .ledger-logo {
    grid-row: 1 / span 3;
    align-self: center;
  }

  .ledger-role,
  .ledger-identity,
  .ledger-description {
    grid-column: 2;
  }

  .ledger-role {
    margin-top: 2px;
  }

  .ledger-identity h3 {
    white-space: normal;
  }

  .ledger-description {
    margin-top: 4px;
  }
}

@media (max-width: 1040px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .header-inner {
    width: min(calc(100% - 56px), 1220px);
  }

  .site-nav {
    gap: 22px;
  }

  h1 {
    font-size: 52px;
  }

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

  .intro-layout,
  .contact-band-inner {
    grid-template-columns: 0.34fr 1.66fr;
    gap: 56px;
  }

  .story-split,
  .content-split,
  .technology-split,
  .contact-layout,
  .leadership-layout,
  .feature-split {
    gap: 60px;
  }

  .activity-row,
  .capability-row {
    grid-template-columns: 54px 0.76fr 1.24fr;
    gap: 22px;
  }

}

@media (max-width: 900px) {
  :root {
    --header: 82px;
  }

  .brand-logo {
    width: 68px;
    height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    min-height: 62px;
    padding: 0 8px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

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

  .site-nav .language-switch {
    width: 100%;
    margin: 18px 0 0;
    padding: 14px 8px 0;
    justify-content: flex-start;
    gap: 18px;
    border-left: 0;
  }

  .site-nav .language-switch a {
    width: auto;
    min-width: 42px;
    min-height: 48px;
    padding: 0;
    border-bottom: 0;
    font-size: 14px;
  }

  .section {
    padding: 104px 0;
  }

  .section-compact {
    padding: 92px 0;
  }

  .journey-portrait {
    max-width: 280px;
  }

  .strategic-interest-media img {
    height: 420px;
  }

  .editorial-image-band img {
    height: 460px;
  }

  .page-ai .page-hero-ai {
    display: block;
    min-height: 0;
    padding: 0;
    background: var(--white);
    color: var(--ink);
  }

  .page-ai .page-hero-ai > img {
    position: relative;
    inset: auto;
    display: block;
    height: 440px;
    object-position: 70% center;
  }

  .page-ai .page-hero-ai .page-hero-shade {
    display: none;
  }

  .page-ai .page-hero-ai .page-hero-content {
    padding: 88px 0 92px;
  }

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

  .page-ai .page-hero-ai h1 {
    color: var(--ink);
  }

  .page-ai .page-hero-ai .lead {
    color: var(--muted);
  }

  .intro-layout,
  .contact-band-inner,
  .story-split,
  .content-split,
  .technology-split,
  .contact-layout,
  .leadership-layout,
  .feature-split {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .intro-copy h2 {
    font-size: 42px;
  }

  .activity-row,
  .capability-row {
    grid-template-columns: 50px 1fr;
  }

  .activity-row p,
  .capability-row p {
    grid-column: 2;
  }

  .portfolio-summary-row,
  .entity-row {
    grid-template-columns: 132px 1fr;
    column-gap: 28px;
  }

  .ledger-logo {
    width: 132px;
  }

  .archive-collage {
    min-height: 480px;
  }

  .principles,
  .topic-list {
    grid-template-columns: 1fr;
  }

  .principle,
  .topic,
  .principle + .principle,
  .topic + .topic {
    min-height: 0;
    padding: 36px 0;
    border-left: 0;
  }

  .mode-split {
    grid-template-columns: 1fr;
  }

  .mode,
  .mode + .mode {
    min-height: 0;
    padding: 46px 0;
    border-left: 0;
  }

  .news-item {
    grid-template-columns: 130px 1fr;
  }

  .news-action {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  body {
    font-size: 16px;
  }

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

  h2,
  .intro-copy h2,
  .boundary-statement h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 21px;
  }

  .lead,
  .home-hero .lead {
    font-size: 18px;
  }

  .section {
    padding: 82px 0;
  }

  .section-compact {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .home-hero {
    min-height: calc(100svh - var(--header) - 28px);
    max-height: none;
  }

  .home-hero-media {
    grid-template-columns: minmax(0, 1fr) 58px 58px;
  }

  .home-hero-shade {
    background: rgba(10, 31, 33, 0.56);
  }

  .home-hero-content {
    padding: 78px 0;
  }

  .home-hero-panel-design img {
    object-position: 54% center;
  }

  .hero-identity {
    margin-bottom: 28px;
    gap: 8px;
    font-size: 13px;
  }

  .hero-identity-word {
    gap: 1.5px;
  }

  .page-hero {
    padding: 76px 0 70px;
  }

  .page-hero-photo {
    min-height: 500px;
    padding: 0;
  }

  .page-hero-photo .page-hero-content {
    padding: 68px 0;
  }

  .editorial-image-band img {
    height: 320px;
    object-position: center;
  }

  .page-ai .page-hero-ai > img {
    height: 330px;
    object-position: 72% center;
  }

  .page-ai .page-hero-ai .page-hero-content {
    padding: 72px 0 78px;
  }

  .juna-wordmark {
    width: 220px;
    margin: -22px 0 8px;
  }

  .journey-portrait {
    max-width: 240px;
  }

  .strategic-interest-media img {
    height: 280px;
  }

  .activity-row,
  .capability-row {
    min-height: 0;
    padding: 30px 0;
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .activity-row h3,
  .capability-row h3 {
    font-size: 21px;
  }

  .image-feature,
  .image-feature-content {
    min-height: 560px;
  }

  .image-feature-content {
    padding: 72px 0;
  }

  .innovation-feature {
    min-height: 0;
  }

  .innovation-feature > img {
    position: relative;
    height: 360px;
    object-position: 69% center;
  }

  .innovation-feature-shade {
    display: none;
  }

  .innovation-feature-content {
    min-height: 0;
    padding: 76px 0 82px;
  }

  .portfolio-summary-row,
  .entity-row {
    min-height: 0;
    padding: 34px 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .ledger-logo,
  .ledger-role,
  .ledger-identity,
  .ledger-description {
    grid-column: auto;
    grid-row: auto;
  }

  .ledger-logo {
    width: 100%;
    min-height: 78px;
    align-self: start;
  }

  .ledger-role,
  .ledger-description {
    margin-top: 0;
  }

  .archive-collage {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 190px;
  }

  .archive-collage img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .contact-band {
    padding: 82px 0;
  }

  .timeline-item {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .history-gallery {
    grid-template-columns: 1fr;
  }

  .history-gallery img {
    height: 300px;
  }

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

  .logo-stage {
    min-height: 360px;
  }

  .news-item {
    min-height: 0;
    padding: 38px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-action {
    grid-column: auto;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-row a,
  .contact-row address {
    font-size: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-base {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  h1,
  .page-hero h1 {
    font-size: 34px;
  }

  h2,
  .intro-copy h2,
  .boundary-statement h2 {
    font-size: 28px;
  }

  .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
