@charset "UTF-8";

.inquiry-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.inquiry-status {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.inquiry-status.success { color: oklch(0.42 0.12 150); }
.inquiry-status.error { color: oklch(0.5 0.2 25); }

.story-link {
  min-height: 44px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: oklch(0.45 0.19 22);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

:root {
  color-scheme: light;
  --paper: oklch(98% 0.008 345);
  --paper-soft: oklch(95% 0.012 345);
  --panel: oklch(100% 0.006 345);
  --ink: oklch(18% 0.018 255);
  --ink-2: oklch(30% 0.018 255);
  --muted: oklch(56% 0.018 255);
  --line: oklch(84% 0.02 345);
  --brand: oklch(48% 0.19 9);
  --brand-2: oklch(58% 0.18 4);
  --brand-soft: oklch(93% 0.04 8);
  --graphite: oklch(21% 0.018 255);
  --shadow: 0 26px 80px oklch(35% 0.05 345 / 0.16);
  --radius: 8px;
  font-family: Arial, "Helvetica Neue", system-ui, sans-serif;
  letter-spacing: 0;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 2%, oklch(86% 0.06 8 / 0.28), transparent 30vw),
    linear-gradient(180deg, var(--paper), oklch(97% 0.012 345));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, oklch(40% 0.02 255 / 0.035) 1px, transparent 1px),
    linear-gradient(180deg, oklch(40% 0.02 255 / 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

section {
  scroll-margin-top: 110px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 0 clamp(20px, 3vw, 42px);
  color: var(--ink);
  background: oklch(99.2% 0.006 25 / 0.96);
  border: 0 solid oklch(89% 0.016 25);
  border-bottom-width: 1px;
  border-radius: 0;
  box-shadow: 0 6px 24px oklch(34% 0.035 25 / 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  background: oklch(99.2% 0.006 25 / 0.98);
  box-shadow: 0 8px 28px oklch(34% 0.035 25 / 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-mark,
.brand-emblem {
  display: block;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  clip-path: polygon(0 18%, 18% 0, 68% 0, 58% 20%, 28% 20%, 19% 31%, 47% 31%, 39% 50%, 7% 50%, 0 42%);
}

.brand-mark {
  width: 42px;
  height: 30px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--brand);
}

.brand small {
  margin-top: 4px;
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}

.editor-container-media {
  position: relative;
  min-height: 40px;
  background-origin: content-box;
}

.editor-container-media .brand-mark,
.editor-container-media .brand-text,
.editor-container-media > span:not(.editor-container-video),
.editor-container-media > small,
.editor-container-media > strong {
  opacity: 0;
}

.editor-container-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 24px);
  min-height: 40px;
  font-size: 12px;
  color: var(--ink-2);
}

.nav a {
  position: relative;
  padding: 6px 0;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

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

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand);
}

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

.language-switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-soft);
}

.lang-button {
  min-height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.active {
  color: oklch(98% 0.006 345);
  background: var(--brand);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.button.primary {
  color: oklch(98% 0.006 345);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 32px oklch(47% 0.19 9 / 0.22);
}

.button.ghost {
  color: var(--brand);
  border-color: oklch(72% 0.1 8 / 0.6);
  background: oklch(100% 0.006 345 / 0.72);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11em;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.98;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 950;
}

h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.12;
  font-weight: 920;
}

p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.lead {
  max-width: 640px;
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 19px);
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  padding: 118px clamp(20px, 5vw, 76px) 42px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 76px 10px 0;
  z-index: 1;
  border: 1px solid oklch(70% 0.13 8 / 0.44);
  background:
    linear-gradient(90deg, oklch(99% 0.008 345 / 0.96) 0%, oklch(99% 0.008 345 / 0.78) 29%, oklch(99% 0.008 345 / 0.18) 54%, transparent 72%),
    linear-gradient(180deg, oklch(99% 0.008 345 / 0.36), transparent 48%, oklch(99% 0.008 345 / 0.7));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 54px), calc(100% - 54px) 100%, 0 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 96px 26px 22px;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, oklch(49% 0.17 8 / 0.1) 1px, transparent 1px),
    linear-gradient(180deg, oklch(49% 0.17 8 / 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 64%);
}

.contact::before {
  content: "";
  position: absolute;
  inset: auto -8vw 6% auto;
  width: min(36vw, 520px);
  aspect-ratio: 1.8;
  background: linear-gradient(135deg, oklch(56% 0.18 6 / 0.18), transparent);
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  pointer-events: none;
}

.hero-cover {
  position: absolute;
  inset: 76px 10px 0;
  z-index: 0;
  overflow: hidden;
  background: var(--panel);
}

.hero-cover img {
  object-position: center 46%;
  filter: saturate(0.94) contrast(1.02);
}

.hero-interface {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: clamp(460px, 58vh, 640px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  max-width: 10.5em;
  margin-bottom: 20px;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.03;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 38px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 12px;
  max-width: 650px;
}

.proof-strip article {
  min-height: 84px;
  padding: 15px 14px;
  border: 1px solid oklch(67% 0.14 8 / 0.46);
  border-radius: var(--radius);
  background: oklch(100% 0.006 345 / 0.76);
  box-shadow: 0 12px 34px oklch(36% 0.05 25 / 0.08);
  backdrop-filter: blur(10px);
}

.proof-strip strong {
  display: block;
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.tech-frame {
  overflow: hidden;
  border: 1px solid oklch(85% 0.025 345);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-scanline {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 4;
  width: min(17vw, 230px);
  height: 54px;
  background: var(--brand);
  clip-path: polygon(24% 0, 100% 0, 82% 100%, 0 100%);
  opacity: 0.95;
}

.hero-scanline::after {
  content: "";
  position: absolute;
  inset: 22px 40px 22px 72px;
  background: repeating-linear-gradient(90deg, oklch(98% 0.006 345 / 0.82) 0 7px, transparent 7px 16px);
  transform: skewX(-20deg);
}

.application-ribbon article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(50% 0.18 8 / 0.2), transparent 54%);
  pointer-events: none;
}

.story-panels,
.solutions,
.network-section,
.contact {
  padding: clamp(68px, 9vw, 128px) clamp(20px, 5vw, 76px);
}

.story-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 620px;
  padding: clamp(38px, 5vw, 74px) 0;
  border-top: 1px solid var(--line);
}

.section-index {
  position: absolute;
  left: 0;
  top: clamp(28px, 4vw, 48px);
  color: var(--brand);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
}

.story-copy,
.network-copy,
.section-heading,
.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
  padding-left: clamp(0px, 6vw, 92px);
}

.workflow {
  display: grid;
  gap: 22px;
}

.workflow-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  box-shadow: var(--shadow);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  position: relative;
  display: grid;
  gap: 8px;
  padding-top: 26px;
  color: var(--ink-2);
}

.workflow-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 1px;
  background: var(--brand);
}

.workflow-steps span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 50%;
  background: var(--paper);
  font-size: 11px;
  font-weight: 900;
}

.workflow-steps strong {
  font-size: 13px;
}

.story-panel-engineering {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
}

.exploded-board {
  position: relative;
  min-height: 470px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, oklch(100% 0.006 345), oklch(95% 0.012 345)),
    var(--panel);
  box-shadow: var(--shadow);
}

.exploded-board img {
  object-fit: contain;
}

.callout {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 140px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid oklch(76% 0.08 8 / 0.5);
  background: oklch(100% 0.006 345 / 0.82);
  box-shadow: 0 12px 32px oklch(37% 0.05 345 / 0.14);
}

.callout::before {
  content: "";
  position: absolute;
  left: -54px;
  top: 50%;
  width: 54px;
  height: 1px;
  background: var(--brand);
}

.callout strong {
  color: var(--brand);
  font-size: 13px;
}

.callout span {
  color: var(--muted);
  font-size: 11px;
}

.callout-a { right: 4%; top: 20%; }
.callout-b { right: 8%; top: 52%; }
.callout-c { left: 6%; bottom: 8%; }
.callout-c::before { left: auto; right: -54px; }

.story-panel-contact {
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
}

.quality-lab-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 16px;
}

.quality-lab-grid article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
}

.quality-lab-grid article:first-child {
  min-height: 360px;
}

.quality-lab-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, oklch(18% 0.018 255 / 0.76));
}

.quality-lab-grid strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: oklch(98% 0.006 345);
  font-size: 17px;
}

.network-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  background: linear-gradient(180deg, oklch(97% 0.012 345), oklch(99% 0.006 345));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.network-facts {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.network-facts span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--brand);
  font-size: 28px;
  font-weight: 950;
}

