:root {
  --ink: #090909;
  --paper: #ffffff;
  --soft: #f6f6f4;
  --muted: #727272;
  --hairline: #dedede;
  --accent: #ff5a1f;
  --energy-orange: #ff5a1f;
  --energy-cyan: #11cfc1;
  --energy-blue: #236dff;
  --energy-lime: #c7ff37;
  --energy-pink: #ff4f8b;
  --footer: #080808;
  --max: 1320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

html.menu-open {
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.sz-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.button-reset {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 84px;
  padding: 0 clamp(1.25rem, 4vw, 3.75rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  backdrop-filter: blur(20px);
  transition: background-color 220ms ease, border-color 220ms ease, color 180ms ease, box-shadow 220ms ease;
  color: var(--paper);
}

.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  color: var(--ink);
}

.subpage .site-header {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--ink);
}

.subpage .brand-logo-image {
  filter: none;
}

.page-main {
  padding-top: 84px;
}

.brand-mark {
  display: grid;
  justify-items: center;
  gap: 0.08rem;
  justify-self: center;
  font-size: clamp(0.76rem, 1.1vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.brand-logo-image {
  width: clamp(2.8rem, 5.2vw, 4.4rem);
  height: auto;
  filter: invert(1);
  transition: filter 260ms ease, opacity 260ms ease;
}

.site-header.is-scrolled .brand-logo-image,
.menu-overlay .brand-logo-image {
  filter: none;
}

.brand-mark span {
  font-size: 0.82em;
  color: currentColor;
  letter-spacing: 0.08em;
}

.text-link {
  width: max-content;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  line-height: 44px;
}

.header-contact {
  justify-self: end;
}

.underline-link {
  position: relative;
  display: inline-block;
  min-height: 44px;
  padding: 0.55rem 0 0.2rem;
  color: inherit;
  font-size: 1rem;
  font-weight: 500;
}

.underline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.28rem;
  width: 4.2rem;
  height: 2px;
  background: var(--accent);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.underline-link:hover::after {
  transform: scaleX(1.35);
}

.hero .underline-link::after {
  background: currentColor;
}

.accent {
  color: var(--accent);
}

.eyebrow {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 0;
  overflow: hidden;
  background: var(--footer);
  color: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  background: var(--footer);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 58%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroCycle 18s infinite;
}

.hero-slide-two {
  animation-delay: 6s;
}

.hero-slide-three {
  animation-delay: 12s;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s infinite linear;
}

.hero-slide-one img {
  object-position: 48% center;
}

.hero-slide-two img {
  object-position: 55% center;
}

.hero-slide-three img {
  object-position: 48% center;
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: grid;
  align-content: end;
  justify-items: start;
  min-height: 100svh;
  gap: 0.72rem;
  padding: 0 clamp(1.25rem, 4vw, 3.75rem) clamp(4rem, 8vw, 6rem);
  text-align: left;
  background: transparent;
}

.hero h1,
.split-copy h2,
.science h1,
.science h2,
.stores h1,
.stores h2,
.section-heading h1,
.contact-page h1,
.product-feature h2,
.section-heading h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero h1 {
  max-width: 12em;
  font-size: clamp(3rem, 7vw, 6.45rem);
  color: var(--paper);
}

.hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  margin-top: 0.85rem;
  color: var(--paper);
}

.hero-indicator {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3.75rem);
  bottom: clamp(2rem, 5vw, 4rem);
  z-index: 6;
  display: flex;
  gap: 0.55rem;
}

.hero-indicator span {
  width: 2.2rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.hero-indicator span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: left center;
  animation: indicatorCycle 18s infinite;
}

.hero-indicator span:nth-child(2)::after {
  animation-delay: 6s;
}

.hero-indicator span:nth-child(3)::after {
  animation-delay: 12s;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  gap: clamp(3rem, 7vw, 6rem);
  width: min(var(--max), calc(100% - 7.5rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
  align-items: center;
}

.split-media {
  overflow: hidden;
  background: var(--soft);
}

.split-media img {
  aspect-ratio: 1.24 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.split-copy h2 {
  font-size: clamp(2.4rem, 5.4vw, 5rem);
}

.split-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.8rem 0 1.7rem;
  color: #333333;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.science {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(24rem, 1fr);
  gap: clamp(3rem, 7vw, 6rem);
  padding: clamp(4.8rem, 8vw, 7.2rem) clamp(1.25rem, 4vw, 3.75rem);
  background: var(--footer);
  color: var(--paper);
}

.science h2 {
  font-size: clamp(2.6rem, 6vw, 5.3rem);
}

.science h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
}

.science-copy p:not(.eyebrow) {
  max-width: 32rem;
  margin: 2rem 0 0;
  color: #cfcfcf;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.science-panel {
  align-self: center;
}

.science-panel img {
  aspect-ratio: 1.76 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.science-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.7rem;
}

.science-tabs button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #e8e8e8;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.science-tabs button.active {
  color: var(--accent);
}

.products {
  width: min(var(--max), calc(100% - 7.5rem));
  margin: 0 auto;
  padding: clamp(4.8rem, 8vw, 7.6rem) 0;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.section-heading h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
}

.section-heading p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.category-rail {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4.4rem);
  margin: clamp(2.6rem, 5vw, 4.5rem) 0 clamp(3rem, 5vw, 5rem);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-rail button {
  position: relative;
  flex: 0 0 auto;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
  color: #565656;
}

.category-rail button.active {
  color: var(--ink);
}

.category-rail button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(18rem, 0.72fr);
  gap: clamp(3rem, 7vw, 5.5rem);
  align-items: center;
}

.product-feature-media {
  overflow: hidden;
  background: var(--soft);
}

.product-feature-media img {
  aspect-ratio: 1.16 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 48% center;
  transition: opacity 220ms ease, transform 420ms ease;
}

.product-feature.is-changing img {
  opacity: 0.42;
  transform: translateY(8px);
}

.product-index {
  margin: 0 0 1.6rem;
  color: var(--accent);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.product-feature h3 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
}

.product-feature h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.product-feature-copy > p:not(.product-index) {
  margin: 2rem 0 1.5rem;
  max-width: 28rem;
  color: #333333;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
}

.product-tags span {
  border: 1px solid var(--hairline);
  padding: 0.42rem 0.72rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 0.6rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(5rem, 8vw, 7rem);
  padding-top: clamp(3rem, 5vw, 4rem);
  border-top: 1px solid var(--hairline);
}

.product-card {
  cursor: pointer;
}

.product-card img {
  aspect-ratio: 1.25 / 0.8;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.product-card h3 {
  margin: 1.45rem 0 0.4rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.stores {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(22rem, 1fr);
  gap: clamp(3rem, 7vw, 6rem);
  padding: clamp(4.5rem, 7vw, 6.4rem) clamp(1.25rem, 4vw, 3.75rem);
  background: var(--soft);
}

.stores h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.3rem);
}

.stores h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.stores-note {
  max-width: 22rem;
  margin: 1rem 0 0;
  color: #4b4b4b;
  font-size: 1rem;
}

.store-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-self: center;
}

.store-list a {
  min-height: 7.2rem;
  border: 1px solid var(--hairline);
  background: var(--paper);
  padding: 1.5rem;
  transition: border-color 160ms ease, transform 160ms ease;
}

.store-list a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

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

.store-list span {
  margin-top: 0.8rem;
  color: var(--accent);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(22rem, 1fr);
  gap: clamp(3rem, 7vw, 6rem);
  width: min(var(--max), calc(100% - 7.5rem));
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.contact-page h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.contact-page p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: #333333;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.contact-list {
  display: grid;
  gap: 1.2rem;
  align-self: center;
}

.contact-list article {
  border: 1px solid var(--hairline);
  padding: 1.4rem;
}

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

.contact-list span {
  margin-top: 0.7rem;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  padding: 3rem clamp(1.25rem, 4vw, 3.75rem);
  background: var(--footer);
  color: var(--paper);
}

.site-footer p,
.site-footer a {
  color: #cfcfcf;
}

.site-footer div:nth-child(2) {
  display: flex;
  gap: 1.5rem;
}

.legal {
  justify-self: end;
  text-align: right;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: block;
  overflow: auto;
  visibility: hidden;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 240ms ease, visibility 240ms ease;
}

