html {
  scroll-behavior: smooth;
  background: #f8f4ec;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  --site-bg: #f8f4ec;
  --site-text: #1a1a1a;
  --site-muted: #666666;
  --site-gold: #0157a4;
  --site-gold-dark: #014783;
  --site-max-width: 96rem;
  --site-gutter: clamp(1rem, 3vw, 3rem);
  --site-header-height: 5.25rem;
  --site-card-radius: 0.5rem;
  --site-card-radius-sm: 0.45rem;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

.local-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

site-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  isolation: isolate;
  background: rgba(248, 244, 236, 0.78);
  border-bottom: 1px solid rgba(1, 87, 164, 0.12);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

body[data-page="home"] site-header,
body[data-page="experience"] site-header,
body[data-page="stories"] site-header,
body[data-page="buy"] site-header {
  background: linear-gradient(90deg, rgba(206, 196, 182, 0.52) 0%, rgba(219, 211, 200, 0.34) 34%, rgba(238, 233, 225, 0.16) 72%);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px) saturate(135%);
}

body[data-page="home"] site-header.is-scrolled,
body[data-page="experience"] site-header.is-scrolled,
body[data-page="stories"] site-header.is-scrolled,
body[data-page="buy"] site-header.is-scrolled {
  background: rgba(248, 244, 236, 0.78);
  border-bottom-color: rgba(1, 87, 164, 0.12);
  backdrop-filter: blur(18px);
}

@media (min-width: 901px) {
  body[data-page="home"] site-header:not(.is-scrolled) .site-logo,
  body[data-page="home"] site-header:not(.is-scrolled) .site-logo__cn,
  body[data-page="home"] site-header:not(.is-scrolled) .site-header__lang,
  body[data-page="home"] site-header:not(.is-scrolled) .site-menu,
  body[data-page="experience"] site-header:not(.is-scrolled) .site-logo,
  body[data-page="experience"] site-header:not(.is-scrolled) .site-logo__cn,
  body[data-page="experience"] site-header:not(.is-scrolled) .site-header__lang,
  body[data-page="experience"] site-header:not(.is-scrolled) .site-menu,
  body[data-page="stories"] site-header:not(.is-scrolled) .site-logo,
  body[data-page="stories"] site-header:not(.is-scrolled) .site-logo__cn,
  body[data-page="stories"] site-header:not(.is-scrolled) .site-header__lang,
  body[data-page="stories"] site-header:not(.is-scrolled) .site-menu,
  body[data-page="buy"] site-header:not(.is-scrolled) .site-logo,
  body[data-page="buy"] site-header:not(.is-scrolled) .site-logo__cn,
  body[data-page="buy"] site-header:not(.is-scrolled) .site-header__lang,
  body[data-page="buy"] site-header:not(.is-scrolled) .site-menu {
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
  }

  body[data-page="home"] site-header:not(.is-scrolled) .site-logo__en,
  body[data-page="experience"] site-header:not(.is-scrolled) .site-logo__en,
  body[data-page="stories"] site-header:not(.is-scrolled) .site-logo__en,
  body[data-page="buy"] site-header:not(.is-scrolled) .site-logo__en {
    color: rgba(255, 255, 255, 0.74);
  }

  body[data-page="home"] site-header:not(.is-scrolled) .site-nav a,
  body[data-page="experience"] site-header:not(.is-scrolled) .site-nav a,
  body[data-page="stories"] site-header:not(.is-scrolled) .site-nav a,
  body[data-page="buy"] site-header:not(.is-scrolled) .site-nav a {
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.92;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
  }

  body[data-page="home"] site-header:not(.is-scrolled) .site-nav a:hover,
  body[data-page="experience"] site-header:not(.is-scrolled) .site-nav a:hover,
  body[data-page="stories"] site-header:not(.is-scrolled) .site-nav a:hover,
  body[data-page="buy"] site-header:not(.is-scrolled) .site-nav a:hover {
    color: var(--site-gold);
    border-color: var(--site-gold);
    opacity: 1;
  }

  body[data-page="home"] site-header:not(.is-scrolled) .site-nav a.is-active,
  body[data-page="experience"] site-header:not(.is-scrolled) .site-nav a.is-active,
  body[data-page="stories"] site-header:not(.is-scrolled) .site-nav a.is-active,
  body[data-page="buy"] site-header:not(.is-scrolled) .site-nav a.is-active {
    color: var(--site-gold);
    border-color: var(--site-gold);
    opacity: 1;
  }

  body[data-page="home"] site-header:not(.is-scrolled) .site-header__lang-option.is-active,
  body[data-page="experience"] site-header:not(.is-scrolled) .site-header__lang-option.is-active,
  body[data-page="stories"] site-header:not(.is-scrolled) .site-header__lang-option.is-active,
  body[data-page="buy"] site-header:not(.is-scrolled) .site-header__lang-option.is-active {
    color: #fff;
  }
}

.site-header__inner {
  max-width: var(--site-max-width);
  min-height: var(--site-header-height);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  color: var(--site-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1;
}

.site-logo__image {
  display: block;
  width: auto;
  max-width: 10.5rem;
  height: 2.8rem;
  object-fit: contain;
}

.site-logo__cn {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-logo__en {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--site-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.35rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.site-header__panel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--site-text);
  text-decoration: none;
  opacity: 0.78;
  padding: 0.55rem 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

site-header.is-nav-hidden .site-header__panel {
  display: none;
}

site-header.is-nav-hidden .site-header__lang {
  display: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--site-gold);
  border-color: var(--site-gold);
  opacity: 1;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--site-gold);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease;
}

