:root {
  --ink-950: #090c0b;
  --ink-900: #0e1311;
  --ink-800: #17201d;
  --ink-700: #26312d;
  --ink-500: #59625e;
  --paper: #f2f3ed;
  --paper-soft: #e9ece4;
  --white: #fbfcf7;
  --lime: #c9ff45;
  --lime-soft: #e8ffc0;
  --accent-neutral: #828985;
  --text-on-dark-muted: rgba(255, 255, 255, .64);
  --heading-hero: clamp(3rem, 5.2vw, 4.75rem);
  --heading-page: clamp(2.5rem, 4.2vw, 4rem);
  --heading-section: clamp(1.9rem, 3vw, 3.25rem);
  --heading-cta: clamp(2.1rem, 3.6vw, 4rem);
  --heading-article: clamp(1.6rem, 2.35vw, 2.5rem);
  --amber: #ffb547;
  --blue: #9ec9ff;
  --line: rgba(14, 24, 20, .14);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 24px 80px rgba(9, 12, 11, .12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: min(1440px, calc(100vw - 64px));
  --font: Pretendard, SUIT, "Noto Sans KR", "Apple SD Gothic Neo", Inter, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  color: var(--ink-900);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -.04em;
  line-height: 1.08;
}

h2 {
  font-weight: 900;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  color: var(--ink-500);
}

::selection {
  color: var(--ink-950);
  background: var(--lime);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink-950);
  background: var(--lime);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}

.section {
  padding: 144px max(32px, calc((100vw - 1440px) / 2));
}

.section--dark {
  color: var(--white);
  background: var(--ink-950);
}

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

.eyebrow {
  margin-bottom: 24px;
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.section-heading--light .eyebrow,
.site-footer .eyebrow {
  color: var(--lime);
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  width: 100%;
  height: 96px;
  padding: 0 max(32px, calc((100vw - 1440px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.brand-lockup {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-self: start;
}

.brand-lockup > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-lockup b,
.brand-lockup em {
  color: inherit;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-lockup em {
  opacity: .62;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 7px);
  gap: 3px;
  align-items: end;
  width: 27px;
  height: 28px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 2px;
  width: 8px;
  height: 3px;
  background: var(--lime);
}

.brand-mark i {
  display: block;
  height: 22px;
  background: var(--lime);
}

.brand-mark i:nth-child(2) {
  height: 28px;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.1vw, 38px);
  align-items: center;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
  padding: 12px 0 12px 24px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.menu-button,
.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--ink-950);
  background: var(--lime);
}

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

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
}

.button--ghost:hover {
  border-color: var(--white);
}

.button--outline {
  color: var(--ink-950);
  border-color: var(--ink-950);
}

.button--outline:hover {
  color: var(--paper);
  background: var(--ink-950);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link--light {
  color: var(--lime);
}

.hero {
  min-height: 98vh;
  min-height: 98svh;
  padding: 132px max(32px, calc((100vw - 1440px) / 2)) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 12, 11, .98) 0, rgba(9, 12, 11, .98) 42%, rgba(9, 12, 11, .3) 70%, rgba(9, 12, 11, .2)),
    var(--ink-950);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(420px, 5fr);
  gap: 38px;
  align-items: center;
  min-height: calc(98svh - 192px);
  width: 100%;
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 1020px;
  margin-bottom: 34px;
  font-size: var(--heading-hero);
  font-weight: 760;
  letter-spacing: -.04em;
}

.hero-answer {
  max-width: 670px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, .65);
  font-size: clamp(17px, 1.35vw, 21px);
}

.hero-answer strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  height: min(68vh, 720px);
  margin: 0 -32px 0 -140px;
  overflow: hidden;
  box-shadow: -80px 0 120px rgba(9, 12, 11, .52);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink-950) 0%, transparent 42%), linear-gradient(0deg, rgba(9, 12, 11, .46), transparent 55%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 18px;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: var(--ink-950);
  background: var(--lime);
  border-radius: 50%;
  transform: rotate(10deg);
}

.hero-stamp b,
.hero-stamp span {
  position: absolute;
  font-size: 13px;
  line-height: 1;
}

.hero-stamp b {
  top: 31px;
}

.hero-stamp span {
  bottom: 29px;
  font-size: 10px;
  letter-spacing: .12em;
}

.hero-meta {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  min-height: 60px;
  padding: 18px 0;
  color: var(--text-on-dark-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.signal-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 10vw, 170px);
  align-items: end;
}

.answer-summary {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.answer-summary h2 {
  margin: 0;
  font-size: var(--heading-section);
}

.answer-summary h2 em {
  color: var(--accent-neutral);
  font-style: normal;
}

.answer-summary > p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-500);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.7;
}

.section-heading h2,
.section-title-row h2,
.process-intro h2,
.faq-intro h2,
.mini-heading h2 {
  margin-bottom: 28px;
  font-size: var(--heading-section);
}

.section-heading h2 em,
.section-title-row h2 em,
.process-intro h2 em {
  color: var(--ink-500);
  font-style: normal;
}

.section-heading > p:last-child,
.section-title-row > p,
.process-intro > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 18px;
}