.menu-overlay.is-open {
  visibility: visible;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.menu-shell {
  width: min(88vw, 420px);
  min-height: 100svh;
  padding: 1.4rem clamp(1.25rem, 4vw, 3.75rem) 4rem;
  background: var(--paper);
  transform: translateX(-102%);
  transition: transform 260ms ease;
}

.menu-overlay.is-open .menu-shell {
  transform: translateX(0);
}

.menu-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--hairline);
}

.menu-brand {
  font-size: clamp(2rem, 4vw, 2.55rem);
}

.menu-top .accent {
  justify-self: end;
}

.menu-content {
  padding-top: clamp(4rem, 8vw, 6rem);
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}

.menu-columns h2 {
  margin: 0 0 1.35rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
}

.menu-columns a {
  display: block;
  min-height: 38px;
  color: var(--muted);
  font-size: 1rem;
}

.menu-simple {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 52rem;
}

.menu-simple section {
  border-bottom: 1px solid var(--hairline);
}

.menu-simple h2 {
  margin: 0;
  border-bottom: 0;
  padding: 0;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 1.08;
  font-weight: 500;
}

.menu-simple h2 a {
  min-height: auto;
  padding: 0.42em 0;
  color: inherit;
  font-size: inherit;
}

.menu-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
  gap: clamp(3rem, 6vw, 5rem);
  margin-top: clamp(4rem, 8vw, 6rem);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.menu-feature img {
  aspect-ratio: 1.45 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.menu-feature h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
}

.menu-feature p:not(.eyebrow) {
  color: #333333;
}

.product-dialog {
  width: min(980px, calc(100% - 2rem));
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem;
}

.dialog-grid img {
  align-self: center;
}

.dialog-grid h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
}

.dialog-grid p:not(.eyebrow) {
  color: #333333;
}

.section-observe {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero.section-observe {
  opacity: 1;
  transform: none;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroCycle {
  0%,
  30% {
    opacity: 1;
  }
  38%,
  100% {
    opacity: 0;
  }
}

@keyframes heroZoom {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.14) translate3d(-1.2%, 0, 0);
  }
}

@keyframes indicatorCycle {
  0% {
    transform: scaleX(0);
  }
  30% {
    transform: scaleX(1);
  }
  38%,
  100% {
    transform: scaleX(0);
  }
}

