:root {
  --ink: #f3f8fb;
  --muted: #9eb2bc;
  --bg: #071017;
  --bg-soft: #0c1821;
  --panel: #10222c;
  --line: rgba(177, 218, 228, 0.16);
  --cyan: #72d6f5;
  --cyan-strong: #25b8e8;
  --mint: #91e7ce;
  --logo-blue: #4c6971;
  --max: 1760px;
  --header-h: 82px;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.desktop-section-paging { overscroll-behavior-y: none; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 5%, rgba(37, 184, 232, 0.11), transparent 28rem),
    var(--bg);
  font-family: "Noto Sans KR", "Pretendard", "Malgun Gothic", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #03131b;
  background: var(--cyan);
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(7, 16, 23, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 16, 23, 0.94);
}

.nav-shell {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-logo {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 222px;
  height: 42px;
  overflow: hidden;
}

.brand-logo img {
  position: absolute;
  width: 277px;
  max-width: none;
  left: -28px;
  top: -118px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.language-toggle span {
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #7f949d;
  font: 700 0.72rem "Electrical Safety", "Malgun Gothic", sans-serif;
  text-align: center;
}

.language-toggle .lang-active { color: #03131b; background: var(--cyan); }

.primary-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 570px;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav li { flex: 1; }

.primary-nav a {
  display: block;
  padding: 11px 15px;
  border-radius: 999px;
  color: #c8d6dc;
  font-size: 0.94rem;
  font-weight: 600;
  text-align: center;
  transition: color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(114, 214, 245, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease;
}

@media (max-width: 1299px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    padding: 24px 20px 34px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 16, 23, 0.98);
    transform: none;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { min-width: 0; flex-direction: column; align-items: stretch; }
  .primary-nav li { flex: none; }
  .primary-nav a { padding: 14px 12px; text-align: center; }
}

.container { width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max)); margin: 0 auto; }
.section { padding: 126px 0; }
.section.compact { padding: 94px 0; }
.section-dark { background: #050c11; }
.section-line { border-top: 1px solid var(--line); }

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font: 700 0.78rem/1.2 "Electrical Safety", "Malgun Gothic", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.2; letter-spacing: -0.035em; }
h1 { margin-bottom: 22px; font-size: clamp(2.5rem, 5vw, 5.2rem); }
h2 { margin-bottom: 18px; font-size: clamp(1.35rem, 1.8vw, 2.1rem); }
h3 { margin-bottom: 10px; font-size: clamp(0.98rem, 1.15vw, 1.2rem); }

.lead {
  max-width: 900px;
  margin-bottom: 0;
  color: #b8c8cf;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(36px, 5vw, 84px);
  margin-bottom: 42px;
}

.section-head > * { margin-bottom: 0; }
.section-head .lead { justify-self: end; }

.page-hero {
  min-height: max(680px, calc(100vh - var(--header-h)));
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.page-hero::before {
  width: 570px;
  height: 570px;
  right: -170px;
  top: -120px;
  border: 1px solid rgba(114, 214, 245, 0.18);
  box-shadow: 0 0 0 88px rgba(114, 214, 245, 0.025), 0 0 0 176px rgba(145, 231, 206, 0.018);
}

.page-hero::after {
  width: 560px;
  height: 170px;
  right: 4vw;
  bottom: 8%;
  opacity: 0.45;
  background: repeating-linear-gradient(100deg, transparent 0 18px, rgba(114, 214, 245, 0.28) 19px 20px, transparent 21px 33px);
  transform: skewX(-14deg);
  filter: blur(0.2px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 84px 0 96px;
}

.hero-copy {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  column-gap: clamp(46px, 6vw, 100px);
  align-items: end;
}
.hero-copy .eyebrow { grid-column: 1 / -1; }
.hero-copy h1 { grid-column: 1; grid-row: 2 / span 2; max-width: 1060px; margin-bottom: 0; }
.hero-copy .lead { grid-column: 2; max-width: 620px; }
.hero-copy .hero-actions { grid-column: 2; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbe8ed;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button.primary { color: #00151e; border-color: var(--cyan); background: var(--cyan); }
.button:hover { transform: translateY(-2px); border-color: rgba(114, 214, 245, 0.6); }
.button.primary:hover { background: #96e3f8; }

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.fact-item { padding: 28px; background: var(--bg-soft); }
.fact-value {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font: 700 clamp(1.45rem, 2.8vw, 2.3rem)/1 "Electrical Safety", "Malgun Gothic", sans-serif;
}
.fact-label { color: var(--muted); font-size: 0.9rem; }

.narrative {
  max-width: none;
  color: #c2d0d6;
  font-size: clamp(0.82rem, 0.88vw, 0.94rem);
}

.narrative p { margin-bottom: 18px; }
.narrative strong { color: #fff; font-weight: 700; }

.story-panel {
  position: relative;
  min-height: clamp(760px, 88vh, 980px);
  overflow: hidden;
  background-color: #0a1820;
  background-image:
    linear-gradient(120deg, rgba(2, 8, 12, 0.4), rgba(2, 8, 12, 0.08) 58%, rgba(2, 8, 12, 0.28)),
    var(--story-image),
    radial-gradient(circle at 70% 40%, rgba(37, 184, 232, 0.2), transparent 48%);
  background-size: cover;
  background-position: center;
}

.story-panel-no-image {
  background-image:
    radial-gradient(circle at 76% 34%, rgba(37, 184, 232, 0.18), transparent 38%),
    linear-gradient(135deg, #08151d, #0b2733 56%, #071017);
}

.story-layout {
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 92px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(48px, 8vw, 140px);
}

.story-heading {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  max-width: 470px;
  padding: 22px 24px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(2px);
}

.story-heading h2 { margin: 0; }

.story-copy {
  grid-column: 2;
  grid-row: 3;
  justify-self: end;
  align-self: end;
  width: min(100%, 720px);
  margin: 0;
  padding: 28px 30px;
  color: #eef4f6;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(4px);
}

.story-copy p:last-child { margin-bottom: 0; }

.representative-message-section {
  min-height: 680px;
  display: grid;
  align-items: center;
  background: #050d12;
}

.representative-message-layout {
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: center;
}

.representative-message-heading { align-self: start; padding-top: 24px; }
.representative-message-heading h2 { margin-bottom: 0; }
.representative-message-placeholder {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(114, 214, 245, 0.24);
  color: #8298a1;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 184, 232, 0.12), transparent 38%),
    linear-gradient(135deg, #07131a, #0a222c 68%, #071017);
}
.representative-message-placeholder::before,
.representative-message-placeholder::after,
.representative-message-placeholder > span {
  content: "";
  position: absolute;
  border: 1px solid rgba(114, 214, 245, 0.44);
}
.representative-message-placeholder::before { width: 190px; height: 190px; border-radius: 50%; }
.representative-message-placeholder::after { width: 290px; height: 120px; transform: rotate(-18deg); }
.representative-message-placeholder > span { width: 90px; height: 250px; transform: rotate(28deg); }
.representative-message-placeholder p { position: relative; z-index: 1; margin: 240px 0 0; font-size: 0.8rem; letter-spacing: 0.12em; }

.story-packages {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  gap: 12px;
}

.story-packages .package-card {
  min-height: 0;
  padding: 20px 22px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.story-packages .package-card .index { margin-bottom: 16px; }
.story-packages .package-card p { font-size: 0.8rem; color: #dbe5e9; }

.solution-explorer {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  min-height: clamp(500px, 64vh, 680px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 270px);
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 1px solid rgba(114, 214, 245, 0.24);
  background-color: #07131a;
  background-image:
    radial-gradient(circle at 36% 42%, rgba(37, 184, 232, 0.11), transparent 27rem),
    linear-gradient(135deg, #061118, #0a222c 70%, #071017);
}

.solution-tabs {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  border-left: 1px solid rgba(114, 214, 245, 0.28);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(5px);
}

.solution-tabs button {
  min-height: 84px;
  padding: 17px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: #9fb2ba;
  background: transparent;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: left;
  transition: border-color 180ms ease;
}

.solution-tabs button:last-child { border-bottom: 0; }
.solution-tabs button span { margin-right: 12px; color: var(--cyan); font: 700 0.72rem "Electrical Safety", "Malgun Gothic", sans-serif; }
.solution-tabs button[aria-selected="true"] {
  border-color: rgba(114, 214, 245, 0.88);
}

.solution-placeholder {
  position: relative;
  z-index: 0;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: clamp(190px, 27vw, 360px);
  aspect-ratio: 1.3;
  opacity: 0.72;
  pointer-events: none;
}

.solution-placeholder span {
  position: absolute;
  display: block;
  border: 1px solid rgba(114, 214, 245, 0.72);
  box-shadow: 0 0 28px rgba(37, 184, 232, 0.08);
  transition: inset 260ms ease, width 260ms ease, height 260ms ease, border-radius 260ms ease, transform 260ms ease, opacity 260ms ease;
}

.solution-explorer[data-active-panel="hardware"] .solution-placeholder span:nth-child(1),
.evidence-explorer[data-active-panel="mvp"] .solution-placeholder span:nth-child(1) { inset: 14% 10% 20% 16%; border-radius: 12px; }
.solution-explorer[data-active-panel="hardware"] .solution-placeholder span:nth-child(2),
.evidence-explorer[data-active-panel="mvp"] .solution-placeholder span:nth-child(2) { width: 36%; aspect-ratio: 1; top: 24%; left: 34%; border-radius: 50%; }
.solution-explorer[data-active-panel="hardware"] .solution-placeholder span:nth-child(3),
.evidence-explorer[data-active-panel="mvp"] .solution-placeholder span:nth-child(3) { width: 64%; height: 0; top: 50%; left: 18%; transform: rotate(-18deg); }

.solution-explorer[data-active-panel="database"] .solution-placeholder span,
.evidence-explorer[data-active-panel="remote"] .solution-placeholder span { width: 27%; aspect-ratio: 1; top: 34%; border-radius: 8px; transform: rotate(45deg); }
.solution-explorer[data-active-panel="database"] .solution-placeholder span:nth-child(1),
.evidence-explorer[data-active-panel="remote"] .solution-placeholder span:nth-child(1) { left: 3%; }
.solution-explorer[data-active-panel="database"] .solution-placeholder span:nth-child(2),
.evidence-explorer[data-active-panel="remote"] .solution-placeholder span:nth-child(2) { left: 36.5%; }
.solution-explorer[data-active-panel="database"] .solution-placeholder span:nth-child(3),
.evidence-explorer[data-active-panel="remote"] .solution-placeholder span:nth-child(3) { left: 70%; }

.solution-explorer[data-active-panel="software"] .solution-placeholder span,
.evidence-explorer[data-active-panel="ip"] .solution-placeholder span { left: 50%; top: 50%; border-radius: 50%; transform: translate(-50%, -50%); }
.solution-explorer[data-active-panel="software"] .solution-placeholder span:nth-child(1),
.evidence-explorer[data-active-panel="ip"] .solution-placeholder span:nth-child(1) { width: 82%; aspect-ratio: 1; }
.solution-explorer[data-active-panel="software"] .solution-placeholder span:nth-child(2),
.evidence-explorer[data-active-panel="ip"] .solution-placeholder span:nth-child(2) { width: 54%; aspect-ratio: 1; }
.solution-explorer[data-active-panel="software"] .solution-placeholder span:nth-child(3),
.evidence-explorer[data-active-panel="ip"] .solution-placeholder span:nth-child(3) { width: 22%; aspect-ratio: 1; background: rgba(114, 214, 245, 0.12); }

.solution-details {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  min-height: 190px;
  padding: clamp(30px, 4vw, 54px);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.5) 72%, transparent);
}

.solution-details article { max-width: 880px; }
.solution-details h3 { margin-bottom: 8px; }
.solution-details p { margin: 0; color: #d8e3e7; font-size: 0.84rem; }
[hidden] { display: none !important; }

.section.section-line > .container {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  column-gap: clamp(46px, 7vw, 120px);
  align-items: start;
}
.section.section-line > .container > .eyebrow,
.section.section-line > .container > h2 { grid-column: 1; }
.section.section-line > .container > .narrative { grid-column: 2; grid-row: 1 / span 2; }

.package-grid,
.product-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card,
.product-card,
.proof-card,
.contact-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(18, 43, 55, 0.88), rgba(8, 21, 29, 0.88));
}

.package-card .index,
.product-card .index {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(114, 214, 245, 0.28);
  border-radius: 50%;
  color: var(--cyan);
  font: 700 0.78rem "Electrical Safety", "Malgun Gothic", sans-serif;
}

.package-card p,
.product-card p,
.proof-card p,
.contact-card p { margin-bottom: 0; color: var(--muted); font-size: 0.84rem; }

.business-fields-section { background: #071017; }
.field-section-head { margin-bottom: 0; padding: 118px 0 64px; }
.field-grid { display: block; }
.field-panel {
  position: relative;
  min-height: clamp(620px, 78vh, 880px);
  overflow: hidden;
  background-color: #0b1a23;
  background-image:
    var(--field-image),
    radial-gradient(circle at 70% 40%, rgba(37, 184, 232, 0.2), transparent 45%);
  background-size: cover;
  background-position: var(--field-position, center);
}

.field-panel::after { display: none; }

.field-copy {
  position: relative;
  z-index: 2;
  width: min(38%, 560px);
  min-height: clamp(620px, 78vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 76px);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.38));
  backdrop-filter: blur(3px);
}

.field-copy .field-number {
  margin-bottom: 78px;
  color: var(--cyan);
  font: 700 0.78rem "Electrical Safety", "Malgun Gothic", sans-serif;
  letter-spacing: 0.14em;
}

.field-copy h3 { font-size: clamp(1.7rem, 2.5vw, 2.65rem); }
.field-copy p { margin: 0; color: #e2e9ec; font-size: 0.84rem; }
.field-note { display: inline-block; margin-top: 20px; color: var(--mint); font-size: 0.88rem; font-weight: 700; }
.field-link {
  align-self: flex-start;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 25px;
  border: 2px solid rgba(114, 214, 245, 0.92);
  color: #fff;
  background: rgba(3, 16, 23, 0.66);
  box-shadow: 0 0 0 1px rgba(114, 214, 245, 0.18), 0 10px 28px rgba(0, 0, 0, 0.32);
  font-size: 0.9rem;
}
.field-link:hover { border-color: #fff; background: rgba(37, 184, 232, 0.24); }

.subhero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 110px 0 96px;
  border-bottom: 0;
  background-color: #07131a;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.56)),
    var(--subhero-image, linear-gradient(135deg, #07131a, #0b2733));
  background-size: cover;
  background-position: center;
}
.subhero-empty {
  background-image: linear-gradient(135deg, #071017, #0a202a 62%, #071017);
}
.subhero .container { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr); column-gap: clamp(46px, 6vw, 100px); align-items: end; }
.subhero .eyebrow { grid-column: 1 / -1; }
.subhero h1 { grid-column: 1; max-width: 1180px; margin-bottom: 0; font-size: clamp(2.35rem, 4.5vw, 4.7rem); }
.subhero .lead { grid-column: 2; }
.products-page .subhero h1,
.products-page .subhero .lead { grid-column: 1; }
.products-page .subhero .lead { max-width: 940px; margin-top: 28px; }

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(38px, 5vw, 82px);
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(114, 214, 245, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 87% 20%, rgba(37, 184, 232, 0.2), transparent 26rem),
    linear-gradient(145deg, #102934, #08161e 70%);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 7px 12px;
  border: 1px solid rgba(145, 231, 206, 0.24);
  border-radius: 999px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
}

.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.featured-product p { color: #bdcbd1; font-size: 0.86rem; }
.featured-product + .featured-product { margin-top: 30px; }
.featured-product[id] { scroll-margin-top: calc(var(--header-h) + 22px); }
.product-showcases { background: #050d12; }
.product-showcase {
  position: relative;
  min-height: max(820px, calc(100vh - var(--header-h)));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  scroll-margin-top: var(--header-h);
  background-color: #0b1a23;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 48%, rgba(0, 0, 0, 0.08)),
    var(--product-image);
  background-size: cover;
  background-position: var(--product-position, center);
}
.product-showcase-copy {
  position: relative;
  z-index: 1;
  width: min(42%, 680px);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 86px);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.68));
  backdrop-filter: blur(3px);
}
.product-showcase-right { justify-content: flex-end; }
.product-showcase-right .product-showcase-copy { background: linear-gradient(270deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.68)); }
.product-photo-placeholder {
  position: absolute;
  z-index: 0;
  left: 21%;
  top: 50%;
  width: min(28vw, 430px);
  aspect-ratio: 1.35;
  display: grid;
  place-items: center;
  border: 1px solid rgba(114, 214, 245, 0.32);
  color: #77909a;
  transform: translate(-50%, -50%);
}
.product-photo-placeholder::before,
.product-photo-placeholder::after,
.product-photo-placeholder span {
  content: "";
  position: absolute;
  border: 1px solid rgba(114, 214, 245, 0.5);
}
.product-photo-placeholder::before { inset: 16%; }
.product-photo-placeholder::after { width: 42%; aspect-ratio: 1; border-radius: 50%; }
.product-photo-placeholder span { width: 68%; height: 0; transform: rotate(-18deg); }
.product-photo-placeholder p { position: absolute; bottom: 18px; margin: 0; font: 700 0.7rem "Electrical Safety", "Malgun Gothic", sans-serif; letter-spacing: 0.14em; }
.product-showcase-copy .status { align-self: flex-start; }
.product-showcase-copy h2 { font-size: clamp(1.8rem, 2.8vw, 3.15rem); }
.product-showcase-copy > p:not(.eyebrow):not(.spec-note) { color: #d2dde1; font-size: 0.86rem; }
.showcase-spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }
.showcase-spec-grid .spec { padding: 15px 16px; background: rgba(3, 14, 20, 0.58); }
.showcase-spec-grid .spec strong { font-size: 1.04rem; }
.product-showcase-copy .spec-note { margin: 14px 0 0; color: #93a7af; }
.long-term-projects .section-head { margin-bottom: 46px; }
.project-inquiry .container,
.collaboration-closing .container { display: flex; flex-direction: column; align-items: flex-start; }
.project-inquiry h2,
.collaboration-closing h2 { max-width: 920px; margin-bottom: 0; }
.project-inquiry h2 span,
.collaboration-closing h2 span { display: block; }
.project-inquiry .hero-actions,
.collaboration-closing .hero-actions { margin-top: 28px; }

.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; align-content: start; }
.spec {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
}
.spec strong { display: block; margin-bottom: 3px; color: #fff; font: 700 1.3rem "Electrical Safety", "Malgun Gothic", sans-serif; }
.spec span { color: var(--muted); font-size: 0.82rem; }
.spec-note { grid-column: 1 / -1; margin-top: 5px; color: #8299a4; font-size: 0.78rem; }

.product-grid { grid-template-columns: repeat(3, 1fr); }
.roadmap-grid { grid-template-columns: repeat(2, 1fr); }
#long-term-projects { scroll-margin-top: var(--header-h); }
.product-card[id] { scroll-margin-top: calc(var(--header-h) + 22px); }
.product-card { min-height: 280px; }
.product-card { position: relative; }
.product-card .status { position: absolute; top: 28px; right: 28px; margin-bottom: 0; }
.product-card .index { margin-bottom: 26px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-item { padding: 24px; border-top: 1px solid var(--cyan); background: rgba(255, 255, 255, 0.025); }
.process-item b { display: block; margin-bottom: 38px; color: var(--cyan); font: 700 0.82rem "Electrical Safety", "Malgun Gothic", sans-serif; }
.process-item p { margin: 0; color: var(--muted); font-size: 0.91rem; }

.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-card { min-height: 270px; }
.proof-card strong { display: block; margin: 38px 0 12px; color: #fff; font: 700 clamp(1.35rem, 1.8vw, 1.8rem) "Electrical Safety", "Malgun Gothic", sans-serif; }
.evidence-explorer {
  grid-column: auto;
  grid-row: auto;
  min-height: clamp(650px, 76vh, 820px);
  margin-top: 44px;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
.evidence-explorer .solution-tabs {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 900px);
  grid-template-columns: repeat(3, 1fr);
  align-content: stretch;
  justify-self: center;
  border-top: 0;
  border-right: 1px solid rgba(114, 214, 245, 0.28);
  border-bottom: 1px solid rgba(114, 214, 245, 0.28);
  border-left: 1px solid rgba(114, 214, 245, 0.28);
}
.evidence-explorer .solution-tabs button { border-right: 1px solid var(--line); border-bottom: 0; text-align: center; }
.evidence-explorer .solution-tabs button:last-child { border-right: 0; }
.evidence-explorer .solution-placeholder { grid-column: 1; grid-row: 2; }
.evidence-explorer .solution-details { grid-column: 1; grid-row: 2; width: min(76%, 920px); }
.evidence-details strong { display: block; margin: 12px 0; color: #fff; font: 700 clamp(1.6rem, 2.4vw, 2.5rem) "Electrical Safety", "Malgun Gothic", sans-serif; }
.evidence-details .eyebrow { margin-bottom: 10px; }

.history-section {
  background-color: #071017;
  background-image: none;
}
.history-section .section-head { padding: 22px 0; background: transparent; }
.history-section .timeline {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.timeline { border-top: 1px solid var(--line); }
.timeline-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-row time { color: var(--cyan); font: 700 0.92rem "Electrical Safety", "Malgun Gothic", sans-serif; }
.timeline-row p { margin: 0; color: #c4d1d7; font-size: 0.86rem; }

.partner-static {
  display: flex;
  justify-content: flex-start;
  margin-top: 46px;
  padding: 16px 0 26px;
}
.partner-card {
  width: 290px;
  height: 182px;
  display: grid;
  place-items: center;
  margin-right: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7fafb;
}
.partner-card img { max-width: 210px; max-height: 105px; object-fit: contain; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: start;
}

.contact-split-stage { min-height: calc(100vh - var(--header-h)); background: #03090d; }
.contact-split-grid { min-height: inherit; display: grid; grid-template-columns: 1fr 1fr; }
.contact-company-side,
.contact-form-side { min-width: 0; display: grid; align-items: center; padding: clamp(72px, 7vw, 128px) clamp(34px, 6vw, 110px); }
.contact-company-side { background: #03090d; }
.contact-company-panel { width: min(100%, 700px); margin: 0 auto; }
.contact-company-panel .lead { max-width: 640px; }
.contact-company-panel .contact-list { width: min(100%, 680px); }
.contact-form-side {
  background-color: #07131a;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.64)),
    var(--contact-form-image, none);
  background-size: cover;
  background-position: center;
}
.contact-form-side .contact-form {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(3, 12, 17, 0.68);
  backdrop-filter: blur(5px);
}

.contact-list { margin: 42px 0 0; }
.contact-row {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row dt { color: #7f949e; font-size: 0.88rem; }
.contact-row dd { min-height: 1.65em; margin: 0; color: #e7f0f3; }
.contact-row a:hover { color: var(--cyan); }

.contact-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--bg-soft);
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #a9bbc3; font-size: 0.86rem; }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: #fff;
  background: #07131a;
  transition: border-color 160ms ease;
}
.field input { height: 50px; padding: 0 15px; }
.field textarea { min-height: 150px; padding: 14px 15px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--cyan); }

.inquiry-type-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.inquiry-type-field legend {
  margin-bottom: 8px;
  padding: 0;
  color: #a9bbc3;
  font-size: 0.86rem;
}

.inquiry-type-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.inquiry-type-option {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.inquiry-type-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.inquiry-type-option span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #b9cbd2;
  background: #07131a;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.inquiry-type-option input:checked + span {
  color: #00151e;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(114, 214, 245, 0.18);
}

.inquiry-type-option input:focus-visible + span {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .inquiry-type-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 18px; }
.form-actions button { cursor: pointer; }
.form-status { margin: 0; color: var(--mint); font-size: 0.86rem; }
.form-note { margin-top: 16px; color: #70858e; font-size: 0.78rem; }

.site-footer { padding: 44px 0; border-top: 1px solid var(--line); background: #050b0f; }
.footer-inner { position: relative; display: grid; grid-template-columns: 270px 1fr; align-items: end; gap: 36px; }
.footer-brand { position: relative; width: 245px; height: 46px; overflow: hidden; }
.footer-brand img { position: absolute; width: 306px; max-width: none; left: -31px; top: -131px; }
.footer-contact-cluster { justify-self: end; display: flex; align-items: center; gap: 20px; }
.footer-meta { justify-self: end; color: #768a93; font-size: 0.8rem; text-align: right; }
.footer-meta p { margin: 0; }
.footer-representative { margin-top: 7px !important; color: inherit; }
.footer-font-credit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(42vw, 520px);
  margin: 0 !important;
  color: rgba(157, 179, 188, 0.72);
  font-size: 0.62rem;
  line-height: 1.35;
  text-align: center;
  transform: translate(-50%, -50%);
}
.footer-socials { display: flex; flex: none; gap: 10px; }
.footer-instagram,
.footer-linkedin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.footer-instagram svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-linkedin span { font: 700 1rem/1 "Electrical Safety", "Malgun Gothic", sans-serif; letter-spacing: -0.04em; }
.footer-linkedin span { font-size: 1.05rem; }
.footer-instagram:hover,
.footer-linkedin:hover { color: #fff; border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }

.careers-subhero { min-height: 520px; }
.careers-stage { min-height: 760px; display: grid; align-items: center; padding: 96px clamp(20px, 5vw, 90px); background: #050d12; }
.careers-panel {
  width: min(100%, var(--max));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: center;
}
.careers-panel-heading { align-self: start; padding-top: 26px; }
.careers-index { display: block; margin-bottom: 22px; color: var(--cyan); font: 700 0.72rem "Electrical Safety", "Malgun Gothic", sans-serif; letter-spacing: 0.14em; }
.careers-placeholder {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px;
  border: 1px solid rgba(114, 214, 245, 0.24);
  text-align: center;
  background: linear-gradient(145deg, #07131a, #0b2430 72%, #071017);
}
.careers-placeholder > span { width: 96px; height: 96px; border: 1px solid rgba(114, 214, 245, 0.52); border-radius: 50%; box-shadow: 0 0 0 24px rgba(114, 214, 245, 0.035); }
.careers-placeholder p { margin: 0; color: #b8c8ce; font-size: 0.88rem; }

.contact-title,
.careers-title {
  margin: 0 0 clamp(34px, 5vw, 64px);
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.contact-company-panel .contact-title { margin-bottom: clamp(34px, 5vw, 64px); }

.integrated-stage {
  min-height: max(820px, calc(100vh - var(--header-h)));
  background-size: cover;
  background-position: center;
  transition: filter 320ms ease;
}

.solution-background-host { isolation: isolate; }
.solution-background-host::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: #061017;
  opacity: 0;
  transition: opacity 320ms ease;
}
.solution-background-host.is-switching::after { opacity: 0.28; }
.integrated-stage[data-active-panel="hardware"] {
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 28% 38%, rgba(114, 214, 245, 0.32), transparent 25%),
    linear-gradient(135deg, #061118, #0d303e 64%, #071017);
}
.integrated-stage[data-active-panel="database"] {
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.2) 56%, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 55% 42%, rgba(145, 231, 206, 0.24), transparent 28%),
    repeating-linear-gradient(90deg, rgba(114, 214, 245, 0.08) 0 1px, transparent 1px 96px),
    linear-gradient(145deg, #071017, #14312f 62%, #071017);
}
.integrated-stage[data-active-panel="software"] {
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 52% 40%, rgba(138, 160, 255, 0.22), transparent 25%),
    repeating-radial-gradient(circle at 52% 40%, rgba(114, 214, 245, 0.12) 0 1px, transparent 1px 52px),
    linear-gradient(135deg, #071017, #101d38 64%, #071017);
}
.integrated-stage .story-layout { position: relative; display: block; padding: clamp(54px, 6vw, 92px) 0; }
.integrated-stage .story-heading { position: absolute; z-index: 3; top: clamp(54px, 6vw, 92px); left: 0; }
.integrated-explorer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  grid-column: auto;
  grid-row: auto;
  align-self: auto;
  justify-self: auto;
  display: block;
  min-height: 0;
  overflow: visible;
  border: 0;
  background: none;
}
.integrated-explorer .solution-tabs {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 0;
  width: min(290px, 28vw);
  display: grid;
  gap: 10px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  transform: translateY(-50%);
}
.integrated-explorer .solution-tabs button {
  border: 1px solid rgba(114, 214, 245, 0.3);
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(5px);
}
.integrated-explorer .solution-tabs button[aria-selected="true"] {
  border-color: rgba(114, 214, 245, 0.9);
}
.integrated-explorer .solution-tabs button:last-child:not([aria-selected="true"]) { border: 1px solid rgba(114, 214, 245, 0.3); }
.integrated-explorer .solution-details {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: min(66%, 920px);
  min-height: 180px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 76%, transparent);
}

.evidence-stage {
  position: relative;
  min-height: clamp(700px, 76vh, 780px);
  overflow: hidden;
  background-color: #07131a;
  background-image:
    linear-gradient(110deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.48)),
    var(--solution-image, none);
  background-size: cover;
  background-position: center;
}
.evidence-stage[data-active-panel="ip"] {
  background-image:
    radial-gradient(circle at 64% 42%, rgba(114, 214, 245, 0.18), transparent 25%),
    repeating-radial-gradient(circle at 64% 42%, rgba(114, 214, 245, 0.11) 0 1px, transparent 1px 54px),
    linear-gradient(135deg, #061118, #0b2834 66%, #071017);
}
.evidence-stage-heading {
  position: absolute;
  z-index: 4;
  top: clamp(50px, 5vw, 82px);
  left: clamp(28px, 6vw, 110px);
}
.evidence-stage-heading h2 { margin: 0; }
.evidence-explorer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  grid-column: auto;
  grid-row: auto;
  align-self: auto;
  justify-self: auto;
  min-height: 0;
  margin: 0;
  display: block;
  overflow: visible;
  border: 0;
  background: none;
}
.evidence-explorer .solution-tabs {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(28px, 6vw, 110px);
  left: auto;
  width: min(290px, 28vw);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  backdrop-filter: none;
}
.evidence-explorer .solution-tabs button { border: 1px solid rgba(114, 214, 245, 0.3); text-align: left; background: rgba(0, 0, 0, 0.58); backdrop-filter: blur(5px); }
.evidence-explorer .solution-tabs button[aria-selected="true"] {
  border-color: rgba(114, 214, 245, 0.9);
}
.evidence-explorer .solution-tabs button:last-child:not([aria-selected="true"]) { border: 1px solid rgba(114, 214, 245, 0.28); }
.evidence-explorer .solution-details {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 6vw, 110px);
  bottom: 0;
  width: min(66%, 920px);
  min-height: 180px;
  padding: clamp(30px, 4vw, 54px);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 78%, transparent);
}

.history-section .timeline {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
  backdrop-filter: none;
}
.history-section .section-head { padding-right: 0; padding-left: 0; background: transparent; }

.careers-split-stage {
  min-height: calc(100vh - var(--header-h));
  background: #03090d;
}
.careers-split-grid { min-height: inherit; display: grid; grid-template-columns: 1fr 1fr; }
.careers-intro-side,
.careers-openings-side { min-width: 0; display: grid; align-items: center; padding: clamp(72px, 7vw, 128px) clamp(34px, 6vw, 110px); }
.careers-intro-side { background: #03090d; }
.careers-openings-side {
  background:
    radial-gradient(circle at 72% 30%, rgba(37, 184, 232, 0.13), transparent 26rem),
    #07131a;
}
.careers-intro-panel,
.careers-openings-panel { width: min(100%, 700px); margin: 0 auto; }
.careers-title { margin-bottom: 34px; }
.careers-intro { max-width: 640px; margin: 0; color: #dce7eb; font-size: clamp(1.2rem, 2.1vw, 1.85rem); font-weight: 600; line-height: 1.55; }
.careers-openings { width: 100%; margin: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.careers-empty-state { min-height: 190px; display: flex; flex-direction: column; justify-content: center; gap: 7px; }
.careers-empty-state p { margin: 0; color: #e0eaee; font-size: 0.96rem; font-weight: 600; }
.careers-empty-state span { color: #8399a2; font-size: 0.82rem; }
.career-posting { padding: 30px 0; border-bottom: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.reveal-from-top { transform: translateY(-22px); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head .lead { justify-self: start; }
  .hero-copy,
  .subhero .container,
  .section.section-line > .container { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 1fr; column-gap: 0; }
  .representative-message-layout,
  .careers-panel { grid-template-columns: 1fr; gap: 40px; }
  .representative-message-heading,
  .careers-panel-heading { padding-top: 0; }
  .story-heading { grid-column: 1; }
  .story-copy { grid-column: 1; width: min(100%, 720px); }
  .story-packages { grid-column: 1; }
  .solution-explorer {
    grid-column: 1;
    min-height: 650px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
  .solution-details { grid-column: 1; grid-row: 1; }
  .solution-tabs {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(114, 214, 245, 0.28);
    border-left: 0;
  }
  .solution-tabs button { border-right: 1px solid var(--line); border-bottom: 0; }
  .solution-tabs button:last-child { border-right: 0; }
  .evidence-explorer {
    min-height: 690px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .evidence-explorer .solution-tabs { grid-column: 1; grid-row: 1; }
  .evidence-explorer .solution-placeholder { grid-column: 1; grid-row: 2; }
  .evidence-explorer .solution-details { grid-column: 1; grid-row: 2; width: min(88%, 820px); }
  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy .hero-actions,
  .subhero h1,
  .subhero .lead,
  .section.section-line > .container > .eyebrow,
  .section.section-line > .container > h2,
  .section.section-line > .container > .narrative { grid-column: 1; grid-row: auto; }
  .hero-copy h1 { margin-bottom: 24px; }
  .subhero h1 { margin-bottom: 22px; }
  .fact-strip { grid-template-columns: repeat(2, 1fr); }
  .package-grid, .product-grid, .contact-grid { grid-template-columns: 1fr; }
  .field-copy { width: 46%; }
  .featured-product { grid-template-columns: 1fr; }
  .product-showcase-copy { width: min(48%, 620px); padding: 44px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-split-grid { grid-template-columns: 1fr; }
  .careers-split-grid { grid-template-columns: 1fr; }
  .contact-company-side,
  .contact-form-side,
  .careers-intro-side,
  .careers-openings-side { min-height: 620px; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .nav-shell, .container { width: min(calc(100% - 28px), var(--max)); }
  .brand-logo { width: 184px; height: 35px; }
  .brand-logo img { width: 230px; left: -23px; top: -98px; }
  .language-toggle span { min-width: 28px; padding: 5px 6px; }
  .section { padding: 96px 0; }
  .section.compact { padding: 72px 0; }
  h1 { font-size: clamp(2.25rem, 10.8vw, 3.35rem); }
  .hero-inner { padding: 78px 0 90px; }
  .page-hero { min-height: 720px; }
  .page-hero::after { opacity: 0.2; }
  .hero-actions .button { width: 100%; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact-item { padding: 24px; }
  .package-card, .product-card, .proof-card, .contact-card { padding: 25px; }
  .story-panel { min-height: 780px; }
  .story-panel-package { min-height: 1120px; }
  .representative-message-section { min-height: 760px; padding: 76px 0; }
  .representative-message-layout { width: calc(100% - 28px); min-height: 0; }
  .representative-message-placeholder { min-height: 420px; }
  .story-layout { width: calc(100% - 28px); padding: 44px 0; }
  .story-heading { padding: 18px 20px; }
  .story-copy { padding: 20px 22px; }
  .story-packages .package-card { padding: 18px 20px; }
  .solution-explorer { min-height: 760px; }
  .solution-tabs { grid-template-columns: 1fr; }
  .solution-tabs button { min-height: 54px; border-right: 0; border-bottom: 1px solid var(--line); }
  .solution-tabs button:last-child { border-bottom: 0; }
  .solution-details { min-height: 170px; padding: 22px; }
  .evidence-explorer { min-height: 780px; }
  .evidence-explorer .solution-tabs { grid-row: 1; }
  .evidence-explorer .solution-placeholder { grid-row: 2; }
  .evidence-explorer .solution-details { grid-row: 2; width: 100%; }
  .field-section-head { padding: 78px 0 42px; }
  .field-panel { min-height: 680px; background-position: var(--field-position-mobile, var(--field-position, center)); }
  .field-copy {
    width: 100%;
    min-height: 680px;
    justify-content: flex-end;
    padding: 300px 28px 42px;
    background: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: none;
  }
  .field-copy .field-number { margin-bottom: 70px; }
  .product-showcase { min-height: 920px; background-position: var(--product-position-mobile, var(--product-position, center)); }
  .product-showcase-copy,
  .product-showcase-right .product-showcase-copy {
    width: 100%;
    min-height: 920px;
    justify-content: flex-end;
    padding: 360px 28px 46px;
    background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.2) 34%, rgba(0, 0, 0, 0.88) 61%);
    backdrop-filter: none;
  }
  .product-photo-placeholder { left: 50%; top: 25%; width: min(74vw, 360px); }
  .showcase-spec-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-list { grid-template-columns: 1fr; }
  .spec-note { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 1fr; gap: 5px; }
  .partner-card { width: 240px; height: 154px; }
  .contact-form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-row { grid-template-columns: 75px 1fr; gap: 12px; }
  .contact-company-side,
  .contact-form-side { min-height: 680px; padding: 78px 24px; }
  .contact-form-side .contact-form { padding: 24px; }
  .careers-stage { min-height: 720px; padding: 76px 14px; }
  .careers-panel { min-height: 0; }
  .careers-placeholder { min-height: 390px; padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact-cluster { justify-self: start; align-items: flex-end; }
  .footer-meta { justify-self: start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 20260731 회사개요 1차 전면 개편 */
@font-face {
  font-family: "Electrical Safety";
  src: url("assets/font/전기안전체/전기안전체_ttf/Electrical%20Safety%20Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Electrical Safety";
  src: url("assets/font/전기안전체/전기안전체_ttf/Electrical%20Safety%20Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #ffffff;
  --muted: #c8e9fa;
  --bg: #000914;
  --bg-soft: #000914;
  --panel: #000914;
  --line: rgba(200, 233, 250, 0.22);
  --cyan: #73b2ce;
  --cyan-strong: #73b2ce;
  --mint: #c8e9fa;
}

body {
  background: #000914;
  font-family: "Electrical Safety", "Malgun Gothic", sans-serif;
  font-weight: 400;
}

h1, h2, h3, strong { font-weight: 700; }

.site-header,
.site-header.is-scrolled {
  background: #000914;
  backdrop-filter: none;
}

.site-footer { background: #000914; }

.brand-logo {
  width: 255px;
  height: 54px;
  border-radius: 4px;
}

.brand-logo img {
  width: 300px;
  max-width: none;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-brand {
  width: 255px;
  height: 54px;
  border-radius: 4px;
}

.footer-brand img {
  width: 300px;
  max-width: none;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.overview-hero {
  min-height: max(700px, calc(100svh - var(--header-h)));
  background: #000914;
}

.overview-hero::before,
.overview-hero::after { content: none; }

.overview-hero-layout {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 112px) 0;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
  gap: clamp(48px, 6vw, 112px);
  align-items: center;
}

.overview-hero-primary,
.overview-hero-secondary {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-self: center;
}

.overview-hero-primary h1 {
  margin: 0;
  color: #ffffff;
  font-size: 54pt;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.overview-hero-primary h1 span,
.delivery-package span,
.overview-story-copy h2 span,
.overview-story-body span { display: block; }

.hero-tagline {
  margin: 20pt 0 0;
  color: #c8e9fa;
  font-size: 24pt;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.company-intro {
  margin: 0 0 8pt;
  color: #ffffff;
  font-size: 24pt;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.delivery-package {
  margin: 0;
  color: #ffffff;
  font-size: 24pt;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.overview-hero .hero-actions {
  margin-top: 28pt;
  gap: 12px;
}

.overview-hero .button {
  min-height: 58px;
  padding: 0 25px;
  border: 0;
  border-radius: 6px;
  color: #000000;
  background: #ffffff;
  font-size: 20pt;
  font-weight: 400;
  line-height: 1;
}

.overview-hero .button.primary { color: #000000; background: #73b2ce; }
.overview-hero .button.collaboration { color: #000000; background: #ffffff; }
.overview-hero .button:hover { transform: translateY(-2px); filter: brightness(1.06); }

.overview-story {
  min-height: max(760px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000914;
}

.overview-story-layout {
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(58px, 6vw, 96px) 0;
  display: grid;
  grid-template-columns: minmax(320px, 2fr) minmax(0, 3fr);
  gap: clamp(48px, 7vw, 132px);
  align-items: center;
}

.overview-story-copy {
  min-width: 0;
  align-self: center;
  justify-self: center;
}

.overview-story-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 32pt;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.overview-story-body {
  margin-top: 30pt;
  color: #c8e9fa;
  font-size: 12pt;
  font-weight: 400;
  line-height: 1.5;
}

.overview-story-body p { margin: 0 0 12pt; }
.overview-story-body p:last-child { margin-bottom: 0; }

.overview-story-visual {
  min-width: 0;
  margin: 0;
  display: grid;
  place-items: center;
}

.overview-story-visual img {
  width: min(100%, 900px);
  max-height: 80vh;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .overview-hero-primary h1 { font-size: 46pt; }
  .hero-tagline { font-size: 19pt; }
  .company-intro { font-size: 20pt; }
  .delivery-package { font-size: 20pt; }
  .overview-hero .button { font-size: 16pt; }
  .overview-story-copy h2 { font-size: 28pt; }
  .overview-story-body { font-size: 11pt; }
}

@media (max-width: 980px) {
  .overview-hero-layout,
  .overview-story-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .overview-hero-primary,
  .overview-hero-secondary { width: min(100%, 760px); }
  .overview-story-copy { width: min(100%, 680px); }
  .overview-story-visual img { width: min(100%, 700px); max-height: none; }
  .brand-logo { width: 220px; height: 48px; }
  .brand-logo img { width: 260px; left: -20px; }
}

@media (max-width: 640px) {
  .overview-hero { min-height: auto; }
  .overview-hero-layout,
  .overview-story-layout { width: calc(100% - 28px); padding: 64px 0; gap: 42px; }
  .overview-hero-primary h1 { font-size: clamp(32px, 11vw, 50px); }
  .hero-tagline { margin-top: 18pt; font-size: clamp(17px, 5.3vw, 24px); }
  .company-intro { font-size: clamp(20px, 6.2vw, 27px); }
  .delivery-package { font-size: clamp(20px, 6.2vw, 27px); }
  .overview-hero .hero-actions { margin-top: 24pt; }
  .overview-hero .button { width: 100%; min-height: 54px; font-size: 15pt; }
  .overview-story { min-height: auto; }
  .overview-story-copy h2 { font-size: 24pt; }
  .overview-story-body { margin-top: 24pt; font-size: 10.5pt; }
  .brand-logo { width: 184px; height: 40px; }
  .brand-logo img { width: 218px; left: -17px; top: 50%; }
  .footer-brand { width: 220px; height: 48px; }
  .footer-brand img { width: 260px; left: -20px; top: 50%; }
}

@media (max-width: 980px) {
  .integrated-stage { min-height: 940px; }
  .integrated-stage .story-heading { top: 58px; }
  .integrated-explorer { position: absolute; inset: 0; min-height: 0; display: block; }
  .integrated-explorer .solution-tabs {
    position: absolute;
    top: 250px;
    right: 0;
    bottom: auto;
    width: min(340px, 48vw);
    grid-template-columns: 1fr;
    border: 0;
    transform: none;
  }
  .integrated-explorer .solution-tabs button { border: 1px solid rgba(114, 214, 245, 0.3); }
  .integrated-explorer .solution-details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(76%, 760px);
  }
  .evidence-stage { min-height: 820px; }
  .evidence-explorer { position: absolute; inset: 0; min-height: 0; display: block; }
  .evidence-explorer .solution-tabs {
    position: absolute;
    top: 230px;
    right: 28px;
    left: auto;
    width: min(340px, 48vw);
    grid-template-columns: 1fr;
    border: 0;
    transform: none;
  }
  .evidence-explorer .solution-details {
    position: absolute;
    left: 28px;
    bottom: 0;
    width: min(76%, 760px);
  }
}

@media (max-width: 640px) {
  .contact-title,
  .careers-title { margin-bottom: 34px; font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .integrated-stage { min-height: 1120px; }
  .integrated-stage .story-layout { width: calc(100% - 28px); padding: 48px 0; }
  .integrated-stage .story-heading { top: 48px; left: 0; right: 0; }
  .integrated-explorer .solution-tabs {
    top: 250px;
    left: 0;
    right: 0;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .integrated-explorer .solution-details { left: 0; bottom: 0; width: 100%; min-height: 210px; }
  .evidence-stage { min-height: 960px; }
  .evidence-stage-heading { top: 54px; left: 18px; }
  .evidence-explorer .solution-tabs {
    top: 220px;
    right: 14px;
    left: 14px;
    width: auto;
    grid-template-columns: 1fr;
  }
  .evidence-explorer .solution-tabs button { min-height: 58px; border: 1px solid rgba(114, 214, 245, 0.28); }
  .evidence-explorer .solution-details { left: 14px; bottom: 0; width: calc(100% - 28px); min-height: 220px; }
  .careers-intro-side,
  .careers-openings-side { min-height: 520px; padding: 82px 24px; }
  .careers-intro { font-size: 1.12rem; }
  .careers-empty-state { min-height: 170px; }
}

/* 02번째 회사개요 재구성 */
.company-intro,
.delivery-package {
  font-size: 18pt;
  font-weight: 400;
}

.overview-package {
  min-height: max(700px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000914;
}

.overview-package-layout {
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 112px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 2vw, 36px);
  align-items: center;
}

.overview-package-primary,
.overview-package-secondary {
  min-width: 0;
  justify-self: center;
}

.overview-package-primary h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30pt, 2.4vw, 36pt);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.04em;
  text-align: center;
}

.overview-package-primary h2 span {
  display: block;
  white-space: nowrap;
}

.overview-package-secondary {
  width: 100%;
  display: grid;
  gap: 26pt;
  color: #ffffff;
  font-size: 18pt;
  font-weight: 400;
  line-height: 1.35;
  transform: translateY(-30pt);
}

.overview-package-secondary p {
  margin: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.package-number { color: #73b2ce; }

.field-pair-section {
  min-height: max(760px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000914;
}

.field-pair-layout {
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(52px, 5vw, 82px) 0;
  display: grid;
  grid-template-columns: minmax(320px, 2fr) minmax(0, 3fr);
  gap: clamp(48px, 7vw, 132px);
  align-items: stretch;
}

.field-pair-copy-column,
.field-pair-visual-column {
  min-width: 0;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 38px);
}

.field-pair-visual-column {
  height: clamp(620px, 74svh, 780px);
  align-self: center;
}

.field-pair-section-with-heading .field-pair-copy-column {
  grid-template-rows: auto repeat(2, minmax(0, 1fr));
}

.field-pair-heading {
  margin: 0;
  color: #ffffff;
  font-size: 42pt;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.04em;
  align-self: start;
}

.field-copy-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(18px, 2vw, 30px) 0;
  border-top: 1px solid rgba(200, 233, 250, 0.22);
}

.field-copy-card h3 {
  width: 100%;
  margin: 0 0 12pt;
  color: #ffffff;
  font-size: 24pt;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.field-copy-card p {
  margin: 0;
  color: #c8e9fa;
  font-size: 10pt;
  font-weight: 400;
  line-height: 1.55;
}

.field-copy-card p span { display: block; }

.field-copy-card .field-link {
  min-height: 48px;
  margin-top: 18pt;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: #000000;
  background: #73b2ce;
  box-shadow: none;
  font-size: 12pt;
  font-weight: 400;
}

.field-copy-card .field-link:hover {
  border-color: transparent;
  color: #000000;
  background: #c8e9fa;
  transform: translateY(-2px);
}

.field-photo {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #000914;
}

.field-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-pair-section-with-heading .field-photo:first-child img { object-position: center 46%; }
.field-pair-section-with-heading .field-photo:last-child img { object-position: center 58%; }
.field-pair-section:not(.field-pair-section-with-heading) .field-photo:first-child img { object-position: center 43%; }
.field-pair-section:not(.field-pair-section-with-heading) .field-photo:last-child img { object-position: center; }

@media (max-width: 1180px) {
  .company-intro,
  .delivery-package { font-size: 18pt; }
  .overview-package-primary h2,
  .field-pair-heading { font-size: 34pt; }
  .overview-package-secondary { font-size: 16pt; }
  .field-copy-card h3 { font-size: 21pt; }
}

@media (max-width: 980px) {
  .overview-package-layout,
  .field-pair-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .overview-package-primary,
  .overview-package-secondary { width: min(100%, 760px); }
  .overview-package-primary h2 span { white-space: normal; }
  .overview-package-secondary { transform: none; }
  .field-pair-copy-column { min-height: 720px; }
  .field-pair-visual-column {
    height: 440px;
    min-height: 440px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }
}

@media (max-width: 640px) {
  .company-intro,
  .delivery-package { font-size: clamp(18px, 5.6vw, 24px); }
  .overview-package,
  .field-pair-section { min-height: auto; }
  .overview-package-layout,
  .field-pair-layout { width: calc(100% - 28px); padding: 64px 0; gap: 42px; }
  .overview-package-primary h2,
  .field-pair-heading { font-size: 28pt; }
  .overview-package-secondary { gap: 22pt; font-size: 15pt; }
  .overview-package-secondary p { grid-template-columns: 36px minmax(0, 1fr); gap: 8px; }
  .field-pair-copy-column { min-height: auto; grid-template-rows: auto; gap: 28px; }
  .field-pair-section-with-heading .field-pair-copy-column { grid-template-rows: auto; }
  .field-copy-card { min-height: 260px; }
  .field-copy-card h3 { font-size: 22pt; }
  .field-copy-card p { font-size: 10pt; }
  .field-pair-visual-column { height: auto; min-height: auto; grid-template-columns: 1fr; grid-template-rows: repeat(2, 300px); }
}

/* 03번째 회사개요 정렬 및 분야 표현 보정 */
.overview-package-layout { align-items: stretch; }

.overview-package-primary {
  align-self: center;
  justify-self: start;
}

.overview-package-primary h2 { text-align: left; }

.overview-package-secondary {
  width: 100%;
  align-self: center;
  justify-self: start;
  transform: none;
}

.field-intro-section {
  min-height: 320px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #000914;
}

.field-intro-layout {
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 7vw, 112px) 0;
}

.field-intro-layout h2 {
  max-width: 940px;
  margin: 0;
  color: #ffffff;
  font-size: 42pt;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-align: left;
}

.field-stack-section {
  min-height: max(760px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000914;
}

.field-stack-layout {
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 52px) 0;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.field-stack-panel {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background-color: #000914;
  background-image: var(--field-image);
  background-size: cover;
  background-position: var(--field-position, center);
}

.field-stack-copy {
  position: relative;
  z-index: 1;
  width: 40%;
  min-width: 430px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 60px);
  color: #ffffff;
  background: rgba(0, 9, 20, 0.7);
}

.field-stack-copy h3 {
  width: 100%;
  margin: 0 0 12pt;
  color: #ffffff;
  font-size: 24pt;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.field-stack-copy p {
  margin: 0;
  color: #c8e9fa;
  font-size: 10pt;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}

.field-stack-copy p span { display: block; }

.field-stack-copy .field-link {
  min-height: 48px;
  margin-top: 18pt;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: #000000;
  background: #73b2ce;
  box-shadow: none;
  font-size: 12pt;
  font-weight: 400;
}

.field-stack-copy .field-link:hover {
  border-color: transparent;
  color: #000000;
  background: #c8e9fa;
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .field-intro-layout h2 { font-size: 34pt; }
  .field-stack-copy { width: 52%; min-width: 0; }
  .field-stack-copy h3 { font-size: 21pt; }
}

@media (max-width: 980px) {
  .overview-package-layout { align-items: center; }
  .overview-package-secondary { width: min(100%, 760px); align-self: auto; justify-self: start; }
  .field-stack-copy { width: 62%; }
}

@media (max-width: 640px) {
  .field-intro-section { min-height: auto; }
  .field-intro-layout { width: calc(100% - 28px); padding: 72px 0; }
  .field-intro-layout h2 { font-size: 28pt; }
  .field-stack-section { min-height: auto; }
  .field-stack-layout { width: calc(100% - 28px); min-height: auto; padding: 28px 0; grid-template-rows: none; gap: 18px; }
  .field-stack-panel { min-height: 520px; }
  .field-stack-copy { width: 100%; min-width: 0; padding: 32px 24px; background: rgba(0, 9, 20, 0.72); }
  .field-stack-copy h3 { font-size: 22pt; }
  .field-stack-copy p { font-size: 10pt; }
}

/* 04번째 화면 단위 이동 및 분야 캐러셀 */
.company-page-root {
  scroll-snap-type: none;
  scroll-padding-top: var(--header-h);
}

.company-page main > [data-snap-section] {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 0;
}

.overview-hero,
.overview-story,
.overview-package,
.field-showcase-section,
.representative-simple-section {
  border: 0;
}

.company-intro-block {
  margin: 0;
  color: #ffffff;
  font-size: 18pt;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.company-intro-block span { display: block; }

.section-nav {
  position: fixed;
  z-index: 900;
  top: 50%;
  left: 14px;
  display: grid;
  gap: 11px;
  transform: translateY(-50%);
}

.section-nav a {
  width: 10px;
  height: 10px;
  display: block;
  border: 1px solid rgba(200, 233, 250, 0.68);
  border-radius: 999px;
  background: rgba(0, 9, 20, 0.64);
  transition: height 180ms ease, background 180ms ease, border-color 180ms ease;
}

.section-nav a:hover,
.section-nav a:focus-visible { border-color: #ffffff; }

.section-nav a[aria-current="true"] {
  height: 24px;
  border-color: #73b2ce;
  background: #73b2ce;
}

.field-showcase-section {
  min-height: max(760px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #000914;
}

.field-showcase-layout {
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(42px, 5vw, 72px) 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
}

.field-showcase-layout > h2 {
  max-width: 1120px;
  margin: 0;
  color: #ffffff;
  font-size: 42pt;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-align: left;
}

.field-carousel {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
}

.field-carousel-viewport {
  min-height: 0;
  overflow: hidden;
}

.field-carousel-track {
  height: 100%;
  display: flex;
  transform: translateX(0);
  transition: transform 640ms cubic-bezier(0.22, 0.72, 0.2, 1);
  will-change: transform;
}

.field-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background-color: #000914;
  background-image: var(--field-image);
  background-size: cover;
  background-position: var(--field-position, center);
}

.field-carousel-copy {
  width: 40%;
  min-width: 430px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 60px);
  color: #ffffff;
  background: rgba(0, 9, 20, 0.7);
}

.field-carousel-copy h3 {
  width: 100%;
  margin: 0 0 12pt;
  color: #ffffff;
  font-size: 24pt;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.field-carousel-copy p {
  margin: 0;
  color: #c8e9fa;
  font-size: 10pt;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}

.field-carousel-copy p span { display: block; }

.field-carousel-copy .field-link {
  min-height: 48px;
  margin-top: 18pt;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: #000000;
  background: #73b2ce;
  box-shadow: none;
  font-size: 12pt;
  font-weight: 400;
}

.field-carousel-copy .field-link:hover {
  border-color: transparent;
  color: #000000;
  background: #c8e9fa;
  transform: translateY(-2px);
}

.field-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.field-carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid #73b2ce;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.field-carousel-dots button:hover,
.field-carousel-dots button:focus-visible { transform: scale(1.2); }
.field-carousel-dots button[aria-selected="true"] { background: #73b2ce; }

.field-carousel-controls {
  position: relative;
  z-index: 5;
  width: fit-content;
  min-height: 54px;
  margin-inline: auto;
  padding: 7px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(115, 214, 245, 0.42);
  border-radius: 12px;
  background: rgba(1, 14, 25, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.field-carousel-control {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(115, 214, 245, 0.58);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(9, 37, 51, 0.94);
  font: 700 1rem/1 Arial, sans-serif;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.field-carousel-control:hover,
.field-carousel-control:focus-visible {
  color: #00151e;
  border-color: #73d6f5;
  background: #73d6f5;
  transform: translateY(-1px);
}

.field-carousel-control:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.field-carousel-control:disabled {
  opacity: 0.32;
  cursor: default;
  transform: none;
}

.field-carousel-toggle {
  width: auto;
  min-width: 48px;
  margin-inline: 4px;
  padding-inline: 10px;
}

.field-carousel-status {
  min-width: 48px;
  color: #c8efff;
  font: 700 0.78rem/1 "Electrical Safety", "Malgun Gothic", sans-serif;
  text-align: center;
}

.field-carousel-viewport {
  isolation: isolate;
  clip-path: inset(0);
  contain: layout paint;
}

.field-carousel-track { width: 100%; }

.field-carousel-slide {
  width: 100%;
  max-width: 100%;
  backface-visibility: hidden;
}

.field-carousel:not(.is-moving) .field-carousel-slide[aria-hidden="true"] {
  visibility: hidden;
}

@media (max-width: 640px) {
  .field-carousel-controls {
    flex-wrap: wrap;
    gap: 7px;
  }

  .field-carousel-controls .field-carousel-dots {
    order: -1;
    flex: 0 0 100%;
  }

  .field-carousel-control {
    width: 36px;
    height: 36px;
  }

  .field-carousel-status { min-width: 42px; }
}

.representative-simple-section {
  min-height: max(760px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #000914;
}

.representative-simple-layout {
  width: min(calc(100% - clamp(40px, 6vw, 120px)), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(58px, 6vw, 96px) 0;
  display: grid;
  grid-template-columns: minmax(320px, 2fr) minmax(0, 3fr);
  gap: clamp(48px, 7vw, 132px);
  align-items: center;
}

.representative-simple-copy {
  min-width: 0;
  justify-self: start;
}

.representative-simple-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 32pt;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-align: left;
}

.representative-simple-future { min-width: 0; min-height: 1px; }

@media (max-width: 1180px) {
  .field-showcase-layout > h2 { font-size: 34pt; }
  .field-carousel-copy { width: 52%; min-width: 0; }
  .field-carousel-copy h3 { font-size: 21pt; }
  .representative-simple-copy h2 { font-size: 28pt; }
}

@media (max-width: 980px) {
  .company-page-root { scroll-snap-type: none; }
  .section-nav { display: none; }
  .representative-simple-layout { grid-template-columns: 1fr; gap: 52px; }
  .field-carousel-copy { width: 62%; }
}

@media (max-width: 640px) {
  .company-intro-block { font-size: clamp(18px, 5.6vw, 24px); }
  .field-showcase-section,
  .representative-simple-section { min-height: auto; }
  .field-showcase-layout,
  .representative-simple-layout { width: calc(100% - 28px); padding: 64px 0; }
  .field-showcase-layout { min-height: 900px; grid-template-rows: auto minmax(0, 1fr); }
  .field-showcase-layout > h2 { font-size: 28pt; }
  .field-carousel-slide { min-height: 600px; }
  .field-carousel-copy { width: 100%; min-width: 0; padding: 32px 24px; background: rgba(0, 9, 20, 0.72); }
  .field-carousel-copy h3 { font-size: 22pt; }
  .field-carousel-copy p { font-size: 10pt; }
  .representative-simple-layout { min-height: 620px; }
  .representative-simple-copy h2 { font-size: 24pt; }
}

@media (prefers-reduced-motion: reduce) {
  .field-carousel-track { transition: none; }
}

/* 05번째 고정 내비게이션·푸터, 공통 여백, 느린 분야 전환 */
:root {
  --company-footer-h: 100px;
  --company-content-width: min(calc(100% - clamp(96px, 14vw, 240px)), var(--max));
}

.company-page .site-header {
  position: fixed;
  inset: 0 0 auto;
}

.company-page main {
  padding-top: var(--header-h);
  padding-bottom: var(--company-footer-h);
}

.company-page .site-footer {
  position: fixed;
  z-index: 1000;
  inset: auto 0 0;
  height: var(--company-footer-h);
  padding: 12px 0;
  border-top: 1px solid rgba(200, 233, 250, 0.16);
}

.company-page .site-footer .footer-inner {
  width: var(--company-content-width);
  height: 100%;
  align-items: center;
}

.company-page .site-footer .footer-brand {
  width: 220px;
  height: 46px;
}

.company-page .site-footer .footer-meta {
  font-size: 0.72rem;
  line-height: 1.35;
}

.company-page .site-footer .footer-representative { margin-top: 3px !important; }

.company-page .site-footer .footer-instagram,
.company-page .site-footer .footer-linkedin {
  width: 36px;
  height: 36px;
}

.company-page-root {
  scroll-padding-top: var(--header-h);
  scroll-padding-bottom: var(--company-footer-h);
}

.company-page main > [data-snap-section] {
  height: calc(100svh - var(--header-h) - var(--company-footer-h));
  min-height: 0;
}

.company-page .overview-hero-layout,
.company-page .overview-story-layout,
.company-page .overview-package-layout,
.company-page .field-showcase-layout,
.company-page .representative-simple-layout {
  width: var(--company-content-width);
  min-height: 100%;
}

.company-page .overview-hero-layout,
.company-page .overview-package-layout {
  padding-block: clamp(34px, 4vw, 58px);
}

.company-page .overview-story-layout,
.company-page .representative-simple-layout {
  padding-block: clamp(30px, 3.5vw, 52px);
}

.company-page .overview-hero-primary,
.company-page .overview-hero-secondary,
.company-page .overview-story-copy,
.company-page .overview-package-primary,
.company-page .overview-package-secondary {
  justify-self: stretch;
}

.company-page .overview-package-primary h2 { text-align: left; }

.company-page .overview-package-secondary {
  align-self: center;
  justify-self: start;
  transform: none;
}

@media (min-width: 1181px) {
  .company-page .overview-package-secondary p > span:last-child { white-space: nowrap; }
}

.company-page .field-showcase-layout {
  padding-block: clamp(26px, 3vw, 42px);
  gap: clamp(18px, 2vw, 28px);
}

.company-page .field-carousel-track {
  transition-duration: 1800ms;
  transition-timing-function: cubic-bezier(0.33, 0.05, 0.18, 1);
}

.company-page .section-nav {
  right: 18px;
  left: auto;
}

.company-page .nav-shell { width: var(--company-content-width); }

@media (min-width: 981px) and (max-height: 699px) {
  .company-page-root { scroll-snap-type: none; }
  .company-page main > [data-snap-section] {
    height: auto;
    min-height: 560px;
  }
}

@media (max-width: 980px) {
  :root {
    --company-footer-h: 126px;
    --company-content-width: calc(100% - 28px);
  }

  .company-page main > [data-snap-section] {
    height: auto;
    min-height: auto;
  }

  .company-page .site-footer { padding: 10px 0; }

  .company-page .site-footer .footer-inner {
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
    gap: 12px;
  }

  .company-page .site-footer .footer-brand {
    width: min(100%, 170px);
    height: 42px;
  }

  .company-page .site-footer .footer-brand img {
    width: 205px;
    left: -16px;
  }

  .company-page .site-footer .footer-contact-cluster { gap: 8px; }
  .company-page .site-footer .footer-meta { font-size: 0.6rem; line-height: 1.3; }

  .company-page .site-footer .footer-instagram,
  .company-page .site-footer .footer-linkedin {
    width: 30px;
    height: 30px;
  }

  .company-page .overview-hero-layout,
  .company-page .overview-story-layout,
  .company-page .overview-package-layout,
  .company-page .field-showcase-layout,
  .company-page .representative-simple-layout {
    width: var(--company-content-width);
  }
}

@media (max-width: 640px) {
  :root { --company-footer-h: 148px; }

  .company-page .site-footer .footer-inner {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 8px;
  }

  .company-page .site-footer .footer-brand { width: 112px; height: 34px; }
  .company-page .site-footer .footer-brand img { width: 138px; left: -12px; }

  .company-page .site-footer .footer-contact-cluster {
    min-width: 0;
    align-items: flex-end;
    gap: 6px;
  }

  .company-page .site-footer .footer-meta {
    min-width: 0;
    font-size: 7px;
    line-height: 1.35;
  }

  .company-page .site-footer .footer-socials {
    flex-direction: column;
    gap: 5px;
  }

  .company-page .site-footer .footer-instagram,
  .company-page .site-footer .footer-linkedin {
    width: 26px;
    height: 26px;
  }

  .company-page .site-footer .footer-instagram svg { width: 15px; height: 15px; }
}

/* 06번째 전 페이지 공통 화면 체계 */
.field-showcase-layout > h2 span { display: block; }

.site-snap-root {
  scroll-snap-type: none;
  scroll-padding-top: var(--header-h);
  scroll-padding-bottom: var(--company-footer-h);
}

.system-page { background: #000914; }

.system-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  background: #000914;
  backdrop-filter: none;
}

.system-page main {
  padding-top: var(--header-h);
  padding-bottom: var(--company-footer-h);
}

.system-page .site-footer {
  position: fixed;
  z-index: 1000;
  inset: auto 0 0;
  height: var(--company-footer-h);
  padding: 12px 0;
  border-top: 1px solid rgba(200, 233, 250, 0.16);
  background: #000914;
}

.system-page .nav-shell,
.system-page .site-footer .footer-inner,
.system-page .container,
.system-page .system-hero-layout,
.system-page .system-split-layout {
  width: var(--company-content-width);
}

.system-page .site-footer .footer-inner {
  height: 100%;
  align-items: center;
}

.system-page .site-footer .footer-brand { width: 220px; height: 46px; }
.system-page .site-footer .footer-meta { font-size: 0.72rem; line-height: 1.35; }
.system-page .site-footer .footer-representative { margin-top: 3px !important; }

.system-page .site-footer .footer-instagram,
.system-page .site-footer .footer-linkedin { width: 36px; height: 36px; }

.system-page .section-nav {
  right: 18px;
  left: auto;
}

.system-page main [data-snap-section] {
  height: calc(100svh - var(--header-h) - var(--company-footer-h));
  min-height: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: var(--header-h);
}

.system-screen {
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border: 0;
  background: #000914;
}

.system-hero-layout,
.system-split-layout {
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(30px, 3.5vw, 52px) 0;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
  gap: clamp(48px, 7vw, 132px);
  align-items: center;
}

.system-hero-layout-reverse { grid-template-columns: minmax(0, 2fr) minmax(360px, 3fr); }

.system-hero-copy { min-width: 0; }

.system-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 54pt;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.system-hero-copy h1 span { display: block; }

.system-hero-copy > p {
  max-width: 720px;
  margin: 28pt 0 0;
  color: #c8e9fa;
  font-size: 16pt;
  font-weight: 400;
  line-height: 1.55;
}

.system-photo-loop {
  position: relative;
  min-width: 0;
  height: min(64svh, 620px);
  overflow: hidden;
  background: #06111c;
}

.system-photo-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: linear-gradient(rgba(0, 9, 20, 0.08), rgba(0, 9, 20, 0.18)), var(--loop-image);
  background-size: cover;
  background-position: center;
  transition: opacity 1400ms ease;
}

.system-photo-frame.is-active { opacity: 1; }

.system-photo-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.system-photo-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #73b2ce;
  border-radius: 50%;
  background: rgba(0, 9, 20, 0.6);
  cursor: pointer;
}

.system-photo-dots button[aria-pressed="true"] { background: #73b2ce; }

.system-split-layout { grid-template-columns: minmax(320px, 2fr) minmax(0, 3fr); }

.system-section-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 42pt;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.system-panel {
  min-width: 0;
  padding: clamp(34px, 4vw, 60px);
  background: rgba(200, 233, 250, 0.035);
}

/* 제품 */
.system-page .product-showcases { display: contents; }

.system-page .product-showcase {
  width: var(--company-content-width);
  margin: 0 auto;
  border: 0;
  background-color: #000914;
}

.system-page .product-showcase-copy {
  width: 42%;
  max-width: none;
  min-height: 100%;
  padding: clamp(34px, 4vw, 60px);
  background: rgba(0, 9, 20, 0.76);
  backdrop-filter: none;
}

.system-page .product-showcase-right .product-showcase-copy { background: rgba(0, 9, 20, 0.76); }
.system-page .product-showcase-copy h2 { font-size: 32pt; line-height: 1.16; }
.system-page .product-showcase-copy > p:not(.eyebrow):not(.spec-note) { font-size: 11pt; line-height: 1.55; }

.system-page .long-term-projects,
.system-page .project-inquiry,
.system-page .history-section,
.system-page #partners,
.system-page .collaboration-closing {
  display: grid;
  align-items: center;
  padding: 0;
  border: 0;
  background: #000914;
}

.system-page .long-term-projects > .container {
  display: grid;
  grid-template-columns: minmax(300px, 2fr) minmax(0, 3fr);
  gap: clamp(48px, 7vw, 132px);
  align-items: center;
}

.system-page .long-term-projects .section-head { margin: 0; }
.system-page .long-term-projects .section-head h2 { font-size: 42pt; line-height: 1.14; }
.system-page .roadmap-grid { grid-template-columns: 1fr; }

.system-page .project-inquiry > .container,
.system-page .collaboration-closing > .container { justify-content: center; }

.system-page .project-inquiry h2,
.system-page .collaboration-closing h2 { font-size: 42pt; line-height: 1.14; }

/* 성과 */
.system-page .evidence-stage {
  width: var(--company-content-width);
  margin: 0 auto;
  border: 0;
}

.system-page .evidence-stage-heading { top: clamp(34px, 4vw, 56px); left: clamp(34px, 4vw, 60px); }
.system-page .evidence-stage-heading h2 { font-size: 42pt; }
.system-page .evidence-explorer .solution-tabs { right: clamp(34px, 4vw, 60px); }
.system-page .evidence-explorer .solution-details { left: 0; width: 62%; }

.system-page .history-section > .container {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) minmax(0, 3fr);
  gap: clamp(48px, 7vw, 132px);
  align-items: start;
}

.system-page .history-section .section-head { padding: 0; }
.system-page .history-section .section-head h2,
.system-page #partners .section-head h2 { font-size: 42pt; }
.system-page .history-section .timeline { max-height: 66svh; overflow: auto; }
.system-page .timeline-row { padding: 11px 0; }

.system-page #partners > .container:first-child,
.system-page #partners > .container:last-child { margin: 0 auto; }

.system-page #partners .partner-static { margin-top: 32px; }

/* 채용·문의 */
.system-page .careers-openings {
  border-color: rgba(200, 233, 250, 0.22);
}

.system-page .contact-list { margin-top: 32pt; }

.system-page .contact-form-panel { padding: clamp(24px, 3vw, 44px); }
.system-page .contact-form { padding: 0; border: 0; background: transparent; box-shadow: none; }
.system-page .field textarea { min-height: 110px; }

@media (max-width: 1180px) {
  .system-hero-copy h1 { font-size: 44pt; }
  .system-section-heading h2,
  .system-page .long-term-projects .section-head h2,
  .system-page .project-inquiry h2,
  .system-page .collaboration-closing h2,
  .system-page .evidence-stage-heading h2,
  .system-page .history-section .section-head h2,
  .system-page #partners .section-head h2 { font-size: 34pt; }
  .system-page .product-showcase-copy { width: 50%; }
  .system-page .product-showcase-copy h2 { font-size: 26pt; }
}

@media (min-width: 981px) and (max-height: 699px) {
  .site-snap-root { scroll-snap-type: none; }
  .system-page main [data-snap-section] { height: auto; min-height: 560px; }
}

@media (max-width: 980px) {
  .site-snap-root { scroll-snap-type: none; }
  .system-page main [data-snap-section] { height: auto; min-height: auto; }
  .system-page .section-nav { display: none; }
  .system-hero-layout,
  .system-hero-layout-reverse,
  .system-split-layout,
  .system-page .long-term-projects > .container,
  .system-page .history-section > .container { grid-template-columns: 1fr; gap: 42px; }
  .system-page .product-showcase { min-height: 760px; }
  .system-page .product-showcase-copy { width: 62%; }
  .system-page .history-section .timeline { max-height: none; }
}

@media (max-width: 640px) {
  .system-page .site-footer { padding: 10px 0; }
  .system-page .site-footer .footer-inner { grid-template-columns: 112px minmax(0, 1fr); gap: 8px; }
  .system-page .site-footer .footer-brand { width: 112px; height: 34px; }
  .system-page .site-footer .footer-brand img { width: 138px; left: -12px; }
  .system-page .site-footer .footer-contact-cluster { min-width: 0; align-items: flex-end; gap: 6px; }
  .system-page .site-footer .footer-meta { min-width: 0; font-size: 7px; line-height: 1.35; }
  .system-page .site-footer .footer-socials { flex-direction: column; gap: 5px; }
  .system-page .site-footer .footer-instagram,
  .system-page .site-footer .footer-linkedin { width: 26px; height: 26px; }
  .system-page .site-footer .footer-instagram svg { width: 15px; height: 15px; }
  .system-hero-layout,
  .system-split-layout { padding: 64px 0; }
  .system-hero-copy h1 { font-size: clamp(32px, 11vw, 50px); }
  .system-hero-copy > p { margin-top: 22pt; font-size: 12pt; }
  .system-photo-loop { height: 460px; }
  .system-section-heading h2 { font-size: 28pt; }
  .system-page .product-showcase { min-height: 900px; }
  .system-page .product-showcase-copy,
  .system-page .product-showcase-right .product-showcase-copy {
    width: 100%;
    min-height: 100%;
    padding: 34px 24px;
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.28), rgba(0, 9, 20, 0.92) 48%);
  }
  .system-page .product-showcase-copy h2 { font-size: 23pt; }
  .system-page .long-term-projects,
  .system-page .project-inquiry,
  .system-page .history-section,
  .system-page #partners,
  .system-page .collaboration-closing { padding: 72px 0; }
  .system-page .evidence-stage { width: var(--company-content-width); min-height: 900px !important; }
  .system-page .evidence-stage-heading { top: 42px; left: 24px; }
  .system-page .evidence-explorer .solution-tabs { top: 190px; right: 18px; left: 18px; width: auto; }
  .system-page .evidence-explorer .solution-details { left: 0; width: 100%; }
}

/* 07번째 채용·문의 롤백 보정 및 제품 재구성 */
.careers-split-stage,
.careers-intro-side,
.careers-openings-side {
  background: #000914 !important;
  background-image: none !important;
}

.careers-split-grid { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }

.careers-intro-panel,
.careers-openings-panel { width: 100%; max-width: none; }

.careers-title {
  margin: 0;
  color: #ffffff;
  font-size: 42pt;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.careers-title span { display: block; }

.careers-openings {
  border: 0;
}

.contact-split-stage,
.contact-company-side,
.contact-form-side {
  background: #000914 !important;
  background-image: none !important;
}

.contact-row { border-bottom: 0; }

.contact-form-side .contact-form,
.contact-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.product-intro-section,
.product-pair-section {
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border: 0;
  background: #000914;
}

.product-intro-layout {
  width: var(--company-content-width);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) 0;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
  gap: clamp(48px, 7vw, 132px);
  align-items: center;
}

.product-intro-title h1 {
  margin: 0;
  color: #ffffff;
  font-size: 54pt;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.product-intro-proto {
  min-width: 0;
  display: grid;
  place-items: center;
}

.product-intro-proto img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}

.product-intro-copy p {
  margin: 0;
  color: #ffffff;
  font-size: 18pt;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.product-intro-copy p span { display: block; }

.product-pair-layout {
  width: var(--company-content-width);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 42px) 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}

.product-compact-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background-color: #000914;
  background-image: var(--compact-product-image);
  background-size: cover;
  background-position: var(--compact-product-position, center);
}

.product-compact-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 42px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 9, 20, 0.02) 8%, rgba(0, 9, 20, 0.2) 30%, rgba(0, 9, 20, 0.93) 58%, #000914 100%);
}

.developing-status {
  align-self: flex-start;
  margin-bottom: 10px;
  color: #c8e9fa;
  font-size: 11pt;
  font-weight: 700;
  animation: developing-status-blink 1.4s ease-in-out infinite;
}

@keyframes developing-status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.34; }
}

.product-compact-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24pt;
  font-weight: 700;
  line-height: 1.1;
}

.product-compact-copy h3 {
  margin: 7px 0 16px;
  color: #ffffff;
  font-size: 18pt;
  font-weight: 700;
  line-height: 1.2;
}

.product-compact-copy p {
  margin: 0;
  color: #c8e9fa;
  font-size: 10pt;
  font-weight: 400;
  line-height: 1.5;
}

.product-compact-copy p span { display: block; }

.product-compact-copy .product-wavelength {
  margin-top: 15px;
  color: #ffffff;
  font-size: 10.5pt;
}

.product-compact-copy .product-image-note {
  margin-top: 15px;
  color: rgba(200, 233, 250, 0.72);
  font-size: 8.5pt;
}

@media (max-width: 1180px) {
  .careers-title { font-size: 34pt; }
  .product-intro-title h1 { font-size: 44pt; }
  .product-intro-copy p { font-size: 15pt; }
  .product-compact-copy { padding: 28px; }
  .product-compact-copy h2 { font-size: 21pt; }
  .product-compact-copy h3 { font-size: 16pt; }
  .product-compact-copy p { font-size: 9pt; }
}

@media (max-width: 980px) {
  .careers-split-grid { grid-template-columns: 1fr; }
  .product-intro-layout { grid-template-columns: 1fr; gap: 42px; }
  .product-pair-section { height: auto !important; min-height: auto !important; }
  .product-pair-layout { grid-template-columns: 1fr; padding: 48px 0; }
  .product-compact-card { min-height: 720px; }
}

@media (max-width: 640px) {
  .careers-title { font-size: 28pt; }
  .product-intro-layout { width: calc(100% - 28px); padding: 64px 0; }
  .product-intro-title h1 { font-size: 34pt; }
  .product-intro-copy p { font-size: 12pt; }
  .product-pair-layout { width: calc(100% - 28px); }
  .product-compact-card { min-height: 760px; }
  .product-compact-copy { padding: 28px 22px; }
  .product-compact-copy h2 { font-size: 22pt; }
  .product-compact-copy h3 { font-size: 17pt; }
  .product-compact-copy p { font-size: 9.5pt; }
}

@media (prefers-reduced-motion: reduce) {
  .developing-status { animation: none; }
}

/* 08번째 회사소개 스크롤 안정화 및 제품 화면 재배치 */
.company-page [data-snap-section].reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.company-page .overview-package-secondary { transform: none; }

.product-intro-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  grid-template-areas:
    "title proto"
    "copy proto";
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: clamp(32px, 4vw, 72px);
  row-gap: 28pt;
}

.product-intro-title { grid-area: title; }
.product-intro-copy { grid-area: copy; max-width: 720px; }
.product-intro-proto { grid-area: proto; }

.product-pair-layout {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  padding-block: clamp(22px, 2.5vw, 34px);
}

.product-compact-card {
  background-size: var(--compact-product-size, cover);
  background-repeat: no-repeat;
}

.product-compact-copy {
  width: 58%;
  right: auto;
  justify-content: center;
  padding: clamp(22px, 2.5vw, 36px);
  background: linear-gradient(90deg, #000914 0%, rgba(0, 9, 20, 0.97) 68%, rgba(0, 9, 20, 0.76) 86%, transparent 100%);
}

.developing-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(200, 233, 250, 0.7);
  border-radius: 999px;
  animation: none;
}

.developing-status::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: #c8e9fa;
  box-shadow: 0 0 10px rgba(200, 233, 250, 0.84);
  animation: developing-dot-blink 1.4s ease-in-out infinite;
}

@keyframes developing-dot-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(200, 233, 250, 0.84); }
  50% { opacity: 0.2; box-shadow: 0 0 2px rgba(200, 233, 250, 0.2); }
}

.product-compact-copy h2 { font-size: 22pt; }
.product-compact-copy h3 { margin: 5px 0 12px; font-size: 16pt; }
.product-compact-copy p { font-size: 9pt; line-height: 1.42; }

.product-compact-copy .product-wavelength {
  width: fit-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 9px 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(115, 178, 206, 0.42);
  color: #ffffff;
  background: rgba(0, 9, 20, 0.48);
  font-size: 9pt;
  line-height: 1.35;
}

.product-wavelength strong { color: #73b2ce; white-space: nowrap; }
.product-wavelength span { color: #ffffff; }

.product-compact-copy .product-image-note {
  margin-top: 10px;
  font-size: 7.5pt;
  line-height: 1.35;
}

.platform-compact-card { background-color: #07131e; }

.product-future-section {
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border: 0;
  background: #000914;
}

.product-future-layout {
  width: var(--company-content-width);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) 0;
  display: grid;
  grid-template-columns: minmax(300px, 2fr) minmax(0, 3fr);
  gap: clamp(48px, 7vw, 132px);
  align-items: center;
}

.product-future-research h2,
.product-future-inquiry h2 {
  margin: 0;
  color: #ffffff;
  font-size: 42pt;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.future-product-list {
  margin-top: 32pt;
  display: grid;
  gap: 18px;
}

.future-product-list p {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.future-product-list span {
  color: #c8e9fa;
  font-size: 11pt;
}

.future-product-list span::after { content: ";"; margin-left: 8px; }
.future-product-list strong { color: #ffffff; font-size: 18pt; }

.product-future-inquiry h2 span { display: block; }

.product-future-inquiry .button {
  margin-top: 28pt;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  color: #000000;
  background: #73b2ce;
  font-size: 16pt;
  font-weight: 400;
}

@media (max-width: 1180px) {
  .product-compact-copy { width: 66%; }
  .product-compact-copy h2 { font-size: 19pt; }
  .product-compact-copy h3 { font-size: 14pt; }
  .product-compact-copy p { font-size: 8.5pt; }
  .product-future-research h2,
  .product-future-inquiry h2 { font-size: 34pt; }
}

@media (max-width: 980px) {
  .company-page .overview-package-secondary { transform: none; }
  .product-intro-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "proto"
      "copy";
    grid-template-rows: auto;
    gap: 32px;
  }
  .product-intro-proto img { max-width: 620px; }
  .product-pair-layout { grid-template-rows: none; }
  .product-compact-card { min-height: 560px; }
  .product-compact-copy { width: 72%; }
  .product-future-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .product-intro-layout { gap: 24pt; }
  .product-compact-card { min-height: 680px; }
  .product-compact-copy { width: 100%; justify-content: flex-end; background: linear-gradient(180deg, transparent 10%, rgba(0, 9, 20, 0.92) 44%, #000914 100%); }
  .product-compact-copy h2 { font-size: 21pt; }
  .product-compact-copy h3 { font-size: 15pt; }
  .product-compact-copy p { font-size: 9pt; }
  .product-future-section { height: auto !important; min-height: auto !important; }
  .product-future-layout { width: calc(100% - 28px); padding: 72px 0; }
  .product-future-research h2,
  .product-future-inquiry h2 { font-size: 28pt; }
}

@media (prefers-reduced-motion: reduce) {
  .developing-status::before { animation: none; }
}

/* 09번째 제품 중앙 정렬·후속 연구 카드·고정 상하단 */
.system-page main [data-snap-section] { scroll-margin-top: 0; }

.product-pair-layout {
  height: 100%;
  align-content: center;
  padding-block: clamp(28px, 3vw, 40px);
}

.astro-compact-card,
.platform-compact-card { background-color: #07131e; }

.product-compact-copy {
  width: 56%;
  background: linear-gradient(90deg, #000914 0%, rgba(0, 9, 20, 0.98) 66%, rgba(0, 9, 20, 0.78) 84%, transparent 100%);
}

.product-future-layout {
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 2.2vw, 28px);
  align-content: center;
  padding-block: clamp(26px, 3vw, 42px);
}

.product-future-layout > h2 {
  margin: 0;
  color: #ffffff;
  font-size: 34pt;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.future-product-cards {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.future-product-card {
  position: relative;
  min-width: 0;
  min-height: 230px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #07131e;
}

.future-image-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(200, 233, 250, 0.56);
  background:
    linear-gradient(135deg, transparent 48%, rgba(115, 178, 206, 0.14) 49% 51%, transparent 52%),
    radial-gradient(circle at 72% 28%, rgba(115, 178, 206, 0.12), transparent 34%),
    #07131e;
  font-size: 9pt;
}

.future-card-copy {
  position: absolute;
  inset: auto 0 0;
  min-height: 42%;
  padding: clamp(20px, 2.2vw, 30px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 9, 20, 0.88) 34%, #000914 100%);
}

.future-card-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20pt;
  line-height: 1.1;
}

.future-card-copy p {
  margin: 6px 0 0;
  color: #c8e9fa;
  font-size: 11pt;
}

.future-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  padding: 5px 10px;
  border: 1px solid rgba(200, 233, 250, 0.64);
  border-radius: 999px;
  color: #c8e9fa;
  font-size: 9pt;
}

.future-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8e9fa;
  box-shadow: 0 0 10px rgba(200, 233, 250, 0.84);
  animation: developing-dot-blink 1.4s ease-in-out infinite;
}

.product-future-inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-future-inquiry p {
  margin: 0;
  color: #ffffff;
  font-size: 20pt;
  font-weight: 700;
}

.product-future-inquiry .button {
  margin-top: 0;
  flex: none;
}

.fixed-chrome-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  background: #000914;
  backdrop-filter: none;
}

.fixed-chrome-page main { padding-top: var(--header-h); }

.fixed-chrome-page .careers-split-stage,
.fixed-chrome-page .contact-split-stage {
  min-height: calc(100svh - var(--header-h) - var(--company-footer-h));
}

.fixed-chrome-page .site-footer {
  position: fixed;
  z-index: 1000;
  inset: auto 0 0;
  height: var(--company-footer-h);
  padding: 12px 0;
  border-top: 1px solid rgba(200, 233, 250, 0.16);
  background: #000914;
}

.fixed-chrome-page .nav-shell,
.fixed-chrome-page .site-footer .footer-inner {
  width: var(--company-content-width);
}

.fixed-chrome-page .site-footer .footer-inner {
  height: 100%;
  align-items: center;
}

.fixed-chrome-page .site-footer .footer-meta { font-size: 0.72rem; line-height: 1.35; }
.fixed-chrome-page .site-footer .footer-representative { margin-top: 3px !important; }

.fixed-chrome-page .site-footer .footer-instagram,
.fixed-chrome-page .site-footer .footer-linkedin { width: 36px; height: 36px; }

.company-page .site-footer .footer-brand,
.system-page .site-footer .footer-brand,
.fixed-chrome-page .site-footer .footer-brand {
  width: 255px;
  height: 54px;
}

.company-page .site-footer .footer-brand img,
.system-page .site-footer .footer-brand img,
.fixed-chrome-page .site-footer .footer-brand img {
  width: 300px;
  max-width: none;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.careers-openings {
  border-top: 1px solid rgba(200, 233, 250, 0.22);
  border-bottom: 1px solid rgba(200, 233, 250, 0.22);
}

.contact-row { border-bottom: 1px solid rgba(200, 233, 250, 0.18); }

@media (max-width: 1180px) {
  .product-compact-copy { width: 62%; }
  .product-future-layout > h2 { font-size: 30pt; }
}

@media (max-width: 980px) {
  .product-compact-copy { width: 70%; }
  .fixed-chrome-page .careers-split-stage,
  .fixed-chrome-page .contact-split-stage { min-height: auto; }
  .fixed-chrome-page main { padding-bottom: var(--company-footer-h); }
}

@media (max-width: 640px) {
  .future-product-cards { grid-template-columns: 1fr; }
  .future-product-card { min-height: 320px; }
  .product-future-inquiry { align-items: flex-start; flex-direction: column; }
  .product-future-inquiry p { font-size: 16pt; }
  .company-page .site-footer .footer-brand,
  .system-page .site-footer .footer-brand,
  .fixed-chrome-page .site-footer .footer-brand { width: 122px; height: 36px; }
  .company-page .site-footer .footer-brand img,
  .system-page .site-footer .footer-brand img,
  .fixed-chrome-page .site-footer .footer-brand img { width: 150px; left: -10px; }
  .fixed-chrome-page .site-footer { padding: 10px 0; }
  .fixed-chrome-page .site-footer .footer-inner { grid-template-columns: 122px minmax(0, 1fr); gap: 8px; }
  .fixed-chrome-page .site-footer .footer-contact-cluster { min-width: 0; align-items: flex-end; gap: 6px; }
  .fixed-chrome-page .site-footer .footer-meta { min-width: 0; font-size: 7px; line-height: 1.35; }
  .fixed-chrome-page .site-footer .footer-socials { flex-direction: column; gap: 5px; }
  .fixed-chrome-page .site-footer .footer-instagram,
  .fixed-chrome-page .site-footer .footer-linkedin { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .future-status::before { animation: none; }
}

/* 10번째 제품 사진 채움·후속 연구 높이 및 채용 선 조정 */
.astro-compact-card,
.platform-compact-card {
  background-size: cover;
  background-repeat: no-repeat;
}

.product-future-layout {
  grid-template-rows: auto auto auto;
  align-content: center;
}

.future-product-cards {
  height: clamp(380px, 48svh, 460px);
}

.future-product-card {
  min-height: 380px;
}

.future-card-copy { min-height: 34%; }

.careers-openings { border-top: 0; }

@media (max-width: 980px) {
  .future-product-cards { height: auto; }
}

@media (max-width: 640px) {
  .future-product-card { min-height: 360px; }
}

/* 11번째 수정: 제품 초점, 후속 연구 이미지, 성과 첫 화면 */
.product-future-inquiry {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}

.product-future-inquiry .button {
  margin-top: 14px;
}

.future-image-placeholder {
  background-image:
    linear-gradient(180deg, rgba(0, 9, 20, 0.08) 0%, rgba(0, 9, 20, 0.16) 58%, rgba(0, 9, 20, 0.62) 100%),
    var(--future-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#drone-hsi .future-image-placeholder { background-position: center 43%; }
#space-hsi .future-image-placeholder { background-position: center; }

.achievement-intro-section {
  overflow: hidden;
  background: #000914;
}

.achievement-intro-layout {
  position: relative;
  width: var(--company-content-width);
  min-height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: center;
}

.achievement-intro-copy {
  position: relative;
  z-index: 2;
  padding-right: clamp(24px, 3vw, 54px);
}

.achievement-intro-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.25vw, 42pt);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.achievement-intro-copy h1 span,
.achievement-intro-copy p span {
  display: block;
}

.achievement-intro-copy p {
  margin: clamp(28px, 3.2vw, 48px) 0 0;
  color: #c8e9fa;
  font-size: clamp(13px, 1.02vw, 12pt);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.018em;
}

.achievement-intro-visual {
  position: relative;
  height: min(70svh, 680px);
  min-height: 440px;
  background-image: url('assets/images/optimized/experiment-1200.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.achievement-intro-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #000914 0%,
    rgba(0, 9, 20, 0.92) 10%,
    rgba(0, 9, 20, 0.66) 25%,
    rgba(0, 9, 20, 0.28) 43%,
    rgba(0, 9, 20, 0) 66%
  );
}

@media (max-width: 980px) {
  .astro-compact-card,
  .platform-compact-card { --compact-product-size: cover !important; }

  .achievement-intro-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(260px, 42svh);
    align-content: center;
  }

  .achievement-intro-copy {
    padding: 28px 0 20px;
  }

  .achievement-intro-visual {
    height: 42svh;
    min-height: 260px;
  }

  .achievement-intro-visual::before {
    background: linear-gradient(
      180deg,
      #000914 0%,
      rgba(0, 9, 20, 0.72) 18%,
      rgba(0, 9, 20, 0.16) 52%,
      rgba(0, 9, 20, 0) 78%
    );
  }
}

@media (max-width: 640px) {
  .achievement-intro-copy h1 { font-size: 28px; }
  .achievement-intro-copy p { font-size: 12px; line-height: 1.6; }
  .achievement-intro-copy p span { display: inline; }
}

/* 12번째 수정: 회사소개 배경, 성과 재구성, 제품 후속 연구 화면 보정 */
.company-page .overview-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #000914;
  background-image: url('assets/images/optimized/office-1200.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 48%;
}

.company-page .overview-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  opacity: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #000914 0%,
    rgba(0, 9, 20, 0.97) 30%,
    rgba(0, 9, 20, 0.82) 56%,
    rgba(0, 9, 20, 0.5) 78%,
    rgba(0, 9, 20, 0.26) 100%
  );
}

.company-page .overview-hero-layout {
  position: relative;
  z-index: 1;
}

.company-page .overview-hero-secondary {
  padding: clamp(20px, 2.4vw, 34px);
  background: linear-gradient(90deg, rgba(0, 9, 20, 0.12), rgba(0, 9, 20, 0.62));
}

.technical-carousel-section {
  overflow: hidden;
  background: #000914;
}

.technical-carousel-section .field-showcase-layout {
  width: var(--company-content-width);
  min-height: 100%;
  padding-block: clamp(26px, 3vw, 42px);
  gap: clamp(18px, 2vw, 28px);
}

.technical-carousel-section .field-showcase-layout > h2 {
  font-size: 42pt;
}

.technical-carousel-section .field-carousel-track {
  transition-duration: 1500ms;
  transition-timing-function: cubic-bezier(0.33, 0.05, 0.18, 1);
}

.technical-carousel-section .field-carousel-copy {
  background: linear-gradient(90deg, rgba(0, 9, 20, 0.92), rgba(0, 9, 20, 0.68));
}

.technical-carousel-section .field-carousel-copy h3 {
  max-width: 460px;
}

.achievements-page .history-section > .container {
  min-height: 100%;
  padding-block: clamp(8px, 1.2vh, 14px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(4px, 0.8vh, 10px);
  align-content: center;
  align-items: start;
}

.achievements-page .history-section .section-head {
  margin: 0;
  padding: clamp(8px, 1vh, 12px) 0 0;
}

.achievements-page .history-section .timeline {
  width: 100%;
  min-height: 0;
  max-height: none;
  display: grid;
  align-content: center;
  overflow: visible;
}

.achievements-page .timeline-row {
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 10px 0;
}

.achievements-page .timeline-row time {
  font-size: 11pt;
}

.achievements-page .timeline-row p {
  font-size: 11pt;
  line-height: 1.35;
}

.achievement-partners-combined {
  overflow: hidden;
  background: #000914;
}

.achievement-partners-combined > .container {
  min-height: 100%;
  padding-block: clamp(24px, 3vw, 42px);
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  justify-items: start;
  gap: clamp(16px, 2vw, 26px);
}

.achievement-partners-combined .section-head,
.achievement-partners-combined .partner-static {
  margin: 0;
  padding: 0;
}

.achievement-partners-combined .section-head h2 {
  margin: 0;
  font-size: 42pt;
}

.achievement-partners-combined .partner-card {
  width: 260px;
  height: 132px;
  padding: 24px;
  border-radius: 0;
}

.achievement-partners-combined .partner-card img {
  max-width: 200px;
  max-height: 82px;
}

.achievement-partner-closing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.achievement-partner-closing h3 {
  margin: 0;
  color: #ffffff;
  font-size: 28pt;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.achievement-partner-closing h3 span { display: block; }

.achievement-partner-closing .button {
  margin-top: 16px;
  color: #000000;
  background: #73b2ce;
}

.products-page .product-future-layout {
  height: 100%;
  padding-block: clamp(14px, 1.8vw, 24px) clamp(10px, 1.3vw, 18px);
  grid-template-rows: auto minmax(280px, 1fr) auto;
  align-content: stretch;
  gap: clamp(10px, 1.4vw, 18px);
}

.products-page .future-product-cards {
  height: auto;
  min-height: 0;
}

.products-page .future-product-card {
  min-height: 0;
}

.products-page .product-future-inquiry .button {
  margin-top: 10px;
}

@media (max-width: 1180px) {
  .technical-carousel-section .field-showcase-layout > h2,
  .achievement-partners-combined .section-head h2 { font-size: 34pt; }
  .achievement-partner-closing h3 { font-size: 24pt; }
  .achievements-page .timeline-row time,
  .achievements-page .timeline-row p { font-size: 10pt; }
}

@media (max-width: 980px) {
  .company-page .overview-hero::before {
    background: rgba(0, 9, 20, 0.74);
  }

  .technical-carousel-section .field-showcase-layout,
  .achievement-partners-combined > .container {
    width: var(--company-content-width);
    min-height: 760px;
  }

  .achievements-page .history-section > .container {
    grid-template-columns: 1fr;
  }

  .products-page .product-future-layout {
    height: auto;
    grid-template-rows: auto auto auto;
  }

  .products-page .future-product-card { min-height: 360px; }
}

@media (max-width: 640px) {
  .technical-carousel-section .field-showcase-layout,
  .achievement-partners-combined > .container { min-height: auto; }
  .technical-carousel-section .field-showcase-layout > h2,
  .achievement-partners-combined .section-head h2 { font-size: 28pt; }
  .achievements-page .timeline-row { grid-template-columns: 1fr; gap: 4px; }
  .achievement-partner-closing h3 { font-size: 22pt; }
}

/* 13번째 수정: 사진 중심 2:3 회사소개, 제품 사진·후속연구 복구, 단일 화면 표시 */
.company-page .overview-hero {
  background-image: url('assets/images/optimized/office-1200.webp');
  background-size: cover;
  background-position: center;
}

.company-page .overview-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    90deg,
    #000914 0%,
    #000914 36%,
    rgba(0, 9, 20, 0.98) 40%,
    rgba(0, 9, 20, 0.66) 44%,
    rgba(0, 9, 20, 0.24) 48%,
    rgba(0, 9, 20, 0) 52%
  );
}

.company-page .overview-hero-layout {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 0;
}

.company-page .overview-hero-primary {
  width: 100%;
  justify-self: stretch;
  padding-right: clamp(34px, 5vw, 82px);
}

.company-page .overview-hero-secondary {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
}

.company-page .overview-hero-primary .company-intro-block {
  margin-top: 28pt;
}

.company-page .overview-hero-primary .hero-tagline {
  margin-top: 20pt;
  font-size: 18pt;
}

.company-page .overview-hero .hero-actions {
  margin-top: 22pt;
}

.company-page .overview-story {
  position: relative;
  isolation: isolate;
  background-color: #000914;
  background-image: url('assets/images/optimized/laser-experiment-1086.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.company-page .overview-story::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  opacity: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #000914 0%,
    #000914 36%,
    rgba(0, 9, 20, 0.98) 40%,
    rgba(0, 9, 20, 0.66) 44%,
    rgba(0, 9, 20, 0.24) 48%,
    rgba(0, 9, 20, 0) 52%
  );
}

.company-page .overview-story-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 0;
}

.company-page .overview-story-copy {
  width: 100%;
  justify-self: stretch;
  padding-right: clamp(34px, 5vw, 82px);
}

.company-page .overview-story-visual {
  width: 100%;
  height: 100%;
}

.products-page .astro-compact-card,
.products-page .platform-compact-card {
  background-size: 112% auto;
}

.products-page .product-future-layout {
  height: 100%;
  padding-block: clamp(16px, 2vw, 26px) clamp(26px, 3vw, 40px);
  grid-template-rows: auto auto auto;
  align-content: center;
  gap: clamp(12px, 1.6vw, 20px);
}

.products-page .future-product-cards {
  height: clamp(340px, 42svh, 400px);
  min-height: 340px;
}

.products-page .future-product-card {
  min-height: 340px;
}

.products-page .future-image-placeholder {
  display: block;
  opacity: 1;
}

.products-page .future-card-copy {
  display: flex;
  min-height: 34%;
  opacity: 1;
}

.products-page .product-future-inquiry {
  padding-bottom: 8px;
}

.products-page .product-future-inquiry .button {
  margin-top: 10px;
}

.achievement-partners-combined .partner-card {
  border-radius: 22px;
}

.achievement-partner-closing {
  margin-top: clamp(22px, 3vw, 42px);
}

.fixed-chrome-page .fixed-page-indicator {
  right: 18px;
  left: auto;
  display: grid;
}

.company-page .overview-hero::after,
.company-page .overview-hero-primary::before,
.company-page .overview-hero-primary::after,
.company-page .overview-hero-secondary::before,
.company-page .overview-hero-secondary::after,
.company-page .overview-story::after,
.company-page .overview-story-copy::before,
.company-page .overview-story-copy::after,
.company-page .overview-story-visual::before,
.company-page .overview-story-visual::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 1180px) {
  .company-page .overview-hero-primary h1 { font-size: 42pt; }
  .company-page .overview-hero-primary .company-intro-block { font-size: 15pt; }
  .company-page .overview-hero-primary .hero-tagline { font-size: 15pt; }
}

@media (min-width: 981px) and (max-height: 800px) {
  .company-page .overview-hero-layout {
    padding-block: 18px;
  }

  .company-page .overview-hero-primary h1 {
    font-size: 38pt;
    line-height: 1.04;
  }

  .company-page .overview-hero-primary .company-intro-block {
    margin-top: 15px;
    font-size: 11.5pt;
    line-height: 1.24;
  }

  .company-page .overview-hero-primary .hero-tagline {
    margin-top: 14px;
    font-size: 13pt;
    line-height: 1.22;
  }

  .company-page .overview-hero .hero-actions {
    margin-top: 14px;
  }

  .company-page .overview-hero .button {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 13pt;
  }

  .company-page .overview-story-layout {
    padding-block: 14px;
  }

  .company-page .overview-story-copy h2 {
    font-size: 26pt;
    line-height: 1.1;
  }

  .company-page .overview-story-body {
    margin-top: 18px;
    font-size: 8.8pt;
    line-height: 1.4;
  }

  .company-page .overview-story-body p {
    margin-bottom: 9px;
  }
}

/* 21번째 수정: 성과 페이지 기술 검증 카드를 메인 분야 카드와 통일 */
.technical-carousel-section .field-carousel {
  position: relative;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
}

.technical-carousel-section .field-carousel-viewport {
  min-height: clamp(360px, 50svh, 580px);
  border: 1px solid rgba(115, 178, 206, 0.18);
  border-radius: 12px;
  background: #000914;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.technical-carousel-section .field-carousel-controls {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 18px;
  left: auto;
  margin: 0;
  transform: none;
}

.technical-carousel-section .field-carousel-slide {
  justify-content: flex-start;
}

.technical-carousel-section .field-carousel-slide::before {
  right: 0;
  left: auto;
  width: 58%;
}

.technical-carousel-section .field-carousel-slide::after {
  right: auto;
  left: 42%;
  width: clamp(88px, 8vw, 138px);
  background: linear-gradient(90deg, #000914 0%, rgba(0, 9, 20, 0.7) 42%, rgba(0, 9, 20, 0) 100%);
}

.technical-carousel-section .field-carousel-copy {
  width: 42%;
  margin-left: 0;
  padding: clamp(34px, 4.2vw, 68px);
}

.technical-carousel-section .field-carousel-copy h3 {
  max-width: 520px;
  margin-bottom: clamp(18px, 2.2vh, 26px);
  font-size: clamp(1.85rem, 2.2vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.technical-carousel-section .field-carousel-copy h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 18px;
  background: #73d6f5;
}

.technical-carousel-section .field-carousel-copy p {
  max-width: 540px;
  color: #d3e9f2;
  font-size: clamp(1.03rem, 1.14vw, 1.2rem);
  line-height: 1.72;
  letter-spacing: -0.012em;
}

@media (max-width: 1180px) {
  .technical-carousel-section .field-carousel-slide::before { width: 56%; }
  .technical-carousel-section .field-carousel-slide::after { left: 44%; }

  .technical-carousel-section .field-carousel-copy {
    width: 44%;
    padding: clamp(30px, 3.5vw, 46px);
  }

  .technical-carousel-section .field-carousel-copy h3 {
    font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  }

  .technical-carousel-section .field-carousel-copy p {
    font-size: clamp(1rem, 1.52vw, 1.1rem);
  }

  .technical-carousel-section .field-carousel-copy p span { display: inline; }
  .technical-carousel-section .field-carousel-copy p span:not(:last-child)::after { content: " "; }
}

@media (max-width: 768px) {
  .technical-carousel-section .field-carousel-viewport {
    min-height: 570px;
    border-radius: 10px;
  }

  .technical-carousel-section .field-carousel-slide::before {
    inset: 0;
    width: 100%;
    background-position: var(--field-position, center);
  }

  .technical-carousel-section .field-carousel-slide::after { display: none; }

  .technical-carousel-section .field-carousel-copy {
    width: 100%;
    height: 100%;
    margin-left: 0;
    justify-content: flex-end;
    padding: 40px 28px 108px;
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.06) 18%, rgba(0, 9, 20, 0.7) 52%, #000914 88%);
  }

  .technical-carousel-section .field-carousel-copy h3 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 6.2vw, 2.1rem);
  }

  .technical-carousel-section .field-carousel-copy h3::after {
    width: 42px;
    margin-top: 14px;
  }

  .technical-carousel-section .field-carousel-copy p {
    max-width: 620px;
    font-size: clamp(1rem, 3.6vw, 1.12rem);
    line-height: 1.65;
  }

  .technical-carousel-section .field-carousel-controls {
    right: auto;
    bottom: 16px;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 24px);
    min-height: 48px;
    padding: 6px 8px;
    flex-wrap: nowrap;
    gap: 6px;
    transform: translateX(-50%);
  }

  .technical-carousel-section .field-carousel-controls .field-carousel-dots {
    order: 0;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .technical-carousel-section .field-carousel-viewport { min-height: 540px; }

  .technical-carousel-section .field-carousel-copy {
    padding: 32px 22px 100px;
  }

  .technical-carousel-section .field-carousel-copy h3 {
    font-size: clamp(1.6rem, 7.2vw, 1.9rem);
  }

  .technical-carousel-section .field-carousel-copy p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .technical-carousel-section { min-height: 0; }

  .technical-carousel-section .field-showcase-layout {
    padding-block: 18px;
    gap: 16px;
  }

  .technical-carousel-section .field-showcase-layout > h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.08;
  }

  .technical-carousel-section .field-carousel-viewport { min-height: 0; }
  .technical-carousel-section .field-carousel-copy { padding-block: 28px; }
  .technical-carousel-section .field-carousel-copy h3 { margin-bottom: 14px; font-size: 1.65rem; }
  .technical-carousel-section .field-carousel-copy h3::after { margin-top: 12px; }
  .technical-carousel-section .field-carousel-copy p { font-size: 0.92rem; line-height: 1.58; }
}

@media (max-width: 980px) {
  .company-page .overview-hero::before,
  .company-page .overview-story::before {
    background: linear-gradient(
      180deg,
      #000914 0%,
      #000914 48%,
      rgba(0, 9, 20, 0.82) 58%,
      rgba(0, 9, 20, 0.28) 70%,
      rgba(0, 9, 20, 0) 82%
    );
  }

  .company-page .overview-hero-layout,
  .company-page .overview-story-layout {
    grid-template-columns: 1fr;
  }

  .company-page .overview-hero-secondary,
  .company-page .overview-story-visual { min-height: 38svh; }

  .products-page .astro-compact-card,
  .products-page .platform-compact-card { background-size: cover; }

  .products-page .future-product-cards {
    height: auto;
    min-height: 0;
  }

  .fixed-chrome-page .fixed-page-indicator {
    display: grid !important;
  }
}

@media (max-width: 640px) {
  .company-page .overview-hero-primary,
  .company-page .overview-story-copy { padding-right: 0; }
  .fixed-chrome-page .fixed-page-indicator { right: 8px; left: auto; }
}

/* 16번째 수정: 분야·주요기술검증의 완전한 검정 텍스트 면과 경계 연결 */
.company-page .field-carousel-slide {
  overflow: hidden;
}

.company-page .field-carousel-copy {
  position: relative;
  z-index: 1;
  width: 40%;
  min-width: 0;
  background: #000914;
}

.company-page .field-carousel-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 100%;
  width: clamp(72px, 9vw, 150px);
  background: linear-gradient(90deg, #000914 0%, rgba(0, 9, 20, 0.7) 42%, rgba(0, 9, 20, 0) 100%);
  pointer-events: none;
}

.technical-carousel-section .field-carousel-slide {
  display: flex;
  justify-content: flex-end;
}

.technical-carousel-section .field-carousel-copy {
  position: relative;
  z-index: 1;
  width: 40%;
  min-width: 0;
  margin-left: auto;
  background: #000914;
}

.technical-carousel-section .field-carousel-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 100%;
  bottom: 0;
  width: clamp(72px, 9vw, 150px);
  background: linear-gradient(270deg, #000914 0%, rgba(0, 9, 20, 0.7) 42%, rgba(0, 9, 20, 0) 100%);
  pointer-events: none;
}

@media (max-width: 980px) {
  .company-page .field-carousel-copy,
  .technical-carousel-section .field-carousel-copy {
    width: 52%;
  }
}

@media (max-width: 640px) {
  .company-page .field-carousel-copy,
  .technical-carousel-section .field-carousel-copy {
    width: 76%;
  }

  .company-page .field-carousel-copy::after,
  .technical-carousel-section .field-carousel-copy::before {
    width: 56px;
  }
}

/* 17번째 수정: 사진 면과 검정 면을 실제 3:2 패널로 분리 */
.company-page .field-carousel-slide,
.technical-carousel-section .field-carousel-slide {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #000914;
  background-image: none;
}

.company-page .field-carousel-slide::before,
.technical-carousel-section .field-carousel-slide::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background-color: #000914;
  background-image: var(--field-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--field-position, center);
}

.company-page .field-carousel-slide::before {
  right: 0;
}

.technical-carousel-section .field-carousel-slide::before {
  left: 0;
}

.company-page .field-carousel-slide::after,
.technical-carousel-section .field-carousel-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: clamp(72px, 9vw, 150px);
  pointer-events: none;
}

.company-page .field-carousel-slide::after {
  left: 40%;
  background: linear-gradient(90deg, #000914 0%, rgba(0, 9, 20, 0.7) 42%, rgba(0, 9, 20, 0) 100%);
}

.technical-carousel-section .field-carousel-slide::after {
  right: 40%;
  background: linear-gradient(90deg, rgba(0, 9, 20, 0) 0%, rgba(0, 9, 20, 0.7) 58%, #000914 100%);
}

.company-page .field-carousel-copy,
.technical-carousel-section .field-carousel-copy {
  position: relative;
  z-index: 2;
  width: 40%;
  min-width: 0;
  background: #000914;
}

.company-page .field-carousel-copy::after,
.technical-carousel-section .field-carousel-copy::before {
  content: none;
  display: none;
}

.technical-carousel-section .field-carousel-copy {
  margin-left: auto;
}

@media (max-width: 640px) {
  .company-page .field-carousel-slide::after,
  .technical-carousel-section .field-carousel-slide::after {
    width: 56px;
  }

  .company-page .field-carousel-copy,
  .technical-carousel-section .field-carousel-copy {
    padding-inline: 20px;
  }

  .company-page .field-carousel-copy h3,
  .technical-carousel-section .field-carousel-copy h3 {
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .company-page .field-carousel-copy p,
  .technical-carousel-section .field-carousel-copy p {
    font-size: clamp(9px, 2.7vw, 12px);
  }
}

/* 18번째 수정: 주요 연혁 가독성·중앙 로고 배경, 파트너 화면 제거 */
.achievements-page .history-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000914;
}

.achievements-page .history-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(58vw, 680px);
  aspect-ratio: 1;
  background: url('assets/images/optimized/brand-mark-720.webp') center / contain no-repeat;
  opacity: 0.2;
  filter: brightness(0.58) saturate(1.15) contrast(1.35);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.achievements-page .history-section > .container {
  position: relative;
  z-index: 1;
}

.achievements-page .timeline-row {
  padding-block: 10px;
}

.achievements-page .timeline-row time,
.achievements-page .timeline-row p {
  font-size: 14pt;
  line-height: 1.3;
  text-shadow: 0 2px 12px #000914;
}

@media (max-width: 1180px) {
  .achievements-page .timeline-row time,
  .achievements-page .timeline-row p {
    font-size: 12.5pt;
  }
}

@media (max-width: 640px) {
  .achievements-page .history-section::before {
    width: min(110vw, 560px);
    opacity: 0.16;
  }

  .achievements-page .timeline-row time,
  .achievements-page .timeline-row p {
    font-size: 11.5pt;
  }
}

/* 문의 폼 제출 상태 및 Turnstile */
.contact-form { position: relative; }

.contact-form .form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  margin: -1px;
  padding: 0;
  border: 0;
}

.contact-form .contact-turnstile {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 18px;
  overflow: hidden;
}

.contact-form .contact-turnstile:not(:empty) { min-height: 65px; }
.contact-form .contact-turnstile > div,
.contact-form .contact-turnstile iframe { max-width: 100% !important; }

.contact-form .form-actions { flex-wrap: wrap; }
.contact-form .form-status:empty { display: none; }
.contact-form .form-status.is-info { color: var(--cyan); }
.contact-form .form-status.is-success { color: var(--mint); }
.contact-form .form-status.is-error { color: var(--ink); }

.contact-form [aria-invalid="true"] {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px rgba(243, 248, 251, 0.28);
}

.contact-form [aria-invalid="true"]:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(114, 214, 245, 0.34);
}

.contact-form button:disabled,
.contact-form button:disabled:hover {
  cursor: wait;
  opacity: 0.62;
  transform: none;
  border-color: var(--cyan);
}

.contact-form .button.primary:disabled:hover { background: var(--cyan); }

/* 19번째 수정: 천체 관측 장비 중심의 메인 히어로 */
.company-page main > .overview-hero {
  position: relative;
  isolation: isolate;
  height: calc(100svh - var(--header-h));
  min-height: 760px;
  overflow: hidden;
  background-color: #010c18;
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 62% center;
}

.company-page .overview-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 12, 24, 0) 54%, rgba(1, 8, 17, 0.5) 100%),
    linear-gradient(
      90deg,
      rgba(1, 12, 24, 0.96) 0%,
      rgba(1, 12, 24, 0.9) 25%,
      rgba(1, 12, 24, 0.54) 48%,
      rgba(1, 12, 24, 0.12) 70%,
      rgba(1, 12, 24, 0) 100%
    );
}

.company-page .overview-hero-layout {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(80px, 12vw, 180px)), var(--max));
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(64px, 7vh, 92px) 0;
  display: flex;
  align-items: center;
}

.company-page .overview-hero-primary {
  width: min(100%, 800px);
  max-width: 800px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.company-page .overview-hero-secondary { display: none; }

.company-page .overview-hero-primary h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 4.3vw, 5.15rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.company-page .overview-hero-primary h1 span {
  display: block;
  white-space: nowrap;
}

.company-page .overview-hero-primary h1 span:last-child { color: #e3f5ff; }

.company-page .overview-hero-primary .company-intro-block {
  order: 3;
  max-width: 620px;
  margin-top: clamp(34px, 4.5vh, 48px);
  color: rgba(239, 247, 251, 0.88);
  font-size: clamp(1.08rem, 1.2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.018em;
}

.company-page .overview-hero-primary .company-intro-block::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 30px;
  border-radius: 3px;
  background: #73d6f5;
}

.company-page .overview-hero-primary .company-intro-block span { display: block; }

.company-page .overview-hero-primary .hero-tagline {
  order: 2;
  max-width: 760px;
  margin: 30px 0 0;
  color: #9adcf2;
  font-size: clamp(2.7rem, 3vw, 3.45rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.company-page .overview-hero .hero-actions {
  order: 4;
  margin-top: 34px;
  gap: 16px;
}

.company-page .overview-hero .button {
  min-width: 200px;
  min-height: 58px;
  padding: 0 28px;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(3, 15, 27, 0.3);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(5px);
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.company-page .overview-hero .button::after {
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1;
}

.company-page .overview-hero .button.primary {
  color: #00151e;
  border-color: #73d6f5;
  background: #73d6f5;
}

.company-page .overview-hero .button.collaboration {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(3, 15, 27, 0.28);
}

.company-page .overview-hero .button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.company-page .overview-hero .button.collaboration:hover {
  border-color: rgba(115, 214, 245, 0.86);
  background: rgba(115, 214, 245, 0.14);
}

.company-page .overview-hero .button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

@media (max-width: 1299px) {
  .company-page main > .overview-hero { background-position: 60% center; }

  .company-page .overview-hero::before {
    background:
      linear-gradient(180deg, rgba(1, 12, 24, 0) 50%, rgba(1, 8, 17, 0.58) 100%),
      linear-gradient(90deg, rgba(1, 12, 24, 0.97) 0%, rgba(1, 12, 24, 0.9) 34%, rgba(1, 12, 24, 0.42) 62%, rgba(1, 12, 24, 0.06) 100%);
  }

  .company-page .overview-hero-layout {
    width: min(calc(100% - 64px), var(--max));
    padding-block: 58px;
  }

  .company-page .overview-hero-primary { width: min(100%, 760px); }

  .company-page .overview-hero-primary h1 {
    font-size: clamp(3rem, 5.8vw, 4.6rem);
  }

  .company-page .overview-hero-primary .company-intro-block {
    max-width: 600px;
    font-size: clamp(1rem, 1.7vw, 1.15rem);
  }
}

@media (max-width: 768px) {
  .company-page main > .overview-hero {
    height: auto;
    min-height: max(680px, calc(100svh - var(--header-h)));
    background-position: 66% center;
  }

  .company-page .overview-hero::before {
    background:
      linear-gradient(180deg, rgba(1, 12, 24, 0.14) 35%, rgba(1, 8, 17, 0.72) 100%),
      linear-gradient(90deg, rgba(1, 12, 24, 0.98) 0%, rgba(1, 12, 24, 0.93) 48%, rgba(1, 12, 24, 0.64) 78%, rgba(1, 12, 24, 0.3) 100%);
  }

  .company-page .overview-hero-layout {
    width: calc(100% - 32px);
    padding: 52px 0 64px;
  }

  .company-page .overview-hero-primary h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 8.5vw, 3.35rem);
    line-height: 1.12;
  }

  .company-page .overview-hero-primary h1 span { white-space: normal; }

  .company-page .overview-hero-primary .company-intro-block {
    max-width: 560px;
    margin-top: 30px;
    font-size: clamp(0.96rem, 3.9vw, 1.08rem);
    line-height: 1.65;
  }

  .company-page .overview-hero-primary .company-intro-block::before {
    width: 56px;
    height: 2px;
    margin-bottom: 24px;
  }

  .company-page .overview-hero-primary .company-intro-block span { display: inline; }
  .company-page .overview-hero-primary .company-intro-block span:not(:last-child)::after { content: " "; }

  .company-page .overview-hero-primary .hero-tagline {
    margin-top: 24px;
    max-width: 24ch;
    font-size: clamp(1.55rem, 6.4vw, 2rem);
    line-height: 1.25;
  }

  .company-page .overview-hero .hero-actions { margin-top: 28px; }

  .company-page .overview-hero .button {
    min-width: 0;
    min-height: 54px;
    padding-inline: 22px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .company-page .overview-hero .hero-actions {
    width: min(100%, 220px);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .company-page .overview-hero .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-inline: 18px;
  }
}

/* 20번째 수정: 분야 카드 가독성과 화면비 대응 */
.company-page .field-carousel {
  position: relative;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
}

.company-page .field-carousel-viewport {
  min-height: clamp(360px, 50svh, 580px);
  border: 1px solid rgba(115, 178, 206, 0.18);
  border-radius: 12px;
  background: #000914;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.company-page .field-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: auto;
  margin: 0;
  transform: none;
}

.company-page .field-carousel-slide::before { width: 58%; }

.company-page .field-carousel-slide::after {
  left: 42%;
  width: clamp(88px, 8vw, 138px);
}

.company-page .field-carousel-copy {
  width: 42%;
  padding: clamp(34px, 4.2vw, 68px);
}

.company-page .field-carousel-copy h3 {
  max-width: 520px;
  margin-bottom: clamp(18px, 2.2vh, 26px);
  font-size: clamp(1.85rem, 2.2vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.company-page .field-carousel-copy h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 18px;
  background: #73d6f5;
}

.company-page .field-carousel-copy p {
  max-width: 540px;
  color: #d3e9f2;
  font-size: clamp(1.03rem, 1.14vw, 1.2rem);
  line-height: 1.72;
  letter-spacing: -0.012em;
}

.company-page .field-carousel-copy .field-link {
  min-height: 50px;
  margin-top: clamp(24px, 3vh, 34px);
  padding-inline: 24px;
  font-size: 1.25rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .company-page .field-carousel-slide::before { width: 56%; }
  .company-page .field-carousel-slide::after { left: 44%; }

  .company-page .field-carousel-copy {
    width: 44%;
    padding: clamp(30px, 3.5vw, 46px);
  }

  .company-page .field-carousel-copy h3 {
    font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  }

  .company-page .field-carousel-copy p {
    font-size: clamp(1rem, 1.52vw, 1.1rem);
  }

  .company-page .field-carousel-copy p span { display: inline; }
  .company-page .field-carousel-copy p span:not(:last-child)::after { content: " "; }
}

@media (max-width: 768px) {
  .company-page .field-carousel-viewport {
    min-height: 570px;
    border-radius: 10px;
  }

  .company-page .field-carousel-slide::before {
    inset: 0;
    width: 100%;
    background-position: var(--field-position, center);
  }

  .company-page .field-carousel-slide::after { display: none; }

  .company-page .field-carousel-copy {
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    padding: 40px 28px 108px;
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.06) 18%, rgba(0, 9, 20, 0.7) 52%, #000914 88%);
  }

  .company-page .field-carousel-copy h3 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 6.2vw, 2.1rem);
  }

  .company-page .field-carousel-copy h3::after {
    width: 42px;
    margin-top: 14px;
  }

  .company-page .field-carousel-copy p {
    max-width: 620px;
    font-size: clamp(1rem, 3.6vw, 1.12rem);
    line-height: 1.65;
  }

  .company-page .field-carousel-copy .field-link {
    min-height: 48px;
    margin-top: 22px;
  }

  .company-page .field-carousel-controls {
    right: auto;
    bottom: 16px;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 24px);
    min-height: 48px;
    padding: 6px 8px;
    flex-wrap: nowrap;
    gap: 6px;
    transform: translateX(-50%);
  }

  .company-page .field-carousel-controls .field-carousel-dots {
    order: 0;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .company-page .field-carousel-viewport { min-height: 540px; }

  .company-page .field-carousel-copy {
    padding: 32px 22px 100px;
  }

  .company-page .field-carousel-copy h3 {
    font-size: clamp(1.6rem, 7.2vw, 1.9rem);
  }

  .company-page .field-carousel-copy p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .company-page .field-carousel-copy .field-link { width: 100%; }
}

@media (min-width: 981px) and (max-height: 800px) {
  .company-page .field-showcase-section { min-height: 0; }

  .company-page .field-showcase-layout {
    padding-block: 18px;
    gap: 16px;
  }

  .company-page .field-showcase-layout > h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.08;
  }

  .company-page .field-carousel { gap: 10px; }
  .company-page .field-carousel-viewport { min-height: 0; }
  .company-page .field-carousel-copy { padding-block: 28px; }
  .company-page .field-carousel-copy h3 { margin-bottom: 14px; font-size: 1.65rem; }
  .company-page .field-carousel-copy h3::after { margin-top: 12px; }
  .company-page .field-carousel-copy p { font-size: 0.92rem; line-height: 1.58; }
  .company-page .field-carousel-copy .field-link { min-height: 44px; margin-top: 18px; }

  .company-page .field-carousel-control {
    width: 36px;
    height: 36px;
  }
}

/* 22번째 수정: 성과 카드에 메인 카드의 최종 레이아웃을 동일 적용 */
.technical-carousel-section .field-carousel-track {
  transition-duration: 1800ms;
  transition-timing-function: cubic-bezier(0.33, 0.05, 0.18, 1);
}

.technical-carousel-section .field-carousel {
  position: relative;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
}

.technical-carousel-section .field-carousel-viewport {
  min-height: clamp(360px, 50svh, 580px);
  border: 1px solid rgba(115, 178, 206, 0.18);
  border-radius: 12px;
  background: #000914;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.technical-carousel-section .field-carousel-controls {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 18px;
  left: auto;
  margin: 0;
  transform: none;
}

.technical-carousel-section .field-carousel-slide { justify-content: flex-start; }

.technical-carousel-section .field-carousel-slide::before {
  right: 0;
  left: auto;
  width: 58%;
}

.technical-carousel-section .field-carousel-slide::after {
  right: auto;
  left: 42%;
  width: clamp(88px, 8vw, 138px);
  background: linear-gradient(90deg, #000914 0%, rgba(0, 9, 20, 0.7) 42%, rgba(0, 9, 20, 0) 100%);
}

.technical-carousel-section .field-carousel-copy {
  width: 42%;
  margin-left: 0;
  padding: clamp(34px, 4.2vw, 68px);
}

.technical-carousel-section .field-carousel-copy h3 {
  max-width: 520px;
  margin-bottom: clamp(18px, 2.2vh, 26px);
  font-size: clamp(1.85rem, 2.2vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.technical-carousel-section .field-carousel-copy h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 18px;
  background: #73d6f5;
}

.technical-carousel-section .field-carousel-copy p {
  max-width: 540px;
  color: #d3e9f2;
  font-size: clamp(1.03rem, 1.14vw, 1.2rem);
  line-height: 1.72;
  letter-spacing: -0.012em;
}

@media (max-width: 1180px) {
  .technical-carousel-section .field-carousel-slide::before { width: 56%; }
  .technical-carousel-section .field-carousel-slide::after { left: 44%; }

  .technical-carousel-section .field-carousel-copy {
    width: 44%;
    padding: clamp(30px, 3.5vw, 46px);
  }

  .technical-carousel-section .field-carousel-copy h3 { font-size: clamp(1.7rem, 2.8vw, 2.1rem); }
  .technical-carousel-section .field-carousel-copy p { font-size: clamp(1rem, 1.52vw, 1.1rem); }
  .technical-carousel-section .field-carousel-copy p span { display: inline; }
  .technical-carousel-section .field-carousel-copy p span:not(:last-child)::after { content: " "; }
}

@media (max-width: 768px) {
  .technical-carousel-section .field-carousel-viewport {
    min-height: 570px;
    border-radius: 10px;
  }

  .technical-carousel-section .field-carousel-slide::before {
    inset: 0;
    width: 100%;
    background-position: var(--field-position, center);
  }

  .technical-carousel-section .field-carousel-slide::after { display: none; }

  .technical-carousel-section .field-carousel-copy {
    width: 100%;
    height: 100%;
    margin-left: 0;
    justify-content: flex-end;
    padding: 40px 28px 108px;
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.06) 18%, rgba(0, 9, 20, 0.7) 52%, #000914 88%);
  }

  .technical-carousel-section .field-carousel-copy h3 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 6.2vw, 2.1rem);
  }

  .technical-carousel-section .field-carousel-copy h3::after {
    width: 42px;
    margin-top: 14px;
  }

  .technical-carousel-section .field-carousel-copy p {
    max-width: 620px;
    font-size: clamp(1rem, 3.6vw, 1.12rem);
    line-height: 1.65;
  }

  .technical-carousel-section .field-carousel-controls {
    right: auto;
    bottom: 16px;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 24px);
    min-height: 48px;
    padding: 6px 8px;
    flex-wrap: nowrap;
    gap: 6px;
    transform: translateX(-50%);
  }

  .technical-carousel-section .field-carousel-controls .field-carousel-dots {
    order: 0;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .technical-carousel-section .field-carousel-viewport { min-height: 540px; }
  .technical-carousel-section .field-carousel-copy { padding: 32px 22px 100px; }
  .technical-carousel-section .field-carousel-copy h3 { font-size: clamp(1.6rem, 7.2vw, 1.9rem); }

  .technical-carousel-section .field-carousel-copy p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (min-width: 981px) and (max-height: 800px) {
  .technical-carousel-section { min-height: 0; }

  .technical-carousel-section .field-showcase-layout {
    padding-block: 18px;
    gap: 16px;
  }

  .technical-carousel-section .field-showcase-layout > h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.08;
  }

  .technical-carousel-section .field-carousel { gap: 10px; }
  .technical-carousel-section .field-carousel-viewport { min-height: 0; }
  .technical-carousel-section .field-carousel-copy { padding-block: 28px; }
  .technical-carousel-section .field-carousel-copy h3 { margin-bottom: 14px; font-size: 1.65rem; }
  .technical-carousel-section .field-carousel-copy h3::after { margin-top: 12px; }
  .technical-carousel-section .field-carousel-copy p { font-size: 0.92rem; line-height: 1.58; }

  .technical-carousel-section .field-carousel-control {
    width: 36px;
    height: 36px;
  }
}

/* 23번째 수정: 성과 카드의 긴 제목을 한 줄로 표시 */
@media (min-width: 769px) {
  .technical-carousel-section .field-carousel-slide::before {
    width: 42%;
  }

  .technical-carousel-section .field-carousel-slide::after {
    left: 58%;
    width: clamp(88px, 8vw, 138px);
  }

  .technical-carousel-section .field-carousel-copy {
    width: 58%;
    background: #000914;
  }

  .technical-carousel-section .field-carousel-copy h3 {
    width: max-content;
    max-width: none;
    white-space: nowrap;
  }
}

/* 24번째 수정: 성과 연혁을 연·월 단위로 그룹화 */
.achievements-page .history-section .timeline {
  border-top-color: rgba(115, 214, 245, 0.38);
}

.achievements-page .timeline-month {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px;
  padding: clamp(6px, 0.8vh, 10px) 0;
  border-bottom: 1px solid rgba(200, 233, 250, 0.16);
}

.achievements-page .timeline-month-label {
  margin: 0;
  padding-top: 5px;
  color: #73d6f5;
  font: 700 clamp(1.08rem, 1.35vw, 1.28rem)/1.2 "Electrical Safety", "Malgun Gothic", sans-serif;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 12px #000914;
}

.achievements-page .timeline-events {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.achievements-page .timeline-event {
  padding: 3px 0;
}

.achievements-page .timeline-event + .timeline-event {
  margin-top: 2px;
  padding-top: 5px;
  border-top: 1px solid rgba(200, 233, 250, 0.08);
}

.achievements-page .timeline-event p {
  margin: 0;
  color: #e1edf2;
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.66;
  text-shadow: 0 2px 12px #000914;
}

@media (max-width: 980px) {
  .achievements-page .timeline-month {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .achievements-page .timeline-month {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 16px;
  }

  .achievements-page .timeline-month-label { padding-top: 0; }

  .achievements-page .timeline-event p { font-size: 1rem; }
}

/* 25번째 수정: 채용 샘플 공고와 문의 페이지 한 화면 구성 */
.careers-empty-state {
  width: 100%;
  align-items: center;
  text-align: center;
}

.careers-empty-state[hidden] { display: none; }

.career-posting-list { border-bottom: 1px solid rgba(200, 233, 250, 0.22); }

.career-posting {
  padding: clamp(26px, 3vw, 38px) 0;
}

.career-posting-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  color: #9fb4bd;
  font-size: 0.84rem;
}

.career-posting-meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin-left: 14px;
  background: rgba(200, 233, 250, 0.26);
}

.career-posting-meta .career-test-badge,
.career-posting-meta .career-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border: 1px solid rgba(115, 214, 245, 0.58);
  border-radius: 6px;
  color: #9ee8ff;
  background: rgba(115, 214, 245, 0.08);
  font-weight: 700;
}

.career-posting-meta .career-test-badge::after,
.career-posting-meta .career-status-badge::after { content: none; }

.career-posting-meta .career-status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: #c8e9fa;
  box-shadow: 0 0 10px rgba(200, 233, 250, 0.84);
  animation: developing-dot-blink 1.4s ease-in-out infinite;
}

.career-posting .career-position {
  margin: 24px 0 14px;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.career-posting .career-summary {
  max-width: 680px;
  margin: 0;
  color: #c7d8df;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.7;
}

.career-test-note {
  margin: 18px 0 0;
  padding-left: 12px;
  border-left: 2px solid rgba(115, 214, 245, 0.55);
  color: #8299a4;
  font-size: 0.82rem;
}

.careers-hiring-overview {
  max-width: 580px;
  margin-top: 34px;
  color: #b9cbd2;
}

.careers-hiring-overview > p {
  margin: 0;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.75;
}

.careers-hiring-overview > p + p { margin-top: 14px; }

.career-requirements {
  display: grid;
  gap: 7px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
  color: #92a9b2;
  font-size: 0.86rem;
  line-height: 1.55;
}

.career-requirements li {
  position: relative;
  padding-left: 15px;
}

.career-requirements li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.careers-page main { padding-bottom: var(--company-footer-h); }

.careers-page .careers-split-stage {
  padding-top: 0;
  padding-bottom: clamp(34px, 4vw, 64px);
}

.careers-page .careers-intro-side {
  align-items: center;
  padding-top: clamp(28px, 3vw, 46px);
  padding-bottom: clamp(28px, 3vw, 46px);
}

.careers-page .careers-openings-side {
  align-items: start;
  padding-top: clamp(28px, 3vw, 46px);
  padding-bottom: clamp(24px, 2.5vw, 38px);
}

.careers-page .career-posting:first-child { padding-top: 0; }

@media (min-width: 981px) {
  .careers-page {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  .careers-page main {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  .careers-page .careers-split-stage {
    height: 100%;
    min-height: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .careers-split-grid {
    height: 100%;
    min-height: 0;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .careers-intro-side {
    padding-inline: clamp(34px, 4vw, 64px);
  }

  .careers-title {
    font-size: clamp(32pt, 3.2vw, 42pt);
  }

  .careers-title span:nth-child(2) { white-space: nowrap; }

  .contact-page { overflow: hidden; }

  .contact-page main {
    height: 100svh;
    overflow: hidden;
  }

  .contact-page .contact-split-stage {
    height: calc(100svh - var(--header-h) - var(--company-footer-h));
    min-height: 0;
    overflow: hidden;
  }

  .contact-page .contact-split-grid {
    height: 100%;
    min-height: 0;
  }

  .contact-page .contact-company-side,
  .contact-page .contact-form-side {
    min-height: 0;
    padding: clamp(20px, 3.5vh, 42px) clamp(34px, 5vw, 82px);
  }

  .contact-page .contact-title {
    margin-bottom: clamp(18px, 3vh, 32px);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
  }

  .contact-page .contact-list { margin-top: 0; }

  .contact-page .contact-row {
    padding: clamp(9px, 1.4vh, 14px) 0;
  }

  .contact-page .contact-form-side .contact-form {
    max-height: 100%;
  }

  .contact-page .form-grid { gap: clamp(8px, 1.2vh, 14px); }
  .contact-page .field { gap: 6px; }
  .contact-page .field input { height: clamp(40px, 5.4vh, 48px); }
  .contact-page .field textarea { min-height: clamp(82px, 13vh, 120px); }
  .contact-page .contact-turnstile { margin-top: clamp(10px, 1.6vh, 16px); }
  .contact-page .form-actions { margin-top: clamp(10px, 1.6vh, 16px); }
}

@media (max-width: 980px) {
  .careers-title span:nth-child(2) { white-space: normal; }
}

@media (max-width: 640px) {
  .career-posting-meta span:not(:last-child)::after { content: none; }
  .careers-hiring-overview { margin-top: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .career-posting-meta .career-status-badge::before { animation: none; }
}

/* 26번째 수정: 채용 간격, 좁은 화면 히어로, 성과 첫 화면 가독성 */
@media (min-width: 981px) {
  .careers-split-grid {
    width: min(calc(100% - 64px), 1320px);
    margin-inline: auto;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .careers-intro-side,
  .careers-openings-side {
    padding-inline: clamp(20px, 2.5vw, 38px);
  }

  .careers-intro-panel {
    width: fit-content;
    max-width: 100%;
    margin-right: 0;
  }

  .careers-openings-panel {
    width: 100%;
    margin-left: 0;
  }
}

/* Compact the English hero so its actions clear the fixed footer. */
body.lang-en.company-page .overview-hero-primary .hero-tagline {
  margin-top: 18px;
}

body.lang-en.company-page .overview-hero-primary .company-intro-block {
  max-width: 720px;
  margin-top: 20px;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

body.lang-en.company-page .overview-hero-primary .company-intro-block::before {
  margin-bottom: 16px;
}

body.lang-en.company-page .overview-hero .hero-actions {
  margin-top: 18px;
}

@media (min-width: 769px) and (max-width: 1299px) {
  body.lang-en.company-page .overview-hero-primary {
    transform: translateY(-20px);
  }
}

/* Auto-height tablet/mobile sections must not sit behind a fixed footer. */
@media (max-width: 980px) {
  .company-page main {
    padding-bottom: 0;
  }

  .company-page .site-footer {
    position: relative;
    inset: auto;
    height: auto;
    min-height: var(--company-footer-h);
  }

  .company-page .site-footer .footer-inner {
    min-height: var(--company-footer-h);
  }
}

.career-posting {
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (max-width: 980px) {
  .career-posting {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (min-width: 981px) and (max-height: 850px) {
  .careers-page .careers-intro-side,
  .careers-page .careers-openings-side {
    padding-top: clamp(18px, 2.5vh, 24px);
    padding-bottom: clamp(18px, 2.5vh, 24px);
  }

  .careers-page .career-posting {
    padding-top: clamp(12px, 1.8vh, 18px);
    padding-bottom: clamp(12px, 1.8vh, 18px);
  }

  .careers-page .career-posting:first-child { padding-top: 0; }

  .careers-page .career-posting .career-position {
    margin: clamp(12px, 1.8vh, 18px) 0 8px;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
  }

  .careers-page .career-posting .career-summary {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .careers-page .career-requirements {
    gap: 4px;
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

@media (max-width: 1299px) {
  .company-page .overview-hero-layout {
    align-items: flex-start;
    padding-top: clamp(34px, 5vh, 48px);
    padding-bottom: clamp(48px, 6vh, 64px);
  }

  .company-page .overview-hero-primary .company-intro-block {
    margin-top: clamp(24px, 3.4vh, 34px);
  }

  .company-page .overview-hero-primary .hero-tagline { margin-top: 22px; }
  .company-page .overview-hero .hero-actions { margin-top: 24px; }
}

@media (max-width: 768px) {
  .company-page .overview-hero-layout {
    padding-top: clamp(28px, 4.5vh, 40px);
    padding-bottom: 56px;
  }
}

.achievement-intro-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.achievement-intro-copy {
  padding-right: clamp(24px, 3.5vw, 58px);
}

.achievement-intro-copy h1 span:first-child { white-space: nowrap; }
.lang-en .achievement-intro-copy h1 span:first-child { white-space: normal; }

.achievement-intro-copy p {
  max-width: 680px;
  color: #d5edf7;
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.74;
}

.achievement-intro-copy p span { display: inline; }
.achievement-intro-copy p span:not(:last-child)::after { content: " "; }

@media (max-width: 980px) {
  .achievement-intro-layout {
    grid-template-columns: 1fr;
  }

  .achievement-intro-copy {
    padding-right: 0;
  }

  .achievement-intro-copy p {
    max-width: 720px;
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .achievement-intro-copy h1 {
    font-size: clamp(24px, 7vw, 28px);
    letter-spacing: -0.05em;
  }

  .achievement-intro-copy p {
    font-size: 14px;
    line-height: 1.68;
  }
}

/* 27번째 수정: 개발 중 제품을 모던한 이미지 카드로 재구성 */
.products-page .product-pair-section { background: #000914; }

.products-page .product-pair-layout {
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-content: stretch;
  padding-block: clamp(22px, 2.7vw, 36px);
}

.products-page .product-compact-card {
  min-height: 0;
  border: 1px solid rgba(200, 215, 224, 0.22);
  border-radius: 18px;
  background-color: #07131e;
  background-size: cover !important;
  background-position: var(--compact-product-position, center);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.products-page .product-compact-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 9, 20, 0.12) 0%, rgba(0, 9, 20, 0.04) 46%, rgba(0, 9, 20, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 9, 20, 0.94) 0%, rgba(0, 9, 20, 0.77) 47%, rgba(0, 9, 20, 0.22) 78%, rgba(0, 9, 20, 0.08) 100%);
}

.products-page .product-compact-copy {
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  padding: clamp(28px, 3.2vw, 48px);
  background: transparent;
}

.products-page .developing-status {
  margin: 0 0 clamp(20px, 2.4vh, 28px);
  padding: 7px 12px;
  border-color: rgba(231, 240, 244, 0.38);
  border-radius: 999px;
  color: #eef7fa;
  background: rgba(0, 9, 20, 0.34);
  font-size: 0.9rem;
  animation: none;
  backdrop-filter: blur(5px);
}

.products-page .developing-status::before {
  width: 7px;
  height: 7px;
  background: #73d6f5;
  box-shadow: none;
  animation: none;
}

.products-page .product-compact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
}

.products-page .product-compact-copy h3 {
  margin: 12px 0 clamp(18px, 2.4vh, 26px);
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.products-page .product-compact-copy > p:not(.product-image-note) {
  max-width: 520px;
  color: rgba(237, 246, 249, 0.9);
  font-size: clamp(0.92rem, 1vw, 1.03rem);
  line-height: 1.72;
  letter-spacing: -0.012em;
}

.products-page .product-compact-copy > p:not(.product-image-note) span { display: block; }

.products-page .product-compact-copy .product-wavelength {
  width: min(100%, 560px);
  margin-top: auto;
  padding: 14px 16px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(231, 240, 244, 0.28);
  border-radius: 9px;
  color: #ffffff;
  background: transparent;
  font-size: clamp(0.88rem, 0.96vw, 1rem);
  line-height: 1.45;
  backdrop-filter: none;
}

.products-page .product-wavelength strong {
  padding-right: 16px;
  border-right: 1px solid rgba(231, 240, 244, 0.24);
  color: #9ddff3;
}

.products-page .product-compact-copy .product-image-note {
  max-width: 560px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid rgba(231, 240, 244, 0.18);
  color: rgba(215, 228, 234, 0.66);
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .products-page .product-compact-copy { padding: 26px; }
  .products-page .developing-status { margin-bottom: 18px; }
  .products-page .product-compact-copy h2 { font-size: clamp(1.8rem, 3vw, 2.25rem); }

  .products-page .product-compact-copy h3 {
    margin-block: 9px 16px;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  }

  .products-page .product-compact-copy > p:not(.product-image-note) {
    font-size: 1.08rem;
    line-height: 1.62;
  }
}

@media (max-width: 980px) {
  .products-page .product-pair-layout {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding-block: 42px;
  }

  .products-page .product-compact-card { min-height: 660px; }
}

@media (max-width: 640px) {
  .products-page .product-pair-layout {
    width: calc(100% - 28px);
    gap: 18px;
    padding-block: 28px;
  }

  .products-page .product-compact-card {
    min-height: 640px;
    border-radius: 14px;
  }

  .products-page .product-compact-copy { padding: 24px 22px; }
  .products-page .product-compact-copy h2 { font-size: 2rem; }
  .products-page .product-compact-copy h3 { font-size: 1.25rem; }

  .products-page .product-compact-copy > p:not(.product-image-note) {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .products-page .product-compact-copy .product-wavelength {
    padding: 12px;
    gap: 12px;
    font-size: 0.86rem;
  }

  .products-page .product-wavelength strong { padding-right: 12px; }
}

/* 28번째 수정: 제품 카드 이미지 클리핑·모바일 히어로 하단 가시성 */
.products-page .product-compact-card {
  --product-card-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--product-card-radius);
  background-clip: padding-box;
  clip-path: inset(0 round var(--product-card-radius));
}

.products-page .product-compact-card::before {
  inset: 1px;
  border-radius: calc(var(--product-card-radius) - 1px);
}

@media (max-width: 768px) {
  .company-page .overview-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(1, 12, 24, 0.2) 0%,
        rgba(1, 12, 24, 0.08) 56%,
        rgba(1, 8, 17, 0) 100%
      ),
      linear-gradient(
        150deg,
        rgba(1, 12, 24, 0.98) 0%,
        rgba(1, 12, 24, 0.92) 34%,
        rgba(1, 12, 24, 0.52) 66%,
        rgba(1, 12, 24, 0.08) 100%
      );
  }
}

@media (max-width: 640px) {
  .products-page .product-compact-card { --product-card-radius: 14px; }
}

/* 29번째 수정: 통합 패키지 화면을 아이콘 정보 카드로 정리 */
.company-page .overview-package-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(52px, 7vw, 120px);
  align-items: center;
}

.company-page .overview-package-primary h2 {
  max-width: 720px;
  font-size: clamp(2.45rem, 3.35vw, 4.15rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.company-page .overview-package-primary h2 span {
  white-space: nowrap;
}

.company-page .overview-package-primary h2 span:nth-child(2) {
  color: inherit;
}

.company-page .overview-package-primary .package-hardware {
  color: #9ddff3;
  font: inherit;
}

.company-page .overview-package-secondary {
  gap: 12px;
}

.company-page .overview-package-secondary p {
  min-height: 94px;
  padding: 17px 20px;
  grid-template-columns: 42px 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(207, 231, 240, 0.16);
  border-radius: 14px;
  color: #f4f9fb;
  background: rgba(9, 28, 41, 0.62);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.company-page .package-number {
  align-self: center;
  padding-top: 0;
  color: #9ddff3;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
}

.company-page .package-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 223, 243, 0.22);
  border-radius: 12px;
  color: #9ddff3;
  background: rgba(157, 223, 243, 0.06);
}

.company-page .package-icon svg {
  width: 27px;
  height: 27px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .package-item-label {
  min-width: 0;
  color: #f4f9fb;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.018em;
  white-space: normal !important;
}

@media (max-width: 1180px) {
  .company-page .overview-package-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    gap: 40px;
  }

  .company-page .overview-package-primary h2 {
    font-size: clamp(2.15rem, 4vw, 3.2rem);
  }

  .company-page .overview-package-secondary p {
    padding-inline: 17px;
    grid-template-columns: 40px 48px minmax(0, 1fr);
    gap: 13px;
  }

  .company-page .package-icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 980px) {
  .company-page .overview-package-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    gap: 30px;
    padding-block: 52px;
    align-content: center;
    align-items: start;
  }

  .company-page .overview-package-primary h2 {
    max-width: 680px;
  }

  .company-page .overview-package-primary h2 span {
    white-space: normal;
  }

  .company-page .overview-package-secondary {
    width: 100%;
    max-width: 760px;
  }
}

@media (max-width: 560px) {
  .company-page .overview-package-layout {
    width: calc(100% - 28px);
    gap: 24px;
    padding-block: 38px;
  }

  .company-page .overview-package-primary h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .company-page .overview-package-secondary p {
    min-height: 82px;
    padding: 14px;
    grid-template-columns: 34px 42px minmax(0, 1fr);
    gap: 10px;
    border-radius: 12px;
  }

  .company-page .package-number {
    padding-top: 0;
    font-size: 1.08rem;
  }

  .company-page .package-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .company-page .package-icon svg {
    width: 23px;
    height: 23px;
  }

  .company-page .package-item-label {
    font-size: 0.95rem;
    line-height: 1.45;
  }
}

/* 30번째 수정: 카드 가장자리·분야 경계·성과 이미지 노출 보정 */
.products-page .product-compact-card {
  background-color: #07131e;
  background-image: none !important;
}

.products-page .product-compact-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 2px;
  border-radius: calc(var(--product-card-radius) - 2px);
  background-color: #07131e;
  background-image: var(--compact-product-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--compact-product-position, center);
  pointer-events: none;
}

.products-page .product-compact-card::before {
  z-index: 1;
  inset: 2px;
  border-radius: calc(var(--product-card-radius) - 2px);
}

.products-page .product-compact-copy { z-index: 2; }

@media (min-width: 769px) {
  .company-page .field-carousel-copy {
    border-right: 0;
    box-shadow: 2px 0 0 #000914;
  }

  .company-page .field-carousel-slide::after {
    margin-left: -1px;
  }
}

.achievements-page .achievement-intro-visual::before {
  background: linear-gradient(
    90deg,
    #000914 0%,
    rgba(0, 9, 20, 0.78) 7%,
    rgba(0, 9, 20, 0.4) 16%,
    rgba(0, 9, 20, 0.12) 27%,
    rgba(0, 9, 20, 0) 40%
  );
}

@media (min-width: 769px) {
  .achievements-page .technical-carousel-section .field-carousel-slide::before {
    width: 50%;
  }

  .achievements-page .technical-carousel-section .field-carousel-slide::after {
    left: 50%;
    width: clamp(48px, 4vw, 72px);
    margin-left: -1px;
    background: linear-gradient(
      90deg,
      #000914 0%,
      rgba(0, 9, 20, 0.48) 34%,
      rgba(0, 9, 20, 0.12) 72%,
      rgba(0, 9, 20, 0) 100%
    );
  }

  .achievements-page .technical-carousel-section .field-carousel-copy {
    width: 50%;
    box-shadow: 2px 0 0 #000914;
  }
}

@media (max-width: 768px) {
  .achievements-page .achievement-intro-visual::before {
    background: linear-gradient(
      180deg,
      #000914 0%,
      rgba(0, 9, 20, 0.48) 12%,
      rgba(0, 9, 20, 0.1) 30%,
      rgba(0, 9, 20, 0) 48%
    );
  }

  .achievements-page .technical-carousel-section .field-carousel-copy {
    background: linear-gradient(
      180deg,
      rgba(0, 9, 20, 0) 34%,
      rgba(0, 9, 20, 0.42) 62%,
      rgba(0, 9, 20, 0.92) 100%
    );
  }
}

/* 회사소개 2·3번: 비전 스플릿 섹션 */
.company-page .vision-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(35, 102, 129, 0.1), transparent 48%),
    #000914;
}

.company-page .vision-section-layout {
  width: var(--company-content-width);
  min-height: 100%;
  margin: 0 auto;
  padding-block: clamp(30px, 3.5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(46px, 6vw, 96px);
  align-items: stretch;
}

.company-page .vision-section-combustion .vision-section-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.company-page .vision-section-visual {
  position: relative;
  min-width: 0;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 220, 242, 0.14);
  border-radius: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.company-page .vision-section-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 9, 20, 0.03), rgba(0, 9, 20, 0.18)),
    linear-gradient(90deg, rgba(115, 214, 245, 0.08), transparent 24%);
}

.company-page .vision-section-laser .vision-section-visual {
  background-image: url('assets/images/optimized/laser-1023.webp');
  background-position: 52% 58%;
}

.company-page .vision-section-combustion .vision-section-visual {
  background-image: url('assets/images/optimized/combustion-1600.webp');
  background-position: 52% 58%;
}

.company-page .vision-section-copy {
  min-width: 0;
  align-self: center;
}

.company-page .vision-section-copy h2 {
  max-width: 680px;
  margin: 0;
  color: #f7fbfd;
  font-size: clamp(2.6rem, 3.45vw, 4.25rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.company-page .vision-section-copy h2 span { display: block; }

.company-page .vision-section-copy h2::after {
  content: "";
  display: block;
  width: min(100%, 430px);
  height: 2px;
  margin-top: clamp(26px, 3.2vh, 38px);
  background: linear-gradient(90deg, #65ddff 0 18%, rgba(101, 221, 255, 0.38) 48%, transparent 100%);
  box-shadow: 0 0 14px rgba(101, 221, 255, 0.48);
}

.company-page .vision-section-body {
  max-width: 680px;
  margin-top: clamp(28px, 3.4vh, 42px);
  color: rgba(235, 245, 249, 0.9);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.78;
  letter-spacing: -0.018em;
}

.company-page .vision-section-body p { margin: 0; }
.company-page .vision-section-body p + p { margin-top: 24px; }
.company-page .vision-section-body span { display: block; }

@media (max-width: 1180px) {
  .company-page .vision-section-layout,
  .company-page .vision-section-combustion .vision-section-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 38px;
  }

  .company-page .vision-section-copy h2 {
    font-size: clamp(2.35rem, 4.3vw, 3.5rem);
  }

  .company-page .vision-section-visual { min-height: 460px; }
}

@media (max-width: 980px) {
  .company-page .vision-section { min-height: auto; }

  .company-page .vision-section-layout,
  .company-page .vision-section-combustion .vision-section-layout {
    width: var(--company-content-width);
    min-height: auto;
    padding-block: 56px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .company-page .vision-section-copy { order: 1; }
  .company-page .vision-section-visual { order: 2; min-height: clamp(360px, 64vw, 560px); }
  .company-page .vision-section-copy h2 { max-width: 620px; }
  .company-page .vision-section-body { max-width: 720px; }
  .company-page .vision-section-body span { display: inline; }
  .company-page .vision-section-body span:not(:last-child)::after { content: " "; }
}

@media (max-width: 640px) {
  .company-page .vision-section-layout,
  .company-page .vision-section-combustion .vision-section-layout {
    width: calc(100% - 28px);
    padding-block: 42px;
    gap: 28px;
  }

  .company-page .vision-section-copy h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 1.12;
  }

  .company-page .vision-section-copy h2::after { margin-top: 24px; }
  .company-page .vision-section-body { margin-top: 24px; font-size: 0.98rem; line-height: 1.7; }
  .company-page .vision-section-visual { min-height: 420px; border-radius: 9px; }
  .company-page .vision-section-laser .vision-section-visual { background-position: 52% 56%; }
  .company-page .vision-section-combustion .vision-section-visual { min-height: 300px; background-position: 52% 58%; }
}

/* 소식 · 파트너 페이지 */
@media (min-width: 1300px) {
  .primary-nav ul { min-width: 660px; }
}

.news-page {
  color: #edf7fa;
  background: #000914;
}

.news-page .site-header {
  background: rgba(0, 9, 20, 0.9);
  border-bottom-color: rgba(200, 233, 250, 0.14);
}

.news-shell {
  width: min(calc(100% - clamp(40px, 7vw, 120px)), 1480px);
  margin-inline: auto;
}

.news-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(154, 220, 242, 0.18);
  background: #000914;
}

.news-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000914 0%, rgba(0, 9, 20, 0.98) 29%, rgba(0, 9, 20, 0.76) 46%, rgba(0, 9, 20, 0.2) 70%, rgba(0, 9, 20, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 9, 20, 0.08) 52%, #000914 100%);
}

.news-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -5%;
  bottom: 18px;
  width: 58%;
  height: 120px;
  opacity: 0.5;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, transparent 0 45%, rgba(101, 221, 255, 0.42) 46% 46.5%, transparent 47% 54%, rgba(101, 221, 255, 0.2) 55% 55.5%, transparent 56%),
    repeating-linear-gradient(173deg, transparent 0 14px, rgba(101, 221, 255, 0.09) 15px 16px, transparent 17px 28px);
  filter: drop-shadow(0 0 10px rgba(101, 221, 255, 0.18));
  transform: skewX(-12deg);
}

.news-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 39%;
  background-image: url('assets/images/optimized/laser-1023.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 52% 58%;
  filter: saturate(0.88) contrast(1.06);
}

.news-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding-block: clamp(58px, 6.5vw, 88px);
  display: flex;
  align-items: center;
}

.news-hero-copy { max-width: 650px; }

.news-kicker,
.news-section-kicker {
  margin: 0 0 14px;
  color: #75ddfb;
  font: 700 0.78rem/1.3 "Electrical Safety", "Malgun Gothic", sans-serif;
  letter-spacing: 0.14em;
}

.news-hero-copy h1 {
  margin: 0;
  color: #f7fbfd;
  font-size: clamp(3.7rem, 5.8vw, 6.35rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.46);
}

.news-hero-copy h1 span { display: block; }

.news-hero-copy > p:last-child {
  margin: 24px 0 0;
  color: rgba(239, 248, 251, 0.9);
  font-size: clamp(1rem, 1.22vw, 1.2rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.news-latest,
.news-partners,
.news-collaboration { padding-block: clamp(58px, 6vw, 90px); }

.news-partners {
  border-top: 1px solid rgba(154, 220, 242, 0.12);
  background: linear-gradient(180deg, rgba(6, 25, 38, 0.5), rgba(0, 9, 20, 0.16));
}

.news-section-heading {
  margin-bottom: clamp(26px, 3vw, 40px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.news-section-heading h2 {
  margin: 0;
  color: #f7fbfd;
  font-size: clamp(1.8rem, 2.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.news-outline-link {
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(200, 233, 250, 0.34);
  border-radius: 7px;
  color: #edf7fa;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.news-outline-link:hover {
  border-color: #75ddfb;
  background: rgba(117, 221, 251, 0.08);
  transform: translateY(-2px);
}

.news-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 233, 250, 0.24);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(8, 26, 40, 0.9), rgba(1, 13, 25, 0.92));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.news-card:is(:hover, :focus-within) {
  border-color: #75ddfb;
  box-shadow: inset 0 0 0 1px rgba(117, 221, 251, 0.2), 0 28px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.news-card-featured {
  grid-row: 1 / span 2;
  display: grid;
  grid-template-rows: minmax(280px, 0.9fr) auto;
}

.news-card-compact {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
}

.news-card-image {
  min-width: 0;
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #020b13;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.3, 1), filter 300ms ease;
}

.news-card-featured .news-card-image img { object-position: 52% 61%; }

.news-card-image-logo { background: #06131e; }

.news-card-image-logo img {
  object-fit: contain;
  padding: clamp(42px, 6vw, 78px);
  filter: invert(1);
}

.news-card-image-contain { background: #282e3a; }

.news-card-image-contain img {
  object-fit: contain;
  padding: 10px;
}

.news-card-image-square-logo { background: #000000; }

.news-card-image-square-logo img {
  object-fit: contain;
  padding: 22px;
}

.news-card-image-defense img { object-position: 72% center; }

.news-card:hover .news-card-image img {
  transform: scale(1.045);
  filter: brightness(1.06);
}

.news-card:hover .news-card-image-logo img { filter: invert(1) brightness(1.06); }

.news-card-content {
  min-width: 0;
  padding: clamp(20px, 1.8vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-card-compact .news-card-content { padding: 20px; }

.news-card-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #8ba4af;
  font-size: 0.78rem;
}

.news-tag {
  padding: 5px 9px;
  border: 1px solid rgba(117, 221, 251, 0.35);
  border-radius: 999px;
  color: #9ee8ff;
  background: rgba(117, 221, 251, 0.07);
  font-weight: 700;
}

.news-card-source {
  margin: 13px 0 6px;
  color: #9eb4be;
  font-size: 0.82rem;
}

.news-card h3 {
  margin: 0;
  color: #f7fbfd;
  font-size: clamp(1.2rem, 1.5vw, 1.68rem);
  line-height: 1.36;
  letter-spacing: -0.03em;
}

.news-card-compact h3 { font-size: clamp(1rem, 1.05vw, 1.18rem); }
.news-card h3 a { color: inherit; }

.news-card-content > p:not(.news-card-source) {
  margin: 12px 0 0;
  color: #aebfc6;
  font-size: 0.86rem;
  line-height: 1.65;
}

.news-card-content > p:not(.news-card-source) strong {
  color: #dff6fd;
  font-weight: 700;
}

.news-card-compact .news-card-content > p:not(.news-card-source) {
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.78rem;
}

.news-read-more {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #dff6fd;
  font-size: 0.88rem;
  font-weight: 600;
}

.news-read-more span { color: #75ddfb; transition: transform 180ms ease; }
.news-read-more:hover span { transform: translateX(4px); }

.news-section-note {
  max-width: 420px;
  margin: 0;
  color: #8fa6b0;
  font-size: 0.92rem;
  text-align: right;
}

.partner-network {
  display: block;
}

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

.partner-network-group {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 9px;
}

.partner-network-investors,
.partner-network-partners { grid-column: 1; }

.partner-group-heading {
  min-height: 34px;
  padding-inline: 4px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
}

.partner-network-investors .partner-group-heading {
  border-left: 2px solid rgba(200, 233, 250, 0.34);
  padding-left: 10px;
}

.partner-network-partners .partner-group-heading {
  border-left: 2px solid rgba(117, 221, 251, 0.82);
  padding-left: 10px;
}

.partner-group-heading > span {
  color: #75ddfb;
  font: 700 0.68rem/1 "Electrical Safety", "Malgun Gothic", sans-serif;
  letter-spacing: 0.12em;
}

.partner-group-heading > div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.partner-group-heading h3 {
  margin: 0;
  color: #f7fbfd;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.partner-group-heading p {
  margin: 0;
  color: #91aab5;
  font-size: 0.74rem;
  line-height: 1;
}

.partner-group-cards {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.partner-network-partners .partner-group-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-network-card {
  position: relative;
  min-width: 0;
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(200, 233, 250, 0.2);
  border-radius: 12px;
  color: #f7fbfd;
  background: rgba(8, 25, 38, 0.62);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.partner-network-investors .partner-network-card {
  border-color: rgba(117, 221, 251, 0.3);
  background: rgba(10, 31, 45, 0.68);
}

.partner-network-partners .partner-network-card {
  background: rgba(6, 21, 33, 0.58);
}

.partner-network-card:is(:hover, :focus-visible, :focus-within) {
  border-color: #75ddfb;
  background: rgba(12, 34, 49, 0.78);
  box-shadow: inset 0 0 0 1px rgba(117, 221, 251, 0.2);
}

.partner-relation {
  position: absolute;
  top: 20px;
  left: 22px;
  color: #75ddfb;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.partner-wordmark {
  color: #ffffff;
  font: 700 clamp(1.5rem, 2.4vw, 2.45rem)/1 Arial, sans-serif;
  letter-spacing: -0.06em;
}

.partner-wordmark span { color: #ffdc00; font-weight: 500; }

.partner-name {
  margin-top: 26px;
  color: #e3eef2;
  font-size: 1rem;
  font-weight: 600;
}

.partner-type { margin-top: 7px; color: #8ea5ae; font-size: 0.82rem; }

.partner-person-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: clamp(16px, 1.8vw, 24px);
  text-align: left;
}

.partner-person-avatar {
  width: 76px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117, 221, 251, 0.34);
  border-radius: 50%;
  color: #8bdff8;
  background:
    radial-gradient(circle at 50% 35%, rgba(117, 221, 251, 0.14), transparent 58%),
    rgba(4, 24, 38, 0.92);
  box-shadow: inset 0 0 22px rgba(117, 221, 251, 0.08);
}

.partner-person-avatar svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.partner-person-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partner-person-card .partner-relation {
  position: static;
  margin-bottom: 12px;
}

.partner-person-name {
  margin-top: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.partner-person-title {
  margin-top: 9px;
  color: #9ee8ff;
  font-size: 0.82rem;
  font-weight: 600;
}

.partner-person-card .partner-name {
  margin-top: 12px;
  line-height: 1.38;
}

.partner-person-affiliation > span {
  display: block;
}

.news-collaboration { padding-top: 0; }

.news-collaboration-panel {
  position: relative;
  isolation: isolate;
  min-height: 220px;
  padding: clamp(30px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: clamp(38px, 6vw, 96px);
  overflow: hidden;
  border: 1px solid rgba(200, 233, 250, 0.26);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(2, 17, 30, 0.98), rgba(3, 26, 46, 0.82)),
    #061522;
}

.news-collaboration-panel::before,
.news-collaboration-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.news-collaboration-panel::before {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -155px;
  border: 1px solid rgba(117, 221, 251, 0.2);
  border-radius: 28%;
  box-shadow: 0 0 0 55px rgba(117, 221, 251, 0.025), 0 0 0 110px rgba(117, 221, 251, 0.018);
  transform: rotate(18deg);
}

.news-collaboration-panel::after {
  inset: auto 0 0 42%;
  height: 70%;
  opacity: 0.24;
  background: repeating-linear-gradient(103deg, transparent 0 24px, rgba(117, 221, 251, 0.2) 25px 26px, transparent 27px 52px);
  mask-image: linear-gradient(90deg, transparent, #000);
}

.news-collaboration-panel h2 {
  margin: 0;
  color: #f6fbfd;
  font-size: clamp(1.8rem, 2.7vw, 2.9rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.news-collaboration-panel h2 span { display: block; }

.news-collaboration-panel > div:first-child > p:last-child {
  margin: 22px 0 0;
  color: #9db2bb;
}

.news-collaboration-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.news-collaboration-actions .button {
  min-width: 164px;
  min-height: 54px;
  border: 1px solid rgba(200, 233, 250, 0.4);
  border-radius: 7px;
  background: rgba(0, 9, 20, 0.34);
}

.news-collaboration-actions .button.primary {
  color: #00141d;
  border-color: #75ddfb;
  background: #75ddfb;
}

@media (max-width: 1180px) {
  .news-card-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .news-card-featured { grid-column: 1 / -1; grid-row: auto; grid-template-columns: 0.9fr 1.1fr; grid-template-rows: minmax(300px, auto); }
  .news-card-compact { grid-template-columns: 1fr; grid-template-rows: 200px auto; }
  .news-collaboration-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .news-page .nav-shell { gap: 8px; }
  .news-page .language-toggle { margin-left: auto; flex: 0 0 auto; }
  .news-page .menu-toggle { flex: 0 0 44px; }
  .news-shell { width: calc(100% - 28px); }
  .news-hero { min-height: 620px; align-items: end; }
  .news-hero-media { inset: 0; background-position: 52% 58%; }
  .news-hero::before {
    background:
      linear-gradient(180deg, rgba(0, 9, 20, 0.2) 0%, rgba(0, 9, 20, 0.74) 47%, #000914 91%),
      linear-gradient(90deg, rgba(0, 9, 20, 0.72), rgba(0, 9, 20, 0.12));
  }
  .news-hero::after { width: 100%; left: -20%; bottom: 8px; }
  .news-hero-inner { padding-block: 72px; align-items: flex-end; }
  .news-hero-copy h1 { font-size: clamp(2.9rem, 14.5vw, 3.8rem); }
  .news-latest, .news-partners, .news-collaboration { padding-block: 58px; }
  .news-section-heading { align-items: flex-start; flex-direction: column; }
  .news-section-note { text-align: left; }
  .news-card-grid { grid-template-columns: 1fr; }
  .news-card-featured,
  .news-card-compact { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: 230px auto; }
  .news-card-featured .news-card-image img { object-position: 52% 60%; }
  .partner-network-groups { grid-template-columns: 1fr; }
  .partner-network-card { min-height: 250px; }
  .partner-person-card { grid-template-columns: 86px minmax(0, 1fr); gap: 22px; padding: 28px 22px; }
  .partner-person-avatar { width: 86px; }
  .partner-person-avatar svg { width: 48px; height: 48px; }
  .news-collaboration { padding-top: 0; }
  .news-collaboration-panel { padding: 38px 24px; }
  .news-collaboration-actions { display: grid; grid-template-columns: 1fr; }
  .news-collaboration-actions .button { width: 100%; }
}

@media (max-width: 420px) {
  .news-hero-copy h1 { font-size: clamp(2.8rem, 14.5vw, 3.55rem); }
  .news-card-featured,
  .news-card-compact { grid-template-rows: 200px auto; }
  .news-card-content,
  .news-card-compact .news-card-content { padding: 22px; }
  .news-outline-link { width: 100%; justify-content: space-between; }
}

/* 브라우저 기본 스크롤바는 숨기고 스크롤 기능은 유지 */
html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* Let English copy wrap by phrase width instead of Korean authoring spans. */
body.lang-en {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.news-hero-copy > p:last-child span { display: block; }

body.lang-en :is(h1, h2, h3, p) > span,
body.lang-en .company-intro-block > span {
  display: inline !important;
  white-space: normal !important;
}

body.lang-en :is(h1, h2, h3, p) > span + span::before,
body.lang-en .company-intro-block > span + span::before {
  content: " ";
}

body.lang-en :is(h1, h2, h3) { text-wrap: balance; }
body.lang-en p { text-wrap: pretty; }

/* This heading is authored in English and intentionally remains two lines. */
body.lang-en .news-hero-copy h1 > span { display: block !important; }
body.lang-en .news-hero-copy h1 > span + span::before { content: none; }

/* English achievement card titles use deliberate semantic line breaks. */
body.lang-en .technical-carousel-section .achievement-card-title > span {
  display: block !important;
  white-space: normal !important;
}

body.lang-en .technical-carousel-section .achievement-card-title > span + span::before {
  content: none;
}

/* Structural package spans must remain grid items in English. */
body.lang-en.company-page .overview-package-secondary p > span {
  display: block !important;
}

body.lang-en.company-page .overview-package-secondary p > span + span::before {
  content: none;
}

body.lang-en.company-page .overview-package-secondary .package-icon {
  display: grid !important;
}

body.lang-en.company-page .overview-package-secondary .package-item-label {
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Keep the package heading and cards side by side on tablet widths. */
@media (min-width: 769px) and (max-width: 980px) {
  .company-page .overview-package-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(440px, 1.3fr);
    grid-auto-rows: auto;
    gap: 28px;
    padding-block: 32px;
    align-items: center;
  }

  .company-page .overview-package-secondary {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .company-page .overview-package-secondary p {
    min-height: 84px;
    padding: 14px 16px;
    grid-template-columns: 38px 44px minmax(0, 1fr);
    gap: 12px;
  }

  .company-page .package-icon {
    width: 44px;
    height: 44px;
  }
}

/* Keep integrated-package icons inside their cards at every viewport width. */
.company-page .overview-package-secondary p {
  min-width: 0;
  overflow: hidden;
}

.company-page .package-icon {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.company-page .package-icon svg {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

/* Product identifiers are emphasized consistently in both languages. */
.products-page .product-compact-copy h2 {
  color: #73d6f5;
  font-weight: 800;
  text-shadow: 0 0 22px rgba(115, 214, 245, 0.22);
}

/* Center the SVG independently of translated span display rules. */
.company-page .overview-package-secondary .package-icon,
body.lang-en.company-page .overview-package-secondary .package-icon {
  position: relative;
  display: block !important;
}

.company-page .overview-package-secondary .package-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin: 0;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

/* Preserve the intended two-line field-connection heading in English. */
body.lang-en.company-page .field-connection-title > span {
  display: block !important;
  white-space: normal !important;
}

body.lang-en.company-page .field-connection-title > span + span::before {
  content: none;
}

@media (min-width: 981px) {
  body.lang-en.company-page .vision-section-combustion .vision-section-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(36px, 4vw, 64px);
  }

  body.lang-en.company-page .field-connection-title {
    max-width: 800px;
  }

  body.lang-en.company-page .field-connection-title > span {
    white-space: nowrap !important;
  }
}

/* Product intro: full-bleed prototype hero */
.products-page .product-intro-section {
  position: relative;
  isolation: isolate;
  background: #020810;
}

.products-page .product-intro-layout {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  min-height: 100%;
  padding: clamp(52px, 7vh, 92px) max(32px, calc((100vw - var(--company-content-width)) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "title ."
    "copy .";
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 0;
  row-gap: 30px;
  overflow: hidden;
}

.products-page .product-intro-layout::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 5, 12, 0.98) 0%, rgba(0, 7, 16, 0.9) 23%, rgba(0, 7, 16, 0.46) 43%, rgba(0, 7, 16, 0.05) 68%),
    linear-gradient(180deg, rgba(0, 5, 12, 0.28), transparent 28%, transparent 72%, rgba(0, 5, 12, 0.26));
}

.products-page .product-intro-title,
.products-page .product-intro-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  transform: translateX(clamp(20px, 2.4vw, 80px));
}

.products-page .product-intro-title::before {
  content: "SPECTRAL INTELLIGENCE";
  display: block;
  margin-bottom: 22px;
  color: #6fc8e7;
  font: 600 clamp(0.72rem, 0.9vw, 0.92rem)/1.2 "Electrical Safety", "Malgun Gothic", sans-serif;
  letter-spacing: 0.2em;
}

.products-page .product-intro-title h1 {
  font-size: clamp(3rem, 4.2vw, 5rem);
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.52);
}

.products-page .product-intro-copy {
  max-width: 590px;
}

.products-page .product-intro-copy p {
  color: rgba(236, 244, 248, 0.78);
  font-size: clamp(0.94rem, 1.02vw, 1.08rem);
  line-height: 1.9;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.products-page .product-intro-link {
  width: min(230px, 100%);
  min-height: 58px;
  margin-top: 38px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(114, 214, 245, 0.72);
  border-radius: 999px;
  color: #f7fbfd;
  background: rgba(0, 9, 20, 0.28);
  font-size: 0.94rem;
  font-weight: 600;
  backdrop-filter: blur(7px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.products-page .product-intro-link:hover {
  border-color: #ffffff;
  background: rgba(114, 214, 245, 0.14);
  transform: translateY(-2px);
}

.products-page .product-intro-link span {
  font-size: 1.35rem;
  line-height: 1;
}

.products-page .product-intro-proto {
  position: absolute;
  z-index: -1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #020810;
}

.products-page .product-intro-proto img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.92) contrast(1.04);
}

.products-page .product-intro-image-note {
  position: absolute;
  z-index: 3;
  top: max(18px, calc(100dvh - var(--header-h) - var(--company-footer-h) - 56px));
  right: max(24px, calc((100vw - var(--company-content-width)) / 2));
  bottom: auto;
  max-width: min(460px, calc(100% - 48px));
  margin: 0;
  padding: 8px 10px;
  overflow: visible;
  border: 1px solid rgba(145, 213, 237, 0.18);
  border-radius: 10px;
  color: rgba(226, 235, 239, 0.76);
  background: rgba(2, 13, 24, 0.72);
  font-size: clamp(0.64rem, 0.68vw, 0.74rem);
  line-height: 1.45;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
  white-space: normal;
}

@media (min-width: 981px) {
  .products-page .product-intro-image-note {
    right: calc((100vw - var(--company-content-width)) / 2 + 24px);
  }
}

@media (max-width: 980px) {
  .products-page .product-intro-layout {
    min-height: max(680px, calc(100svh - var(--header-h)));
    padding-inline: clamp(24px, 7vw, 64px);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .products-page .product-intro-proto img { object-position: 62% center; }
}

@media (max-width: 768px) {
  .products-page .product-intro-layout {
    width: 100%;
    min-height: max(720px, calc(100dvh - var(--header-h) - var(--company-footer-h)));
    padding: clamp(310px, 46svh, 380px) 18px 72px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 14px;
  }

  .products-page .product-intro-layout::after {
    background:
      linear-gradient(180deg, rgba(0, 5, 12, 0.04) 0%, rgba(0, 7, 16, 0.1) 34%, rgba(0, 7, 16, 0.74) 58%, #000914 88%),
      linear-gradient(90deg, rgba(0, 7, 16, 0.36), transparent 72%);
  }

  .products-page .product-intro-title::before {
    margin-bottom: 12px;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .products-page .product-intro-title,
  .products-page .product-intro-copy {
    width: 100%;
    max-width: none;
    transform: none;
  }

  .products-page .product-intro-title h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: 1.05;
  }

  .products-page .product-intro-copy {
    padding: 18px;
    border: 1px solid rgba(145, 213, 237, 0.22);
    border-radius: 18px;
    background: rgba(2, 13, 24, 0.72);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
  }

  .products-page .product-intro-copy p {
    margin: 0;
    font-size: clamp(0.82rem, 3.6vw, 0.92rem);
    line-height: 1.68;
  }

  .products-page .product-intro-copy p span { display: inline; }
  .products-page .product-intro-copy p span + span::before { content: " "; }

  .products-page .product-intro-link {
    width: 100%;
    min-height: 50px;
    margin-top: 18px;
    padding-inline: 20px;
    background: rgba(114, 214, 245, 0.08);
  }

  .products-page .product-intro-proto {
    align-items: flex-start;
  }

  .products-page .product-intro-proto img {
    width: 138%;
    flex: 0 0 138%;
    max-width: none;
    height: auto;
    object-position: right top;
  }

  .products-page .product-intro-image-note {
    right: 18px;
    bottom: 12px;
    max-width: calc(100% - 36px);
    font-size: 0.58rem;
  }
}

/* Dedicated vertical scroll-snap container */
html.company-page-root,
html.site-snap-root,
html.company-page-root body,
html.site-snap-root body {
  height: 100%;
  overflow: hidden;
}

.snap-container {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: var(--header-h);
  padding-bottom: var(--company-footer-h);
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-padding-top: var(--header-h);
  scroll-padding-bottom: var(--company-footer-h);
  scroll-snap-type: y mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.snap-container::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.snap-container:focus-visible {
  outline: 2px solid rgba(114, 214, 245, 0.9);
  outline-offset: -2px;
}

.snap-container > [data-snap-section] {
  position: relative;
  height: auto !important;
  min-height: calc(100vh - var(--header-h) - var(--company-footer-h)) !important;
  min-height: calc(100dvh - var(--header-h) - var(--company-footer-h)) !important;
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal !important;
}

.products-page .snap-container > [data-snap-section] {
  scroll-snap-stop: always !important;
}

.products-page #long-term-projects {
  scroll-margin-top: 0;
}

@media (min-width: 981px) {
  .products-page .snap-container > .product-future-section {
    height: calc(100vh - var(--header-h) - var(--company-footer-h)) !important;
    height: calc(100dvh - var(--header-h) - var(--company-footer-h)) !important;
    min-height: 0 !important;
    overflow: hidden;
  }

  .products-page .product-future-layout {
    height: 100%;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
  }

  .products-page .future-product-cards {
    height: auto;
    min-height: 0;
    align-self: stretch;
  }

  .products-page .future-product-card { min-height: 0; }
}

.company-page .snap-container,
.system-page .snap-container {
  padding-top: var(--header-h);
  padding-bottom: var(--company-footer-h);
}

.company-page .site-footer,
.system-page .site-footer {
  position: fixed;
  inset: auto 0 0;
  height: var(--company-footer-h);
}

.news-page .site-header {
  position: fixed;
  inset: 0 0 auto;
}

.news-page .section-nav {
  right: 18px;
  left: auto;
  display: grid;
}

.news-page .snap-container {
  padding-top: var(--header-h);
  padding-bottom: var(--company-footer-h);
}

.news-page .site-footer {
  position: fixed;
  z-index: 1000;
  inset: auto 0 0;
  height: var(--company-footer-h);
  padding: 12px 0;
  background: #000914;
}

.news-page .site-footer .footer-inner {
  height: 100%;
  align-items: center;
}

.news-page .snap-container > [data-snap-section] {
  height: calc(100vh - var(--header-h) - var(--company-footer-h)) !important;
  height: calc(100dvh - var(--header-h) - var(--company-footer-h)) !important;
  min-height: 0 !important;
  overflow: hidden;
}

.news-page .news-hero { min-height: 0; }

.news-page .news-latest,
.news-page .news-partners,
.news-page .news-collaboration {
  display: grid;
  align-items: center;
  padding-block: clamp(20px, 3vh, 36px);
}

.news-page .news-latest > .news-shell,
.news-page .news-partners > .news-shell {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.news-page .news-section-heading {
  margin-bottom: clamp(16px, 2.2vh, 26px);
}

.news-page .news-card-grid {
  min-height: 0;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.news-page .news-card {
  min-height: 0;
}

.news-page .news-card-content {
  min-height: 0;
  overflow: hidden;
}

.news-page .news-card h3,
.news-page .news-card-content > p:not(.news-card-source) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.news-page .news-card h3 { line-clamp: 3; -webkit-line-clamp: 3; }
.news-page .news-card-compact h3 { line-clamp: 2; -webkit-line-clamp: 2; }
.news-page .news-card-content > p:not(.news-card-source) { line-clamp: 3; -webkit-line-clamp: 3; }

.news-page .news-card-featured {
  grid-column: auto;
  grid-row: 1 / span 2;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-rows: minmax(0, 1fr);
}

.news-page .news-card-compact {
  grid-template-columns: minmax(120px, 0.4fr) minmax(0, 0.6fr);
  grid-template-rows: minmax(0, 1fr);
}

.news-page .partner-network {
  min-height: 0;
  height: 100%;
  display: block;
}

.news-page .partner-network-groups {
  height: 100%;
  min-height: 0;
}

.news-page .partner-network-card {
  min-height: 0;
}

body.menu-open .snap-container { overflow-y: hidden; }

/* Keep the complete history inside its own snapped viewport. */
.achievements-page .snap-container > .history-section {
  height: calc(100vh - var(--header-h) - var(--company-footer-h)) !important;
  height: calc(100dvh - var(--header-h) - var(--company-footer-h)) !important;
  min-height: 0 !important;
  overflow: hidden;
}

.achievements-page .history-section .timeline {
  max-height: none;
  overflow: visible;
}

@media (min-width: 769px) and (max-height: 800px) {
  .news-page .news-card-content,
  .news-page .news-card-compact .news-card-content {
    padding: 15px;
  }

  .news-page .news-card-source { margin: 8px 0 4px; }
  .news-page .news-card-content > p:not(.news-card-source) { margin-top: 8px; }
  .news-page .news-card-compact .news-card-content > p:not(.news-card-source) { display: none; }
  .news-page .news-read-more { padding-top: 10px; }

  .news-page .partner-network-card { padding: 18px; }
  .achievements-page .timeline-month {
    padding-block: 7px;
  }

  .achievements-page .timeline-event { padding-block: 3px; }

  .achievements-page .timeline-event + .timeline-event {
    margin-top: 2px;
    padding-top: 5px;
  }

  .achievements-page .timeline-event p {
    font-size: 0.9rem;
    line-height: 1.56;
  }
}

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

@media (max-width: 980px), (max-height: 699px) {
  .snap-container { scroll-snap-type: y proximity; }
}

/* Mobile normalization for every scroll-snap page */
@media (max-width: 768px) {
  .footer-font-credit {
    top: auto;
    bottom: 4px;
    width: 100%;
    color: rgba(157, 179, 188, 0.66);
    font-size: 7px;
    line-height: 1.3;
    transform: translateX(-50%);
  }

  .company-page,
  .system-page,
  .news-page,
  .fixed-chrome-page {
    --company-footer-h: 96px;
  }

  html.company-page-root .nav-shell,
  html.site-snap-root .nav-shell {
    width: calc(100% - 24px);
    gap: 8px;
  }

  html.company-page-root .brand-logo,
  html.site-snap-root .brand-logo {
    width: min(190px, calc(100% - 116px));
    min-width: 0;
    height: 42px;
    flex: 1 1 auto;
  }

  html.company-page-root .language-toggle,
  html.site-snap-root .language-toggle {
    flex: 0 0 auto;
    margin-left: auto;
  }

  html.company-page-root .language-toggle span,
  html.site-snap-root .language-toggle span {
    min-width: 30px;
    padding: 5px 6px;
  }

  html.company-page-root .menu-toggle,
  html.site-snap-root .menu-toggle {
    flex: 0 0 44px;
  }

  .snap-container {
    min-width: 0;
    scroll-padding-bottom: var(--company-footer-h);
  }

  .snap-container > [data-snap-section] {
    width: 100%;
    min-width: 0;
  }

  .company-page .site-footer,
  .system-page .site-footer,
  .news-page .site-footer,
  .fixed-chrome-page .site-footer {
    height: var(--company-footer-h);
    min-height: 0;
    padding: 8px 0;
  }

  .company-page .site-footer .footer-inner,
  .system-page .site-footer .footer-inner,
  .news-page .site-footer .footer-inner,
  .fixed-chrome-page .site-footer .footer-inner {
    width: calc(100% - 24px);
    height: 100%;
    min-height: 0;
    padding-bottom: 18px;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .company-page .site-footer .footer-brand,
  .system-page .site-footer .footer-brand,
  .news-page .site-footer .footer-brand,
  .fixed-chrome-page .site-footer .footer-brand {
    width: 104px;
    height: 34px;
  }

  .company-page .site-footer .footer-brand img,
  .system-page .site-footer .footer-brand img,
  .news-page .site-footer .footer-brand img,
  .fixed-chrome-page .site-footer .footer-brand img {
    width: 132px;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
  }

  .company-page .site-footer .footer-contact-cluster,
  .system-page .site-footer .footer-contact-cluster,
  .news-page .site-footer .footer-contact-cluster,
  .fixed-chrome-page .site-footer .footer-contact-cluster {
    min-width: 0;
    justify-self: end;
    align-items: center;
    gap: 8px;
  }

  .company-page .site-footer .footer-meta,
  .system-page .site-footer .footer-meta,
  .news-page .site-footer .footer-meta,
  .fixed-chrome-page .site-footer .footer-meta {
    min-width: 0;
    font-size: 7.2px;
    line-height: 1.3;
    text-align: right;
  }

  .company-page .site-footer .footer-meta > p:first-child,
  .company-page .site-footer .footer-representative,
  .system-page .site-footer .footer-meta > p:first-child,
  .system-page .site-footer .footer-representative,
  .news-page .site-footer .footer-meta > p:first-child,
  .news-page .site-footer .footer-representative,
  .fixed-chrome-page .site-footer .footer-meta > p:first-child,
  .fixed-chrome-page .site-footer .footer-representative {
    display: none;
  }

  .company-page .site-footer .footer-socials,
  .system-page .site-footer .footer-socials,
  .news-page .site-footer .footer-socials,
  .fixed-chrome-page .site-footer .footer-socials {
    flex-direction: row;
    gap: 4px;
  }

  .company-page .site-footer .footer-instagram,
  .company-page .site-footer .footer-linkedin,
  .system-page .site-footer .footer-instagram,
  .system-page .site-footer .footer-linkedin,
  .news-page .site-footer .footer-instagram,
  .news-page .site-footer .footer-linkedin,
  .fixed-chrome-page .site-footer .footer-instagram,
  .fixed-chrome-page .site-footer .footer-linkedin {
    width: 24px;
    height: 24px;
  }

  .achievements-page .achievement-intro-copy,
  .achievements-page .achievement-intro-copy p,
  .news-page .news-card-content,
  .news-page .partner-network-card {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .news-page .section-nav {
    right: 7px;
    display: grid;
    gap: 7px;
  }

  .news-page .section-nav a {
    width: 7px;
    height: 7px;
  }

  .news-page .section-nav a[aria-current="true"] {
    height: 19px;
  }

  .news-page .news-hero-inner {
    padding-block: 28px;
  }

  .news-page .news-hero-copy h1 {
    font-size: clamp(2.6rem, 13vw, 3.45rem);
  }

  .news-page .news-hero-copy > p:last-child { margin-top: 16px; }

  .news-page .news-latest,
  .news-page .news-partners,
  .news-page .news-collaboration {
    padding-block: 16px;
  }

  .news-page .news-section-heading {
    margin-bottom: 12px;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
  }

  .news-page .news-section-kicker { margin-bottom: 6px; }
  .news-page .news-section-heading h2 { font-size: clamp(1.35rem, 6vw, 1.7rem); }
  .news-page .news-section-note { display: none; }

  .news-page .news-outline-link {
    min-height: 36px;
    padding-inline: 11px;
    gap: 10px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .news-page .news-card-grid {
    grid-template-columns: none;
    grid-template-rows: minmax(0, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .news-page .news-card-grid::-webkit-scrollbar,
  .news-page .partner-group-cards::-webkit-scrollbar {
    display: none;
  }

  .news-page .news-card-featured,
  .news-page .news-card-compact {
    grid-column: auto;
    grid-row: 1;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(125px, 34%) minmax(0, 1fr);
    scroll-snap-align: start;
  }

  .news-page .news-card-content,
  .news-page .news-card-compact .news-card-content {
    padding: 15px;
  }

  .news-page .news-card-source { margin: 8px 0 4px; }
  .news-page .news-card h3 { font-size: 1rem; line-height: 1.34; }

  .news-page .news-card-content > p:not(.news-card-source) {
    margin-top: 7px;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .news-page .news-read-more { padding-top: 9px; }

  .news-page .partner-network-groups {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 9px;
    overflow: hidden;
  }

  .news-page .partner-network-group {
    min-height: 0;
  }

  .news-page .partner-group-cards {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .news-page .partner-network-partners .partner-group-cards {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 10px;
  }

  .news-page .partner-network-investors .partner-group-cards {
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .news-page .partner-network-card {
    min-height: 0;
    padding: 18px;
    scroll-snap-align: start;
  }

  .news-page .partner-person-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 15px;
  }

  .news-page .partner-person-avatar { width: 64px; }
  .news-page .partner-person-avatar svg { width: 38px; height: 38px; }
  .news-page .partner-person-name { font-size: 1.35rem; }
  .news-page .partner-person-card .partner-name { margin-top: 9px; }

  .news-page .news-collaboration-panel {
    min-height: 0;
    padding: 24px 20px;
    gap: 24px;
  }

  .achievements-page .history-section > .container {
    padding-block: 4px;
    gap: 4px;
  }

  .achievements-page .history-section .section-head {
    margin: 0;
  }

  .achievements-page .history-section .section-head h2 {
    font-size: clamp(1.65rem, 7.5vw, 2rem);
    line-height: 1;
  }

  .achievements-page .timeline-month {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 9px;
    padding-block: 5px;
  }

  .achievements-page .timeline-month-label {
    padding-top: 2px;
    font-size: 0.78rem;
  }

  .achievements-page .timeline-event { padding-block: 2px; }

  .achievements-page .timeline-event + .timeline-event {
    margin-top: 1px;
    padding-top: 3px;
  }

  .achievements-page .timeline-event p {
    font-size: 0.76rem;
    line-height: 1.5;
  }
}

@media (max-height: 720px) {
  .news-page .news-latest,
  .news-page .news-partners,
  .news-page .news-collaboration {
    padding-block: 12px;
  }

  .news-page .news-section-heading { margin-bottom: 9px; }
  .news-page .news-section-kicker { margin-bottom: 4px; }

  .news-page .news-card-content > p:not(.news-card-source) {
    display: none;
  }

  .news-page .news-card-source { margin-block: 6px 3px; }
  .news-page .news-read-more { padding-top: 7px; }

  .news-page .news-collaboration-panel {
    padding-block: 20px;
    gap: 18px;
  }

  .achievements-page .history-section > .container {
    padding-block: 3px;
    gap: 3px;
  }

  .achievements-page .timeline-month { padding-block: 4px; }

  .achievements-page .timeline-event p {
    font-size: 0.8rem;
    line-height: 1.48;
  }
}

@media (max-width: 768px) {
  .achievements-page .snap-container > .history-section {
    height: auto !important;
    min-height: calc(100dvh - var(--header-h) - var(--company-footer-h)) !important;
    overflow: visible;
  }

  .achievements-page .history-section > .container {
    width: calc(100% - 32px);
    min-height: 0;
    padding: 28px 0 44px;
    gap: 18px;
  }

  .achievements-page .history-section .section-head {
    padding-top: 8px;
  }

  .achievements-page .history-section .timeline {
    display: block;
  }

  .achievements-page .timeline-month {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding-block: 13px;
  }

  .achievements-page .timeline-month-label {
    padding-top: 0;
    font-size: 0.9rem;
  }

  .achievements-page .timeline-event {
    padding-block: 3px;
  }

  .achievements-page .timeline-event + .timeline-event {
    margin-top: 2px;
    padding-top: 5px;
  }

  .achievements-page .timeline-event p {
    font-size: 0.86rem;
    line-height: 1.64;
  }
}

/* Keep the mobile product disclosure visible above the fixed footer. */
@media (max-width: 768px) {
  .products-page .product-intro-image-note {
    position: relative;
    z-index: 4;
    order: -1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-width: 0;
    max-width: none;
    height: auto;
    min-height: 0;
    max-height: none;
    flex: 0 0 auto;
    align-self: stretch;
    margin: 0 0 2px;
    padding: 8px 10px;
    overflow: visible;
    border: 1px solid rgba(145, 213, 237, 0.18);
    border-radius: 10px;
    color: rgba(226, 235, 239, 0.76);
    background: rgba(2, 13, 24, 0.72);
    font-size: 0.68rem;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
  }
}

/* 제품 카드 좌우 탐색 안내는 모바일에서만 표시 */
.product-swipe-hint {
  display: none;
}

/* 34번째 수정: 모바일 화면 흐름·캐러셀 조작부·뉴스 첫 화면 통합 */
@media (max-width: 768px) {
  /* 1. 회사 소개 히어로 버튼을 상하로 배치 */
  .company-page .overview-hero .hero-actions {
    width: min(100%, 250px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .company-page .overview-hero .hero-actions .button {
    width: 100%;
    min-height: 44px;
  }

  /* 2. 빛-데이터 섹션의 사진을 본문 아래쪽에 안정적으로 배치 */
  .company-page .vision-section-laser .vision-section-layout {
    min-height: var(--mobile-snap-h);
  }

  .company-page .vision-section-laser .vision-section-visual {
    inset: auto 0 0;
    width: auto;
    height: 53%;
    min-height: 320px;
    opacity: 1;
    background-position: 52% 58%;
  }

  .company-page .vision-section-laser .vision-section-visual::after {
    background: linear-gradient(
      180deg,
      rgba(0, 9, 20, 0.56) 0%,
      rgba(0, 9, 20, 0.12) 34%,
      rgba(0, 9, 20, 0.16) 100%
    );
  }

  .company-page .vision-section-laser .vision-section-copy {
    position: relative;
    z-index: 2;
    padding-bottom: 32px;
    background: linear-gradient(
      180deg,
      rgba(0, 9, 20, 0.96) 0%,
      rgba(0, 9, 20, 0.88) 76%,
      rgba(0, 9, 20, 0.18) 100%
    );
  }

  /* 3. 비즈니스 필드·기술 검증 캐러셀 리모컨 높이와 터치 영역 확대 */
  :is(.company-page, .achievements-page) .field-carousel {
    grid-template-rows: minmax(0, 1fr) 52px;
    gap: 8px;
  }

  :is(.company-page, .achievements-page) .field-carousel-controls {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 4px 10px;
    gap: 8px;
    border-radius: 12px;
  }

  :is(.company-page, .achievements-page) .field-carousel-control {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 1rem;
  }

  :is(.company-page, .achievements-page) .field-carousel-dots {
    gap: 8px;
  }

  :is(.company-page, .achievements-page) .field-carousel-dots button {
    width: 8px;
    height: 8px;
  }

  :is(.company-page, .achievements-page) .field-carousel-status {
    min-width: 42px;
    font-size: 0.74rem;
  }

  /* 4. 제품 소개 히어로의 이미지·AI 안내·본문을 각각 독립된 흐름으로 배치 */
  .products-page .product-intro-layout {
    --product-mobile-media-h: clamp(230px, 34dvh, 290px);
    width: 100%;
    min-height: var(--mobile-snap-h);
    padding: 0 18px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    overflow: visible;
  }

  .products-page .product-intro-layout::after {
    inset: 0 0 auto;
    height: var(--product-mobile-media-h);
    background: linear-gradient(
      180deg,
      rgba(0, 7, 16, 0.08) 0%,
      rgba(0, 7, 16, 0.08) 62%,
      #000914 100%
    );
  }

  .products-page .product-intro-proto {
    position: relative;
    z-index: 0;
    inset: auto;
    order: 1;
    width: calc(100% + 36px);
    height: var(--product-mobile-media-h);
    min-height: 0;
    flex: 0 0 var(--product-mobile-media-h);
    margin-inline: -18px;
    overflow: hidden;
  }

  .products-page .product-intro-proto img {
    width: 100%;
    max-width: none;
    height: 100%;
    flex: none;
    object-fit: cover;
    object-position: 62% center;
  }

  .products-page .product-intro-image-note {
    position: relative;
    z-index: 2;
    inset: auto;
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 8px 10px;
    font-size: 0.76rem;
    line-height: 1.48;
    text-align: left;
  }

  .products-page .product-intro-title {
    order: 3;
  }

  .products-page .product-intro-title::before {
    margin-bottom: 6px;
  }

  .products-page .product-intro-title h1 {
    font-size: clamp(2.15rem, 10vw, 2.7rem);
  }

  .products-page .product-intro-copy {
    order: 4;
    padding: 16px;
  }

  /* 5. 개발 제품 가로 스와이프 안내와 다음 카드 미리보기 */
  .products-page .product-pair-section {
    position: relative;
  }

  .products-page .product-swipe-hint {
    position: absolute;
    z-index: 8;
    top: 14px;
    left: 50%;
    min-height: 36px;
    margin: 0;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(115, 214, 245, 0.48);
    border-radius: 999px;
    color: #dff7ff;
    background: rgba(3, 19, 30, 0.9);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
  }

  .products-page .product-swipe-hint span {
    color: #75ddfb;
    font-size: 1.1rem;
  }

  .products-page .product-pair-layout {
    width: calc(100% - 20px);
    min-height: max(700px, var(--mobile-snap-h));
    padding: 58px 0 14px;
    grid-auto-columns: 94%;
    gap: 10px;
    scroll-padding-inline: 0;
  }

  .products-page .product-compact-card {
    min-height: 630px;
  }

  /* 6. 긴 주요 연혁 영역은 모바일에서 강제 스냅을 사용하지 않음 */
  .achievements-page .snap-container {
    scroll-snap-type: none !important;
  }

  .achievements-page .snap-container > #company-history {
    height: auto !important;
    min-height: var(--mobile-snap-h) !important;
    max-height: none !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  .achievements-page .history-section > .container {
    min-height: 0;
    padding: 24px 0 56px;
    align-content: start;
  }

  .achievements-page .timeline-month {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  /* 7. 뉴스 히어로와 최신 뉴스 첫 카드를 한 모바일 화면에 배치 */
  .news-page .snap-container > #news-overview {
    height: 258px !important;
    min-height: 258px !important;
    max-height: 258px !important;
    overflow: hidden !important;
    scroll-snap-align: start;
  }

  .news-page .news-hero-inner {
    height: 100%;
    min-height: 0;
    padding-block: 16px;
    align-items: flex-end;
  }

  .news-page .news-hero-copy {
    max-width: 290px;
  }

  .news-page .news-kicker {
    margin-bottom: 6px;
    font-size: 0.66rem;
  }

  .news-page .news-hero-copy h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.7rem);
    line-height: 0.95;
  }

  .news-page .news-hero-copy > p:last-child {
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .news-page .snap-container > #latest-news {
    height: calc(var(--mobile-snap-h) - 258px) !important;
    min-height: calc(var(--mobile-snap-h) - 258px) !important;
    max-height: calc(var(--mobile-snap-h) - 258px) !important;
    padding-block: 10px !important;
    overflow: hidden !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  .news-page #latest-news > .news-shell {
    height: 100%;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .news-page #latest-news .news-section-heading {
    margin-bottom: 8px;
  }

  .news-page #latest-news .news-section-kicker {
    margin-bottom: 2px;
    font-size: 0.64rem;
  }

  .news-page #latest-news .news-section-heading h2 {
    font-size: 1.35rem;
  }

  .news-page #latest-news .news-outline-link {
    min-height: 32px;
    padding-inline: 9px;
    font-size: 0.72rem;
  }

  .news-page #latest-news .news-card-grid {
    height: 100%;
    min-height: 0;
    grid-auto-columns: 84%;
    gap: 9px;
  }

  .news-page #latest-news :is(.news-card-featured, .news-card-compact) {
    grid-template-rows: 112px minmax(0, 1fr);
  }

  .news-page #latest-news .news-card-content,
  .news-page #latest-news .news-card-compact .news-card-content {
    padding: 11px 12px;
  }

  .news-page #latest-news .news-card-meta {
    font-size: 0.7rem;
  }

  .news-page #latest-news .news-card-source {
    margin: 4px 0 2px;
    font-size: 0.72rem;
  }

  .news-page #latest-news .news-card h3 {
    font-size: 0.98rem;
    line-height: 1.34;
  }

  .news-page #latest-news .news-card-content > p:not(.news-card-source) {
    display: none;
  }

  .news-page #latest-news .news-read-more {
    margin-top: auto;
    padding-top: 6px;
    font-size: 0.74rem;
  }
}

/* Short mobile viewports: shrink the image stage so the fixed footer cannot cover the disclosure. */
@media (max-width: 768px) and (max-height: 620px) {
  .products-page .product-intro-layout {
    min-height: calc(100dvh - var(--header-h) - var(--company-footer-h));
    padding-top: clamp(
      72px,
      calc(100dvh - var(--header-h) - var(--company-footer-h) - 80px),
      280px
    );
    justify-content: flex-start;
  }
}

/* Let the document grow when the contact textarea is resized. */
@media (min-width: 981px) {
  .contact-page {
    overflow-y: auto;
  }

  .contact-page main {
    height: auto;
    min-height: 100svh;
    padding-bottom: var(--company-footer-h);
    overflow: visible;
  }

  .contact-page .contact-split-stage {
    height: auto;
    min-height: calc(100svh - var(--header-h) - var(--company-footer-h));
    overflow: visible;
  }

  .contact-page .contact-split-grid {
    height: auto;
    min-height: inherit;
  }
}

/* 31번째 수정: 최소 모바일에서도 한 스냅을 한 화면에 완전히 수용 */
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) {
    --company-footer-h: 52px;
    --mobile-snap-h: calc(100dvh - var(--header-h) - var(--company-footer-h));
  }

  .site-header {
    height: var(--header-h);
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .nav-shell {
    width: calc(100% - 20px);
    gap: 6px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .brand-logo {
    width: min(166px, calc(100% - 112px));
    min-width: 0;
    height: 34px;
    flex: 1 1 auto;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .brand-logo img {
    width: 202px;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .language-toggle {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 3px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .language-toggle span {
    min-width: 27px;
    padding: 4px 5px;
    font-size: 0.66rem;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .menu-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  :is(.company-page, .system-page, .news-page) .snap-container {
    height: 100dvh;
    padding-top: var(--header-h);
    padding-bottom: var(--company-footer-h);
    scroll-padding-top: var(--header-h);
    scroll-padding-bottom: var(--company-footer-h);
    scroll-snap-type: y mandatory !important;
  }

  :is(.company-page, .system-page, .news-page) .snap-container > [data-snap-section] {
    width: 100%;
    height: var(--mobile-snap-h) !important;
    min-height: var(--mobile-snap-h) !important;
    max-height: var(--mobile-snap-h) !important;
    overflow: hidden !important;
    scroll-snap-align: start;
    scroll-snap-stop: always !important;
  }

  :is(.company-page, .system-page, .news-page) .snap-container [data-snap-section] .reveal,
  :is(.company-page, .system-page, .news-page) .snap-container > [data-snap-section].reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer {
    height: var(--company-footer-h);
    min-height: var(--company-footer-h);
    padding: 4px 0;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer .footer-inner {
    width: calc(100% - 20px);
    height: 100%;
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer .footer-brand {
    width: 106px;
    height: 30px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer .footer-brand img {
    width: 130px;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer .footer-contact-cluster {
    min-width: 0;
    justify-self: end;
    gap: 0;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer .footer-meta {
    display: none;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer .footer-socials {
    display: flex;
    flex-direction: row;
    gap: 5px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer :is(.footer-instagram, .footer-linkedin) {
    width: 24px;
    height: 24px;
  }

  /* 회사 소개: 첫 화면 */
  .company-page .overview-hero-layout {
    width: calc(100% - 24px);
    height: 100%;
    min-height: 0;
    padding: 14px 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  .company-page .overview-hero-primary {
    width: 100%;
    min-height: 0;
    align-content: center;
  }

  .company-page .overview-hero-primary h1 {
    font-size: clamp(1.85rem, 9.2vw, 2.45rem);
    line-height: 1.08;
  }

  .company-page .overview-hero-primary .hero-tagline {
    order: 2;
    max-width: 26ch;
    margin-top: 10px;
    font-size: clamp(0.9rem, 4.5vw, 1.15rem);
    line-height: 1.25;
  }

  .company-page .overview-hero-primary .company-intro-block {
    order: 3;
    max-width: none;
    margin-top: 12px;
    font-size: clamp(0.7rem, 3.05vw, 0.82rem);
    line-height: 1.42;
  }

  .company-page .overview-hero-primary .company-intro-block::before {
    width: 36px;
    height: 2px;
    margin-bottom: 9px;
  }

  .company-page .overview-hero .hero-actions {
    order: 4;
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .company-page .overview-hero .button {
    width: 100%;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  body.lang-en.company-page .overview-hero .button {
    padding-inline: 8px;
  }

  body.lang-en.company-page .overview-hero .button.collaboration {
    font-size: 0.7rem;
    letter-spacing: -0.02em;
  }

  body.lang-en.company-page .overview-hero-primary h1 {
    font-size: clamp(1.55rem, 7.8vw, 2rem);
  }

  body.lang-en.company-page .overview-hero-primary .hero-tagline {
    margin-top: 8px;
    font-size: 0.86rem;
  }

  body.lang-en.company-page .overview-hero-primary .company-intro-block {
    margin-top: 10px;
    font-size: 0.66rem;
    line-height: 1.34;
    overflow-wrap: anywhere;
  }

  /* 회사 소개: 비전 이미지는 적층하지 않고 전체 배경으로 사용 */
  .company-page .vision-section-layout,
  .company-page .vision-section-combustion .vision-section-layout {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    display: block;
  }

  .company-page .vision-section-visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    border-radius: 0;
    opacity: 0.72;
  }

  .company-page .vision-section-visual::after {
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.18), rgba(0, 9, 20, 0.96) 84%);
  }

  .company-page .vision-section-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.06) 4%, rgba(0, 9, 20, 0.42) 42%, rgba(0, 9, 20, 0.95) 100%);
  }

  .company-page .vision-section-copy h2 {
    max-width: none;
    font-size: clamp(1.38rem, 7.2vw, 1.85rem);
    line-height: 1.08;
  }

  .company-page .vision-section-copy h2::after {
    width: 42%;
    height: 1px;
    margin-top: 9px;
  }

  .company-page .vision-section-body {
    max-width: none;
    margin-top: 9px;
    font-size: clamp(0.68rem, 2.9vw, 0.78rem);
    line-height: 1.4;
  }

  .company-page .vision-section-body p + p {
    margin-top: 6px;
  }

  body.lang-en.company-page .vision-section-copy h2 {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
  }

  body.lang-en.company-page .vision-section-body {
    font-size: 0.64rem;
    line-height: 1.32;
    overflow-wrap: anywhere;
  }

  /* 회사 소개: 통합 패키지 */
  .company-page .overview-package-layout {
    width: calc(100% - 24px);
    height: 100%;
    min-height: 0;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .company-page .overview-package-primary,
  .company-page .overview-package-secondary {
    width: 100%;
    min-height: 0;
  }

  .company-page .overview-package-primary h2 {
    max-width: none;
    font-size: clamp(1.35rem, 6.9vw, 1.75rem);
    line-height: 1.1;
  }

  .company-page .overview-package-secondary {
    gap: 6px;
  }

  .company-page .overview-package-secondary p {
    min-height: 0;
    padding: 7px 8px;
    grid-template-columns: 28px 30px minmax(0, 1fr);
    gap: 6px;
    border-radius: 9px;
  }

  .company-page .package-number {
    font-size: 0.78rem;
  }

  .company-page .package-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .company-page .package-icon svg {
    width: 17px;
    height: 17px;
  }

  .company-page .package-item-label {
    font-size: clamp(0.67rem, 2.9vw, 0.76rem);
    line-height: 1.3;
  }

  body.lang-en.company-page .overview-package-primary h2 {
    font-size: 1.2rem;
  }

  body.lang-en.company-page .package-item-label {
    font-size: 0.62rem;
  }

  /* 회사/성과 공통 캐러셀 */
  :is(.company-page, .achievements-page) .field-showcase-layout {
    width: calc(100% - 24px);
    height: 100%;
    min-height: 0;
    padding: 10px 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 7px;
  }

  :is(.company-page, .achievements-page) .field-showcase-layout > h2 {
    margin: 0;
    font-size: clamp(1.2rem, 6.2vw, 1.55rem);
    line-height: 1.1;
  }

  .company-page .field-showcase-layout > h2 span {
    display: inline;
  }

  .company-page .field-showcase-layout > h2 span + span::before {
    content: " ";
  }

  :is(.company-page, .achievements-page) .field-carousel {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) 32px;
    gap: 5px;
  }

  :is(.company-page, .achievements-page) .field-carousel-viewport {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  :is(.company-page, .achievements-page) .field-carousel-track,
  :is(.company-page, .achievements-page) .field-carousel-slide {
    height: 100%;
    min-height: 0;
  }

  :is(.company-page, .achievements-page) .field-carousel-copy {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 12px 12px 14px;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.02) 15%, rgba(0, 9, 20, 0.5) 54%, rgba(0, 9, 20, 0.95) 100%);
  }

  :is(.company-page, .achievements-page) .field-carousel-copy h3 {
    margin: 0 0 5px;
    font-size: clamp(1.12rem, 5.8vw, 1.45rem);
    line-height: 1.08;
  }

  :is(.company-page, .achievements-page) .field-carousel-copy h3::after {
    width: 38px;
    margin-top: 6px;
  }

  :is(.company-page, .achievements-page) .field-carousel-copy p {
    margin: 0;
    font-size: clamp(0.65rem, 2.8vw, 0.74rem);
    line-height: 1.34;
  }

  .company-page .field-carousel-copy .field-link {
    width: auto;
    min-height: 30px;
    margin-top: 7px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  :is(.company-page, .achievements-page) .field-carousel-controls {
    position: relative;
    inset: auto;
    width: 100%;
    height: 32px;
    min-height: 32px;
    padding: 0 4px;
    justify-content: center;
    transform: none;
  }

  :is(.company-page, .achievements-page) .field-carousel-control {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    font-size: 0.8rem;
  }

  :is(.company-page, .achievements-page) .field-carousel-dots button {
    width: 6px;
    height: 6px;
  }

  :is(.company-page, .achievements-page) .field-carousel-status {
    min-width: 34px;
    font-size: 0.62rem;
  }

  body.lang-en.company-page .field-showcase-layout > h2 {
    font-size: 1rem;
  }

  body.lang-en :is(.company-page, .achievements-page) .field-carousel-copy p {
    font-size: 0.61rem;
    line-height: 1.28;
  }

  /* 제품: 첫 화면 */
  .products-page .product-intro-layout {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: clamp(110px, 26dvh, 220px) 12px 10px;
    justify-content: flex-start;
    gap: 6px;
  }

  .products-page .product-intro-title h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .products-page .product-intro-title::before {
    margin-bottom: 5px;
    font-size: 0.56rem;
  }

  .products-page .product-intro-copy {
    padding: 8px 9px;
    border-radius: 10px;
  }

  .products-page .product-intro-copy p {
    font-size: clamp(0.64rem, 2.8vw, 0.72rem);
    line-height: 1.38;
  }

  .products-page .product-intro-link {
    min-height: 32px;
    margin-top: 7px;
    padding-inline: 11px;
    font-size: 0.68rem;
  }

  .products-page .product-intro-image-note {
    margin: 0;
    padding: 5px 7px;
    font-size: 0.56rem;
    line-height: 1.3;
  }

  /* 제품: 개발 제품은 한 장씩 가로 스와이프 */
  .products-page .product-pair-layout {
    width: calc(100% - 20px);
    height: 100%;
    min-height: 0;
    padding: 8px 0;
    display: grid;
    grid-template-columns: none;
    grid-template-rows: minmax(0, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .products-page .product-pair-layout::-webkit-scrollbar,
  .products-page .future-product-cards::-webkit-scrollbar,
  .achievements-page .timeline::-webkit-scrollbar {
    display: none;
  }

  .products-page .product-compact-card {
    width: 100%;
    height: 100%;
    min-height: 0;
    scroll-snap-align: start;
  }

  .products-page .product-compact-copy {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 11px 12px;
  }

  .products-page .developing-status {
    margin: 0 0 6px;
    padding: 4px 8px;
    font-size: 0.64rem;
  }

  .products-page .product-compact-copy h2 {
    font-size: clamp(1.35rem, 6.8vw, 1.7rem);
  }

  .products-page .product-compact-copy h3 {
    margin: 4px 0 7px;
    font-size: clamp(0.92rem, 4.4vw, 1.08rem);
  }

  .products-page .product-compact-copy > p:not(.product-image-note) {
    max-width: none;
    font-size: clamp(0.64rem, 2.7vw, 0.72rem);
    line-height: 1.34;
  }

  .products-page .product-compact-copy .product-wavelength {
    width: 100%;
    margin-top: auto;
    padding: 6px 7px;
    gap: 7px;
    font-size: 0.62rem;
    line-height: 1.3;
  }

  .products-page .product-wavelength strong {
    padding-right: 7px;
  }

  .products-page .product-compact-copy .product-image-note {
    margin-top: 5px;
    padding-top: 5px;
    font-size: 0.55rem;
    line-height: 1.25;
  }

  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    font-size: 0.59rem;
    line-height: 1.26;
  }

  /* 제품: 후속 연구 카드도 한 장씩 가로 스와이프 */
  .products-page .product-future-layout {
    width: calc(100% - 20px);
    height: 100%;
    min-height: 0;
    padding: 9px 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    gap: 7px;
  }

  .products-page .product-future-layout > h2 {
    font-size: clamp(1.25rem, 6.4vw, 1.6rem);
  }

  .products-page .future-product-cards {
    width: 100%;
    height: 100%;
    min-height: 0;
    grid-row: 2;
    align-self: stretch;
    grid-template-columns: none;
    grid-template-rows: minmax(0, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 90%;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .products-page .future-product-card {
    height: 100%;
    min-height: 0;
    scroll-snap-align: start;
  }

  .products-page .future-card-copy {
    min-height: 34%;
    padding: 9px;
    gap: 7px;
  }

  .products-page .future-card-copy h3 {
    font-size: 1rem;
  }

  .products-page .future-card-copy p {
    margin-top: 3px;
    font-size: 0.66rem;
  }

  .products-page .future-status {
    padding: 3px 6px;
    font-size: 0.56rem;
  }

  .products-page .product-future-inquiry {
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  .products-page .product-future-inquiry p {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .products-page .product-future-inquiry .button {
    min-height: 32px;
    margin: 0;
    padding-inline: 10px;
    font-size: 0.66rem;
  }

  /* 성과: 소개 이미지를 전체 배경으로 전환 */
  .achievements-page .achievement-intro-layout {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 14px;
    display: flex;
    align-items: flex-end;
  }

  .achievements-page .achievement-intro-visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    opacity: 0.72;
  }

  .achievements-page .achievement-intro-visual::before {
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.08), rgba(0, 9, 20, 0.96) 88%);
  }

  .achievements-page .achievement-intro-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.18), rgba(0, 9, 20, 0.78));
  }

  .achievements-page .achievement-intro-copy h1 {
    font-size: clamp(1.3rem, 6.5vw, 1.65rem);
    line-height: 1.1;
  }

  .achievements-page .achievement-intro-copy h1 span:first-child {
    white-space: normal;
  }

  .achievements-page .achievement-intro-copy p {
    margin-top: 9px;
    font-size: clamp(0.66rem, 2.8vw, 0.74rem);
    line-height: 1.38;
  }

  body.lang-en.achievements-page .achievement-intro-copy h1 {
    font-size: 1.12rem;
  }

  body.lang-en.achievements-page .achievement-intro-copy p {
    font-size: 0.61rem;
    line-height: 1.3;
  }

  /* 성과: 연혁은 월 카드 단위 가로 스와이프 */
  .achievements-page .history-section > .container {
    width: calc(100% - 24px);
    height: 100%;
    min-height: 0;
    padding: 10px 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 7px;
  }

  .achievements-page .history-section .section-head {
    margin: 0;
    padding: 0;
  }

  .achievements-page .history-section .section-head h2 {
    font-size: clamp(1.25rem, 6.4vw, 1.55rem);
    line-height: 1.08;
  }

  .achievements-page .history-section .timeline {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: none;
    grid-template-rows: minmax(0, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .achievements-page .timeline-month {
    height: 100%;
    min-height: 0;
    padding: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    gap: 7px;
    border: 1px solid rgba(154, 220, 242, 0.18);
    border-radius: 10px;
    background: rgba(8, 26, 38, 0.72);
    scroll-snap-align: start;
  }

  .achievements-page .timeline-month-label {
    padding: 0;
    font-size: 0.8rem;
  }

  .achievements-page .timeline-events {
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .achievements-page .timeline-event,
  .achievements-page .timeline-event + .timeline-event {
    margin: 0;
    padding: 6px 0;
  }

  .achievements-page .timeline-event p {
    font-size: clamp(0.66rem, 2.8vw, 0.74rem);
    line-height: 1.36;
  }

  /* 뉴스: 고정 높이 안에서 카드와 파트너 정보를 재배치 */
  .news-page .news-hero-inner {
    padding-block: 14px;
  }

  .news-page .news-hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .news-page .news-hero-copy > p:last-child {
    margin-top: 10px;
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .news-page :is(.news-latest, .news-partners, .news-collaboration) {
    padding-block: 9px;
  }

  .news-page :is(.news-latest, .news-partners) > .news-shell {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .news-page .news-section-heading {
    margin-bottom: 7px;
  }

  .news-page .news-section-kicker {
    margin-bottom: 2px;
    font-size: 0.62rem;
  }

  .news-page .news-section-heading h2 {
    font-size: clamp(1.15rem, 5.8vw, 1.45rem);
  }

  .news-page .news-outline-link {
    min-height: 30px;
    padding-inline: 8px;
    font-size: 0.64rem;
  }

  .news-page .news-card-featured,
  .news-page .news-card-compact {
    grid-template-rows: minmax(78px, 30%) minmax(0, 1fr);
  }

  .news-page .news-card-content,
  .news-page .news-card-compact .news-card-content {
    padding: 7px;
  }

  .news-page .news-card-meta {
    font-size: 0.6rem;
  }

  .news-page .news-card-source {
    margin: 3px 0 1px;
    font-size: 0.62rem;
  }

  .news-page .news-tag {
    padding: 2px 6px;
  }

  .news-page .news-card h3 {
    font-size: 0.78rem;
    line-height: 1.22;
    -webkit-line-clamp: 2;
  }

  .news-page .news-card-content > p:not(.news-card-source) {
    margin-top: 4px;
    display: -webkit-box;
    font-size: 0.62rem;
    line-height: 1.28;
    -webkit-line-clamp: 2;
  }

  .news-page .news-read-more {
    padding-top: 3px;
    font-size: 0.62rem;
  }

  .news-page .partner-network-groups {
    gap: 5px;
  }

  .news-page .partner-network-group {
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 4px;
  }

  .news-page .partner-group-heading {
    min-height: 0;
    gap: 6px;
  }

  .news-page .partner-group-heading > span,
  .news-page .partner-group-heading h3 {
    font-size: 0.68rem;
  }

  .news-page .partner-group-heading p {
    font-size: 0.55rem;
  }

  .news-page .partner-group-cards {
    height: 100%;
    min-height: 0;
  }

  .news-page .partner-network-card {
    height: 100%;
    min-height: 0;
    padding: 7px;
  }

  .news-page .partner-person-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 7px;
  }

  .news-page .partner-person-avatar {
    width: 34px;
    height: 34px;
  }

  .news-page .partner-person-avatar svg {
    width: 22px;
    height: 22px;
  }

  .news-page .partner-relation,
  .news-page .partner-person-title,
  .news-page .partner-type {
    font-size: 0.5rem;
  }

  .news-page .partner-person-name {
    font-size: 0.84rem;
  }

  .news-page .partner-person-card .partner-name,
  .news-page .partner-name {
    margin-top: 2px;
    font-size: 0.55rem;
    line-height: 1.2;
  }

  .news-page .partner-wordmark {
    margin-top: 2px;
    font-size: 0.9rem;
  }

  .news-page .news-collaboration-panel {
    min-height: 0;
    padding: 12px;
    gap: 10px;
  }

  .news-page .news-collaboration-panel h2 {
    font-size: clamp(1.15rem, 5.8vw, 1.45rem);
    line-height: 1.12;
  }

  .news-page .news-collaboration-panel > div > p:last-child {
    margin-top: 7px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .news-page .news-collaboration-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .news-page .news-collaboration-actions .button {
    min-width: 0;
    min-height: 34px;
    padding-inline: 8px;
    font-size: 0.66rem;
  }

  /* 모바일 소식 카드는 요약문을 줄임표로 숨기지 않고 카드 안에서 전부 표시 */
  .news-page .news-card h3,
  .news-page .news-card-content > p:not(.news-card-source) {
    display: block;
    flex-shrink: 0;
    overflow: visible;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .news-page .news-card-meta,
  .news-page .news-card-source,
  .news-page .news-read-more {
    flex-shrink: 0;
  }

  .news-page .news-collaboration-panel::before,
  .news-page .news-collaboration-panel::after {
    display: none;
  }

  /* 채용·문의는 스냅이 아니므로 입력성과 가독성을 보존한 문서 스크롤 사용 */
  :is(.careers-page, .contact-page) {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  :is(.careers-page, .contact-page) .site-header {
    position: sticky;
    inset: 0 0 auto;
  }

  :is(.careers-page, .contact-page) main {
    height: auto;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  :is(.careers-page, .contact-page) .site-footer {
    position: relative;
    inset: auto;
  }

  :is(.careers-page, .contact-page) :is(.careers-split-stage, .contact-split-stage) {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  :is(.careers-page, .contact-page) :is(.careers-split-grid, .contact-split-grid) {
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .careers-page :is(.careers-intro-side, .careers-openings-side),
  .contact-page :is(.contact-company-side, .contact-form-side) {
    min-height: 0;
    padding: 24px 14px;
  }

  .careers-page .careers-title,
  .contact-page .contact-title {
    margin-bottom: 20px;
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.08;
  }

  .careers-page .careers-hiring-overview,
  .contact-page .contact-list {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .careers-page .career-posting {
    padding-block: 16px;
  }

  .contact-page .contact-form {
    padding: 0;
  }
}

/* 가장 작은 폭 또는 낮은 화면에서는 고정 크롬을 한 단계 더 축소 */
@media (max-width: 360px), (max-width: 768px) and (max-height: 600px) {
  :root {
    --header-h: 56px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) {
    --company-footer-h: 44px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .brand-logo {
    width: min(152px, calc(100% - 106px));
    height: 31px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .brand-logo img {
    width: 184px;
    left: -16px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .language-toggle span {
    min-width: 25px;
    padding: 3px 4px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .menu-toggle {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer .footer-brand {
    width: 94px;
    height: 26px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer .footer-brand img {
    width: 116px;
    left: -10px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer :is(.footer-instagram, .footer-linkedin) {
    width: 21px;
    height: 21px;
  }

  .section-nav {
    display: none !important;
  }

  .products-page .product-intro-layout {
    padding-top: clamp(92px, 24dvh, 118px);
  }
}

/* 32번째 수정: 전 페이지 본문 가독성과 자연스러운 줄바꿈 보정 */
body :is(h1, h2, h3) {
  text-wrap: balance;
}

body :is(p, li, dd) {
  text-wrap: pretty;
}

@media (min-width: 769px) {
  .primary-nav a {
    font-size: 1rem;
  }

  .achievement-intro-copy p,
  .products-page .product-compact-copy > p:not(.product-image-note),
  .careers-hiring-overview > p,
  .career-posting .career-summary {
    font-size: clamp(1rem, 1.08vw, 1.125rem);
    line-height: 1.72;
  }

  .products-page .product-compact-copy .product-image-note,
  .news-card-meta,
  .news-card-source,
  .news-read-more,
  .partner-person-title,
  .partner-type,
  .career-posting-meta,
  .career-requirements,
  .field label,
  .inquiry-type-field legend,
  .contact-row dt,
  .form-note {
    font-size: clamp(0.88rem, 0.82vw, 0.96rem);
  }

  .news-card-content > p:not(.news-card-source) {
    font-size: clamp(0.94rem, 0.9vw, 1rem);
    line-height: 1.7;
  }

  .news-card-compact .news-card-content > p:not(.news-card-source) {
    font-size: clamp(0.88rem, 0.82vw, 0.94rem);
  }

  .partner-relation,
  .partner-group-heading > span {
    font-size: 0.76rem;
  }

  .partner-group-heading p {
    font-size: 0.82rem;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .site-footer .footer-meta {
    font-size: 0.78rem;
    line-height: 1.42;
  }
}

@media (max-width: 768px) {
  :is(.company-page, .system-page, .news-page) .snap-container {
    scroll-snap-type: y proximity !important;
  }

  :is(.company-page, .system-page, .news-page) .snap-container > [data-snap-section] {
    height: auto !important;
    min-height: var(--mobile-snap-h) !important;
    max-height: none !important;
    overflow: visible !important;
    scroll-snap-stop: normal !important;
  }

  .company-page :is(
    .overview-hero-layout,
    .vision-section-layout,
    .overview-package-layout,
    .field-showcase-layout
  ),
  .products-page :is(
    .product-intro-layout,
    .product-pair-layout,
    .product-future-layout
  ),
  .achievements-page :is(
    .achievement-intro-layout,
    .field-showcase-layout
  ) {
    height: auto;
    min-height: var(--mobile-snap-h);
  }

  .company-page .overview-hero-primary .company-intro-block {
    max-width: 38rem;
    font-size: clamp(0.94rem, 3.8vw, 1.04rem);
    line-height: 1.65;
  }

  body.lang-en.company-page .overview-hero-primary .company-intro-block {
    font-size: 0.9rem;
    line-height: 1.58;
    overflow-wrap: break-word;
  }

  .company-page .overview-hero-primary .hero-tagline {
    max-width: 27ch;
    font-size: clamp(1.05rem, 4.8vw, 1.3rem);
    line-height: 1.35;
  }

  .company-page .overview-hero .button {
    min-height: 42px;
    font-size: 0.86rem;
  }

  .company-page .vision-section-copy {
    padding: 24px 20px;
  }

  .company-page .vision-section-copy h2 {
    font-size: clamp(1.65rem, 7.6vw, 2.05rem);
    line-height: 1.14;
  }

  .company-page .vision-section-body,
  body.lang-en.company-page .vision-section-body {
    font-size: clamp(0.9rem, 3.7vw, 1rem);
    line-height: 1.68;
    overflow-wrap: break-word;
  }

  .company-page .overview-package-layout {
    width: calc(100% - 32px);
    padding-block: 24px;
    gap: 18px;
  }

  .company-page .overview-package-primary h2,
  body.lang-en.company-page .overview-package-primary h2 {
    font-size: clamp(1.6rem, 7.2vw, 2rem);
    line-height: 1.16;
  }

  .company-page .overview-package-secondary {
    gap: 10px;
  }

  .company-page .overview-package-secondary p {
    min-height: 52px;
    padding: 10px 12px;
    grid-template-columns: 34px 38px minmax(0, 1fr);
    gap: 9px;
  }

  .company-page .package-item-label,
  body.lang-en.company-page .package-item-label {
    font-size: clamp(0.84rem, 3.45vw, 0.94rem);
    line-height: 1.42;
  }

  :is(.company-page, .achievements-page) .field-showcase-layout {
    width: calc(100% - 32px);
    padding-block: 22px;
    gap: 14px;
  }

  :is(.company-page, .achievements-page) .field-showcase-layout > h2,
  body.lang-en.company-page .field-showcase-layout > h2 {
    font-size: clamp(1.6rem, 7vw, 1.95rem);
    line-height: 1.16;
  }

  :is(.company-page, .achievements-page) .field-carousel-copy {
    padding: 18px 18px 20px;
  }

  :is(.company-page, .achievements-page) .field-carousel-copy h3 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: 1.18;
  }

  :is(.company-page, .achievements-page) .field-carousel-copy p,
  body.lang-en :is(.company-page, .achievements-page) .field-carousel-copy p {
    font-size: clamp(0.88rem, 3.55vw, 0.98rem);
    line-height: 1.62;
  }

  .company-page .field-carousel-copy .field-link {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .products-page .product-intro-layout {
    gap: 10px;
    padding-right: 18px;
    padding-bottom: 24px;
    padding-left: 18px;
  }

  .products-page .product-intro-title::before {
    font-size: 0.68rem;
  }

  .products-page .product-intro-copy {
    padding: 16px;
  }

  .products-page .product-intro-copy p {
    font-size: clamp(0.92rem, 3.75vw, 1rem);
    line-height: 1.66;
  }

  .products-page .product-intro-link {
    min-height: 42px;
    font-size: 0.84rem;
  }

  .products-page .product-intro-image-note {
    padding: 7px 9px;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .products-page .product-pair-layout {
    min-height: max(680px, var(--mobile-snap-h));
    padding-block: 14px;
  }

  .products-page .product-compact-card {
    min-height: 650px;
  }

  .products-page .product-compact-copy {
    padding: 20px;
  }

  .products-page .developing-status {
    margin-bottom: 12px;
    font-size: 0.74rem;
  }

  .products-page .product-compact-copy h2 {
    font-size: clamp(1.75rem, 7.6vw, 2.15rem);
  }

  .products-page .product-compact-copy h3 {
    margin-block: 7px 12px;
    font-size: clamp(1.08rem, 4.8vw, 1.3rem);
    line-height: 1.32;
  }

  .products-page .product-compact-copy > p:not(.product-image-note),
  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    font-size: clamp(0.86rem, 3.5vw, 0.96rem);
    line-height: 1.6;
  }

  .products-page .product-compact-copy .product-wavelength {
    padding: 9px 10px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .products-page .product-compact-copy .product-image-note {
    margin-top: 8px;
    padding-top: 8px;
    font-size: 0.68rem;
    line-height: 1.42;
  }

  .products-page .product-future-layout {
    width: calc(100% - 32px);
    padding-block: 22px;
    gap: 14px;
  }

  .products-page .future-product-cards {
    min-height: 430px;
  }

  .products-page .future-card-copy {
    padding: 14px;
  }

  .products-page .future-card-copy p {
    font-size: 0.84rem;
  }

  .products-page .future-status {
    font-size: 0.7rem;
  }

  .products-page .product-future-inquiry p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .products-page .product-future-inquiry .button {
    min-height: 38px;
    font-size: 0.78rem;
  }

  .achievements-page .achievement-intro-layout {
    min-height: var(--mobile-snap-h);
    padding: 20px;
  }

  .achievements-page .achievement-intro-copy {
    padding: 18px;
  }

  .achievements-page .achievement-intro-copy h1,
  body.lang-en.achievements-page .achievement-intro-copy h1 {
    font-size: clamp(1.65rem, 7.4vw, 2rem);
    line-height: 1.16;
  }

  .achievements-page .achievement-intro-copy p,
  body.lang-en.achievements-page .achievement-intro-copy p {
    font-size: clamp(0.88rem, 3.55vw, 0.98rem);
    line-height: 1.66;
  }

  .achievements-page .history-section > .container {
    width: calc(100% - 32px);
    height: auto;
    padding: 34px 0 48px;
    display: block;
  }

  .achievements-page .history-section .section-head {
    margin-bottom: 18px;
  }

  .achievements-page .history-section .timeline {
    height: auto;
    display: block;
    overflow: visible;
  }

  .achievements-page .timeline-month {
    height: auto;
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 8px;
  }

  .achievements-page .timeline-month-label {
    font-size: 0.98rem;
  }

  .achievements-page .timeline-event p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .news-page .news-hero-inner {
    padding-block: 24px;
  }

  .news-page .news-hero-copy > p:last-child {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .news-page :is(.news-latest, .news-partners, .news-collaboration) {
    padding-block: 20px;
  }

  .news-page :is(.news-latest, .news-partners) > .news-shell {
    height: auto;
    min-height: calc(var(--mobile-snap-h) - 40px);
  }

  .news-page .news-section-heading {
    margin-bottom: 14px;
  }

  .news-page .news-section-kicker {
    font-size: 0.72rem;
  }

  .news-page .news-outline-link {
    min-height: 38px;
    font-size: 0.78rem;
  }

  .news-page .news-card-grid {
    min-height: 590px;
  }

  .news-page .news-card-featured,
  .news-page .news-card-compact {
    grid-template-rows: minmax(150px, 34%) minmax(0, 1fr);
  }

  .news-page .news-card-content,
  .news-page .news-card-compact .news-card-content {
    padding: 16px;
  }

  .news-page .news-card-meta {
    font-size: 0.72rem;
  }

  .news-page .news-card-source {
    margin: 8px 0 5px;
    font-size: 0.76rem;
  }

  .news-page .news-card h3 {
    font-size: 1.08rem;
    line-height: 1.4;
  }

  .news-page .news-card-content > p:not(.news-card-source) {
    margin-top: 9px;
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .news-page .news-read-more {
    padding-top: 10px;
    font-size: 0.78rem;
  }

  .news-page .partner-network-groups {
    height: auto;
    grid-template-rows: auto auto;
    gap: 14px;
    overflow: visible;
  }

  .news-page .partner-network-group {
    grid-template-rows: auto auto;
    gap: 8px;
  }

  .news-page .partner-group-heading > span,
  .news-page .partner-group-heading h3 {
    font-size: 0.76rem;
  }

  .news-page .partner-group-heading p {
    font-size: 0.68rem;
  }

  .news-page .partner-group-cards {
    height: auto;
  }

  .news-page .partner-network-card {
    height: auto;
    min-height: 170px;
    padding: 16px;
  }

  .news-page .partner-person-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .news-page .partner-person-avatar {
    width: 48px;
    height: 48px;
  }

  .news-page .partner-person-avatar svg {
    width: 30px;
    height: 30px;
  }

  .news-page .partner-relation,
  .news-page .partner-person-title,
  .news-page .partner-type {
    font-size: 0.7rem;
  }

  .news-page .partner-person-name {
    font-size: 1.12rem;
  }

  .news-page .partner-person-card .partner-name,
  .news-page .partner-name {
    margin-top: 7px;
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .news-page .partner-wordmark {
    font-size: 1.25rem;
  }

  .news-page .news-collaboration-panel {
    min-height: 340px;
    padding: 28px 22px;
    gap: 24px;
  }

  .news-page .news-collaboration-panel h2 {
    font-size: clamp(1.6rem, 7vw, 1.95rem);
    line-height: 1.18;
  }

  .news-page .news-collaboration-panel > div > p:last-child {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .news-page .news-collaboration-actions .button {
    min-height: 42px;
    font-size: 0.8rem;
  }

  .careers-page :is(.careers-intro-side, .careers-openings-side),
  .contact-page :is(.contact-company-side, .contact-form-side) {
    padding: 34px 20px;
  }

  .careers-page .careers-title {
    max-width: 18ch;
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.14;
  }

  .careers-page .careers-title span {
    display: inline;
  }

  .careers-page .careers-title span + span::before {
    content: " ";
  }

  .careers-page .careers-hiring-overview,
  .contact-page .contact-list {
    font-size: 1rem;
    line-height: 1.7;
  }

  .careers-page .careers-hiring-overview > p,
  .careers-page .career-posting .career-summary {
    font-size: 1rem;
    line-height: 1.72;
  }

  .careers-page .career-posting-meta {
    font-size: 0.84rem;
  }

  .careers-page .career-posting .career-position {
    font-size: clamp(1.4rem, 6vw, 1.7rem);
    line-height: 1.32;
  }

  .careers-page .career-requirements {
    gap: 7px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .contact-page .contact-row {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-page .contact-row dt,
  .contact-page :is(.field label, .inquiry-type-field legend) {
    font-size: 0.9rem;
  }

  .contact-page :is(.field input, .field textarea, .inquiry-type-option span) {
    font-size: 1rem;
  }
}

/* 33번째 수정: 모바일 현장 연결 섹션 사진 노출과 본문 크기 보정 */
@media (max-width: 768px) {
  .company-page .vision-section .vision-section-layout,
  .company-page .vision-section-combustion .vision-section-layout {
    height: auto;
    min-height: var(--mobile-snap-h);
  }

  .company-page .vision-section .vision-section-visual,
  .company-page .vision-section-combustion .vision-section-visual {
    inset: 0;
    width: auto;
    height: auto;
    min-height: 0;
  }

  .company-page .vision-section .vision-section-copy {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    background: linear-gradient(
      180deg,
      rgba(0, 9, 20, 0.9) 0%,
      rgba(0, 9, 20, 0.7) 72%,
      rgba(0, 9, 20, 0.18) 100%
    );
  }

  .company-page .vision-section-copy h2 {
    font-size: clamp(1.85rem, 8.2vw, 2.25rem);
    line-height: 1.16;
  }

  .company-page .vision-section-body,
  body.lang-en.company-page .vision-section-body {
    font-size: clamp(1rem, 4vw, 1.08rem);
    line-height: 1.7;
  }

  .company-page .vision-section-combustion .vision-section-visual {
    opacity: 1;
    background-position: 50% 66%;
  }

  .company-page .vision-section-combustion .vision-section-visual::after {
    background: linear-gradient(
      180deg,
      rgba(0, 9, 20, 0.18) 0%,
      rgba(0, 9, 20, 0.04) 52%,
      rgba(0, 9, 20, 0.28) 100%
    );
  }
}

/* Final mobile layout fixes: hero flow, media placement, controls, history, and news. */
@media (max-width: 768px) {
  /* Company hero actions */
  .company-page .overview-hero .hero-actions {
    width: min(100%, 250px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .company-page .overview-hero .hero-actions .button {
    width: 100%;
    min-height: 44px;
  }

  /* Keep the laser image visibly below the copy on the first vision panel. */
  .company-page .vision-section-laser .vision-section-layout {
    min-height: var(--mobile-snap-h);
  }

  .company-page .vision-section-laser .vision-section-visual {
    inset: auto 0 0;
    width: auto;
    height: 53%;
    min-height: 320px;
    opacity: 1;
    background-position: 52% 58%;
  }

  .company-page .vision-section-laser .vision-section-visual::after {
    background: linear-gradient(
      180deg,
      rgba(0, 9, 20, 0.56) 0%,
      rgba(0, 9, 20, 0.12) 34%,
      rgba(0, 9, 20, 0.16) 100%
    );
  }

  .company-page .vision-section-laser .vision-section-copy {
    position: relative;
    z-index: 2;
    padding-bottom: 32px;
    background: linear-gradient(
      180deg,
      rgba(0, 9, 20, 0.96) 0%,
      rgba(0, 9, 20, 0.88) 76%,
      rgba(0, 9, 20, 0.18) 100%
    );
  }

  /* Larger carousel controls for touch. */
  :is(.company-page, .achievements-page) .field-carousel {
    grid-template-rows: minmax(0, 1fr) 52px;
    gap: 8px;
  }

  :is(.company-page, .achievements-page) .field-carousel-controls {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 4px 10px;
    gap: 8px;
    border-radius: 12px;
  }

  :is(.company-page, .achievements-page) .field-carousel-control {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 1rem;
  }

  :is(.company-page, .achievements-page) .field-carousel-dots {
    gap: 8px;
  }

  :is(.company-page, .achievements-page) .field-carousel-dots button {
    width: 8px;
    height: 8px;
  }

  :is(.company-page, .achievements-page) .field-carousel-status {
    min-width: 42px;
    font-size: 0.74rem;
  }

  /* Product hero: give the image, disclosure, title, and copy their own rows. */
  .products-page .product-intro-layout {
    --product-mobile-media-h: clamp(230px, 34dvh, 290px);
    width: 100%;
    min-height: var(--mobile-snap-h);
    padding: 0 18px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    overflow: visible;
  }

  .products-page .product-intro-layout::after {
    inset: 0 0 auto;
    height: var(--product-mobile-media-h);
    background: linear-gradient(
      180deg,
      rgba(0, 7, 16, 0.08) 0%,
      rgba(0, 7, 16, 0.08) 62%,
      #000914 100%
    );
  }

  .products-page .product-intro-proto {
    position: relative;
    z-index: 0;
    inset: auto;
    order: 1;
    width: calc(100% + 36px);
    height: var(--product-mobile-media-h);
    min-height: 0;
    flex: 0 0 var(--product-mobile-media-h);
    margin-inline: -18px;
    overflow: hidden;
  }

  .products-page .product-intro-proto img {
    width: 100%;
    max-width: none;
    height: 100%;
    flex: none;
    object-fit: cover;
    object-position: 62% center;
  }

  .products-page .product-intro-image-note {
    position: relative;
    z-index: 2;
    inset: auto;
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 8px 10px;
    font-size: 0.76rem;
    line-height: 1.48;
    text-align: left;
  }

  .products-page .product-intro-title {
    order: 3;
  }

  .products-page .product-intro-title::before {
    margin-bottom: 6px;
  }

  .products-page .product-intro-title h1 {
    font-size: clamp(2.15rem, 10vw, 2.7rem);
  }

  .products-page .product-intro-copy {
    order: 4;
    padding: 16px;
  }

  /* Developing products: visible swipe affordance and a peek of the next card. */
  .products-page .product-pair-section {
    position: relative;
  }

  .products-page .product-swipe-hint {
    position: absolute;
    z-index: 8;
    top: 14px;
    left: 50%;
    min-height: 36px;
    margin: 0;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(115, 214, 245, 0.48);
    border-radius: 999px;
    color: #dff7ff;
    background: rgba(3, 19, 30, 0.9);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
  }

  .products-page .product-swipe-hint span {
    color: #75ddfb;
    font-size: 1.1rem;
  }

  .products-page .product-pair-layout {
    width: calc(100% - 20px);
    min-height: max(700px, var(--mobile-snap-h));
    padding: 58px 0 14px;
    grid-auto-columns: 94%;
    gap: 10px;
    scroll-padding-inline: 0;
  }

  .products-page .product-compact-card {
    min-height: 630px;
  }

  /* History needs natural scrolling instead of competing vertical snap points. */
  .achievements-page .snap-container {
    scroll-snap-type: none !important;
  }

  .achievements-page .snap-container > #company-history {
    height: auto !important;
    min-height: var(--mobile-snap-h) !important;
    max-height: none !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  .achievements-page .history-section > .container {
    min-height: 0;
    padding: 24px 0 56px;
    align-content: start;
  }

  .achievements-page .timeline-month {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  /* News overview and latest news each use a full mobile viewport. */
  .news-page .snap-container > #news-overview {
    height: var(--mobile-snap-h) !important;
    min-height: var(--mobile-snap-h) !important;
    max-height: var(--mobile-snap-h) !important;
    overflow: hidden !important;
    scroll-snap-align: start;
  }

  .news-page .news-hero-inner {
    height: 100%;
    min-height: 0;
    padding-block: 28px;
    align-items: center;
  }

  .news-page .news-hero-copy {
    max-width: 340px;
  }

  .news-page .news-kicker {
    margin-bottom: 6px;
    font-size: 0.7rem;
  }

  .news-page .news-hero-copy h1 {
    font-size: clamp(2.6rem, 13vw, 3.45rem);
    line-height: 0.92;
  }

  .news-page .news-hero-copy > p:last-child {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .news-page .snap-container > #latest-news {
    height: var(--mobile-snap-h) !important;
    min-height: var(--mobile-snap-h) !important;
    max-height: var(--mobile-snap-h) !important;
    padding-block: 20px !important;
    overflow: hidden !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: normal !important;
  }

  .news-page #latest-news > .news-shell {
    height: 100%;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .news-page #latest-news .news-section-heading {
    margin-bottom: 14px;
  }

  .news-page #latest-news .news-section-kicker {
    margin-bottom: 2px;
    font-size: 0.7rem;
  }

  .news-page #latest-news .news-section-heading h2 {
    font-size: 1.5rem;
  }

  .news-page #latest-news .news-outline-link {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 0.8rem;
  }

  .news-page #latest-news .news-card-grid {
    height: 100%;
    min-height: 0;
    grid-auto-columns: 86%;
    gap: 10px;
  }

  .news-page #latest-news :is(.news-card-featured, .news-card-compact) {
    grid-template-rows: minmax(150px, 34%) minmax(0, 1fr);
  }

  .news-page #latest-news .news-card-content,
  .news-page #latest-news .news-card-compact .news-card-content {
    padding: 16px;
  }

  .news-page #latest-news .news-card-meta {
    font-size: 0.72rem;
  }

  .news-page #latest-news .news-card-source {
    margin: 8px 0 5px;
    font-size: 0.76rem;
  }

  .news-page #latest-news .news-card h3 {
    font-size: 1rem;
    line-height: 1.34;
  }

  .news-page #latest-news .news-card-content > p:not(.news-card-source) {
    margin-top: 9px;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .news-page #latest-news .news-read-more {
    margin-top: auto;
    padding-top: 10px;
    font-size: 0.78rem;
  }

  /* Keep primary mobile body copy comfortably readable. */
  :is(.company-page, .achievements-page) .field-carousel-copy p,
  body.lang-en :is(.company-page, .achievements-page) .field-carousel-copy p {
    font-size: clamp(0.94rem, 3.8vw, 1rem);
  }

  .products-page .product-compact-copy > p:not(.product-image-note),
  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note),
  .achievements-page .achievement-intro-copy p,
  body.lang-en.achievements-page .achievement-intro-copy p {
    font-size: clamp(0.94rem, 3.8vw, 1rem);
  }
}

/* Mobile refinements: compact actions, swipe carousels, natural cards, and product overlap. */
@media (max-width: 768px) {
  /* Company hero */
  .company-page main > .overview-hero {
    background-position: 78% center;
  }

  .company-page .overview-hero .hero-actions {
    width: min(100%, 210px);
  }

  /* Business fields and technical validation */
  :is(.company-page, .achievements-page) .field-carousel-controls {
    width: min(100%, 334px);
    max-width: 334px;
    margin-inline: auto;
    place-self: center;
    inset: auto;
  }

  :is(.company-page, .achievements-page) .field-carousel-viewport {
    touch-action: pan-y;
    cursor: grab;
  }

  :is(.company-page, .achievements-page) .field-carousel-viewport:active {
    cursor: grabbing;
  }

  /* Latest news: show complete copy instead of line-clamp ellipses. */
  .news-page #latest-news :is(.news-card-featured, .news-card-compact) {
    grid-template-rows: minmax(145px, 31%) minmax(0, 1fr);
  }

  .news-page #latest-news .news-card h3,
  .news-page #latest-news .news-card-content > p:not(.news-card-source) {
    display: block;
    overflow: visible;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  /* Partners: center the complete group and give collaborator cards more width. */
  .news-page #partner-network > .news-shell {
    height: calc(var(--mobile-snap-h) - 40px);
    min-height: calc(var(--mobile-snap-h) - 40px);
    grid-template-rows: auto auto;
    align-content: center;
    gap: 18px;
  }

  .news-page #partner-network .news-section-heading {
    margin-bottom: 0;
  }

  .news-page #partner-network :is(.partner-network, .partner-network-groups) {
    height: auto;
    min-height: 0;
  }

  .news-page .partner-network-partners .partner-group-cards {
    grid-auto-columns: 96%;
  }

  .news-page .partner-person-affiliation > span:first-child {
    white-space: nowrap;
    letter-spacing: -0.025em;
  }

  /* Product hero: title overlaps the image while the disclosure stays separate. */
  .products-page .product-intro-layout {
    --product-mobile-media-h: clamp(285px, 38dvh, 330px);
    position: relative;
    padding: 0 18px 24px;
  }

  .products-page .product-intro-layout::after {
    background: linear-gradient(
      180deg,
      rgba(0, 7, 16, 0.02) 0%,
      rgba(0, 7, 16, 0.08) 48%,
      rgba(0, 9, 20, 0.72) 78%,
      #000914 100%
    );
  }

  .products-page .product-intro-title {
    position: absolute;
    z-index: 4;
    top: calc(var(--product-mobile-media-h) - 104px);
    right: 18px;
    left: 18px;
    width: auto;
    pointer-events: none;
  }

  .products-page .product-intro-title::before {
    color: #93e8ff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95);
  }

  .products-page .product-intro-title h1 {
    font-size: clamp(2.45rem, 11vw, 2.9rem);
    text-shadow: 0 7px 28px rgba(0, 0, 0, 0.96);
  }

  /* Developing products: let sentences wrap according to the card width. */
  .products-page .product-compact-copy > p:not(.product-image-note) span {
    display: inline;
  }

  .products-page .product-compact-copy > p:not(.product-image-note) span:not(:last-child)::after {
    content: " ";
  }

  .products-page .product-future-inquiry p span {
    display: block;
  }
}

/* Desktop careers/news stability: prevent bleed, cramped wrapping, and footer collisions. */
@media (min-width: 769px) {
  :is(.careers-page, .news-page) .site-header {
    background: #000914;
  }

  .news-page .snap-container > [data-snap-section] {
    isolation: isolate;
    background-color: #000914;
  }

  .careers-page :is(
    .careers-title,
    .careers-hiring-overview,
    .career-position,
    .career-summary,
    .career-requirements
  ),
  .news-page :is(.news-card h3, .news-card-content > p:not(.news-card-source)) {
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: pretty;
  }

  .news-page .news-card h3,
  .news-page .news-card-content > p:not(.news-card-source) {
    display: block;
    overflow: visible;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  :is(.careers-page, .news-page) .site-footer .footer-inner {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 20px;
  }

  :is(.careers-page, .news-page) .site-footer .footer-font-credit {
    display: none;
  }

  :is(.careers-page, .news-page) .site-footer .footer-contact-cluster {
    min-width: 0;
    gap: 12px;
  }

  :is(.careers-page, .news-page) .site-footer .footer-meta {
    min-width: 0;
    font-size: 0.68rem;
    line-height: 1.4;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .careers-page .careers-title {
    font-size: clamp(2.25rem, 4vw, 2.8rem);
  }

  .careers-page .careers-title span:nth-child(2) {
    white-space: normal;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .news-page #latest-news .news-card-grid {
    grid-template-columns: none;
    grid-template-rows: minmax(0, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 72%;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .news-page #latest-news .news-card-grid::-webkit-scrollbar {
    display: none;
  }

  .news-page #latest-news :is(.news-card-featured, .news-card-compact) {
    grid-column: auto;
    grid-row: 1;
    grid-template-columns: minmax(220px, 0.44fr) minmax(0, 0.56fr);
    grid-template-rows: minmax(0, 1fr);
    scroll-snap-align: start;
  }

  .news-page #latest-news .news-card-content,
  .news-page #latest-news .news-card-compact .news-card-content {
    padding: 18px;
  }
}

@media (min-width: 1101px) and (max-height: 800px) {
  .news-page .news-card-compact {
    grid-template-columns: minmax(130px, 0.34fr) minmax(0, 0.66fr);
  }

  .news-page .news-card-compact .news-card-content {
    padding: 12px 14px;
  }

  .news-page .news-card-compact .news-card-source {
    margin: 5px 0 3px;
    font-size: 0.72rem;
  }

  .news-page .news-card-compact h3 {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .news-page .news-card-compact .news-card-content > p:not(.news-card-source) {
    margin-top: 5px;
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .news-page .news-card-compact .news-read-more {
    padding-top: 5px;
    font-size: 0.74rem;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  :is(.careers-page, .news-page) .site-footer .footer-meta > p:first-child {
    display: none;
  }
}

@media (min-width: 769px) {
  :is(.careers-page, .news-page) .site-footer .footer-font-credit {
    display: none;
  }

  .news-page .news-card-compact {
    grid-template-columns: minmax(130px, 0.34fr) minmax(0, 0.66fr);
  }

  .news-page .news-card-compact .news-card-content {
    padding: 14px;
  }

  .news-page .news-card-compact .news-card-source {
    margin: 5px 0 3px;
    font-size: 0.74rem;
  }

  .news-page .news-card-compact h3 {
    font-size: 0.95rem;
    line-height: 1.34;
  }

  .news-page .news-card-compact .news-card-content > p:not(.news-card-source) {
    margin-top: 6px;
    display: block;
    overflow: visible;
    font-size: 0.76rem;
    line-height: 1.45;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .news-page .news-card-compact .news-read-more {
    padding-top: 6px;
    font-size: 0.76rem;
  }
}

/* Keep every collaborator detail visible on short desktop viewports. */
@media (min-width: 769px) and (max-height: 800px) {
  .news-page #partner-network .partner-network-groups {
    grid-template-rows: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 10px;
  }

  .news-page #partner-network .partner-network-group {
    gap: 6px;
  }

  .news-page #partner-network .partner-group-heading {
    min-height: 28px;
  }

  .news-page #partner-network .partner-person-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 16px;
  }

  .news-page #partner-network .partner-person-avatar {
    width: 56px;
  }

  .news-page #partner-network .partner-person-avatar svg {
    width: 34px;
    height: 34px;
  }

  .news-page #partner-network .partner-person-card .partner-relation {
    margin-bottom: 4px;
    font-size: 0.62rem;
  }

  .news-page #partner-network .partner-person-name {
    font-size: 1.2rem;
  }

  .news-page #partner-network .partner-person-title {
    margin-top: 4px;
    font-size: 0.72rem;
  }

  .news-page #partner-network .partner-person-card .partner-name {
    margin-top: 6px;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .news-page #partner-network .partner-person-card .partner-type {
    flex: 0 0 auto;
    margin-top: 3px;
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .news-page #partner-network .partner-network-investors .partner-network-card {
    padding: 14px 18px 12px;
  }

  .news-page #partner-network .partner-network-investors .partner-relation {
    top: 10px;
    left: 16px;
    font-size: 0.6rem;
  }

  .news-page #partner-network .partner-network-investors .partner-wordmark {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
  }

  .news-page #partner-network .partner-network-investors .partner-name {
    margin-top: 8px;
    font-size: 0.82rem;
  }

  .news-page #partner-network .partner-network-investors .partner-type {
    margin-top: 3px;
    font-size: 0.7rem;
  }
}

.news-page .partner-swipe-hint {
  display: none;
}

/* Page indicators: desktop only; swipe guidance belongs to the mobile rail. */
@media (min-width: 769px) {
  .products-page .product-swipe-hint {
    display: none !important;
  }

  .careers-page .fixed-page-indicator,
  .news-page .section-nav {
    right: 18px;
    left: auto;
    display: grid !important;
  }
}

@media (max-width: 768px) {
  :is(.careers-page, .contact-page) .fixed-page-indicator,
  .news-page .section-nav {
    display: none !important;
  }

  .news-page .partner-network-partners .partner-group-heading {
    padding-right: 2px;
  }

  .news-page .partner-swipe-hint {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(158, 232, 255, 0.82);
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .news-page .partner-swipe-hint > span {
    color: #75ddfb;
    font-size: 0.8rem;
  }

  .news-page .partner-network-partners .partner-group-cards {
    grid-auto-columns: 94%;
  }
}

/* Keep the mobile company copy above the observatory equipment. */
@media (max-width: 768px) {
  .company-page .overview-hero-layout {
    align-items: flex-start;
    padding-top: clamp(28px, 5dvh, 46px);
    padding-bottom: 24px;
  }

  .company-page .overview-hero-primary {
    align-content: start;
    justify-content: flex-start;
  }
}

/* Product mobile tracks: fit regular phones and flow naturally on very short screens. */
@media (max-width: 768px) {
  .products-page {
    --product-mobile-screen-h: calc(100dvh - var(--header-h) - var(--company-footer-h));
  }

  .products-page .snap-container > [data-snap-section] {
    height: var(--product-mobile-screen-h) !important;
    min-height: var(--product-mobile-screen-h) !important;
    max-height: var(--product-mobile-screen-h) !important;
    overflow: hidden !important;
  }

  .products-page :is(
    .product-intro-layout,
    .product-pair-layout,
    .product-future-layout
  ) {
    height: 100%;
    min-height: 0;
    max-height: 100%;
  }

  .products-page .product-intro-layout {
    --product-mobile-media-h: clamp(200px, 36dvh, 300px);
    padding: 0 16px clamp(12px, 2dvh, 18px);
    gap: clamp(7px, 1.5dvh, 10px);
    overflow: hidden;
  }

  .products-page .product-intro-proto {
    width: calc(100% + 32px);
    height: var(--product-mobile-media-h);
    flex-basis: var(--product-mobile-media-h);
    margin-inline: -16px;
  }

  .products-page .product-intro-title {
    top: calc(var(--product-mobile-media-h) - 90px);
    right: 16px;
    left: 16px;
  }

  .products-page .product-intro-title h1 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }

  .products-page .product-intro-image-note,
  .products-page .product-intro-copy {
    width: auto;
    min-width: 0;
    max-width: 100%;
    align-self: stretch;
  }

  .products-page .product-intro-image-note {
    padding: 6px 8px;
    font-size: clamp(0.62rem, 2.7vw, 0.7rem);
    line-height: 1.35;
  }

  .products-page .product-intro-copy {
    padding: clamp(10px, 2dvh, 14px);
  }

  .products-page .product-intro-copy p {
    font-size: clamp(0.78rem, 3.35vw, 0.9rem);
    line-height: 1.5;
  }

  .products-page .product-intro-link {
    min-height: 38px;
    margin-top: 9px;
    padding-inline: 15px;
    font-size: 0.8rem;
  }

  .products-page .product-pair-layout {
    width: calc(100% - 20px);
    min-height: 0;
    padding: 50px 0 10px;
    grid-template-rows: minmax(0, 1fr);
    grid-auto-columns: 94%;
    gap: 10px;
  }

  .products-page .product-swipe-hint {
    top: 9px;
    min-height: 32px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .products-page .product-compact-card {
    height: 100%;
    min-height: 0;
  }

  .products-page .product-compact-copy {
    padding: clamp(14px, 2.7dvh, 18px);
  }

  .products-page .developing-status {
    margin-bottom: 8px;
    padding: 5px 9px;
    font-size: 0.7rem;
  }

  .products-page .product-compact-copy h2 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .products-page .product-compact-copy h3 {
    margin-block: 5px 9px;
    font-size: clamp(1rem, 4.4vw, 1.2rem);
    line-height: 1.25;
  }

  .products-page .product-compact-copy > p:not(.product-image-note),
  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    font-size: clamp(0.78rem, 3.25vw, 0.88rem);
    line-height: 1.46;
  }

  .products-page .product-compact-copy .product-wavelength {
    margin-top: auto;
    padding: 7px 9px;
    gap: 8px;
    font-size: 0.72rem;
    line-height: 1.34;
  }

  .products-page .product-wavelength strong {
    padding-right: 8px;
  }

  .products-page .product-compact-copy .product-image-note {
    margin-top: 6px;
    padding-top: 6px;
    font-size: 0.62rem;
    line-height: 1.32;
  }

  .products-page .product-future-layout {
    width: calc(100% - 32px);
    padding: 14px 0 10px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    gap: 8px;
  }

  .products-page .product-future-layout > h2 {
    margin: 0;
    font-size: clamp(1.4rem, 6vw, 1.65rem);
  }

  .products-page .future-product-cards {
    height: 100%;
    min-height: 0;
  }

  .products-page .future-product-card {
    height: 100%;
    min-height: 0;
  }

  .products-page .future-card-copy {
    padding: 10px;
  }

  .products-page .product-future-inquiry {
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  .products-page .product-future-inquiry p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .products-page .product-future-inquiry .button {
    min-height: 34px;
    margin: 0;
    padding-inline: 11px;
    font-size: 0.72rem;
  }
}

@media (max-width: 768px) and (max-height: 800px) {
  .products-page {
    --product-mobile-screen-h: calc(100dvh - var(--header-h));
  }
}

@media (max-width: 768px) and (max-height: 599px) {
  .products-page .snap-container {
    scroll-snap-type: none !important;
  }

  .products-page .snap-container > [data-snap-section] {
    height: auto !important;
    min-height: var(--product-mobile-screen-h) !important;
    max-height: none !important;
    overflow: visible !important;
    scroll-snap-align: none;
    scroll-snap-stop: normal !important;
  }

  .products-page :is(
    .product-intro-layout,
    .product-pair-layout,
    .product-future-layout
  ) {
    height: auto;
    min-height: var(--product-mobile-screen-h);
    max-height: none;
  }

  .products-page .product-intro-layout {
    --product-mobile-media-h: clamp(190px, 35dvh, 220px);
    overflow: visible;
  }

  .products-page .product-pair-layout {
    grid-template-rows: auto;
  }

  .products-page .product-compact-card {
    height: auto;
    min-height: 620px;
  }

  .products-page .product-future-layout {
    grid-template-rows: auto auto auto;
  }

  .products-page .future-product-cards {
    height: clamp(400px, 72dvh, 460px);
    min-height: 400px;
  }
}

/* Short snap pages reveal their footer only after the final content. */
@media (max-height: 800px) {
  :is(.company-page, .system-page, .news-page) .snap-container {
    padding-bottom: 0;
    scroll-padding-bottom: 0;
    scroll-snap-type: none !important;
  }

  :is(.company-page, .system-page, .news-page) .snap-container::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(var(--company-footer-h) + 1px);
    background: #000914;
  }

  :is(.company-page, .system-page, .news-page) .snap-container.has-snap-footer-sentinel::after {
    display: none;
  }

  :is(.company-page, .system-page, .news-page) .snap-footer-sentinel {
    width: 100%;
    height: calc(var(--company-footer-h) + 1px);
    display: block;
    flex: 0 0 calc(var(--company-footer-h) + 1px);
    background: #000914;
    scroll-snap-align: end;
    scroll-snap-stop: normal;
  }

  :is(.company-page, .system-page, .news-page) .snap-container > [data-snap-section] {
    min-height: calc(100vh - var(--header-h)) !important;
    min-height: calc(100dvh - var(--header-h)) !important;
  }

  :is(.company-page, .system-page, .news-page) .site-footer {
    position: fixed;
    inset: auto 0 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  :is(.company-page, .system-page, .news-page).site-footer-at-scroll-end .site-footer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

@media (prefers-reduced-motion: reduce) and (max-height: 800px) {
  :is(.company-page, .system-page, .news-page) .site-footer {
    transition: none;
  }
}

/* Final mobile history rhythm and collaborator alignment. */
@media (max-width: 768px) {
  .achievements-page .timeline-month + .timeline-month {
    margin-top: 12px;
  }

  .news-page #partner-network .partner-group-heading,
  .news-page #partner-network .partner-group-heading > div {
    align-items: center;
  }

  .news-page #partner-network .partner-group-heading p {
    white-space: nowrap;
  }

  .news-page #partner-network .partner-person-copy {
    height: 100%;
    align-self: center;
    justify-content: center;
  }

  .news-page #partner-network .partner-person-affiliation,
  .news-page #partner-network .partner-person-affiliation > span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .news-page #partner-network .partner-group-heading > div {
    gap: 5px;
  }

  .news-page #partner-network .partner-group-heading h3 {
    font-size: 0.68rem;
  }

  .news-page #partner-network .partner-group-heading p {
    font-size: 0.6rem;
  }

  .news-page #partner-network .partner-swipe-hint {
    width: 18px;
    flex: 0 0 18px;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    font-size: 0;
  }

  .news-page #partner-network .partner-person-card .partner-relation {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}

/* 20260811 mobile composition and PageSpeed asset delivery. */
main > [data-snap-section]:first-child.reveal,
main > [data-snap-section]:first-child .reveal {
  opacity: 1;
  transform: none;
}

.field-carousel-slide {
  background-image: none !important;
}

.field-carousel-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--field-position, center);
}

.field-carousel-copy {
  position: relative;
  z-index: 2;
}

.company-page .overview-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.company-page .overview-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% center;
}

.company-page .overview-hero::before { z-index: 1; }
.company-page .overview-hero-layout { z-index: 2; }

.products-page .product-intro-proto picture,
.products-page .product-intro-proto picture > img {
  width: 100%;
  height: 100%;
  display: block;
}

.products-page .product-intro-proto picture > img {
  object-fit: cover;
  object-position: 62% center;
}

.products-page .product-compact-card::after {
  display: none;
}

.products-page .product-compact-media {
  position: absolute;
  z-index: 0;
  inset: 2px;
  overflow: hidden;
  border-radius: calc(var(--product-card-radius) - 2px);
}

.products-page .product-compact-media img,
.products-page .future-image-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.products-page .product-compact-media img {
  object-position: var(--compact-product-position, center);
}

.products-page .future-image-placeholder {
  display: block;
  overflow: hidden;
  background-image: none !important;
}

#drone-hsi .future-image-placeholder img { object-position: center 43%; }
#space-hsi .future-image-placeholder img { object-position: center; }

@media (min-width: 769px) {
  :is(.company-page, .system-page, .news-page) .section-nav {
    right: 1px;
    left: auto;
    gap: 0;
  }

  .section-nav a,
  .section-nav a[aria-current="true"] {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
  }

  .section-nav a span {
    width: 10px;
    height: 10px;
    display: block;
    border: 1px solid rgba(200, 233, 250, 0.68);
    border-radius: 999px;
    background: rgba(0, 9, 20, 0.64);
    transition: height 180ms ease, background 180ms ease, border-color 180ms ease;
  }

  .section-nav a:is(:hover, :focus-visible) span {
    border-color: #ffffff;
  }

  .section-nav a[aria-current="true"] span {
    height: 24px;
    border-color: #73b2ce;
    background: #73b2ce;
  }

  .section-nav a:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -6px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  /* Company hero: reserve a clean text zone and stage the equipment at bottom-right. */
  .company-page main > .overview-hero {
    height: max(650px, calc(100dvh - var(--header-h) - var(--company-footer-h))) !important;
    min-height: max(650px, calc(100dvh - var(--header-h) - var(--company-footer-h))) !important;
    background: #010c18;
  }

  .company-page .overview-hero-media {
    inset: auto clamp(-92px, -8vw, -36px) 0 auto;
    width: clamp(700px, 185vw, 940px);
    height: auto;
  }

  .company-page .overview-hero-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .company-page .overview-hero::before {
    background:
      linear-gradient(180deg, rgba(1, 12, 24, 0.98) 0%, rgba(1, 12, 24, 0.86) 34%, rgba(1, 12, 24, 0.28) 58%, rgba(1, 12, 24, 0) 78%),
      linear-gradient(110deg, rgba(1, 12, 24, 0.9) 0%, rgba(1, 12, 24, 0.58) 44%, rgba(1, 12, 24, 0) 72%);
  }

  .company-page .overview-hero-layout {
    width: calc(100% - 32px);
    padding: 26px 0 20px;
    align-items: flex-start;
  }

  .company-page .overview-hero-primary {
    width: min(100%, 350px);
    max-width: 350px;
  }

  .company-page .overview-hero-primary h1 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.12;
  }

  .company-page .overview-hero-primary .hero-tagline {
    max-width: 330px;
    margin-top: 12px;
    font-size: clamp(1rem, 4.8vw, 1.28rem);
    line-height: 1.25;
  }

  .company-page .overview-hero-primary .company-intro-block {
    max-width: 330px;
    margin-top: 14px;
    font-size: clamp(0.78rem, 3.35vw, 0.9rem);
    line-height: 1.52;
  }

  .company-page .overview-hero-primary .company-intro-block::before {
    width: 42px;
    height: 2px;
    margin-bottom: 10px;
  }

  .company-page .overview-hero-primary .company-intro-block span {
    display: inline;
  }

  .company-page .overview-hero-primary .company-intro-block span:not(:last-child)::after {
    content: " ";
  }

  .company-page .overview-hero .hero-actions {
    width: max-content !important;
    margin-top: 14px;
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center;
    gap: 8px;
  }

  .company-page .overview-hero .button {
    width: auto !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
    min-height: 40px;
    padding: 0 13px;
    gap: 8px;
    border-radius: 7px;
    font-size: 0.72rem;
  }

  /* Product intro: restore visual scale while retaining all text in the viewport. */
  .products-page .product-intro-layout {
    --product-mobile-media-h: clamp(280px, 48dvh, 380px);
    padding: 0 16px 12px;
    gap: 8px;
  }

  .products-page .product-intro-proto {
    width: calc(100% + 32px);
    height: var(--product-mobile-media-h);
    flex-basis: var(--product-mobile-media-h);
    margin-inline: -16px;
  }

  .products-page .product-intro-title {
    top: calc(var(--product-mobile-media-h) - 96px);
    right: 16px;
    left: 16px;
  }

  .products-page .product-intro-title h1 {
    font-size: clamp(2.35rem, 10.5vw, 2.85rem);
  }

  .products-page .product-intro-image-note {
    padding: 6px 8px;
    font-size: clamp(0.62rem, 2.65vw, 0.7rem);
    line-height: 1.35;
  }

  .products-page .product-intro-copy {
    padding: 10px 11px;
  }

  .products-page .product-intro-copy p {
    font-size: clamp(0.76rem, 3.25vw, 0.86rem);
    line-height: 1.46;
  }

  /* Developing products: shorter split cards with an unobstructed product image. */
  .products-page .product-pair-layout {
    align-items: center;
    padding: 50px 0 10px;
    grid-auto-columns: 92%;
  }

  .products-page .product-compact-card {
    height: min(100%, 560px);
    max-height: 560px;
    display: grid;
    grid-template-rows: clamp(176px, 34dvh, 220px) minmax(0, 1fr);
    background: #07131e;
  }

  .products-page .product-compact-media {
    position: relative;
    inset: auto;
    grid-row: 1;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .products-page .product-compact-card::before {
    z-index: 1;
    inset: 0 0 auto;
    height: clamp(176px, 34dvh, 220px);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0, 9, 20, 0.02) 46%, #07131e 100%);
  }

  .products-page .product-compact-copy {
    position: relative;
    z-index: 2;
    inset: auto;
    grid-row: 2;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 10px 12px 11px;
    background: #07131e;
  }

  .products-page .developing-status {
    margin-bottom: 5px;
    padding: 4px 8px;
    font-size: 0.62rem;
  }

  .products-page .product-compact-copy h2 {
    font-size: clamp(1.35rem, 6.4vw, 1.7rem);
  }

  .products-page .product-compact-copy h3 {
    margin-block: 3px 6px;
    font-size: clamp(0.9rem, 4vw, 1.05rem);
  }

  .products-page .product-compact-copy > p:not(.product-image-note),
  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    font-size: clamp(0.7rem, 2.9vw, 0.78rem);
    line-height: 1.36;
  }

  .products-page .product-compact-copy .product-wavelength {
    padding: 5px 7px;
    gap: 7px;
    font-size: 0.61rem;
    line-height: 1.25;
  }

  .products-page .product-compact-copy .product-image-note {
    margin-top: 4px;
    padding-top: 4px;
    font-size: 0.54rem;
    line-height: 1.22;
  }

  /* Future concepts: keep the cards visually present without filling tall phones. */
  .products-page .future-product-cards {
    height: min(100%, 400px);
    max-height: 400px;
    align-self: center;
    grid-auto-columns: 88%;
  }

  .products-page .future-product-card {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .products-page .future-card-copy {
    min-height: 0;
  }

  /* News and partner cards grow with their copy instead of clipping it. */
  .news-page .snap-container > :is(#latest-news, #partner-network) {
    height: auto !important;
    min-height: var(--mobile-snap-h) !important;
    max-height: none !important;
    overflow: visible !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  .news-page :is(#latest-news, #partner-network) > .news-shell {
    height: auto;
    min-height: var(--mobile-snap-h);
  }

  .news-page #latest-news .news-card-grid {
    height: auto;
    min-height: 0;
    grid-template-rows: auto;
    align-items: stretch;
  }

  .news-page #latest-news :is(.news-card-featured, .news-card-compact) {
    height: auto;
    min-height: 0;
    grid-template-rows: 180px auto;
  }

  .news-page #latest-news :is(.news-card-content, .news-card-compact .news-card-content) {
    min-height: 0;
    overflow: visible;
  }

  .news-page #partner-network :is(.partner-network, .partner-network-groups, .partner-network-group) {
    height: auto;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 768px) and (max-height: 800px) {
  .company-page main > .overview-hero {
    height: max(620px, calc(100dvh - var(--header-h))) !important;
    min-height: max(620px, calc(100dvh - var(--header-h))) !important;
  }
}

@media (max-width: 768px) and (max-height: 599px) {
  .products-page .product-intro-layout {
    --product-mobile-media-h: clamp(260px, 48dvh, 300px);
  }

  .products-page .product-compact-card {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
  }

  .products-page .future-product-cards {
    height: 360px;
    min-height: 360px;
    max-height: 360px;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  :is(.developing-status, .field-carousel-controls, .product-swipe-hint) {
    background: rgba(1, 14, 25, 0.98);
  }
}

/* 20260811 final mobile scale, snap threshold, and full-screen anchors. */
.brand-logo img,
.footer-brand img {
  height: auto !important;
}

@media (max-width: 768px) {
  html {
    font-size: 17px;
  }

  :is(.company-page, .system-page, .news-page) {
    --mobile-active-snap-h: var(--mobile-snap-h);
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  :is(.company-page, .system-page, .news-page, .fixed-chrome-page) .brand-logo {
    width: 166px !important;
    max-width: 166px;
    flex: none;
  }

  /* Mobile navigation stays menu-led; the desktop dot rail remains hidden. */
  :is(.company-page, .system-page, .news-page) .section-nav {
    display: none !important;
  }

  /* A taller company opening creates a clean hand-off from copy to equipment. */
  .company-page .snap-container > .overview-hero[data-snap-section] {
    height: max(700px, var(--mobile-active-snap-h)) !important;
    min-height: max(700px, var(--mobile-active-snap-h)) !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .company-page .overview-hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .company-page .overview-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .company-page .overview-hero::before {
    background:
      linear-gradient(180deg, rgba(1, 12, 24, 0.99) 0%, rgba(1, 12, 24, 0.9) 38%, rgba(1, 12, 24, 0.3) 57%, rgba(1, 12, 24, 0) 76%),
      linear-gradient(110deg, rgba(1, 12, 24, 0.92) 0%, rgba(1, 12, 24, 0.6) 44%, rgba(1, 12, 24, 0) 72%);
  }

  .company-page .overview-hero-layout {
    padding-top: 28px;
  }

  .company-page .overview-hero-primary h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.45rem);
  }

  .company-page .overview-hero-primary .hero-tagline {
    font-size: clamp(1.08rem, 4.9vw, 1.32rem);
  }

  .company-page .overview-hero-primary .company-intro-block,
  body.lang-en.company-page .overview-hero-primary .company-intro-block {
    font-size: clamp(0.92rem, 3.75vw, 1rem);
    line-height: 1.56;
  }

  .company-page .overview-hero .button {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 0.84rem;
  }

  /* Let the product opening use the screen instead of stopping mid-page. */
  .products-page .product-intro-layout {
    --product-mobile-media-h: clamp(330px, 48dvh, 400px);
    min-height: 100%;
    padding: 0 16px 10px;
    gap: 8px;
  }

  .products-page .product-intro-proto {
    width: calc(100% + 32px);
    margin-inline: -16px;
  }

  .products-page .product-intro-title {
    top: calc(var(--product-mobile-media-h) - 106px);
    right: 16px;
    left: 16px;
  }

  .products-page .product-intro-title h1 {
    font-size: clamp(2.55rem, 11.2vw, 3rem);
  }

  .products-page .product-intro-image-note {
    padding: 7px 9px;
    font-size: clamp(0.72rem, 2.9vw, 0.78rem);
    line-height: 1.4;
  }

  .products-page .product-intro-copy {
    padding: 11px 12px;
  }

  .products-page .product-intro-copy p {
    font-size: clamp(0.86rem, 3.55vw, 0.94rem);
    line-height: 1.52;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .products-page .product-intro-copy p span {
    display: inline;
    white-space: normal;
  }

  .products-page .product-intro-copy p span:not(:last-child)::after {
    content: " ";
  }

  .products-page .product-intro-link {
    min-height: 44px;
    font-size: 0.9rem;
  }

  /* Product cards retain their visible image while restoring readable copy. */
  .products-page .developing-status {
    font-size: 0.68rem;
  }

  .products-page .product-compact-copy h2 {
    font-size: clamp(1.5rem, 6.7vw, 1.78rem);
  }

  .products-page .product-compact-copy h3 {
    font-size: clamp(0.98rem, 4.15vw, 1.08rem);
  }

  .products-page .product-compact-copy > p:not(.product-image-note),
  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    font-size: clamp(0.79rem, 3.25vw, 0.86rem);
    line-height: 1.42;
  }

  .products-page .product-compact-copy .product-wavelength {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .products-page .product-compact-copy .product-image-note {
    font-size: 0.61rem;
    line-height: 1.28;
  }

  /* Keep the future cards immediately under their heading on tall phones. */
  .products-page .product-future-layout {
    padding: 16px 0 12px;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 12px;
  }

  .products-page .product-future-layout > h2 {
    font-size: clamp(1.65rem, 6.8vw, 1.9rem);
  }

  .products-page .future-product-cards {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
    align-self: start;
  }

  .products-page .future-card-copy p,
  .products-page .product-future-inquiry p {
    font-size: 0.88rem;
  }

  /* News and partners use larger type without reintroducing clipped copy. */
  .news-page #latest-news .news-card h3 {
    font-size: 1.08rem;
  }

  .news-page #latest-news .news-card-content > p:not(.news-card-source) {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .news-page #partner-network .partner-group-heading h3 {
    font-size: 0.78rem;
  }

  .news-page #partner-network .partner-group-heading p,
  .news-page #partner-network .partner-person-card .partner-relation {
    font-size: 0.72rem;
  }

  .news-page #partner-network .partner-person-name {
    font-size: 1.18rem;
  }

  .news-page #partner-network :is(.partner-person-title, .partner-person-affiliation, .partner-type) {
    font-size: 0.78rem;
    line-height: 1.45;
  }
}

@media (max-width: 768px) and (max-height: 800px) {
  :is(.company-page, .system-page, .news-page) {
    --mobile-active-snap-h: calc(100dvh - var(--header-h));
  }
}

/* Short phones flow naturally; once one product card fits, snap is restored. */
@media (max-width: 768px) and (max-height: 659px) {
  :is(.company-page, .system-page, .news-page) .snap-container {
    scroll-snap-type: none !important;
  }

  :is(.company-page, .system-page, .news-page) .snap-container > [data-snap-section] {
    height: auto !important;
    min-height: var(--mobile-active-snap-h) !important;
    max-height: none !important;
    overflow: visible !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  .company-page .snap-container > .overview-hero[data-snap-section] {
    min-height: 700px !important;
    overflow: hidden !important;
  }

  .products-page .product-intro-layout {
    min-height: 640px;
  }

  .products-page .future-product-cards {
    height: 360px;
    min-height: 360px;
    max-height: 360px;
  }
}

@media (max-width: 360px) and (max-height: 659px) {
  .products-page .platform-compact-card {
    height: 570px;
    min-height: 570px;
    max-height: 570px;
  }
}

@media (max-width: 768px) {
  body.lang-en.products-page .product-compact-card {
    grid-template-rows: clamp(176px, 30dvh, 200px) minmax(0, 1fr);
  }

  body.lang-en.products-page .product-compact-card::before {
    height: clamp(176px, 30dvh, 200px);
  }

  body.lang-en.products-page .product-compact-copy h2 {
    font-size: clamp(1.42rem, 6vw, 1.65rem);
  }

  body.lang-en.products-page .product-compact-copy h3 {
    font-size: clamp(0.92rem, 3.8vw, 1.02rem);
  }

  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    font-size: clamp(0.74rem, 3vw, 0.8rem);
    line-height: 1.36;
  }

  body.lang-en.products-page .product-compact-copy .product-wavelength {
    font-size: 0.64rem;
    line-height: 1.25;
  }

  body.lang-en.products-page .product-compact-copy .product-image-note {
    font-size: 0.58rem;
    line-height: 1.22;
  }

  body.lang-en.news-page #partner-network .partner-person-name {
    font-size: 1.08rem;
  }

  body.lang-en.news-page #partner-network :is(.partner-person-title, .partner-person-affiliation, .partner-type) {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

@media (max-width: 360px) {
  body.lang-en.company-page .overview-hero .hero-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.lang-en.company-page .overview-hero .button {
    width: 100% !important;
    padding-inline: 8px;
    justify-content: center;
    font-size: 0.72rem;
    white-space: normal;
    text-align: center;
  }

  body.lang-en.products-page .product-intro-layout {
    --product-mobile-media-h: 300px;
  }

  /* At this width the English product copy is genuinely taller than one viewport. */
  body.lang-en.products-page .snap-container {
    scroll-snap-type: none !important;
  }

  body.lang-en.products-page .snap-container > [data-snap-section] {
    height: auto !important;
    min-height: var(--mobile-active-snap-h) !important;
    max-height: none !important;
    overflow: visible !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  body.lang-en.products-page .product-intro-layout {
    height: auto;
    min-height: 680px;
    max-height: none;
  }

  body.lang-en.products-page .astro-compact-card {
    height: 570px;
    min-height: 570px;
    max-height: 570px;
  }

  body.lang-en.products-page .platform-compact-card {
    height: 640px;
    min-height: 640px;
    max-height: 640px;
  }
}

@media (max-width: 768px) and (min-height: 660px) {
  :is(.company-page, .system-page, .news-page) .snap-container {
    scroll-snap-type: y mandatory !important;
  }

  :is(.company-page, .system-page, .news-page) .snap-container > [data-snap-section] {
    scroll-snap-align: start;
    scroll-snap-stop: normal !important;
  }

  .products-page .snap-container > [data-snap-section] {
    scroll-snap-stop: always !important;
  }

  .company-page .overview-hero-media {
    bottom: 0;
  }

  .company-page .snap-container > .overview-hero[data-snap-section] {
    height: var(--mobile-active-snap-h) !important;
    min-height: var(--mobile-active-snap-h) !important;
  }

  .news-page .snap-container > :is(#news-overview, #latest-news, #partner-network) {
    height: var(--mobile-active-snap-h) !important;
    min-height: var(--mobile-active-snap-h) !important;
    max-height: var(--mobile-active-snap-h) !important;
    overflow: hidden !important;
    scroll-snap-align: start !important;
  }

  .news-page #partner-network {
    padding-block: 14px;
  }

  .news-page #latest-news {
    padding-block: 16px !important;
  }

  .news-page #latest-news > .news-shell {
    height: 100%;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .news-page #latest-news .news-card-grid {
    height: 100%;
    min-height: 0;
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
  }

  .news-page #latest-news :is(.news-card-featured, .news-card-compact) {
    height: 100%;
    min-height: 0;
    grid-template-rows: 180px minmax(0, 1fr);
  }

  .news-page #latest-news :is(.news-card-content, .news-card-compact .news-card-content) {
    min-height: 0;
    overflow: hidden;
  }

  .news-page #partner-network > .news-shell {
    height: 100%;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    gap: 10px;
  }

  .news-page #partner-network :is(.partner-network, .partner-network-groups) {
    height: 100%;
    min-height: 0;
  }

  .news-page #partner-network .partner-network-groups {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: hidden;
  }

  .news-page #partner-network .partner-network-group {
    min-height: 0;
    overflow: hidden;
  }

  .news-page #partner-network .partner-network-card {
    padding: 14px;
  }
}

/* 320x520-class phones: compose each opening deliberately within the short viewport. */
@media (max-width: 360px) and (max-height: 540px) {
  /* The tall observatory artwork becomes a one-screen stage: copy above, equipment below. */
  .company-page .snap-container > .overview-hero[data-snap-section] {
    height: var(--mobile-active-snap-h) !important;
    min-height: var(--mobile-active-snap-h) !important;
    max-height: var(--mobile-active-snap-h) !important;
    overflow: hidden !important;
  }

  .company-page .overview-hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .company-page .overview-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .company-page .overview-hero::before {
    background:
      linear-gradient(180deg, #010c18 0%, rgba(1, 12, 24, 0.96) 43%, rgba(1, 12, 24, 0.48) 66%, rgba(1, 12, 24, 0.08) 88%),
      linear-gradient(100deg, rgba(1, 12, 24, 0.88) 0%, rgba(1, 12, 24, 0.32) 68%, rgba(1, 12, 24, 0) 100%);
  }

  .company-page .overview-hero-layout {
    width: calc(100% - 28px);
    min-height: 100%;
    padding: 16px 0 10px;
    align-items: flex-start;
  }

  .company-page .overview-hero-primary {
    width: 100%;
    max-width: none;
  }

  .company-page .overview-hero-primary h1 {
    max-width: 285px;
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .company-page .overview-hero-primary .hero-tagline {
    max-width: 260px;
    margin-top: 8px;
    font-size: 0.94rem;
    line-height: 1.3;
  }

  .company-page .overview-hero-primary .company-intro-block,
  body.lang-en.company-page .overview-hero-primary .company-intro-block {
    max-width: 292px;
    margin-top: 9px;
    font-size: 0.76rem;
    line-height: 1.42;
  }

  .company-page .overview-hero-primary .company-intro-block::before {
    width: 38px;
    margin-bottom: 7px;
  }

  .company-page .overview-hero .hero-actions,
  body.lang-en.company-page .overview-hero .hero-actions {
    width: min(100%, 244px) !important;
    margin-top: 9px;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .company-page .overview-hero .button,
  body.lang-en.company-page .overview-hero .button {
    width: 100% !important;
    min-height: 36px;
    padding-inline: 9px;
    justify-content: center;
    gap: 6px;
    font-size: 0.69rem;
    text-align: center;
  }

  body.lang-en.company-page .overview-hero-primary h1 {
    max-width: 275px;
    font-size: 1.48rem;
  }

  body.lang-en.company-page .overview-hero-primary .hero-tagline {
    font-size: 0.82rem;
  }

  body.lang-en.company-page .overview-hero-primary .company-intro-block {
    font-size: 0.68rem;
    line-height: 1.34;
  }

  /* Product opening keeps a strong image while bringing real copy into the first view. */
  .products-page .product-intro-layout,
  body.lang-en.products-page .product-intro-layout {
    --product-mobile-media-h: 300px;
    min-height: 570px;
    padding-bottom: 10px;
    gap: 7px;
  }

  .products-page .product-intro-title {
    top: calc(var(--product-mobile-media-h) - 94px);
  }

  .products-page .product-intro-title h1 {
    font-size: 2.35rem;
  }

  .products-page .product-intro-image-note {
    padding-block: 5px;
    font-size: 0.64rem;
  }

  .products-page .product-intro-copy {
    padding: 9px 10px;
  }

  .products-page .product-intro-copy p {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .products-page .product-intro-link {
    min-height: 38px;
    margin-top: 8px;
    font-size: 0.78rem;
  }

  /* Developing cards are only slightly taller than the viewport and still show the product. */
  .products-page .product-pair-layout {
    padding: 44px 0 8px;
  }

  .products-page .product-compact-card,
  body.lang-en.products-page .product-compact-card {
    grid-template-rows: 150px minmax(0, 1fr);
  }

  .products-page .product-compact-card::before,
  body.lang-en.products-page .product-compact-card::before {
    height: 150px;
  }

  .products-page .astro-compact-card {
    height: 480px;
    min-height: 480px;
    max-height: 480px;
  }

  .products-page .platform-compact-card {
    height: 520px;
    min-height: 520px;
    max-height: 520px;
  }

  body.lang-en.products-page .astro-compact-card {
    height: 520px;
    min-height: 520px;
    max-height: 520px;
  }

  body.lang-en.products-page .platform-compact-card {
    height: 570px;
    min-height: 570px;
    max-height: 570px;
  }

  .products-page .product-compact-copy {
    padding: 9px 11px 10px;
  }

  .products-page .product-compact-copy h3 {
    margin-block: 2px 5px;
  }

  .products-page .product-compact-copy .product-wavelength {
    padding-block: 4px;
  }

  /* Future concepts and inquiry now form a complete, balanced short-screen panel. */
  .products-page .product-future-layout {
    width: calc(100% - 24px);
    min-height: var(--mobile-active-snap-h);
    padding: 11px 0 9px;
    gap: 8px;
  }

  .products-page .product-future-layout > h2 {
    font-size: 1.58rem;
  }

  .products-page .future-product-cards {
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    grid-auto-columns: 90%;
  }

  .products-page .future-card-copy {
    padding: 9px;
  }

  .products-page .product-future-inquiry p {
    font-size: 0.78rem;
  }

  /* The news opening remains a full anchor; following cards continue naturally. */
  .news-page .snap-container > #news-overview {
    height: var(--mobile-active-snap-h) !important;
    min-height: var(--mobile-active-snap-h) !important;
    max-height: var(--mobile-active-snap-h) !important;
    overflow: hidden !important;
  }

  .news-page #latest-news {
    padding-block: 12px !important;
  }

  .news-page #latest-news .news-section-heading {
    margin-bottom: 10px;
  }

  .news-page #latest-news :is(.news-card-featured, .news-card-compact) {
    grid-template-rows: 140px auto;
  }

  .news-page #latest-news :is(.news-card-content, .news-card-compact .news-card-content) {
    padding: 13px;
  }

  .news-page .snap-container > #partner-network[data-snap-section] {
    height: calc(100dvh - var(--header-h)) !important;
    min-height: calc(100dvh - var(--header-h)) !important;
    max-height: calc(100dvh - var(--header-h)) !important;
    padding-block: 10px;
    overflow: hidden !important;
  }

  .news-page #partner-network > .news-shell {
    height: 100%;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 7px;
    align-content: stretch;
  }

  .news-page #partner-network :is(.partner-network, .partner-network-groups) {
    height: 100%;
    min-height: 0;
  }

  .news-page #partner-network .partner-network-groups {
    grid-template-rows: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 7px;
    overflow: hidden;
  }

  .news-page #partner-network .partner-network-card {
    height: 100%;
    min-height: 0;
    padding: 9px 10px;
  }

  .news-page #partner-network .partner-network-group {
    min-height: 0;
    gap: 5px;
    overflow: hidden;
  }

  .news-page #partner-network .partner-person-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
  }

  .news-page #partner-network .partner-person-avatar {
    width: 42px;
    height: 42px;
  }

  .news-page #partner-network .partner-person-avatar svg {
    width: 26px;
    height: 26px;
  }

  .news-page #partner-network .partner-person-card .partner-relation {
    margin-bottom: 4px;
    font-size: 0.62rem;
  }

  .news-page #partner-network .partner-person-name {
    font-size: 1.02rem;
  }

  .news-page #partner-network .partner-person-title {
    margin-top: 4px;
  }

  .news-page #partner-network .partner-person-card .partner-name {
    margin-top: 5px;
  }

  .news-page #partner-network :is(.partner-person-title, .partner-person-affiliation, .partner-type) {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .news-page #partner-network .partner-person-card .partner-type {
    margin-top: 3px;
  }

  .news-page #partner-network .partner-network-investors .partner-relation {
    top: 10px;
    left: 12px;
  }

  .news-page #partner-network .partner-network-investors .partner-wordmark {
    font-size: 1.08rem;
  }

  .news-page #partner-network .partner-network-investors .partner-name {
    margin-top: 6px;
    font-size: 0.7rem;
  }

  .news-page #partner-network .partner-network-investors .partner-type {
    margin-top: 2px;
    font-size: 0.66rem;
  }

  body.lang-en.news-page #partner-network .partner-group-heading > div {
    gap: 4px;
  }

  body.lang-en.news-page #partner-network .partner-group-heading p {
    display: none;
  }

  body.lang-en.news-page #partner-network .partner-network-partners .partner-group-cards {
    grid-auto-columns: 94%;
  }

  body.lang-en.news-page #partner-network .partner-person-card {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
  }

  body.lang-en.news-page #partner-network .partner-person-card .partner-relation {
    max-width: 100%;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  body.lang-en.news-page #partner-network .partner-person-name {
    font-size: 0.96rem;
  }

  body.lang-en.news-page #partner-network :is(.partner-person-title, .partner-person-affiliation, .partner-type) {
    font-size: 0.62rem;
    line-height: 1.22;
  }

  /* Short mobile snap: oversized anchors remain scrollable, then settle at section edges. */
  body:is(.company-page, .system-page, .news-page) .snap-container,
  body.lang-en.products-page .snap-container {
    scroll-snap-type: y mandatory !important;
    scroll-padding-top: var(--header-h);
    scroll-padding-bottom: 0;
  }

  body:is(.company-page, .system-page, .news-page) .snap-container > [data-snap-section],
  body.lang-en.products-page .snap-container > [data-snap-section] {
    scroll-snap-align: start !important;
    scroll-snap-stop: normal !important;
  }

  body.news-page .snap-container > :is(
    #news-overview,
    #latest-news,
    #partner-network,
    #news-collaboration
  )[data-snap-section] {
    scroll-snap-align: start !important;
    scroll-snap-stop: normal !important;
  }

  /* Keep the short-height footer reachable as the final snap destination. */
  body:is(.company-page, .system-page, .news-page) .snap-container::after,
  body.lang-en.products-page .snap-container::after,
  body:is(.company-page, .system-page, .news-page) .snap-footer-sentinel,
  body.lang-en.products-page .snap-footer-sentinel {
    scroll-snap-align: end;
    scroll-snap-stop: normal;
  }
}

/* 320x520 body-copy density: retain headings, reduce reading copy, and prevent clipping. */
@media (max-width: 360px) and (max-height: 540px) {
  .company-page .vision-section-copy {
    padding: 18px 16px 14px;
  }

  .company-page .vision-section-body {
    margin-top: 8px;
    font-size: 0.74rem;
    line-height: 1.48;
  }

  body.lang-en.company-page .vision-section-body {
    font-size: 0.66rem;
    line-height: 1.4;
  }

  /* Product intro becomes one complete snap panel without shrinking its title. */
  .products-page .product-intro-layout,
  body.lang-en.products-page .product-intro-layout {
    --product-mobile-media-h: 245px;
    height: calc(100dvh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    padding-bottom: 7px;
    gap: 5px;
    overflow: hidden;
  }

  .products-page .product-intro-title {
    top: calc(var(--product-mobile-media-h) - 94px);
  }

  .products-page .product-intro-image-note {
    padding: 4px 7px;
    font-size: 0.57rem;
    line-height: 1.28;
  }

  .products-page .product-intro-copy {
    padding: 7px 9px;
  }

  .products-page .product-intro-copy p {
    font-size: 0.68rem;
    line-height: 1.34;
  }

  .products-page .product-intro-link {
    min-height: 34px;
    margin-top: 6px;
    padding-inline: 12px;
    font-size: 0.72rem;
  }

  body.lang-en.products-page .product-intro-layout {
    --product-mobile-media-h: 224px;
  }

  body.lang-en.products-page .product-intro-copy p {
    font-size: 0.61rem;
    line-height: 1.28;
  }

  body.lang-en.products-page .product-intro-link {
    min-height: 32px;
    margin-top: 5px;
    font-size: 0.68rem;
  }

  /* Achievement titles stay prominent; intro and validation descriptions step down. */
  .achievements-page .achievement-intro-copy {
    padding: 14px;
  }

  .achievements-page .achievement-intro-copy p,
  body.lang-en.achievements-page .achievement-intro-copy p {
    margin-top: 8px;
    font-size: 0.74rem;
    line-height: 1.48;
  }

  body.lang-en.achievements-page .achievement-intro-copy p {
    font-size: 0.66rem;
    line-height: 1.4;
  }

  .achievements-page .field-carousel-copy p,
  body.lang-en.achievements-page .field-carousel-copy p {
    font-size: 0.74rem;
    line-height: 1.46;
  }

  /* Careers and contact remain natural-scroll pages with denser readable copy. */
  .careers-page :is(.careers-intro-side, .careers-openings-side),
  .contact-page :is(.contact-company-side, .contact-form-side) {
    padding: 20px 14px;
  }

  .careers-page .careers-title,
  .contact-page .contact-title {
    margin-bottom: 14px;
  }

  .careers-page .careers-hiring-overview {
    margin-top: 14px;
  }

  .careers-page .careers-hiring-overview,
  .careers-page .careers-hiring-overview > p,
  .careers-page .career-posting .career-summary {
    font-size: 0.76rem;
    line-height: 1.48;
  }

  .careers-page .careers-hiring-overview > p + p {
    margin-top: 8px;
  }

  .careers-page .career-posting {
    padding-block: 13px;
  }

  .careers-page .career-posting-meta {
    font-size: 0.7rem;
  }

  .careers-page .career-posting .career-position {
    margin-block: 11px 6px;
    font-size: 1.26rem;
    line-height: 1.28;
  }

  .careers-page .career-requirements {
    margin-top: 9px;
    gap: 4px;
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .contact-page .contact-list {
    font-size: 0.76rem;
    line-height: 1.42;
  }

  .contact-page .contact-row {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 8px;
    padding: 11px 0;
  }

  .contact-page .contact-row dt {
    font-size: 0.7rem;
  }

  .contact-page .contact-row dd {
    font-size: 0.76rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .contact-page .form-grid {
    gap: 12px;
  }

  .contact-page .field {
    gap: 5px;
  }

  .contact-page :is(.field label, .inquiry-type-field legend) {
    font-size: 0.74rem;
  }

  .contact-page :is(.field input, .field textarea, .inquiry-type-option span) {
    font-size: 0.8rem;
  }

  .contact-page .field input {
    height: 42px;
    padding-inline: 12px;
  }

  .contact-page .field textarea {
    min-height: 105px;
    padding: 11px 12px;
  }

  .contact-page .inquiry-type-option span {
    min-height: 40px;
  }

  .contact-page .form-actions {
    margin-top: 12px;
  }

  /* Latest news uses a complete short-screen card with a two-line body ellipsis. */
  .news-page .snap-container > #latest-news[data-snap-section] {
    height: calc(100dvh - var(--header-h)) !important;
    min-height: calc(100dvh - var(--header-h)) !important;
    max-height: calc(100dvh - var(--header-h)) !important;
    padding-block: 10px !important;
    overflow: hidden !important;
  }

  .news-page #latest-news > .news-shell {
    height: 100%;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .news-page #latest-news .news-section-heading {
    margin-bottom: 8px;
  }

  .news-page #latest-news .news-card-grid {
    height: 100%;
    min-height: 0;
    grid-template-rows: minmax(0, 1fr);
  }

  .news-page #latest-news :is(.news-card-featured, .news-card-compact) {
    height: 100%;
    min-height: 0;
    grid-template-rows: 125px minmax(0, 1fr);
    overflow: hidden;
  }

  .news-page #latest-news :is(.news-card-content, .news-card-compact .news-card-content) {
    min-height: 0;
    padding: 10px 11px;
    overflow: hidden;
  }

  .news-page #latest-news .news-card-source {
    margin: 5px 0 3px;
    font-size: 0.68rem;
  }

  .news-page #latest-news .news-card h3 {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 0.94rem;
    line-height: 1.3;
  }

  .news-page #latest-news .news-card-content > p:not(.news-card-source) {
    margin-top: 6px;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .news-page #latest-news .news-read-more {
    padding-top: 6px;
    font-size: 0.7rem;
  }
}

/* Mobile achievements: restore the history anchor while its long card list scrolls naturally. */
@media (max-width: 768px) {
  body.achievements-page .snap-container {
    scroll-snap-type: y mandatory !important;
  }

  body.achievements-page .snap-container > [data-snap-section],
  body.achievements-page .snap-container > #company-history[data-snap-section] {
    scroll-snap-align: start !important;
    scroll-snap-stop: normal !important;
  }

  body.achievements-page #company-history .timeline-month {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }
}

/* Short mobile product track: both products share one viewport-sized stage. */
@media (max-width: 768px) and (max-height: 659px) {
  body.products-page .snap-container > .product-pair-section[data-snap-section] {
    height: var(--mobile-active-snap-h) !important;
    min-height: var(--mobile-active-snap-h) !important;
    max-height: var(--mobile-active-snap-h) !important;
    overflow: hidden !important;
  }

  body.products-page .product-pair-layout {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    padding: 44px 0 8px;
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
    overflow-y: hidden;
  }

  body.products-page .product-compact-card,
  body.lang-en.products-page .product-compact-card {
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    grid-template-rows: clamp(140px, 26dvh, 176px) minmax(0, 1fr);
  }

  body.products-page .product-compact-card::before,
  body.lang-en.products-page .product-compact-card::before {
    height: clamp(140px, 26dvh, 176px);
  }
}

@media (max-width: 360px) and (min-height: 541px) and (max-height: 659px) {
  body.products-page .product-compact-copy {
    padding: 8px 10px 9px;
    overflow: hidden;
  }

  body.products-page .developing-status {
    margin-bottom: 4px;
    padding: 3px 7px;
    font-size: 0.62rem;
  }

  body.products-page .product-compact-copy h2,
  body.lang-en.products-page .product-compact-copy h2 {
    font-size: 1.45rem;
    line-height: 1.06;
  }

  body.products-page .product-compact-copy h3,
  body.lang-en.products-page .product-compact-copy h3 {
    margin: 2px 0 5px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  body.products-page .product-compact-copy > p:not(.product-image-note),
  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    font-size: 0.68rem;
    line-height: 1.32;
  }

  body.products-page .product-compact-copy > p:not(.product-image-note) span {
    display: inline;
  }

  body.products-page .product-compact-copy > p:not(.product-image-note) span:not(:last-child)::after {
    content: " ";
  }

  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    -webkit-line-clamp: 7;
    line-clamp: 7;
    font-size: 0.63rem;
    line-height: 1.28;
  }

  body.products-page .product-compact-copy .product-wavelength {
    margin-top: auto;
    padding: 4px 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 6px;
    font-size: 0.57rem;
    line-height: 1.22;
  }

  body.products-page .product-wavelength strong {
    padding-right: 0;
    border-right: 0;
  }

  body.products-page .product-wavelength span {
    min-width: 0;
    flex: 1 1 170px;
  }

  body.products-page .product-compact-copy .product-image-note,
  body.lang-en.products-page .product-compact-copy .product-image-note {
    margin-top: 3px;
    padding-top: 3px;
    font-size: 0.5rem;
    line-height: 1.2;
  }
}

/* 320x520 product cards: equal one-screen panels with a visible product stage. */
@media (max-width: 360px) and (max-height: 540px) {
  body.products-page .snap-container > .product-pair-section[data-snap-section] {
    height: var(--mobile-active-snap-h) !important;
    min-height: var(--mobile-active-snap-h) !important;
    max-height: var(--mobile-active-snap-h) !important;
    overflow: hidden !important;
    scroll-snap-align: start !important;
  }

  body.products-page .product-pair-layout {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    padding: 44px 0 8px;
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
    overflow-y: hidden;
  }

  body.products-page .product-compact-card,
  body.lang-en.products-page .product-compact-card {
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    grid-template-rows: 132px minmax(0, 1fr);
  }

  body.products-page .product-compact-card::before,
  body.lang-en.products-page .product-compact-card::before {
    height: 132px;
  }

  body.products-page .product-compact-copy {
    height: 100%;
    padding: 7px 9px 8px;
    overflow: hidden;
  }

  body.products-page .developing-status {
    margin-bottom: 3px;
    padding: 3px 7px;
    font-size: 0.58rem;
  }

  body.products-page .product-compact-copy h2,
  body.lang-en.products-page .product-compact-copy h2 {
    font-size: 1.35rem;
    line-height: 1.05;
  }

  body.products-page .product-compact-copy h3,
  body.lang-en.products-page .product-compact-copy h3 {
    margin: 2px 0 4px;
    font-size: 0.82rem;
    line-height: 1.18;
  }

  body.products-page .product-compact-copy > p:not(.product-image-note),
  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    font-size: 0.65rem;
    line-height: 1.3;
  }

  body.products-page .product-compact-copy > p:not(.product-image-note) span {
    display: inline;
  }

  body.products-page .product-compact-copy > p:not(.product-image-note) span:not(:last-child)::after {
    content: " ";
  }

  body.lang-en.products-page .product-compact-copy > p:not(.product-image-note) {
    -webkit-line-clamp: 6;
    line-clamp: 6;
    font-size: 0.59rem;
    line-height: 1.27;
  }

  body.products-page .product-compact-copy .product-wavelength {
    margin-top: auto;
    padding: 3px 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 6px;
    font-size: 0.54rem;
    line-height: 1.2;
  }

  body.products-page .product-wavelength strong {
    padding-right: 0;
    border-right: 0;
  }

  body.products-page .product-wavelength span {
    min-width: 0;
    flex: 1 1 170px;
  }

  body.products-page .product-compact-copy .product-image-note,
  body.lang-en.products-page .product-compact-copy .product-image-note {
    margin-top: 3px;
    padding-top: 3px;
    font-size: 0.48rem;
    line-height: 1.2;
  }
}