.site-header__lang {
  min-height: 2.7rem;
  padding: 0 0.82rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: var(--site-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0.82;
  transition:
    transform 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.site-header__lang-option {
  opacity: 0.54;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-header__lang-option.is-active {
  color: var(--site-gold);
  opacity: 1;
  font-weight: 700;
}

.site-header__lang-divider {
  width: 1px;
  height: 0.9rem;
  background: currentColor;
  opacity: 0.22;
}

.site-footer__cta {
  min-height: 2.75rem;
  padding: 0 1.6rem;
  font-size: 0.95rem;
}

.site-header__lang:hover {
  color: var(--site-gold);
  opacity: 1;
  transform: translateY(-1px);
}

.site-footer__cta:hover {
  background: var(--site-gold-dark);
  opacity: 0.92;
  transform: translateY(-1px);
}

.site-menu {
  display: inline-flex;
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 0.9rem;
  background: rgba(26, 26, 26, 0.12);
  color: var(--site-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-menu svg {
  width: 1.28rem;
  height: 1.28rem;
}

.design-strip {
  width: 500% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}

.design-contained {
  object-fit: contain !important;
}

.design-cover {
  object-fit: cover !important;
}

body {
  background-color: var(--site-bg);
  overflow-x: clip;
}

main,
section {
  background-clip: padding-box;
}

body[data-page] .max-w-7xl,
body[data-page] .max-w-6xl,
body[data-page] .max-w-5xl,
body[data-page] .max-w-screen-xl,
body[data-page] .max-w-screen-lg,
body[data-page] .max-w-screen-md,
body[data-page] .max-w-screen-2xl {
  max-width: var(--site-max-width);
}

body[data-page="home"] .bg-brand-lightGray,
body[data-page="home"] .bg-brand-beige,
body[data-page="experience"],
body[data-page="technology"],
body[data-page="stories"],
body[data-page="buy"] {
  background-color: #f8f4ec;
}

body[data-page="technology"] {
  padding-top: var(--site-header-height);
}

body[data-page="home"] h1,
body[data-page="home"] h2,
body[data-page="experience"] h1,
body[data-page="technology"] h1,
body[data-page="stories"] h1,
body[data-page="buy"] h1 {
  letter-spacing: 0;
}

html[lang="en"] body[data-page] h1,
html[lang="en"] body[data-page] h2 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

body[data-page="home"] .home-hero-wrapper {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

body[data-page="home"] .home-hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .home-hero-wrapper::before {
  content: none;
}

body[data-page="home"] .home-hero-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 10, 14, 0.42) 0%, rgba(7, 10, 14, 0.2) 34%, rgba(7, 10, 14, 0.02) 72%);
}

body[data-page="home"] .home-hero {
  min-height: calc(100vh - 4.25rem);
}

body[data-page="home"] .home-hero h1 {
  color: #fff;
  font-size: clamp(3.5rem, 6vw, 6.25rem);
  font-weight: 400;
  line-height: 1.04;
}

body[data-page="home"] .home-hero__content {
  max-width: 42rem;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
  animation: hero-copy-in 900ms ease-out 160ms both;
}

body[data-page="home"] .home-hero__content p {
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="home"] .home-hero__content .text-brand-dark,
body[data-page="home"] .home-hero__content .text-brand-gray {
  color: inherit;
}

body[data-page="home"] .home-hero__content .text-brand-gold {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .home-hero__content span {
  color: rgba(255, 255, 255, 0.72);
}

@keyframes hero-camera {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .home-hero__video,
  body[data-page="home"] .home-hero__content {
    animation: none;
  }
}

[data-aos] {
  will-change: transform, opacity;
}

@media (max-width: 900px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"],
  [data-aos="fade-up-left"],
  [data-aos="fade-up-right"],
  [data-aos="fade-down-left"],
  [data-aos="fade-down-right"] {
    transform: translate3d(0, 2.25rem, 0) !important;
  }

  [data-aos="fade-left"].aos-animate,
  [data-aos="fade-right"].aos-animate,
  [data-aos="fade-up-left"].aos-animate,
  [data-aos="fade-up-right"].aos-animate,
  [data-aos="fade-down-left"].aos-animate,
  [data-aos="fade-down-right"].aos-animate {
    transform: translate3d(0, 0, 0) !important;
  }
}

.motion-float {
  animation: site-float 4.8s ease-in-out infinite;
}

@keyframes site-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.45rem, 0);
  }
}

.site-menu,
.site-header__lang,
.site-footer__cta,
.testimonial-video-trigger,
.home-testimonials__card,
.section-card,
body[data-page="stories"] article,
body[data-page="experience"] .about-capabilities article {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    filter 240ms ease;
}

.testimonial-video-trigger:hover,
.home-testimonials__card:hover,
.section-card:hover,
body[data-page="stories"] article:hover,
body[data-page="experience"] .about-capabilities article:hover {
  transform: translateY(-0.35rem);
}

.motion-tilt {
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
}

.site-menu:hover,
.site-header__lang:hover,
.site-footer__cta:hover {
  transform: translateY(-0.15rem);
}

html.reduced-motion *,
html.reduced-motion *::before,
html.reduced-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

html.reduced-motion [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

body[data-page="home"] section.py-24 {
  padding-top: clamp(5rem, 7vw, 7.5rem);
  padding-bottom: clamp(5rem, 7vw, 7.5rem);
}

body[data-page="home"] section h2 {
  line-height: 1.3;
}

body[data-page="home"] .home-feature h2,
body[data-page="home"] .bg-brand-beige h2,
body[data-page="home"] .bg-brand-dark h2 {
  line-height: 1.32 !important;
}

body[data-page="home"] .home-feature {
  height: clamp(26rem, 36.5vw, 35rem);
}

body[data-page="home"] .home-feature__inner {
  width: 100%;
  height: 100%;
}

body[data-page="home"] .home-feature__copy {
  padding: clamp(3rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

body[data-page="home"] .home-feature__copy > a {
  width: fit-content;
  align-self: flex-start;
  border-color: var(--site-gold) !important;
  color: var(--site-gold) !important;
}

body[data-page="home"] .home-feature__copy > a:hover {
  background: var(--site-gold) !important;
  border-color: var(--site-gold) !important;
  color: #fff !important;
}

body[data-page="home"] .home-feature__media {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
}

body[data-page="home"] .home-feature__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 320ms ease;
}

body[data-page="home"] .home-feature:hover .home-feature__image {
  transform: scale(1.035);
  filter: saturate(1.03);
}

body[data-page="home"] .home-feature__icons {
  justify-content: space-between;
  max-width: 34rem;
  width: 100%;
  margin-top: 0;
}

body[data-page="home"] .home-feature__icons > div > div {
  border-color: rgba(1, 87, 164, 0.32) !important;
  color: var(--site-gold) !important;
}

body[data-page="home"] .home-feature__icons svg {
  stroke: currentColor;
}

body[data-page="home"] section.bg-\[\#1A1A1A\] .text-brand-gold {
  color: var(--site-gold) !important;
}

@media (max-width: 1023px) {
  body[data-page="home"] .home-feature {
    height: auto;
  }

  body[data-page="home"] .home-feature__inner {
    flex-direction: column !important;
    height: auto;
  }

  body[data-page="home"] .home-feature__copy,
  body[data-page="home"] .home-feature__media {
    width: 100% !important;
    flex: none;
  }

  body[data-page="home"] .home-feature__copy {
    min-height: auto;
    padding: clamp(3.5rem, 8vw, 5.5rem) var(--site-gutter);
  }

  body[data-page="home"] .home-feature__copy h2 {
    max-width: 11.5em;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    word-break: keep-all;
  }

  body[data-page="home"] .home-feature__copy p {
    max-width: 28rem;
  }

  body[data-page="home"] .home-feature__media,
  body[data-page="home"] .home-feature__image {
    height: clamp(24rem, 64vw, 34rem);
  }

  body[data-page="home"] .home-feature--fast .home-feature__media {
    order: 2;
  }

  body[data-page="home"] .home-feature--fast .home-feature__copy {
    order: 1;
  }
}

@media (max-width: 767px) {
  body[data-page="home"] .home-feature {
    height: auto;
  }

  body[data-page="home"] .home-feature__media,
  body[data-page="home"] .home-feature__image {
    min-height: 22rem;
  }

  body[data-page="home"] .home-feature__copy {
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }
}

body[data-page="home"] .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
  gap: clamp(1rem, 2vw, 1.75rem);
}

body[data-page="home"] .grid .aspect-\[4\/5\] {
  border-radius: var(--site-card-radius);
}

body[data-page="home"] .grid .aspect-\[4\/5\] img {
  filter: saturate(0.86) contrast(0.98);
}

body[data-page="home"] .home-tech-feature {
  padding: clamp(4.5rem, 7vw, 7.5rem) var(--site-gutter);
}

body[data-page="home"] .home-tech-feature__inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(34rem, 1.35fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

body[data-page="home"] .home-tech-feature__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.6vw, 2.25rem);
}

body[data-page="home"] .home-tech-feature__copy h2 {
  margin: 0;
  color: var(--site-text);
  font-size: clamp(2rem, 3.05vw, 3rem);
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.045em;
}

body[data-page="home"] .home-tech-feature__text {
  color: var(--site-muted);
  font-size: clamp(0.95rem, 1.08vw, 1.1rem);
  line-height: 1.9;
}

body[data-page="home"] .home-tech-feature__text p {
  margin: 0;
}

body[data-page="home"] .home-tech-feature__badges {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4.5vw, 4rem);
}

