html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: #0a0a0a;
  color: #e8edf2;
  font-family: Inter, Roboto, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.anti-spam-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
:root {
  --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
  --dur-premium: 750ms;
  --dur-premium-fast: 500ms;

  /* Heavy Luxury motion (buttons + cards) */
  --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
  --dur-luxury: 800ms;
  --dur-luxury-fast: 800ms;
}

@keyframes cinematic-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes cinematic-text {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-main-reveal {
  will-change: transform, opacity;
  animation: cinematic-reveal 1.4s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.hero-main-stage {
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
  transition: transform 1.15s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-main-img {
  transform: translate3d(0, -35px, 0) rotate(3deg) scale(1.2);
  transform-origin: center;
  will-change: transform, opacity, filter;
  transition:
    transform 1.15s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) and (pointer: fine) {
  .hero-main-stage:hover {
    transform: translate3d(0, -3px, 0) scale(1.014);
  }

  .hero-main-stage:hover .hero-main-img {
    transform: translate3d(0, -36px, 0) rotate(2.7deg) scale(1.216);
    filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.38));
  }
}

.hero-text-reveal {
  will-change: transform, opacity;
  animation: cinematic-text 1s cubic-bezier(0.2, 1, 0.3, 1) both;
  animation-delay: 0.2s;
}

.hero-cta {
  position: relative;
  z-index: 20;
}
.ease-premium {
  transition:
    transform var(--dur-premium) var(--ease-premium),
    box-shadow var(--dur-premium-fast) var(--ease-premium),
    filter var(--dur-premium-fast) var(--ease-premium),
    opacity var(--dur-premium-fast) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    color var(--dur-premium-fast) var(--ease-premium),
    background-color var(--dur-premium-fast) var(--ease-premium);
}
.premium-button {
  position: relative;
  isolation: isolate;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
  touch-action: manipulation;
  transition:
    transform var(--dur-luxury) var(--ease-luxury),
    opacity var(--dur-luxury-fast) var(--ease-luxury);
}
.premium-button > * {
  position: relative;
  z-index: 1;
}
.premium-button::before {
  content: "";
  position: absolute;
  inset: -60%;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(40% 40% at 30% 25%, rgba(232, 237, 242, 0.22), transparent 70%),
    radial-gradient(35% 35% at 75% 70%, rgba(192, 192, 192, 0.16), transparent 72%);
  filter: blur(16px);
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition:
    opacity var(--dur-luxury-fast) var(--ease-luxury),
    transform var(--dur-luxury) var(--ease-luxury);
  z-index: 0;
}
.premium-button::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 1px;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(232, 237, 242, 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-luxury) var(--ease-luxury);
  z-index: 0;
}
.premium-button:hover {
  transform: translate3d(0, 0, 0) scale(1.03);
}
.premium-button:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.premium-button:hover::after {
  transform: scaleX(1);
}
.premium-link {
  opacity: 0.86;
  transform: translateY(0);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    opacity var(--dur-premium-fast) var(--ease-premium),
    color var(--dur-premium-fast) var(--ease-premium);
}
.premium-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.menu-link {
  position: relative;
}
.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(192, 192, 192, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-premium) var(--ease-premium);
}
.menu-link:hover::after {
  transform: scaleX(1);
}
.premium-card {
  opacity: 0.94;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  transition:
    transform var(--dur-luxury) var(--ease-luxury),
    opacity var(--dur-luxury-fast) var(--ease-luxury),
    box-shadow var(--dur-luxury-fast) var(--ease-luxury);
}
.premium-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(45% 45% at 25% 20%, rgba(232, 237, 242, 0.14), transparent 70%),
    radial-gradient(40% 40% at 75% 70%, rgba(192, 192, 192, 0.10), transparent 72%);
  filter: blur(22px);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity var(--dur-luxury-fast) var(--ease-luxury),
    transform var(--dur-luxury) var(--ease-luxury);
}
.premium-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 1px;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(232, 237, 242, 0.16);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-luxury) var(--ease-luxury);
}
.premium-card:hover {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.02);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}
.premium-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.premium-card:hover::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  translate: 0 14px;
  will-change: opacity, translate;
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), translate 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero-main-reveal,
  .hero-text-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-main-stage,
  .hero-main-img {
    transition: none !important;
    filter: none !important;
  }
  .logo-link,
  .logo-link img {
    transition: none !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1;
    translate: none;
    transition: none;
  }
}

.field-error {
  border-color: rgba(192, 192, 192, 0.35) !important;
  box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.06);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 5rem;
  min-height: 6.45rem;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.32), rgba(8, 8, 8, 0));
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
}

.site-header .logo-link {
  display: inline-flex;
  align-items: center;
}

.site-header .logo-image {
  display: block;
  height: 6.8rem;
  width: auto;
  opacity: 0.94;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: rgba(232, 237, 242, 0.68);
  font-size: 0.92rem;
}

.site-nav a {
  transition: color 360ms var(--ease-premium);
}

.site-nav a:hover {
  color: rgba(232, 237, 242, 0.98);
}

.site-nav a[aria-current="page"] {
  color: rgba(232, 237, 242, 0.96);
}

.country-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
}

.country-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 1.85rem;
  padding: 0 0.62rem;
  border-radius: 999px;
  color: rgba(232, 237, 242, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: color 360ms var(--ease-premium), background-color 360ms var(--ease-premium);
}

.country-switcher a:hover,
.country-switcher a.is-active {
  color: rgba(10, 10, 10, 0.96);
  background: linear-gradient(90deg, #f2f2f2, #c0c0c0, #f7f7f7);
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(44rem 34rem at 12% 2%, rgba(232, 237, 242, 0.08), transparent 68%),
    radial-gradient(38rem 30rem at 82% 8%, rgba(192, 192, 192, 0.06), transparent 68%);
}

.subpage,
.legal-page {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.7rem 0 3.6rem;
}

.page-hero,
.legal-card,
.page-callout,
.contact-section {
  position: relative;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.5rem;
  background:
    linear-gradient(145deg, rgba(27, 29, 31, 0.72), rgba(8, 8, 8, 0.9)),
    radial-gradient(42rem 24rem at 76% 12%, rgba(232, 237, 242, 0.08), transparent 70%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.page-hero {
  min-height: 15.5rem;
  padding: clamp(1.35rem, 3.2vw, 2.55rem);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/hero-bg-korea-smooth.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(0.35) contrast(1.12);
}

.page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: rgba(192, 192, 192, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.page-hero h1,
.legal-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.35vw, 4.2rem);
  line-height: 1.02;
  font-weight: 650;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: rgba(232, 237, 242, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.58;
}

.cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  min-height: 9.75rem;
  padding: 1.15rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(17, 18, 20, 0.88), rgba(8, 8, 8, 0.96));
}

.card h2,
.contact-section h2,
.legal-content h2 {
  margin: 0;
  color: rgba(232, 237, 242, 0.96);
  font-size: 1.35rem;
  line-height: 1.25;
}

.card p,
.page-callout p,
.proof-list span,
.legal-content p,
.form-policy,
.modal-description {
  color: rgba(232, 237, 242, 0.7);
  line-height: 1.52;
}

.card p {
  margin: 0.7rem 0 0;
}

.page-callout {
  margin-top: 0.95rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  min-height: 45px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--dur-premium-fast) var(--ease-premium), border-color var(--dur-premium-fast) var(--ease-premium);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 237, 242, 0.4);
}

