.imt-shell-root {
  --imt-shell-primary: #ea4c89;
  --imt-shell-text: #111111;
  --imt-shell-text-muted: #666666;
  --imt-shell-surface: rgba(255, 255, 255, 0.92);
  --imt-shell-border: rgba(17, 17, 17, 0.08);
  --imt-shell-shadow: 0 16px 48px rgba(17, 17, 17, 0.12);
  --imt-shell-footer-bg: #111111;
  --imt-shell-footer-text: #ffffff;
  --imt-shell-footer-muted: rgba(255, 255, 255, 0.6);
  --imt-shell-radius-lg: 24px;
  --imt-shell-radius-md: 16px;
  --imt-shell-radius-sm: 12px;
}


.imt-shell-root {
  color: var(--imt-shell-text);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  line-height: 1.5;
}

.imt-shell-root,
.imt-shell-root * {
  box-sizing: border-box;
}

.imt-shell-root a {
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.imt-shell-root button,
.imt-shell-root input,
.imt-shell-root select,
.imt-shell-root textarea {
  font: inherit;
  color: inherit;
  line-height: inherit;
}

.imt-shell-root button {
  border: 0;
  background: transparent;
}

.imt-shell-root img {
  max-width: none;
  height: auto;
  vertical-align: middle;
}

.imt-shell-root svg {
  flex-shrink: 0;
}

.imt-shell-sidebar-root {
  display: contents;
}

.imt-shell-sidebar-root {
  --imt-shell-sidebar-collapsed-width: 56px;
  --imt-shell-sidebar-expanded-width: 182px;
  --imt-shell-sidebar-width: 0px;
  --webapp-sidebar-width: 0px;
}

@media (min-width: 768px) {
  .imt-shell-sidebar-root[data-sidebar-state="expanded"] {
    --imt-shell-sidebar-width: var(--imt-shell-sidebar-expanded-width);
    --webapp-sidebar-width: var(--imt-shell-sidebar-expanded-width);
  }

  .imt-shell-sidebar-root[data-sidebar-state="collapsed"] {
    --imt-shell-sidebar-width: var(--imt-shell-sidebar-collapsed-width);
    --webapp-sidebar-width: var(--imt-shell-sidebar-collapsed-width);
  }
}

.imt-shell-sidebar-root {
  display: contents;
}

.imt-shell-sidebar {
  box-sizing: border-box;
}

.imt-shell-sidebar--desktop {
  position: fixed;
  inset-inline-start: 0;
  top: 60px;
  z-index: 55;
  display: none;
  height: calc(100vh - 60px);
  max-height: calc(100vh - 60px);
  flex-shrink: 0;
  overflow: auto;
  border-inline-end: 1px solid rgb(226 232 240 / 0.72);
  background: rgb(247 247 247 / 1);
  padding: 16px 8px;
}

.imt-shell-sidebar--mobile {
  position: fixed;
  top: 60px;
  z-index: 60;
  display: flex;
  width: 100vw;
  gap: 16px;
  overflow-x: auto;
  border-top: 1px solid rgb(226 232 240 / 1);
  border-bottom: 1px solid rgb(226 232 240 / 1);
  background: rgb(255 255 255 / 0.8);
  padding: 16px 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.imt-shell-sidebar--mobile::-webkit-scrollbar {
  display: none;
}

.imt-shell-sidebar__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.imt-shell-sidebar__upgrade {
  display: flex;
  height: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: rgb(255 255 255 / 0.8);
  text-decoration: none;
}

.imt-shell-sidebar__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.imt-shell-sidebar__group-name {
  height: 24px;
  overflow: hidden;
  padding: 0 16px;
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.imt-shell-sidebar__toggle {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f0f0f0;
  color: #4d4d4d;
  transition: transform 0.3s ease;
}

.imt-shell-sidebar__toggle-icon {
  width: 16px;
  height: 16px;
}

.imt-shell-sidebar__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}

.imt-shell-sidebar__item {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  border: 0.5px solid transparent;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    gap 0.3s ease;
}

.imt-shell-sidebar__item:hover,
.imt-shell-sidebar__item:focus-visible,
.imt-shell-sidebar__item--active {
  border-color: #ea4c89;
  background: #faccde;
  box-shadow: 0 4px 12px 0 rgba(255, 166, 201, 0.5);
}

.imt-shell-sidebar__item--active {
  font-weight: 600;
}

.imt-shell-sidebar__item-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.imt-shell-sidebar__item-icon > * {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.imt-shell-sidebar__item-icon-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.imt-shell-sidebar__item-icon-svg--padded {
  padding: 8px;
}

.imt-shell-sidebar__item-label {
  width: 100px;
  overflow: hidden;
  padding-right: 8px;
  font-size: 14px;
  text-overflow: ellipsis;
  transition: width 0.3s ease;
  white-space: nowrap;
}

.imt-shell-sidebar-root[data-new-ios-app="1"]
  .imt-shell-sidebar--desktop
  a[data-href="/document/"],
.imt-shell-sidebar-root[data-new-ios-app="1"]
  .imt-shell-sidebar--mobile
  a[data-href="/document/"] {
  display: none !important;
}

@media (min-width: 768px) {
  .imt-shell-sidebar-root[data-reserve-layout-space="true"] {
    display: block;
    width: var(--imt-shell-sidebar-width);
    min-width: var(--imt-shell-sidebar-width);
    flex: 0 0 var(--imt-shell-sidebar-width);
  }

  .imt-shell-sidebar-root[data-reserve-layout-space="true"] {
    display: block;
    width: var(--imt-shell-sidebar-width);
    min-width: var(--imt-shell-sidebar-width);
    flex: 0 0 var(--imt-shell-sidebar-width);
  }

  .imt-shell-sidebar--desktop {
    display: flex;
    width: var(--imt-shell-sidebar-width);
    flex-direction: column;
    gap: 16px;
  }

  .imt-shell-sidebar--mobile {
    display: none;
  }

  .imt-shell-sidebar-root[data-sidebar-state="collapsed"] .imt-shell-sidebar--desktop {
    width: var(--imt-shell-sidebar-collapsed-width);
  }

  .imt-shell-sidebar-root[data-sidebar-state="collapsed"] .imt-shell-sidebar__group {
    justify-content: center;
  }

  .imt-shell-sidebar-root[data-sidebar-state="collapsed"] .imt-shell-sidebar__group-name {
    display: none;
  }

  .imt-shell-sidebar-root[data-sidebar-state="collapsed"] .imt-shell-sidebar__toggle {
    transform: rotate(180deg);
  }

  .imt-shell-sidebar-root[data-sidebar-state="collapsed"] .imt-shell-sidebar__item {
    gap: 0;
  }

  .imt-shell-sidebar-root[data-sidebar-state="collapsed"] .imt-shell-sidebar__item-label {
    width: 0;
    padding-right: 0;
  }

  .imt-shell-sidebar-root[data-sidebar-state="collapsed"] .imt-shell-sidebar__upgrade-image-mini {
    display: block;
  }

  .imt-shell-sidebar-root[data-sidebar-state="collapsed"] .imt-shell-sidebar__upgrade-image {
    display: none;
  }

  .imt-shell-sidebar-root[data-sidebar-state="expanded"] .imt-shell-sidebar--desktop {
    width: var(--imt-shell-sidebar-expanded-width);
  }

  .imt-shell-sidebar-root[data-sidebar-state="expanded"] .imt-shell-sidebar__upgrade-image-mini {
    display: none;
  }

  .imt-shell-sidebar-root[data-sidebar-state="expanded"] .imt-shell-sidebar__upgrade-image {
    display: block;
  }
}

@media (max-width: 767px) {
  .imt-shell-sidebar-root {
    display: contents;
  }

  .imt-shell-sidebar-root {
    display: contents;
  }
}

.imt-shell-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 10020;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 16px;
  background: transparent;
  box-shadow: none;
  --imt-shell-frost-bg: rgb(255 255 255 / 0.82);
  --imt-shell-frost-bg-strong: rgb(255 255 255 / 0.9);
  --imt-shell-frost-border: rgb(226 232 240 / 0.72);
}

[data-theme="dark"] .imt-shell-header--supports-dark-mode {
  --imt-shell-frost-bg: rgb(24 24 27 / 0.82);
  --imt-shell-frost-bg-strong: rgb(24 24 27 / 0.92);
  --imt-shell-frost-border: rgb(255 255 255 / 0.08);
}

@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .imt-shell-header--supports-dark-mode {
    --imt-shell-frost-bg: rgb(24 24 27 / 0.82);
    --imt-shell-frost-bg-strong: rgb(24 24 27 / 0.92);
    --imt-shell-frost-border: rgb(255 255 255 / 0.08);
  }
}

.imt-shell-header::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 60px;
  background: linear-gradient(
      180deg,
      rgb(255 255 255 / 0.9) 0%,
      rgb(255 255 255 / 0.84) 100%
    ),
    var(--imt-shell-frost-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .imt-shell-header--supports-dark-mode::before {
  background: linear-gradient(
      180deg,
      rgb(30 30 34 / 0.92) 0%,
      rgb(22 22 26 / 0.88) 100%
    ),
    var(--imt-shell-frost-bg);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.28);
}

@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode::before {
    background: linear-gradient(
        180deg,
        rgb(30 30 34 / 0.92) 0%,
        rgb(22 22 26 / 0.88) 100%
      ),
      var(--imt-shell-frost-bg);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.28);
  }
}

