/* 애플풍 홈 화면의 색상, 타이포그래피, 모션 토큰을 정의함 by JS */
:root {
  --nx-apple-blue: #0071e3;
  --nx-apple-blue-dark: #005bb5;
  --nx-apple-ink: #1d1d1f;
  --nx-apple-muted: #6e6e73;
  --nx-apple-soft: #f5f5f7;
  --nx-apple-line: rgba(0, 0, 0, 0.08);
  --nx-apple-glass: rgba(255, 255, 255, 0.72);
  --nx-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --nx-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --nx-header-height: 68px;
  --nx-shell: 1240px;
}

html.nx-route-home {
  scroll-padding-top: 84px;
}

html.nx-route-home body {
  color: var(--nx-apple-ink);
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

html.nx-route-home .nx-shell {
  width: min(calc(100% - 64px), var(--nx-shell));
}

/* 상단 내비게이션을 가벼운 반투명 재료로 표현함 by JS */
html.nx-route-home .nx-header {
  height: var(--nx-header-height);
  color: var(--nx-apple-ink);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(0, 0, 0, 0.055);
  box-shadow: none;
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  transition: background-color 220ms var(--nx-ease-out), box-shadow 220ms var(--nx-ease-out);
}

html.nx-route-home .nx-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 36px rgba(0, 0, 0, 0.055);
}

html.nx-route-home .nx-header__inner {
  width: min(calc(100% - 64px), 1320px);
}

html.nx-route-home .nx-brand {
  min-width: 196px;
}