.signal-board {
  padding: 26px 30px 18px;
  color: var(--white);
  background: var(--ink-900);
  box-shadow: var(--shadow);
}

.signal-board__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  color: var(--text-on-dark-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  border-bottom: 1px solid var(--line-dark);
}

.status-dot {
  color: var(--lime);
}

.status-dot::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 255, 69, .1);
}

.signal-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-board li {
  display: grid;
  grid-template-columns: 50px 1fr 1.3fr;
  gap: 22px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--line-dark);
}

.signal-board li span {
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 12px;
}

.signal-board li b {
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: -.035em;
}

.signal-board li em {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  font-style: normal;
}

.signal-board > a {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.section-kicker {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 88px;
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink-950);
  background: var(--lime);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.section-kicker p {
  margin: 0;
  color: var(--ink-800);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.section-title-row {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.section-title-row h2 {
  margin: 0;
}

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

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: .78;
  padding: 26px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, background .25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  right: -40%;
  bottom: -45%;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .12;
  transition: transform .45s ease;
}

.feature-card:hover {
  color: var(--ink-950);
  background: var(--lime);
}

.feature-card:hover::before {
  transform: scale(1.35);
}

.card-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.feature-card div {
  position: relative;
  z-index: 1;
}

.feature-card p {
  margin-bottom: 14px;
  color: currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  opacity: .55;
}

.feature-card h3 {
  min-height: 3.2em;
  margin-bottom: 30px;
  font-size: clamp(1.45rem, 2vw, 2.4rem);
}

.feature-card div > span {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.industry-section {
  overflow: hidden;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light h2 em {
  color: rgba(255, 255, 255, .35);
  font-style: normal;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 80px;
}

.industry-card {
  grid-column: span 3;
  min-height: 420px;
  color: var(--white);
  background: var(--ink-800);
  border-color: var(--line-dark);
}

.industry-card:nth-child(2) {
  transform: translateY(54px);
}

.industry-card:nth-child(3) {
  background: var(--lime);
  color: var(--ink-950);
}

.industry-card:nth-child(4) {
  transform: translateY(-32px);
}

.industry-card:hover {
  color: var(--ink-950);
  background: var(--white);
}

.process-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 9vw, 150px);
}

.process-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: start;
  padding: 34px 8px;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--ink-500);
  font-family: ui-monospace, monospace;
  font-size: 13px;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.process-list p {
  margin: 0;
  font-size: 14px;
}

.region-section {
  background: var(--white);
}

.region-grid {
  border-top: 1px solid var(--ink-900);
}

.region-card {
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  gap: 30px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}

.region-card:hover {
  padding: 0 24px;
  background: var(--lime-soft);
}

.region-card > span {
  color: var(--ink-500);
  font-family: ui-monospace, monospace;
  font-size: 12px;
}

.region-card h3 {
  margin-bottom: 7px;
  font-size: 30px;
}

.region-card p {
  margin: 0;
  font-size: 13px;
}

.scope-note {
  margin: 22px 0 0;
  font-size: 12px;
}

.faq-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(60px, 10vw, 160px);
}

.faq-intro {
  align-self: start;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  color: var(--ink-800);
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-weight: 400;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 760px;
  padding: 0 50px 28px 0;
}

.faq-list details p {
  margin: 0;
  font-size: 15px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 20px;
}

.insight-card {
  display: block;
}

.insight-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--ink-900);
}

.insight-visual::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.insight-visual span {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}

.insight-visual i {
  position: absolute;
  bottom: -18%;
  left: 20%;
  width: 18%;
  height: 86%;
  background: currentColor;
  transform: rotate(28deg);
}

.insight-visual i:nth-of-type(2) {
  left: 44%;
  height: 110%;
}

.insight-visual i:nth-of-type(3) {
  left: 68%;
  height: 76%;
}

.tone-1,
.tone-6 {
  color: var(--lime);
}

.tone-2 {
  color: var(--amber);
  background: #2d1e0e;
}

.tone-3 {
  color: var(--blue);
  background: #101b25;
}

.tone-4 {
  color: var(--paper);
  background: #303632;
}

.tone-5 {
  color: #ff9f88;
  background: #291512;
}

.insight-card > p {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-card h3 {
  min-height: 2.5em;
  margin-bottom: 20px;
  font-size: 24px;
}

.insight-card > span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.centered-button {
  margin: 70px auto 0;
}

.insight-section > .centered-button {
  display: flex;
  width: max-content;
}

.principles-section {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 100px;
}

.principles-copy h2 {
  font-size: var(--heading-section);
}

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

.principles-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principles-grid span {
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 12px;
}

.principles-grid h3 {
  margin: 62px 0 12px;
  color: var(--white);
  font-size: 27px;
}

.principles-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
}

.final-cta {
  text-align: center;
  background: var(--lime);
}

.final-cta .eyebrow {
  color: var(--ink-700);
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: var(--heading-cta);
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 38px;
  color: var(--ink-700);
}

.final-cta .button--primary {
  color: var(--white);
  background: var(--ink-950);
}

.site-footer {
  padding: 120px max(32px, calc((100vw - 1440px) / 2)) 34px;
  color: var(--white);
  background: var(--ink-950);
}