.imt-shell-header--panel-open {
  box-shadow: none;
}

.imt-shell-header__left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.imt-shell-header__brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.imt-shell-header__logo {
  width: 32px;
  height: 32px;
}

.imt-shell-header__brand-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #333333;
}

[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__brand-name,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__nav
  > a,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__action--account,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__toggle,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__trigger,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__more-trigger,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__section-label--default,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__section-item--active,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__more-link,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__locale-trigger,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__locale-option--default {
  color: rgb(244 244 245 / 0.96);
}

@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__brand-name,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__nav
    > a,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__action--account,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__toggle,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__trigger,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__more-trigger,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__section-label--default,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__section-item--active,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__more-link,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__locale-trigger,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__locale-option--default {
    color: rgb(244 244 245 / 0.96);
  }
}

[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__toggle:hover,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__action--account:hover,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__locale-trigger:hover {
  background: rgb(255 255 255 / 0.08);
}

@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__toggle:hover,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__action--account:hover,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__locale-trigger:hover {
    background: rgb(255 255 255 / 0.08);
  }
}

[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__panel,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__more-panel,
[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__locale-menu {
  background: linear-gradient(
      180deg,
      rgb(30 30 34 / 0.94) 0%,
      rgb(22 22 26 / 0.9) 100%
    ),
    var(--imt-shell-frost-bg-strong);
  color: rgb(244 244 245 / 0.96);
  box-shadow: 0 18px 48px rgb(0 0 0 / 0.36);
}

@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__panel,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__more-panel,
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__locale-menu {
    background: linear-gradient(
        180deg,
        rgb(30 30 34 / 0.94) 0%,
        rgb(22 22 26 / 0.9) 100%
      ),
      var(--imt-shell-frost-bg-strong);
    color: rgb(244 244 245 / 0.96);
    box-shadow: 0 18px 48px rgb(0 0 0 / 0.36);
  }
}

[data-theme="dark"]
  .imt-shell-header--supports-dark-mode
  .imt-shell-header__section-divider {
  background: rgb(255 255 255 / 0.08);
}

@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"])
    .imt-shell-header--supports-dark-mode
    .imt-shell-header__section-divider {
    background: rgb(255 255 255 / 0.08);
  }
}

