@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #05070a;
  background: #fff;
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  word-break: keep-all;
}
html[data-language="en"] :where(h1,h2,h3,p,a,button,span,strong,.lead,.description,.section-head,.detail-grid,.mapping-head,.solution-orb),
html[data-language="ja"] :where(h1,h2,h3,p,a,button,span,strong,.lead,.description,.section-head,.detail-grid,.mapping-head,.solution-orb),
html[data-language="zh-CN"] :where(h1,h2,h3,p,a,button,span,strong,.lead,.description,.section-head,.detail-grid,.mapping-head,.solution-orb) {
  word-break: normal;
  overflow-wrap: anywhere;
}
html[data-language="ja"] body,
html[data-language="zh-CN"] body {
  line-break: auto;
}
a { color: inherit; text-decoration: none; }
.arrow-next::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: -3px;
}
.mobile-panel {
  position: fixed;
  inset: 74px 0 auto;
  z-index: 50;
  display: grid;
  max-height: calc(100vh - 74px);
  transform: translateY(-130%);
  gap: 4px;
  overflow-y: auto;
  border-bottom: 1px solid #c6c6c6;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: #fff;
  padding: 20px 24px;
  color: #161616;
  transition: transform .2s ease;
}
.mobile-panel.is-open {
  transform: translateY(0);
}
.mobile-panel a,
.mobile-panel button {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 400;
  letter-spacing: .16px;
  text-align: left;
}
.mobile-panel > a,
.mobile-solution,
.mobile-core-tech {
  box-shadow: inset 0 -1px 0 #c6c6c6;
}
.mobile-panel > a,
.mobile-solution-trigger,
.mobile-core-tech-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.mobile-solution-items,
.mobile-core-tech-items {
  display: none;
  padding-bottom: 8px;
}
.mobile-solution.is-open .mobile-solution-items,
.mobile-core-tech.is-open .mobile-core-tech-items {
  display: grid;
}
.mobile-solution-items a,
.mobile-core-tech-items a {
  padding: 8px 0 8px 16px;
  font-size: 14px;
}
.mobile-arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(135deg);
  transition: transform .2s ease;
}
.mobile-solution.is-open .mobile-arrow,
.mobile-core-tech.is-open .mobile-arrow {
  transform: rotate(315deg);
}
.mobile-panel a:hover,
.mobile-panel button:hover,
.mobile-panel .is-current {
  color: #388BFD;
}
.section-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  z-index: 45;
  display: grid;
  gap: .75rem;
  transform: translateY(-50%);
}
.section-nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: #525252;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}
.section-nav-link span {
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
}
.section-nav-link:hover span,
.section-nav-link.is-active span {
  opacity: 1;
  transform: translateX(0);
}
.section-nav-link i {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #525252;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(5,7,10,.12);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.section-nav-link.is-active i {
  border-color: #388BFD;
  background: #388BFD;
  transform: scale(1.18);
}
.hero {
  display: flex;
  min-height: 68vh;
  align-items: center;
  justify-content: center;
  padding: 178px 24px 92px;
  color: #161616;
  background: #fff;
}
.hero > div {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  margin: 0 0 20px;
  color: #388BFD;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1 {
  margin: 0 auto;
  max-width: 920px;
  font-size: clamp(36px, 5.8vw, 64px);
  font-weight: 500;
  line-height: 1.17;
}
.lead {
  margin: 28px auto 0;
  max-width: 780px;
  color: #161616;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.55;
}
.description {
  margin: 18px auto 0;
  max-width: 760px;
  color: #525252;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
}
.hero-media {
  width: min(80%, 896px);
  margin: clamp(28px, 3.5vw, 44px) auto 0;
}
.hero-media img,
.hero-media video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-media video {
  clip-path: inset(0 1px 0 0);
}
.tech-menu {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}
.tech-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 0 16px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.tech-menu a span {
  color: #69a7ff;
  font-size: 12px;
}
.tech-menu a:hover,
.tech-menu a.is-current {
  border-color: #69a7ff;
  background: rgba(56,139,253,.12);
  color: #fff;
}
.content,
.mapping {
  padding: 92px 24px;
}
.content > *,
.mapping > * {
  max-width: 1440px;
}
.content {
  display: grid;
  justify-items: center;
}
.content > .section-head,
.content > .detail-grid {
  width: 100%;
}
.section-head {
  max-width: 760px;
  margin-bottom: 72px;
  justify-self: center;
  text-align: center;
}
h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.19;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.detail-grid article {
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  padding: 32px;
  background: #fff;
}
.detail-grid h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}
.detail-grid p {
  margin: 24px 0 0;
  color: #525252;
  font-size: 20px;
  line-height: 1.4;
}
.mapping p {
  margin: 24px 0 0;
  color: #525252;
}
.mapping {
  background: #fff;
}
.mapping {
  padding-bottom: 160px;
}
.mapping {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
.mapping > .mapping-head,
.mapping > .solution-list {
  width: 100%;
  max-width: 1440px;
}
.mapping > .mapping-head {
  display: block;
  max-width: 820px;
  text-align: center;
}
.mapping > .mapping-head .eyebrow {
  margin: 0 0 20px;
  color: #388BFD;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.mapping > .mapping-head h2 {
  margin: 0;
  color: #05070a;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.19;
}
.mapping > .mapping-head p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px auto 0;
  color: #525252;
  font-size: 18px;
  line-height: 1.65;
}
.solution-list {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 7vw, 120px);
}
.solution-orb {
  position: relative;
  display: grid;
  width: clamp(190px, 18vw, 240px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 50px rgba(5,7,10,.12);
  transform: translateZ(0);
  transition: transform .28s ease, box-shadow .28s ease;
}
.solution-orb::before {
  content: none;
  position: absolute;
  inset: 0;
  background: var(--solution-image) center / cover no-repeat;
  transform: scale(1.02);
  transition: transform .28s ease;
}
.solution-orb-bg,
.solution-orb-bg img,
.solution-orb-dim {
  position: absolute;
  inset: 0;
}
.solution-orb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .28s ease;
}
.solution-orb-dim {
  background: rgba(5,7,10,.54);
  transition: background-color .28s ease;
}
.solution-orb strong {
  position: relative;
  z-index: 1;
  width: min(78%, 180px);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.25;
}
.solution-orb:hover,
.solution-orb:focus-visible {
  box-shadow: 0 30px 70px rgba(5,7,10,.18);
  transform: scale(1.12);
}
.solution-orb:hover .solution-orb-bg img,
.solution-orb:focus-visible .solution-orb-bg img {
  transform: scale(1.1);
}
.solution-orb:hover .solution-orb-dim,
.solution-orb:focus-visible .solution-orb-dim {
  background: rgba(5,7,10,.42);
}
.solution-pill {
  display: none;
  align-items: center;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid #dfe3ea;
  border-radius: 999px;
  background: #fff;
  padding: 0 20px;
  font-weight: 600;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.solution-pill:hover {
  border-color: #388BFD;
  background: #ebf3ff;
  color: #0263e8;
}
.tech-contact {
  display: flex;
  min-height: 440px;
  align-items: center;
  padding: 96px 24px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4,7,10,.96), rgba(8,32,36,.9)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px),
    #071012;
}
.tech-contact > div {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.tech-contact h2 {
  max-width: 760px;
  color: #fff;
}
.tech-contact p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(244,244,244,.72);
  font-size: 18px;
  line-height: 1.65;
}
.tech-contact-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 158px;
  margin-top: 36px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 0 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.tech-contact-link .arrow-next {
  display: grid;
  width: 14.14px;
  height: 14.14px;
  place-items: center;
}
.tech-contact-link:hover,
.tech-contact-link:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--cds-text-primary, #161616);
}
@media (max-width: 1023px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .solution-list {
    gap: 28px;
  }
  .solution-orb {
    width: clamp(170px, 32vw, 220px);
  }
  .section-nav {
    right: 16px;
  }
  .section-nav-link span {
    display: none;
  }
  body.section-nav-moving .section-nav-link.is-active span {
    display: inline;
  }
}