body[data-page="home"] .home-tech-feature__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

body[data-page="home"] .home-tech-feature__badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1.5px solid var(--site-gold);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--site-gold);
  flex: 0 0 auto;
}

body[data-page="home"] .home-tech-feature__badge-text {
  color: var(--site-text);
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 700;
}

body[data-page="home"] .home-tech-feature__badge-text span {
  color: var(--site-muted);
  font-weight: 400;
}

body[data-page="home"] .home-tech-feature__panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 26, 26, 0.04);
  border-radius: var(--site-card-radius);
  padding: clamp(1rem, 1.8vw, 1.8rem);
  box-shadow: 0 1.5rem 4rem rgba(80, 66, 48, 0.06);
}

body[data-page="home"] .home-tech-feature__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.2vw, 1.25rem);
}

body[data-page="home"] .home-tech-feature__item {
  min-width: 0;
}

body[data-page="home"] .home-tech-feature__item-head {
  min-height: 4.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body[data-page="home"] .home-tech-feature__item-head h4 {
  margin: 0;
  color: var(--site-text);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
}

body[data-page="home"] .home-tech-feature__item-head p {
  margin: 0.35rem 0 0;
  color: var(--site-muted);
  font-size: 0.75rem;
  line-height: 1.3;
}

body[data-page="home"] .home-tech-feature__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: var(--site-card-radius-sm);
}

@media (max-width: 900px) {
  body[data-page="home"] .home-tech-feature__inner {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .home-tech-feature__badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  body[data-page="home"] .home-tech-feature__compare {
    grid-template-columns: 1fr;
  }
}

body[data-page="home"] .home-bottom-cta {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.82) 0%, rgba(15, 15, 15, 0.48) 42%, rgba(15, 15, 15, 0.08) 76%),
    var(--home-bottom-cta-image, url("../images/home/63.webp")) center / cover no-repeat;
}

body[data-page="home"] .testimonial-video-trigger {
  border: 0;
  padding: 0;
  background: #111;
  cursor: pointer;
}

body[data-page="home"] .testimonial-video-trigger img {
  transition: transform 240ms ease, filter 240ms ease;
}

body[data-page="home"] .testimonial-video-trigger:hover img {
  filter: brightness(0.82);
  transform: scale(1.025);
}

body[data-page="home"] .home-testimonials__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

body[data-page="home"] .home-testimonials__card {
  width: auto !important;
  min-width: 0 !important;
  height: 100%;
}

@media (min-width: 1280px) {
  body[data-page="home"] .home-testimonials__track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body[data-page="home"] .home-testimonials {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  body[data-page="home"] .home-testimonials > div {
    padding-right: 0;
  }

  body[data-page="home"] .home-testimonials__track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.site-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--site-gutter);
}

.site-video-modal.is-open {
  display: flex;
}

.site-video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.site-video-modal__dialog {
  position: relative;
  width: min(58rem, 100%);
  background: #000;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.35);
}

.site-video-modal video {
  display: block;
  width: 100%;
  max-height: min(78vh, 42rem);
  background: #000;
}

.site-video-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #111;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.site-image-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.site-image-modal.is-open {
  display: flex;
}

.site-image-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: zoom-out;
}

.site-image-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 72rem);
  height: min(86vh, 46rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-image-modal img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.site-image-modal__close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

body[data-page="home"] .rounded-3xl,
body[data-page="home"] .rounded-2xl,
body[data-page="home"] .rounded-xl,
body[data-page="experience"] .rounded-3xl,
body[data-page="experience"] .rounded-2xl,
body[data-page="experience"] .rounded-xl,
body[data-page="technology"] .rounded-3xl,
body[data-page="technology"] .rounded-2xl,
body[data-page="technology"] .rounded-xl,
body[data-page="stories"] .rounded-3xl,
body[data-page="stories"] .rounded-2xl,
body[data-page="stories"] .rounded-xl,
body[data-page="buy"] .rounded-3xl,
body[data-page="buy"] .rounded-2xl,
body[data-page="buy"] .rounded-xl,
body[data-page="buy"] .section-card {
  border-radius: var(--site-card-radius);
}

body[data-page="experience"] [data-purpose="hero-section"] {
  background: radial-gradient(circle at 78% 25%, rgba(1, 87, 164, 0.16), transparent 38%), linear-gradient(180deg, #fbf8f2, #f1e7d9);
}

body[data-page="experience"] .about-page {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 clamp(5rem, 8vw, 8rem);
}

body[data-page="experience"] .about-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.75rem;
  margin: 0 0 0.9rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: var(--site-gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
}

body[data-page="experience"] .about-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: max(calc(var(--site-header-height) + 1rem), clamp(5rem, 9vw, 8rem)) var(--site-gutter) clamp(4rem, 7vw, 6rem);
  isolation: isolate;
  overflow: hidden;
}

body[data-page="experience"] .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/home/58.webp") center / cover no-repeat;
  animation: hero-camera 12s ease-out both;
  transform-origin: center center;
}

body[data-page="experience"] .about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 10, 14, 0.68) 0%, rgba(7, 10, 14, 0.42) 34%, rgba(7, 10, 14, 0.04) 72%);
}

body[data-page="experience"] .about-hero__copy {
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
}

body[data-page="experience"] .about-hero__copy h1 {
  margin: 0;
  max-width: 11em;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}

body[data-page="experience"] .about-hero__lead {
  max-width: 38rem;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.9;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

body[data-page="experience"] .about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

body[data-page="experience"] .about-hero__meta span,
body[data-page="experience"] .about-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 1rem;
  border: 1px solid rgba(1, 87, 164, 0.24);
  border-radius: 999px;
  color: #014783;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
  font-weight: 700;
}

body[data-page="experience"] .about-hero__meta span {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

body[data-page="experience"] .about-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 320ms ease;
}

body[data-page="experience"] .about-statement,
body[data-page="experience"] .about-section,
body[data-page="experience"] .about-split,
body[data-page="experience"] .about-contact {
  width: min(var(--site-max-width), calc(100% - var(--site-gutter) * 2));
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(4rem, 7vw, 7rem);
}

body[data-page="experience"] .about-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(1, 87, 164, 0.1);
  border-radius: var(--site-card-radius);
}

body[data-page="experience"] .about-statement__copy {
  max-width: 35rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

html[lang="en"] body[data-page="experience"] .about-statement {
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 1fr);
}

html[lang="en"] body[data-page="experience"] .about-statement__copy {
  max-width: 41rem;
}

html[lang="en"] body[data-page="experience"] .about-statement__copy h2 {
  max-width: 24ch;
  font-size: clamp(1.85rem, 2.55vw, 2.95rem);
  line-height: 1.14;
  text-wrap: balance;
}

body[data-page="experience"] .about-statement__media {
  overflow: hidden;
  border-radius: var(--site-card-radius);
}

body[data-page="experience"] .about-statement__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease, filter 320ms ease;
}

body[data-page="experience"] .about-statement:hover .about-statement__media img,
body[data-page="experience"] .about-split:hover .about-split__media img {
  transform: scale(1.03);
  filter: saturate(1.03);
}