.imt-shell-header__nav {
  margin-left: 16px;
  gap: 4px;
}

.imt-shell-header__nav > a {
  display: inline-flex;
  align-items: center;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.imt-shell-header__nav > a:hover {
  color: var(--imt-shell-primary);
}

.imt-shell-header__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
}

.imt-shell-header__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.imt-shell-header__action:hover {
  text-decoration: none;
}

.imt-shell-header__action--show-from-lg,
.imt-shell-header__action--show-from-xl {
  display: none;
}

.imt-shell-header__action--upgrade {
  gap: 4px;
  font-weight: 500;
  color: var(--imt-shell-primary);
}

.imt-shell-header__action--account {
  border-radius: 8px;
  padding: 8px;
  color: #333333;
  transition: background-color 0.2s ease;
}

.imt-shell-header__action--account:hover {
  background: rgb(255 255 255 / 0.52);
}

.imt-shell-header__action--install {
  gap: 8px;
  height: 40px;
  border-radius: 8px;
  background: #111111;
  padding: 0 16px;
  font-size: 16px;
  color: #ffffff;
}

.imt-shell-header__action--install:hover {
  color: #ffffff;
}

.imt-shell-header__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.imt-shell-header__action-icon > svg,
.imt-shell-header__action-icon > img {
  width: 24px;
  height: 24px;
}

.imt-shell-header__action-icon--upgrade {
  color: var(--imt-shell-primary);
}

.imt-shell-header__install-label--from-3xl,
.imt-shell-header__install-label--from-4xl,
.imt-shell-header__install-simple-label--hidden {
  display: none;
}

.imt-shell-header__mobile {
  position: relative;
  z-index: 1;
  gap: 16px;
}

.imt-shell-header__nav,
.imt-shell-header__actions,
.imt-shell-header__mobile {
  align-items: center;
}

.imt-shell-header__cta {
  border-radius: 9999px;
  background: var(--imt-shell-primary);
  padding: 8px 20px !important;
  font-weight: 600;
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.imt-shell-header__cta:hover {
  background: rgb(234 76 137 / 0.9);
}

.imt-shell-header__toggle,
.imt-shell-header__trigger,
.imt-shell-header__locale-trigger,
.imt-shell-header__locale-option {
  cursor: pointer;
}

.imt-shell-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 8px;
  color: #374151;
  transition: background-color 0.2s ease;
}

.imt-shell-header__toggle:hover {
  background: rgb(255 255 255 / 0.52);
}

.imt-shell-header__toggle-icon {
  width: 24px;
  height: 24px;
}

.imt-shell-header__nav-item,
.imt-shell-header__more {
  position: relative;
}

.imt-shell-header__trigger,
.imt-shell-header__more-trigger {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333333;
  transition: color 0.2s ease;
}

.imt-shell-root .imt-shell-header__trigger,
.imt-shell-root .imt-shell-header__more-trigger,
.imt-shell-root .imt-shell-header__section-link,
.imt-shell-root .imt-shell-header__section-item,
.imt-shell-root .imt-shell-header__more-link,
.imt-shell-root .imt-shell-header__locale-trigger,
.imt-shell-root .imt-shell-header__locale-option {
  letter-spacing: normal;
  text-transform: none;
}

.imt-shell-header__trigger:hover,
.imt-shell-header__more-trigger:hover {
  color: var(--imt-shell-primary);
}

.imt-shell-header__trigger--active,
.imt-shell-header__more-trigger--active {
  color: var(--imt-shell-primary);
}

.imt-shell-header__trigger--active {
  font-weight: 700;
}

.imt-shell-header__nav-text {
  display: inline-block;
}

.imt-shell-header__nav-text--current {
  color: var(--imt-shell-primary);
  font-weight: 700;
  border-bottom: 1.5px solid currentcolor;
  line-height: 1.2;
  padding-bottom: 1px;
}

