:root {
  color-scheme: light;
  --blue-950: #082f52;
  --blue-900: #0b3d69;
  --blue-800: #0f4c81;
  --blue-700: #145f9f;
  --blue-600: #2b6cb0;
  --blue-300: #8fc5e8;
  --cyan-400: #47c8c0;
  --ink: #2d3748;
  --muted: #5e6b7c;
  --line: #d8dee6;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-blue: #eaf4fb;
  --success: #24725d;
  --shadow-sm: 0 12px 30px rgba(15, 76, 129, 0.08);
  --shadow-lg: 0 30px 80px rgba(8, 47, 82, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --content: 1200px;
  --header-height: 76px;
  --font-sans: "Manrope", "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(43, 108, 176, 0.42);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: var(--blue-700);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-950);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--dark {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 28%, rgba(71, 200, 192, 0.16), transparent 28%),
    linear-gradient(135deg, var(--blue-950), #0d4b7a 62%, #0b416f);
}

.section--dark::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 66px);
}

.section-heading--compact {
  display: block;
  max-width: 760px;
}

.section-heading h2 {
  max-width: 880px;
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: clamp(2.15rem, 4vw, 4.35rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section--dark .section-heading h2,
.section--dark h2,
.section--dark h3 {
  color: #fff;
}

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

.section--dark .section-heading > p,
.section--dark .eyebrow {
  color: #b9d8ec;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 22px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 10px 26px rgba(43, 108, 176, 0.26);
}

.button--primary:hover {
  background: var(--blue-700);
  box-shadow: 0 14px 32px rgba(43, 108, 176, 0.32);
}

.button--secondary {
  color: var(--blue-900);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button--secondary:hover {
  border-color: var(--blue-300);
  background: #fff;
}

.button--light {
  color: var(--blue-950);
  background: #fff;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(216, 222, 230, 0.72);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 36px rgba(8, 47, 82, 0.06);
  backdrop-filter: blur(18px);
}

.subpage .site-header {
  border-color: rgba(216, 222, 230, 0.72);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 36px rgba(8, 47, 82, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  position: relative;
  z-index: 2;
  gap: 11px;
  align-items: center;
  color: var(--blue-950);
  font-size: 1.04rem;
  font-weight: 840;
  letter-spacing: 0.14em;
}

.brand-mark {
  display: grid;
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-600), var(--blue-950));
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 22px;
  height: 7px;
  content: "";
  border-top: 2px solid #fff;
  border-radius: 50%;
}

.brand-mark::before {
  margin-top: -5px;
}

.brand-mark::after {
  margin-top: 5px;
  opacity: 0.66;
}

.main-nav,
.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 34px;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  color: #324b62;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  gap: 10px;
}

.language-link {
  display: inline-flex;
  min-width: 50px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 780;
}

.menu-button {
  display: none;
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--blue-950);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button::before { top: 15px; }
.menu-button span { top: 21px; }
.menu-button::after { top: 27px; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  overflow: hidden;
  padding: calc(var(--header-height) + 68px) 0 74px;
  background:
    radial-gradient(circle at 80% 28%, rgba(71, 200, 192, 0.2), transparent 23%),
    radial-gradient(circle at 78% 48%, rgba(43, 108, 176, 0.2), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #f4f9fd 54%, #e7f2f9 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(15, 76, 129, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 129, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.hero__inner {
  display: grid;
  position: relative;
  z-index: 1;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.hero__copy {
  max-width: 690px;
  padding-top: 14px;
}

.hero__copy h1 {
  margin-bottom: 26px;
  color: var(--blue-950);
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.hero__copy h1 span {
  display: block;
  color: var(--blue-600);
}

body[data-lang="zh"] .hero__copy h1 {
  max-width: 640px;
  font-size: clamp(3.05rem, 4.7vw, 5rem);
  letter-spacing: -0.018em;
  line-height: 1.08;
  word-break: keep-all;
}

.hero__copy > p {
  max-width: 630px;
  margin-bottom: 32px;
  color: #4f6275;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.hero__notes span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hero__notes span::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(71, 200, 192, 0.11);
}

.hero__visual {
  --pointer-x: 0deg;
  --pointer-y: 0deg;
  --light-x: 50%;
  --light-y: 50%;
  position: relative;
  min-height: 650px;
  perspective: 1100px;
}

.hero-orbit {
  position: absolute;
  inset: 5% -6% 5% 2%;
  border: 1px solid rgba(43, 108, 176, 0.2);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  width: 11px;
  height: 11px;
  content: "";
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 4px 20px rgba(8, 47, 82, 0.22);
}

.hero-orbit::before { top: 16%; left: 12%; }
.hero-orbit::after { right: 7%; bottom: 23%; }

.hero-disc {
  position: absolute;
  right: -2%;
  bottom: 10%;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.98) 0 37%, rgba(143,197,232,0.22) 38% 56%, rgba(255,255,255,0) 57%);
  transform: rotateX(66deg) translateZ(-60px);
  filter: drop-shadow(0 35px 38px rgba(8, 47, 82, 0.13));
}

.hero-bottle-wrap {
  position: absolute;
  inset: 4% 8% 7% 8%;
  transform: rotateY(var(--pointer-x)) rotateX(var(--pointer-y));
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.hero-bottle {
  position: absolute;
  top: 12%;
  left: 50%;
  width: min(46%, 245px);
  height: 68%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 58px 58px 78px 78px;
  background:
    radial-gradient(circle at var(--light-x) var(--light-y), rgba(255,255,255,0.48), transparent 18%),
    linear-gradient(94deg, #0a365f 0%, #0f4c81 23%, #3f88bd 48%, #155e99 71%, #082f52 100%);
  box-shadow:
    inset 16px 0 24px rgba(255,255,255,0.12),
    inset -18px 0 24px rgba(0,0,0,0.12),
    30px 42px 58px rgba(8, 47, 82, 0.24);
  transform: translateX(-50%) rotate(-6deg) translateZ(60px);
}

.hero-bottle::before {
  position: absolute;
  top: -13%;
  left: 18%;
  width: 64%;
  height: 17%;
  content: "";
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(90deg, #082d4d, #2d77ae 48%, #082f52);
  box-shadow: inset 0 -8px 10px rgba(0, 0, 0, 0.14), 0 -2px 0 rgba(255,255,255,0.4);
}

.hero-bottle::after {
  position: absolute;
  top: 31%;
  right: 14%;
  left: 14%;
  height: 28%;
  content: "HORIZON";
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  font-size: clamp(0.8rem, 1.5vw, 1.05rem);
  font-weight: 830;
  letter-spacing: 0.22em;
  line-height: 7.7;
  text-align: center;
}

.hero-card {
  position: absolute;
  z-index: 2;
  max-width: 205px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 17px;
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  color: var(--blue-950);
  font-size: 0.9rem;
}

.hero-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-card--top { top: 16%; right: 0; }
.hero-card--bottom { bottom: 12%; left: 0; }

.hero__visual.trend-selector {
  display: grid;
  min-height: 650px;
  overflow: hidden;
  grid-template-rows: minmax(0, 1fr) auto auto;
  border: 1px solid rgba(15, 76, 129, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 32px 80px rgba(8, 47, 82, 0.17);
  perspective: none;
}

.trend-stage {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: linear-gradient(145deg, #edf6fb, #dcecf6);
}

.trend-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0.08) 52%, rgba(8,47,82,0.2));
}

.trend-stage img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: opacity 180ms ease, transform 320ms ease;
}

.trend-stage img.is-changing {
  opacity: 0.28;
  transform: scale(1.015);
}

.trend-stage__top,
.trend-scene {
  position: absolute;
  z-index: 2;
  color: var(--blue-950);
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.84);
  box-shadow: 0 12px 30px rgba(8,47,82,0.1);
  backdrop-filter: blur(14px);
}

.trend-stage__top {
  display: flex;
  top: 18px;
  right: 18px;
  left: 18px;
  min-height: 44px;
  padding: 9px 13px;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 760;
}

.trend-stage__top strong {
  color: var(--blue-700);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.trend-scene {
  right: 18px;
  bottom: 18px;
  padding: 11px 14px;
  border-radius: 12px;
}

.trend-scene span,
.trend-scene strong {
  display: block;
}

.trend-scene span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.62rem;
}

.trend-scene strong {
  font-size: 0.76rem;
}

.trend-detail {
  display: grid;
  padding: 22px 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.trend-detail h2 {
  margin-bottom: 7px;
  color: var(--blue-950);
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.trend-detail p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.76rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.trend-tags {
  margin-top: 11px;
}

.trend-inquiry {
  display: inline-flex;
  min-width: 142px;
  min-height: 46px;
  padding: 10px 15px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background: var(--blue-800);
  font-size: 0.72rem;
  font-weight: 760;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.trend-inquiry:hover {
  background: var(--blue-600);
  box-shadow: 0 10px 24px rgba(43,108,176,0.22);
}

.trend-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.trend-tab {
  min-height: 62px;
  padding: 9px 8px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
  font-size: 0.69rem;
  font-weight: 690;
  transition: color 180ms ease, background-color 180ms ease;
}

.trend-tab:last-child { border-right: 0; }
.trend-tab span { display: block; margin-bottom: 2px; color: var(--blue-300); font-size: 0.58rem; letter-spacing: 0.08em; }
.trend-tab:hover { color: var(--blue-800); background: var(--surface-soft); }
.trend-tab.is-active { color: #fff; background: var(--blue-800); }
.trend-tab.is-active span { color: #a8d3ec; }

.capability-bar {
  border-top: 1px solid rgba(216, 222, 230, 0.72);
  border-bottom: 1px solid rgba(216, 222, 230, 0.72);
  background: #fff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.capability-item {
  min-height: 126px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.capability-item:first-child { border-left: 1px solid var(--line); }
.capability-item strong,
.capability-item span { display: block; }
.capability-item strong { margin-bottom: 5px; color: var(--blue-950); font-size: 1rem; }
.capability-item span { color: var(--muted); font-size: 0.82rem; }

.product-tools {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 720;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  border-color: var(--blue-800);
  background: var(--blue-800);
}

.search-field {
  display: flex;
  width: min(320px, 100%);
  min-height: 44px;
  gap: 9px;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.84rem;
}

.product-meta {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 26px rgba(8, 47, 82, 0.04);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 24px 52px rgba(8, 47, 82, 0.12);
  transform: translateY(-6px);
}

.product-card__button {
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  background: transparent;
  text-align: left;
}

.product-card__media {
  display: block;
  position: relative;
  aspect-ratio: 1.13;
  overflow: hidden;
  background: var(--surface-soft);
}

.product-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(8,47,82,0.11), transparent 42%);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2,.7,.2,1);
}

.product-card__media img[data-fit="contain"],
.dialog-content > img[data-fit="contain"] {
  padding: 18px;
  object-fit: contain;
  background: #fff;
}

.product-card:hover img { transform: scale(1.045); }

.product-card__arrow {
  display: grid;
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--blue-900);
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 22px rgba(8,47,82,0.13);
}

.product-card__body {
  display: block;
  min-height: 290px;
  padding: 26px;
}

.product-card__body .eyebrow {
  margin-bottom: 12px;
  font-size: 0.64rem;
}

.product-card__body strong,
.product-card__body > span:not(.eyebrow):not(.tag-list) {
  display: block;
}

.product-card__body strong {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.18rem;
  line-height: 1.35;
}

.product-card__body > span:not(.eyebrow):not(.tag-list) {
  color: var(--muted);
  font-size: 0.86rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.tag-list span {
  padding: 6px 10px;
  color: var(--blue-800);
  border-radius: 999px;
  background: var(--surface-blue);
  font-size: 0.68rem;
  font-weight: 720;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}

.configurator {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(143, 197, 232, 0.38);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.configurator__visual {
  display: grid;
  position: relative;
  min-height: 650px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.98) 0 17%, transparent 41%),
    linear-gradient(145deg, #e6f2fa, #cfe5f3);
}

.configurator__visual::before,
.configurator__visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(15,76,129,0.13);
  border-radius: 50%;
}

.configurator__visual::before { width: 74%; aspect-ratio: 1; }
.configurator__visual::after { width: 108%; aspect-ratio: 1; }

.config-bottle {
  --bottle-color: #0f4c81;
  position: relative;
  z-index: 2;
  width: 190px;
  height: 390px;
  border-radius: 46px 46px 62px 62px;
  background:
    linear-gradient(94deg, rgba(0,0,0,0.23), transparent 23% 58%, rgba(255,255,255,0.21) 71%, rgba(0,0,0,0.13)),
    var(--bottle-color);
  box-shadow: inset 13px 0 22px rgba(255,255,255,0.17), 28px 35px 45px rgba(8,47,82,0.21);
  transition: background-color 220ms ease, border-radius 220ms ease;
}

.config-bottle::before {
  position: absolute;
  top: -58px;
  left: 31px;
  width: 128px;
  height: 68px;
  content: "";
  border-radius: 22px 22px 10px 10px;
  background: linear-gradient(90deg, #0a2d49, #387ba8 50%, #082f52);
  box-shadow: inset 0 -9px 12px rgba(0,0,0,0.19);
  transition: border-radius 220ms ease, width 220ms ease, left 220ms ease;
}

.config-bottle::after {
  position: absolute;
  top: 142px;
  right: 20px;
  left: 20px;
  padding: 20px 0;
  content: "HORIZON";
  color: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(255,255,255,0.24);
  border-bottom: 1px solid rgba(255,255,255,0.24);
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.2em;
  text-align: center;
}

.config-bottle[data-lid-style="sport"]::before { left: 46px; width: 98px; border-radius: 48px 48px 14px 14px; }
.config-bottle[data-lid-style="loop"]::before { left: 26px; width: 138px; border-radius: 40px 40px 12px 12px; }
.config-bottle[data-finish-style="gloss"] { filter: saturate(1.08) brightness(1.09); }
.config-bottle[data-finish-style="metal"] { background: linear-gradient(100deg, #364b5e, #d9e3e9 48%, #879baa 67%, #293c4c); }

.configurator__panel {
  padding: clamp(38px, 6vw, 72px);
}

.configurator__panel h2 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.configurator__intro {
  margin-bottom: 34px;
  color: var(--muted);
}

.config-group {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.config-group h3 {
  margin-bottom: 13px;
  color: var(--blue-950);
  font-size: 0.88rem;
}

.swatches,
.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.swatch {
  width: 38px;
  height: 38px;
  cursor: pointer;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px var(--line);
}

.swatch[aria-pressed="true"] {
  box-shadow: 0 0 0 3px var(--blue-600);
}

.option-button {
  padding: 9px 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.option-button:hover,
.option-button.is-selected {
  color: var(--blue-800);
  border-color: var(--blue-300);
  background: var(--surface-blue);
}

.config-summary {
  margin: 22px 0 0;
  padding: 16px 18px;
  color: var(--blue-950);
  border-radius: 13px;
  background: var(--surface-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-layout {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: center;
}

.process-tabs {
  display: grid;
  gap: 5px;
}

.process-tab {
  display: grid;
  min-height: 64px;
  padding: 12px 16px;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  align-items: center;
  color: #b9d8ec;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  background: transparent;
  text-align: left;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.process-tab span { font-size: 0.7rem; font-weight: 800; }
.process-tab strong { font-size: 0.93rem; }
.process-tab:hover,
.process-tab.is-active { color: #fff; border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.08); }

.process-panel {
  position: relative;
  min-height: 440px;
  padding: clamp(44px, 7vw, 84px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 34px 80px rgba(0,0,0,0.2);
  backdrop-filter: blur(20px);
}

.process-panel::after {
  position: absolute;
  right: -18%;
  bottom: -36%;
  width: 72%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(71,200,192,0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(71,200,192,0.04), 0 0 0 120px rgba(71,200,192,0.025);
}

.process-panel span {
  display: block;
  margin-bottom: 86px;
  color: var(--cyan-400);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.process-panel p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: #c6dbea;
  font-size: 1.03rem;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.quality-card {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface-blue);
}

.quality-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.quality-card:hover img { transform: scale(1.025); }

.quality-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 90px 30px 30px;
  color: #fff;
  background: linear-gradient(to top, rgba(8,47,82,0.92), transparent);
}

.quality-card__overlay h3 { margin-bottom: 7px; font-size: 1.45rem; }
.quality-card__overlay p { max-width: 540px; margin: 0; color: #d6e6f1; font-size: 0.86rem; }

.quality-card--stack {
  display: grid;
  min-height: 550px;
  padding: clamp(32px, 5vw, 58px);
  align-content: space-between;
  background: var(--blue-950);
}

.quality-card--stack h3 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.75rem); letter-spacing: -0.04em; }
.quality-card--stack > p { color: #bfd5e4; }

.quality-list {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.quality-list li {
  display: grid;
  padding: 16px 0;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  color: #d9e8f2;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.88rem;
}

.quality-list span { color: var(--cyan-400); font-size: 0.7rem; font-weight: 800; }

.about-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 128px);
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.about-sticky h2 {
  color: var(--blue-950);
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.about-content > p {
  margin-bottom: 32px;
  color: #45596d;
  font-size: clamp(1.04rem, 1.6vw, 1.26rem);
}

.about-principles {
  display: grid;
  gap: 12px;
}

.principle {
  display: grid;
  padding: 24px;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.principle > span { color: var(--blue-600); font-size: 0.72rem; font-weight: 850; }
.principle h3 { margin-bottom: 5px; color: var(--blue-950); font-size: 1rem; }
.principle p { margin: 0; color: var(--muted); font-size: 0.84rem; }

.contact-shell {
  display: grid;
  position: relative;
  z-index: 1;
  overflow: hidden;
  grid-template-columns: 0.83fr 1.17fr;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  box-shadow: var(--shadow-lg);
}

.contact-copy,
.contact-form-wrap {
  padding: clamp(34px, 6vw, 72px);
}

.contact-copy {
  background: rgba(0,0,0,0.08);
}

.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.contact-copy > p { color: #c6dbea; }

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.contact-detail {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.contact-detail span,
.contact-detail strong { display: block; }
.contact-detail span { margin-bottom: 4px; color: #91b8d2; font-size: 0.67rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-detail strong { color: #fff; font-size: 0.88rem; }

.contact-form-wrap {
  background: #fff;
}

.contact-form-wrap h3 { margin-bottom: 9px; color: var(--blue-950); font-size: 1.65rem; }
.contact-form-wrap > p { margin-bottom: 26px; color: var(--muted); font-size: 0.84rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--wide { grid-column: 1 / -1; }
.field label { color: var(--blue-950); font-size: 0.76rem; font-weight: 730; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfdff;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select { height: 48px; padding: 0 13px; }
.field textarea { min-height: 126px; padding: 13px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(43,108,176,0.11); }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.form-status {
  min-height: 26px;
  margin: 14px 0 0;
  color: var(--success);
  font-size: 0.78rem;
}

.form-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.site-footer {
  padding: 52px 0 26px;
  color: #b8ccda;
  background: #061f35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 48px;
  padding-bottom: 46px;
}

.footer-brand .brand { color: #fff; }
.footer-brand p { max-width: 430px; margin: 20px 0 0; color: #91adbf; font-size: 0.82rem; }
.footer-column h3 { margin-bottom: 16px; color: #fff; font-size: 0.8rem; }
.footer-column a,
.footer-column span { display: block; margin: 8px 0; color: #9db6c7; font-size: 0.78rem; }
.footer-column a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  color: #7594a8;
  border-top: 1px solid rgba(255,255,255,0.09);
  font-size: 0.7rem;
}

.product-dialog {
  width: min(880px, calc(100% - 28px));
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 38px 100px rgba(0,0,0,0.28);
}

.product-dialog::backdrop { background: rgba(3, 21, 37, 0.7); backdrop-filter: blur(7px); }
.dialog-close {
  display: grid;
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-950);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
}

.dialog-content { display: grid; grid-template-columns: 1fr 1fr; }
.dialog-content > img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; background: var(--surface-blue); }
.dialog-content > div { padding: clamp(34px, 5vw, 58px); align-self: center; }
.dialog-content h3 { margin-bottom: 16px; color: var(--blue-950); font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.04em; line-height: 1.05; }
.dialog-content p { color: var(--muted); }
.dialog-note { margin: 24px 0; padding: 14px; border-radius: 12px; background: var(--surface-soft); font-size: 0.78rem; }

.section-actions {
  display: flex;
  margin-top: 34px;
  justify-content: center;
}

.nav-links a.is-current::after {
  transform: scaleX(1);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 86px) 0 92px;
  background:
    radial-gradient(circle at 82% 20%, rgba(71, 200, 192, 0.16), transparent 28%),
    linear-gradient(145deg, #f8fbfe, #eaf4fb);
}

.subpage-hero::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(43, 108, 176, 0.18);
  border-radius: 50%;
}

.subpage-hero__inner {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 64px;
  align-items: end;
}

.subpage-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 740;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.subpage-hero__summary {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.catalog-status {
  min-height: 24px;
  margin: -10px 0 20px;
  color: var(--muted);
  font-size: 0.8rem;
}

.page-cta {
  display: flex;
  padding: clamp(34px, 6vw, 62px);
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  box-shadow: var(--shadow-lg);
}

.page-cta h2 {
  max-width: 760px;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.page-cta p { margin: 0; color: #b9d8ec; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 26px rgba(8, 47, 82, 0.04);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.blog-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 24px 52px rgba(8, 47, 82, 0.12);
  transform: translateY(-6px);
}

.blog-card__meta {
  display: flex;
  margin-bottom: 36px;
  gap: 12px;
  align-items: center;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 16px;
  color: var(--blue-950);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.blog-card p { color: var(--muted); }
.blog-card .button { margin-top: auto; align-self: flex-start; }

.article-dialog__content {
  padding: clamp(34px, 6vw, 72px);
}

.article-dialog__content h2 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--blue-950);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.article-dialog__content p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease var(--delay, 0ms), transform 620ms cubic-bezier(.2,.7,.2,1) var(--delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav-links { gap: 18px; }
  .main-nav { gap: 20px; }
  .header-actions .button { display: none; }
  .hero__inner { grid-template-columns: 0.9fr 1.1fr; }
  .hero__copy h1 { font-size: clamp(3rem, 7.8vw, 5.4rem); }
  body[data-lang="zh"] .hero__copy h1 { font-size: clamp(2.8rem, 5.4vw, 4.25rem); }
  .hero__visual { min-height: 560px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .configurator { grid-template-columns: 0.9fr 1.1fr; }
  .contact-shell { grid-template-columns: 0.9fr 1.1fr; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 28px), var(--content)); }
  .menu-button { display: block; }
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    padding: 104px 24px 30px;
    align-items: stretch;
    justify-content: flex-start;
    background: rgba(255,255,255,0.98);
  }
  .main-nav.is-open { display: flex; flex-direction: column; }
  .nav-links { flex-direction: column; gap: 4px; align-items: stretch; }
  .nav-links a { padding: 14px 8px; color: var(--blue-950); border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .header-actions { margin-top: 20px; justify-content: space-between; }
  .header-actions .button { display: inline-flex; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 54px); }
  .hero__inner { min-height: auto; grid-template-columns: 1fr; }
  .hero__copy { max-width: 700px; }
  .hero__visual.trend-selector { min-height: 620px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-item:nth-child(odd) { border-left: 1px solid var(--line); }
  .capability-item { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .product-tools { align-items: stretch; flex-direction: column; }
  .search-field { width: 100%; }
  .configurator { grid-template-columns: 1fr; }
  .configurator__visual { min-height: 560px; }
  .process-layout { grid-template-columns: 1fr; }
  .process-tabs { grid-template-columns: repeat(5, 1fr); overflow-x: auto; }
  .process-tab { min-width: 140px; grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-card, .quality-card--stack { min-height: 500px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .contact-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .subpage-hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 580px) {
  .section { padding: 72px 0; }
  .hero__copy h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  body[data-lang="zh"] .hero__copy h1 { font-size: clamp(2.7rem, 12vw, 3.6rem); }
  .hero__actions .button { width: 100%; }
  .hero__notes { display: grid; gap: 11px; }
  .hero__visual.trend-selector { min-height: auto; border-radius: 22px; }
  .trend-stage,
  .trend-stage img { min-height: 300px; }
  .trend-detail { grid-template-columns: 1fr; gap: 16px; }
  .trend-inquiry { width: 100%; }
  .trend-tabs { grid-template-columns: repeat(2, 1fr); }
  .trend-tab:nth-child(2) { border-right: 0; }
  .trend-tab:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-item { border-left: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__body { min-height: auto; }
  .filter-list { flex-wrap: nowrap; padding-bottom: 6px; overflow-x: auto; }
  .filter-button { white-space: nowrap; }
  .configurator__visual { min-height: 500px; }
  .config-bottle { width: 154px; height: 326px; }
  .config-bottle::before { left: 25px; width: 104px; }
  .config-bottle::after { top: 112px; }
  .config-bottle[data-lid-style="sport"]::before { left: 36px; width: 82px; }
  .config-bottle[data-lid-style="loop"]::before { left: 20px; width: 114px; }
  .process-panel { min-height: 380px; }
  .process-panel span { margin-bottom: 62px; }
  .quality-card, .quality-card--stack { min-height: 430px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .form-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { gap: 14px; align-items: flex-start; flex-direction: column; }
  .dialog-content { grid-template-columns: 1fr; }
  .dialog-content > img { min-height: 300px; max-height: 360px; }
}

/* HORIZON homepage v2 — task-led sourcing flow */
.home-v2 .hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(71, 200, 192, 0.13), transparent 24%),
    linear-gradient(115deg, #fff 0 48%, #f0f8fc 100%);
}

.home-v2 .hero__inner {
  min-height: 720px;
  gap: clamp(34px, 5vw, 70px);
}

.home-v2 .hero__copy h1 {
  text-wrap: balance;
}

.section--routes {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 8%, rgba(71, 200, 192, 0.1), transparent 24%),
    var(--surface-soft);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  display: flex;
  position: relative;
  min-height: 410px;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(8, 47, 82, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.route-card::after {
  position: absolute;
  right: -76px;
  bottom: -108px;
  width: 230px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(43, 108, 176, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(43, 108, 176, 0.035), 0 0 0 68px rgba(43, 108, 176, 0.025);
}

.route-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 26px 60px rgba(8, 47, 82, 0.11);
  transform: translateY(-5px);
}

.route-card--featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 12%, rgba(71, 200, 192, 0.3), transparent 30%),
    linear-gradient(145deg, var(--blue-950), var(--blue-700));
}

.route-card__number {
  margin-bottom: auto;
  color: var(--blue-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.route-card .eyebrow {
  margin-top: 54px;
  margin-bottom: 14px;
}

.route-card--featured .eyebrow,
.route-card--featured .route-card__number {
  color: #9ce0db;
}

.route-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.route-card--featured h3 { color: #fff; }

.route-card > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.88rem;
}

.route-card--featured > p:not(.eyebrow) { color: #c8dfed; }

.route-card button {
  display: inline-flex;
  position: relative;
  z-index: 2;
  min-height: 44px;
  margin-top: 18px;
  padding: 0;
  gap: 9px;
  align-items: center;
  align-self: flex-start;
  color: var(--blue-800);
  cursor: pointer;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
}

.route-card--featured button { color: #fff; }
.route-card button:hover { text-decoration: underline; text-underline-offset: 5px; }

.home-v2 .product-grid--representative {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.home-v2 .product-grid--representative .product-card {
  grid-column: span 4;
}

.home-v2 .product-grid--representative .product-card:nth-child(-n+2) {
  grid-column: span 6;
}

.home-v2 .product-grid--representative .product-card:nth-child(-n+2) .product-card__media {
  aspect-ratio: 1.55;
}

.home-v2 .product-grid--representative .product-card__body {
  min-height: 272px;
}

.section--journal {
  background: #fff;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.journal-card {
  display: flex;
  min-height: 390px;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(234,244,251,0.92)),
    var(--surface-blue);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.journal-card--lead {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 12%, rgba(71, 200, 192, 0.3), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.journal-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 25px 58px rgba(8, 47, 82, 0.13);
  transform: translateY(-5px);
}

.journal-card__meta {
  margin-bottom: auto;
  color: var(--blue-700);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-card--lead .journal-card__meta { color: #9ce0db; }

.journal-card h3 {
  max-width: 720px;
  margin: 72px 0 16px;
  color: var(--blue-950);
  font-size: clamp(1.75rem, 3.4vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.journal-card:not(.journal-card--lead) h3 { font-size: clamp(1.55rem, 2.7vw, 2.4rem); }
.journal-card--lead h3 { color: #fff; }
.journal-card p { max-width: 660px; color: var(--muted); }
.journal-card--lead p { color: #c8dfed; }
.journal-card strong { margin-top: 14px; color: var(--blue-800); font-size: 0.79rem; }
.journal-card--lead strong { color: #fff; }

@media (max-width: 1020px) {
  .home-v2 .product-grid--representative { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-v2 .product-grid--representative .product-card,
  .home-v2 .product-grid--representative .product-card:nth-child(-n+2) { grid-column: auto; }
  .home-v2 .product-grid--representative .product-card:nth-child(-n+2) .product-card__media { aspect-ratio: 1.13; }
}

@media (max-width: 820px) {
  .route-grid,
  .journal-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 360px; }
  .journal-card { min-height: 340px; }
}

@media (max-width: 580px) {
  .home-v2 .hero__inner { min-height: auto; }
  .home-v2 .product-grid--representative { grid-template-columns: 1fr; }
  .route-card { min-height: 330px; }
  .route-card .eyebrow { margin-top: 42px; }
  .journal-card { min-height: 320px; }
  .journal-card h3 { margin-top: 54px; }
}

/* HORIZON cinematic industrial system v4 */
.theme-cinematic {
  --blue-950: #eaf6ff;
  --blue-900: #d8eaf5;
  --blue-800: #55c8f2;
  --blue-700: #2f9fd2;
  --blue-600: #1675ad;
  --blue-300: #5fd3f7;
  --cyan-400: #65dcf5;
  --ink: #e7f1f7;
  --muted: #9eb5c6;
  --line: rgba(133, 183, 216, 0.2);
  --surface: #020b14;
  --surface-soft: #061b2d;
  --surface-blue: #0a253b;
  --shadow-sm: 0 14px 38px rgba(0, 8, 16, 0.34);
  --shadow-lg: 0 34px 100px rgba(0, 7, 14, 0.52);
  color: var(--ink);
  background:
    linear-gradient(rgba(91, 183, 229, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 183, 229, 0.035) 1px, transparent 1px),
    #020b14;
  background-size: 72px 72px;
}

.theme-cinematic ::selection { color: #02101c; background: #71d9f7; }

.theme-cinematic .site-header,
.theme-cinematic.subpage .site-header {
  color: #fff;
  border-color: rgba(131, 193, 229, 0.13);
  background: rgba(2, 11, 20, 0.68);
  box-shadow: none;
  backdrop-filter: blur(22px) saturate(1.2);
}

.theme-cinematic .site-header.is-scrolled {
  border-color: rgba(131, 193, 229, 0.2);
  background: rgba(2, 11, 20, 0.9);
  box-shadow: 0 14px 40px rgba(0, 6, 12, 0.3);
}

.theme-cinematic .brand { color: #f5fbff; }
.theme-cinematic .brand-mark {
  border: 1px solid rgba(114, 215, 250, 0.45);
  background: radial-gradient(circle at 35% 30%, #1c82bc, #05233b 68%);
  box-shadow: 0 0 30px rgba(85, 200, 242, 0.18);
}

.theme-cinematic .nav-links a { color: #b9cbd7; }
.theme-cinematic .nav-links a:hover,
.theme-cinematic .nav-links a:focus-visible { color: #fff; }
.theme-cinematic .nav-links a::after { background: #65dcf5; box-shadow: 0 0 14px rgba(101, 220, 245, 0.65); }

.theme-cinematic .language-link,
.theme-cinematic .menu-button {
  color: #dff4ff;
  border-color: rgba(133, 183, 216, 0.28);
  background: rgba(8, 31, 49, 0.74);
}

.theme-cinematic .menu-button span,
.theme-cinematic .menu-button::before,
.theme-cinematic .menu-button::after { background: #dff4ff; }

.theme-cinematic .button--primary {
  color: #fff;
  border-color: rgba(115, 215, 250, 0.28);
  background: linear-gradient(135deg, #0f5f92, #158fc3);
  box-shadow: 0 14px 36px rgba(15, 118, 173, 0.3), inset 0 1px rgba(255,255,255,0.18);
}

.theme-cinematic .button--primary:hover {
  background: linear-gradient(135deg, #1474aa, #32add8);
  box-shadow: 0 18px 46px rgba(38, 163, 215, 0.38), 0 0 24px rgba(85, 200, 242, 0.14);
}

.theme-cinematic .button--secondary,
.theme-cinematic .button--light {
  color: #dff5ff;
  border-color: rgba(133, 183, 216, 0.3);
  background: rgba(9, 34, 53, 0.74);
  box-shadow: inset 0 1px rgba(255,255,255,0.06);
}

.theme-cinematic .button--secondary:hover,
.theme-cinematic .button--light:hover {
  color: #fff;
  border-color: rgba(101, 220, 245, 0.68);
  background: rgba(18, 68, 98, 0.88);
}

.theme-cinematic .hero {
  min-height: 980px;
  padding-top: calc(var(--header-height) + 74px);
  background:
    linear-gradient(90deg, rgba(1, 8, 15, 0.92) 0%, rgba(2, 13, 24, 0.74) 42%, rgba(2, 12, 22, 0.22) 72%, rgba(1, 7, 13, 0.45) 100%),
    linear-gradient(180deg, transparent 58%, #020b14 100%),
    url("./images/horizon-og-preview.png") center / cover no-repeat;
}

.theme-cinematic .hero::before {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(112, 198, 236, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 198, 236, 0.12) 1px, transparent 1px);
  background-size: 116px 116px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.theme-cinematic .hero::after {
  position: absolute;
  z-index: 0;
  top: 58%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(83, 205, 246, 0.95) 22%, #d9f5ff 48%, rgba(73, 183, 232, 0.7) 76%, transparent);
  box-shadow: 0 0 12px rgba(83, 205, 246, 0.86), 0 0 40px rgba(83, 205, 246, 0.38);
  animation: horizonPulse 4.8s ease-in-out infinite;
}

@keyframes horizonPulse {
  0%, 100% { opacity: 0.55; filter: brightness(0.8); }
  50% { opacity: 1; filter: brightness(1.25); }
}

.theme-cinematic .hero__inner {
  min-height: 830px;
  grid-template-columns: minmax(340px, 0.76fr) minmax(500px, 1.24fr);
  gap: clamp(38px, 6vw, 86px);
}

.theme-cinematic .hero__copy {
  position: relative;
  z-index: 3;
  padding: 34px 0;
}

.theme-cinematic .hero__copy::before {
  display: block;
  width: 68px;
  height: 1px;
  margin-bottom: 28px;
  content: "";
  background: #65dcf5;
  box-shadow: 0 0 18px rgba(101, 220, 245, 0.7);
}

.theme-cinematic .hero__copy h1,
.theme-cinematic body[data-lang="zh"] .hero__copy h1 {
  max-width: 690px;
  color: #f4faff;
  font-size: clamp(3.4rem, 5.4vw, 6.3rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-shadow: 0 12px 50px rgba(0,0,0,0.45);
}

.theme-cinematic body[data-lang="zh"] .hero__copy h1,
body.theme-cinematic[data-lang="zh"] .hero__copy h1 {
  font-size: clamp(3.25rem, 5vw, 5.8rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.theme-cinematic .hero__copy h1 span { color: #78d9f6; }
.theme-cinematic .hero__copy > p { color: #b7cad7; text-shadow: 0 5px 24px rgba(0,0,0,0.5); }
.theme-cinematic .hero__notes { color: #9fb8c8; }
.theme-cinematic .hero__notes span::before { background: #65dcf5; box-shadow: 0 0 0 4px rgba(101,220,245,0.1), 0 0 18px rgba(101,220,245,0.45); }

.theme-cinematic .hero__visual.trend-selector {
  z-index: 3;
  min-height: 650px;
  border-color: rgba(129, 198, 234, 0.28);
  border-radius: 24px;
  background: rgba(3, 18, 31, 0.82);
  box-shadow: 0 36px 100px rgba(0, 5, 10, 0.62), inset 0 1px rgba(255,255,255,0.08), 0 0 0 1px rgba(59,145,193,0.08);
  backdrop-filter: blur(22px) saturate(1.05);
}

.theme-cinematic .trend-stage { background: #03111e; }
.theme-cinematic .trend-stage::after { background: linear-gradient(to bottom, rgba(2,11,20,0.02) 44%, rgba(2,11,20,0.72)); }
.theme-cinematic .trend-stage img { filter: saturate(0.88) contrast(1.08); }
.theme-cinematic .trend-stage__top,
.theme-cinematic .trend-scene {
  color: #e9f7ff;
  border-color: rgba(129, 198, 234, 0.28);
  background: rgba(3, 20, 34, 0.78);
  box-shadow: 0 12px 32px rgba(0,5,10,0.32);
}
.theme-cinematic .trend-stage__top strong,
.theme-cinematic .trend-scene span { color: #77d6f4; }
.theme-cinematic .trend-detail { border-color: rgba(129,198,234,0.18); background: rgba(3,17,29,0.96); }
.theme-cinematic .trend-detail h2 { color: #f2f9fd; }
.theme-cinematic .trend-detail p { color: #9eb5c6; }
.theme-cinematic .trend-inquiry { background: linear-gradient(135deg, #0f5f92, #158fc3); }
.theme-cinematic .trend-tabs { border-color: rgba(129,198,234,0.18); }
.theme-cinematic .trend-tab { color: #8faabd; border-color: rgba(129,198,234,0.14); background: #041522; }
.theme-cinematic .trend-tab:hover { color: #fff; background: #0a2b43; }
.theme-cinematic .trend-tab.is-active { color: #fff; background: linear-gradient(145deg, #0f4c81, #147baa); box-shadow: inset 0 2px #65dcf5; }

.theme-cinematic .capability-bar {
  border-color: rgba(129,198,234,0.18);
  background: #04131f;
}
.theme-cinematic .capability-item { border-color: rgba(129,198,234,0.15); }
.theme-cinematic .capability-item strong { color: #eef9ff; }
.theme-cinematic .capability-item span { color: #8fa9bb; }

.theme-cinematic .section { background-color: #020b14; }
.theme-cinematic .section--soft,
.theme-cinematic .section--routes {
  background:
    radial-gradient(circle at 92% 8%, rgba(45, 153, 204, 0.13), transparent 25%),
    linear-gradient(rgba(91,183,229,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,183,229,0.035) 1px, transparent 1px),
    #061724;
  background-size: auto, 72px 72px, 72px 72px, auto;
}
.theme-cinematic .section--dark {
  background:
    radial-gradient(circle at 78% 28%, rgba(45, 172, 215, 0.16), transparent 28%),
    linear-gradient(135deg, #020b14, #07243a 62%, #03121f);
}
.theme-cinematic .section--journal { background: #030f1a; }
.theme-cinematic .section-heading h2,
.theme-cinematic .about-sticky h2 { color: #eef8fd; }
.theme-cinematic .section-heading > p,
.theme-cinematic .about-content > p { color: #9eb5c6; }
.theme-cinematic .eyebrow { color: #69d1f1; }

.theme-cinematic .route-card,
.theme-cinematic .journal-card {
  color: #dbeaf3;
  border-color: rgba(129,198,234,0.2);
  background:
    linear-gradient(145deg, rgba(12,42,64,0.86), rgba(3,17,29,0.94)),
    #061b2d;
  box-shadow: 0 18px 58px rgba(0, 6, 12, 0.32), inset 0 1px rgba(255,255,255,0.05);
}
.theme-cinematic .route-card--featured,
.theme-cinematic .journal-card--lead {
  border-color: rgba(101,220,245,0.36);
  background:
    radial-gradient(circle at 92% 12%, rgba(58, 191, 229, 0.28), transparent 30%),
    linear-gradient(145deg, #0a314e, #04131f);
  box-shadow: 0 26px 76px rgba(0, 9, 17, 0.48), 0 0 42px rgba(35,143,190,0.08), inset 0 1px rgba(255,255,255,0.08);
}
.theme-cinematic .route-card:hover,
.theme-cinematic .journal-card:hover { border-color: rgba(101,220,245,0.58); box-shadow: 0 30px 80px rgba(0,7,14,0.52), 0 0 34px rgba(46,167,215,0.1); }
.theme-cinematic .route-card h3,
.theme-cinematic .journal-card h3 { color: #eff9ff; }
.theme-cinematic .route-card > p:not(.eyebrow),
.theme-cinematic .journal-card p { color: #9db4c4; }
.theme-cinematic .route-card button,
.theme-cinematic .journal-card strong,
.theme-cinematic .journal-card__meta { color: #6cd5f3; }

.theme-cinematic .product-card,
.theme-cinematic .blog-card {
  border-color: rgba(129,198,234,0.2);
  background: linear-gradient(155deg, #0a263b, #04131f);
  box-shadow: 0 16px 48px rgba(0,6,12,0.3), inset 0 1px rgba(255,255,255,0.04);
}
.theme-cinematic .product-card:hover,
.theme-cinematic .blog-card:hover { border-color: rgba(101,220,245,0.58); box-shadow: 0 30px 80px rgba(0,6,12,0.55), 0 0 34px rgba(46,167,215,0.1); }
.theme-cinematic .product-card__media { border-bottom: 1px solid rgba(129,198,234,0.16); background: #071722; }
.theme-cinematic .product-card__media::after { background: linear-gradient(to top, rgba(2,11,20,0.48), transparent 46%); }
.theme-cinematic .product-card__media img[data-fit="contain"] { background: #e9edf0; }
.theme-cinematic .product-card__arrow { color: #dff7ff; border: 1px solid rgba(101,220,245,0.34); background: rgba(4,24,39,0.82); }
.theme-cinematic .product-card__body strong,
.theme-cinematic .blog-card h2 { color: #eef9ff; }
.theme-cinematic .product-card__body > span:not(.eyebrow):not(.tag-list),
.theme-cinematic .blog-card p,
.theme-cinematic .catalog-status { color: #9eb5c6; }
.theme-cinematic .tag-list span { color: #9de5f7; border: 1px solid rgba(101,220,245,0.14); background: rgba(22,93,129,0.3); }

.theme-cinematic .filter-button,
.theme-cinematic .search-field {
  color: #a9becd;
  border-color: rgba(129,198,234,0.22);
  background: rgba(7,28,44,0.82);
}
.theme-cinematic .filter-button:hover,
.theme-cinematic .filter-button.is-active { color: #fff; border-color: rgba(101,220,245,0.5); background: linear-gradient(135deg, #0f4c81, #167fae); }

.theme-cinematic .configurator {
  border-color: rgba(129,198,234,0.28);
  background: #04131f;
  box-shadow: 0 36px 100px rgba(0,5,10,0.52), inset 0 1px rgba(255,255,255,0.06);
}
.theme-cinematic .configurator__visual {
  background:
    radial-gradient(circle at 50% 42%, rgba(43,150,198,0.26) 0 18%, transparent 45%),
    linear-gradient(rgba(91,183,229,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,183,229,0.055) 1px, transparent 1px),
    #03111d;
  background-size: auto, 56px 56px, 56px 56px, auto;
}
.theme-cinematic .configurator__visual::before,
.theme-cinematic .configurator__visual::after { border-color: rgba(101,220,245,0.18); }
.theme-cinematic .configurator__panel { background: linear-gradient(145deg, #09253a, #04131f); }
.theme-cinematic .configurator__panel h2,
.theme-cinematic .config-group h3 { color: #eff9ff; }
.theme-cinematic .configurator__intro { color: #9eb5c6; }
.theme-cinematic .config-group { border-color: rgba(129,198,234,0.16); }
.theme-cinematic .option-button { color: #a9bdca; border-color: rgba(129,198,234,0.22); background: rgba(3,17,29,0.68); }
.theme-cinematic .option-button:hover,
.theme-cinematic .option-button.is-selected { color: #dff8ff; border-color: rgba(101,220,245,0.52); background: rgba(17,93,131,0.38); }
.theme-cinematic .swatch { border-color: #09273d; box-shadow: 0 0 0 1px rgba(150,201,230,0.28); }
.theme-cinematic .swatch[aria-pressed="true"] { box-shadow: 0 0 0 3px #65dcf5, 0 0 22px rgba(101,220,245,0.28); }
.theme-cinematic .config-summary { color: #dff8ff; border: 1px solid rgba(101,220,245,0.16); background: rgba(14,76,113,0.34); }

.theme-cinematic .quality-card { border: 1px solid rgba(129,198,234,0.2); background: #071b2a; }
.theme-cinematic .quality-card__overlay { background: linear-gradient(to top, rgba(2,11,20,0.98), rgba(2,11,20,0.02)); }
.theme-cinematic .quality-card--stack { background: linear-gradient(145deg, #0a2a42, #03121e); }
.theme-cinematic .principle { border-color: rgba(129,198,234,0.18); background: rgba(7,27,42,0.72); }
.theme-cinematic .principle h3 { color: #eef8fd; }
.theme-cinematic .principle p { color: #96adbd; }

.theme-cinematic .contact-shell { border-color: rgba(129,198,234,0.24); background: rgba(5,25,40,0.84); }
.theme-cinematic .contact-copy { background: linear-gradient(145deg, rgba(10,50,78,0.82), rgba(3,17,29,0.76)); }
.theme-cinematic .contact-form-wrap { background: #061724; }
.theme-cinematic .contact-form-wrap h3,
.theme-cinematic .field label { color: #edf9ff; }
.theme-cinematic .contact-form-wrap > p { color: #9eb5c6; }
.theme-cinematic .field input,
.theme-cinematic .field select,
.theme-cinematic .field textarea { color: #e9f6fd; border-color: rgba(129,198,234,0.22); background: #03121e; }
.theme-cinematic .field input:focus,
.theme-cinematic .field select:focus,
.theme-cinematic .field textarea:focus { border-color: #65dcf5; box-shadow: 0 0 0 3px rgba(101,220,245,0.1), 0 0 24px rgba(101,220,245,0.08); }

.theme-cinematic .site-footer { border-top: 1px solid rgba(129,198,234,0.14); background: #01070c; }

.theme-cinematic .subpage-hero {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(1,8,15,0.94), rgba(2,12,22,0.7) 48%, rgba(2,10,18,0.28)),
    linear-gradient(180deg, transparent 55%, #020b14 100%),
    url("./images/horizon-og-preview.png") center 48% / cover no-repeat;
}
.theme-cinematic .subpage-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(112,198,236,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(112,198,236,0.08) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}
.theme-cinematic .subpage-hero::after { border-color: rgba(101,220,245,0.22); box-shadow: 0 0 0 44px rgba(101,220,245,0.02), 0 0 0 88px rgba(101,220,245,0.015); }
.theme-cinematic .subpage-hero h1 { color: #f2f9fd; text-shadow: 0 14px 48px rgba(0,0,0,0.5); }
.theme-cinematic .subpage-hero__summary { color: #b0c4d1; text-shadow: 0 8px 28px rgba(0,0,0,0.56); }

.theme-cinematic .page-cta {
  border: 1px solid rgba(101,220,245,0.26);
  background:
    radial-gradient(circle at 92% 12%, rgba(65,190,228,0.22), transparent 28%),
    linear-gradient(135deg, #0a314e, #03131f);
  box-shadow: 0 30px 90px rgba(0,6,12,0.5), inset 0 1px rgba(255,255,255,0.07);
}

.theme-cinematic .product-dialog {
  color: #e9f5fb;
  border: 1px solid rgba(129,198,234,0.26);
  background: #051724;
  box-shadow: 0 42px 120px rgba(0,0,0,0.72);
}
.theme-cinematic .product-dialog::backdrop { background: rgba(0,5,10,0.82); }
.theme-cinematic .dialog-close { color: #eaf9ff; border: 1px solid rgba(101,220,245,0.3); background: rgba(5,28,44,0.88); }
.theme-cinematic .dialog-content h3,
.theme-cinematic .article-dialog__content h2 { color: #f1f9fd; }
.theme-cinematic .dialog-content p,
.theme-cinematic .article-dialog__content p { color: #9eb5c6; }
.theme-cinematic .dialog-note { color: #a9c0cf; border: 1px solid rgba(129,198,234,0.16); background: rgba(11,48,73,0.42); }

@media (max-width: 1020px) {
  .theme-cinematic .hero { min-height: auto; }
  .theme-cinematic .hero__inner { min-height: 760px; grid-template-columns: 0.82fr 1.18fr; }
  .theme-cinematic .hero__visual.trend-selector { min-height: 580px; }
}

@media (max-width: 820px) {
  .theme-cinematic .main-nav { background: rgba(2,11,20,0.98); }
  .theme-cinematic .nav-links a { color: #d8e9f3; border-color: rgba(129,198,234,0.16); }
  .theme-cinematic .hero { padding-top: calc(var(--header-height) + 54px); background-position: 57% top; }
  .theme-cinematic .hero__inner { min-height: auto; grid-template-columns: 1fr; }
  .theme-cinematic .hero__copy { max-width: 650px; padding: 88px 0 54px; }
  .theme-cinematic .hero__visual.trend-selector { min-height: 620px; }
  .theme-cinematic .subpage-hero { min-height: 560px; }
}

@media (max-width: 580px) {
  .theme-cinematic .hero { background-position: 62% top; }
  .theme-cinematic .hero::after { top: 44%; }
  .theme-cinematic .hero__copy { padding-top: 210px; }
  .theme-cinematic .hero__copy h1,
  body.theme-cinematic[data-lang="zh"] .hero__copy h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .theme-cinematic .subpage-hero { min-height: 500px; background-position: 62% center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}