.footer-lead {
  padding-bottom: 100px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-lead h2 {
  margin-bottom: 34px;
  font-size: var(--heading-cta);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
  padding: 70px 0;
  border-bottom: 1px solid var(--line-dark);
}

.brand-lockup--footer {
  margin-bottom: 28px;
}

.footer-grid > div:first-child p {
  max-width: 370px;
  color: var(--text-on-dark-muted);
  font-size: 13px;
}

.footer-grid address {
  display: grid;
  gap: 7px;
  max-width: 470px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  font-style: normal;
  line-height: 1.65;
}

.footer-grid address a {
  width: fit-content;
  color: rgba(255, 255, 255, .78);
  font-weight: 750;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid b {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.footer-file {
  color: var(--text-on-dark-muted);
  font-size: 11px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-meta {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding-top: 30px;
}

.footer-meta p {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 10px;
  letter-spacing: .06em;
}

.footer-meta strong {
  color: rgba(255, 255, 255, .7);
}

.pending {
  margin-left: 8px;
  color: var(--amber);
}

.bottom-contact-bar {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: calc(92px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  color: #fff;
  background: #090b0a;
  box-shadow: 0 -10px 32px rgba(0, 0, 0, .18);
}

.bottom-contact-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 92px;
  width: 100%;
  height: 92px;
  margin: 0 auto;
}

.bottom-contact-bar__brand {
  display: none;
}

.bottom-contact-bar__action {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 8px 30px;
}

.bottom-contact-bar__phone {
  color: #fff;
  background: #090b0a;
}

.bottom-contact-bar__phone-icon {
  flex: 0 0 34px;
  fill: #c9ff45;
}

.bottom-contact-bar__kakao {
  color: #171300;
  background: #fee500;
}

.bottom-contact-bar__talk {
  display: grid;
  flex: 0 0 44px;
  grid-template-columns: 44px;
  grid-template-rows: 44px;
  place-items: center;
  color: #fee500;
  background: #381e1f;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.bottom-contact-bar__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.bottom-contact-bar__eyebrow {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.bottom-contact-bar__copy strong {
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.bottom-contact-bar__action:focus-visible {
  position: relative;
  z-index: 1;
  outline: 4px solid var(--white);
  outline-offset: -6px;
}

@media (min-width: 1081px) {
  .bottom-contact-bar__inner {
    grid-template-columns: 1.1fr 1fr 1fr;
    max-width: 1280px;
  }

  .bottom-contact-bar__brand {
    position: relative;
    display: flex;
    padding: 15px 32px;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background-color: #090b0a;
    background-image: url("../images/industrial-battery-contact-bar.png");
    background-position: 18% 50%;
    background-size: cover;
    isolation: isolate;
  }

  .bottom-contact-bar__brand::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(9, 11, 10, .62);
    content: "";
  }

  .bottom-contact-bar__brand span {
    color: #c9ff45;
    font-size: 14px;
    font-weight: 800;
  }

  .bottom-contact-bar__brand strong {
    margin-top: 3px;
    font-size: clamp(23px, 2.2vw, 28px);
    line-height: 1;
  }
}

@media (max-width: 560px) {
  .bottom-contact-bar__action {
    gap: 9px;
    padding: 8px 12px;
  }

  .bottom-contact-bar__copy strong {
    font-size: clamp(15px, 4vw, 19px);
  }
}

@media (max-width: 420px) {
  .bottom-contact-bar__eyebrow {
    display: none;
  }

  .bottom-contact-bar__action {
    gap: 8px;
    padding: 8px 9px;
  }

  .bottom-contact-bar__phone-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .bottom-contact-bar__talk {
    flex-basis: 36px;
    grid-template-columns: 36px;
    grid-template-rows: 36px;
    font-size: 10px;
  }

  .bottom-contact-bar__copy strong {
    font-size: clamp(13px, 4vw, 16px);
  }
}

/* Sub pages */
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 78px;
  color: var(--text-on-dark-muted);
  font-size: 11px;
}

.breadcrumb a:hover {
  color: var(--lime);
}

.breadcrumb b {
  max-width: 380px;
  overflow: hidden;
  color: rgba(255, 255, 255, .74);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sub-hero,
.editorial-hero,
.article-hero,
.company-hero,
.contact-hero,
.legal-hero {
  position: relative;
  padding-top: 156px;
  background-color: var(--ink-950);
  background-image:
    linear-gradient(90deg, rgba(5, 9, 8, .96) 0%, rgba(5, 9, 8, .82) 48%, rgba(5, 9, 8, .58) 100%),
    url("../images/industrial-battery-hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sub-hero {
  display: flex;
  flex-direction: column;
  min-height: 98vh;
  min-height: 98svh;
}

.sub-hero__grid {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 100px;
  align-items: end;
  min-height: 0;
}

.sub-hero h1,
.editorial-hero h1,
.article-hero h1,
.company-hero h1,
.contact-hero h1 {
  max-width: 1100px;
  margin-bottom: 36px;
  font-size: var(--heading-page);
}

.sub-lead,
.editorial-hero > p:last-child,
.article-hero > p,
.company-hero > p,
.contact-hero > div > p:last-child {
  max-width: 800px;
  color: rgba(255, 255, 255, .58);
  font-size: clamp(17px, 1.45vw, 21px);
}

.sub-signal {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 24px;
  overflow: hidden;
  color: var(--lime);
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(195, 255, 48, .14), transparent 32%),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    rgba(2, 7, 6, .46);
  background-size: auto, 100% 25%, 25% 100%, auto;
  backdrop-filter: blur(4px);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.sub-signal:hover,
.sub-signal:focus-within {
  border-color: rgba(195, 255, 48, .5);
  box-shadow: inset 0 0 40px rgba(195, 255, 48, .04), 0 24px 70px rgba(0, 0, 0, .24);
}

.signal-chart__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
}

.signal-chart__head span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(195, 255, 48, .1);
  animation: signalPulse 1.8s ease-in-out infinite;
}

.signal-chart__head small {
  color: var(--text-on-dark-muted);
  font-size: 9px;
  letter-spacing: .05em;
}

.signal-chart__plot {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: end;
  min-height: 235px;
  padding: 40px 0 38px;
}

.signal-bar {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 0 4px;
  color: var(--lime);
  background: none;
  border: 0;
  cursor: pointer;
}

.signal-bar i {
  width: 100%;
  height: var(--level);
  background: linear-gradient(180deg, #d9ff62 0%, var(--lime) 70%, #91c900 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12), 0 0 24px rgba(195, 255, 48, .12);
  transform: scaleY(.05);
  transform-origin: bottom;
  transition: transform .85s cubic-bezier(.16, 1, .3, 1), filter .25s ease, box-shadow .25s ease;
}

.signal-bar--42 i { height: 42%; }
.signal-bar--74 i { height: 74%; }
.signal-bar--56 i { height: 56%; }
.signal-bar--88 i { height: 88%; }

.sub-signal.is-visible .signal-bar i {
  transform: scaleY(1);
}

.signal-bar:nth-child(2) i {
  transition-delay: .08s;
}

.signal-bar:nth-child(3) i {
  transition-delay: .16s;
}

.signal-bar:nth-child(4) i {
  transition-delay: .24s;
}

.signal-bar:hover i,
.signal-bar:focus-visible i,
.signal-bar.is-active i {
  filter: brightness(1.13);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .35), 0 0 38px rgba(195, 255, 48, .32);
  transform: scaleY(1) translateY(-8px);
}

.signal-bar > span {
  position: absolute;
  z-index: 2;
  top: calc(100% - var(--level) - 25px);
  left: 50%;
  color: var(--white);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity .25s ease, transform .25s ease;
}

.signal-bar:hover > span,
.signal-bar:focus-visible > span,
.signal-bar.is-active > span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.signal-bar b {
  position: absolute;
  right: 4px;
  bottom: -26px;
  left: 4px;
  color: rgba(255, 255, 255, .54);
  font-size: 8px;
  letter-spacing: .08em;
  text-align: center;
}

.signal-chart__readout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.signal-chart__readout span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--lime);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
}

.signal-chart__readout strong {
  color: var(--white);
  font-size: 13px;
}

.signal-chart__readout em {
  color: rgba(255, 255, 255, .46);
  font-size: 10px;
  font-style: normal;
}

@keyframes signalPulse {
  50% {
    opacity: .55;
    box-shadow: 0 0 0 9px rgba(195, 255, 48, 0);
  }
}

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

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
}