.btn-primary {
  color: #0a0a0a;
  border: 0;
  background: linear-gradient(90deg, #f2f2f2, #c0c0c0, #f7f7f7);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  margin-top: 0.95rem;
  padding: clamp(1.1rem, 2.75vw, 2rem);
}

.proof-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.proof-list > div {
  padding: 0.9rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.28);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  color: rgba(232, 237, 242, 0.94);
}

.capture-form {
  display: grid;
  gap: 0.8rem;
}

.capture-form label span {
  display: block;
  margin-bottom: 0.42rem;
  color: rgba(192, 192, 192, 0.72);
  font-size: 0.78rem;
}

.capture-form input,
.capture-form textarea,
.capture-form select {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(232, 237, 242, 0.96);
  padding: 0.86rem 1rem;
  font: inherit;
}

.capture-form textarea {
  resize: vertical;
}

.capture-form input:focus,
.capture-form textarea:focus {
  outline: none;
  border-color: rgba(232, 237, 242, 0.5);
}

.form-policy {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.55rem;
  margin-top: 0.1rem;
  color: rgba(232, 237, 242, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-consent input {
  width: 1rem;
  height: 1rem;
  margin: 0.12rem 0 0;
  accent-color: #d7dde5;
}

.form-consent a,
.form-policy a {
  color: rgba(232, 237, 242, 0.92);
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.form-error {
  color: rgba(255, 221, 221, 0.92);
  font-size: 0.86rem;
}

.modal.hidden,
#mobileMenu.hidden,
[id^="modal-"].hidden,
.anatomy-mobile-popup.hidden,
.form-error.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(520px, calc(100vw - 2rem));
  margin: 10vh auto 0;
  padding: 1.5rem;
  border: 1px solid rgba(192, 192, 192, 0.16);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #111214, #0a0a0a);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-head h2 {
  margin: 0;
}

.close-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(232, 237, 242, 0.88);
  font-size: 1.35rem;
  cursor: pointer;
}

.legal-card {
  padding: clamp(1.2rem, 3vw, 2.25rem);
}

.legal-content {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.legal-content p,
.legal-content h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.legal-content a {
  color: rgba(232, 237, 242, 0.96);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.legal-back {
  margin-top: 1.25rem;
}

.site-footer {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
  color: rgba(232, 237, 242, 0.48);
  font-size: 0.82rem;
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-main {
  padding-bottom: 0.9rem;
}

.footer-brand strong {
  display: block;
  color: rgba(232, 237, 242, 0.9);
  font-size: 0.98rem;
}

.footer-brand span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(232, 237, 242, 0.52);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact a,
.footer-nav a,
.footer-bottom a {
  color: rgba(232, 237, 242, 0.58);
}

.footer-contact a:hover,
.footer-nav a:hover,
.footer-bottom a:hover {
  color: rgba(232, 237, 242, 0.9);
}

.footer-bottom {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(192, 192, 192, 0.08);
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 768px) and (max-width: 900px) {
  .site-header {
    padding: 0 2rem;
  }

  .site-header .logo-image {
    height: 5.8rem;
  }

  .site-header-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.78rem;
  }

  .country-switcher a {
    min-width: 2rem;
    height: 1.65rem;
    padding: 0 0.48rem;
    font-size: 0.66rem;
  }
}

@media (max-width: 767px) {
  .site-header {
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.35rem 0.8rem 0.55rem;
    min-height: 0;
  }

  .site-header .logo-image {
    height: 4.4rem;
  }

  .site-header-actions {
    flex: 1;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.45rem;
    padding-top: 1.1rem;
  }

  .site-nav {
    max-width: 100%;
    gap: 0.48rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    font-size: 0.68rem;
  }

  .country-switcher a {
    min-width: 1.85rem;
    height: 1.55rem;
    padding: 0 0.45rem;
    font-size: 0.63rem;
  }

  .subpage,
  .legal-page,
  .site-footer {
    width: min(100% - 1.25rem, 1120px);
  }

  .subpage,
  .legal-page {
    padding-top: 1.1rem;
    padding-bottom: 2.6rem;
  }

  .page-hero {
    min-height: 0;
    padding: 1.05rem;
  }

  .cards.three,
  .cards.two,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
  }

  .page-callout,
  .footer-bottom,
  .footer-main,
  .footer-nav,
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main,
  .footer-bottom {
    gap: 0.7rem;
  }

  .page-callout .btn,
  .capture-form .btn {
    width: 100%;
  }
}

.hub-page {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.65rem 0 1.8rem;
}

.hub-hero,
.hub-section {
  position: relative;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.6rem;
  background:
    linear-gradient(145deg, rgba(18, 20, 23, 0.86), rgba(5, 6, 7, 0.96)),
    radial-gradient(42rem 26rem at 84% 10%, rgba(134, 161, 184, 0.09), transparent 72%),
    radial-gradient(34rem 24rem at 10% 100%, rgba(232, 237, 242, 0.045), transparent 78%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.hub-hero {
  min-height: 29.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.65rem, 4vw, 3.6rem);
  padding-bottom: max(1rem, calc(clamp(1.65rem, 4vw, 3.6rem) - 30px));
}

.hub-hero::before,
.hub-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.22), rgba(10, 10, 10, 0.82)),
    url("../img/hero-bg-korea-smooth.webp") center / cover no-repeat;
  opacity: 0.08;
  filter: grayscale(0.45) contrast(1.08);
}

.hub-hero::before,
.regional-orb-section::before,
.contact-hub::before {
  opacity: 0.16;
}

.hub-hero > *,
.hub-section > * {
  position: relative;
  z-index: 1;
}

