:root {
  --blue: #0033a0;
  --blue-deep: #002477;
  --ink: #111318;
  --gray: #8a8d8f;
  --cloud: #f3f5f7;
  --white: #ffffff;
  --line: #d9dde2;
  --display: "Helvetica Neue Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: 'poppins',"Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(1440px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 140;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(48px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background-color .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(255,255,255,.92);
  border-color: var(--line);
  backdrop-filter: blur(16px) saturate(135%);
}
.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  text-decoration: none;
}
.brand img { width: 142px; height: auto; }
.brand span {
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-nav {
  --nav-active-blue: #2f64c7;
  --color-1: #2f64c7;
  --color-2: #5f8fe6;
  --color-3: #a9c7ff;
  --color-4: #5f8fe6;
  position: relative;
  isolation: isolate;
}
.gooey-nav-list {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gooey-nav-list li {
  position: relative;
  border-radius: 999px;
  isolation: isolate;
  cursor: pointer;
}
.site-nav a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 10px 15px;
  color: #45484d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease;
}
.gooey-nav-list li::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: var(--nav-active-blue);
  content: "";
  opacity: 0;
  transform: scale(.72);
  transition: opacity .28s ease, transform .36s var(--ease);
}
.gooey-nav-list li.active::after { opacity: 1; transform: scale(1); }
.gooey-nav-list li.active a { color: var(--white); }
.gooey-nav-list li:not(.active):hover a { color: var(--blue); }
.gooey-nav-list li:focus-within:has(:focus-visible) { box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--blue); }

.gooey-effect {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 0;
  height: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  opacity: 1;
  pointer-events: none;
  transition: left .38s var(--ease), top .38s var(--ease), width .38s var(--ease), height .38s var(--ease);
}
.gooey-text { z-index: 4; color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: 0 !important; }
.gooey-filter { z-index: 1; filter: none; }
.gooey-filter::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--nav-active-blue);
  content: "";
  opacity: 0;
  transform: scale(.5);
}
.gooey-filter.active::after { animation: gooey-pill .36s var(--ease) both; }
@keyframes gooey-pill { to { opacity: 1; transform: scale(1); } }

.gooey-particle,
.gooey-point { display: block; width: 16px; height: 16px; border-radius: 50%; opacity: 0; transform-origin: center; }
.gooey-particle {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  animation: gooey-particle var(--time) ease 1 -350ms;
}
.gooey-point { background: var(--color); animation: gooey-point var(--time) ease 1 -350ms; }
@keyframes gooey-particle {
  0% { opacity: 1; transform: rotate(0deg) translate(var(--start-x), var(--start-y)); animation-timing-function: cubic-bezier(.55,0,1,.45); }
  70% { opacity: 1; transform: rotate(calc(var(--rotate) * .5)) translate(calc(var(--end-x) * 1.2), calc(var(--end-y) * 1.2)); }
  85% { opacity: 1; transform: rotate(calc(var(--rotate) * .66)) translate(var(--end-x), var(--end-y)); }
  100% { opacity: 1; transform: rotate(calc(var(--rotate) * 1.2)) translate(calc(var(--end-x) * .5), calc(var(--end-y) * .5)); }
}
@keyframes gooey-point {
  0% { opacity: 0; transform: scale(0); animation-timing-function: cubic-bezier(.55,0,1,.45); }
  25% { transform: scale(calc(var(--scale) * .25)); }
  38%, 85% { opacity: 1; }
  65%, 85% { transform: scale(var(--scale)); }
  100% { opacity: 0; transform: scale(0); }
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(420px, .82fr) 1.36fr;
  padding: 84px 0 0 max(48px, calc((100vw - 1440px) / 2));
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: center;
  padding: 24px 12px 48px 0;
}
.eyebrow,
.micro-label {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow { font-size: 13px; letter-spacing: .15em; }
.products-section .section-heading .eyebrow,
.common-wish .eyebrow { font-size: 16px; }
.spirit-statement > .micro-label,
.concept-intro > .micro-label,
.brand-claim > .micro-label { font-size: 16px; }
.global-copy > .micro-label,
.business-scope > .micro-label { font-size: 13px; }
.hero h1,
.section-heading h2,
.why-intro h2,
.common-wish h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .91;
}
.hero h1 { position: relative; z-index: 3; font-size: clamp(68px, 7.8vw, 132px); }
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 span:last-child { color: var(--blue); }
.hero-intro {
  max-width: 470px;
  margin: 36px 0 30px;
  color: #4e5258;
  font-size: 18px;
  line-height: 1.55;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.link-icon {
  width: 40px;
  height: 40px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  transition: filter .25s ease, opacity .25s ease, transform .25s var(--ease);
}
.text-link:hover .link-icon { filter: brightness(0); transform: translateY(3px); }
.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--cloud);
}
.hero-visual::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 24%;
  background: linear-gradient(90deg, var(--white), transparent);
  content: "";
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; transform: scale(1.025); transition: transform 1.2s var(--ease); }
.hero-visual.is-visible img { transform: scale(1); }
.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 36px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(17,19,24,.78);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-rule {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: max(48px, calc((100vw - 1440px) / 2));
  width: calc(100% - max(48px, calc((100vw - 1440px) / 2)));
  height: 5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 1.3s .35s var(--ease) forwards;
}
.hero-side-note {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 50%;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 9px;
  letter-spacing: .23em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}