@media (max-width: 980px) {
  .page-main {
    padding-top: 58px;
  }

  .site-header {
    grid-template-columns: 40px 1fr 40px;
    gap: 0;
    min-height: 58px;
    padding: 0 1rem;
    backdrop-filter: blur(14px);
  }

  .header-contact {
    display: none;
  }

  .brand-mark {
    grid-column: 2;
    gap: 0.04rem;
    font-size: 0.58rem;
  }

  .brand-logo-image {
    width: 2.72rem;
  }

  .header-trigger {
    grid-column: 1;
  }

  .header-trigger {
    position: relative;
    width: 40px;
    min-height: 40px;
    overflow: hidden;
    font-size: 0 !important;
    line-height: 40px;
  }

  .header-trigger::before,
  .header-trigger::after {
    content: "";
    position: absolute;
    left: 8px;
    width: 21px;
    height: 2px;
    background: currentColor;
  }

  .header-trigger::before {
    top: 15px;
  }

  .header-trigger::after {
    top: 23px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 0;
  }

  .hero-media {
    height: 100%;
  }

  .hero-slide-one img {
    object-position: 52% center;
  }

  .hero-slide-two img {
    object-position: 50% center;
  }

  .hero-slide-three img {
    object-position: 46% center;
  }

  .hero-copy {
    min-height: 100svh;
    align-content: end;
    justify-items: center;
    padding: 0 1.25rem 5.2rem;
    text-align: center;
  }

  .hero-kicker {
    font-size: 0.84rem;
  }

  .hero-actions,
  .product-actions {
    gap: 1.4rem;
  }

  .editorial-split,
  .product-feature,
  .stores,
  .contact-page,
  .menu-feature,
  .dialog-grid {
    grid-template-columns: 1fr;
  }

  .editorial-split,
  .products {
    width: min(100% - 2rem, var(--max));
  }

  .science {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    padding: 4.4rem 1rem;
  }

  .science-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-rail {
    justify-content: flex-start;
    gap: 1.65rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem;
  }

  .category-rail button {
    font-size: 0.94rem;
  }

  .product-grid,
  .store-list {
    grid-template-columns: 1fr;
  }

  .stores {
    padding: 4rem 1rem;
  }

  .contact-page {
    width: min(100% - 2rem, var(--max));
    padding: 4rem 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer div:nth-child(2) {
    flex-direction: column;
    gap: 0.65rem;
  }

  .legal {
    justify-self: start;
    text-align: left;
  }

  .menu-shell {
    width: min(80vw, 320px);
    padding: 0.8rem 1rem 3rem;
  }

  .menu-top {
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }

  .menu-brand {
    display: none;
  }

  .menu-top .accent {
    justify-self: end;
    font-size: 0.78rem;
  }

  .menu-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-columns section {
    border-bottom: 1px solid var(--hairline);
    padding: 1.25rem 0;
  }

  .menu-columns h2 {
    border-bottom: 0;
    margin: 0 0 0.4rem;
    padding: 0;
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .menu-simple h2 {
    font-size: clamp(2.7rem, 13vw, 4.7rem);
  }

  .menu-columns a {
    min-height: 32px;
    font-size: 0.95rem;
  }

  .menu-feature {
    display: none;
  }

  .dialog-grid {
    padding: 4rem 1.25rem 2rem;
  }
}

@media (max-width: 620px) {
  .text-link {
    font-size: 0.86rem;
  }

  #science,
  #products,
  #stores,
  #contact {
    scroll-margin-top: 58px;
  }

  .hero-copy {
    text-align: center;
    align-items: end;
    justify-items: center;
    gap: 0.42rem;
  }

  .hero h1 {
    max-width: 10em;
    font-size: clamp(1.9rem, 7.8vw, 2.55rem);
    line-height: 1.12;
  }

  .hero-kicker {
    font-size: 0.78rem;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 0.05rem;
    font-size: 0.9rem;
  }

  .hero-actions a:nth-child(2) {
    display: none;
  }

  .editorial-split {
    gap: 2rem;
    padding: 4rem 0;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.72rem;
  }

  .science {
    gap: 2rem;
    padding: 3.6rem 1rem;
  }

  .science h2,
  .science h1,
  .split-copy h2,
  .product-feature h3,
  .product-feature h2,
  .section-heading h2,
  .section-heading h1,
  .stores h2,
  .stores h1,
  .contact-page h1 {
    word-break: keep-all;
    font-size: clamp(2rem, 8.8vw, 2.7rem);
    line-height: 1.08;
  }

  .science-copy p:not(.eyebrow) {
    margin-top: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .product-feature {
    gap: 1.45rem;
  }

  .product-feature-media img {
    aspect-ratio: 0.86 / 1;
    object-position: 48% center;
  }

  .product-tags span {
    font-size: 0.78rem;
  }

  .store-list a {
    min-height: 5.6rem;
  }

  .products {
    padding: 3.35rem 0;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading p {
    margin-top: 0.55rem;
    font-size: 0.92rem;
  }

  .category-rail {
    gap: 1.25rem;
    margin-top: 1.45rem;
    margin-bottom: 1.7rem;
  }

  .category-rail button {
    min-height: 38px;
    font-size: 0.88rem;
  }

  .product-grid {
    display: none;
  }

  .product-index {
    margin-bottom: 0.65rem;
    font-size: 1.45rem;
  }

  .product-feature h3 {
    font-size: clamp(1.9rem, 8.6vw, 2.65rem);
  }

  .product-feature-copy > p:not(.product-index) {
    margin: 0.9rem 0 0.95rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .science-panel img {
    aspect-ratio: 0.95 / 1;
    object-fit: cover;
  }

  .stores {
    gap: 1.6rem;
    padding: 3.4rem 1rem;
  }

  .contact-page {
    gap: 1.6rem;
    padding: 3.4rem 0;
  }

  .contact-page p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .contact-list {
    gap: 1rem;
  }

  .contact-list article {
    padding: 1.15rem;
  }

  .stores-note {
    margin-top: 0.65rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .store-list {
    gap: 1rem;
  }

  .store-list a {
    padding: 1.15rem;
  }

  .menu-content {
    padding-top: 2.1rem;
  }

  .menu-columns section {
    padding: 0.82rem 0;
  }

  .menu-simple h2 {
    font-size: clamp(1.78rem, 8vw, 2.6rem);
    line-height: 1.08;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .sz-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .sz-hero-scroll-cue {
    animation: none !important;
  }
}

/* SHANSZY v2 mobile-first UI */

:root {
  --sz-black: #090909;
  --sz-white: #ffffff;
  --sz-cream: #f6f6f3;
  --sz-line: #deded9;
  --sz-text: #111111;
  --sz-muted: #6d6d6d;
}

.sz-body {
  min-width: 320px;
  margin: 0;
  background: var(--sz-white);
  color: var(--sz-text);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

.sz-body a {
  color: inherit;
  text-decoration: none;
}

.sz-body button {
  font: inherit;
}

.sz-body a:focus-visible,
.sz-body button:focus-visible {
  outline: 2px solid rgba(255, 90, 31, 0.92);
  outline-offset: 4px;
}

.sz-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
  align-items: center;
  min-height: 64px;
  padding: 0 max(18px, env(safe-area-inset-left)) 0 max(18px, env(safe-area-inset-right));
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--sz-white);
  background: transparent;
  backdrop-filter: none;
  transition: background-color 220ms ease, border-color 220ms ease, color 180ms ease, box-shadow 220ms ease;
}

.sz-topbar.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  color: var(--sz-black);
  backdrop-filter: blur(14px);
}

.sz-topbar.is-scrolled .sz-brand img {
  filter: invert(1);
}

.sz-topbar-light.is-scrolled .sz-brand img {
  filter: none;
}

.sz-topbar-dark {
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--sz-white);
}

.sz-topbar-light {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: var(--sz-black);
  background: transparent;
}

.sz-topbar-light .sz-brand img {
  filter: none;
}

.sz-brand {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  min-width: 0;
  line-height: 1;
}

.sz-brand img {
  width: 54px;
  height: auto;
}

.sz-brand span {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
}

.sz-menu-button {
  grid-column: 3;
  justify-self: end;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sz-menu-button:hover {
  opacity: 0.72;
}

.sz-menu-button:active {
  transform: translateY(1px);
}

.sz-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  backdrop-filter: blur(0);
  transition: background 260ms ease, backdrop-filter 260ms ease, visibility 260ms ease;
}

.sz-menu-overlay.is-open {
  visibility: visible !important;
  background: rgba(0, 0, 0, 0.34) !important;
  backdrop-filter: blur(8px);
  pointer-events: auto !important;
}

.sz-menu-drawer {
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(208px, 62vw, 252px);
  max-width: calc(100vw - 70px);
  height: 100dvh;
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: max(24px, env(safe-area-inset-top)) 20px max(30px, env(safe-area-inset-bottom));
  background: var(--sz-white);
  color: var(--sz-black);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sz-menu-overlay.is-open .sz-menu-drawer {
  transform: translateX(0) !important;
}

.sz-menu-close {
  position: absolute;
  top: 0;
  right: 22px;
  display: grid;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  height: 64px;
  border: 0;
  background: transparent;
  color: #555;
  cursor: pointer;
  padding: 0;
  font-size: 12px;
  transition: color 180ms ease, transform 180ms ease;
}

.sz-menu-close:hover {
  color: var(--sz-black);
}

.sz-menu-close:active {
  transform: translateY(1px);
}

.sz-menu-nav {
  display: grid;
  counter-reset: sz-menu;
  margin-top: clamp(82px, 16vh, 124px);
}

.sz-menu-nav a {
  counter-increment: sz-menu;
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 72px;
  border-bottom: 1px solid #e9e9e5;
  padding: clamp(18px, 4.8vh, 28px) 0;
  font-size: clamp(17px, 4.5vw, 22px);
  font-weight: 650;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 380ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), color 180ms ease;
}

.sz-menu-nav a::before {
  content: counter(sz-menu, decimal-leading-zero);
  color: #a5a59f;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
}

.sz-menu-nav a:hover,
.sz-menu-nav a:focus-visible {
  color: var(--energy-orange);
}

.sz-menu-overlay.is-open .sz-menu-nav a {
  opacity: 1;
  transform: translateX(0);
}

.sz-menu-overlay.is-open .sz-menu-nav a:nth-child(1) {
  transition-delay: 70ms;
}

.sz-menu-overlay.is-open .sz-menu-nav a:nth-child(2) {
  transition-delay: 115ms;
}

.sz-menu-overlay.is-open .sz-menu-nav a:nth-child(3) {
  transition-delay: 160ms;
}

.sz-menu-overlay.is-open .sz-menu-nav a:nth-child(4) {
  transition-delay: 205ms;
}

.sz-menu-overlay.is-open .sz-menu-nav a:nth-child(5) {
  transition-delay: 250ms;
}

.sz-menu-caption {
  display: none;
}

.sz-menu-overlay.is-open .sz-menu-caption {
  display: none;
}

@media (max-width: 360px) {
  .sz-topbar {
    min-height: 58px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .sz-brand {
    gap: 8px;
  }

  .sz-brand img {
    width: 48px;
  }

  .sz-brand span,
  .sz-menu-button {
    font-size: 12px;
  }

  .sz-menu-drawer {
    width: clamp(204px, 66vw, 232px);
    max-width: calc(100vw - 58px);
    padding-right: 18px;
    padding-left: 18px;
  }

  .sz-menu-close {
    right: 18px;
    height: 58px;
  }
}

@media (max-height: 620px) {
  .sz-menu-nav {
    margin-top: 66px;
  }

  .sz-menu-nav a {
    padding: 14px 0;
    font-size: 17px;
  }

  .sz-menu-caption {
    display: none;
  }
}

.sz-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 100dvh;
  padding: max(22px, env(safe-area-inset-top)) max(22px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom))
    max(22px, env(safe-area-inset-left));
}

.sz-qr-modal[hidden] {
  display: none;
}

.sz-qr-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.sz-qr-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(calc(100vw - 44px), 320px);
  max-height: 84dvh;
  margin: 0;
  padding: 16px 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #fff;
  transform: translateY(0) scale(1);
  animation: szQrModalIn 220ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.sz-qr-code-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.sz-qr-modal-card figcaption {
  margin: 0;
  color: var(--sz-black);
  font-size: clamp(14px, 3.35vw, 17px);
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.sz-qr-modal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background: var(--sz-black);
  color: var(--sz-white) !important;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}

@media (max-width: 759px) {
  .sz-qr-modal-card {
    width: min(calc(100vw - 48px), 296px);
    padding: 14px 14px 16px;
    border-radius: 16px;
  }

  .sz-qr-modal-link {
    min-height: 44px;
    font-size: 13px;
  }
}

.sz-qr-modal-link:focus-visible {
  outline: 2px solid var(--sz-black);
  outline-offset: 3px;
}

@keyframes szQrModalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sz-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #dadad7;
  color: var(--sz-white);
}

.sz-hero-poster,
.sz-hero-poster img,
.sz-hero-video {
  width: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: 57% center;
  filter: saturate(0.96) contrast(1.02);
}

.sz-hero-poster,
.sz-hero-video {
  position: absolute;
  inset: 0;
  display: block;
  height: 100svh;
}

.sz-hero-poster {
  z-index: 0;
  background: #dadad7;
}

.sz-hero-poster img {
  display: block;
  height: 100%;
}

.sz-hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 420ms ease;
}

.sz-hero-video.is-ready {
  opacity: 1;
}

.sz-video-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.sz-video-toggle:hover {
  color: var(--sz-white);
  background: transparent;
}

.sz-video-toggle:focus-visible {
  color: var(--sz-white);
  background: transparent;
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 4px;
}

.sz-video-toggle:active {
  transform: translateY(1px);
}

.sz-hero-controls {
  position: absolute;
  left: auto;
  right: 18px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  width: max-content;
  max-width: calc(100% - 36px);
}

.sz-hero-controls .sz-video-toggle {
  position: relative;
  right: auto;
  bottom: auto;
  flex: 0 0 auto;
}

.sz-sound-toggle {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
  color: var(--sz-white);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.sz-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.sz-sound-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 3px;
}

.sz-sound-icon {
  width: 24px;
  height: 24px;
  display: block;
  overflow: visible;
}

.sz-sound-speaker {
  fill: currentColor;
}