html.nx-route-home .nx-brand__wordmark {
  color: var(--nx-apple-ink);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

html.nx-route-home .nx-brand__ko {
  margin-top: 5px;
  color: rgba(29, 29, 31, 0.48);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

html.nx-route-home .nx-nav__topline > a {
  padding: 0 19px;
  color: rgba(29, 29, 31, 0.78);
  font-size: 13px;
  font-weight: 600;
}

html.nx-route-home .nx-nav__topline > a::after {
  right: 19px;
  bottom: 12px;
  left: 19px;
  height: 1px;
  background: var(--nx-apple-blue);
  transition: transform 180ms var(--nx-ease-out);
}

html.nx-route-home .nx-nav__item:hover .nx-nav__topline > a,
html.nx-route-home .nx-nav__item:focus-within .nx-nav__topline > a {
  color: var(--nx-apple-ink);
}

html.nx-route-home .nx-nav__item.is-active .nx-nav__topline > a {
  color: var(--nx-apple-blue);
}

html.nx-route-home .nx-nav__dropdown {
  top: calc(var(--nx-header-height) - 7px);
  padding: 14px;
  color: var(--nx-apple-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  transform: translate(-50%, -6px) scale(0.97);
  transform-origin: 50% 0;
  transition: opacity 180ms var(--nx-ease-out), transform 180ms var(--nx-ease-out), visibility 180ms;
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
}

html.nx-route-home .nx-nav__dropdown--right {
  transform: translate(0, -6px) scale(0.97);
  transform-origin: 100% 0;
}

html.nx-route-home .nx-nav__item:hover .nx-nav__dropdown,
html.nx-route-home .nx-nav__item:focus-within .nx-nav__dropdown {
  transform: translate(-50%, 0) scale(1);
}

html.nx-route-home .nx-nav__item:hover .nx-nav__dropdown--right,
html.nx-route-home .nx-nav__item:focus-within .nx-nav__dropdown--right {
  transform: translate(0, 0) scale(1);
}

html.nx-route-home .nx-nav__eyebrow {
  color: var(--nx-apple-blue);
}

html.nx-route-home .nx-nav__dropdown a {
  border-radius: 10px;
  color: #4a4a4f;
  transition: color 140ms ease, background-color 140ms ease;
}

html.nx-route-home .nx-nav__dropdown a:hover,
html.nx-route-home .nx-nav__dropdown a:focus {
  color: var(--nx-apple-blue);
  background: #f2f7fd;
}

html.nx-route-home .nx-header__contact {
  width: 126px;
  height: 38px;
  margin-left: 14px;
  padding: 0 15px;
  color: #ffffff !important;
  background: var(--nx-apple-blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition: background-color 160ms ease, transform 140ms var(--nx-ease-out);
}

html.nx-route-home .nx-header__contact:hover,
html.nx-route-home .nx-header__contact:focus {
  background: var(--nx-apple-blue-dark);
  transform: none;
}

html.nx-route-home .nx-header__contact:active {
  transform: scale(0.97);
}

/* 히어로를 밝은 제품 소개 장면과 명확한 정보 계층으로 구성함 by JS */
html.nx-route-home .nx-hero {
  min-height: max(760px, 100svh);
  color: var(--nx-apple-ink);
  background: #edf3f8;
  isolation: isolate;
}

html.nx-route-home .nx-hero__media {
  inset: -10px;
  background-image: url("/assets/img/modern/nexhome-optical-hero.webp");
  background-position: center center;
  background-size: cover;
  transform: translate3d(0, 0, 0) scale(1.01);
  transform-origin: center;
  animation: nx-apple-hero-reveal 1100ms var(--nx-ease-out) both;
  will-change: transform;
}

html.nx-route-home .nx-hero__shade {
  background:
    linear-gradient(90deg, rgba(247, 250, 252, 0.98) 0%, rgba(247, 250, 252, 0.9) 31%, rgba(247, 250, 252, 0.22) 58%, rgba(3, 19, 35, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%, rgba(241, 246, 250, 0.12));
}

html.nx-route-home .nx-hero__motion {
  display: none;
}

html.nx-route-home .nx-hero__content {
  z-index: 2;
  padding-top: calc(var(--nx-header-height) + 72px);
  padding-bottom: 122px;
}

html.nx-route-home .nx-kicker {
  color: var(--nx-apple-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  animation: nx-apple-rise 700ms 120ms var(--nx-ease-out) both;
}

html.nx-route-home .nx-kicker span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

html.nx-route-home .nx-hero h1 {
  max-width: 760px;
  margin-top: 26px;
  color: var(--nx-apple-ink);
  font-size: clamp(50px, 5.25vw, 76px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
  animation: nx-apple-rise 820ms 180ms var(--nx-ease-out) both;
}

html.nx-route-home .nx-hero h1 strong {
  display: inline-block;
  margin-top: 9px;
  color: var(--nx-apple-blue);
  font-weight: 720;
  letter-spacing: -0.06em;
}

html.nx-route-home .nx-hero__lead {
  max-width: 660px;
  margin-top: 30px !important;
  color: rgba(29, 29, 31, 0.68);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.012em;
  animation: nx-apple-rise 780ms 250ms var(--nx-ease-out) both;
}

html.nx-route-home .nx-hero__actions {
  gap: 12px;
  margin-top: 36px;
  animation: nx-apple-rise 760ms 310ms var(--nx-ease-out) both;
}

html.nx-route-home .nx-button {
  width: auto;
  min-width: 154px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 140ms var(--nx-ease-out);
}

html.nx-route-home .nx-button:hover,
html.nx-route-home .nx-button:focus {
  transform: none;
}

html.nx-route-home .nx-button:active {
  transform: scale(0.97);
}

html.nx-route-home .nx-button--primary {
  color: #ffffff !important;
  background: var(--nx-apple-blue);
  box-shadow: 0 9px 26px rgba(0, 113, 227, 0.18);
}

html.nx-route-home .nx-button--primary:hover,
html.nx-route-home .nx-button--primary:focus {
  background: var(--nx-apple-blue-dark);
}

html.nx-route-home .nx-button--outline {
  color: var(--nx-apple-ink) !important;
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(0, 0, 0, 0.11);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

html.nx-route-home .nx-button--outline:hover,
html.nx-route-home .nx-button--outline:focus {
  color: var(--nx-apple-blue) !important;
  border-color: rgba(0, 113, 227, 0.28);
  background: rgba(255, 255, 255, 0.88);
}

html.nx-route-home .nx-hero__capabilities {
  bottom: 34px;
  left: 32px;
  gap: 8px;
  color: rgba(29, 29, 31, 0.62);
  animation: nx-apple-rise 720ms 380ms var(--nx-ease-out) both;
}

html.nx-route-home .nx-hero__capabilities span {
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

html.nx-route-home .nx-hero__capabilities span::after {
  display: none !important;
}

html.nx-route-home .nx-hero__scroll {
  right: 32px;
  bottom: 34px;
  color: rgba(29, 29, 31, 0.46);
}

html.nx-route-home .nx-hero__scroll span {
  background: rgba(29, 29, 31, 0.34);
}

/* 운영 공지를 홈 화면의 얇은 정보 카드로 표현함 by JS */
html.nx-route-home .nx-managed-notice {
  color: var(--nx-apple-ink);
  background: rgba(248, 248, 250, 0.94);
  border-top: 1px solid var(--nx-apple-line);
  border-bottom: 1px solid var(--nx-apple-line);
}

html.nx-route-home .nx-managed-notice a {
  color: var(--nx-apple-blue);
}

/* 홈 섹션의 여백과 타이포그래피 계층을 정리함 by JS */
html.nx-route-home .nx-section {
  padding: 144px 0;
}

html.nx-route-home .nx-section-heading__eyebrow {
  margin-bottom: 18px;
  color: var(--nx-apple-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

html.nx-route-home .nx-section-heading h2,
html.nx-route-home .nx-strength__heading h2,
html.nx-route-home .nx-contact h2 {
  color: var(--nx-apple-ink);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 690;
  line-height: 1.12;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

html.nx-route-home .nx-section-heading--row {
  gap: 80px;
}

html.nx-route-home .nx-section-heading--row > p,
html.nx-route-home .nx-cases__lead > p {
  color: var(--nx-apple-muted);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: -0.015em;
}

/* 회사 소개와 핵심 역량을 넓은 카드 재료로 구성함 by JS */
html.nx-route-home .nx-intro {
  background: #ffffff;
}

html.nx-route-home .nx-intro__grid {
  gap: 110px;
}

html.nx-route-home .nx-intro__copy p {
  color: var(--nx-apple-muted);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.018em;
}

html.nx-route-home .nx-stats {
  margin-top: 84px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(250, 252, 255, 0.96), rgba(240, 245, 251, 0.88));
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(36, 55, 80, 0.08);
}

html.nx-route-home .nx-stats div {
  min-height: 170px;
  border-color: rgba(0, 0, 0, 0.06);
}

html.nx-route-home .nx-stats strong {
  color: var(--nx-apple-ink);
  font-size: 30px;
  font-weight: 690;
  letter-spacing: -0.035em;
}

html.nx-route-home .nx-stats span {
  color: var(--nx-apple-muted);
  font-size: 13px;
}

/* 솔루션 포트폴리오를 제품군 카드처럼 표현함 by JS */
html.nx-route-home .nx-business {
  background: var(--nx-apple-soft);
}

html.nx-route-home .nx-business__grid {
  gap: 18px;
  margin-top: 68px;
}

html.nx-route-home .nx-business-card {
  min-height: 330px;
  padding: 34px;
  color: var(--nx-apple-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 30px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.035);
  transition: transform 240ms var(--nx-ease-out), box-shadow 240ms var(--nx-ease-out), border-color 240ms ease;
}

html.nx-route-home .nx-business-card--featured {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 12%, rgba(99, 198, 255, 0.46), transparent 34%),
    linear-gradient(145deg, #0077e6, #085dbf 70%, #064a9a);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(0, 100, 205, 0.22);
}

html.nx-route-home .nx-business-card__number {
  color: rgba(29, 29, 31, 0.18);
  font-size: 58px;
  font-weight: 630;
  letter-spacing: -0.055em;
}

html.nx-route-home .nx-business-card--featured .nx-business-card__number {
  color: rgba(255, 255, 255, 0.3);
}

html.nx-route-home .nx-business-card__code {
  color: var(--nx-apple-blue);
  font-size: 10px;
  letter-spacing: 0.11em;
}

html.nx-route-home .nx-business-card--featured .nx-business-card__code,
html.nx-route-home .nx-business-card--featured h3,
html.nx-route-home .nx-business-card--featured p,
html.nx-route-home .nx-business-card--featured .nx-business-card__link {
  color: #ffffff;
}

html.nx-route-home .nx-business-card h3 {
  color: inherit;
  font-size: 25px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

html.nx-route-home .nx-business-card p {
  color: var(--nx-apple-muted);
  font-size: 15px;
  line-height: 1.72;
}

html.nx-route-home .nx-business-card__link {
  color: var(--nx-apple-blue);
}

/* 핵심 강점을 깊이감 있는 어두운 장면으로 분리함 by JS */
html.nx-route-home .nx-strength {
  overflow: hidden;
  color: #f5f5f7;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 113, 227, 0.32), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(31, 210, 191, 0.14), transparent 28%),
    #080a0e;
}

html.nx-route-home .nx-strength__grid {
  gap: 110px;
}

html.nx-route-home .nx-strength__heading .nx-section-heading__eyebrow {
  color: #69b6ff;
}

html.nx-route-home .nx-strength__heading h2 {
  color: #f5f5f7;
}

html.nx-route-home .nx-strength__heading > p:not(.nx-section-heading__eyebrow),
html.nx-route-home .nx-strength__list p {
  color: rgba(245, 245, 247, 0.62);
}

html.nx-route-home .nx-strength .nx-text-link {
  color: #70baff;
}

html.nx-route-home .nx-strength__list {
  border-top-color: rgba(255, 255, 255, 0.14);
}

html.nx-route-home .nx-strength__list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

html.nx-route-home .nx-strength__list > li > span {
  color: #70baff;
}

html.nx-route-home .nx-strength__list h3 {
  color: #f5f5f7;
  font-weight: 640;
  letter-spacing: -0.025em;
}

/* 탭과 솔루션 설명을 밝은 제품 상세 카드로 구성함 by JS */
html.nx-route-home .nx-solutions {
  background: #ffffff;
}

html.nx-route-home .nx-solution-tabs {
  width: fit-content;
  max-width: 100%;
  margin: 66px auto 22px;
  padding: 5px;
  overflow-x: auto;
  background: rgba(238, 238, 241, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.045);
  border-radius: 999px;
  scrollbar-width: none;
}

html.nx-route-home .nx-solution-tabs::-webkit-scrollbar {
  display: none;
}

html.nx-route-home .nx-solution-tabs button {
  min-height: 42px;
  padding: 0 18px;
  color: var(--nx-apple-muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 620;
  transition: color 160ms ease, background-color 180ms var(--nx-ease-out), box-shadow 180ms var(--nx-ease-out), transform 140ms var(--nx-ease-out);
}

html.nx-route-home .nx-solution-tabs button[aria-selected="true"] {
  color: var(--nx-apple-ink);
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.09);
}

html.nx-route-home .nx-solution-tabs button:active {
  transform: scale(0.97);
}

html.nx-route-home .nx-solution-panel {
  gap: 50px;
  padding: 58px;
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 113, 227, 0.1), transparent 34%),
    var(--nx-apple-soft);
  border: 1px solid rgba(0, 0, 0, 0.045);
  border-radius: 36px;
  overflow: hidden;
}

html.nx-route-home .nx-solution-panel__intro > span,
html.nx-route-home .nx-solution-panel__flow span {
  color: var(--nx-apple-blue);
}

html.nx-route-home .nx-solution-panel__intro h3 {
  color: var(--nx-apple-ink);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 680;
  letter-spacing: -0.045em;
}

html.nx-route-home .nx-solution-panel__intro p,
html.nx-route-home .nx-solution-panel__flow p {
  color: var(--nx-apple-muted);
}

html.nx-route-home .nx-solution-panel__flow {
  gap: 10px;
}

html.nx-route-home .nx-solution-panel__flow > div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.035);
}

/* 구축사례와 연혁을 읽기 쉬운 카드 묶음으로 구성함 by JS */
html.nx-route-home .nx-cases {
  background: var(--nx-apple-soft);
}

html.nx-route-home .nx-case-grid {
  gap: 18px;
  margin-top: 66px;
}

html.nx-route-home .nx-case {
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.035);
  transition: transform 240ms var(--nx-ease-out), box-shadow 240ms var(--nx-ease-out);
}

html.nx-route-home .nx-case__top span,
html.nx-route-home .nx-case__top b,
html.nx-route-home .nx-case .nx-text-link {
  color: var(--nx-apple-blue);
}

html.nx-route-home .nx-case h3 {
  color: var(--nx-apple-ink);
  font-weight: 670;
  letter-spacing: -0.035em;
}

html.nx-route-home .nx-case > p,
html.nx-route-home .nx-case dd {
  color: var(--nx-apple-muted);
}

html.nx-route-home .nx-project-timeline {
  margin-top: 26px;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
}

html.nx-route-home .nx-project-timeline time {
  color: var(--nx-apple-blue);
}

/* 상담 영역을 명확한 마지막 행동 유도 장면으로 구성함 by JS */
html.nx-route-home .nx-contact {
  padding: 130px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 10%, rgba(117, 201, 255, 0.72), transparent 30%),
    linear-gradient(135deg, #0068ce, #0050a8 64%, #063d78);
}

html.nx-route-home .nx-contact__grid {
  gap: 100px;
}

html.nx-route-home .nx-contact .nx-section-heading__eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

html.nx-route-home .nx-contact h2 {
  color: #ffffff;
}

html.nx-route-home .nx-contact__copy > p:not(.nx-section-heading__eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

html.nx-route-home .nx-button--dark {
  color: var(--nx-apple-blue) !important;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 30, 80, 0.2);
}

html.nx-route-home .nx-button--dark:hover,
html.nx-route-home .nx-button--dark:focus {
  color: var(--nx-apple-blue-dark) !important;
  background: #f7fbff;
}

html.nx-route-home .nx-contact__details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

html.nx-route-home .nx-contact__details div {
  border-color: rgba(255, 255, 255, 0.16);
}

html.nx-route-home .nx-contact__details span {
  color: rgba(255, 255, 255, 0.58);
}

html.nx-route-home .nx-contact__details a,
html.nx-route-home .nx-contact__details p {
  color: #ffffff;
}

html.nx-route-home .nx-footer {
  color: #f5f5f7;
  background: #080a0e;
}

html.nx-route-home .nx-footer .nx-brand__wordmark {
  color: #f5f5f7;
}

html.nx-route-home .nx-footer .nx-brand__ko,
html.nx-route-home .nx-footer__bottom {
  color: rgba(245, 245, 247, 0.48);
}

/* 스크롤 리빌과 그룹 스태거를 목적 있는 1회성 모션으로 제공함 by JS */
html.nx-route-home .nx-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition: opacity 680ms var(--nx-ease-out), transform 680ms var(--nx-ease-out);
  will-change: transform, opacity;
}

html.nx-route-home .nx-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

html.nx-route-home .nx-business-card:nth-child(2),
html.nx-route-home .nx-case:nth-child(2) {
  transition-delay: 55ms;
}

html.nx-route-home .nx-business-card:nth-child(3),
html.nx-route-home .nx-case:nth-child(3) {
  transition-delay: 110ms;
}

html.nx-route-home .nx-business-card:nth-child(4) {
  transition-delay: 55ms;
}

html.nx-route-home .nx-business-card:nth-child(5) {
  transition-delay: 110ms;
}

html.nx-route-home .nx-business-card:nth-child(6) {
  transition-delay: 165ms;
}

@media (hover: hover) and (pointer: fine) {
  html.nx-route-home .nx-business-card:hover,
  html.nx-route-home .nx-business-card:focus-visible,
  html.nx-route-home .nx-case:hover,
  html.nx-route-home .nx-case:focus-within {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.09);
  }
}

@keyframes nx-apple-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes nx-apple-hero-reveal {
  from {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(1.035);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.01);
  }
}

/* 태블릿과 모바일에서 읽기 흐름과 터치 조작을 유지함 by JS */
@media (max-width: 1100px) {
  :root {
    --nx-header-height: 64px;
  }

  html.nx-route-home .nx-header__inner,
  html.nx-route-home .nx-shell {
    width: min(calc(100% - 40px), var(--nx-shell));
  }

  html.nx-route-home .nx-menu-toggle {
    color: var(--nx-apple-ink);
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 999px;
  }

  html.nx-route-home .nx-nav {
    top: var(--nx-header-height);
    width: min(420px, 100%);
    height: calc(100dvh - var(--nx-header-height));
    min-height: calc(100dvh - var(--nx-header-height));
    max-height: calc(100dvh - var(--nx-header-height));
    padding: 12px 22px 28px;
    color: var(--nx-apple-ink);
    background: rgba(255, 255, 255, 0.96);
    border-top-color: rgba(0, 0, 0, 0.06);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.13);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

  html.nx-route-home .nx-nav__item {
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  html.nx-route-home .nx-nav__topline > a {
    color: var(--nx-apple-ink);
  }

  html.nx-route-home .nx-nav__expand::before,
  html.nx-route-home .nx-nav__expand::after {
    background: var(--nx-apple-blue);
  }

  html.nx-route-home .nx-nav__dropdown,
  html.nx-route-home .nx-nav__dropdown--right {
    color: var(--nx-apple-ink);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  html.nx-route-home .nx-nav__item:hover .nx-nav__dropdown,
  html.nx-route-home .nx-nav__item:focus-within .nx-nav__dropdown,
  html.nx-route-home .nx-nav__item:hover .nx-nav__dropdown--right,
  html.nx-route-home .nx-nav__item:focus-within .nx-nav__dropdown--right {
    transform: none;
  }

  html.nx-route-home .nx-nav__dropdown a {
    color: rgba(29, 29, 31, 0.58);
  }

  html.nx-route-home .nx-nav__dropdown a:hover,
  html.nx-route-home .nx-nav__dropdown a:focus {
    color: var(--nx-apple-blue);
    background: #f2f7fd;
  }

  html.nx-route-home .nx-header__contact {
    width: 100%;
    height: 48px;
    margin: 22px 0 0;
  }

  html.nx-route-home .nx-hero {
    min-height: 780px;
  }

  html.nx-route-home .nx-hero__media {
    background-position: 58% center;
  }

  html.nx-route-home .nx-hero__shade {
    background: linear-gradient(90deg, rgba(247, 250, 252, 0.98), rgba(247, 250, 252, 0.86) 46%, rgba(247, 250, 252, 0.34));
  }

  html.nx-route-home .nx-hero h1 {
    max-width: 660px;
  }

  html.nx-route-home .nx-section-heading--row,
  html.nx-route-home .nx-intro__grid,
  html.nx-route-home .nx-strength__grid,
  html.nx-route-home .nx-contact__grid {
    gap: 54px;
  }

  html.nx-route-home .nx-solution-panel {
    padding: 42px;
  }
}

@media (max-width: 900px) {
  html.nx-route-home .nx-section {
    padding: 104px 0;
  }

  html.nx-route-home .nx-hero {
    min-height: 760px;
  }

  html.nx-route-home .nx-hero__media {
    background-position: 65% center;
  }

  html.nx-route-home .nx-hero__shade {
    background: linear-gradient(90deg, rgba(247, 250, 252, 0.99), rgba(247, 250, 252, 0.91) 60%, rgba(247, 250, 252, 0.52));
  }

  html.nx-route-home .nx-hero h1 {
    font-size: clamp(44px, 8vw, 64px);
  }

  html.nx-route-home .nx-stats {
    margin-top: 64px;
  }

  html.nx-route-home .nx-business-card,
  html.nx-route-home .nx-case {
    border-radius: 24px;
  }

  html.nx-route-home .nx-solution-tabs {
    width: 100%;
    justify-content: flex-start;
    border-radius: 18px;
  }

  html.nx-route-home .nx-solution-panel {
    border-radius: 28px;
  }
}

@media (max-width: 640px) {
  html.nx-route-home .nx-header__inner,
  html.nx-route-home .nx-shell {
    width: min(calc(100% - 32px), var(--nx-shell));
  }

  html.nx-route-home .nx-brand {
    min-width: 0;
  }

  html.nx-route-home .nx-brand__wordmark {
    font-size: 16px;
  }

  html.nx-route-home .nx-brand__ko {
    font-size: 8px;
  }

  html.nx-route-home .nx-hero {
    min-height: 780px;
    align-items: flex-end;
  }

  html.nx-route-home .nx-hero__media {
    inset: 0;
    background-position: 68% 42%;
    background-size: auto 72%;
    background-repeat: no-repeat;
  }

  html.nx-route-home .nx-hero__shade {
    background:
      linear-gradient(180deg, rgba(247, 250, 252, 0.15) 0%, rgba(247, 250, 252, 0.78) 37%, rgba(247, 250, 252, 0.99) 61%),
      linear-gradient(90deg, rgba(247, 250, 252, 0.82), rgba(247, 250, 252, 0.2));
  }

  html.nx-route-home .nx-hero__content {
    padding-top: 270px;
    padding-bottom: 88px;
  }

  html.nx-route-home .nx-kicker {
    font-size: 9px;
  }

  html.nx-route-home .nx-kicker span {
    width: 20px;
  }

  html.nx-route-home .nx-hero h1 {
    margin-top: 18px;
    font-size: clamp(37px, 10.8vw, 48px);
    line-height: 1.1;
  }

  html.nx-route-home .nx-hero h1 strong {
    margin-top: 6px;
  }

  html.nx-route-home .nx-hero__lead {
    margin-top: 22px !important;
    font-size: 15px;
    line-height: 1.62;
  }

  html.nx-route-home .nx-hero__actions {
    width: 100%;
    margin-top: 28px;
  }

  html.nx-route-home .nx-button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 13px;
  }

  html.nx-route-home .nx-hero__capabilities,
  html.nx-route-home .nx-hero__scroll {
    display: none;
  }

  html.nx-route-home .nx-section {
    padding: 88px 0;
  }

  html.nx-route-home .nx-section-heading h2,
  html.nx-route-home .nx-strength__heading h2,
  html.nx-route-home .nx-contact h2 {
    font-size: 36px;
    line-height: 1.16;
  }

  html.nx-route-home .nx-intro__copy p,
  html.nx-route-home .nx-section-heading--row > p,
  html.nx-route-home .nx-cases__lead > p {
    font-size: 16px;
  }

  html.nx-route-home .nx-stats {
    margin-top: 48px;
    border-radius: 24px;
  }

  html.nx-route-home .nx-stats div {
    min-height: 126px;
  }

  html.nx-route-home .nx-business__grid,
  html.nx-route-home .nx-case-grid {
    gap: 14px;
    margin-top: 46px;
  }

  html.nx-route-home .nx-business-card {
    min-height: 300px;
    padding: 28px;
  }

  html.nx-route-home .nx-strength__grid {
    gap: 60px;
  }

  html.nx-route-home .nx-solution-tabs {
    margin-top: 46px;
    padding: 4px;
  }

  html.nx-route-home .nx-solution-panel {
    gap: 34px;
    padding: 28px;
    border-radius: 24px;
  }

  html.nx-route-home .nx-solution-panel__intro h3 {
    font-size: 30px;
  }

  html.nx-route-home .nx-solution-panel__flow > div {
    padding: 20px;
  }

  html.nx-route-home .nx-case,
  html.nx-route-home .nx-project-timeline {
    padding: 26px;
    border-radius: 22px;
  }

  html.nx-route-home .nx-contact {
    padding: 94px 0;
  }

  html.nx-route-home .nx-contact__details {
    border-radius: 22px;
  }
}

/* 모션 감소 및 투명도 감소 설정에서도 정보 피드백을 유지함 by JS */
@media (prefers-reduced-motion: reduce) {
  html.nx-route-home .nx-hero__media,
  html.nx-route-home .nx-kicker,
  html.nx-route-home .nx-hero h1,
  html.nx-route-home .nx-hero__lead,
  html.nx-route-home .nx-hero__actions,
  html.nx-route-home .nx-hero__capabilities {
    animation: none !important;
  }

  html.nx-route-home .nx-reveal {
    opacity: 0;
    transform: none;
    transition: opacity 200ms ease;
  }

  html.nx-route-home .nx-reveal.is-visible {
    opacity: 1;
  }

  html.nx-route-home .nx-business-card,
  html.nx-route-home .nx-case,
  html.nx-route-home .nx-button,
  html.nx-route-home .nx-solution-tabs button {
    transform: none !important;
    transition-duration: 120ms;
  }
}

@media (prefers-reduced-transparency: reduce) {
  html.nx-route-home .nx-header,
  html.nx-route-home .nx-nav,
  html.nx-route-home .nx-nav__dropdown,
  html.nx-route-home .nx-button--outline,
  html.nx-route-home .nx-contact__details {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  html.nx-route-home .nx-header,
  html.nx-route-home .nx-nav,
  html.nx-route-home .nx-nav__dropdown {
    background: #ffffff;
  }
}

html.nx-route-home.nx-motion-off .nx-hero__media,
html.nx-route-home.nx-motion-off .nx-kicker,
html.nx-route-home.nx-motion-off .nx-hero h1,
html.nx-route-home.nx-motion-off .nx-hero__lead,
html.nx-route-home.nx-motion-off .nx-hero__actions,
html.nx-route-home.nx-motion-off .nx-hero__capabilities {
  animation: none !important;
}

html.nx-route-home.nx-motion-off .nx-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
