: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; }

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;
}

.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); }
.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 { 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-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-openings-head { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.careers-openings-head h2 { margin: 0; font-size: clamp(1.2rem, 1.8vw, 1.65rem); }
.careers-openings-head span { color: var(--cyan); font: 700 0.72rem "Electrical Safety", "Malgun Gothic", sans-serif; letter-spacing: 0.1em; }
.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) {
  .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; }
  .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-openings-head { min-height: 72px; }
  .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, 3fr) minmax(360px, 2fr);
  gap: clamp(48px, 6vw, 112px);
  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: 42pt;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.04em;
  text-align: center;
}

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

.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-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: min(100%, 540px);
  align-self: end;
  justify-self: end;
  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: y mandatory;
  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; }

.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: end;
  justify-self: end;
  transform: none;
}

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

.company-page .field-carousel-track {
  transition-duration: 1500ms;
  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: y mandatory;
  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,
.careers-openings-head {
  border: 0;
}

.careers-openings-head { min-height: auto; margin-bottom: 42px; }

.careers-openings-head h2 {
  color: #ffffff;
  font-size: 32pt;
  line-height: 1.18;
}

.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-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; }
  .careers-openings-head h2 { font-size: 24pt; }
  .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: translateY(-28px); }

.product-intro-layout {
  grid-template-columns: 1fr;
  align-content: center;
  gap: 28pt;
}

.product-intro-copy { max-width: 1080px; }

.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-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);
}

.careers-openings-head { 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/실험01.png');
  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/사무실.png');
  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(22px, 2.5vw, 34px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-content: center;
  align-items: start;
}

.achievements-page .history-section .section-head {
  margin: 0;
  padding: 0;
}

.achievements-page .history-section .timeline {
  width: 100%;
  max-height: none;
  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/사무실.png');
  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/레이저실험.png');
  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;
  }
}

@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/가운데로고.png') 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); }