.sz-sound-wave,
.sz-sound-slash {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sz-sound-wave {
  opacity: 1;
  transition: opacity 160ms ease, transform 160ms ease;
  transform-origin: 17px 16px;
}

.sz-sound-slash {
  opacity: 0;
  stroke-width: 2.8;
  transition: opacity 160ms ease;
}

.sz-sound-toggle.is-muted .sz-sound-wave {
  opacity: 0;
  transform: scaleX(0.6);
}

.sz-sound-toggle.is-muted .sz-sound-slash {
  opacity: 1;
}

.sz-video-toggle::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 14px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.sz-video-toggle.is-playing::before,
.sz-video-toggle.is-playing::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 4px;
  height: 16px;
  border: 0;
  background: currentColor;
}

.sz-video-toggle.is-playing::before {
  left: 16px;
}

.sz-video-toggle.is-playing::after {
  left: 24px;
}

.sz-hero-toggle {
  color: var(--sz-white);
}

.sz-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 25%, rgba(0, 0, 0, 0.54)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05), transparent 62%);
}

.sz-hero-actions {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 86px;
  display: grid;
  justify-items: start;
  gap: 9px;
}

.sz-hero-actions a {
  display: inline-grid;
  place-items: center;
  min-width: 92px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(50, 50, 50, 0.82);
  color: var(--sz-white);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sz-hero-actions a:hover,
.sz-hero-actions a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.sz-hero-actions a:active {
  transform: translateY(0);
}

.sz-hero-actions a:first-child {
  background: rgba(5, 5, 5, 0.92);
}

.sz-hero-actions a:nth-child(2) {
  background: rgba(255, 255, 255, 0.94);
  color: var(--sz-black);
}

.sz-home-products {
  padding: 42px 0 54px;
  background: var(--sz-white);
}

.sz-section-kicker {
  margin: 0 24px 30px;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
}

.sz-gender-tabs {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 36px;
}

.sz-gender-tabs button {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 72px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.sz-gender-tabs button:hover,
.sz-gender-tabs button:focus-visible {
  color: var(--energy-orange);
}

.sz-gender-tabs button:active {
  transform: translateY(1px);
}

.sz-gender-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--sz-black);
}

.sz-editorial-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 10px;
  padding: 0 14px;
}

.sz-editorial-grid.is-switching {
  pointer-events: none;
}

.sz-editorial-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 0.74 / 1;
  background: var(--sz-cream);
}

.sz-editorial-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sz-editorial-next-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  will-change: clip-path;
}

.sz-editorial-next-image.is-forward {
  clip-path: inset(0 100% 0 0);
  animation: szGenderWipeForward 820ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.sz-editorial-next-image.is-backward {
  clip-path: inset(0 0 0 100%);
  animation: szGenderWipeBackward 820ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes szGenderWipeForward {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes szGenderWipeBackward {
  from {
    clip-path: inset(0 0 0 100%);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

.sz-card-meta {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  min-height: 58px;
  text-align: center;
  transition: opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sz-card-meta.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.sz-card-meta strong {
  font-size: 14px;
  line-height: 1.2;
}

.sz-card-meta span {
  color: #7a7a7a;
  font-size: 11px;
  line-height: 1.25;
}

.sz-video-section {
  position: relative;
  padding: 42px 0 54px;
  background: var(--sz-white);
}

.sz-video-layout {
  display: grid;
  justify-items: center;
}

.sz-video-side-card {
  display: none;
}

.sz-video-frame {
  position: relative;
  width: 240px;
  height: 400px;
  margin: 0 auto;
  border: 1px solid var(--sz-line);
  background: var(--sz-cream);
  overflow: hidden;
}

.sz-explore-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sz-explore-toggle {
  right: 12px;
  bottom: 12px;
  color: rgba(9, 9, 9, 0.58);
  background: transparent;
}

.sz-explore-toggle::after {
  left: 10px;
  top: 6px;
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 12px;
}

.sz-explore-toggle.is-playing::before,
.sz-explore-toggle.is-playing::after {
  top: 6px;
  width: 4px;
  height: 16px;
  background: currentColor;
}

.sz-explore-toggle.is-playing::before {
  left: 9px;
}

.sz-explore-toggle.is-playing::after {
  left: 17px;
}

.sz-video-note {
  display: none;
}

.sz-news-carousel {
  overflow: hidden;
  padding: 46px 0 38px;
  background: #050706;
  color: var(--sz-white);
  text-align: center;
}

.sz-news-carousel h2 {
  margin: 0 24px 28px;
  color: var(--sz-white);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0;
  text-align: center;
}

.sz-news-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 24px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sz-news-track::-webkit-scrollbar {
  display: none;
}

.sz-news-card {
  position: relative;
  flex: 0 0 min(78vw, 330px);
  scroll-snap-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101312;
  color: var(--sz-white);
  text-align: left;
  opacity: 0.72;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transform: scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 240ms ease;
}

.sz-news-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 64px;
  height: 5px;
  background: var(--energy-orange);
}

.sz-news-card:nth-child(2)::before {
  background: var(--energy-cyan);
}

.sz-news-card:nth-child(3)::before {
  background: var(--energy-blue);
}

.sz-news-card:nth-child(4)::before {
  background: var(--energy-lime);
}

.sz-news-card:nth-child(5)::before {
  background: var(--energy-pink);
}

.sz-news-card:nth-child(6)::before {
  background: #6bdf63;
}

.sz-news-card.active {
  opacity: 1;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.48);
  transform: scale(1);
}

.sz-news-card img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
}

.sz-news-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 176px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.sz-news-card span,
.sz-news-card strong {
  position: relative;
  z-index: 2;
  display: block;
}

.sz-news-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 70px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 750;
}

.sz-news-card strong {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  min-height: 48px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.sz-news-controls {
  display: grid;
  grid-template-columns: 44px auto 44px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.sz-news-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: var(--sz-white);
  color: var(--sz-black);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.sz-pill {
  display: inline-grid;
  place-items: center;
  min-width: 104px;
  min-height: 44px;
  margin: 0;
  border-radius: 999px;
  background: var(--sz-white);
  color: var(--sz-black);
  font-size: 13px;
  font-weight: 650;
}

.sz-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease var(--reveal-delay, 0ms),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.sz-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sz-editorial-card,
.sz-product-item,
.sz-channel-grid a,
.sz-news-card {
  transition: transform 320ms ease, opacity 240ms ease, filter 320ms ease;
}

.sz-editorial-card,
.sz-product-image,
.sz-news-card {
  overflow: hidden;
}

.sz-editorial-card img {
  display: block;
}

.sz-editorial-card img,
.sz-product-image img,
.sz-channel-icon,
.sz-news-card img {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .sz-editorial-card:hover,
  .sz-product-item:hover,
  .sz-channel-grid a:hover {
    transform: translateY(-4px);
  }

  .sz-editorial-card:hover img,
  .sz-product-item:hover .sz-product-image img,
  .sz-news-card:hover img {
    transform: scale(1.025);
    filter: contrast(1.03);
  }

  .sz-channel-grid a:hover .sz-channel-icon {
    transform: scale(0.94);
    background: #ecece8;
  }
}

.sz-body .sz-pill,
.sz-body .sz-white-pill {
  color: var(--sz-black);
}

.sz-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 20px 24px 0;
}

.sz-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #777;
}

.sz-dots span.active {
  background: var(--sz-white);
}

.sz-footer-white {
  padding: 0 28px 34px;
  background: var(--sz-white);
  border-top: 1px solid var(--sz-line);
}

.sz-footer-actions {
  display: grid;
  border-bottom: 1px solid #deded9;
}

.sz-footer-action {
  border-bottom: 1px solid #e2e2de;
}

.sz-footer-action:last-child {
  border-bottom: 0;
}

.sz-footer-action button,
.sz-footer-action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  border: 0;
  background: transparent;
  color: var(--sz-black);
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-size: 19px;
  font-weight: 750;
  line-height: 1;
}

.sz-footer-action-link:hover,
.sz-footer-action-link:focus-visible {
  color: var(--sz-black);
  transform: none;
}

.sz-footer-action button span:last-child {
  color: #5f5f5c;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), color 180ms ease;
}

.sz-footer-action.is-open button span:last-child {
  color: var(--sz-black);
  transform: rotate(45deg);
}

.sz-footer-action-panel {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 260ms ease;
}

.sz-footer-action.is-open .sz-footer-action-panel {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 24px;
}

.sz-footer-action-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #555;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  transition: color 180ms ease, transform 180ms ease;
}

.sz-footer-action-panel a:hover,
.sz-footer-action-panel a:focus-visible {
  color: var(--sz-black);
  transform: translateX(2px);
}