.imt-shell-header__trigger-icon,
.imt-shell-header__more-trigger-icon,
.imt-shell-header__locale-trigger-icon {
  margin-left: 4px;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.imt-shell-header__trigger-icon--open,
.imt-shell-header__more-trigger-icon--open,
.imt-shell-header__locale-trigger-icon--open {
  transform: rotate(180deg);
}

.imt-shell-header__panel {
  position: fixed;
  inset-inline: 0;
  top: 60px;
  z-index: 10030;
  display: none;
  background: linear-gradient(
      180deg,
      rgb(255 255 255 / 0.92) 0%,
      rgb(255 255 255 / 0.86) 100%
    ),
    var(--imt-shell-frost-bg-strong);
  border-bottom: 1px solid var(--imt-shell-frost-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #333333;
}

.imt-shell-header--panel-open .imt-shell-header__panel,
.imt-shell-header--panel-open .imt-shell-header__more-panel {
  border-top-color: transparent;
}

.imt-shell-header__panel--wide {
  box-shadow: 0 20px 48px rgb(15 23 42 / 0.12);
}

.imt-shell-header__panel--compact {
  /* box-shadow:
    0 10px 24px rgb(15 23 42 / 0.1),
    0 2px 8px rgb(15 23 42 / 0.06); */
}

.imt-shell-header__panel--wide.imt-shell-header__panel--open {
  display: grid;
}

.imt-shell-header__panel--compact.imt-shell-header__panel--open {
  display: block;
}

.imt-shell-header__panel-bridge {
  position: absolute;
  inset-inline: 0;
  top: -12px;
  height: 12px;
  background: transparent;
}

.imt-shell-header__sections {
  display: inline-flex;
  width: max-content;
  align-items: stretch;
  justify-content: flex-start;
  padding: 16px 32px;
  padding-right: 40px;
}

.imt-shell-header__section-column {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  min-width: max-content;
}

.imt-shell-header__section-divider {
  inset-block: 0;
  left: 0;
  width: 1px;
  background: rgb(148 163 184 / 0.22);
  margin: 0 16px;
}

.imt-shell-header__section-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: max-content;
  padding-bottom: 32px;
}

.imt-shell-header__section-block {
  min-width: max-content;
}

.imt-shell-header__section-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.imt-shell-header__section-label--muted {
  color: #9ca3af;
}

.imt-shell-header__section-label--default {
  color: #333333;
}

.imt-shell-header__section-label--primary {
  color: var(--imt-shell-primary);
}

.imt-shell-header__section-link {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  padding: 0 !important;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--imt-shell-primary);
  transition: color 0.2s ease;
}

.imt-shell-header__section-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.imt-shell-header__section-link-icon {
  margin-left: 4px;
  width: 16px;
  height: 16px;
}

.imt-shell-header__section-links {
  display: flex;
  flex-direction: column;
}

.imt-shell-header__section-item {
  border-radius: 12px;
  padding: 0 !important;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: color 0.2s ease;
}

.imt-shell-header__section-item--active {
  color: #333333;
}

.imt-shell-header__section-item--active:hover {
  color: var(--imt-shell-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.imt-shell-header__section-item--muted {
  color: #9ca3af;
}

.imt-shell-header__section-text {
  display: inline-block;
}

.imt-shell-header__section-text--current {
  color: var(--imt-shell-primary);
  font-weight: 700;
  border-bottom: 1.5px solid currentcolor;
  line-height: 1.2;
  padding-bottom: 1px;
}

.imt-shell-header__children-panel {
  display: flex;
  width: 100%;
  max-width: 1920px;
  padding: 16px 40px 32px 0;
}

.imt-shell-header__children-list {
  box-sizing: border-box;
  display: flex;
  width: 266px;
  flex-direction: column;
}

.imt-shell-header__more-panel {
  position: fixed;
  inset-inline: 0;
  top: 60px;
  z-index: 10030;
  display: none;
  background: linear-gradient(
      180deg,
      rgb(255 255 255 / 0.92) 0%,
      rgb(255 255 255 / 0.86) 100%
    ),
    var(--imt-shell-frost-bg-strong);
  border-bottom: 1px solid var(--imt-shell-frost-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 48px rgb(15 23 42 / 0.12);
  color: #333333;
}

.imt-shell-header__more-panel--open {
  display: block;
}

.imt-shell-header__more-content {
  margin-inline: auto;
  display: flex;
  width: 100%;
  max-width: 1920px;
  padding: 16px 16px 32px;
}

.imt-shell-header__more-column {
  min-width: 220px;
}

.imt-shell-header__more-title {
  padding: 0 8px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}

.imt-shell-header__more-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.imt-shell-header__more-link {
  border-radius: 12px;
  padding: 8px !important;
  color: #333333;
  transition: color 0.2s ease;
}

.imt-shell-header__more-link:hover {
  color: var(--imt-shell-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.imt-shell-header__locale {
  position: relative;
}

.imt-shell-header__locale-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px;
  color: #333333;
  transition: background-color 0.2s ease;
}

.imt-shell-header__locale-trigger:hover {
  background: rgb(255 255 255 / 0.52);
}

.imt-shell-header__locale-icon {
  width: 20px;
  height: 20px;
}

.imt-shell-header__locale-menu {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 30;
  display: none;
  min-width: 140px;
  width: max-content;
  max-width: min(280px, calc(100vw - 24px));
  max-height: min(420px, calc(100vh - 84px));
  overflow-y: auto;
  border-radius: 16px;
  border: 1px solid var(--imt-shell-frost-border);
  background: var(--imt-shell-frost-bg-strong);
  padding: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.12);
  color: #333333;
}

@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  .imt-shell-header::before,
  .imt-shell-header__panel,
  .imt-shell-header__more-panel,
  .imt-shell-header__locale-menu {
    background: var(--imt-shell-frost-bg-strong);
  }
}

.imt-shell-header__locale-menu--open {
  display: block;
}

.imt-shell-header__locale-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.imt-shell-header__locale-option {
  border-radius: 12px;
  padding: 8px 12px;
  text-align: left;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.imt-shell-header__locale-option--active {
  background: transparent;
  font-weight: 700;
  color: var(--imt-shell-primary);
}

.imt-shell-header__locale-option--default {
  color: #4b5563;
}

.imt-shell-header__locale-option:hover {
  background: rgb(244 114 182 / 0.1);
  color: #111827;
}

.imt-shell-header__locale-option:focus-visible {
  background: rgb(244 114 182 / 0.1);
  color: #111827;
}

.imt-shell-header__locale-option--default:hover {
  background: rgb(244 114 182 / 0.1);
  color: #111827;
}

.imt-shell-header__focusable:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgb(234 76 137 / 0.3);
}

.imt-shell-drawer {
  position: fixed;
  inset-inline: 0;
  top: 60px;
  bottom: 0;
  z-index: 10015;
  background: rgb(0 0 0 / 0.5);
}

.imt-shell-drawer__panel {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 0.94) 0%,
    rgb(255 255 255 / 0.88) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 48px rgb(15 23 42 / 0.14);
}

.imt-shell-drawer__content {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
}

.imt-shell-drawer__locale {
  margin-top: 12px;
  border-top: 1px solid rgb(148 163 184 / 0.18);
  padding-top: 12px;
  border-radius: 8px;
}

.imt-shell-drawer__locale-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #6b7280;
}

