:root {
  color-scheme: light;
  --site-header-height: 88px;
  --site-max-width: 1536px;
  --site-soft-hero-overlay: linear-gradient(
    112deg,
    rgba(8, 21, 32, 0.09) 0%,
    rgba(8, 21, 32, 0.04) 44%,
    rgba(8, 21, 32, 0.01) 100%
  );
  --site-soft-hero-grid-line: rgba(255, 255, 255, 0.01);
  --site-soft-hero-grid-mask: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.09),
    rgba(0, 0, 0, 0.01)
  );
  --site-soft-hero-text-shadow: 0 2px 12px rgba(8, 21, 32, 0.24);
  --site-soft-hero-glow-opacity: 0.3;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

body:not([data-header-overlay="true"]) main {
  padding-top: var(--site-header-height);
}

body[data-header-overlay="true"] main > section:first-of-type {
  padding-top: calc(var(--site-header-height) + 1.5rem);
}

body[data-header-overlay="true"] main > section.business-hero-shell:first-of-type {
  padding-top: 0;
}

.business-hero-shell {
  position: relative;
  overflow: hidden;
  background: #081520;
}

@keyframes businessHeroImageDrift {
  0% {
    transform: scale(var(--site-hero-drift-scale-start, 1.05)) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(var(--site-hero-drift-scale-mid, 1.09)) translate3d(
      var(--site-hero-drift-x-mid, -1.2%),
      var(--site-hero-drift-y-mid, -0.8%),
      0
    );
  }
  100% {
    transform: scale(var(--site-hero-drift-scale-end, 1.06)) translate3d(
      var(--site-hero-drift-x-end, 1%),
      var(--site-hero-drift-y-end, 0.7%),
      0
    );
  }
}

.business-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #00879f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.business-kicker-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #00879f;
  flex: 0 0 auto;
}

.business-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.business-hero-bg,
.site-hero-drift-image {
  transform-origin: center center;
  will-change: transform;
  animation: businessHeroImageDrift var(--site-hero-drift-duration, 18s) ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  img.business-hero-bg,
  .site-hero-drift-image {
    animation: none;
    transform: none;
  }
}

.business-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--site-soft-hero-overlay);
}

.business-hero-grid {
  background-image:
    linear-gradient(var(--site-soft-hero-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--site-soft-hero-grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: var(--site-soft-hero-grid-mask);
}

.business-hero-glow {
  border-radius: 999px;
  filter: blur(18px);
  opacity: var(--site-soft-hero-glow-opacity);
}

.business-hero-glow--primary {
  background: rgba(0, 135, 159, 0.9);
}

.business-hero-glow--warm {
  background: rgba(210, 163, 80, 0.82);
}

.business-hero-shell [data-hero-title],
.business-hero-shell [data-hero-description],
.business-hero-shell [data-hero-chip] {
  text-shadow: var(--site-soft-hero-text-shadow);
}

.business-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: var(--site-max-width);
  min-height: 100svh;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1rem;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.45s ease;
}

.business-hero-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.business-hero-title {
  max-width: 56rem;
  margin: 0 auto;
  font-family: "Work Sans", "Noto Sans TC", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-wrap: balance;
}

.business-hero-description {
  max-width: 42rem;
  margin: 0 auto;
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.625;
}

.business-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: justify-content 0.45s ease;
}