body[data-page="experience"] .about-statement h2,
body[data-page="experience"] .about-section__head h2,
body[data-page="experience"] .about-split__copy h2,
body[data-page="experience"] .about-contact__copy h2 {
  margin: 0;
  color: #2c2722;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

body[data-page="experience"] .about-statement > p,
body[data-page="experience"] .about-statement__copy p,
body[data-page="experience"] .about-section__head p,
body[data-page="experience"] .about-split__copy p,
body[data-page="experience"] .about-contact__copy p {
  margin: 0;
  color: #6e655d;
  font-size: 1rem;
  line-height: 1.9;
}

body[data-page="experience"] .about-section__head {
  display: grid;
  grid-template-columns: minmax(30rem, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(1.8rem, 3vw, 2.8rem);
}

body[data-page="experience"] .about-section__head h2 {
  font-size: clamp(1.8rem, 2.45vw, 2.75rem);
  white-space: nowrap;
}

body[data-page="experience"] .about-split__copy h2 {
  font-size: clamp(1.8rem, 2.45vw, 2.75rem);
}

body[data-page="experience"] .about-contact__copy h2 {
  font-size: clamp(1.8rem, 2.45vw, 2.75rem);
}

body[data-page="experience"] .about-contact__copy p {
  max-width: 32rem;
  margin-top: 1.35rem;
}

body[data-page="experience"] .about-section__head .about-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

body[data-page="experience"] .about-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.4rem);
}

body[data-page="experience"] .about-capabilities article,
body[data-page="experience"] .about-contact__grid > div {
  min-height: 12rem;
  padding: clamp(1.35rem, 2vw, 1.8rem);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(1, 87, 164, 0.1);
  border-radius: var(--site-card-radius);
}

body[data-page="experience"] .about-capabilities strong,
body[data-page="experience"] .about-contact__grid strong {
  display: block;
  color: #29241f;
  font-size: 1.15rem;
  line-height: 1.45;
}

body[data-page="experience"] .about-capabilities span,
body[data-page="experience"] .about-contact__grid span {
  display: block;
  margin-top: 0.75rem;
  color: #776d63;
  font-size: 0.92rem;
  line-height: 1.75;
}

body[data-page="experience"] .about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.88fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

body[data-page="experience"] .about-split__media {
  height: clamp(24rem, 36vw, 34rem);
  overflow: hidden;
  border-radius: var(--site-card-radius);
}

body[data-page="experience"] .about-split__copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

body[data-page="experience"] .about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

body[data-page="experience"] .about-contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(28rem, 1.35fr) minmax(16rem, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 5rem);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.64) 45%, rgba(0, 0, 0, 0.38) 100%),
    var(--about-service-background-image, url("../images/home/63.webp")) center / cover no-repeat;
  color: #fff;
  border-radius: var(--site-card-radius);
  overflow: hidden;
}

body[data-page="experience"] .about-contact__copy h2,
body[data-page="experience"] .about-contact__grid strong {
  color: #fff;
}

body[data-page="experience"] .about-contact__copy p,
body[data-page="experience"] .about-contact__grid span {
  color: rgba(255, 255, 255, 0.62);
}

body[data-page="experience"] .about-contact__grid {
  display: grid;
  gap: 0;
}

body[data-page="experience"] .about-contact__grid > div {
  min-height: auto;
  padding: clamp(0.85rem, 1.3vw, 1.15rem) 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
}

body[data-page="experience"] .about-contact__grid > div:first-child {
  padding-top: 0;
}

body[data-page="experience"] .about-contact__grid > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body[data-page="experience"] .about-contact__grid span {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.62);
}

body[data-page="experience"] .about-contact__grid strong {
  margin-top: 0.35rem;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.25;
}

body[data-page="experience"] .about-contact__grid a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1023px) {
  body[data-page="experience"] .about-statement,
  body[data-page="experience"] .about-section__head,
  body[data-page="experience"] .about-split,
  body[data-page="experience"] .about-contact {
    grid-template-columns: 1fr;
  }

  body[data-page="experience"] .about-hero__copy h1 {
    max-width: 12em;
    font-size: clamp(2.6rem, 8vw, 4.5rem);
  }

  body[data-page="experience"] .about-section__head h2 {
    white-space: normal;
  }

  body[data-page="experience"] .about-split__media {
    height: auto;
  }

  body[data-page="experience"] .about-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body[data-page="experience"] .about-page {
    width: 100%;
    padding-top: 0;
  }

  body[data-page="experience"] .about-hero__copy h1 {
    font-size: 2.45rem;
  }

  body[data-page="experience"] .about-hero__lead {
    font-size: 1rem;
  }

  body[data-page="experience"] .about-statement,
  body[data-page="experience"] .about-contact {
    padding: 1.35rem;
  }

  body[data-page="experience"] .about-capabilities {
    grid-template-columns: 1fr;
  }

  body[data-page="experience"] .about-capabilities article {
    min-height: auto;
  }

  body[data-page="experience"] .about-contact__grid strong {
    word-break: break-word;
  }
}

body[data-page="experience"] [data-purpose="hero-section"] {
  min-height: clamp(34rem, 68vh, 47rem);
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

body[data-page="experience"] [data-purpose="hero-section"] > div:last-child > div {
  width: clamp(22rem, 34vw, 38rem);
}

body[data-page="experience"] [data-purpose="process-timeline"] {
  max-width: min(var(--site-max-width), 86rem);
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

body[data-page="experience"] [data-purpose="process-timeline"] > div[class*="rounded-3xl"] {
  min-height: clamp(13rem, 19vw, 18rem);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(240, 230, 214, 0.86));
  box-shadow: 0 18px 48px rgba(39, 88, 154, 0.08);
  gap: clamp(2rem, 6vw, 6rem);
}

body[data-page="experience"] [data-purpose="process-timeline"] img {
  aspect-ratio: 1.72;
}

body[data-page="experience"] [data-purpose="process-timeline"] .text-5xl {
  font-size: clamp(3.5rem, 5vw, 5.6rem);
}

body[data-page="experience"] [data-purpose="lifestyle-footer"] > div {
  max-width: var(--site-max-width);
}

body[data-page="experience"] [data-purpose="lifestyle-footer"] img {
  height: clamp(12rem, 17vw, 16rem);
}

body[data-page="technology"] main {
  max-width: var(--site-max-width);
}

@media (max-width: 767px) {
  body[data-page="technology"] main {
    width: 100%;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    overflow-x: hidden;
  }

  body[data-page="technology"] [data-purpose="tech-intro"] {
    padding-top: 3.25rem;
  }

  body[data-page="technology"] .tech-intro__copy {
    max-width: 100%;
  }

  body[data-page="technology"] .tech-intro__copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body[data-page="technology"] .tech-intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.45rem 0.8rem;
  }
}

body[data-page="technology"] .bg-brand-card {
  background: rgba(255, 255, 255, 0.52);
}

body[data-page="technology"] [data-purpose="tech-intro"] {
  padding-top: 5rem;
  padding-bottom: 0;
}

body[data-page="technology"] .tech-intro__copy {
  max-width: 40rem;
}

body[data-page="technology"] .tech-intro__copy h1 {
  margin: 0;
  color: #2f2a25;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

html[lang="en"] body[data-page="technology"] .tech-intro__copy {
  max-width: 48rem;
}

html[lang="en"] body[data-page="technology"] .tech-intro__copy h1 {
  max-width: 30ch;
  font-size: clamp(1.85rem, 2.45vw, 2.7rem);
  line-height: 1.12;
  text-wrap: balance;
}

body[data-page="technology"] .tech-intro__copy p {
  margin: 0.7rem 0 0;
  color: #95897d;
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.7;
}

body[data-page="technology"] .tech-intro__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2.25rem, 4vw, 3.4rem);
}