.sz-footer-links {
  display: grid;
  border-top: 1px solid var(--sz-line);
}

.sz-footer-links a {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e9e9e5;
  padding: 26px 0;
  font-size: 18px;
  font-weight: 650;
}

.sz-footer-brand {
  padding-top: 34px;
}

.sz-footer-brand img {
  display: none;
}

.sz-footer-brand strong {
  display: block;
  color: var(--sz-black);
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}

.sz-footer-brand strong::before {
  content: "山仕 ";
}

.sz-footer-brand p {
  margin: 24px 0 28px;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.sz-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 36px;
  padding-top: 22px;
  border-top: 1px solid var(--sz-line);
  font-size: 17px;
  font-weight: 750;
}

.sz-footer-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color 180ms ease, transform 180ms ease;
}

.sz-footer-grid a:hover,
.sz-footer-grid a:focus-visible {
  color: var(--energy-orange);
  transform: translateX(2px);
}

.sz-copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 30px !important;
  color: #8a8a8a;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.sz-copyright a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #6a6a66;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.sz-copyright a:hover,
.sz-copyright a:focus-visible {
  color: var(--sz-black);
}

.sz-police-record {
  color: #8a8a86;
}

.sz-footer-compact {
  margin-top: 0;
}

.sz-footer-compact .sz-footer-brand {
  padding-top: 34px;
}

.sz-page {
  padding-top: 64px;
  background: var(--sz-white);
}

.sz-page-bleed {
  padding-top: 0;
}

.sz-page-title {
  padding: 34px 18px 28px;
  text-align: center;
}

.sz-page-title h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.sz-page-title p {
  margin: 12px 0 0;
  color: var(--sz-muted);
  font-size: 13px;
}

.sz-list-toolbar {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--sz-line);
  border-bottom: 1px solid var(--sz-line);
  padding: 14px 18px;
  color: #777;
  font-size: 14px;
}

.sz-list-toolbar strong {
  color: var(--sz-black);
  font-weight: 650;
}

.sz-product-series-heading {
  scroll-margin-top: 76px;
  padding: 28px 24px 22px;
  background: var(--sz-white);
  text-align: center;
}

.sz-product-series-heading h1 {
  margin: 0;
  color: var(--sz-black);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 750;
}

.sz-product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sz-product-item {
  border-bottom: 1px solid #ededeb;
  background: var(--sz-white);
}

.sz-product-item:nth-child(odd) {
  border-right: 1px solid var(--sz-white);
}

.sz-product-image {
  position: relative;
  background: var(--sz-cream);
}

.sz-product-image img {
  width: 100%;
  aspect-ratio: 0.75 / 1;
  object-fit: cover;
}

.sz-product-coming {
  display: grid;
  place-items: center;
  aspect-ratio: 0.75 / 1;
  border: 1px solid #ececea;
  background: #f7f7f5;
  text-align: center;
}

.sz-product-coming div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.sz-product-coming strong {
  font-size: 17px;
  line-height: 1.2;
}

.sz-product-coming span:not(.sz-series-mark) {
  color: #777;
  font-size: 12px;
}

.sz-series-mark {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
}

.sz-product-info {
  min-height: 92px;
  padding: 18px;
}

.sz-product-info h2 {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.sz-product-info p {
  margin: 12px 0 0;
  color: #777;
  font-size: 12px;
}

.sz-product-info a {
  display: inline-block;
  margin-top: 12px;
  color: #888;
  font-size: 11px;
}

.sz-swatches {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.sz-swatches span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color, #111);
}

.sz-science-hero,
.sz-products-hero,
.sz-store-hero,
.sz-contact-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--sz-white);
}

.sz-science-hero img,
.sz-products-hero img,
.sz-store-hero img,
.sz-contact-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.sz-science-hero picture,
.sz-products-hero picture,
.sz-store-hero picture,
.sz-contact-hero picture {
  display: block;
  height: 100%;
  min-height: inherit;
}

.sz-science-hero::after,
.sz-products-hero::after,
.sz-store-hero::after,
.sz-contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 42%, rgba(0, 0, 0, 0.62));
}

.sz-page-hero-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 48px;
}

.sz-page-hero-copy.top {
  top: 56px;
  bottom: auto;
}

.sz-page-hero-copy h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
}

.sz-science-hero .sz-page-hero-copy h1 {
  max-width: 8.2em;
  font-size: clamp(34px, 10vw, 42px);
  line-height: 1.08;
}

.sz-page-hero-copy h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.sz-page-hero-copy p {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.sz-hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 7vh, 72px);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 142px;
  color: var(--sz-white);
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
  animation: szScrollCueFloat 1900ms cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.sz-hero-scroll-cue span {
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  opacity: 0.82;
}

.sz-hero-scroll-cue strong {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  padding: 0 24px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.sz-hero-scroll-cue::after {
  content: "";
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.76);
}

@keyframes szScrollCueFloat {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  48% {
    transform: translate(-50%, 8px);
  }
}

.sz-white-pill {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--sz-white);
  color: var(--sz-black);
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
}

.sz-science-block-title {
  border-bottom: 1px solid var(--sz-black);
  padding: 46px 18px 32px;
  font-size: 24px;
  font-weight: 750;
}

.sz-science-feature {
  background: var(--sz-white);
}

.sz-science-feature-layout {
  display: grid;
  gap: 30px;
  padding: 34px 18px 0;
}

.sz-science-feature-copy {
  max-width: 520px;
  display: grid;
  gap: 14px;
}

.sz-science-kicker {
  margin: 0;
  color: #777;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.5;
}

.sz-science-feature-copy h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.sz-science-feature-copy p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
}

.sz-science-feature-copy .sz-science-kicker {
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}

.sz-science-video-frame {
  position: relative;
  width: min(88vw, 680px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background: #f2f2ef;
}

.sz-science-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sz-science-toggle {
  right: 14px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.sz-science-map {
  padding: 34px 14px 0;
}

.sz-science-map img {
  width: 100%;
  aspect-ratio: 1.39 / 1;
  object-fit: cover;
}

.sz-science-transition {
  margin: 32px 24px 0;
  border-top: 1px solid var(--sz-line);
  padding: 22px 0 30px;
  text-align: center;
}

.sz-science-transition p {
  max-width: 22em;
  margin: 0;
  margin-inline: auto;
  color: #70706c;
  font-size: 12px;
  line-height: 1.85;
}

.sz-topic-section {
  overflow: hidden;
  padding: 46px 0 42px;
}

.sz-topic-section h2 {
  margin: 0 18px 28px;
  font-size: 24px;
}

.sz-topic-track {
  display: flex;
  gap: 18px;
  padding-left: 18px;
  width: max-content;
}

.sz-topic-card {
  position: relative;
  width: 320px;
  color: var(--sz-white);
}

.sz-topic-card img {
  width: 100%;
  aspect-ratio: 0.74 / 1;
  object-fit: cover;
}

.sz-topic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 54%, rgba(0, 0, 0, 0.62));
}

.sz-topic-card h3,
.sz-topic-card a {
  position: absolute;
  z-index: 2;
}

.sz-topic-card h3 {
  top: 28px;
  left: 18px;
  right: 18px;
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.sz-topic-card a {
  left: 20px;
  bottom: 28px;
}

.sz-science-topics {
  background:
    linear-gradient(135deg, rgba(35, 109, 255, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(255, 90, 31, 0.13), transparent 30%),
    #f9fbf4;
  color: var(--sz-black);
  text-align: center;
}

.sz-science-topics h2 {
  text-align: center;
}

.sz-science-topics .sz-topic-track {
  display: flex;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0 24px 8px;
}

.sz-science-topics .sz-topic-card {
  width: auto;
  color: var(--sz-white);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.46);
}

.sz-science-topics .sz-topic-card::after {
  height: 150px;
  inset: auto 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 20, 19, 0.74));
}

.sz-science-topics .sz-topic-card img {
  aspect-ratio: 0.86 / 1;
}

.sz-science-topics .sz-news-controls button {
  border-color: rgba(16, 35, 31, 0.22);
  color: var(--sz-black);
}

.sz-science-topics .sz-pill {
  background: var(--energy-blue);
  color: var(--sz-white);
}

.sz-science-topics .sz-dots span {
  background: #b6bab8;
}

.sz-science-topics .sz-dots span.active {
  background: var(--sz-black);
}

.sz-accordion-dark {
  background: var(--sz-black);
  color: var(--sz-white);
}