.inquiry-board {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.inquiry-board__top,
.inquiry-board__footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.inquiry-board__top {
  border-bottom: 1px solid var(--line-dark);
}

.inquiry-board__footer {
  border-top: 1px solid var(--line-dark);
  justify-content: flex-end;
}

.inquiry-live {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--lime);
}

.inquiry-live i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 255, 69, .12);
}

.inquiry-window {
  height: 600px;
  padding: 0 28px;
  overflow: hidden;
}

.inquiry-list {
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform .36s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.inquiry-row {
  display: grid;
  grid-template-columns: 62px 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 60px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}

.inquiry-row time {
  color: rgba(255, 255, 255, .48);
  font-variant-numeric: tabular-nums;
}

.inquiry-type {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.inquiry-row strong {
  overflow: hidden;
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inquiry-status {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-self: end;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
}

.inquiry-status i {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  font-style: normal;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.inquiry-status--done {
  color: var(--lime);
}

.inquiry-status--pending {
  color: var(--amber);
}

.inquiry-board__footer button {
  padding: 6px 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
}

.inquiry-board__footer button:hover,
.inquiry-board__footer button:focus-visible {
  color: var(--ink-950);
  background: var(--lime);
  border-color: var(--lime);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

@media (min-width: 1101px) {
  .inquiry-board {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: 100%;
  }

  .inquiry-window {
    height: auto;
    min-height: 0;
  }
}

.quote-form__heading {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.quote-form__heading h3 {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.quote-form label:not(.quote-form__consent) {
  display: grid;
  gap: 7px;
}

.quote-form label > span {
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 800;
}

.quote-form input:not([type="checkbox"]),
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink-900);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
  border-color: var(--amber);
}

.quote-form__consent {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--ink-500);
  font-size: 12px;
}

.quote-form__consent input {
  accent-color: var(--ink-900);
}

.quote-form .button {
  justify-content: center;
  width: 100%;
}

.quote-form__status {
  margin: 0;
  padding: 12px 14px;
  color: var(--ink-800);
  background: var(--lime-soft);
  border-left: 3px solid var(--lime);
  font-size: 13px;
}

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

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 224px;
  padding: 24px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-500);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.review-stars {
  color: var(--amber);
  letter-spacing: .08em;
  white-space: nowrap;
}

.review-type {
  margin: 22px 0 10px;
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 850;
}

.review-body {
  margin-bottom: 22px;
  color: var(--ink-800);
  font-size: 14px;
  line-height: 1.65;
}

.review-author {
  margin: auto 0 0;
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 700;
}

.howto-section {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.howto-intro h2 {
  margin-bottom: 26px;
  font-size: var(--heading-section);
}

.howto-intro h2 em {
  color: var(--lime);
  font-style: normal;
}

.howto-intro > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
}

.howto-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.howto-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  min-height: 158px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
}

.howto-list li > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
}

.howto-list h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.howto-list p {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
  line-height: 1.65;
}

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

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

.success-card {
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.success-card__thumb {
  position: relative;
  aspect-ratio: 1.5;
  overflow: hidden;
  background: var(--ink-900);
}

.success-card__thumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(9, 12, 11, .68));
  content: "";
}