body[data-page="technology"] .tech-intro__item {
  text-align: center;
}

body[data-page="technology"] .tech-intro__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  border: 1px solid rgba(1, 87, 164, 0.32);
  border-radius: var(--site-card-radius-sm);
  color: var(--site-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body[data-page="technology"] .tech-intro__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

body[data-page="technology"] .tech-intro__item h3 {
  margin: 0.9rem 0 0;
  color: #62574c;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

body[data-page="technology"] .tech-intro__item p {
  margin: 0.28rem 0 0;
  color: #a19589;
  font-size: 0.82rem;
  line-height: 1.45;
}

body[data-page="technology"] main > section {
  box-shadow: 0 18px 50px rgba(39, 88, 154, 0.06);
}

body[data-page="technology"] main > section:first-child {
  box-shadow: none;
}

body[data-page="technology"] main > section:not(:first-child) {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

body[data-page="technology"] section.bg-\[\#1c1a17\] {
  min-height: clamp(32rem, 42vw, 41rem);
}

body[data-page="technology"] .tech-droplet-content {
  min-height: inherit;
}

body[data-page="technology"] .tech-droplet-points {
  width: 100%;
  max-width: 11rem;
}

@media (min-width: 768px) {
  body[data-page="technology"] .tech-droplet-content {
    align-items: stretch;
  }

  body[data-page="technology"] .tech-droplet-copy {
    align-self: flex-start;
  }

  body[data-page="technology"] .tech-droplet-points {
    align-self: stretch;
    margin-top: 0;
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  body[data-page="technology"] .tech-droplet-point {
    height: 100%;
    justify-content: center;
  }
}

body[data-page="technology"] section.bg-\[\#1c1a17\] h2,
body[data-page="technology"] section.bg-\[\#151515\] h2 {
  font-size: clamp(2.25rem, 3.2vw, 3.5rem);
}

html[lang="en"] body[data-page="technology"] .tech-droplet-copy {
  max-width: 38rem;
}

html[lang="en"] body[data-page="technology"] .tech-droplet-copy h2 {
  max-width: 14ch;
  line-height: 1.16;
}

html[lang="en"] body[data-page="technology"] .tech-droplet-copy p {
  max-width: 34rem;
}

html[lang="en"] body[data-page="technology"] .tech-uv-section__copy {
  max-width: min(100%, 52rem);
  padding-right: clamp(1.5rem, 7vw, 8rem);
}

html[lang="en"] body[data-page="technology"] .tech-uv-section__copy h2 {
  max-width: 18ch;
  font-size: clamp(2.05rem, 2.9vw, 3.2rem);
  line-height: 1.16;
  margin-bottom: 0.85rem;
}

html[lang="en"] body[data-page="technology"] .tech-uv-section__copy p {
  max-width: 36rem;
}

@media (max-width: 767px) {
  body[data-page="technology"] .tech-droplet-section {
    display: flex !important;
    min-height: clamp(25rem, 96vw, 34rem) !important;
    align-items: stretch;
    border-radius: var(--site-card-radius);
  }

  body[data-page="technology"] .tech-droplet-section > .absolute {
    position: absolute !important;
    inset: 0 !important;
    width: auto;
    height: auto;
    background:
      linear-gradient(180deg, rgba(28, 26, 23, 0.74) 0%, rgba(28, 26, 23, 0.38) 46%, rgba(28, 26, 23, 0.86) 100%),
      radial-gradient(circle at 50% 38%, rgba(141, 185, 240, 0.14), transparent 62%);
  }

  body[data-page="technology"] .tech-droplet-section > .absolute img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 58%;
    opacity: 0.72;
  }

  body[data-page="technology"] .tech-droplet-content {
    min-height: inherit;
    padding: clamp(1.45rem, 5vw, 2rem) 0.75rem 0.9rem !important;
    display: flex;
    flex-direction: column !important;
    justify-content: space-between;
    gap: 1rem;
  }

  body[data-page="technology"] .tech-droplet-copy {
    max-width: none;
    width: 100%;
  }

  body[data-page="technology"] .tech-droplet-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body[data-page="technology"] .tech-droplet-copy p {
    font-size: 0.98rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body[data-page="technology"] .tech-droplet-copy br {
    display: none;
  }

  body[data-page="technology"] .tech-droplet-points {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 0.35rem;
    margin-top: 0 !important;
    align-items: stretch;
    justify-items: stretch;
  }

  body[data-page="technology"] .tech-droplet-point {
    min-width: 0;
    padding: 0.58rem 0.15rem;
    border: 1px solid rgba(141, 185, 240, 0.22);
    border-radius: var(--site-card-radius-sm);
    background: rgba(8, 10, 12, 0.46);
    backdrop-filter: blur(10px);
    text-align: center;
  }

  body[data-page="technology"] .tech-droplet-point:nth-child(3) {
    grid-column: auto;
  }

  body[data-page="technology"] .tech-droplet-point > div {
    width: 2.1rem !important;
    height: 2.1rem !important;
  }

  body[data-page="technology"] .tech-droplet-point svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  body[data-page="technology"] .tech-droplet-point span {
    font-size: 0.62rem;
    line-height: 1.28;
    white-space: nowrap;
  }
}

body[data-page="technology"] section.flex.flex-col.md\:flex-row.gap-4 {
  gap: clamp(1rem, 2vw, 1.5rem);
}

body[data-page="technology"] section.flex.flex-col.md\:flex-row.gap-4 > div {
  min-height: clamp(24rem, 33vw, 31rem);
}

body[data-page="technology"] .tech-comparison {
  position: relative;
}

body[data-page="technology"] .tech-comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

body[data-page="technology"] .tech-comparison__card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: clamp(22rem, 30vw, 27rem);
  padding: clamp(1.35rem, 2vw, 1.9rem);
  border-radius: var(--site-card-radius);
  border: 1px solid transparent;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 18px 48px rgba(39, 88, 154, 0.08);
}

body[data-page="technology"] .tech-comparison__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body[data-page="technology"] .tech-comparison__card--clean {
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(180deg, #f7f2ec 0%, #f1e8df 100%);
  border-color: rgba(221, 207, 191, 0.92);
  box-shadow:
    0 22px 46px rgba(132, 111, 88, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -18px 30px rgba(255, 255, 255, 0.32);
}

body[data-page="technology"] .tech-comparison__card--clean::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.7), transparent 58%);
}

body[data-page="technology"] .tech-comparison__card--traditional {
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #6c6b6b 0%, #575757 100%);
  color: #ffffff;
}

body[data-page="technology"] .tech-comparison__card--traditional::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), transparent 38%);
}

body[data-page="technology"] .tech-comparison__copy {
  position: relative;
  z-index: 2;
  max-width: 20rem;
  margin: 0 auto;
  padding-top: 0.15rem;
}

body[data-page="technology"] .tech-comparison__copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

body[data-page="technology"] .tech-comparison__copy p {
  margin: 0.55rem 0 0;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.5;
}

body[data-page="technology"] .tech-comparison__card--clean .tech-comparison__copy h3 {
  color: #332d27;
}

body[data-page="technology"] .tech-comparison__card--clean .tech-comparison__copy p {
  color: #8f8478;
}

body[data-page="technology"] .tech-comparison__card--traditional .tech-comparison__copy h3 {
  color: #ffffff;
}

body[data-page="technology"] .tech-comparison__card--traditional .tech-comparison__copy p {
  color: rgba(255, 255, 255, 0.7);
}

body[data-page="technology"] .tech-comparison__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(14rem, 20vw, 18rem);
  margin-top: 0.9rem;
  overflow: hidden;
}