.network-facts small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.006 345);
  box-shadow: var(--shadow);
}

.map-card img {
  object-fit: contain;
  padding: 42px;
  opacity: 0.58;
}

.factory-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--brand);
  border: 1px solid oklch(70% 0.11 8 / 0.72);
  border-radius: 999px;
  background: oklch(100% 0.006 345 / 0.86);
  box-shadow: 0 12px 28px oklch(42% 0.08 8 / 0.14);
  font-size: 12px;
  font-weight: 900;
}

.factory-node::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--brand);
  clip-path: polygon(0 18%, 18% 0, 100% 0, 82% 100%, 0 100%);
}

.node-cn { left: 70%; top: 34%; }
.node-gx { left: 64%; top: 45%; }
.node-vn { left: 66%; top: 53%; }
.node-th { left: 58%; top: 61%; }
.node-my { left: 54%; top: 72%; }

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

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 56px);
}

.application-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.application-ribbon article {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
  background: var(--graphite);
}

.application-ribbon a {
  display: block;
  height: 100%;
}

.application-ribbon span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: oklch(98% 0.006 345);
  font-size: 20px;
  font-weight: 950;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.48fr) minmax(280px, 0.52fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, oklch(99% 0.006 345), oklch(94% 0.018 345));
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.contact-card,
.inquiry-form {
  position: relative;
  display: grid;
  padding: clamp(28px, 4vw, 54px);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(100% 0.006 345 / 0.84);
  box-shadow: var(--shadow);
}

.contact-card {
  gap: 16px;
  min-height: 340px;
}

.inquiry-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 0;
  padding: clamp(20px, 3vw, 32px);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 900;
}

.inquiry-form label.full,
.inquiry-form button {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  color: var(--ink);
  background: oklch(99% 0.006 345 / 0.78);
  border: 1px solid oklch(72% 0.09 8 / 0.45);
  border-radius: 6px;
  outline: 0;
  padding: 12px 13px;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px oklch(56% 0.18 8 / 0.14);
}

.inquiry-form button {
  width: 100%;
}

.brand-emblem {
  width: 132px;
  height: 92px;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-options span,
.contact-options a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--brand);
  border: 1px solid oklch(72% 0.09 8 / 0.52);
  border-radius: 999px;
  background: oklch(100% 0.006 345 / 0.62);
  font-size: 12px;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 76px);
  color: oklch(92% 0.012 345);
  background: var(--graphite);
  font-size: 12px;
}

.about03-page {
  background:
    linear-gradient(90deg, oklch(98% 0.008 345) 0 88px, transparent 88px),
    radial-gradient(circle at 82% 6%, oklch(84% 0.07 8 / 0.22), transparent 28vw),
    var(--paper);
}

.about03-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent 0 35px, oklch(63% 0.12 8 / 0.12) 35px 36px, transparent 36px),
    linear-gradient(180deg, transparent 0 35px, oklch(63% 0.12 8 / 0.1) 35px 36px, transparent 36px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black 0 88px, transparent 88px), linear-gradient(180deg, black, transparent 78%);
}

.about03-rail {
  position: fixed;
  left: 14px;
  top: 92px;
  bottom: 28px;
  z-index: 30;
  display: grid;
  grid-template-rows: auto repeat(8, minmax(0, 1fr));
  width: 74px;
  padding: 14px 8px;
  border: 1px solid oklch(75% 0.09 8 / 0.48);
  background: oklch(99% 0.006 345 / 0.78);
  backdrop-filter: blur(14px);
}

.about03-rail::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 96px;
  bottom: 48px;
  width: 1px;
  background: oklch(67% 0.11 8 / 0.45);
}

.about03-rail > span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.about03-rail a {
  position: relative;
  display: grid;
  align-content: center;
  gap: 3px;
  min-height: 52px;
  padding-left: 16px;
}

.about03-rail a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--brand);
  border-radius: 50%;
  background: var(--paper);
  transform: translateY(-50%);
}

.about03-rail strong {
  color: var(--brand);
  font-size: 16px;
  line-height: 1;
}

.about03-rail small {
  color: var(--ink);
  font-size: 7px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.about03-main {
  padding-left: 88px;
}

.about03-hero,
.about03-section {
  position: relative;
  border-bottom: 1px solid oklch(80% 0.055 8 / 0.62);
}

.about03-hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.66fr) minmax(420px, 1.14fr) minmax(220px, 0.48fr);
  gap: clamp(22px, 3.2vw, 48px);
  align-items: center;
  min-height: 100vh;
  padding: 118px clamp(20px, 4vw, 60px) 48px;
  overflow: hidden;
}

.about03-hero::before,
.about03-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, oklch(67% 0.11 8 / 0.16) 1px, transparent 1px),
    linear-gradient(180deg, oklch(67% 0.11 8 / 0.11) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

.about03-hero-copy,
.about03-hero-media,
.about03-values,
.about03-section > * {
  position: relative;
  z-index: 1;
}

.about03-hero h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.1vw, 66px);
  line-height: 1.05;
  letter-spacing: 0;
}

.about03-hero .lead {
  max-width: 500px;
}

.about03-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(72px, 1fr));
  gap: 8px;
  margin-top: 30px;
}

.about03-process span {
  min-height: 48px;
  padding: 9px 8px;
  color: var(--ink-2);
  border: 1px solid oklch(77% 0.08 8 / 0.45);
  background: oklch(100% 0.006 345 / 0.72);
  font-size: 10px;
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
}

.about03-hero-media {
  height: clamp(360px, 36vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(76% 0.08 8 / 0.58);
  background: var(--panel);
  box-shadow: var(--shadow);
  clip-path: polygon(8% 0, 95% 0, 100% 12%, 94% 100%, 7% 100%, 0 88%);
}

.about03-hero-media img {
  object-position: center;
  filter: saturate(0.96) contrast(1.03);
}

.about03-video-hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: 100vh;
  color: oklch(98% 0.006 345);
  background: oklch(10% 0.018 255);
  text-align: left;
  padding: clamp(150px, 16vh, 210px) clamp(28px, 7vw, 120px) clamp(68px, 9vh, 116px);
}

.about03-video-hero .about03-hero-media,
.about03-video-hero .about03-values,
.about03-video-hero .about03-process,
.about03-video-hero .lead {
  display: none !important;
}

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

.about03-hero-video {
  object-fit: cover;
  filter: saturate(1.02) contrast(1.06);
}

.about03-hero-shade {
  z-index: 0;
  background:
    radial-gradient(circle at 72% 34%, oklch(24% 0.12 12 / 0.16), transparent 38%),
    linear-gradient(90deg, oklch(7% 0.015 255 / 0.82), oklch(8% 0.015 255 / 0.42) 52%, oklch(7% 0.015 255 / 0.68)),
    linear-gradient(180deg, oklch(7% 0.015 255 / 0.4), transparent 42%, oklch(7% 0.015 255 / 0.78));
}

.about03-video-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, oklch(98% 0.006 345 / 0.18) 1px, transparent 1px),
    linear-gradient(180deg, oklch(98% 0.006 345 / 0.12) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.about03-video-hero .about03-hero-copy,
.about03-video-hero .about03-values {
  z-index: 2;
}

.about03-video-hero .eyebrow,
.about03-video-hero .about03-values span {
  color: oklch(72% 0.2 8);
}

.about03-video-hero .about03-hero-copy {
  display: grid;
  justify-items: start;
  width: min(980px, 100%);
  padding-inline: 0;
}

.about03-video-hero .eyebrow {
  position: relative;
  margin-bottom: clamp(18px, 2.4vw, 30px);
  padding-left: 68px;
  color: oklch(86% 0.04 345);
  font-size: clamp(12px, 1vw, 14px);
}

.about03-video-hero .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 46px;
  height: 2px;
  background: var(--brand);
}

.about03-video-hero h1 {
  max-width: 920px;
  color: oklch(98% 0.006 345);
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 28px 78px oklch(4% 0.02 255 / 0.66);
}

.about03-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 48px);
}

.about03-hero-meta span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid oklch(94% 0.012 345 / 0.28);
  padding: 0 14px;
  color: oklch(96% 0.01 345 / 0.88);
  background: oklch(12% 0.018 255 / 0.36);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  backdrop-filter: blur(8px);
}