.hub-hero h1 {
  margin: 0;
  max-width: 48rem;
  font-size: 60px;
  line-height: 0.94;
  font-weight: 720;
  letter-spacing: 0;
}

.hub-lead {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: rgba(232, 237, 242, 0.74);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.72;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.55rem;
}

.hub-hero-visual {
  min-height: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hub-implant-card {
  position: relative;
  width: min(38rem, 112%);
  min-height: 29rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(17rem 15rem at 54% 42%, rgba(75, 112, 150, 0.18), transparent 72%),
    radial-gradient(14rem 12rem at 58% 54%, rgba(232, 237, 242, 0.1), transparent 75%);
  overflow: visible;
}

.hub-implant-card::before {
  content: "";
  position: absolute;
  inset: 6% 2% 8%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(8, 16, 24, 0.58), rgba(4, 6, 8, 0.12) 62%, transparent 74%);
  filter: blur(10px);
  opacity: 0.82;
}

.hub-implant-card img {
  width: 88%;
  max-height: 29rem;
  object-fit: contain;
  transform: translateY(0.9rem);
  filter:
    drop-shadow(0 34px 44px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 32px rgba(125, 160, 196, 0.12));
}

.hub-implant-card div {
  position: absolute;
  left: 50%;
  top: 1.45rem;
  width: max-content;
  max-width: min(100%, 29rem);
  transform: translateX(-50%);
  padding: 0.55rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  text-align: center;
}

.hub-implant-card span,
.hub-implant-card strong {
  display: block;
}

.hub-implant-card span {
  color: rgba(192, 192, 192, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hub-implant-card strong {
  margin-top: 0.3rem;
  color: rgba(232, 237, 242, 0.9);
  font-size: 0.98rem;
  line-height: 1.35;
}

.hub-section {
  margin-top: 0.9rem;
  padding: clamp(1.1rem, 2.65vw, 2rem);
  overflow: hidden;
}

.hub-section-head {
  max-width: 48rem;
  margin-bottom: 0.95rem;
}

.hub-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
  font-weight: 680;
}

.hub-section-head p:not(.eyebrow),
.hub-split p,
.regional-orb-copy p,
.contact-copy p {
  color: rgba(232, 237, 242, 0.7);
  line-height: 1.62;
  font-size: 1.03rem;
}

.hub-card-grid {
  display: grid;
  gap: 0.7rem;
}

.hub-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hub-card-grid.product-scope-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  align-items: stretch;
  align-content: stretch;
  min-height: 0;
}

.hub-card-grid.product-scope-grid .hub-card {
  min-height: 0;
  contain: layout paint;
}

.hub-card {
  display: block;
  min-height: 10.25rem;
  padding: 1rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(17, 18, 20, 0.82), rgba(5, 6, 7, 0.94));
}

.hub-card.compact {
  min-height: 8.75rem;
}

.hub-card-index {
  color: rgba(192, 192, 192, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
}

.hub-card h3,
.hub-product-main h3 {
  margin: 0.65rem 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hub-card p,
.hub-product-main p,
.hub-flow-grid p {
  margin: 0.55rem 0 0;
  color: rgba(232, 237, 242, 0.68);
  line-height: 1.52;
}

.hub-split,
.regional-orb-section,
.contact-hub {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2.35rem);
  align-items: center;
}

.hub-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hub-proof-row div {
  padding: 0.85rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.28);
}

.hub-proof-row strong,
.hub-proof-row span {
  display: block;
}

.hub-proof-row strong {
  font-size: 1.35rem;
}

.hub-proof-row span {
  margin-top: 0.25rem;
  color: rgba(232, 237, 242, 0.62);
  font-size: 0.9rem;
}

.hub-media-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.25rem;
  background: #070809;
}

.hub-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(0.68) contrast(0.94) saturate(0.75);
}

.hub-media-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.85rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.48);
  color: rgba(232, 237, 242, 0.78);
  backdrop-filter: blur(10px);
}

.hub-product-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 0.85rem;
  align-items: stretch;
}

.hub-product-main {
  min-height: 0;
  align-self: stretch;
  padding: 1.05rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(17, 18, 20, 0.78), rgba(0, 0, 0, 0.92));
}

.hub-product-main img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9.3;
  object-fit: contain;
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: 1rem;
  background: #020303;
}

.hub-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.hub-flow-grid div {
  min-height: 10.6rem;
  padding: 1.05rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.15rem;
  background: rgba(0, 0, 0, 0.32);
}

.hub-flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(192, 192, 192, 0.22);
  border-radius: 50%;
  color: rgba(232, 237, 242, 0.82);
}

.hub-flow-grid strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.1rem;
}

.regional-links {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.regional-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.28);
}

.regional-links span {
  color: rgba(232, 237, 242, 0.62);
}

.asia-orb {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.35rem;
  background: #020407;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.55);
}

.asia-orb::before,
.asia-orb::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.asia-orb::before {
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(34rem 18rem at 78% 20%, rgba(179, 218, 255, 0.2), transparent 64%),
    radial-gradient(30rem 22rem at 18% 72%, rgba(222, 162, 71, 0.12), transparent 72%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 40%, rgba(0, 0, 0, 0.38));
  mix-blend-mode: screen;
  opacity: 0.75;
}

.asia-orb::after {
  inset: auto -8% -14% 8%;
  height: 12rem;
  border: 1px solid rgba(205, 229, 255, 0.13);
  transform: rotate(-6deg);
  filter: blur(0.2px);
  opacity: 0.5;
}

.space-earth-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../img/maps/black-marble-asia-australia-2200.jpg") center / cover no-repeat;
  filter: none;
  transform: scale(1.035);
  transform-origin: center;
}

.space-earth-map {
  isolation: isolate;
}

.space-earth-map::before {
  display: block;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(34rem 24rem at 72% 44%, rgba(0, 0, 0, 0.22), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.56)),
    rgba(0, 0, 0, 0.16);
  opacity: 0.94;
  mix-blend-mode: multiply;
}

.space-earth-map::after {
  display: none;
}

.space-earth-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.earth-routes path {
  fill: none;
  stroke: rgba(226, 238, 250, 0.42);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 7px rgba(154, 198, 255, 0.32));
}

.earth-signals ellipse {
  fill: rgba(247, 251, 255, 0.96);
  filter:
    url("#routeGlow")
    drop-shadow(0 0 10px rgba(154, 198, 255, 0.78))
    drop-shadow(0 0 18px rgba(232, 237, 242, 0.34));
}

.earth-map-cities {
  pointer-events: none;
}