.imt-shell-drawer__locale-title-icon {
  width: 16px;
  height: 16px;
}

.imt-shell-drawer__locale-trigger-label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.imt-shell-drawer__item-trigger--locale {
  gap: 12px;
}

.imt-shell-drawer__locale-current {
  min-width: 0;
  overflow: hidden;
  color: #333333;
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.imt-shell-drawer__locale-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0 0 24px;
}

.imt-shell-drawer__locale-option {
  border-radius: 8px;
  padding: 12px 16px;
  text-align: left;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.imt-shell-drawer__locale-option--active {
  background: rgb(255 255 255 / 0.62);
  font-weight: 500;
  color: #333333;
}

.imt-shell-drawer__locale-option--default {
  color: #4b5563;
}

.imt-shell-drawer__locale-option--default:hover {
  background: rgb(255 255 255 / 0.52);
  color: #333333;
}

.imt-shell-drawer__cta {
  margin-top: 16px;
  border-radius: 9999px;
  background: var(--imt-shell-primary);
  padding: 12px 16px !important;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
}

.imt-shell-drawer__item {
  border-radius: 8px;
}

.imt-shell-drawer__item-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: left;
  color: #333333;
  transition: background-color 0.2s ease;
}

.imt-shell-drawer__item-trigger:hover {
  background: rgb(255 255 255 / 0.52);
}

.imt-shell-drawer__item-trigger-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.imt-shell-drawer__item-trigger-icon--open {
  transform: rotate(180deg);
}

.imt-shell-drawer__item-panel {
  overflow: hidden;
}

.imt-shell-drawer__item-panel--hidden {
  display: none;
}

.imt-shell-drawer__item-children {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px 8px;
}

.imt-shell-drawer__section {
  padding-block: 8px;
}

.imt-shell-drawer__section-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-weight: 500;
}

.imt-shell-drawer__section-title--muted {
  color: #9ca3af;
}

.imt-shell-drawer__section-title--default {
  color: #333333;
}

.imt-shell-drawer__section-title--primary {
  color: var(--imt-shell-primary);
}

.imt-shell-drawer__section-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px !important;
  font-weight: 500;
  color: var(--imt-shell-primary);
}

.imt-shell-drawer__section-link-icon {
  width: 16px;
  height: 16px;
}