.success-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.08);
  transform: scale(1.08);
  transition: transform .5s ease, filter .5s ease;
}

.success-card:hover .success-card__thumb img,
.success-card:focus-within .success-card__thumb img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.16);
}

.success-card__thumb span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 14px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
}

.success-card__thumb--1 img { object-position: 20% 50%; }
.success-card__thumb--2 img { object-position: 34% 50%; }
.success-card__thumb--3 img { object-position: 48% 50%; }
.success-card__thumb--4 img { object-position: 62% 50%; }
.success-card__thumb--5 img { object-position: 76% 50%; }
.success-card__thumb--6 img { object-position: 90% 50%; }
.success-card__thumb--7 img { object-position: 26% 80%; }
.success-card__thumb--8 img { object-position: 52% 80%; }
.success-card__thumb--9 img { object-position: 78% 80%; }

.success-card__body {
  padding: 24px;
}

.success-client {
  margin-bottom: 8px;
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 800;
}

.success-card h3 {
  margin-bottom: 18px;
  color: var(--ink-950);
  font-size: 22px;
}

.success-card__body p:not(.success-client) {
  display: flex;
  gap: 8px;
  margin: 8px 0 0;
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.55;
}

.success-card__body p b {
  flex: 0 0 52px;
  color: var(--ink-900);
  font-size: 10px;
  letter-spacing: .08em;
}

@media (max-width: 1100px) {
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

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

  .howto-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .inquiry-window {
    height: 540px;
    padding: 0 18px;
  }

  .inquiry-board__top,
  .inquiry-board__footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .inquiry-row {
    grid-template-columns: 52px 74px minmax(0, 1fr) 24px;
    gap: 8px;
    min-height: 54px;
    font-size: 11px;
  }

  .inquiry-row strong {
    font-size: 12px;
  }

  .inquiry-status {
    width: 20px;
    overflow: hidden;
    font-size: 0;
  }

  .reviews-grid,
  .success-grid,
  .howto-list {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 190px;
  }

  .howto-list li {
    min-height: 0;
  }

  .success-card__body {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-chart__head span::before {
    animation: none;
  }

  .signal-bar i {
    transform: scaleY(1);
    transition: none;
  }
}

.detail-intro {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: 80px;
}

.detail-intro__label span {
  display: inline-block;
  padding: 8px 12px;
  color: var(--ink-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  border: 1px solid var(--line);
}

.detail-intro h2 {
  margin-bottom: 28px;
  font-size: var(--heading-section);
}

.detail-intro p {
  max-width: 750px;
  font-size: 18px;
}

.mini-heading {
  margin-bottom: 56px;
}

.spec-reference {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.spec-reference__intro h2 {
  margin-bottom: 24px;
  font-size: var(--heading-section);
}

.spec-reference__intro > p:last-child {
  max-width: 540px;
  font-size: 17px;
}

.spec-reference__table {
  overflow-x: auto;
  border-top: 1px solid var(--ink-900);
}

.spec-reference table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--paper);
}

.spec-reference caption {
  padding: 15px 18px;
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.spec-reference th,
.spec-reference td {
  padding: 18px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.spec-reference thead th {
  color: var(--ink-700);
  font-size: 12px;
  letter-spacing: .04em;
  background: var(--mist);
}

.spec-reference tbody th {
  width: 32%;
  font-size: 14px;
}

.spec-reference tbody td {
  font-size: 14px;
}

.spec-reference__table > p {
  margin: 14px 0 0;
  color: var(--ink-500);
  font-size: 12px;
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-900);
}

.factor-grid article {
  min-height: 260px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factor-grid article:first-child {
  border-left: 1px solid var(--line);
}

.factor-grid span {
  color: var(--ink-500);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.factor-grid p {
  margin: 62px 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.factor-grid h3 {
  font-size: 25px;
}

.check-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.check-copy h2 {
  margin-bottom: 28px;
  font-size: var(--heading-section);
}

.check-copy > p:last-child {
  max-width: 540px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink-900);
}

.check-list li {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 24px 2px;
  color: var(--ink-800);
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 700;
}

.check-list span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--ink-950);
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
}

.compact-process ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink-900);
  border-left: 1px solid var(--line);
}