.earth-map-city circle {
  fill: rgba(242, 248, 255, 0.98);
  filter:
    drop-shadow(0 0 0.45rem rgba(232, 237, 242, 0.34))
    drop-shadow(0 0 0.9rem rgba(154, 198, 255, 0.58));
}

.earth-map-city.seoul circle {
  fill: rgba(255, 255, 255, 1);
  filter:
    drop-shadow(0 0 0.6rem rgba(232, 237, 242, 0.42))
    drop-shadow(0 0 1.15rem rgba(154, 198, 255, 0.78));
}

.earth-map-city text {
  fill: rgba(239, 245, 252, 0.86);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.95), 0 0 1.2rem rgba(154, 198, 255, 0.28);
}

.earth-map-city.label-left text {
  text-anchor: end;
}

.contact-hub {
  align-items: start;
}

.contact-copy {
  min-width: 0;
}

.contact-product-panel {
  position: relative;
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.25rem;
  background:
    radial-gradient(18rem 14rem at 50% 34%, rgba(232, 237, 242, 0.13), transparent 70%),
    radial-gradient(22rem 16rem at 70% 58%, rgba(86, 128, 170, 0.16), transparent 74%),
    linear-gradient(160deg, rgba(4, 6, 8, 0.74), rgba(0, 0, 0, 0.94));
}

.contact-product-visual {
  position: relative;
  margin: 0;
  min-height: 12rem;
  display: grid;
  place-items: center;
  padding: 0.95rem 1.25rem 3.75rem;
}

.contact-product-visual::before {
  content: "";
  position: absolute;
  inset: 11% 12% 20%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(48, 78, 108, 0.26), rgba(4, 6, 8, 0.12) 66%, transparent 78%);
  filter: blur(14px);
}

.contact-product-visual img {
  position: relative;
  z-index: 1;
  width: min(76%, 13.2rem);
  max-height: 12.2rem;
  object-fit: contain;
  filter:
    drop-shadow(0 32px 44px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 26px rgba(145, 176, 205, 0.13));
}

.contact-product-visual figcaption {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
}

.contact-product-visual span,
.contact-product-visual strong {
  display: block;
  text-align: center;
}

.contact-product-visual span {
  color: rgba(192, 192, 192, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.contact-product-visual strong {
  margin-top: 0.35rem;
  color: rgba(232, 237, 242, 0.92);
  line-height: 1.3;
}

.contact-product-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0 0.85rem 0.85rem;
}

.contact-product-points div {
  min-height: 0;
  padding: 0.65rem;
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: 0.8rem;
  background: rgba(0, 0, 0, 0.32);
}

.contact-product-points span,
.contact-product-points strong {
  display: block;
}

.contact-product-points span {
  color: rgba(192, 192, 192, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.contact-product-points strong {
  margin-top: 0.42rem;
  color: rgba(232, 237, 242, 0.86);
  font-size: 0.86rem;
  line-height: 1.3;
}

.hub-contact-form {
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.28);
  padding: 1.35rem;
}

.hub-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@keyframes asiaNodePulse {
  0% { box-shadow: 0 0 0 0.22rem rgba(232, 237, 242, 0.16), 0 0 1rem rgba(154, 198, 255, 0.42); }
  70% { box-shadow: 0 0 0 0.9rem rgba(232, 237, 242, 0), 0 0 1.1rem rgba(154, 198, 255, 0.5); }
  100% { box-shadow: 0 0 0 0.9rem rgba(232, 237, 242, 0), 0 0 1rem rgba(154, 198, 255, 0.42); }
}

@keyframes asiaDrift {
  from { transform: translate3d(0, 0, 0) rotate(-2deg) scale(1); }
  to { transform: translate3d(-0.7rem, 0.35rem, 0) rotate(1deg) scale(1.015); }
}

@keyframes asiaHalo {
  from { opacity: 0.42; transform: scale(0.985); }
  to { opacity: 0.8; transform: scale(1.015); }
}

@media (max-width: 1023px) {
  .hub-hero,
  .hub-split,
  .regional-orb-section,
  .contact-hub,
  .hub-product-layout {
    grid-template-columns: 1fr;
  }

  .hub-card-grid.four,
  .hub-card-grid.three,
  .hub-card-grid.product-scope-grid,
  .hub-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hub-page {
    width: min(100% - 1.25rem, 1180px);
    padding-top: 1.45rem;
    padding-bottom: 2rem;
  }

  .hub-hero,
  .hub-section {
    border-radius: 1.2rem;
    padding: 1.05rem;
  }

  .hub-hero {
    min-height: 0;
  }

  .hub-hero h1 {
    font-size: 60px;
  }

  .hub-hero-visual {
    min-height: 21.5rem;
  }

  .hub-implant-card {
    width: min(24rem, 112%);
    min-height: 21rem;
  }

  .hub-implant-card img {
    width: 88%;
    max-height: 20.5rem;
  }

  .hub-card-grid.four,
  .hub-card-grid.three,
  .hub-card-grid.product-scope-grid,
  .hub-flow-grid,
  .hub-proof-row,
  .hub-form-grid {
    grid-template-columns: 1fr;
  }

  .hub-card,
  .hub-flow-grid div {
    min-height: 0;
  }

  .regional-links a {
    flex-direction: column;
  }

  .asia-orb {
    min-height: 24rem;
  }

  .space-earth-photo {
    background-position: 55% 50%;
    transform: scale(1.08);
  }

  .contact-product-panel {
    margin-top: 1.25rem;
  }

  .contact-product-visual {
    min-height: 18rem;
    padding: 1.1rem 1rem 5.2rem;
  }

  .contact-product-visual img {
    width: min(88%, 16rem);
  }

  .contact-product-points {
    grid-template-columns: 1fr;
  }

}

.metal-icon {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  -webkit-user-drag: none;
}

.metal-icon-lg {
  width: 3.35rem;
  height: 3.35rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  -webkit-user-drag: none;
}

.metal-icon-xl {
  width: 3.55rem;
  height: 3.55rem;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.48));
  -webkit-user-drag: none;
}

.product-card-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: contrast(1.03) brightness(0.96);
}

.product-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-card-action {
  min-height: 2.75rem;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.24);
  background: rgba(10, 10, 10, 0.22);
  color: rgba(232, 237, 242, 0.88);
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  transform: translate3d(0, 0, 0);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    color var(--dur-premium-fast) var(--ease-premium),
    background-color var(--dur-premium-fast) var(--ease-premium),
    box-shadow var(--dur-premium-fast) var(--ease-premium);
}