.about03-hero-scroll {
  position: absolute;
  right: clamp(26px, 5vw, 84px);
  bottom: clamp(34px, 5vw, 72px);
  z-index: 2;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: oklch(96% 0.01 345 / 0.78);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.about03-hero-scroll::after {
  content: "";
  width: 1px;
  height: 72px;
  background: linear-gradient(180deg, var(--brand), transparent);
}

.about03-video-hero .lead {
  max-width: 620px;
  color: oklch(91% 0.014 345);
  font-size: clamp(17px, 1.45vw, 22px);
}

.about03-video-hero .about03-process span {
  color: oklch(96% 0.008 345);
  border-color: oklch(72% 0.16 8 / 0.58);
  background: oklch(12% 0.02 255 / 0.54);
  backdrop-filter: blur(8px);
}

.about03-video-hero .about03-values {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid oklch(90% 0.03 345 / 0.42);
  background: oklch(98% 0.006 345 / 0.74);
  backdrop-filter: blur(14px);
}

.about03-video-hero .about03-values article {
  padding-left: 0;
}

.about03-video-hero .about03-values p {
  color: var(--ink-2);
}

.about03-values {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.about03-values article {
  padding: 18px 0 22px 28px;
  border-bottom: 1px solid oklch(75% 0.085 8 / 0.56);
  min-width: 0;
}

.about03-values span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 950;
  text-transform: uppercase;
}

.about03-values p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.about03-section {
  padding: clamp(52px, 6vw, 92px) clamp(20px, 4vw, 60px);
}

.about03-section-title {
  display: grid;
  grid-template-columns: 82px minmax(0, 760px);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  margin-bottom: 34px;
}

.about03-section-title > span,
.about03-section-bar h2 span {
  color: var(--brand);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.about03-section-title h2,
.about03-section-bar h2 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.6vw, 52px);
}

.about03-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about03-mission-grid article,
.about03-leader-grid article,
.about03-timeline article,
.about03-honor-grid article {
  border: 1px solid oklch(77% 0.08 8 / 0.5);
  background: oklch(100% 0.006 345 / 0.78);
  box-shadow: 0 18px 55px oklch(35% 0.05 345 / 0.08);
}

.about03-mission-grid article {
  min-height: 250px;
  padding: clamp(22px, 2.8vw, 34px);
}

.about03-mission-grid strong {
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
}

.about03-mission-grid h3 {
  margin: 18px 0 12px;
  font-size: clamp(22px, 2vw, 30px);
}

.about03-section-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid oklch(75% 0.085 8 / 0.58);
}

.about03-section-bar h2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}

.about03-section-bar p {
  max-width: 620px;
  margin-bottom: 16px;
  text-align: right;
}

.about03-leadership {
  overflow: hidden;
  background:
    linear-gradient(180deg, oklch(99% 0.006 345), oklch(96% 0.012 345));
}

.about03-leadership::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 76px);
  top: clamp(36px, 5vw, 64px);
  width: min(22vw, 260px);
  aspect-ratio: 1;
  border: 1px solid oklch(73% 0.09 8 / 0.34);
  opacity: 0.55;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  pointer-events: none;
}

.leadership-concept-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.leadership-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.leadership-brand .brand-mark {
  width: 38px;
  height: 28px;
}

.leadership-brand strong {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 950;
}

.leadership-concept-heading h2 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.92;
  text-transform: uppercase;
}

.leadership-concept-heading h2 span {
  color: var(--brand);
}

.about03-leader-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 24px);
  align-items: stretch;
}

.about03-leader-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(70% 0.1 8 / 0.55), transparent);
}

.about03-leader-grid article {
  position: relative;
  display: grid;
  grid-template-rows: minmax(470px, 1fr) auto;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid oklch(82% 0.045 8 / 0.72);
  border-radius: 8px;
  background: oklch(99% 0.006 345);
  box-shadow: 0 22px 54px oklch(35% 0.04 345 / 0.11);
}

.about03-leader-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid oklch(100% 0.006 345 / 0.72);
  border-radius: 7px;
  pointer-events: none;
}

.about03-leader-grid article.leader-feature {
  min-height: 610px;
}

.leader-photo {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: start;
  background: oklch(99% 0.006 345);
  isolation: isolate;
}

.leader-photo::before {
  display: none;
}

.about03-leader-grid img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 0%;
  padding: 0;
  mix-blend-mode: normal;
  filter: none;
}

.about03-leader-grid article:not(.leader-feature) img {
  aspect-ratio: auto;
}

.leader-meta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 14px;
  min-height: 116px;
  padding: 20px 22px 22px;
  color: oklch(98% 0.006 345);
  background: linear-gradient(135deg, oklch(42% 0.19 8), oklch(50% 0.17 6));
}

.leader-meta::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 52px;
  height: 9px;
  background: repeating-linear-gradient(120deg, oklch(90% 0.04 8 / 0.45) 0 7px, transparent 7px 12px);
}

.leader-meta small,
.leader-meta strong,
.leader-meta span,
.about03-photo-strip span {
  display: block;
}

.leader-meta small {
  grid-row: 1 / span 2;
  align-self: start;
  min-width: 34px;
  margin-bottom: 0;
  color: oklch(92% 0.012 345 / 0.82);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.leader-meta strong {
  color: oklch(98% 0.006 345);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.12;
  font-weight: 950;
  text-transform: uppercase;
  max-width: 18ch;
}

.leader-meta span {
  margin-top: 5px;
  color: oklch(92% 0.012 345 / 0.84);
  font-size: 11px;
  line-height: 1.35;
  max-width: 24ch;
}

.about03-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about03-photo-strip article {
  display: grid;
  gap: 10px;
}

.about03-photo-strip img {
  aspect-ratio: 16 / 9;
  border: 1px solid oklch(77% 0.08 8 / 0.5);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.about03-photo-strip span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.about03-structure {
  background:
    linear-gradient(180deg, oklch(99% 0.006 345), oklch(97% 0.01 345));
}

.structure-concept-heading {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  margin-bottom: clamp(32px, 4vw, 54px);
}

.structure-concept-heading > span {
  color: var(--brand);
  font-size: clamp(64px, 8vw, 132px);
  line-height: 0.84;
  font-weight: 950;
}

.structure-concept-heading div {
  padding-left: clamp(18px, 2vw, 30px);
  border-left: 1px solid oklch(66% 0.08 8 / 0.7);
}

.structure-concept-heading h2 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.9;
  text-transform: uppercase;
}

.structure-concept-heading h2::after {
  content: "";
  display: block;
  width: 104px;
  height: 10px;
  margin-top: 10px;
  background: repeating-linear-gradient(120deg, var(--brand) 0 9px, transparent 9px 15px);
}

.about03-org-chart {
  position: relative;
  min-height: 560px;
  padding: clamp(44px, 5vw, 76px) clamp(34px, 5vw, 72px) clamp(52px, 5vw, 78px);
  overflow: hidden;
  border: 2px solid oklch(45% 0.18 8);
  background:
    radial-gradient(circle at 20% 22%, oklch(28% 0.06 8 / 0.22), transparent 27%),
    linear-gradient(180deg, oklch(12% 0.016 255), oklch(8% 0.012 255));
  box-shadow: 0 34px 90px oklch(30% 0.04 255 / 0.2);
  clip-path: polygon(3% 0, 97% 0, 100% 8%, 100% 89%, 97% 100%, 3% 100%, 0 89%, 0 8%);
}

.about03-org-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, oklch(62% 0.12 8 / 0.09) 1px, transparent 1px),
    linear-gradient(180deg, oklch(62% 0.12 8 / 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.about03-org-chart::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(58% 0.14 8 / 0.6), transparent);
}

.org-root-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(420px, 42vw);
  min-height: 82px;
  margin: 0 auto 94px;
  color: var(--brand);
  border: 2px solid oklch(48% 0.18 8 / 0.9);
  background: linear-gradient(180deg, oklch(14% 0.014 255), oklch(8% 0.012 255));
  box-shadow: 0 0 0 1px oklch(28% 0.1 8 / 0.5), 0 18px 42px oklch(4% 0.01 255 / 0.45);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%, 0 18%);
}

.org-spine {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: clamp(120px, 12vw, 166px);
  width: 1px;
  height: 82px;
  background: oklch(58% 0.18 8 / 0.82);
}

.org-departments {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(116px, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
}

.org-departments::before {
  content: "";
  position: absolute;
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: -43px;
  height: 1px;
  background: oklch(58% 0.18 8 / 0.82);
}

.org-departments article {
  position: relative;
  display: grid;
  gap: 34px;
  align-content: start;
}

.org-departments article::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -43px;
  width: 1px;
  height: 43px;
  background: oklch(58% 0.18 8 / 0.82);
}