.compact-process li {
  min-height: 310px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compact-process li > span {
  color: var(--ink-500);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.compact-process li div {
  margin-top: 94px;
}

.compact-process h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.compact-process p {
  margin: 0;
  font-size: 13px;
}

.detail-faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 100px;
}

.detail-faq h2 {
  font-size: var(--heading-section);
}

.faq-list--dark details {
  border-color: var(--line-dark);
}

.faq-list--dark summary {
  color: var(--white);
}

.faq-list--dark details p {
  color: rgba(255, 255, 255, .52);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-900);
  border-left: 1px solid var(--line);
}

.related-links a {
  display: flex;
  justify-content: space-between;
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 750;
}

.related-links a:hover {
  background: var(--lime);
}

.inline-cta {
  display: flex;
  gap: 60px;
  align-items: end;
  justify-content: space-between;
  background: var(--lime);
}

.inline-cta h2 {
  margin: 0;
  font-size: var(--heading-section);
}

.inline-cta .button--primary {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink-950);
}

/* FAQ & editorial */
.editorial-hero {
  min-height: 690px;
}

.editorial-hero > p:last-child {
  margin-bottom: 0;
}

.faq-hub {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 80px;
}

.faq-hub aside {
  position: sticky;
  top: 100px;
  align-self: start;
  padding-top: 20px;
  border-top: 1px solid var(--ink-900);
}

.faq-hub aside > span {
  display: block;
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 760;
  letter-spacing: -.08em;
  line-height: 1;
}

.faq-hub aside p {
  margin: 12px 0 30px;
}

.faq-hub aside a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.faq-list--numbered summary {
  grid-template-columns: 44px 1fr 30px;
}

.faq-list--numbered summary b {
  color: var(--ink-500);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.source-note {
  display: grid;
  grid-template-columns: .25fr .75fr 1fr;
  gap: 60px;
  align-items: start;
}

.source-note > p:first-child {
  color: var(--ink-800);
  font-size: 12px;
  font-weight: 800;
}

.source-note h2 {
  font-size: 27.2px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.journal-card {
  grid-column: span 4;
  margin-bottom: 38px;
}

.journal-card figure {
  position: relative;
  aspect-ratio: 1200 / 630;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--ink-900);
}

.journal-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.journal-card:hover figure img {
  transform: scale(1.025);
}

.journal-card figcaption {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 20px;
  padding: 6px 8px;
  color: var(--ink-950);
  background: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
}

.journal-card__meta {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--ink-600);
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.journal-card__meta time {
  white-space: nowrap;
}

.journal-card h2 {
  min-height: 2.4em;
  margin-bottom: 20px;
  font-size: 21.6px;
}

.journal-card__summary {
  margin: -6px 0 20px;
  color: var(--ink-600);
  font-size: 13px;
  line-height: 1.65;
}

.journal-card em {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.journal-method {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 80px;
}

.journal-method > div:first-child h2 {
  font-size: var(--heading-section);
}

.journal-method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-900);
  border-left: 1px solid var(--line);
}

.journal-method__grid article {
  min-height: 300px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journal-method__grid span {
  color: var(--ink-500);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.journal-method__grid h3 {
  margin: 88px 0 14px;
  font-size: 23px;
}

.journal-method__grid p {
  margin: 0;
  font-size: 13px;
}

/* Articles */
.article-hero {
  min-height: 760px;
}

.article-hero > div:last-child {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 22px;
  color: var(--text-on-dark-muted);
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
  letter-spacing: .07em;
}

.article-body {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 80px;
}

.article-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-top: 20px;
  border-top: 1px solid var(--ink-900);
}

.article-aside span {
  color: var(--ink-800);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .85;
}

.article-aside p {
  margin-top: 24px;
  font-size: 12px;
}

.article-copy {
  max-width: 840px;
}

.article-copy h2 {
  margin: 70px 0 24px;
  font-size: var(--heading-article);
}

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

.article-copy > p {
  color: var(--ink-700);
  font-size: 18px;
}

.article-copy blockquote {
  margin: 70px 0;
  padding: 36px 0 36px 36px;
  color: var(--ink-800);
  border-left: 6px solid var(--lime);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 740;
  letter-spacing: -.04em;
  line-height: 1.35;
}

.article-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink-900);
}

.article-checks li {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.article-checks span {
  color: var(--ink-500);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.article-checks p {
  margin: 0;
  color: var(--ink-800);
  font-weight: 700;
}

.source-box {
  margin-top: 60px;
  padding: 24px;
  background: var(--paper-soft);
  font-size: 14px !important;
}

.source-box b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-800);
}

.related-article {
  text-align: center;
}

.related-article h2 {
  margin-bottom: 34px;
  font-size: var(--heading-section);
}

.article-navigation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
}