body[data-page="technology"] .tech-comparison__image {
  width: min(124%, 38rem);
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  user-select: none;
  pointer-events: none;
  transition: filter 320ms ease;
}

body[data-page="technology"] .tech-comparison__card:hover .tech-comparison__image {
  filter: saturate(1.02) brightness(1.03);
}

body[data-page="technology"] .tech-comparison__image--clean {
  transform: translateY(1.9rem) scale(1.42);
  filter: saturate(0.72) brightness(1.07) contrast(0.92);
}

body[data-page="technology"] .tech-comparison__image--traditional {
  transform: translateY(1.85rem) scale(1.4);
  filter: grayscale(1) brightness(0.82) contrast(1.05);
}

body[data-page="technology"] .tech-comparison__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.8rem, 5vw, 4.8rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #2c7ac2 0%, #0157a4 100%);
  box-shadow: 0 16px 36px rgba(1, 87, 164, 0.28);
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  body[data-page="technology"] .tech-comparison__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body[data-page="technology"] .tech-comparison__card {
    min-height: 19rem;
    padding: 1.35rem 1.1rem;
  }

  body[data-page="technology"] .tech-comparison__media {
    min-height: 12.5rem;
    margin-top: 0.7rem;
  }

  body[data-page="technology"] .tech-comparison__image {
    width: 138%;
  }

  body[data-page="technology"] .tech-comparison__image--clean {
    transform: translateY(1.35rem) scale(1.32);
  }

  body[data-page="technology"] .tech-comparison__image--traditional {
    transform: translateY(1.3rem) scale(1.3);
  }

  body[data-page="technology"] .tech-comparison__badge {
    top: 50%;
    width: 3.6rem;
    font-size: 1.35rem;
  }
}

body[data-page="technology"] section.bg-brand-card.rounded-3xl.p-12 {
  padding: clamp(3rem, 5vw, 5rem);
}

body[data-page="technology"] .tech-triwash__grid {
  display: grid;
  grid-template-columns: var(--tech-triwash-grid-template, minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.6rem);
  align-items: stretch;
}

body[data-page="technology"] .tech-triwash__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: clamp(12rem, 18vw, 16rem);
  justify-self: center;
}

body[data-page="technology"] .tech-triwash__media {
  width: 100%;
  aspect-ratio: 1;
  max-width: clamp(12rem, 18vw, 16rem);
  overflow: visible;
}

body[data-page="technology"] .tech-triwash__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body[data-page="technology"] .tech-triwash__plus {
  align-self: center;
  color: #0157a4;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

body[data-page="technology"] .tech-triwash__item h4 {
  margin: 1.35rem 0 0;
  color: #302b27;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

body[data-page="technology"] .tech-triwash__item p {
  margin: 0.55rem 0 0;
  color: #8d8176;
  font-size: 0.92rem;
  line-height: 1.65;
}

body[data-page="technology"] .tech-info__visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  width: 100%;
}

body[data-page="technology"] .tech-info__image-wrap {
  width: 100%;
  height: clamp(4.5rem, 7.2vw, 7rem);
  overflow: visible;
}

body[data-page="technology"] .tech-info__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

body[data-page="technology"] .tech-info__card {
  min-height: clamp(8.3rem, 11.8vw, 11.2rem);
  padding: clamp(1.1rem, 1.6vw, 1.45rem) clamp(2.25rem, 4vw, 4rem);
}

body[data-page="technology"] .tech-info__card h4 {
  margin-bottom: clamp(0.75rem, 1.4vw, 1.2rem);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.35;
}

body[data-page="technology"] .tech-info__status {
  width: clamp(1.7rem, 2.4vw, 2.05rem);
  height: clamp(1.7rem, 2.4vw, 2.05rem);
  flex: 0 0 auto;
}

body[data-page="technology"] .tech-info__status svg {
  width: 62%;
  height: 62%;
}

body[data-page="technology"] .tech-uv-section__metric > span {
  color: var(--site-gold);
}

body[data-page="technology"] .tech-uv-section__features .rounded-full {
  border-color: var(--site-gold);
  color: var(--site-gold);
}

body[data-page="technology"] .tech-uv-section__features svg {
  color: var(--site-gold);
}

body[data-page="technology"] .tech-patent-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  overflow: hidden;
}

body[data-page="technology"] .tech-patent-section__copy {
  min-width: 0;
}

body[data-page="technology"] .tech-patent-carousel {
  position: relative;
  width: min(100%, 31rem);
  min-height: clamp(13rem, 18vw, 17rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

body[data-page="technology"] .tech-patent-carousel__stage {
  position: relative;
  width: 100%;
  min-height: inherit;
  perspective: 900px;
}

body[data-page="technology"] .tech-patent-carousel__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(8.5rem, 13vw, 12.5rem);
  height: clamp(11rem, 16vw, 15.5rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: center;
  animation: tech-patent-carousel 9s ease-in-out infinite;
  will-change: transform, opacity, filter;
}

body[data-page="technology"] .tech-patent-carousel__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

body[data-page="technology"] .tech-patent-carousel__item:focus-visible {
  outline: 2px solid var(--site-gold);
  outline-offset: 0.25rem;
}

body[data-page="technology"] .tech-patent-carousel__item--two {
  animation-delay: -3s;
}

body[data-page="technology"] .tech-patent-carousel__item--three {
  animation-delay: -6s;
}

body[data-page="technology"] .tech-patent-section__stats {
  display: flex;
  justify-content: flex-end;
  gap: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}

body[data-page="technology"] .tech-patent-section__stats > div > div:first-child {
  color: var(--site-gold);
}

@keyframes tech-patent-carousel {
  0%,
  28% {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%) translateX(0) scale(1.08);
  }

  33.333%,
  61% {
    z-index: 1;
    opacity: 0.68;
    filter: saturate(0.82);
    transform: translate(-50%, -50%) translateX(82%) scale(0.7) rotateY(-8deg);
  }

  66.666%,
  94% {
    z-index: 1;
    opacity: 0.68;
    filter: saturate(0.82);
    transform: translate(-50%, -50%) translateX(-82%) scale(0.7) rotateY(8deg);
  }

  100% {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%) translateX(0) scale(1.08);
  }
}

@media (max-width: 767px) {
  body[data-page="technology"] .tech-triwash__grid {
    grid-template-columns: 1fr;
  }

  body[data-page="technology"] .tech-triwash__item,
  body[data-page="technology"] .tech-triwash__media {
    max-width: min(100%, 16rem);
  }

  body[data-page="technology"] .tech-triwash__plus {
    font-size: 2rem;
    margin: -0.15rem 0;
  }

  body[data-page="technology"] .tech-info__card {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  body[data-page="technology"] .tech-patent-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body[data-page="technology"] .tech-patent-carousel {
    width: min(100%, 24rem);
    min-height: 15rem;
  }

  body[data-page="technology"] .tech-patent-section__stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}

body[data-page="stories"] .stories-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: max(calc(var(--site-header-height) + 1rem), clamp(5rem, 9vw, 8rem)) var(--site-gutter) clamp(4rem, 7vw, 6rem);
  isolation: isolate;
  overflow: hidden;
  background: #101010;
}

body[data-page="stories"] .stories-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--stories-hero-background-image, url("../images/home/32.webp")) center / cover no-repeat;
  animation: hero-camera 12s ease-out both;
  transform-origin: center center;
}

