:root {
  color-scheme: dark;
  --ink: #f4f6fb;
  --muted: #bdc7d7;
  --paper: #0b1525;
  --header-padding: 1rem;
}

* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 6rem;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    'Helvetica Neue',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'PingFang SC',
    'Microsoft YaHei',
    sans-serif;
  line-height: 1.6;
  overflow-wrap: break-word;
  isolation: isolate;
}
.site-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  pointer-events: none;
}
.site-width {
  width: calc(100% - 3rem);
  max-width: 88rem;
  margin-right: auto;
  margin-left: auto;
}
a {
  color: inherit;
}
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #a7dcff;
  outline-offset: 6px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header-inner {
  display: flex;
  justify-content: flex-end;
  padding: var(--header-padding) 0;
}
.language-picker {
  position: relative;
  font-size: 1rem;
}
.language-picker summary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
  gap: 0.65rem;
  cursor: pointer;
  list-style: none;
}
.language-picker summary::-webkit-details-marker {
  display: none;
}
.language-picker img {
  display: block;
  flex-shrink: 0;
  filter: invert(1);
}
.language-picker[open] .chevron-icon {
  transform: rotate(180deg);
}
.language-options {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 10rem;
  max-width: calc(100vw - 3rem);
  max-height: 60vh;
  margin: 0.25rem 0 0;
  padding: 0.5rem;
  overflow-y: auto;
  list-style: none;
  background: #19283e;
  border-radius: 8px;
  box-shadow: 0 12px 32px #030a1680;
}
.language-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0.5rem;
  gap: 1.5rem;
  text-decoration: none;
  border-radius: 4px;
}
.language-options a:hover,
.language-options a:focus-visible {
  background: #293c58;
}
.home {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 4rem;
}
.home-hero {
  width: 100%;
  text-align: center;
}
.company-wordmark {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(3.75rem, 12vw, 9rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.company-wordmark a {
  text-decoration: none;
}
.hero-company-name {
  max-width: 48rem;
  margin: 1rem auto 0;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.product-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3.75rem;
  gap: 1.5rem;
}
.product-copy {
  max-width: 21rem;
}
.product-copy h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.015em;
}
.product-copy p {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}
.product-copy:lang(en) h2 {
  font-size: 2rem;
  letter-spacing: 0;
}
.product-access {
  display: block;
  width: 22.5rem;
  max-width: 100%;
  border-radius: 10px;
}
.product-access img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.product-access:hover {
  opacity: 0.92;
}
.product-access:lang(en) {
  width: 8.25rem;
  text-decoration: none;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}
.product-access:lang(en) .product-promotion {
  display: block;
  height: 8.25rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: 10px;
}
.product-access:lang(en) img {
  width: auto;
  height: 100%;
  border-radius: 0;
}
.site-footer {
  padding: 12px 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
.company-name {
  margin: 0;
}
.filing-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
}
.filing-links a {
  min-height: 18px;
  text-decoration: none;
}
.public-security-filing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.public-security-filing picture {
  display: flex;
  flex-shrink: 0;
}
.public-security-filing img {
  flex-shrink: 0;
  object-fit: contain;
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: -8rem;
  left: 1.5rem;
  padding: 0.75rem;
  background: #19283e;
}
.skip-link:focus {
  top: 0.75rem;
}
@media (min-width: 48rem) {
  :root {
    --header-padding: 1.25rem;
  }
  .site-width {
    width: calc(100% - 6rem);
  }
  .home {
    padding: 4rem 0 10rem;
  }
  .hero-company-name {
    margin-top: 1.25rem;
    font-size: clamp(1.25rem, 2.3vw, 2.125rem);
    letter-spacing: 0.12em;
  }
  .product-entry {
    flex-direction: row;
    margin-top: 6.5rem;
    gap: 1.75rem;
  }
  .product-copy {
    text-align: left;
  }
  .product-copy h2 {
    font-size: 3rem;
  }
  .product-copy p {
    font-size: 1.25rem;
  }
  .filing-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