.article-navigation a {
  display: grid;
  gap: 12px;
  min-height: 150px;
  padding: 28px;
  background: var(--paper);
}

.article-navigation a:hover {
  background: var(--lime);
}

.article-navigation span {
  color: var(--ink-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.article-navigation b {
  align-self: end;
  font-size: 17px;
}

/* Company */
.company-hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
}

.company-hero > p {
  position: relative;
  z-index: 2;
}

.company-wordmark {
  position: absolute;
  right: -2vw;
  bottom: -4vw;
  color: transparent;
  font-size: clamp(8rem, 20vw, 23rem);
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: .65;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .13);
}

.company-story {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 120px;
}

.company-story h2 {
  font-size: var(--heading-section);
}

.company-story > div:last-child p {
  font-size: 17px;
}

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

.values-grid article {
  min-height: 330px;
  padding: 30px;
  border-top: 1px solid var(--ink-900);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-grid article:first-child {
  border-left: 1px solid var(--line);
}

.values-grid span {
  color: var(--ink-500);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.values-grid h2 {
  margin-top: 110px;
  font-size: 23.2px;
}

/* Contact */
.contact-hero {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 100px;
  align-items: end;
  min-height: 800px;
}

.contact-hero .breadcrumb {
  grid-column: 1 / -1;
  align-self: start;
  margin-bottom: 0;
}

.contact-status {
  padding: 28px;
  color: var(--white);
  border: 1px solid var(--line-dark);
}

.contact-status span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.contact-status b {
  display: block;
  margin: 80px 0 22px;
  font-size: 34px;
  letter-spacing: -.05em;
  line-height: 1.1;
}

.contact-status p {
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
}

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

.photo-grid article > span {
  color: var(--ink-500);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.photo-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 16px 0 22px;
  overflow: hidden;
  background: var(--ink-800);
}

.photo-placeholder::before,
.photo-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 255, 69, .5);
}

.photo-placeholder::before {
  inset: 16%;
}

.photo-placeholder::after {
  inset: 34% 21%;
  border-radius: 50%;
}

.photo-placeholder i {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 1px;
  height: 76%;
  background: rgba(201, 255, 69, .35);
}

.photo-placeholder i:last-child {
  transform: rotate(90deg);
}

.photo-grid h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.photo-grid p {
  font-size: 13px;
}

.contact-sheet {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 100px;
}

.contact-sheet h2 {
  font-size: var(--heading-section);
}

.contact-sheet dl {
  margin: 0;
  border-top: 1px solid var(--ink-900);
}

.contact-sheet dl div {
  display: grid;
  grid-template-columns: .35fr .65fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-sheet dt {
  color: var(--ink-500);
  font-size: 12px;
}

.contact-sheet dd {
  margin: 0;
  font-weight: 750;
}

.pending-contact {
  text-align: center;
}

.pending-contact h2 {
  margin-bottom: 28px;
  font-size: var(--heading-cta);
}

.pending-contact > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, .5);
}

/* Legal */
.legal-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 720px;
}

.legal-hero > header {
  max-width: 1050px;
  padding-top: 80px;
}

.legal-hero h1 {
  max-width: 1050px;
  margin-bottom: 28px;
  font-size: var(--heading-page);
}

.legal-hero header > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
}

.legal-hero header > span {
  display: inline-block;
  padding: 6px 10px;
  color: var(--ink-950);
  background: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.legal-document {
  background: var(--white);
}

.legal-copy {
  max-width: 900px;
  margin-left: auto;
}

.legal-copy section {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  margin-bottom: 16px;
  font-size: 20px;
}

.legal-copy p {
  margin: 0;
}

.error-page {
  min-height: 100svh;
  padding-top: 190px;
}

.error-page h1 {
  margin-bottom: 30px;
  font-size: var(--heading-hero);
}

.error-page p {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .5);
}