.org-departments article strong,
.org-departments span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 14px 12px;
  color: oklch(90% 0.018 345);
  border: 1px solid oklch(55% 0.14 8 / 0.62);
  background:
    linear-gradient(180deg, oklch(16% 0.014 255 / 0.94), oklch(10% 0.012 255 / 0.95));
  box-shadow: 0 10px 28px oklch(4% 0.01 255 / 0.28);
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%, 0 17%);
}

.org-departments article strong {
  display: grid;
  gap: 8px;
  min-height: 124px;
  color: oklch(96% 0.008 345);
  border-color: oklch(55% 0.14 8 / 0.72);
  font-size: 18px;
  text-transform: uppercase;
}

.org-departments article div {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.org-departments article div::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -34px;
  width: 1px;
  height: 34px;
  background: oklch(58% 0.18 8 / 0.72);
}

.org-departments span {
  color: oklch(76% 0.018 345);
  min-height: 74px;
  border-color: oklch(40% 0.11 8 / 0.62);
  background: oklch(10% 0.014 255 / 0.86);
  font-size: 11px;
}

.about03-structure .about03-org-chart {
  min-height: 0;
  padding: clamp(42px, 5vw, 68px) clamp(24px, 4vw, 58px) clamp(46px, 5vw, 70px);
  overflow: visible;
  border: 1px solid oklch(84% 0.035 8);
  border-radius: 8px;
  background:
    linear-gradient(90deg, oklch(76% 0.06 8 / 0.16) 1px, transparent 1px),
    linear-gradient(180deg, oklch(76% 0.06 8 / 0.13) 1px, transparent 1px),
    oklch(99% 0.006 345);
  background-size: 52px 52px;
  clip-path: none;
  box-shadow: 0 22px 70px oklch(36% 0.04 345 / 0.08);
}

.about03-structure .about03-org-chart::before {
  inset: 16px;
  border: 1px solid oklch(82% 0.045 8 / 0.62);
  border-radius: 8px;
  background: none;
  mask-image: none;
}

.about03-structure .about03-org-chart::after {
  left: clamp(24px, 4vw, 58px);
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 42px);
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(56% 0.16 8 / 0.42), transparent);
}

.about03-structure .org-root-node {
  width: min(360px, 58vw);
  min-height: 82px;
  margin-bottom: 96px;
  border: 2px solid var(--brand);
  border-radius: 8px;
  color: var(--brand);
  background: oklch(100% 0.006 345);
  clip-path: none;
  box-shadow: 0 16px 36px oklch(45% 0.09 8 / 0.13);
}

.about03-structure .org-spine {
  top: 148px;
  height: 76px;
  background: oklch(54% 0.18 8 / 0.72);
}

.about03-structure .org-departments {
  grid-template-columns: repeat(6, minmax(118px, 1fr));
  gap: clamp(12px, 1.2vw, 20px);
}

.about03-structure .org-departments::before {
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: -56px;
  background: oklch(54% 0.18 8 / 0.62);
}

.about03-structure .org-departments article {
  gap: 18px;
  padding: 0;
}

.about03-structure .org-departments article::before {
  top: -56px;
  height: 56px;
  background: oklch(54% 0.18 8 / 0.62);
}

.about03-structure .org-departments article strong,
.about03-structure .org-departments span {
  clip-path: none;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 12px 26px oklch(36% 0.04 345 / 0.07);
}

.about03-structure .org-departments article strong {
  gap: 10px;
  min-height: 132px;
  border: 1px solid oklch(82% 0.045 8 / 0.72);
  color: oklch(22% 0.02 255);
  background: linear-gradient(180deg, oklch(100% 0.006 345), oklch(96% 0.018 8));
  font-size: clamp(14px, 1.15vw, 18px);
}

.about03-structure .org-departments article div {
  gap: 10px;
}

.about03-structure .org-departments article div::before {
  top: -18px;
  height: 18px;
  background: oklch(54% 0.18 8 / 0.48);
}

.about03-structure .org-departments span {
  min-height: 66px;
  border: 1px solid oklch(84% 0.035 8 / 0.86);
  color: oklch(34% 0.02 255);
  background: oklch(100% 0.006 345 / 0.94);
  font-size: 12px;
  font-weight: 850;
}

.about03-structure .org-icon {
  color: var(--brand);
}

.org-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border: 2px solid var(--brand);
  opacity: 0.95;
}

.org-icon-gear { border-radius: 50%; box-shadow: inset 0 0 0 8px oklch(12% 0.016 255), inset 0 0 0 10px var(--brand); }
.org-icon-clip { clip-path: polygon(18% 0, 82% 0, 82% 100%, 18% 100%); }
.org-icon-shield { clip-path: polygon(50% 0, 92% 18%, 84% 76%, 50% 100%, 16% 76%, 8% 18%); }
.org-icon-sales { border-radius: 50%; box-shadow: -13px 14px 0 -8px var(--brand), 13px 14px 0 -8px var(--brand); }
.org-icon-truck { clip-path: polygon(0 18%, 66% 18%, 66% 40%, 100% 40%, 100% 78%, 0 78%); }
.org-icon-user { border-radius: 50% 50% 45% 45%; }

.about03-timeline time {
  color: var(--brand);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.about03-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 18px 0 6px;
}

.about03-timeline article {
  position: relative;
  min-height: 240px;
  padding: 58px 18px 18px;
  border-left: 0;
  box-shadow: none;
}

.about03-timeline article:first-child {
  border-left: 1px solid oklch(77% 0.08 8 / 0.5);
}

.about03-timeline article::before {
  content: "";
  position: absolute;
  left: 18px;
  right: -18px;
  top: 31px;
  height: 1px;
  background: var(--brand);
}

.about03-timeline article::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 24px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: var(--paper);
}

.about03-timeline strong {
  display: block;
  margin: 10px 0;
  color: var(--ink);
  font-size: 18px;
}

.about03-timeline p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.about03-honor-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr repeat(3, 0.7fr);
  gap: 12px;
  align-items: stretch;
}

.about03-honor-grid article {
  min-height: 220px;
  overflow: hidden;
}

.about03-honor-grid img {
  object-fit: contain;
  padding: 14px;
  background: oklch(99% 0.006 345);
}

.about03-patent-stat {
  display: grid;
  place-content: center;
  padding: 24px;
  text-align: center;
}

.about03-patent-stat strong {
  color: var(--brand);
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1;
}

.about03-patent-stat span {
  margin-top: 6px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.about03-patent-stat p {
  margin: 14px auto 0;
  max-width: 220px;
  font-size: 13px;
}

.about03-contact {
  margin-left: 88px;
}

.factory-overview-page,
.factory-page {
  background: oklch(98.8% 0.006 25);
}

.factory-overview-page .site-header,
.factory-page .site-header {
  background: oklch(99.2% 0.006 25 / 0.96);
}

.factory-overview-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.43fr) minmax(0, 0.57fr);
  align-items: center;
  gap: clamp(22px, 3.4vw, 56px);
  min-height: 70vh;
  padding: 96px clamp(22px, 4vw, 52px) 14px;
  overflow: hidden;
}

.factory-overview-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.factory-overview-copy h1 {
  max-width: 8em;
  margin-bottom: 20px;
  color: oklch(17% 0.016 25);
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.02;
}

.factory-overview-copy h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 20px;
  background: var(--brand);
}

.factory-overview-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.factory-overview-metrics article {
  min-height: 96px;
  padding: 16px 13px 14px;
  border: 1px solid oklch(87% 0.018 25);
  border-radius: 8px;
  background: oklch(99.6% 0.006 25 / 0.86);
  box-shadow: 0 14px 36px oklch(35% 0.028 25 / 0.08);
}

.factory-overview-metrics strong {
  display: block;
  color: var(--brand);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 950;
  word-break: keep-all;
}

.factory-overview-metrics span {
  display: block;
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.45;
}

.factory-overview-note {
  margin-top: 18px;
  color: oklch(56% 0.018 255);
  font-size: 12px;
}

.factory-map-stage {
  position: relative;
  align-self: stretch;
  min-height: clamp(410px, 45vw, 620px);
  border-left: 1px solid oklch(89% 0.016 25);
  background: linear-gradient(135deg, oklch(98.6% 0.008 25), oklch(94.2% 0.014 230));
  overflow: hidden;
}

.factory-map-stage::before {
  content: "";
  position: absolute;
  inset: 7% 5% auto auto;
  width: 36%;
  aspect-ratio: 1;
  background: radial-gradient(circle, oklch(91% 0.048 10 / 0.62), transparent 64%);
  opacity: 0.85;
}

.factory-map-stage img {
  position: absolute;
  inset: 0;
  object-fit: contain;
  opacity: 0.96;
}