.product-card-action:hover,
.product-card-action:focus-visible {
  color: rgba(232, 237, 242, 1);
  border-color: rgba(232, 237, 242, 0.38);
  background: rgba(16, 17, 20, 0.42);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transform: translate3d(0, -1px, 0);
  outline: none;
}

.platform-modal-media {
  min-height: 260px;
}

.platform-modal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
  margin: 0 auto;
}

.platform-modal-copy {
  min-width: 0;
}

.platform-modal-copy ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.platform-modal-copy li {
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 1rem;
  background: rgba(9, 10, 12, 0.36);
  padding: 0.9rem 1rem;
  color: rgba(232, 237, 242, 0.82);
  line-height: 1.45;
}

.platform-modal-shell {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .platform-modal-shell {
    max-height: calc(100vh - 3rem);
  }
}

.list-marker-icon {
  width: 0.95rem;
  height: 0.95rem;
  object-fit: contain;
  opacity: 0.9;
}

.regional-partners-image {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.45));
}

.about-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(0.9) saturate(0.86);
}

.company-gallery-track {
  display: flex;
  gap: 1rem;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.company-gallery-track::-webkit-scrollbar {
  display: none;
}

.company-gallery-card {
  flex: 0 0 86%;
  scroll-snap-align: start;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .company-gallery-card {
    flex-basis: calc(50% - 0.5rem);
  }
}

@media (min-width: 1280px) {
  .company-gallery-track {
    display: grid;
    overflow: visible;
    padding-bottom: 0;
    gap: 1.25rem;
    scroll-snap-type: none;
  }

  .company-gallery-card {
    flex: none;
  }
}

.certificate-preview-image {
  filter: brightness(0.72) contrast(0.9) saturate(0.86);
}

.map-placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(0.9);
}

.company-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.company-video-cover {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: brightness(0.66) contrast(0.95) saturate(0.64);
}

.company-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(8, 9, 11, 0.55) 0%, rgba(8, 9, 11, 0.28) 55%, rgba(8, 9, 11, 0.65) 100%),
    radial-gradient(42% 36% at 52% 55%, rgba(232, 237, 242, 0.08) 0%, transparent 74%);
}

.company-video-trigger {
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 237, 242, 0.5);
  color: rgba(232, 237, 242, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 11, 14, 0.35);
  box-shadow:
    0 0 0 0.35rem rgba(232, 237, 242, 0.08),
    0 12px 22px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    box-shadow var(--dur-premium-fast) var(--ease-premium);
}

.company-video-trigger:hover {
  transform: scale(1.05);
  border-color: rgba(232, 237, 242, 0.72);
  box-shadow:
    0 0 0 0.45rem rgba(232, 237, 242, 0.1),
    0 14px 26px rgba(0, 0, 0, 0.4);
}

.company-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) contrast(0.92) saturate(0.72);
}

.partner-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow:
    inset 0 1px 0 rgba(232, 237, 242, 0.08),
    inset 0 -14px 26px rgba(0, 0, 0, 0.25),
    0 10px 24px rgba(0, 0, 0, 0.3);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    box-shadow var(--dur-premium-fast) var(--ease-premium),
    background-color var(--dur-premium-fast) var(--ease-premium);
}

.partner-card:hover {
  transform: translate3d(0, -6px, 0) scale(1.01);
  border-color: rgba(232, 237, 242, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(232, 237, 242, 0.15),
    inset 0 -10px 22px rgba(0, 0, 0, 0.2),
    0 16px 34px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(192, 192, 192, 0.14);
}

.partner-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: brightness(0.72) saturate(0) contrast(1.08);
  transition:
    filter var(--dur-premium-fast) var(--ease-premium),
    opacity var(--dur-premium-fast) var(--ease-premium);
}

.partner-card:hover .partner-logo {
  filter: brightness(1) saturate(0) contrast(1.16);
}

.partner-caption {
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 237, 242, 0.58);
}

.wa-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.28);
  color: rgba(232, 237, 242, 0.9);
  background: linear-gradient(145deg, rgba(15, 17, 20, 0.95) 0%, rgba(10, 11, 14, 0.95) 100%);
  transition:
    transform var(--dur-premium) var(--ease-premium),
    border-color var(--dur-premium-fast) var(--ease-premium),
    color var(--dur-premium-fast) var(--ease-premium);
}

.wa-icon-link:hover {
  transform: scale(1.06);
  border-color: rgba(232, 237, 242, 0.58);
  color: rgba(242, 243, 244, 1);
}

.wa-icon-link svg {
  width: 0.9rem;
  height: 0.9rem;
}

.cta-geo-wrap {
  position: relative;
  background: transparent;
  transform: none;
}

.cta-left-block {
  transform: none;
}

.cta-grid-body {
  transform: translateY(10px);
}

.cta-title {
  transform: translateY(-10px);
}

.cta-consent-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 5px;
  border-radius: 2px;
  border: 1px solid rgba(192, 192, 192, 0.45);
  background: #ffffff;
  position: relative;
}

.cta-consent-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 0.11rem;
  top: -0.02rem;
  width: 0.1rem;
  height: 0.2rem;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  transform: rotate(45deg);
}

.cta-consent-checkbox:disabled {
  opacity: 1;
}

.cta-geo-media {
  transition:
    transform var(--dur-premium) var(--ease-premium),
    filter var(--dur-premium-fast) var(--ease-premium);
  will-change: transform;
}

.cta-geo-wrap:hover .cta-geo-media {
  transform: scale(1.022);
  filter: brightness(1.02);
}

.cta-geo-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: brightness(0.92) contrast(1.04) saturate(0.9);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cta-delivery-note {
  margin: 0.4rem auto 0;
  width: fit-content;
  max-width: 100%;
  border: 0;
  background: transparent;
  color: rgba(232, 237, 242, 0.84);
  font-size: 0.98rem;
  line-height: 1;
  padding: 0;
  display: inline-block;
  transform: translate(30px, -10px);
}

.cta-delivery-dot {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: rgba(232, 237, 242, 0.95);
  box-shadow: 0 0 0 0 rgba(232, 237, 242, 0.3);
  animation: ctaPulse 2.2s ease-out infinite;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 237, 242, 0.28);
  }
  70% {
    box-shadow: 0 0 0 0.62rem rgba(232, 237, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 237, 242, 0);
  }
}