.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.has-motion [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 7px;
    place-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .22);
  }

  .menu-button span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 98;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 126px 34px 40px;
    color: var(--white);
    background: var(--ink-950);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }

  .mobile-menu[data-open] {
    z-index: 98;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu div {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu a {
    padding: 15px 0;
    font-size: clamp(1.7rem, 5vw, 3rem);
    font-weight: 760;
    letter-spacing: -.04em;
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-menu .mobile-contact {
    margin-top: 24px;
    padding: 16px 20px;
    color: var(--ink-950);
    background: var(--lime);
    border: 0;
    font-size: 16px;
  }

  .mobile-menu p {
    margin: 0;
    color: var(--text-on-dark-muted);
    font-size: 11px;
  }

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

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

  .hero-media {
    height: 46vh;
    min-height: 420px;
    margin: -80px -32px 0 18%;
  }

  .signal-section,
  .process-section,
  .principles-section {
    gap: 70px;
  }

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

  .feature-card {
    aspect-ratio: 1.2;
  }

  .industry-card {
    grid-column: span 6;
    min-height: 340px;
    transform: none !important;
  }

  .process-section {
    grid-template-columns: .85fr 1.15fr;
  }

  .sub-hero__grid {
    gap: 50px;
  }

  .compact-process ol {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 820px) {
  :root {
    --container: calc(100vw - 36px);
  }

  body {
    word-break: keep-all;
  }

  h1,
  h2 {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 96px 18px;
  }

  .site-header {
    height: 76px;
    padding: 0 18px;
  }

  .hero {
    padding: 108px 18px 0;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 30px;
    width: 100%;
    min-width: 0;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-copy .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 13.2vw, 5.7rem);
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .final-cta h2 {
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .hero-media {
    min-height: 390px;
    margin: 10px -18px 0;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(9, 12, 11, .62), transparent 60%);
  }

  .hero-stamp {
    width: 76px;
    height: 76px;
  }

  .hero-stamp b {
    top: 25px;
  }

  .hero-stamp span {
    bottom: 23px;
  }

  .hero-meta {
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
  }

  .hero-meta span:nth-child(2) {
    display: none;
  }

  .signal-section,
  .answer-summary,
  .section-title-row,
  .process-section,
  .faq-section,
  .principles-section,
  .detail-intro,
  .check-section,
  .detail-faq,
  .faq-hub,
  .source-note,
  .article-body,
  .company-story,
  .contact-hero,
  .contact-sheet {
    grid-template-columns: 1fr;
  }

  .journal-method {
    grid-template-columns: 1fr;
  }

  .signal-board {
    margin: 0 -2px;
    padding: 20px 18px 14px;
  }

  .signal-board li {
    grid-template-columns: 34px 1fr;
  }

  .signal-board li em {
    grid-column: 2;
    margin-top: -22px;
  }

  .section-title-row {
    gap: 20px;
  }

  .feature-card {
    aspect-ratio: .92;
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .industry-grid {
    gap: 10px;
    margin-top: 50px;
  }

  .industry-card {
    min-height: 280px;
  }

  .process-intro,
  .faq-hub aside,
  .article-aside {
    position: static;
  }

  .region-card {
    grid-template-columns: 42px 1fr 24px;
    gap: 14px;
  }

  .region-card h3 {
    font-size: 24px;
  }

  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 12px;
  }

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

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

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

  .sub-hero,
  .editorial-hero,
  .article-hero,
  .company-hero,
  .contact-hero,
  .legal-hero {
    padding-top: 130px;
  }

  .sub-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sub-signal {
    min-height: 280px;
  }

  .detail-intro__label {
    display: none;
  }

  .compact-process ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .journal-card {
    grid-column: span 6;
  }

  .faq-hub aside {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .faq-hub aside > span {
    font-size: 68px;
  }

  .faq-hub aside p {
    margin: 0;
  }

  .faq-hub aside a {
    margin-left: auto;
  }

  .source-note {
    gap: 10px;
  }

  .article-body {
    gap: 50px;
  }

  .article-aside {
    display: flex;
    gap: 24px;
    align-items: end;
  }

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

  .contact-hero .breadcrumb {
    grid-column: auto;
  }

  .contact-status b {
    margin-top: 40px;
  }
}

@media (max-width: 520px) {
  :root {
    --heading-hero: clamp(2.35rem, 10.5vw, 2.75rem);
    --heading-page: clamp(2.1rem, 9vw, 2.35rem);
    --heading-section: 1.8rem;
    --heading-cta: 2rem;
    --heading-article: 1.7rem;
  }

  .brand-lockup b,
  .brand-lockup em {
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: var(--heading-hero);
  }

  .sub-hero h1,
  .editorial-hero h1,
  .article-hero h1,
  .company-hero h1,
  .contact-hero h1 {
    font-size: var(--heading-page);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-media {
    min-height: 340px;
  }

  .section-heading h2,
  .section-title-row h2,
  .process-intro h2,
  .faq-intro h2,
  .mini-heading h2,
  .detail-intro h2,
  .check-copy h2,
  .detail-faq h2,
  .contact-sheet h2 {
    font-size: var(--heading-section);
  }

  .feature-grid,
  .insight-grid,
  .values-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    aspect-ratio: 1.3;
  }

  .industry-card {
    grid-column: 1 / -1;
    min-height: 250px;
  }

  .principles-grid article {
    min-height: 220px;
  }

  .final-cta h2,
  .footer-lead h2,
  .inline-cta h2,
  .pending-contact h2 {
    font-size: var(--heading-cta);
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .breadcrumb b {
    max-width: 160px;
  }

  .factor-grid,
  .compact-process ol {
    grid-template-columns: 1fr;
  }

  .spec-reference {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .factor-grid article {
    min-height: 210px;
  }

  .compact-process li {
    min-height: 230px;
  }

  .compact-process li div {
    margin-top: 60px;
  }

  .faq-hub aside {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .faq-hub aside a {
    width: 100%;
    margin-left: 0;
  }

  .faq-list--numbered summary {
    grid-template-columns: 32px 1fr 26px;
    gap: 12px;
    font-size: 16px;
  }

  .journal-card {
    grid-column: 1 / -1;
  }

  .journal-method__grid {
    grid-template-columns: 1fr;
  }

  .journal-method__grid article {
    min-height: 230px;
  }

  .journal-method__grid h3 {
    margin-top: 54px;
  }

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

  .article-copy blockquote {
    margin: 50px 0;
    padding-left: 24px;
    font-size: 1.65rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