.factory-map-stage::after {
  content: "";
  position: absolute;
  inset: auto 5% 7% auto;
  width: 132px;
  height: 132px;
  border: 1px solid oklch(74% 0.032 230 / 0.58);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, oklch(74% 0.032 230 / 0.42) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, oklch(74% 0.032 230 / 0.42) 50%, transparent 51%);
  opacity: 0.72;
  pointer-events: none;
}

.factory-map-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.factory-map-routes path {
  fill: none;
  stroke: oklch(49% 0.18 9 / 0.46);
  stroke-width: 2.2;
  stroke-dasharray: 7 8;
  vector-effect: non-scaling-stroke;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: grid;
  grid-template-columns: 16px max-content;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 8px;
  gap: 8px;
  max-width: 178px;
  color: oklch(20% 0.018 25);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  transform: translate(-8px, -8px);
  text-shadow: 0 1px 0 oklch(99% 0.006 25);
}

.map-pin span {
  position: relative;
  grid-row: 1 / 3;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: var(--brand);
  border: 3px solid oklch(99% 0.006 25);
  border-radius: 50%;
  box-shadow: 0 0 0 7px oklch(48% 0.19 9 / 0.16), 0 10px 22px oklch(48% 0.19 9 / 0.26);
}

.map-pin span::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid oklch(48% 0.19 9 / 0.28);
  border-radius: 50%;
  animation: factoryPinPulse 2400ms ease-out infinite;
}

.map-pin strong,
.map-pin small {
  display: block;
}

.map-pin small {
  margin-top: 3px;
  color: oklch(47% 0.018 25);
  font-size: 11px;
  font-weight: 800;
}

.pin-dg { transform: translate(-8px, -42px); }
.pin-gx { transform: translate(-122px, -7px); text-align: right; grid-template-columns: max-content 16px; }
.pin-gx span { grid-column: 2; }
.pin-gx strong,
.pin-gx small { grid-column: 1; }
.pin-vn { transform: translate(10px, -8px); }
.pin-th { transform: translate(-116px, -8px); text-align: right; grid-template-columns: max-content 16px; }
.pin-th span { grid-column: 2; }
.pin-th strong,
.pin-th small { grid-column: 1; }
.pin-my { transform: translate(10px, -8px); }

@keyframes factoryPinPulse {
  0% {
    opacity: 0.86;
    transform: scale(0.74);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.factory-card-section {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(22px, 4vw, 52px) clamp(64px, 7vw, 96px);
  background: oklch(18% 0.014 25);
}

.factory-list-card {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: oklch(99.4% 0.006 25);
  box-shadow: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.factory-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px oklch(22% 0.018 25 / 0.18);
}

.factory-list-card a {
  display: grid;
  height: 100%;
  grid-template-rows: 138px 1fr;
}

.factory-list-card img {
  aspect-ratio: 1.28 / 1;
}

.factory-list-card div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px 17px 18px;
}

.factory-list-card h2 {
  position: relative;
  margin: 0;
  padding-right: 24px;
  font-size: 18px;
  line-height: 1.2;
}

.factory-list-card h2::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.factory-location {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.factory-list-card p:not(.factory-location) {
  margin: 0;
  font-size: 12px;
  line-height: 1.58;
}

.factory-list-card dl {
  display: grid;
  gap: 7px;
  margin: 6px 0 0;
  padding-top: 12px;
  border-top: 1px solid oklch(88% 0.018 25);
}

.factory-list-card dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  padding: 0;
}

.factory-list-card dt,
.factory-list-card dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.35;
}

.factory-list-card dd {
  color: var(--ink);
  font-weight: 850;
}

.factory-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding-top: 76px;
  background: oklch(98% 0.008 245);
}

.factory-hero-media {
  position: absolute;
  inset: 76px 0 0;
  overflow: hidden;
}

.factory-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(99% 0.006 245 / 0.96) 0 39%, oklch(99% 0.006 245 / 0.7) 44%, oklch(99% 0.006 245 / 0.08) 74%),
    linear-gradient(180deg, oklch(99% 0.006 245 / 0.9), transparent 32%, oklch(98% 0.008 245 / 0.96));
}

.factory-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  padding: clamp(128px, 15vw, 210px) clamp(20px, 5vw, 76px) clamp(54px, 8vw, 100px);
}

.factory-hero-grid h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.4vw, 96px);
}

.factory-summary {
  border: 1px solid oklch(86% 0.018 245);
  border-radius: 8px;
  background: oklch(99.5% 0.006 245 / 0.84);
  box-shadow: 0 22px 60px oklch(42% 0.018 255 / 0.14);
  backdrop-filter: blur(10px);
}

.factory-summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: oklch(88% 0.018 245);
}

.factory-summary div {
  min-height: 104px;
  padding: 20px;
  background: oklch(99.5% 0.006 245 / 0.9);
}

.factory-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.factory-summary dd {
  margin: 10px 0 0;
  color: var(--brand);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 950;
}

.factory-body {
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 76px);
  background: oklch(99% 0.006 245);
}

.factory-body-copy h2 {
  max-width: 720px;
}

.factory-advantages {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.factory-advantages li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.75;
}

.factory-advantages li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--brand);
  transform: rotate(45deg);
}

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

.factory-profile-stats article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid oklch(86% 0.018 245);
  border-radius: 8px;
  background: oklch(99.5% 0.006 245);
  box-shadow: 0 18px 44px oklch(42% 0.018 255 / 0.08);
}

.factory-profile-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.factory-profile-stats strong {
  display: block;
  margin-top: 16px;
  color: var(--brand);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.factory-environment {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 76px);
}

.factory-office-section {
  background: oklch(96% 0.011 245);
}

.factory-production-section {
  background: var(--graphite);
}

.factory-production-section h2,
.factory-production-section .eyebrow {
  color: oklch(97% 0.006 245);
}

.factory-environment-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.factory-carousel {
  overflow: hidden;
}

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

.factory-carousel article {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
}

.factory-carousel article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, oklch(18% 0.018 255 / 0.78));
}

.factory-carousel span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: oklch(98% 0.006 245);
  font-size: 14px;
  font-weight: 850;
}

.factory-nav-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 34px clamp(20px, 5vw, 76px);
  background: oklch(99% 0.006 245);
  border-top: 1px solid oklch(86% 0.018 245);
}

.factory-nav-band a {
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid oklch(78% 0.05 8 / 0.58);
  border-radius: 999px;
  color: var(--brand);
  background: oklch(99.5% 0.006 245);
  font-size: 13px;
  font-weight: 900;
}