@keyframes draw-line { to { transform: scaleX(1); } }

.section { position: relative; padding: 154px max(48px, calc((100vw - 1440px) / 2)); overflow: visible; }
.brand-section { background: var(--white); }
.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 110px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.section-heading h2,
.why-intro h2,
.common-wish h2 { font-size: clamp(58px, 6.5vw, 104px); }
.section-heading .eyebrow { padding-top: 10px; }
#brand .section-heading { grid-template-columns: 180px 1fr; gap: 32px; }
#brand-title {
  align-self: center;
  white-space: nowrap;
  font-size: clamp(46px, 5.1vw, 76px);
  font-weight: 500;
  letter-spacing: -.055em;
}
#brand-title span { color: var(--blue); font-weight: 700; }

.spirit-statement {
  position: relative;
  width: min(1920px, calc(100vw - 96px));
  max-width: none;
  left: calc(48px - max(48px, calc((100vw - 1440px) / 2)));
  margin: 0 0 130px;
  padding: 52px 54px 0;
  border: 0;
  border-radius: 10px;
  background: rgba(0,0,0,.8);
}
.spirit-statement::before { display: none; }
.spirit-statement .micro-label { color: #7ca6ff; text-align: center; }
.spirit-statement blockquote {
  max-width: 1020px;
  margin: 0 auto;
  color: #f5f7fa;
  font: 500 clamp(40px, 5.2vw, 78px)/1.04 var(--display);
  letter-spacing: -.045em;
  text-align: center;
}
.spirit-statement blockquote::first-letter { color: #4b8df8; }
.spirit-traits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  border-top: 1px solid rgba(255,255,255,.32);
}
.spirit-traits span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,.25);
  color: #555960;
  font: 800 20px/1 var(--display);
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}
.spirit-traits span:last-child { border-right: 0; }
.shiny-text {
  --shine-base: #7ca6e8;
  --shine-highlight: #ffffff;
  color: transparent !important;
  background-image: linear-gradient(110deg, var(--shine-base) 0%, var(--shine-base) 38%, var(--shine-highlight) 50%, var(--shine-base) 62%, var(--shine-base) 100%);
  background-size: 240% auto;
  background-position: 150% center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shiny-sweep 2.6s ease-in-out infinite;
}
.shiny-text:nth-child(2) { animation-delay: .14s; }
.shiny-text:nth-child(3) { animation-delay: .28s; }
.shiny-text:nth-child(4) { animation-delay: .42s; }
@keyframes shiny-sweep { 0%, 22% { background-position: 150% center; } 68%, 100% { background-position: -50% center; } }