.imt-shell-drawer__section-links {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.imt-shell-drawer__link {
  border-radius: 8px;
  padding: 12px 16px !important;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.imt-shell-drawer__link--root {
  color: #333333;
}

.imt-shell-drawer__link--root:hover,
.imt-shell-drawer__link--child:hover {
  background: rgb(255 255 255 / 0.52);
  color: #333333;
}

.imt-shell-drawer__link--child {
  color: #4b5563;
}

.imt-shell-drawer__link--primary {
  color: var(--imt-shell-primary);
  font-weight: 600;
  background: rgb(253 242 248 / 1);
}

.imt-shell-drawer__link--primary:hover {
  color: var(--imt-shell-primary);
  background: rgb(252 231 243 / 1);
}

.imt-shell-drawer__link--muted {
  color: #9ca3af;
}

.imt-shell-header-root {
  color: #333333;
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 16px;
}

@media (max-width: 767px) {
  .imt-shell-header-root {
    font-size: 14px;
  }
}

.imt-shell-panel {
  box-shadow: var(--imt-shell-shadow);
}

.imt-shell-link {
  text-decoration: none;
  padding: 8px 16px !important;
}

.imt-shell-link:hover {
  text-decoration: none;
}

.imt-shell-footer-root {
}

.imt-shell-footer-card {
  background: var(--imt-shell-footer-bg);
  color: var(--imt-shell-footer-text);
}

.imt-shell-footer {
  width: 100%;
}

.imt-shell-footer__container {
  margin-inline: auto;
  width: 100%;
  max-width: 1920px;
  padding: 0;
}

.imt-shell-footer__card {
  padding: 48px 24px;
  color: #ffffff;
}

.imt-shell-footer__card--compact {
  padding: 72px 32px;
}

.imt-shell-footer__card--rounded {
  border-radius: 24px;
}

.imt-shell-footer__card--compact-rounded {
  border-radius: 0;
}

.imt-shell-footer__card--rounded-sm {
  border-radius: 8px;
}

.imt-shell-footer__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.imt-shell-footer__brand {
  width: 100%;
}

.imt-shell-footer__brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.imt-shell-footer__logo {
  width: 48px;
  height: 48px;
}

.imt-shell-footer__brand-name {
  font-size: 16px;
  font-weight: 700;
}

.imt-shell-footer__description {
  margin-top: 48px;
  font-size: 16px;
  display: flex;
  justify-content: center;
}

.imt-shell-footer__social {
  margin-top: 48px;
}

.imt-shell-footer__social-title,
.imt-shell-footer__section-title {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.6;
}

.imt-shell-footer__social-links {
  margin-top: 16px;
  display: flex;
  max-width: 240px;
  flex-wrap: wrap;
  gap: 16px;
}

.imt-shell-footer-social-link {
  display: inline-flex;
  min-width: 0;
  height: auto;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0 !important;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.imt-shell-footer-social-link:hover {
  opacity: 0.8;
}

.imt-shell-footer-social-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.imt-shell-footer__sections {
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
}

.imt-shell-footer__sections--compact {
  max-width: 860px;
  margin: 0 auto;
}

.imt-shell-footer__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  min-width: 0;
}

.imt-shell-footer__section-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.imt-shell-footer__section-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.imt-shell-footer__section-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.imt-shell-footer__section-group-title {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 18px;
  color: #8a8a8a;
}

.imt-shell-footer__section-link {
  font-size: 18px;
  color: #ffffff;
  transition: color 0.2s ease;
  padding: 0px !important;
}

.imt-shell-footer__section-group .imt-shell-footer__section-links {
  gap: 8px;
}

.imt-shell-footer__section-link:hover {
  color: var(--imt-shell-primary);
}

.imt-shell-footer__meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: rgb(255 255 255 / 0.8);
}

.imt-shell-footer__region {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}

.imt-shell-footer__region-image-wrap {
  border-radius: 8px;
  background: #ffffff;
  padding: 8px;
}

.imt-shell-footer__region-image {
  width: 144px;
  height: auto;
  border-radius: 8px;
}

.imt-shell-footer__region-link,
.imt-shell-footer__region-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.imt-shell-footer__region-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.imt-shell-footer__region-note {
  font-size: 16px;
  color: #d9d9d9;
}

.imt-shell-footer__card--cn {
  background: #343b4b;
}

.imt-shell-footer__cn-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.imt-shell-footer__cn-brand,
.imt-shell-footer__cn-company,
.imt-shell-footer__cn-contact {
  display: flex;
  flex-direction: column;
}

.imt-shell-footer__cn-slogan {
  margin-top: 12px;
  font-size: 16px;
  color: rgb(255 255 255 / 0.92);
}

.imt-shell-footer__cn-meta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: rgb(255 255 255 / 0.92);
}

.imt-shell-footer__cn-company-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.imt-shell-footer__cn-company-desc {
  max-width: 520px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.92);
}

.imt-shell-footer__cn-email {
  margin-top: 12px;
  font-size: 16px;
  color: rgb(255 255 255 / 0.92);
}