body[data-page="stories"] .stories-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 10, 14, 0.68) 0%, rgba(7, 10, 14, 0.42) 34%, rgba(7, 10, 14, 0.04) 72%);
}

body[data-page="stories"] .stories-hero__inner {
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
}

body[data-page="stories"] .stories-hero__content {
  max-width: 40rem;
  color: #fff;
  text-align: left;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
  animation: hero-copy-in 900ms ease-out 160ms both;
}

body[data-page="stories"] .stories-hero h1 {
  margin: 0;
  max-width: 10em;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 400;
  line-height: 1.05;
}

body[data-page="stories"] .stories-hero p {
  margin: 1.1rem 0 0;
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.9;
}

body[data-page="stories"] article {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(1, 87, 164, 0.12);
  min-height: clamp(20rem, 30vw, 27rem);
  box-shadow: 0 18px 50px rgba(39, 88, 154, 0.065);
}

body[data-page="stories"] article > div:first-child {
  min-height: 16rem;
}

body[data-page="stories"] article > div:nth-child(2) {
  padding: clamp(2.5rem, 5vw, 5rem);
}

body[data-page="stories"] article h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

body[data-page="stories"] article p {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

body[data-page="stories"] article img {
  min-height: 100%;
  transition: transform 520ms ease, filter 320ms ease;
}

body[data-page="stories"] article:hover img {
  transform: scale(1.028);
  filter: saturate(1.03);
}

body[data-page="stories"] a.bg-zhixian-primary {
  background-color: var(--site-gold) !important;
  color: #fff !important;
}

body[data-page="stories"] a.bg-zhixian-primary:hover {
  background-color: var(--site-gold-dark) !important;
}

@media (max-width: 767px) {
  body[data-page="stories"] .stories-hero::before {
    background-position: 62% center;
  }

  body[data-page="stories"] .stories-hero::after {
    background: linear-gradient(180deg, rgba(7, 10, 14, 0.72) 0%, rgba(7, 10, 14, 0.42) 44%, rgba(7, 10, 14, 0.12) 100%);
  }

  body[data-page="stories"] .stories-hero h1 {
    font-size: 2.45rem;
  }

  body[data-page="stories"] .stories-hero p {
    font-size: 1rem;
  }
}

body[data-page="buy"] .section-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(1, 87, 164, 0.1);
  box-shadow: 0 18px 50px rgba(39, 88, 154, 0.065);
}

body[data-page="buy"] .hero-bg > div,
body[data-page="buy"] main > div {
  max-width: var(--site-max-width);
}

body[data-page="buy"] .hero-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: max(calc(var(--site-header-height) + 1rem), clamp(5rem, 9vw, 8rem)) var(--site-gutter) clamp(4rem, 7vw, 6rem);
  isolation: isolate;
  background: #f8f4ec;
}

body[data-page="buy"] .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--buy-hero-background-image, url("../images/home/62.webp")) center right / cover no-repeat;
  animation: hero-camera 12s ease-out both;
  transform-origin: center center;
}

body[data-page="buy"] .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 10, 14, 0.68) 0%, rgba(7, 10, 14, 0.42) 34%, rgba(7, 10, 14, 0.04) 72%);
}

body[data-page="buy"] .buy-hero__inner {
  width: min(100%, var(--site-max-width));
  margin: 0 auto !important;
}

body[data-page="buy"] .buy-hero__content {
  width: min(100%, 36rem);
  margin-left: 0;
  padding: 0;
  text-align: left;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
  animation: hero-copy-in 900ms ease-out 160ms both;
}

body[data-page="buy"] .buy-hero__title {
  margin-bottom: 1.1rem;
  color: #fff;
  max-width: 10em;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
}

body[data-page="buy"] .buy-hero__subtitle {
  margin-bottom: clamp(2.6rem, 4.2vw, 4rem);
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.9;
  font-weight: 400;
}

body[data-page="buy"] .buy-hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
  max-width: 34rem;
  justify-items: start;
}

body[data-page="buy"] .buy-hero__feature {
  text-align: left !important;
}

body[data-page="buy"] .buy-hero__feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0 0.65rem !important;
  color: #fff !important;
}

body[data-page="buy"] .buy-hero__feature-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
}

body[data-page="buy"] .buy-hero__feature h3 {
  margin-bottom: 0.22rem;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.2;
}

body[data-page="buy"] .buy-hero__feature p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.35;
}

@media (max-width: 767px) {
  body[data-page="buy"] .hero-bg {
    min-height: 100vh;
  }

  body[data-page="buy"] .hero-bg::before {
    background-position: 66% center;
  }

  body[data-page="buy"] .hero-bg::after {
    background: linear-gradient(180deg, rgba(7, 10, 14, 0.72) 0%, rgba(7, 10, 14, 0.42) 44%, rgba(7, 10, 14, 0.12) 100%);
  }

  body[data-page="buy"] .buy-hero__content {
    padding: 0;
  }

  body[data-page="buy"] .buy-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 20rem;
  }
}

body[data-page="buy"] .section-card {
  padding: clamp(2.5rem, 5vw, 5rem);
}

body[data-page="buy"] .section-card h2 {
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
}

body[data-page="buy"] .section-card .text-brand-gold {
  color: var(--site-gold) !important;
}

body[data-page="buy"] .section-card .border-brand-gold {
  border-color: var(--site-gold) !important;
}

body[data-page="buy"] .section-card .text-brand-gold svg {
  stroke: currentColor;
}

body[data-page="buy"] .buy-install-notes h2 {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
}

body[data-page="buy"] .buy-install-notes__list {
  display: grid;
  gap: clamp(1.75rem, 3vw, 3rem);
}

body[data-page="buy"] .buy-install-notes article {
  color: #333;
}

body[data-page="buy"] .buy-install-notes h3 {
  margin: 0 0 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.35rem;
  background: var(--site-gold);
  color: #fff;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  line-height: 1.2;
  font-weight: 800;
}

body[data-page="buy"] .buy-install-notes ol {
  margin: 0;
  padding-left: 1.35rem;
  color: #2e2e2e;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.85;
}

body[data-page="buy"] .buy-install-notes li + li {
  margin-top: 0.15rem;
}

body[data-page="buy"] .section-card .grid {
  gap: clamp(2rem, 4vw, 4rem);
}

body[data-page="buy"] .section-card img {
  border-radius: var(--site-card-radius-sm);
  transition: transform 520ms ease, filter 320ms ease;
}

body[data-page="buy"] .section-card:hover img {
  transform: scale(1.028);
  filter: saturate(1.03);
}

body[data-page="buy"] img[alt="产品尺寸示意图"] {
  max-height: 20rem;
  object-fit: contain;
}

body[data-page="buy"] img[alt="主机"],
body[data-page="buy"] img[alt="安装配件"],
body[data-page="buy"] img[alt="电源适配器"],
body[data-page="buy"] img[alt="说明书"],
body[data-page="buy"] img[alt="清洁剂"] {
  height: 7rem;
  object-fit: contain;
}

site-footer {
  display: block;
  background: #151515;
  color: #fff;
}