.business-hero-shell.is-video-playing .business-hero-inner {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

.business-hero-shell.is-video-playing .business-hero-content {
  justify-content: flex-end;
}

.business-hero-shell.is-video-playing .business-hero-title,
.business-hero-shell.is-video-playing .business-hero-description {
  margin-left: auto;
  margin-right: 0;
}

.business-hero-shell.is-video-playing .business-hero-actions {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .business-hero-shell.is-video-playing .business-hero-content {
    padding-bottom: clamp(1.8rem, 8vh, 3.8rem);
  }

  .business-hero-shell.is-video-playing .business-hero-inner {
    transform: translate3d(clamp(8px, 4vw, 24px), 0, 0);
  }
}

@media (min-width: 768px) {
  .business-hero-shell.is-video-playing .business-hero-content {
    padding-bottom: clamp(2.4rem, 8vh, 5.2rem);
  }

  .business-hero-shell.is-video-playing .business-hero-inner {
    transform: translate3d(clamp(24px, 8vw, 140px), 0, 0);
  }
}

.business-hero-cta {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.business-hero-cta:hover {
  transform: translate3d(4px, 0, 0);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.business-hero-cta--primary {
  background: #ffffff;
  color: #006578;
  border-color: #ffffff;
}

.business-hero-cta--primary:hover {
  background: #f3f7f8;
  color: #005b6b;
  border-color: #f3f7f8;
}

.business-hero-cta--ghost {
  background: #00879f;
  color: #ffffff;
  border-color: #00879f;
}

.business-hero-cta--ghost:hover {
  background: #0a95ad;
  color: #ffffff;
  border-color: #0a95ad;
}

.business-hero-cta .material-symbols-outlined {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.business-hero-cta:hover .material-symbols-outlined {
  transform: translateX(2px);
}

@media (max-width: 639px) {
  .business-hero-actions {
    align-items: center;
    gap: 0.6rem;
  }

  .business-hero-shell.is-video-playing .business-hero-actions {
    align-items: flex-end;
  }

  .business-hero-cta {
    width: auto;
    min-width: 10.5rem;
    padding: 0.68rem 1rem;
    font-size: 0.86rem;
  }
}

@media (min-width: 640px) {
  .business-hero-content {
    padding: 3rem 1.5rem;
  }

  .business-hero-title {
    font-size: 3rem;
  }

  .business-hero-description {
    font-size: 1.125rem;
  }

  .business-hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .business-hero-cta {
    width: auto;
  }
}

@media (min-width: 768px) {
  .business-hero-content {
    padding: 3.5rem 2rem;
  }

  .business-hero-title {
    font-size: 3.75rem;
  }

  .business-hero-description {
    font-size: 1.25rem;
  }
}

body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-content {
  justify-content: center;
  padding-bottom: clamp(1.8rem, 6vh, 3.4rem);
}

body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-inner {
  width: min(100%, 48rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transform: none;
}

body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-title,
body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-description {
  margin-left: auto;
  margin-right: auto;
}

body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-actions {
  justify-content: center;
}

@media (min-width: 1280px) {
  body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-content {
    justify-content: flex-end;
    padding-bottom: clamp(2.4rem, 8vh, 4.8rem);
  }

  body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-inner {
    width: min(100%, 42rem);
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    transform: translate3d(clamp(16px, 3vw, 56px), 0, 0);
  }

  body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-title,
  body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-description {
    margin-left: auto;
    margin-right: 0;
  }

  body[data-page="product"] .business-hero-shell.is-video-playing .business-hero-actions {
    justify-content: flex-end;
  }
}

.max-w-screen-2xl,
.container {
  max-width: var(--site-max-width) !important;
}

[class^="rounded"],
[class*=" rounded"] {
  border-radius: 0 !important;
}

.no-scrollbar {
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    to bottom,
    rgba(9, 18, 28, 0.42),
    rgba(9, 18, 28, 0.18)
  );
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
body:not([data-header-overlay="true"]) .site-header {
  border-color: rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.site-header__row {
  position: relative;
  overflow: visible;
}

.site-desktop-nav {
  position: relative;
  z-index: 60;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(1rem, 1.4vw, 1.8rem);
  min-width: 0;
  padding-inline: 1rem;
  font-size: 1rem;
  line-height: 1.2;
}

.site-brand,
.site-header .site-nav-link,
.site-language-trigger,
.site-mobile-language-select,
.site-mobile-language-icon,
.site-menu-button {
  color: #f8fafc;
}

body[data-header-overlay="true"] .site-header:not(.is-scrolled):not(.is-menu-open) .site-brand,
body[data-header-overlay="true"] .site-header:not(.is-scrolled):not(.is-menu-open) .site-mobile-language-select,
body[data-header-overlay="true"] .site-header:not(.is-scrolled):not(.is-menu-open) .site-mobile-language-icon,
body[data-header-overlay="true"] .site-header:not(.is-scrolled):not(.is-menu-open) .site-menu-button {
  text-shadow: 0 4px 18px rgba(15, 23, 42, 0.4);
}

body[data-header-overlay="true"] .site-header:not(.is-scrolled):not(.is-menu-open) .site-brand__logo {
  filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.28));
}

.site-header.is-scrolled .site-brand,
.site-header.is-scrolled .site-nav-link,
.site-header.is-scrolled .site-language-trigger,
.site-header.is-scrolled .site-mobile-language-select,
.site-header.is-scrolled .site-mobile-language-icon,
.site-header.is-scrolled .site-menu-button,
.site-header.is-menu-open .site-brand,
.site-header.is-menu-open .site-nav-link,
.site-header.is-menu-open .site-language-trigger,
.site-header.is-menu-open .site-mobile-language-select,
.site-header.is-menu-open .site-mobile-language-icon,
.site-header.is-menu-open .site-menu-button,
body:not([data-header-overlay="true"]) .site-brand,
body:not([data-header-overlay="true"]) .site-nav-link,
body:not([data-header-overlay="true"]) .site-language-trigger,
body:not([data-header-overlay="true"]) .site-mobile-language-select,
body:not([data-header-overlay="true"]) .site-mobile-language-icon,
body:not([data-header-overlay="true"]) .site-menu-button {
  color: #0f172a;
}

.site-brand:hover,
.site-header .site-nav-link:hover,
.site-language-trigger:hover,
.site-menu-button:hover {
  color: #d7f7ff;
}

.site-brand {
  display: inline-flex;
  align-items: center;
}

.site-brand__logo {
  display: block;
  width: auto;
  height: 3.35rem;
  max-width: min(15.5rem, 100%);
  object-fit: contain;
}

.site-footer-logo {
  display: block;
  width: auto;
  height: 4.5rem;
  object-fit: contain;
}

.site-header.is-scrolled .site-brand:hover,
.site-header.is-scrolled .site-nav-link:hover,
.site-header.is-scrolled .site-language-trigger:hover,
.site-header.is-scrolled .site-menu-button:hover,
.site-header.is-menu-open .site-brand:hover,
.site-header.is-menu-open .site-nav-link:hover,
.site-header.is-menu-open .site-language-trigger:hover,
.site-header.is-menu-open .site-menu-button:hover,
body:not([data-header-overlay="true"]) .site-brand:hover,
body:not([data-header-overlay="true"]) .site-nav-link:hover,
body:not([data-header-overlay="true"]) .site-language-trigger:hover,
body:not([data-header-overlay="true"]) .site-menu-button:hover {
  color: #00879f;
}

.site-nav-link {
  position: relative;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-bottom: 0.25rem;
  font-size: inherit;
  transition: color 0.25s ease;
}

.site-nav-link[data-active="true"] {
  color: #b8f0ff;
  font-weight: 700;
}

.site-header.is-scrolled .site-nav-link[data-active="true"],
.site-header.is-menu-open .site-nav-link[data-active="true"],
body:not([data-header-overlay="true"]) .site-nav-link[data-active="true"] {
  color: #00879f;
}

.site-nav-link[data-active="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: currentColor;
  border-radius: 0;
}

.site-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 1rem;
  z-index: 59;
}

.site-dropdown-menu {
  top: calc(100% + 0.75rem);
  z-index: 70;
  border-radius: 0 !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  white-space: normal;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.site-dropdown:hover .site-dropdown-menu,
.site-dropdown:focus-within .site-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-dropdown-link,
.site-language-item {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.75rem 0.9rem;
  text-align: left;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.site-dropdown-link {
  color: #475569;
}

.site-dropdown-link:hover,
.site-dropdown-link[data-active="true"] {
  background: rgba(0, 135, 159, 0.1);
  color: #006578;
}

.site-dropdown-link[data-active="true"] {
  font-weight: 700;
}

.site-language-menu {
  width: 14rem;
}

.site-language-item {
  color: #475569;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-language-item:hover {
  background: rgba(0, 135, 159, 0.1);
  color: #006578;
}

.site-mobile-link,
.site-mobile-group-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.85);
  background: transparent;
  padding: 0.95rem 0.35rem;
  color: #1f2937;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  transition: color 0.25s ease;
}

.site-mobile-tools {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  flex-shrink: 0;
}

.site-mobile-language-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 6.75rem;
}

.site-mobile-language-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 5.75rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.3rem 1rem 0.3rem 0;
  color: #f8fafc;
  -webkit-text-fill-color: currentColor;
  opacity: 1;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  outline: none;
}

.site-mobile-language-select:focus {
  outline: none;
}

.site-mobile-language-select option {
  color: #0f172a;
}

.site-mobile-language-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1rem;
}