.sz-accordion-dark div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 26px 18px;
  font-size: 16px;
  font-weight: 650;
}

.sz-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding: 32px 24px 52px;
  text-align: center;
}

.sz-store-heading {
  scroll-margin-top: 76px;
  padding: 42px 24px 8px;
}

.sz-store-heading h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
}

.sz-store-heading p {
  max-width: 24em;
  margin: 14px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.sz-contact-heading {
  scroll-margin-top: 76px;
  padding-bottom: 18px;
}

.sz-contact-heading h1 {
  max-width: 8em;
}

.sz-science-feature,
.sz-contact-info {
  scroll-margin-top: 76px;
}

.sz-channel-grid .sz-channel-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--sz-cream);
  color: var(--sz-black);
  overflow: hidden;
}

.sz-channel-icon img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.sz-channel-grid strong,
.sz-channel-grid a > span:not(.sz-channel-icon) {
  display: block;
}

.sz-channel-grid strong {
  font-size: 17px;
}

.sz-channel-grid a > span:not(.sz-channel-icon) {
  margin-top: 8px;
  color: #777;
  font-size: 11px;
}

.sz-offline {
  border-top: 1px solid var(--sz-black);
  padding: 44px 24px 70px;
}

.sz-offline h2 {
  margin: 0 0 34px;
  font-size: 30px;
}

.sz-offline strong {
  display: block;
  font-size: 19px;
}

.sz-offline p {
  max-width: 25em;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.sz-info-accordion {
  border-top: 1px solid var(--sz-black);
}

.sz-info-accordion .sz-accordion-item {
  border-bottom: 1px solid var(--sz-line);
}

.sz-info-accordion button {
  position: relative;
  width: 100%;
  min-height: 70px;
  border: 0;
  background: transparent;
  color: var(--sz-black);
  cursor: pointer;
  padding: 0 36px 0 0;
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 750;
}

.sz-info-accordion button::before,
.sz-info-accordion button::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: transform 260ms ease, opacity 260ms ease;
}

.sz-info-accordion button::after {
  transform: rotate(90deg);
}

.sz-info-accordion .is-open button::after {
  opacity: 0;
  transform: rotate(0deg);
}

.sz-accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

.sz-accordion-panel > * {
  margin-top: 0;
  margin-bottom: 22px;
}

.sz-accordion-panel strong {
  display: block;
  font-size: 22px;
  line-height: 1.35;
}

.sz-accordion-panel p {
  max-width: 26em;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.sz-accordion-item.is-open .sz-accordion-panel {
  opacity: 1;
}

.sz-contact-info {
  border-top: 1px solid var(--sz-black);
  padding: 10px 24px 72px;
}

.sz-contact-row {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--sz-line);
  padding: 26px 0;
}

.sz-contact-row:first-child {
  border-top: 0;
}

.sz-contact-row:last-of-type {
  border-bottom: 1px solid var(--sz-line);
}

.sz-contact-row > span {
  color: #7a7a76;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.4;
}

.sz-contact-main a {
  color: inherit;
  text-decoration: none;
}

.sz-contact-value {
  display: grid;
  gap: 10px;
}

.sz-contact-main {
  margin: 0;
  color: var(--sz-black);
  font-size: 18px;
  font-weight: 520;
  line-height: 1.55;
  letter-spacing: 0;
}

.sz-contact-desc {
  max-width: 28em;
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}

.sz-contact-wechat {
  gap: 16px;
}

.sz-contact-note {
  margin: 34px 0 0;
  color: #9a9a9a;
  font-size: 11px;
  line-height: 1.7;
}

.sz-qr-card {
  width: min(42vw, 148px);
  margin: 2px 0 0;
  border: 1px solid #e1e1dd;
  background: var(--sz-white);
  padding: 8px;
}

.sz-qr-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.sz-qr-card figcaption {
  margin-top: 8px;
  color: #8a8a86;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.sz-article {
  padding-top: 64px;
  background: #f8fbf3;
}

.sz-article-head {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 35, 31, 0.12);
  padding: 42px 24px 38px;
  background:
    linear-gradient(90deg, rgba(199, 255, 55, 0.36), transparent 28%),
    linear-gradient(135deg, rgba(17, 207, 193, 0.18), transparent 45%),
    #f8fbf3;
}

.sz-article-head::after {
  content: "";
  width: 72px;
  height: 8px;
  background: var(--energy-orange);
}

.sz-article-head p {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  margin: 0;
  border-radius: 999px;
  background: var(--energy-lime);
  color: #12201c;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 800;
}

.sz-article-head h1 {
  max-width: 12em;
  margin: 0;
  color: #10231f;
  font-size: clamp(31px, 9vw, 46px);
  line-height: 1.12;
}

.sz-article-head time {
  display: block;
  margin: 0;
  color: #58716b;
  font-size: 12px;
  font-weight: 650;
}

.sz-article-content {
  padding: 28px 24px 52px;
}

.sz-article-colorbar {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.3fr 0.9fr;
  height: 9px;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 999px;
}

.sz-article-colorbar span:nth-child(1) {
  background: var(--energy-orange);
}

.sz-article-colorbar span:nth-child(2) {
  background: var(--energy-lime);
}

.sz-article-colorbar span:nth-child(3) {
  background: var(--energy-cyan);
}

.sz-article-colorbar span:nth-child(4) {
  background: var(--energy-blue);
}

.sz-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.sz-article-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(16, 35, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #15332d;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 750;
}

.sz-article-body {
  border-top: 1px solid rgba(16, 35, 31, 0.14);
  padding-top: 32px;
}

.sz-article-content p {
  margin: 0 0 26px;
  color: #233430;
  font-size: 16px;
  line-height: 1.9;
}

.sz-article-content .sz-article-lead {
  color: #10231f;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.45;
}

.sz-article-visual {
  display: grid;
  gap: 0;
  margin: 34px 0 36px;
  border: 1px solid rgba(16, 35, 31, 0.1);
  background: var(--sz-white);
}

.sz-article-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sz-article-visual figcaption {
  display: grid;
  gap: 8px;
  border-top: 6px solid var(--energy-cyan);
  padding: 18px;
}

.sz-article-visual strong {
  color: #10231f;
  font-size: 18px;
  line-height: 1.3;
}

.sz-article-visual span {
  color: #60706b;
  font-size: 13px;
  line-height: 1.75;
}

.sz-article-content h2 {
  margin: 0 0 24px;
  font-size: 22px;
}

.sz-article-caption {
  margin-top: 14px;
  color: #777;
  font-size: 11px;
}

.sz-article-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-top: 1px solid rgba(16, 35, 31, 0.14);
  margin-top: 44px;
  padding-top: 26px;
  font-size: 14px;
  font-weight: 750;
}

.sz-article-nav a {
  display: grid;
  gap: 4px;
  min-height: 58px;
  align-content: center;
  border: 1px solid rgba(16, 35, 31, 0.1);
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 14px;
}

.sz-article-nav a:nth-child(2) {
  background: var(--energy-blue);
  color: var(--sz-white);
}

.sz-article-nav span {
  color: inherit;
  font-size: 10px;
  opacity: 0.72;
}

.sz-legal-page,
.sz-not-found {
  min-height: 72svh;
  padding: 112px 24px 58px;
  background: #f7f7f2;
}

.sz-legal-hero {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 34px;
}

.sz-legal-hero span,
.sz-not-found span {
  color: var(--energy-orange);
  font-size: 12px;
  font-weight: 850;
}

.sz-legal-hero h1,
.sz-not-found h1 {
  margin: 0;
  color: var(--sz-black);
  font-size: clamp(34px, 11vw, 66px);
  line-height: 1.06;
  font-weight: 850;
  text-wrap: balance;
}

.sz-legal-hero p,
.sz-not-found p {
  max-width: 720px;
  margin: 0;
  color: #353532;
  font-size: clamp(16px, 3.9vw, 21px);
  font-weight: 560;
  line-height: 1.7;
}

.sz-legal-hero time {
  color: #777772;
  font-size: 13px;
  font-weight: 650;
}