@media (max-width: 640px) {
  main,
  section,
  .hero > div,
  .section-head,
  .detail-grid,
  .detail-grid article,
  .mapping > .mapping-head,
  .solution-list,
  .solution-orb,
  .tech-contact > div,
  h1,
  h2,
  h3,
  .lead,
  .description,
  .mapping p,
  .tech-contact p,
  .mobile-panel a,
  .mobile-panel button {
    min-width: 0;
    max-width: 100%;
  }
  html[data-language="ja"] :where(h1,h2,h3,p,a,button,span,strong,.lead,.description,.section-head,.detail-grid,.mapping-head,.solution-orb,.mobile-panel a,.mobile-panel button),
  html[data-language="zh-CN"] :where(h1,h2,h3,p,a,button,span,strong,.lead,.description,.section-head,.detail-grid,.mapping-head,.solution-orb,.mobile-panel a,.mobile-panel button) {
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: auto;
  }
  h1 {
    font-size: clamp(34px, 10vw, 36px);
    line-height: 1.12;
  }
  .lead { font-size: 16px; }
  .description { font-size: 17px; }
  .hero-media {
    width: calc(100vw - 32px);
    margin-top: 32px;
  }
  .hero-media video {
    clip-path: inset(0 2px 2px 0);
  }
  .mapping { grid-template-columns: 1fr; }
  .solution-list {
    gap: 22px;
  }
  .solution-orb {
    width: min(72vw, 220px);
  }
  .content {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .section-head {
    margin-bottom: 48px;
  }
  .detail-grid article {
    padding: 24px;
  }
  .detail-grid h3 {
    font-size: 20px;
  }
  .detail-grid p {
    font-size: 16px;
  }
  .tech-contact {
    min-height: 360px;
    padding: 72px 24px;
  }
  .tech-contact p:not(.eyebrow) {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: 68vh;
    padding: 188px 48px 96px;
  }
  .content,
  .mapping,
  .tech-contact {
    padding: 128px 48px;
  }
  .mapping {
    padding-bottom: 240px;
  }
}

@media (min-width: 1280px) {
  .hero {
    padding-left: 72px;
    padding-right: 72px;
  }
  .content,
  .mapping,
  .tech-contact {
    padding-left: 72px;
    padding-right: 72px;
  }
}