.site-menu-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: 0;
}

.site-menu-button__bars {
  position: relative;
  display: block;
  width: 1.4rem;
  height: 1rem;
}

.site-menu-button__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 0;
  background: currentColor;
  transition:
    top 0.25s ease,
    bottom 0.25s ease,
    opacity 0.2s ease,
    transform 0.25s ease;
}

.site-menu-button__bar:nth-child(1) {
  top: 0;
}

.site-menu-button__bar:nth-child(2) {
  top: calc(50% - 1px);
}

.site-menu-button__bar:nth-child(3) {
  bottom: 0;
}

.site-menu-button[aria-expanded="true"] .site-menu-button__bar:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.site-menu-button[aria-expanded="true"] .site-menu-button__bar:nth-child(2) {
  opacity: 0;
}

.site-menu-button[aria-expanded="true"] .site-menu-button__bar:nth-child(3) {
  bottom: calc(50% - 1px);
  transform: rotate(-45deg);
}

.site-mobile-link[data-active="true"],
.site-mobile-group-toggle[data-active="true"] {
  color: #006578;
}

.site-mobile-group-toggle .material-symbols-outlined {
  transition: transform 0.25s ease;
}

.site-mobile-group-toggle[aria-expanded="true"] .material-symbols-outlined {
  transform: rotate(180deg);
}