.brand-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) 1fr;
  gap: 11vw;
  width: min(1120px, 100%);
  margin-inline: auto;
}
.brand-narrative p { margin: 0 0 24px; max-width: 580px; color: #50545b; }
.brand-narrative > p:not(.lead) { font-size: 22px; line-height: 1.55; }
.brand-narrative .lead { color: var(--ink); font-size: clamp(25px, 2.2vw, 36px); line-height: 1.25; letter-spacing: -.02em; }
.business-scope { min-width: 0; align-self: start; }
.business-scope .micro-label { margin-bottom: 12px; }
.option-wheel {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: grab;
  outline: none;
  touch-action: none;
  user-select: none;
}
.option-wheel::before { position: absolute; top: 50%; left: 0; z-index: 2; width: 28px; height: 2px; background: var(--blue); content: ""; }
.option-wheel::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(var(--white), transparent 28%, transparent 72%, var(--white)); content: ""; pointer-events: none; }
.option-wheel.is-dragging { cursor: grabbing; }
.option-wheel:focus-visible { box-shadow: inset 0 0 0 2px var(--blue); }
.option-wheel button {
  position: absolute;
  top: 50%;
  left: 42px;
  width: calc(100% - 52px);
  padding: 8px 0;
  border: 0;
  color: #8a8d8f;
  background: transparent;
  font: 500 clamp(20px, 2vw, 30px)/1 var(--display);
  letter-spacing: -.02em;
  text-align: left;
  transform-origin: left center;
  cursor: pointer;
  will-change: transform, opacity, filter;
}
.option-wheel button[aria-selected="true"] { color: var(--blue); font-weight: 700; }
.wheel-hint { margin: 10px 0 0; color: #8a8d8f; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.brand-principles { margin: 0; }
.brand-principles div { padding: 24px 0 28px; border-top: 1px solid var(--line); }
.brand-principles dt { margin-bottom: 10px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.brand-principles dd { margin: 0; max-width: 420px; font-size: 17px; line-height: 1.45; }

.global-view {
  position: relative;
  min-height: 580px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 80px;
  margin-top: 150px;
  padding: 70px 8%;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.global-view::after {
  position: absolute;
  top: -22%;
  right: -10%;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.global-view::before { display: none; }
.global-copy { position: relative; z-index: 2; }
.global-copy .micro-label { color: #85a9ff; }
.global-copy h3 { margin: 0 0 26px; font: 600 clamp(45px, 5vw, 76px)/.95 var(--display); letter-spacing: -.045em; }
.global-copy > p:last-child { max-width: 390px; color: #aeb2b9; }
.global-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 48px 0 0; }
.global-facts div { padding-top: 18px; border-top: 1px solid #4a4e55; }
.global-facts dt { font: 600 clamp(44px, 5vw, 72px)/.9 var(--display); letter-spacing: -.045em; }
.global-facts dd { margin: 10px 0 0; color: #aeb2b9; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.globe { position: relative; height: 350px; overflow: hidden; border: 1px solid rgba(133,169,255,.26); background: #101c2a; }
.map-strip { position: absolute; inset: 0; overflow: hidden; }
.map-strip img { position: absolute; top: 50%; width: 100%; height: auto; opacity: .82; transform: translateY(-50%); }
.map-strip img:first-child { left: -30%; }
.map-strip img:last-child { left: 70%; }
.distribution-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.distribution-lines path { fill: none; vector-effect: non-scaling-stroke; }
.route-base path { stroke: rgba(113,161,236,.26); stroke-width: .75; }
.route-signal path { stroke: #75adff; stroke-width: 1.25; stroke-linecap: round; stroke-dasharray: 6 11; marker-end: url(#route-arrow); animation: route-flow 2.8s linear infinite; }
.route-signal path:nth-child(2) { animation-delay: -.45s; }
.route-signal path:nth-child(3) { animation-delay: -.9s; }
.route-signal path:nth-child(4) { animation-delay: -1.35s; }
.route-signal path:nth-child(5) { animation-delay: -1.8s; }
.route-signal path:nth-child(6) { animation-delay: -2.25s; }
.distribution-lines marker path { fill: none; stroke: #bfd5ff; stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; }
.route-nodes circle { fill: rgba(159,192,255,.12); stroke: #9fc0ff; stroke-width: .9; }
.korea-core { fill: var(--white); }
.korea-ring { fill: none; stroke: #4b8df8; stroke-width: 2.5; transform-box: fill-box; transform-origin: center; animation: korea-pulse 2.4s ease-out infinite; }
.korea-label { position: absolute; top: calc(27.2% + 22px); left: 50.5%; transform: translateX(-50%); text-align: center; white-space: nowrap; }
.korea-label b { display: grid; justify-items: center; gap: 1px; min-width: 106px; padding: 5px 10px 6px; border: 1px solid rgba(137,179,255,.12); border-radius: 5px; background: rgba(9,24,43,.06); backdrop-filter: blur(2px); line-height: 1; }
.korea-label b::before, .korea-label b::after { display: none; }
.korea-label span { color: #4b8df8; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.korea-label small { color: rgba(255,255,255,.86); font-size: 7px; font-weight: 600; letter-spacing: .26em; }
@keyframes route-flow { to { stroke-dashoffset: -80; } }
@keyframes korea-pulse { 0% { opacity: 1; transform: scale(.7); } 80%, 100% { opacity: 0; transform: scale(2.2); } }

.milestone-line {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 16px 0 0;
  padding: 42px 0 0;
  border-top: 1px solid #4a4e55;
  list-style: none;
}
.milestone-line::before { display: none; }
.milestone-line li { position: relative; min-height: 78px; padding-right: 18px; border-right: 1px solid #3b3f46; }
.milestone-line li + li { padding-left: 18px; }
.milestone-line li:last-child { border-right: 0; }
.milestone-line time { display: block; margin-bottom: 8px; color: var(--white); font: 600 28px/1 var(--display); }
.milestone-line span { color: #9fa4ac; font-size: 11px; line-height: 1.4; text-transform: uppercase; }

.brand-concept {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 9vw;
  margin: 150px auto 0;
}
.concept-intro h3 { margin: 0; font: 600 clamp(40px, 4.5vw, 67px)/.96 var(--display); letter-spacing: -.045em; }
.value-carousel { position: relative; min-width: 0; }
.value-viewport { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: grab; touch-action: pan-y; }
.value-viewport.is-dragging { cursor: grabbing; }
.value-track { display: flex; transition: transform .58s var(--ease); will-change: transform; }
.value-track article { position: relative; min-height: 350px; display: flex; flex: 0 0 100%; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 34px 40px 78px; background: #13233a; isolation: isolate; }
.value-track article::before { position: absolute; inset: 0; z-index: -2; background: var(--value-image) center/cover no-repeat; content: ""; transform: scale(1); transition: transform .8s var(--ease); }
.value-track article::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,16,28,.08) 10%, rgba(8,16,28,.3) 48%, rgba(8,16,28,.88) 100%); content: ""; }
.value-track article:hover::before { transform: scale(1.06); }
.value-reliable { --value-image: url("assets/brand-value-reliable.png"); }
.value-accessible { --value-image: url("assets/brand-value-accessible.png"); }
.value-practical { --value-image: url("assets/brand-value-practical.png"); }
.value-sustainable { --value-image: url("assets/brand-value-sustainable.png"); }
.value-partnership { --value-image: url("assets/brand-value-partnership.png"); }
.value-global { --value-image: url("assets/brand-value-global.png"); }
.value-track span { color: var(--white); font: 600 clamp(40px, 4.6vw, 66px)/.95 var(--display); letter-spacing: -.045em; text-shadow: 0 1px 18px rgba(0,0,0,.2); }
.value-track p { max-width: 480px; margin: 20px 0 0; color: rgba(255,255,255,.86); font-size: 16px; }
.carousel-controls { position: absolute; inset: 0; z-index: 5; background: linear-gradient(180deg, transparent 72%, rgba(7,15,27,.4)); pointer-events: none; }
.carousel-arrows { position: absolute; inset: 0; pointer-events: none; }
.carousel-arrows button { position: absolute; top: 50%; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(7,15,27,.16); backdrop-filter: blur(3px); cursor: pointer; opacity: .56; transform: translateY(-50%); transition: border-color .25s ease, background-color .25s ease, opacity .25s ease, transform .25s ease; pointer-events: auto; }
.carousel-arrows button:first-child { left: 18px; }
.carousel-arrows button:last-child { right: 18px; }
.carousel-arrows button:hover, .carousel-arrows button:focus-visible { border-color: rgba(255,255,255,.82); background: rgba(7,15,27,.38); opacity: 1; outline: none; }
.carousel-arrows button:first-child:hover { transform: translate(-3px,-50%); }
.carousel-arrows button:last-child:hover { transform: translate(3px,-50%); }
.carousel-icon { width: 28px; height: 28px; display: block; object-fit: contain; }
.carousel-dots { position: absolute; right: 24px; bottom: 18px; display: flex; gap: 10px; pointer-events: auto; }
.carousel-dots button { width: 10px; height: 10px; padding: 0; border: 1px solid #8a8d8f; border-radius: 50%; background: transparent; cursor: pointer; }
.carousel-dots button[aria-current="true"] { border-color: var(--blue); background: var(--blue); transform: scale(1.2); }
.carousel-dots button:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.brand-claim { max-width: 1160px; margin: 150px auto 0; }
.brand-claim blockquote { margin: 0; font: 400 clamp(36px, 4.6vw, 70px)/1.08 var(--display); letter-spacing: -.035em; }
.variable-proximity { position: relative; cursor: default; }
.proximity-word { display: inline-block; white-space: nowrap; }
.proximity-letter { display: inline-block; transform-origin: 50% 72%; will-change: font-variation-settings, font-weight, transform; }
.keyword-line { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 74px; border-top: 1px solid var(--line); }
.keyword-line span { padding: 20px 0; border-right: 1px solid var(--line); color: #555960; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.keyword-line span:not(:first-child) { padding-left: 18px; }
.keyword-line span:last-child { border-right: 0; }

.products-section { padding-top: 110px; background: var(--cloud); }
.products-layout { display: grid; grid-template-columns: 220px 1fr; gap: 60px; }
.system-rail { position: sticky; top: 112px; align-self: start; }
.system-rail > p { margin: 0 0 28px; color: var(--gray); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.system-rail ol { position: relative; margin: 0; padding: 0; list-style: none; }
.system-rail ol::before { position: absolute; top: 8px; bottom: 8px; left: 4px; width: 1px; background: #c9cdd2; content: ""; }
.system-rail li { position: relative; }
.system-rail a { display: flex; align-items: center; gap: 16px; min-height: 48px; color: #868a90; font-size: 12px; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; transition: color .25s ease; }
.system-rail i { position: relative; z-index: 1; width: 9px; height: 9px; border: 1px solid #aeb3b9; border-radius: 50%; background: var(--cloud); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.system-rail a.is-active { color: var(--blue); font-weight: 700; }
.system-rail a.is-active i { border-color: var(--blue); background: var(--blue); transform: scale(1.25); }

.product-list { border-top: 1px solid #cbd0d5; }
.product-world {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, .72fr);
  gap: 54px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid #cbd0d5;
  scroll-margin-top: 90px;
  transition: background-color .32s ease, padding-inline .32s var(--ease);
}
.product-world:hover { padding-inline: 26px; background: var(--white); }
.product-content h3 { margin: 0 0 20px; font: 600 clamp(43px, 4.4vw, 70px)/.95 var(--display); letter-spacing: -.045em; }
.product-content > p:not(.micro-label) { max-width: 560px; margin: 0 0 32px; color: #5b5f66; font-size: 17px; }
.product-content .micro-label { margin-bottom: 18px; font-size: 16px; }
.product-content ul { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; padding: 0; font-size: 13px; list-style: none; }
.product-content li { position: relative; padding-left: 14px; color: #383c42; font-size: inherit; }
.product-content li::before { position: absolute; left: 0; top: .65em; width: 4px; height: 4px; background: var(--blue); content: ""; }
.product-visual { position: relative; width: 100%; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; border: 1px solid #cbd0d5; background: #e7eaed; transition: border-color .3s ease, transform .35s var(--ease); }
.product-world:hover .product-visual { border-color: var(--blue); transform: translateY(-6px); }
.product-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform .7s var(--ease); }
.product-world:hover .product-visual img { transform: scale(1.035); }

.why-section { padding-top: 155px; padding-bottom: 145px; color: var(--white); background: var(--ink); }
.why-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.why-intro .eyebrow { color: #85a9ff; padding-top: 10px; }
.why-intro > p:last-child { grid-column: 2; max-width: 540px; margin: 30px 0 0; color: #afb3ba; font-size: 18px; }
.capability-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 110px; border-top: 1px solid #3a3d43; }
.capability { min-height: 430px; padding: 32px 42px 30px 0; border-right: 1px solid #3a3d43; }
.capability + .capability { padding-left: 42px; }
.capability:last-child { border-right: 0; }
.capability > span { color: #85a9ff; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.capability h3 { margin: 90px 0 22px; font: 600 clamp(30px, 3vw, 45px)/1 var(--display); letter-spacing: -.03em; }
.capability p { color: #b5b8bd; }
.capability ul { margin: 34px 0 0; padding: 22px 0 0; border-top: 1px solid #3a3d43; list-style: none; }
.capability li { margin: 8px 0; color: #e7e8ea; font-size: 13px; }

.common-wish { position: relative; min-height: 780px; display: grid; align-items: center; padding: 120px max(48px, calc((100vw - 1440px) / 2)); color: var(--white); background: var(--blue); overflow: hidden; }
.common-wish-inner { position: relative; z-index: 2; max-width: 1120px; }
.common-wish .eyebrow { color: #c6d7ff; }
.common-wish h2 { max-width: 1000px; }
.common-wish-inner > p:not(.eyebrow) { max-width: 650px; margin: 40px 0 70px; color: #d6e1fa; font-size: 19px; }
.day-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 0 70px;
  border-top: 1px solid rgba(255,255,255,.55);
}
.day-journey::before { display: none; }
.day-journey div { display: grid; gap: 3px; padding: 24px 24px 20px 0; border-right: 1px solid rgba(255,255,255,.3); }
.day-journey div + div { padding-left: 24px; }
.day-journey div:last-child { border-right: 0; }
.day-journey time { color: #bfd0f7; font-size: 10px; letter-spacing: .14em; }
.day-journey strong { font: 600 27px/1.15 var(--display); }
.day-journey span { color: #d6e1fa; font-size: 12px; }
.contact-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.45); }
.contact-row div { display: grid; gap: 6px; }
.contact-row span { color: #c6d7ff; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-row strong { font-size: 18px; font-weight: 500; }
.contact-row a { display: flex; gap: 28px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.8); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.contact-row .link-icon { width: 40px; height: 40px; margin-top: -8px; opacity: .9; }
.contact-row a:hover .link-icon { filter: brightness(0); opacity: 1; transform: translateY(-3px); }

.site-footer { min-height: 190px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; padding: 50px max(48px, calc((100vw - 1440px) / 2)); background: var(--white); }
.site-footer > p { margin: 0; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer > p:nth-child(2) { text-align: center; }
.site-footer .footer-note { color: var(--gray); text-align: right; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .48s var(--ease), transform .48s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 64px); }
  .site-header { padding-inline: 32px; }
  .hero { grid-template-columns: .9fr 1.1fr; padding-left: 32px; }
  .hero-copy { padding-right: 28px; }
  .hero h1 { font-size: clamp(62px, 8.3vw, 92px); }
  .section, .why-section, .common-wish, .site-footer { padding-left: 32px; padding-right: 32px; }
  .brand-grid { gap: 7vw; }
  .products-layout { grid-template-columns: 165px 1fr; gap: 36px; }
  .product-world { grid-template-columns: minmax(300px, 1fr) 240px; gap: 32px; }
}

@media (max-width: 820px) {
  .site-header { height: 68px; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font: 700 10px/1 var(--body);
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    justify-content: flex-end;
  }
  .menu-icon { width: 24px; display: grid; gap: 6px; }
  .menu-icon i { height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 80px 32px;
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; }
  .gooey-nav-list { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0; }
  .gooey-nav-list li::after, .gooey-effect { display: none; }
  .gooey-nav-list li.active a { color: var(--blue); }
  .site-nav a { font: 600 clamp(44px, 9vw, 72px)/1 var(--display); letter-spacing: -.04em; text-transform: none; }

  .hero { min-height: 850px; height: auto; grid-template-columns: 1fr; grid-template-rows: auto 420px; padding: 136px 32px 0; }
  .hero-copy { padding: 0 0 62px; }
  .hero h1 { font-size: clamp(62px, 14vw, 104px); }
  .hero-visual { margin: 0 -32px; }
  .hero-visual::after { width: 100%; height: 14%; background: linear-gradient(180deg, var(--white), transparent); }
  .hero-visual figcaption { right: 24px; bottom: 24px; }
  .hero-rule { left: 32px; width: calc(100% - 32px); }
  .hero-side-note { display: none; }
  .section { padding-top: 110px; padding-bottom: 110px; }
  .section-heading, .why-intro, #brand .section-heading { grid-template-columns: 1fr; gap: 10px; margin-bottom: 70px; }
  #brand-title { white-space: normal; font-size: clamp(46px, 9vw, 68px); }
  .section-heading h2, .why-intro h2, .common-wish h2 { font-size: clamp(50px, 10.5vw, 78px); }
  .spirit-statement { width: calc(100vw - 64px); left: 0; margin: 0 0 90px; }
  .spirit-traits { grid-template-columns: 1fr 1fr; }
  .spirit-traits span { min-height: 64px; padding-inline: 10px; border-bottom: 1px solid rgba(255,255,255,.25); }
  .spirit-traits span:nth-child(2) { border-right: 0; }
  .brand-grid { grid-template-columns: 1fr; gap: 55px; padding-left: 0; }
  .option-wheel { height: 300px; }
  .global-view { min-height: 0; grid-template-columns: 1fr; gap: 60px; margin: 100px -32px 0; padding: 70px 32px; }
  .globe { height: 330px; }
  .milestone-line { grid-template-columns: 1fr; margin: 0; padding: 0 0 0 28px; border-top: 0; border-left: 1px solid #4a4e55; }
  .milestone-line::before { top: 0; left: -2px; width: 3px; height: 20%; }
  .milestone-line li, .milestone-line li + li { min-height: 88px; padding: 0 0 26px 20px; border-right: 0; }
  .milestone-line time { font-size: 24px; }
  .brand-concept { grid-template-columns: 1fr; gap: 60px; margin-top: 100px; }
  .value-track article { min-height: 320px; }
  .brand-claim { margin-top: 100px; }
  .keyword-line { grid-template-columns: 1fr 1fr; }
  .keyword-line span:nth-child(2) { border-right: 0; }
  .keyword-line span:nth-child(n+3) { border-top: 1px solid var(--line); }
  .products-layout { display: block; }
  .system-rail { z-index: 20; top: 68px; margin: 0 -32px 36px; padding: 8px 32px; background: rgba(243,245,247,.96); border-block: 1px solid #d5d9de; overflow: hidden; backdrop-filter: blur(14px); }
  .system-rail > p { display: none; }
  .system-rail ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; width: 100%; }
  .system-rail ol::before, .system-rail i { display: none; }
  .system-rail a { justify-content: center; min-height: 42px; }
  .system-rail a.is-active { box-shadow: inset 0 -2px var(--blue); }
  .product-world { min-height: 0; grid-template-columns: 1fr; padding: 58px 0; }
  .product-world:hover { padding-inline: 0; }
  .product-visual { grid-column: 1; width: min(100%, 520px); }
  .why-intro > p:last-child { grid-column: auto; }
  .capability-list { grid-template-columns: 1fr; margin-top: 75px; }
  .capability, .capability + .capability { min-height: 0; padding: 34px 0 50px; border-right: 0; border-bottom: 1px solid #3a3d43; }
  .capability h3 { margin-top: 48px; }
  .common-wish { min-height: 700px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p:nth-child(2) { text-align: right; }
  .site-footer .footer-note { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 520px) {
  .site-header { padding-inline: 20px; }
  .brand img { width: 100px; }
  .brand span { font-size: 9px; }
  .menu-label { display: none; }
  .hero { min-height: 760px; grid-template-rows: auto 300px; padding: 124px 20px 0; }
  .hero h1 { max-width: 100%; font-size: clamp(52px, 16.5vw, 72px); }
  .hero h1 span { white-space: normal; }
  .hero-intro { font-size: 16px; }
  .hero-visual { margin: 0 -20px; }
  .hero-visual figcaption { right: 12px; max-width: calc(100% - 24px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero-rule { left: 20px; width: calc(100% - 20px); }
  .section, .why-section, .common-wish, .site-footer { padding-left: 20px; padding-right: 20px; }
  .section-heading h2, .why-intro h2, .common-wish h2 { font-size: 50px; }
  .brand-narrative .lead { font-size: 24px; }
  .spirit-statement { width: calc(100vw - 40px); padding-inline: 20px; }
  .spirit-statement blockquote { font-size: 39px; }
  .spirit-traits span { padding-inline: 8px; font-size: 14px; }
  .global-view { margin-inline: -20px; padding-inline: 20px; }
  .global-copy h3 { font-size: 43px; }
  .global-facts dt { font-size: 48px; }
  .globe { height: 245px; }
  .korea-label span { display: none; }
  .value-track article { min-height: 300px; padding: 28px 24px 76px; }
  .value-track span { font-size: 44px; }
  .carousel-arrows button { width: 40px; height: 40px; }
  .carousel-arrows button:first-child { left: 8px; }
  .carousel-arrows button:last-child { right: 8px; }
  .carousel-icon { width: 24px; height: 24px; }
  .carousel-dots { right: 18px; bottom: 16px; }
  .keyword-line { grid-template-columns: 1fr; }
  .keyword-line span, .keyword-line span:nth-child(2) { padding-left: 0; border-right: 0; border-top: 1px solid var(--line); }
  .system-rail { margin-inline: -20px; padding-inline: 20px; }
  .product-world { grid-template-columns: 1fr; gap: 16px; }
  .product-visual { grid-column: 1; width: 100%; height: 220px; }
  .product-content h3 { font-size: 43px; }
  .product-content ul { font-size: 13px; }
  .common-wish { min-height: 0; padding-top: 100px; padding-bottom: 100px; }
  .common-wish-inner > p:not(.eyebrow) { margin-bottom: 50px; font-size: 17px; }
  .day-journey { grid-template-columns: 1fr; margin-bottom: 58px; border-top: 0; border-left: 1px solid rgba(255,255,255,.55); }
  .day-journey::before { top: 0; left: -3px; width: 5px; height: 33.333%; }
  .day-journey div, .day-journey div + div { min-height: 96px; padding: 16px 0 16px 22px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
  .contact-row { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; gap: 26px; }
  .site-footer > p:nth-child(2), .site-footer .footer-note { grid-column: auto; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .skip-link, .menu-toggle { display: none !important; }
  .site-header { position: static; height: 68px; padding: 0 32px; border-bottom: 1px solid var(--line); }
  .hero { min-height: 720px; height: auto; padding-top: 0; }
  .system-rail { position: static; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