.site-footer__trust {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__trust-inner,
.site-footer__main {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.site-footer__trust-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.site-trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-trust__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(1, 87, 164, 0.45);
  color: var(--site-gold) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.site-trust__icon svg {
  width: 1.18rem;
  height: 1.18rem;
  stroke: currentColor;
}

.site-trust strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.site-trust span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.site-trust .site-trust__icon {
  color: var(--site-gold) !important;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr;
  gap: 3rem;
  padding-top: 3.25rem;
  padding-bottom: 2rem;
}

.site-footer__brand {
  max-width: 28rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.site-footer__logo .site-logo__image {
  height: 3.1rem;
  max-width: 11.5rem;
}

.site-footer__logo .site-logo__en {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__desc,
.site-footer__meta,
.site-footer__contact {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  font-size: 0.92rem;
}

.site-footer__title {
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.site-footer__links {
  display: grid;
  gap: 0.65rem;
}

.site-footer__links a,
.site-footer__contact a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: var(--site-gold);
}

.site-footer__bottom {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 1.25rem var(--site-gutter) 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--site-gold);
}

@media (max-width: 900px) {
  body {
    --site-header-height: 4.75rem;
  }

  body[data-page="home"] site-header,
  body[data-page="home"] site-header.is-open,
  body[data-page="home"] site-header.is-scrolled,
  body[data-page="experience"] site-header,
  body[data-page="experience"] site-header.is-open,
  body[data-page="experience"] site-header.is-scrolled,
  body[data-page="stories"] site-header,
  body[data-page="stories"] site-header.is-open,
  body[data-page="stories"] site-header.is-scrolled,
  body[data-page="buy"] site-header,
  body[data-page="buy"] site-header.is-open,
  body[data-page="buy"] site-header.is-scrolled {
    background: rgba(248, 244, 236, 0.98);
    border-bottom-color: rgba(1, 87, 164, 0.16);
    backdrop-filter: blur(18px);
  }

  .site-header__inner {
    padding: 0 1rem;
  }

  .site-header__panel {
    position: absolute;
    top: var(--site-header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.9rem 1rem 1rem;
    border-radius: 0;
    background: rgba(248, 244, 236, 0.99);
    border-top: 1px solid rgba(1, 87, 164, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    font-size: 1.05rem;
    z-index: 2;
  }

  site-header.is-open .site-header__panel {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    padding: 1rem 1rem;
    border-bottom: 0;
    border-radius: var(--site-card-radius-sm);
  }

  .site-nav a.is-active {
    background: rgba(1, 87, 164, 0.12);
  }

  .site-header__lang {
    display: none;
    min-height: 2.5rem;
    padding: 0 0.78rem;
    font-size: 0.88rem;
  }

  site-header.is-open .site-header__lang {
    display: inline-flex;
  }

  .site-footer__trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="technology"] .tech-intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  body[data-page="technology"] .tech-intro__copy p {
    max-width: 24rem;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-footer__trust-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body[data-page="technology"] .tech-intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.45rem 0.8rem;
  }

  body[data-page="technology"] .tech-droplet-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
  }

  body[data-page="technology"] .tech-droplet-point:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  body[data-page="home"] .home-hero-wrapper,
  body[data-page="experience"] .about-hero,
  body[data-page="stories"] .stories-hero,
  body[data-page="buy"] .hero-bg {
    min-height: min(100svh, 150vw);
    overflow: hidden;
  }

  body[data-page="home"] .home-hero-wrapper::before,
  body[data-page="experience"] .about-hero::before,
  body[data-page="stories"] .stories-hero::before,
  body[data-page="buy"] .hero-bg::before {
    inset: 0;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: none;
    filter: none;
    transform: none;
  }

  body[data-page="home"] .home-hero__video {
    object-position: 63% center;
  }

  body[data-page="experience"] .about-hero::before {
    background-position: 63% center;
  }

  body[data-page="stories"] .stories-hero::before {
    background-position: center;
  }

  body[data-page="buy"] .hero-bg::before {
    background-position: 63% center;
  }

  body[data-page="home"] .home-hero-wrapper::after {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.04) 0%, rgba(5, 6, 7, 0.04) 34%, rgba(5, 6, 7, 0.34) 68%, rgba(5, 6, 7, 0.58) 100%),
      linear-gradient(90deg, rgba(5, 6, 7, 0.28) 0%, rgba(5, 6, 7, 0.08) 58%, rgba(5, 6, 7, 0.02) 100%);
  }

  body[data-page="experience"] .about-hero::after,
  body[data-page="stories"] .stories-hero::after,
  body[data-page="buy"] .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.08) 0%, rgba(5, 6, 7, 0.08) 34%, rgba(5, 6, 7, 0.58) 68%, rgba(5, 6, 7, 0.86) 100%),
      linear-gradient(90deg, rgba(5, 6, 7, 0.46) 0%, rgba(5, 6, 7, 0.12) 58%, rgba(5, 6, 7, 0.04) 100%);
  }

  body[data-page="home"] .home-hero,
  body[data-page="experience"] .about-hero,
  body[data-page="stories"] .stories-hero,
  body[data-page="buy"] .hero-bg {
    display: flex;
    align-items: flex-end;
    padding: calc(var(--site-header-height) + 1rem) 1.25rem 1.6rem;
  }

  body[data-page="home"] .home-hero {
    min-height: min(100svh, 150vw);
  }

  body[data-page="home"] .home-hero__content,
  body[data-page="experience"] .about-hero__copy,
  body[data-page="stories"] .stories-hero__content,
  body[data-page="buy"] .buy-hero__content {
    width: 100%;
    max-width: 21.5rem;
    margin: 0;
  }

  body[data-page="experience"] .about-hero__copy,
  body[data-page="stories"] .stories-hero__inner,
  body[data-page="buy"] .buy-hero__inner {
    width: 100%;
    margin: 0 !important;
  }

  body[data-page="home"] .home-hero h1,
  body[data-page="experience"] .about-hero__copy h1,
  body[data-page="stories"] .stories-hero h1,
  body[data-page="buy"] .buy-hero__title {
    font-size: clamp(1.65rem, 7.4vw, 2.15rem);
    line-height: 1.1;
  }

  body[data-page="home"] .home-hero__content p,
  body[data-page="experience"] .about-hero__lead,
  body[data-page="stories"] .stories-hero p,
  body[data-page="buy"] .buy-hero__subtitle {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  body[data-page="experience"] .about-hero__meta {
    gap: 0.65rem;
  }

  body[data-page="experience"] .about-hero__meta span {
    min-height: 2.25rem;
    padding: 0 0.8rem;
    font-size: 0.78rem;
  }

  body[data-page="buy"] .buy-hero__subtitle {
    margin-bottom: 0.9rem;
  }

  body[data-page="buy"] .buy-hero__features {
    gap: 0.8rem 1rem;
  }

  body[data-page="buy"] .buy-hero__feature-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.45rem !important;
  }

  body[data-page="buy"] .buy-hero__feature h3 {
    font-size: 0.88rem;
  }

  body[data-page="buy"] .buy-hero__feature p {
  font-size: 0.68rem;
  }
}

html[lang="en"] body[data-page="home"] .home-bottom-cta h2 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.1;
}

html[lang="en"] body[data-page="home"] .home-bottom-cta .home-bottom-cta__content {
  width: min(100%, 58rem);
  max-width: 58%;
}

html[lang="en"] body[data-page="buy"] .buy-hero__content {
  width: min(100%, 40rem);
}

html[lang="en"] body[data-page="buy"] .buy-hero__title {
  max-width: 11ch;
  font-size: clamp(2.5rem, 4.35vw, 4.75rem);
  line-height: 1.1;
}

@media (max-width: 900px) {
  html[lang="en"] body[data-page="home"] .home-bottom-cta .home-bottom-cta__content {
    max-width: 100%;
  }

  html[lang="en"] body[data-page="home"] .home-bottom-cta h2,
  html[lang="en"] body[data-page="buy"] .buy-hero__title {
    max-width: none;
  }
}