.site-mobile-sublink {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 0.72rem 0.35rem;
  color: #475569;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.site-mobile-sublink:hover,
.site-mobile-sublink[data-active="true"] {
  color: #006578;
}

.site-menu-button[aria-expanded="true"] {
  color: #006578;
}

.site-footer-link {
  transition: color 0.25s ease;
}

@media (max-width: 1019px) {
  .site-header .site-desktop-nav,
  .site-header .site-desktop-tools {
    display: none;
  }

  .site-header .site-mobile-tools {
    display: inline-flex;
  }

  .site-header .site-menu-button {
    display: inline-flex;
  }

  .site-header .site-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 9.5rem);
    font-size: 1.125rem;
    line-height: 1.15;
  }

  .site-brand__logo {
    height: 2.65rem;
    max-width: min(12rem, 100%);
  }

  body[data-header-overlay="true"] main > section:first-of-type {
    padding-top: calc(var(--site-header-height) + 1rem);
  }
}

@media (min-width: 1020px) {
  .site-header .site-desktop-nav,
  .site-header .site-desktop-tools {
    display: flex;
  }

  .site-header .site-desktop-tools {
    position: relative;
    z-index: 61;
    flex: 0 0 auto;
  }

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

  .site-header .site-mobile-menu-panel,
  .site-header .site-mobile-group-panel {
    display: none !important;
  }
}