@media (max-width: 767px) {
  .company-video-overlay {
    justify-content: flex-start;
  }

  .cta-geo-image {
    min-height: 240px;
  }

  .cta-delivery-note {
    width: auto;
    transform: translate(0, -6px);
  }

  .cta-geo-wrap {
    transform: none;
  }

  .cta-left-block {
    transform: none;
  }
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  color: rgba(232, 237, 242, 0.72);
  flex: 0 0 auto;
}

.contact-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.08) saturate(0.5);
}

.contact-map-shell {
  flex: 1 1 auto;
}

.contact-map-viewport {
  position: relative;
  min-height: 220px;
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(145deg, rgba(8, 10, 12, 0.82) 0%, rgba(8, 10, 12, 0.28) 32%, rgba(8, 10, 12, 0.52) 100%),
    #0b0d0f;
}

.contact-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 9, 10, 0.38) 0%, rgba(7, 9, 10, 0.18) 22%, rgba(7, 9, 10, 0.32) 100%),
    linear-gradient(135deg, rgba(5, 7, 9, 0.34) 0%, rgba(5, 7, 9, 0.14) 48%, rgba(5, 7, 9, 0.42) 100%);
}

@media (max-width: 767px) {
  .contact-map-viewport {
    min-height: 190px;
    aspect-ratio: 16 / 10;
  }
}

.fact-orbit {
  position: absolute;
  right: 1rem;
  top: 0.75rem;
  width: 8.25rem;
  height: 8.25rem;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(35% 35% at 50% 50%, rgba(242, 243, 244, 0.22) 0%, transparent 72%),
    radial-gradient(30% 30% at 20% 42%, rgba(208, 210, 214, 0.18) 0%, transparent 75%),
    radial-gradient(30% 30% at 80% 42%, rgba(208, 210, 214, 0.18) 0%, transparent 75%),
    radial-gradient(30% 30% at 50% 16%, rgba(208, 210, 214, 0.16) 0%, transparent 75%),
    radial-gradient(30% 30% at 50% 84%, rgba(208, 210, 214, 0.16) 0%, transparent 75%);
  filter: blur(0.2px);
}

.fact-orbit-strong {
  right: -0.5rem;
  top: -0.5rem;
  width: 10.25rem;
  height: 10.25rem;
  opacity: 0.5;
}

#implant-anatomy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#product-catalog {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#products {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#implant-anatomy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/company/anatomy-box-bg-2.webp");
  background-repeat: no-repeat;
  background-size: 140% auto;
  background-position: center 42%;
  filter: brightness(0.37) contrast(0.97) saturate(0.84) blur(2px);
  transform: scale(1.14);
}

#product-catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/company/anatomy-box-bg-2.webp");
  background-repeat: no-repeat;
  background-size: 140% auto;
  background-position: center 42%;
  filter: brightness(0.37) contrast(0.97) saturate(0.84) blur(2px);
  transform: scale(1.14);
}

#products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/company/anatomy-box-bg-2.webp");
  background-repeat: no-repeat;
  background-size: 140% auto;
  background-position: center 42%;
  filter: brightness(0.37) contrast(0.97) saturate(0.84) blur(2px);
  transform: scale(1.14);
}

#implant-anatomy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.78) 58%, rgba(8, 9, 12, 0.84) 100%),
    radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.08) 0%, transparent 78%);
}

#product-catalog::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.78) 58%, rgba(8, 9, 12, 0.84) 100%),
    radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.08) 0%, transparent 78%);
}

#products::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.78) 58%, rgba(8, 9, 12, 0.84) 100%),
    radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.08) 0%, transparent 78%);
}

#implant-anatomy > * {
  position: relative;
  z-index: 1;
}

#product-catalog > * {
  position: relative;
  z-index: 1;
}

#products > * {
  position: relative;
  z-index: 1;
}

.anatomy-surface {
  position: relative;
}

.anatomy-visual-stage {
  position: relative;
  isolation: isolate;
}

.anatomy-visual-stage::before {
  content: "";
  position: absolute;
  inset: -8% -10% -2%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 28% at 58% 22%, rgba(232, 237, 242, 0.13) 0%, transparent 74%),
    radial-gradient(34% 30% at 50% 72%, rgba(192, 192, 192, 0.09) 0%, transparent 72%);
  filter: blur(34px);
}

.anatomy-stage {
  position: relative;
  z-index: 1;
  min-height: 620px;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.anatomy-card {
  position: relative;
  overflow: visible !important;
  z-index: 5;
}

.anatomy-implant-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.06) brightness(1.02);
}

.anatomy-node {
  position: absolute;
  z-index: 6;
}

.anatomy-hotspot {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 243, 244, 0.86);
  background: rgba(10, 11, 14, 0.84);
  box-shadow: 0 0 0 0 rgba(232, 237, 242, 0.35);
  transition:
    transform 380ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 380ms cubic-bezier(0.25, 1, 0.5, 1),
    border-color 380ms cubic-bezier(0.25, 1, 0.5, 1);
  animation: hotspotGlow 2.3s ease-in-out infinite;
}

.anatomy-hotspot::before,
.anatomy-hotspot::after {
  content: "";
  position: absolute;
  inset: 50%;
  translate: -50% -50%;
  border-radius: 999px;
}

.anatomy-hotspot::before {
  width: 0.72rem;
  height: 0.72rem;
  background: #eef1f5;
}

.anatomy-hotspot::after {
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid rgba(242, 243, 244, 0.56);
  animation: anatomyPulse 2s ease-out infinite;
}

.anatomy-node.is-active .anatomy-hotspot {
  transform: scale(1.07);
  border-color: rgba(242, 243, 244, 0.9);
  box-shadow: 0 0 0 0.55rem rgba(232, 237, 242, 0.12);
}

.anatomy-link {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  height: 1px;
  background: rgba(232, 237, 242, 0.45);
  transform-origin: left center;
  transform: rotate(var(--line-rot, 0deg)) scaleX(0);
  opacity: 0;
  transition:
    transform 440ms cubic-bezier(0.25, 1, 0.5, 1),
    opacity 280ms cubic-bezier(0.25, 1, 0.5, 1);
}

.anatomy-popover {
  position: absolute;
  width: 260px;
  z-index: 8;
  --shift-x: 0px;
  --shift-y: 0px;
  border-radius: 1rem;
  border: 1px solid rgba(192, 192, 192, 0.18);
  background: linear-gradient(170deg, rgba(17, 18, 20, 0.94) 0%, rgba(8, 9, 11, 0.96) 100%);
  backdrop-filter: blur(8px);
  padding: 0.8rem 0.9rem;
  opacity: 0;
  transform: translate(var(--shift-x), calc(8px + var(--shift-y)));
  pointer-events: none;
  transition:
    opacity 320ms cubic-bezier(0.25, 1, 0.5, 1),
    transform 420ms cubic-bezier(0.25, 1, 0.5, 1);
}