.factory-nav-band a[aria-current="page"] {
  color: oklch(98% 0.006 245);
  background: var(--brand);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms cubic-bezier(.19, 1, .22, 1), transform 700ms cubic-bezier(.19, 1, .22, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto auto;
    border-radius: 0;
  }

  .language-switch {
    grid-column: 3;
    justify-self: end;
    width: max-content;
  }

  .header-cta {
    grid-column: 4;
    justify-self: end;
    width: auto;
    min-width: 112px;
    max-width: max-content;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .hero-interface,
  .story-panel,
  .story-panel-engineering,
  .story-panel-contact,
  .factory-overview-hero,
  .factory-hero-grid,
  .factory-body,
  .factory-environment-heading,
  .network-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 780px;
    padding-top: 174px;
  }

  .hero::before,
  .hero-cover {
    inset: 148px 10px 0;
  }

  .hero::after {
    inset: 170px 26px 22px;
  }

  .hero-interface {
    min-height: 560px;
  }

  .story-copy,
  .network-copy,
  .section-heading,
  .contact-copy {
    padding-left: 76px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .application-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory-overview-hero {
    min-height: auto;
    padding-top: 150px;
  }

  .factory-card-section,
  .factory-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .factory-overview-metrics strong {
    font-size: clamp(22px, 1.9vw, 30px);
  }

  .factory-overview-metrics article {
    padding-inline: 11px;
  }
}

@media (max-width: 720px) {
  .site-header {
    inset: 8px 8px auto;
    display: grid;
    grid-template-columns: minmax(104px, 1fr) auto auto;
    column-gap: 7px;
    row-gap: 8px;
    padding: 9px;
    border-radius: 8px;
  }

  .brand {
    order: 1;
    grid-column: 1;
    min-width: 0;
    gap: 6px;
    overflow: hidden;
  }

  .brand-mark {
    width: 28px;
    height: 20px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .language-switch {
    order: 2;
    grid-column: 2;
    justify-self: end;
    gap: 2px;
    padding: 2px;
  }

  .lang-button {
    min-height: 28px;
    padding: 0 7px;
    font-size: 10px;
  }

  .header-cta {
    order: 3;
    grid-column: 3;
    justify-self: end;
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .nav {
    order: 4;
    grid-column: 1 / -1;
    gap: 14px;
    min-height: 28px;
    padding: 1px 0 0;
    overflow-x: auto;
    overflow-y: hidden;
    font-size: 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 4px 0;
  }

  h1 {
    font-size: clamp(33px, 10.8vw, 44px);
    line-height: 0.96;
  }

  .hero h1 {
    max-width: 9.5em;
    font-size: clamp(32px, 9.2vw, 42px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(25px, 8.4vw, 34px);
    line-height: 1;
  }

  .lead,
  .story-copy p,
  .network-copy p,
  .section-heading p,
  .contact-copy p {
    font-size: 13px;
    line-height: 1.75;
  }

  .inquiry-form {
    padding: 16px;
  }

  .hero,
  .factory-overview-hero,
  .factory-body,
  .factory-environment,
  .story-panels,
  .solutions,
  .factory-card-section,
  .network-section,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 142px;
    gap: 28px;
    min-height: 760px;
  }

  .hero::before,
  .hero-cover {
    inset: 122px 8px 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
  }

  .hero::after {
    inset: 140px 16px 16px;
    background-size: 42px 42px;
  }

  .hero-cover img {
    object-position: 58% center;
  }

  .hero-interface {
    display: block;
    min-height: 560px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions {
    margin: 24px 0 26px;
  }

  .hero-actions .button {
    flex: 1 1 170px;
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero-scanline {
    width: 42vw;
    height: 34px;
  }

  .hero-scanline::after {
    inset: 13px 24px 13px 48px;
  }

  .factory-overview-page .site-header,
  .factory-page .site-header {
    inset: 8px 8px auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .factory-overview-hero {
    min-height: auto;
    padding-top: 148px;
    padding-bottom: 28px;
    gap: 26px;
  }

  .factory-overview-copy h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .factory-overview-metrics,
  .factory-summary dl,
  .factory-profile-stats,
  .factory-carousel {
    grid-template-columns: 1fr;
  }

  .factory-overview-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .factory-overview-metrics article {
    min-height: 86px;
    padding: 16px 14px;
  }

  .factory-map-stage {
    min-height: 360px;
    order: 2;
  }

  .map-pin {
    grid-template-columns: 14px max-content;
    max-width: 140px;
    font-size: 11px;
    transform: translate(-7px, -7px);
  }

  .map-pin small,
  .map-pin span {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .pin-dg { transform: translate(-7px, -34px); }
  .pin-gx,
  .pin-th {
    grid-template-columns: max-content 14px;
    transform: translate(-92px, -7px);
  }

  .pin-gx span,
  .pin-th span {
    grid-column: 2;
  }

  .pin-gx strong,
  .pin-th strong {
    grid-column: 1;
  }

  .pin-vn,
  .pin-my {
    transform: translate(9px, -7px);
  }

  .factory-card-section {
    grid-template-columns: 1fr;
    padding-bottom: 56px;
  }

  .factory-list-card a {
    grid-template-rows: 210px 1fr;
  }

  .factory-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .factory-hero-media {
    position: relative;
    inset: auto;
    height: 300px;
    order: 2;
  }

  .factory-hero-media::after {
    background: linear-gradient(180deg, transparent, oklch(98% 0.008 245 / 0.9));
  }

  .factory-hero-grid {
    padding: 24px 16px 32px;
  }

  .factory-hero-grid h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .factory-summary div,
  .factory-profile-stats article {
    min-height: 96px;
    padding: 18px;
  }

  .factory-body,
  .factory-environment {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .factory-environment-heading {
    gap: 8px;
  }

  .factory-carousel article {
    min-height: 220px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .proof-strip article {
    min-height: 62px;
    padding: 11px 10px;
  }

  .proof-strip strong {
    font-size: 20px;
  }

  .proof-strip span {
    margin-top: 5px;
    font-size: 10px;
  }

  .workflow-steps,
  .quality-lab-grid,
  .application-ribbon,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .network-copy,
  .section-heading,
  .contact-copy {
    padding-left: 0;
    padding-top: 44px;
  }

  .story-panel {
    min-height: auto;
    padding-top: 0;
    gap: 24px;
  }

  .section-index {
    top: 0;
    font-size: 34px;
  }

  .workflow-media,
  .exploded-board,
  .map-card {
    min-height: 260px;
  }

  .workflow-steps {
    gap: 8px;
  }

  .workflow-steps li {
    padding: 9px 0 9px 44px;
  }

  .workflow-steps li::before {
    left: 16px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .workflow-steps span {
    position: absolute;
    left: 0;
    top: 4px;
  }

  .callout {
    display: none;
  }

  .quality-lab-grid article,
  .quality-lab-grid article:first-child {
    min-height: 220px;
  }

  .application-ribbon article {
    min-height: 210px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  }

  .contact {
    gap: 22px;
  }

  .contact-card {
    min-height: 260px;
    padding: 26px 22px;
  }

  .contact-options {
    gap: 8px;
  }

  .site-footer {
    gap: 8px;
    padding: 18px 16px;
    text-align: left;
  }

  .factory-node {
    font-size: 10px;
    padding: 0 8px;
  }
}

@media (max-width: 1120px) {
  .about03-page {
    background: var(--paper);
  }

  .about03-page .site-header {
    display: grid;
    grid-template-columns: minmax(170px, auto) minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
  }

  .about03-page .brand {
    min-width: 0;
  }

  .about03-page .nav {
    grid-column: 1 / -1;
    order: 2;
    justify-content: flex-start;
  }

  .about03-page .header-cta {
    width: auto;
    min-width: 112px;
    justify-self: end;
  }

  .about03-rail {
    display: none;
  }

  .about03-main,
  .about03-contact {
    padding-left: 0;
    margin-left: 0;
  }

  .about03-hero {
    grid-template-columns: 1fr;
    padding-top: 190px;
  }

  .about03-video-hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 760px;
  }

  .about03-video-hero .about03-values {
    grid-template-columns: 1fr;
  }

  .about03-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .about03-mission-grid,
  .about03-leader-grid,
  .about03-photo-strip,
  .about03-honor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about03-leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .about03-leader-grid article.leader-feature {
    grid-column: auto;
    min-height: 560px;
  }

  .about03-leader-grid article {
    min-height: 560px;
    grid-template-rows: minmax(430px, 1fr) auto;
  }

  .leader-meta strong {
    max-width: 16ch;
  }

  .about03-org-chart {
    min-height: 0;
    padding: 38px 24px 44px;
  }

  .org-departments {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 52px 16px;
  }

  .org-departments::before {
    display: none;
  }

  .org-root-node {
    width: min(360px, 70vw);
    margin-bottom: 58px;
  }

  .org-spine {
    display: none;
  }

  .org-departments article strong {
    min-height: 106px;
  }

  .org-departments span {
    min-height: 62px;
  }

  .about03-section-bar {
    align-items: start;
    flex-direction: column;
  }

  .about03-section-bar p {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .about03-page .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 8px;
    overflow: hidden;
  }

  .about03-page .brand {
    flex: initial;
    min-width: 0;
    order: 0;
  }

  .about03-page .brand-mark {
    width: 30px;
    height: 22px;
  }

  .about03-page .brand strong {
    font-size: 12px;
  }

  .about03-page .brand small {
    display: none;
  }

  .about03-page .language-switch {
    order: 1;
    justify-self: end;
    max-width: 136px;
    overflow: hidden;
  }

  .about03-page .lang-button {
    min-height: 28px;
    padding: 0 8px;
    font-size: 10px;
  }

  .about03-page .lang-button[data-lang="ja"] {
    font-size: 0;
  }

  .about03-page .lang-button[data-lang="ja"]::after {
    content: "JP";
    font-size: 10px;
  }

  .about03-page .header-cta {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .about03-page .nav {
    order: 2;
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
    font-size: 10px;
    scrollbar-width: none;
  }

  .about03-page .nav::-webkit-scrollbar {
    display: none;
  }

  .about03-hero {
    padding: 150px 16px 42px;
    gap: 20px;
    overflow: hidden;
  }

  .about03-video-hero {
    min-height: 720px;
    padding-top: 150px;
  }

  .about03-hero h1 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.12;
    max-width: 100%;
  }

  .about03-hero .lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .about03-section-title h2,
  .about03-mission-grid h3,
  .about03-mission-grid p,
  .about03-section-bar h2,
  .about03-section-bar p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .about03-video-hero h1 {
    font-size: clamp(44px, 14vw, 56px);
    max-width: 7em;
  }

  .about03-video-hero .about03-values {
    grid-template-columns: 1fr;
    padding: 18px;
    width: 100%;
  }

  .about03-process,
  .about03-values,
  .about03-mission-grid,
  .about03-leader-grid,
  .about03-photo-strip,
  .about03-honor-grid {
    grid-template-columns: 1fr;
  }

  .about03-leader-grid article,
  .about03-leader-grid article.leader-feature {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(390px, auto) auto;
    min-height: 0;
  }

  .about03-leader-grid article.leader-feature {
    grid-column: auto;
  }

  .about03-leader-grid img,
  .about03-leader-grid article:not(.leader-feature) img {
    aspect-ratio: auto;
    max-height: none;
    min-height: 430px;
  }

  .leadership-brand {
    margin-bottom: 28px;
  }

  .leadership-concept-heading h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .structure-concept-heading {
    align-items: flex-start;
    gap: 14px;
  }

  .structure-concept-heading > span {
    font-size: 64px;
  }

  .about03-hero-media {
    height: 260px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  }

  .about03-values article {
    padding: 14px 0;
  }

  .leader-meta {
    min-height: 104px;
    padding: 16px 18px 18px;
  }

  .leader-meta strong,
  .leader-meta span {
    max-width: none;
  }

  .leader-meta strong {
    font-size: 16px;
  }

  .about03-section {
    padding: 48px 16px;
  }

  .about03-section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about03-section-bar h2 {
    display: grid;
    gap: 6px;
  }

  .about03-org-chart {
    min-height: 0;
    padding: 24px 16px;
  }

  .about03-org-chart::after,
  .org-spine,
  .org-departments::before {
    display: none;
  }

  .org-root-node {
    width: 100%;
    margin-bottom: 24px;
  }

  .org-departments {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .org-departments article {
    gap: 10px;
    padding-left: 18px;
  }

  .org-departments article::before {
    left: 0;
    top: 0;
    height: 100%;
  }

  .org-departments article div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .org-departments article div::before {
    display: none;
  }

  .about03-timeline {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .about03-timeline article {
    min-height: 0;
    border-left: 1px solid oklch(77% 0.08 8 / 0.5);
  }

  .about03-timeline article::before {
    right: auto;
    width: 1px;
    height: calc(100% + 18px);
  }

  .about03-honor-grid article {
    min-height: 180px;
  }
}

.visual-edit-mode [data-editor-media] {
  pointer-events: auto !important;
  animation: none !important;
  transition: none !important;
  cursor: pointer;
  outline: 2px dashed oklch(74% 0.13 155 / 0.72);
  outline-offset: -2px;
}

.visual-edit-mode [data-editor-media] img,
.visual-edit-mode [data-editor-media] video {
  pointer-events: auto !important;
  animation: none !important;
  transition: none !important;
}

.visual-edit-mode [data-canvas-element],
.visual-edit-mode .editor-free-element {
  cursor: move;
  outline: 1px dashed oklch(61% 0.18 28 / 0.78);
  outline-offset: 2px;
  touch-action: none;
}

.visual-edit-mode .editor-element-selected {
  outline: 2px solid oklch(61% 0.18 28);
}

.guanchi-position-label {
  position: absolute;
  z-index: 10000;
  pointer-events: none;
  padding: 3px 7px;
  border-radius: 4px;
  color: #fff;
  background: oklch(32% 0.12 250 / 0.92);
  box-shadow: 0 6px 16px oklch(18% 0.018 250 / 0.2);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.guanchi-position-label[data-position-kind="media"] {
  background: oklch(45% 0.19 28 / 0.94);
}

.guanchi-position-label[data-position-kind="text"] {
  background: oklch(38% 0.12 155 / 0.94);
}

.visual-edit-mode .editor-free-text {
  min-height: 32px;
  padding: 6px 8px;
  color: oklch(18% 0.012 32);
  background: oklch(99% 0.005 32 / 0.92);
}

.visual-edit-mode .editor-free-image {
  display: block;
  object-fit: cover;
}

.visual-edit-mode .editor-free-video {
  display: block;
  object-fit: cover;
}

.guanchi-element-overlay {
  position: absolute;
  z-index: 9999;
  pointer-events: none;
  border: 1px solid oklch(61% 0.18 28);
  box-shadow: 0 0 0 1px oklch(99% 0.005 32 / 0.82);
}

.guanchi-element-overlay [data-editor-position-id] {
  position: absolute;
  left: 0;
  top: -30px;
  max-width: min(360px, 78vw);
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 7px;
  border-radius: 4px;
  color: #fff;
  background: oklch(45% 0.19 28 / 0.96);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
}

.guanchi-element-overlay button {
  position: absolute;
  top: -30px;
  right: 0;
  min-height: 24px;
  border: 0;
  border-radius: 4px;
  padding: 0 8px;
  color: oklch(99% 0.005 32);
  background: oklch(48% 0.18 28);
  font: 700 12px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  pointer-events: auto;
  cursor: pointer;
}

.guanchi-element-overlay [data-move-handle],
.guanchi-element-overlay [data-resize-handle] {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid oklch(99% 0.005 32);
  border-radius: 50%;
  background: oklch(61% 0.18 28);
  pointer-events: auto;
}

.guanchi-element-overlay [data-move-handle] {
  left: -11px;
  top: -11px;
  cursor: move;
}

.guanchi-element-overlay [data-resize-handle] {
  right: -11px;
  bottom: -11px;
  cursor: nwse-resize;
}

.guanchi-element-overlay.is-media-position [data-move-handle],
.guanchi-element-overlay.is-media-position [data-resize-handle],
.guanchi-element-overlay:not(.can-transform-position) [data-move-handle],
.guanchi-element-overlay:not(.can-transform-position) [data-resize-handle] {
  display: none;
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(180deg, oklch(98% 0.008 345), oklch(96% 0.012 345));
  }

  .site-header,
  .factory-overview-page .site-header,
  .factory-page .site-header,
  .about03-page .site-header {
    inset: 8px 8px auto;
    display: grid;
    grid-template-columns: minmax(104px, 1fr) auto auto;
    column-gap: 7px;
    row-gap: 8px;
    padding: 9px;
    border: 1px solid oklch(83% 0.032 8);
    border-radius: 8px;
    background: oklch(99% 0.006 345 / 0.98);
    box-shadow: 0 12px 32px oklch(38% 0.05 8 / 0.12);
    overflow: hidden;
  }

  .site-header .brand,
  .about03-page .brand {
    order: 1;
    grid-column: 1;
    min-width: 0;
    gap: 6px;
    overflow: hidden;
  }

  .brand-mark,
  .about03-page .brand-mark {
    width: 28px;
    height: 20px;
  }

  .brand strong,
  .about03-page .brand strong {
    font-size: 13px;
  }

  .language-switch,
  .about03-page .language-switch {
    order: 2;
    grid-column: 2;
    justify-self: end;
    max-width: none;
    overflow: visible;
    padding: 2px;
  }

  .lang-button[data-lang="ja"],
  .about03-page .lang-button[data-lang="ja"] {
    font-size: 0;
  }

  .lang-button[data-lang="ja"]::after,
  .about03-page .lang-button[data-lang="ja"]::after {
    content: "JP";
    font-size: 10px;
  }

  .header-cta,
  .about03-page .header-cta {
    order: 3;
    grid-column: 3;
    grid-row: auto;
    align-self: center;
    justify-self: end;
    width: auto;
    min-width: 0;
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .nav,
  .about03-page .nav {
    order: 4;
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    max-width: 100%;
    min-height: 28px;
    padding: 1px 0 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    font-size: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar,
  .about03-page .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a,
  .about03-page .nav a {
    flex: 0 0 auto;
    padding: 6px 2px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 28px;
  }

  .hero::before,
  .hero-cover {
    inset: 132px 8px auto;
    height: 520px;
  }

  .hero::after {
    inset: 148px 16px auto;
    height: 480px;
  }

  .hero-interface {
    min-height: 510px;
  }

  .hero h1 {
    max-width: 9.8em;
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(24px, 7.4vw, 32px);
    line-height: 1.08;
  }

  .story-panels,
  .solutions,
  .network-section,
  .contact,
  .factory-card-section,
  .factory-body,
  .factory-environment {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .story-panel {
    padding-bottom: 48px;
  }

  .workflow-media,
  .exploded-board,
  .map-card,
  .factory-map-stage {
    min-height: 230px;
  }

  .factory-overview-hero {
    padding-top: 154px;
  }

  .factory-list-card {
    border-radius: 8px;
  }

  .factory-list-card a {
    grid-template-rows: 170px 1fr;
  }

  .factory-list-card div {
    padding: 15px;
  }

  .factory-list-card h2 {
    font-size: 17px;
  }

  .factory-hero {
    padding-top: 146px;
  }

  .factory-hero-media {
    height: 220px;
  }

  .factory-hero-grid {
    padding: 22px 16px 30px;
    gap: 18px;
  }

  .factory-hero-grid h1 {
    font-size: clamp(32px, 9.4vw, 42px);
    line-height: 1.08;
  }

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

  .factory-summary div,
  .factory-profile-stats article {
    min-height: 82px;
    padding: 14px;
  }

  .factory-summary dd {
    font-size: 20px;
  }

  .factory-profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .factory-profile-stats strong {
    font-size: clamp(21px, 6vw, 28px);
  }

  .factory-carousel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .factory-carousel article {
    min-height: 190px;
  }

  .factory-nav-band {
    gap: 8px;
    padding: 22px 16px;
  }

  .factory-nav-band a {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 11px;
  }

  .about03-video-hero,
  .about03-hero {
    padding-top: 154px;
  }

  .about03-video-hero h1 {
    max-width: 8.5em;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.06;
  }

  .about03-section {
    padding: 44px 16px;
  }

  .about03-leader-grid article,
  .about03-leader-grid article.leader-feature {
    border-radius: 8px;
  }

  .about03-leader-grid img,
  .about03-leader-grid article:not(.leader-feature) img {
    aspect-ratio: auto;
    max-height: none;
    min-height: 360px;
  }

  .about03-org-chart {
    padding: 18px 12px;
    border-radius: 8px;
  }

  .org-root-node {
    margin-bottom: 16px;
  }

  .org-departments article {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid oklch(82% 0.04 8 / 0.72);
    border-radius: 8px;
    background: oklch(99% 0.006 345);
  }

  .org-departments article::before {
    display: none;
  }

  .org-departments article strong,
  .org-departments span {
    min-height: 0;
    padding: 10px 12px;
    font-size: 12px;
  }

  .org-departments article strong {
    color: oklch(98% 0.006 345);
    background: var(--brand);
  }

  .org-departments article div {
    display: grid;
    gap: 8px;
  }

  .about03-honor-grid article {
    min-height: 150px;
  }

  .contact {
    gap: 18px;
  }

  .contact-copy {
    padding-top: 38px;
  }

  .contact-options span,
  .contact-options a {
    min-height: 31px;
    padding: 0 10px;
    font-size: 11px;
  }

  .inquiry-form {
    border-radius: 8px;
    box-shadow: 0 18px 44px oklch(37% 0.05 8 / 0.12);
  }
}

@media (max-width: 720px) {
  .story-copy,
  .network-copy,
  .contact-copy,
  .factory-overview-copy,
  .factory-hero-copy,
  .about03-section-title,
  .about03-hero-copy {
    max-width: 100%;
  }

  .story-copy p,
  .network-copy p,
  .contact-copy p,
  .factory-hero-copy p,
  .about03-section-title p {
    font-size: 14px;
    line-height: 1.72;
  }

  .map-card {
    display: grid;
    gap: 8px;
    min-height: 0;
    padding: 12px;
    overflow: visible;
  }

  .map-card img {
    width: 100%;
    height: 190px;
    padding: 12px;
    border: 1px solid oklch(86% 0.028 8);
    border-radius: 8px;
    background: oklch(99% 0.006 345);
    object-fit: contain;
    opacity: 0.72;
  }

  .factory-node {
    position: static;
    min-height: 34px;
    justify-content: flex-start;
    padding: 0 11px;
    border-radius: 8px;
    background: oklch(99% 0.006 345);
    box-shadow: none;
  }

  .factory-node::before {
    flex: 0 0 auto;
  }

  .quality-lab-grid article,
  .quality-lab-grid article:first-child,
  .application-ribbon article {
    min-height: 185px;
  }

  .factory-hero-media {
    height: 200px;
    margin-inline: 0;
    border-radius: 0;
  }

  .factory-summary dl,
  .factory-profile-stats {
    gap: 8px;
  }

  .factory-summary div,
  .factory-profile-stats article {
    padding: 12px;
  }

  .factory-carousel article {
    min-height: 176px;
  }

  .about03-leader-grid img,
  .about03-leader-grid article:not(.leader-feature) img {
    aspect-ratio: auto;
    max-height: none;
    min-height: 320px;
  }

  .leader-meta {
    padding: 13px 14px;
  }

  .about03-org-chart {
    background: oklch(99% 0.006 345);
  }

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

  .contact-options a {
    grid-column: 1 / -1;
  }

  .inquiry-form {
    gap: 10px;
    padding: 14px;
  }

  .inquiry-form input,
  .inquiry-form select {
    min-height: 38px;
  }

  .inquiry-form textarea {
    min-height: 108px;
  }
}

@media (max-width: 1120px) {
  .about03-video-hero {
    min-height: 760px;
    padding: 150px clamp(22px, 6vw, 64px) 72px;
    align-items: end;
  }

  .about03-video-hero h1 {
    max-width: 820px;
    font-size: clamp(52px, 10vw, 108px);
    line-height: 0.98;
  }

  .about03-structure .about03-org-chart {
    padding: 38px 24px 44px;
  }

  .about03-structure .org-root-node {
    width: min(340px, 70vw);
    margin-bottom: 72px;
  }

  .about03-structure .org-spine,
  .about03-structure .org-departments::before {
    display: none;
  }

  .about03-structure .org-departments {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 24px 16px;
  }

  .about03-structure .org-departments article::before,
  .about03-structure .org-departments article div::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .about03-video-hero {
    min-height: 680px;
    padding: 148px 18px 54px;
  }

  .about03-video-hero .about03-hero-copy {
    width: 100%;
  }

  .about03-video-hero .eyebrow {
    margin-bottom: 18px;
    padding-left: 48px;
  }

  .about03-video-hero .eyebrow::before {
    width: 34px;
  }

  .about03-video-hero h1 {
    max-width: 9em;
    font-size: clamp(42px, 12vw, 64px);
    line-height: 1;
  }

  .about03-hero-meta {
    margin-top: 24px;
  }

  .about03-hero-meta span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }

  .about03-hero-scroll {
    display: none;
  }

  .about03-structure .about03-org-chart {
    padding: 22px 14px;
  }

  .about03-structure .org-root-node {
    width: 100%;
    min-height: 70px;
    margin-bottom: 18px;
  }

  .about03-structure .org-departments {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about03-structure .org-departments article {
    gap: 10px;
    padding: 12px;
    border: 1px solid oklch(86% 0.035 8 / 0.82);
    border-radius: 8px;
    background: oklch(100% 0.006 345 / 0.78);
  }

  .about03-structure .org-departments article strong,
  .about03-structure .org-departments span {
    min-height: 0;
    padding: 12px;
  }

  .about03-structure .org-departments article strong {
    min-height: 58px;
  }

  .about03-structure .org-departments article div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .about03-video-hero {
    min-height: 620px;
    padding-bottom: 42px;
  }

  .about03-video-hero h1 {
    font-size: clamp(36px, 12.5vw, 52px);
  }
}

/* Audit fixes: stable headline measures and WCAG 2.2 touch targets. */
@media (min-width: 1181px) {
  .hero-copy { max-width: 700px; }
  .hero h1 { max-width: 12em; font-size: 60px; }
}

.site-header a,
.site-header button,
.button,
.factory-node,
.factory-side-list a,
.factory-detail-nav a,
.contact-options a,
.contact-options span,
.lang-button,
.nav-toggle,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.inquiry-form button { min-height: 44px; }

.site-header a,
.factory-node,
.factory-side-list a,
.factory-detail-nav a,
.contact-options a,
.contact-options span {
  display: inline-flex;
  align-items: center;
}

.lang-button,
.nav-toggle { min-width: 44px; }

.site-header a,
.map-pin,
.factory-nav-band a,
.about03-hero-scroll,
.site-footer a {
  min-width: 44px;
  min-height: 44px;
}

.map-pin,
.factory-nav-band a,
.about03-hero-scroll,
.site-footer a {
  display: inline-flex;
  align-items: center;
}

.story-copy h2,
.network-copy h2,
.factory-hero-copy h1,
.about03-hero-copy h1 { overflow-wrap: break-word; }

.hero-actions .button,
.about03-page .lang-button,
.about03-page .header-cta { min-height: 44px; }