.imt-shell-footer__cn-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.imt-shell-footer__cn-legal-link {
  font-size: 16px;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.imt-shell-footer__cn-contact {
  align-items: center;
  gap: 12px;
}

.imt-shell-footer__cn-contact-image-wrap {
  border-radius: 16px;
  background: #ffffff;
  padding: 12px;
}

.imt-shell-footer__cn-contact-image {
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 8px;
}

.imt-shell-footer__cn-contact-title {
  font-size: 16px;
  color: rgb(255 255 255 / 0.92);
}

.imt-shell-desktop-nav,
.imt-shell-desktop-actions {
  display: none;
  flex-direction: row;
  align-items: center;
}

.imt-shell-mobile-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (min-width: 768px) {
  .imt-shell-header__nav {
    gap: 8px;
  }

  .imt-shell-desktop-nav.imt-shell-desktop-nav--zh,
  .imt-shell-desktop-actions.imt-shell-desktop-actions--zh {
    display: flex;
  }

  .imt-shell-mobile-nav.imt-shell-mobile-nav--zh {
    display: none;
  }

  .imt-shell-footer__container {
    padding: 80px 24px;
  }

  .imt-shell-footer__card {
    padding: 69px 64px;
  }

  .imt-shell-footer__card--compact {
    padding: 72px 40px;
  }

  .imt-shell-footer__logo {
    width: 32px;
    height: 32px;
  }

  .imt-shell-footer__main {
    flex-direction: row;
  }

  .imt-shell-footer__brand {
    max-width: 330px;
  }

  .imt-shell-footer__brand-link {
    justify-content: flex-start;
  }

  .imt-shell-footer__description {
    justify-content: flex-start;
    text-align: left;
  }

  .imt-shell-footer__sections {
    width: auto;
    flex: 0 0 auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 148px 112px 112px 176px;
    align-items: start;
    column-gap: 36px;
    row-gap: 0;
  }

  .imt-shell-footer__section,
  .imt-shell-footer__region {
    min-width: 0;
  }

  .imt-shell-footer__sections--compact {
    justify-content: center;
    gap: 72px;
  }

  .imt-shell-footer__cn-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.85fr) 144px;
    column-gap: 56px;
    align-items: start;
  }

  .imt-shell-footer__cn-slogan {
    margin-top: 14px;
  }

  .imt-shell-footer__cn-meta {
    margin-top: 72px;
  }

  .imt-shell-footer__cn-contact {
    justify-self: end;
  }

  .imt-shell-footer__cn-contact-image {
    width: 88px;
    height: 88px;
  }
}

@media (min-width: 1600px) {
  .imt-shell-footer__sections {
    grid-template-columns: 156px 120px 120px 184px;
    column-gap: 44px;
  }

  .imt-shell-footer__card--compact {
    padding: 72px 80px;
  }

  .imt-shell-footer__sections--compact {
    gap: 96px;
  }
}

@media (min-width: 1024px) {
  .imt-shell-header__action--show-from-lg {
    display: inline-flex;
  }

  .imt-shell-desktop-nav.imt-shell-desktop-nav--default,
  .imt-shell-desktop-actions.imt-shell-desktop-actions--default {
    display: flex;
  }

  .imt-shell-mobile-nav.imt-shell-mobile-nav--default {
    display: none;
  }
}

@media (min-width: 1280px) {
  .imt-shell-header__action--show-from-xl {
    display: inline-flex;
  }
}

@media (min-width: 1500px) {
  .imt-shell-header__install-label--from-3xl {
    display: inline;
  }

  .imt-shell-header__install-simple-label--until-3xl {
    display: none;
  }
}

@media (min-width: 1536px) {
  .imt-shell-header__actions {
    gap: 24px;
  }

  .imt-shell-footer__sections {
    gap: 64px;
  }
}

@media (min-width: 1920px) {
  .imt-shell-header__install-label--from-4xl {
    display: inline;
  }

  .imt-shell-header__install-simple-label--until-4xl {
    display: none;
  }
}

@media (min-width: 2560px) {
  .imt-shell-header__nav {
    gap: 16px;
  }

  .imt-shell-footer__card {
    padding-inline: 180px;
  }
}


.imt-shell-root *, .imt-shell-root ::before, .imt-shell-root ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

.imt-shell-root ::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

.imt-shell-root {
  /* shadcn ui theme */
  --primary: #ea4c89;
  --primary-foreground: #ffffff;
  --primary-secondary: #faccde;
  --primary-secondary-foreground: #ffffff;
  --secondary: #f7f7f7;
  --secondary-foreground: #333;
  --radius: 0.625rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --muted: oklch(0.97 0 0);
  --muted-foreground: oklch(0.556 0 0);
  --accent: oklch(0.97 0 0);
  --accent-foreground: oklch(0.205 0 0);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.985 0 0);
  --border: oklch(0.922 0 0);
  --input: oklch(0.922 0 0);
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: oklch(0.205 0 0);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

.imt-shell-root.dark,
  .imt-shell-root[data-theme="dark"] {
  /* shadcn ui theme */
  --primary: #ea4c89;
  --primary-foreground: #ffffff;
  --primary-secondary: #faccde;
  --primary-secondary-foreground: #ffffff;
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.205 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.205 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.704 0.191 22.216);
  --destructive-foreground: oklch(0.985 0 0);
  --border: oklch(1 0 0 / 10%);
  --input: oklch(1 0 0 / 15%);
  --ring: oklch(0.556 0 0);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(1 0 0 / 10%);
  --sidebar-ring: oklch(0.556 0 0);
}

.imt-shell-root .\!container {
  width: 100% !important;
}

.imt-shell-root .container {
  width: 100%;
}

@media (min-width: 640px) {
  .imt-shell-root .\!container {
    max-width: 640px !important;
  }

  .imt-shell-root .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .imt-shell-root .\!container {
    max-width: 768px !important;
  }

  .imt-shell-root .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .imt-shell-root .\!container {
    max-width: 1024px !important;
  }

  .imt-shell-root .container {
    max-width: 1024px;
  }
}

@media (min-width: 1200px) {
  .imt-shell-root .\!container {
    max-width: 1200px !important;
  }

  .imt-shell-root .container {
    max-width: 1200px;
  }
}