.sz-legal-content {
  display: grid;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.sz-legal-content article {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
}

.sz-legal-content h2 {
  margin: 0 0 14px;
  color: var(--sz-black);
  font-size: clamp(22px, 6vw, 32px);
  line-height: 1.2;
}

.sz-legal-content p {
  max-width: 75ch;
  margin: 0;
  color: #33332f;
  font-size: 15px;
  font-weight: 460;
  line-height: 1.95;
}

.sz-legal-content p + p {
  margin-top: 12px;
}

.sz-legal-content a {
  color: var(--sz-black);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sz-not-found {
  display: grid;
  align-content: center;
  gap: 18px;
}

.sz-not-found > * {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
}

.sz-not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.sz-not-found-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--sz-black);
  padding: 0 18px;
  color: var(--sz-black);
  font-size: 14px;
  font-weight: 800;
}

.sz-not-found-actions a:first-child {
  background: var(--sz-black);
  color: var(--sz-white);
}

@media (min-width: 760px) {
  .sz-body {
    background: var(--sz-white);
  }

  .sz-page-wrap {
    width: 100%;
    margin: 0;
    min-height: 100vh;
  }

  .sz-topbar {
    min-height: 76px;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    padding: 0 clamp(28px, 4vw, 56px);
  }

  .sz-brand {
    grid-column: 1;
    justify-self: start;
  }

  .sz-brand img {
    width: 68px;
  }

  .sz-brand span {
    font-size: 13px;
  }

  .sz-menu-button {
    font-size: 14px;
  }

  .sz-menu-drawer {
    width: clamp(320px, 28vw, 380px);
    max-width: min(42vw, 420px);
    padding: 38px 36px 40px;
  }

  .sz-menu-close {
    right: clamp(28px, 4vw, 56px);
    height: 76px;
    font-size: 12px;
  }

  .sz-menu-nav {
    margin-top: clamp(88px, 13vh, 132px);
  }

  .sz-menu-nav a {
    padding: clamp(20px, 3.2vh, 30px) 0;
    font-size: clamp(22px, 2vw, 30px);
  }

  .sz-menu-caption {
    left: 36px;
    bottom: 40px;
    font-size: 10px;
  }

  .sz-hero {
    height: max(760px, 100vh);
    min-height: max(760px, 100vh);
  }

  .sz-hero-poster,
  .sz-hero-poster img,
  .sz-hero-video {
    height: 100%;
    min-height: 100%;
    object-position: center;
  }

  .sz-hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.34)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 34%, rgba(0, 0, 0, 0.48));
  }

  .sz-hero-actions {
    left: clamp(40px, 7vw, 96px);
    bottom: clamp(96px, 14vh, 150px);
    grid-template-columns: repeat(2, auto);
    gap: 14px;
  }

  .sz-hero-actions a {
    min-width: 132px;
    min-height: 52px;
    padding: 0 26px;
    font-size: 16px;
  }

  .sz-hero-controls {
    right: clamp(40px, 7vw, 96px);
    bottom: 64px;
    gap: 20px;
  }

  .sz-home-products {
    padding: 72px clamp(28px, 5vw, 72px) 84px;
  }

  .sz-section-kicker {
    max-width: 560px;
    margin: 0 auto 38px;
    font-size: 17px;
  }

  .sz-editorial-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
  }

  .sz-card-meta strong {
    font-size: 16px;
  }

  .sz-video-section {
    padding: 76px clamp(28px, 5vw, 72px) 86px;
  }

  .sz-video-layout {
    grid-template-columns: minmax(240px, 340px) minmax(300px, auto);
    align-items: start;
    justify-content: center;
    gap: clamp(70px, 9vw, 136px);
  }

  .sz-video-side-card {
    display: grid;
    justify-items: center;
    align-self: start;
    padding-top: clamp(12px, 2.2vw, 36px);
    text-align: center;
    color: var(--sz-black);
  }

  .sz-video-side-card img {
    order: 3;
    width: min(17vw, 250px);
    aspect-ratio: 0.72 / 1;
    object-fit: cover;
    background: var(--sz-cream);
  }

  .sz-video-side-card strong {
    order: 1;
    margin-top: 0;
    font-size: 27px;
    line-height: 1.15;
  }

  .sz-video-side-card span {
    order: 2;
    margin-top: 14px;
    margin-bottom: 28px;
    font-size: 16px;
  }

  .sz-video-side-card em {
    order: 4;
    margin-top: 24px;
    border-bottom: 2px solid currentColor;
    padding-bottom: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
  }

  .sz-video-frame {
    width: auto;
    height: min(66vh, 620px);
    aspect-ratio: 3 / 5;
  }

  .sz-news-carousel {
    padding: 58px 0 48px;
  }

  .sz-news-carousel h2 {
    margin: 0 clamp(40px, 6vw, 86px) 36px;
    font-size: 28px;
    text-align: center;
  }

  .sz-news-track {
    gap: 22px;
    padding: 0 clamp(40px, 6vw, 86px) 10px;
  }

  .sz-news-card {
    flex-basis: min(31vw, 420px);
  }

  .sz-news-card img {
    aspect-ratio: 0.86 / 1;
  }

  .sz-news-card span {
    left: 22px;
    right: 22px;
    bottom: 86px;
    margin: 0;
    font-size: 12px;
  }

  .sz-news-card strong {
    left: 22px;
    right: 22px;
    bottom: 24px;
    margin: 0;
    font-size: 20px;
  }

  .sz-news-controls {
    margin-top: 28px;
    gap: 16px;
  }

  .sz-footer-white {
    padding: 0 clamp(28px, 4vw, 52px) 38px;
    border-top: 1px solid #e4e4df;
  }

  .sz-footer-actions {
    border-bottom: 1px solid #deded9;
  }

  .sz-footer-action button {
    min-height: 112px;
    font-size: 22px;
  }

  .sz-footer-action-link {
    min-height: 112px;
    font-size: 22px;
  }

  .sz-footer-action button span:last-child {
    font-size: 34px;
  }

  .sz-footer-action-panel {
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: clamp(36px, 6vw, 86px);
  }

  .sz-footer-action.is-open .sz-footer-action-panel {
    max-height: 120px;
    padding-bottom: 38px;
  }

  .sz-footer-action-panel a {
    min-height: 30px;
    color: #4f4f4c;
    font-size: 15px;
  }

  .sz-footer-action-panel a:hover {
    color: var(--sz-black);
  }

  .sz-footer-brand {
    display: grid;
    grid-template-columns: minmax(340px, 1.05fr) minmax(280px, 0.72fr);
    grid-template-rows: auto 1fr;
    align-items: start;
    column-gap: clamp(72px, 11vw, 180px);
    row-gap: 74px;
    padding: 54px 0 0;
  }

  .sz-footer-brand img {
    grid-column: 1;
    grid-row: 1;
    display: none;
  }

  .sz-footer-brand strong {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    color: var(--sz-black);
    font-size: 30px;
    font-weight: 750;
    line-height: 1;
  }

  .sz-footer-brand p:not(.sz-copyright) {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin: 58px 0 0;
    max-width: 720px;
    color: #444;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.7;
  }

  .sz-footer-grid {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 30px 92px;
    align-content: start;
    padding-top: 0;
    border-top: 0;
    font-size: 20px;
  }

  .sz-footer-grid a[href="./privacy.html"] {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: auto;
    margin-top: 4px;
    padding-top: 22px;
    border-top: 1px solid #deded9;
    color: #686864;
    font-size: 16px;
    font-weight: 650;
  }

  .sz-footer-grid a[href="./privacy.html"]:hover,
  .sz-footer-grid a[href="./privacy.html"]:focus-visible {
    color: var(--sz-black);
    transform: none;
  }

  .sz-copyright {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: end;
    margin-top: 0 !important;
    padding-top: 28px;
    border-top: 1px solid #deded9;
    color: #6e6e6a;
    font-size: 17px !important;
  }

  .sz-footer-compact {
    padding-bottom: 48px;
  }

  .sz-legal-page,
  .sz-not-found {
    padding: 158px clamp(56px, 7vw, 112px) 86px;
  }

  .sz-legal-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: end;
    gap: 42px;
    padding-bottom: 54px;
  }

  .sz-legal-hero span,
  .sz-legal-hero h1,
  .sz-legal-hero time {
    grid-column: 1;
  }

  .sz-legal-hero p {
    grid-column: 2;
    align-self: end;
  }

  .sz-legal-content article {
    display: grid;
    grid-template-columns: minmax(220px, 0.48fr) minmax(420px, 1fr);
    gap: 56px;
    padding: 42px 0;
  }

  .sz-legal-content h2 {
    grid-column: 1;
    margin-bottom: 0;
  }

  .sz-legal-content p {
    grid-column: 2;
  }

  .sz-not-found {
    min-height: 74svh;
  }

  .sz-page {
    padding-top: 76px;
  }

  .sz-page-bleed {
    padding-top: 0;
  }

  .sz-page-title {
    padding: 76px clamp(32px, 6vw, 86px) 48px;
  }

  .sz-page-title h1 {
    font-size: clamp(42px, 4.2vw, 62px);
  }

  .sz-list-toolbar {
    margin: 0 clamp(32px, 6vw, 86px);
    padding: 18px 0;
  }

  .sz-product-series-heading {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px clamp(32px, 6vw, 86px) 34px;
    text-align: left;
  }

  .sz-product-series-heading h1 {
    font-size: clamp(34px, 3.2vw, 48px);
  }

  .sz-product-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    max-width: 1440px;
    margin: 0 auto 72px;
    padding: 0 clamp(32px, 6vw, 86px);
  }

  .sz-product-info {
    min-height: 110px;
    padding: 22px;
  }

  .sz-product-info h2 {
    font-size: 17px;
  }

  .sz-product-info p {
    font-size: 13px;
  }

  .sz-product-coming strong {
    font-size: 24px;
  }

  .sz-product-coming span:not(.sz-series-mark) {
    font-size: 15px;
  }

  .sz-science-hero,
  .sz-products-hero,
  .sz-store-hero,
  .sz-contact-hero {
    min-height: 100svh;
  }

  .sz-page-hero-copy {
    left: clamp(44px, 7vw, 104px);
    right: auto;
    bottom: 86px;
    max-width: 560px;
  }

  .sz-page-hero-copy.top {
    top: 110px;
  }

  .sz-page-hero-copy h1 {
    font-size: clamp(54px, 6vw, 86px);
  }

  .sz-science-hero .sz-page-hero-copy h1 {
    max-width: 9.5em;
    font-size: clamp(52px, 5vw, 76px);
  }

  .sz-page-hero-copy h2 {
    font-size: 38px;
  }

  .sz-page-hero-copy p {
    font-size: 16px;
  }

  .sz-hero-scroll-cue {
    bottom: clamp(110px, 14vh, 158px);
    gap: 10px;
  }

  .sz-hero-scroll-cue strong {
    min-height: 48px;
    padding: 0 30px;
    font-size: 15px;
  }

  .sz-hero-scroll-cue::after {
    height: 32px;
  }

  .sz-science-block-title,
  .sz-topic-section h2,
  .sz-offline h2 {
    font-size: 38px;
  }

  .sz-science-block-title {
    padding: 72px clamp(40px, 7vw, 104px) 42px;
  }

  .sz-science-feature-layout {
    grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1fr);
    align-items: center;
    gap: clamp(42px, 7vw, 96px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px clamp(32px, 6vw, 86px) 0;
  }

  .sz-science-feature-copy h3 {
    max-width: 10.5em;
    font-size: clamp(34px, 3vw, 44px);
  }

  .sz-science-feature-copy p {
    font-size: 16px;
  }

  .sz-science-feature-copy .sz-science-kicker {
    font-size: 13px;
  }

  .sz-science-video-frame {
    width: min(52vw, 720px);
  }

  .sz-science-map {
    max-width: 1060px;
    margin: 0 auto;
    padding: 46px clamp(32px, 6vw, 86px) 0;
  }

  .sz-science-transition {
    max-width: 1060px;
    margin: 38px auto 0;
    padding: 24px 0 34px;
    text-align: center;
  }

  .sz-science-transition p {
    max-width: 34em;
    font-size: 14px;
  }

  .sz-topic-section {
    padding: 76px clamp(32px, 6vw, 86px) 72px;
  }

  .sz-topic-section h2 {
    max-width: 1180px;
    margin: 0 auto 34px;
  }

  .sz-topic-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: auto;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 0;
  }

  .sz-topic-card {
    width: auto;
  }

  .sz-topic-card img {
    aspect-ratio: 1.16 / 1;
  }

  .sz-science-topics .sz-topic-track {
    display: flex;
    gap: 22px;
    max-width: none;
    padding: 0 clamp(40px, 6vw, 86px) 10px;
  }

  .sz-science-topics .sz-topic-card {
    flex-basis: min(31vw, 420px);
  }

  .sz-science-topics .sz-topic-card img {
    aspect-ratio: 0.86 / 1;
  }

  .sz-accordion-dark {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sz-accordion-dark div {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    padding: 34px;
  }

  .sz-channel-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 76px;
  }

  .sz-store-heading {
    max-width: 900px;
    margin: 0 auto;
    padding: 72px 32px 8px;
  }

  .sz-contact-heading {
    max-width: 1280px;
    padding: 76px 40px 28px;
  }

  .sz-store-heading h1 {
    font-size: 56px;
  }

  .sz-contact-heading h1 {
    max-width: none;
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.08;
  }

  .sz-store-heading p {
    font-size: 17px;
  }

  .sz-offline,
  .sz-contact-info,
  .sz-article-head,
  .sz-article-content {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .sz-contact-row {
    grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
    align-items: start;
    gap: 76px;
    padding: 34px 0;
  }

  .sz-contact-row > span {
    padding-top: 5px;
    font-size: 13px;
  }

  .sz-contact-main {
    max-width: 28em;
    font-size: 22px;
    line-height: 1.5;
  }

  .sz-contact-desc {
    font-size: 14px;
  }

  .sz-contact-wechat {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 42px;
  }

  .sz-contact-row:last-of-type .sz-contact-main {
    max-width: 18em;
  }

  .sz-qr-card {
    width: 152px;
    margin-top: 0;
  }

  .sz-contact-note {
    margin-top: 44px;
    font-size: 13px;
  }

  .sz-contact-info {
    display: grid;
    grid-template-columns: 0.9fr 1.28fr 1.72fr;
    column-gap: 44px;
    row-gap: 0;
    max-width: 1280px;
    border-top: 1px solid var(--sz-black);
    padding: 0 40px 86px;
  }

  .sz-contact-row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 22px 1fr;
    gap: 38px;
    min-height: 0;
    border: 0;
    border-bottom: 1px solid #dfdfda;
    padding: 30px 0 34px;
  }

  .sz-contact-row:first-child {
    border-top: 0;
  }

  .sz-contact-row:last-of-type {
    border-bottom: 1px solid #dfdfda;
  }

  .sz-contact-row > span {
    padding-top: 0;
    color: #6f6f6a;
    font-size: 12px;
    line-height: 1.5;
  }

  .sz-contact-main {
    max-width: none;
    font-size: 18px;
    line-height: 1.45;
  }

  .sz-contact-desc {
    max-width: 24em;
    font-size: 13px;
    line-height: 1.75;
  }

  .sz-contact-row-email .sz-contact-main {
    font-size: 20px;
  }

  .sz-contact-wechat {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px;
  }

  .sz-qr-card {
    width: 104px;
  }

  .sz-contact-row-email {
    grid-column: auto;
  }

  .sz-contact-row-wechat {
    grid-column: auto;
  }

  .sz-contact-row-address {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 28px 0;
  }

  .sz-contact-row-address .sz-contact-main {
    max-width: none;
    font-size: 18px;
    line-height: 1.45;
    white-space: nowrap;
  }

  .sz-contact-note {
    grid-column: 1 / -1;
    margin: 22px 0 0;
  }

  .sz-info-accordion button {
    min-height: 84px;
    font-size: 22px;
  }

  .sz-accordion-panel strong {
    font-size: 26px;
  }

  .sz-accordion-panel p {
    font-size: 15px;
  }

  .sz-article {
    padding-top: 76px;
  }

  .sz-article-head {
    max-width: 1120px;
    padding-top: 68px;
    padding-bottom: 54px;
  }

  .sz-article-head h1 {
    max-width: 13em;
    font-size: clamp(46px, 4.6vw, 68px);
  }

  .sz-article-colorbar {
    margin-right: 0;
    margin-left: 0;
  }

  .sz-article-content {
    max-width: 980px;
    padding-top: 44px;
  }

  .sz-article-visual {
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
    align-items: stretch;
    margin: 46px 0 48px;
  }

  .sz-article-visual figcaption {
    align-content: end;
    border-top: 0;
    border-left: 8px solid var(--energy-cyan);
    padding: 30px;
  }

  .sz-article-visual strong {
    font-size: 24px;
  }

  .sz-article-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .sz-product-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sz-home-products {
    padding-top: 86px;
  }
}