.anatomy-node.is-active .anatomy-link {
  transform: rotate(var(--line-rot, 0deg)) scaleX(1);
  opacity: 1;
}

.anatomy-node.is-active .anatomy-popover {
  opacity: 1;
  transform: translate(var(--shift-x), var(--shift-y));
}

.anatomy-popover-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(242, 243, 244, 0.96);
}

.anatomy-popover-text {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(232, 237, 242, 0.78);
}

.node-1 {
  top: 18%;
  left: 52%;
}

.node-1 .anatomy-link {
  --line-rot: -18deg;
  width: 92px;
}

.node-1 .anatomy-popover {
  left: 83px;
  top: -117px;
}

.node-2 {
  top: 44%;
  left: 63%;
}

.node-2 .anatomy-link {
  --line-rot: 8deg;
  width: 78px;
}

.node-2 .anatomy-popover {
  left: 78px;
  top: -93px;
}

.node-3 {
  top: 50%;
  left: 34%;
}

.node-3 .anatomy-link {
  --line-rot: 176deg;
  width: 96px;
}

.node-3 .anatomy-popover {
  right: 98px;
  top: -61px;
}

.node-4 {
  top: 78%;
  left: 51%;
}

.node-4 .anatomy-link {
  --line-rot: -34deg;
  width: 98px;
}

.node-4 .anatomy-popover {
  left: 88px;
  top: -122px;
}

@media (min-width: 768px) {
  .anatomy-implant-image {
    transform: translateY(10px) scale(1.2);
    transform-origin: center;
  }

  .node-1 {
    top: 10.2%;
    left: 52.4%;
  }

  .node-2 {
    top: 41.2%;
    left: 65.6%;
  }

  .node-3 {
    top: 48.2%;
    left: 30.8%;
  }

  .node-4 {
    top: 82.2%;
    left: 51.2%;
  }
}

@media (min-width: 1280px) {
  .anatomy-stage {
    min-height: 0;
  }

  .anatomy-implant-image {
    transform: translateY(-8px) scale(1.1);
  }
}

@keyframes anatomyPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.9;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

@keyframes hotspotGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 0.18rem rgba(232, 237, 242, 0.16),
      0 0 0 0 rgba(232, 237, 242, 0.22);
  }
  55% {
    box-shadow:
      0 0 0 0.24rem rgba(232, 237, 242, 0.2),
      0 0 0 0.75rem rgba(232, 237, 242, 0);
  }
}

@media (max-width: 767px) {
  #implant-anatomy::before {
    background-size: 220% auto;
    background-position: center 34%;
    filter: brightness(0.39) contrast(0.98) saturate(0.86) blur(1.6px);
    transform: scale(1.08);
  }

  #product-catalog::before {
    background-size: 220% auto;
    background-position: center 34%;
    filter: brightness(0.39) contrast(0.98) saturate(0.86) blur(1.6px);
    transform: scale(1.08);
  }

  #products::before {
    background-size: 220% auto;
    background-position: center 34%;
    filter: brightness(0.39) contrast(0.98) saturate(0.86) blur(1.6px);
    transform: scale(1.08);
  }

  #implant-anatomy::after {
    background:
      linear-gradient(160deg, rgba(8, 9, 12, 0.66) 0%, rgba(8, 9, 12, 0.76) 58%, rgba(8, 9, 12, 0.82) 100%),
      radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.07) 0%, transparent 78%);
  }

  #product-catalog::after {
    background:
      linear-gradient(160deg, rgba(8, 9, 12, 0.66) 0%, rgba(8, 9, 12, 0.76) 58%, rgba(8, 9, 12, 0.82) 100%),
      radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.07) 0%, transparent 78%);
  }

  #products::after {
    background:
      linear-gradient(160deg, rgba(8, 9, 12, 0.66) 0%, rgba(8, 9, 12, 0.76) 58%, rgba(8, 9, 12, 0.82) 100%),
      radial-gradient(52% 42% at 76% 34%, rgba(232, 237, 242, 0.07) 0%, transparent 78%);
  }

  .anatomy-stage {
    min-height: 420px;
  }
  .anatomy-hotspot {
    width: 2.65rem;
    height: 2.65rem;
  }
  .anatomy-link,
  .anatomy-popover {
    display: none;
  }
}

.anatomy-mobile-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  isolation: isolate;
}

.anatomy-mobile-popup-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(2, 3, 5, 0.72);
}

.anatomy-mobile-popup-sheet {
  position: absolute;
  z-index: 1;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(192, 192, 192, 0.2);
  background: linear-gradient(170deg, rgba(17, 18, 20, 0.97) 0%, rgba(8, 9, 11, 0.98) 100%);
  padding: 0.95rem 0.95rem 1rem;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.5);
  isolation: isolate;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(232, 237, 242, 0.78);
}

.service-detail-link::after {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 1px solid rgba(232, 237, 242, 0.78);
  border-right: 1px solid rgba(232, 237, 242, 0.78);
  transform: rotate(45deg);
  transition: transform var(--dur-luxury) var(--ease-luxury);
}

.service-detail-link:hover::after {
  transform: rotate(45deg) translateX(2px);
}

.tech-slider-slide {
  animation: techSliderFade 520ms cubic-bezier(0.25, 1, 0.5, 1) both;
}

.tech-slider-slide > div {
  align-items: stretch;
}

.tech-slider-left,
.tech-slider-right {
  min-height: 0;
}

.tech-slider-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tech-slider-right {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0.85rem;
}

.tech-slider-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.9) contrast(1.02) saturate(0.82);
}

.tech-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.35);
  background: linear-gradient(150deg, rgba(17, 18, 20, 0.9) 0%, rgba(8, 9, 11, 0.95) 100%);
  color: rgba(232, 237, 242, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition:
    transform var(--dur-luxury) var(--ease-luxury),
    border-color var(--dur-luxury-fast) var(--ease-luxury),
    box-shadow var(--dur-luxury-fast) var(--ease-luxury),
    color var(--dur-luxury-fast) var(--ease-luxury);
}

.tech-slider-arrow:hover {
  transform: translateY(-50%) scale(1.03);
  border-color: rgba(232, 237, 242, 0.58);
  color: rgba(242, 243, 244, 1);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(192, 192, 192, 0.1);
}

.tech-slider-arrow-prev {
  left: -0.95rem;
}