@media (min-width: 1300px) {
  .imt-shell-root .\!container {
    max-width: 1300px !important;
  }

  .imt-shell-root .container {
    max-width: 1300px;
  }
}

@media (min-width: 1500px) {
  .imt-shell-root .\!container {
    max-width: 1500px !important;
  }

  .imt-shell-root .container {
    max-width: 1500px;
  }
}

@media (min-width: 1600px) {
  .imt-shell-root .\!container {
    max-width: 1600px !important;
  }

  .imt-shell-root .container {
    max-width: 1600px;
  }
}

@media (min-width: 1920px) {
  .imt-shell-root .\!container {
    max-width: 1920px !important;
  }

  .imt-shell-root .container {
    max-width: 1920px;
  }
}

@media (min-width: 2560px) {
  .imt-shell-root .\!container {
    max-width: 2560px !important;
  }

  .imt-shell-root .container {
    max-width: 2560px;
  }
}

@media (min-width: 3840px) {
  .imt-shell-root .\!container {
    max-width: 3840px !important;
  }

  .imt-shell-root .container {
    max-width: 3840px;
  }
}

.imt-shell-root .link {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
  text-decoration-line: none;
}

.imt-shell-root .link:hover {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
  text-decoration-line: none;
}

.imt-shell-root .visible {
  visibility: visible;
}

.imt-shell-root .collapse {
  visibility: collapse;
}

.imt-shell-root .static {
  position: static;
}

.imt-shell-root .flex {
  display: flex;
}

.imt-shell-root .transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.imt-shell-root .cursor-default {
  cursor: default;
}

.imt-shell-root .resize {
  resize: both;
}

.imt-shell-root .rounded-lg {
  border-radius: var(--radius);
}

.imt-shell-root .p-2 {
  padding: 0.5rem;
}

.imt-shell-root .text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.imt-shell-root .font-medium {
  font-weight: 500;
}

.imt-shell-root .leading-6 {
  line-height: 1.5rem;
}

.imt-shell-root .text-black-1 {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.imt-shell-root .text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.imt-shell-root .filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.imt-shell-root .transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@keyframes enter {
  from {
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}

@keyframes exit {
  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}

.imt-shell-root .hero-title-logo {
  width: 3rem;
  /* size-12: 48px */
  height: 3.1875rem;
  /* size-12: 48px */
  transform: rotate(-12deg);
  margin-bottom: -0.5rem;
  /* -mb-2: -8px */
}

.imt-shell-root .mobile-hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f7f7f7 47.6%),
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    radial-gradient(
      60.32% 60.32% at 0% 100%,
      #e0c4f7 0%,
      rgba(224, 196, 247, 0) 100%
    ),
    radial-gradient(
      71.16% 82.84% at 100% 0%,
      #e0c4f6 0%,
      rgba(224, 196, 246, 0) 100%
    ),
    radial-gradient(
      54.76% 54.76% at 0% 6.8%,
      #aed5ff 0%,
      rgba(174, 213, 255, 0) 100%
    ),
    radial-gradient(88.09% 75.78% at 43.07% 35.41%, #757ed8 0%, #6b6ac0 100%),
    linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
  box-shadow: 0 0 24px 16px #fff inset;
}

.imt-shell-root .gradient-install-button {
  background: linear-gradient(0deg, rgba(59, 54, 65, 0.46) 0%, #100c36 100%),
    radial-gradient(
      60.32% 60.32% at 0% 100%,
      #d992ff 0%,
      rgba(224, 196, 247, 0) 100%
    ),
    radial-gradient(
      71.16% 82.84% at 100% 0%,
      #f27fff 0%,
      rgba(224, 196, 246, 0) 100%
    ),
    radial-gradient(70.71% 70.71% at 50% 50%, #6c7aff 0%, #76abf0 100%), #fff;
}

@media (min-width: 768px) {
  .imt-shell-root .hero-title-logo {
    width: 4rem;
    /* md:size-16: 64px */
    height: 4.25rem;
    /* md:size-16: 64px */
  }

  .imt-shell-root .mobile-hero {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #f7f7f7 47.6%
      ),
      linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.4) 100%
      ),
      radial-gradient(
        60.32% 60.32% at 0% 100%,
        #e0c4f7 0%,
        rgba(224, 196, 247, 0) 100%
      ),
      radial-gradient(
        71.16% 82.84% at 100% 0%,
        #e0c4f6 0%,
        rgba(224, 196, 246, 0) 100%
      ),
      radial-gradient(
        54.76% 54.76% at 0% 6.8%,
        #aed5ff 0%,
        rgba(174, 213, 255, 0) 100%
      ),
      radial-gradient(88.09% 75.78% at 43.07% 35.41%, #757ed8 0%, #6b6ac0 100%),
      linear-gradient(0deg, #fff 0%, #fff 100%),
      linear-gradient(0deg, #fff 0%, #fff 100%),
      linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
  }
}

@media (min-width: 1920px) {
  .imt-shell-root .hero-title-logo {
    width: 5rem;
    /* 3xl:size-20: 80px */
    height: 5.3125rem;
    /* 3xl:size-20: 80px */
  }
}

.imt-shell-root .hover\:text-primary:hover {
  color: var(--primary);
}