.tech-slider-arrow-next {
  right: -0.95rem;
}

.tech-slider-counter {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  color: rgba(232, 237, 242, 0.66);
}

.tech-slider-inline-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: -0.25rem;
}

.tech-slider-inline-arrow {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.35);
  background: linear-gradient(150deg, rgba(17, 18, 20, 0.9) 0%, rgba(8, 9, 11, 0.95) 100%);
  color: rgba(232, 237, 242, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition:
    transform var(--dur-luxury) var(--ease-luxury),
    border-color var(--dur-luxury-fast) var(--ease-luxury),
    box-shadow var(--dur-luxury-fast) var(--ease-luxury),
    color var(--dur-luxury-fast) var(--ease-luxury);
}

.tech-slider-inline-arrow:hover,
.tech-slider-inline-arrow:focus-visible {
  transform: translate3d(0, -1px, 0) scale(1.02);
  border-color: rgba(232, 237, 242, 0.58);
  color: rgba(242, 243, 244, 1);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(192, 192, 192, 0.1);
  outline: none;
}

.tech-slider-inline-counter {
  flex: 1;
  text-align: center;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  color: rgba(232, 237, 242, 0.66);
}

@keyframes techSliderFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .tech-slider-left,
  .tech-slider-right {
    min-height: 0;
  }

  .tech-slider-right {
    min-height: 0;
    padding: 0.95rem;
  }
}

@media (max-width: 767px) {
  .tech-slider-arrow {
    top: auto;
    bottom: -1.2rem;
    transform: none;
    width: 2.7rem;
    height: 2.7rem;
  }

  .tech-slider-arrow-prev {
    left: calc(50% - 3.1rem);
  }

  .tech-slider-arrow-next {
    right: calc(50% - 3.1rem);
  }

  .tech-slider-counter {
    margin-top: 2.2rem;
  }
}

@media (min-width: 1024px) {
  .regional-partners-image {
    transform: translate3d(5px, 0, 0) scale(1);
  }
}

.logo-glow {
  position: absolute;
  inset: -8px -18px;
  background:
    radial-gradient(46% 46% at 34% 34%, rgba(232, 237, 242, 0.34), transparent 72%),
    radial-gradient(40% 40% at 68% 60%, rgba(192, 192, 192, 0.22), transparent 76%);
  filter: blur(10px);
  opacity: 0.62;
  pointer-events: none;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 30;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
  transition: transform 1.15s cubic-bezier(0.19, 1, 0.22, 1);
}

.logo-link,
.logo-link * {
  cursor: pointer;
}

.logo-link img {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
  transition: transform 1.15s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  -webkit-user-drag: none;
}

@media (hover: hover) and (pointer: fine) {
  .logo-link:hover {
    transform: translate3d(0, -1px, 0) scale(1.008);
  }

  .logo-link:hover img {
    transform: translate3d(0, -1px, 0) scale(1.018);
  }
}

.hero-image-glow {
  position: absolute;
  inset: -18% -12% -16% -14%;
  background:
    radial-gradient(55% 55% at 30% 20%, rgba(232, 237, 242, 0.35), transparent 65%),
    radial-gradient(40% 40% at 80% 70%, rgba(192, 192, 192, 0.25), transparent 70%);
  filter: blur(26px);
  opacity: 0.85;
  pointer-events: none;
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/hero-bg-korea-smooth.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.86;
  filter: grayscale(0.42) contrast(1.12) brightness(1.06) saturate(1.18);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.38), rgba(10, 10, 10, 0.6)),
    linear-gradient(100deg, rgba(8, 8, 8, 0.28) 0%, rgba(10, 10, 10, 0.48) 55%, rgba(10, 10, 10, 0.64) 100%);
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-image-smoke {
  position: absolute;
  inset: -10% -10% -5% -10%;
  background:
    radial-gradient(45% 45% at 20% 30%, rgba(255, 255, 255, 0.12), transparent 70%),
    radial-gradient(40% 40% at 75% 25%, rgba(232, 237, 242, 0.15), transparent 70%),
    radial-gradient(55% 55% at 65% 70%, rgba(192, 192, 192, 0.12), transparent 75%);
  filter: blur(32px);
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-image-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.18) 0%, transparent 55%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .hero-text-reveal {
    position: relative;
    z-index: 20;
  }

  .hero-cta,
  .hero-cta .premium-button {
    z-index: 30;
  }

  .hero-visual-stack {
    position: relative;
    z-index: 0;
    pointer-events: none;
    transform: translate3d(0, -150px, 0);
  }
}

@media (max-width: 767px) {
  .hero-section {
    margin-top: -96px;
    padding-top: 2.75rem;
    margin-bottom: -150px;
  }

  .hero-text-reveal {
    padding-top: calc(0.85rem + 60px);
  }

  .hero-kicker {
    display: none;
  }

  .hero-visual-stack {
    transform: translate3d(0, -110px, 0);
    display: flex;
    justify-content: center;
  }

  .hero-main-stage {
    width: 100%;
    margin-inline: auto;
  }
}

:where(
  .card,
  .hub-card,
  .hub-proof-row div,
  .hub-product-main,
  .hub-flow-grid div,
  .regional-links a,
  .region-links a,
  .contact-product-points div,
  .hub-media-card,
  .contact-product-panel,
  .page-callout,
  .premium-card,
  .partner-card
) {
  transform: translate3d(0, 0, 0);
  transition:
    transform 520ms var(--ease-premium),
    border-color 520ms var(--ease-premium),
    background 520ms var(--ease-premium),
    background-color 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
  will-change: transform;
}

.hub-product-layout :is(.hub-product-main, .hub-card) {
  transform: none;
  will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
  :is(
    .card,
    .hub-card,
    .hub-proof-row div,
    .hub-product-main,
    .hub-flow-grid div,
    .regional-links a,
    .region-links a,
    .contact-product-points div,
    .hub-media-card,
    .contact-product-panel,
    .page-callout,
    .premium-card,
    .partner-card
  ):is(:hover, :focus-visible, :focus-within) {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(232, 237, 242, 0.28);
    background-color: rgba(17, 18, 20, 0.42);
    box-shadow:
      inset 0 1px 0 rgba(232, 237, 242, 0.08),
      0 16px 34px rgba(0, 0, 0, 0.34),
      0 0 26px rgba(154, 198, 255, 0.08);
    outline: none;
  }

  .hub-product-layout :is(.hub-product-main, .hub-card):is(:hover, :focus-visible, :focus-within) {
    transform: none;
  }
}
