:root {
  --paper: #F8F9F8;
  --paper-warm: #F5F1E8;
  --research-bg: #EEF5F7;
  --line: #D8E0E2;
  --ink: #17343F;
  --deep: #07161B;
  --muted: #5C6D72;
  --accent-red: #C9282D;
  --accent-warm: #8A6344;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(7, 22, 27, .12);
  --shadow-deep: 0 26px 90px rgba(7, 22, 27, .22);
  --radius: 22px;
  --nav-h: 72px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.page { min-height: 100vh; }
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, color .35s ease;
  background: rgba(248, 249, 248, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 224, 226, .72);
  color: var(--ink);
}
.site-header.is-solid {
  background: rgba(248, 249, 248, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 224, 226, .86);
  box-shadow: 0 8px 30px rgba(7, 22, 27, .08);
  color: var(--ink);
}
.nav {
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: Inter, Arial, sans-serif;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 15px; }
.brand-text span { font-size: 12px; letter-spacing: .18em; color: var(--accent-red); font-family: Inter, Arial, sans-serif; font-weight: 760; opacity: 1; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.nav-links a { position: relative; padding: 25px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; background: none; border: 0; color: inherit; font-size: 24px; cursor: pointer; }
.hero-carousel {
  height: 100vh;
  min-height: 680px;
  position: relative;
  background: var(--deep);
  color: #fff;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; z-index: 2; pointer-events: auto; }
.hero-bg, .page-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg { transform: none; transition: none; }
.hero-slide.is-active .hero-bg { transform: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 22, 27, .75), rgba(7, 22, 27, .34) 48%, rgba(7, 22, 27, .14)),
    linear-gradient(0deg, rgba(7, 22, 27, .42), transparent 44%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 96px 28px 70px;
}
.hero-copy { max-width: 640px; }
.kicker, .eyebrow {
  font-family: Inter, Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 16px;
}
.kicker { color: rgba(255, 255, 255, .78); }
.eyebrow { color: var(--accent-warm); }
.hero-copy h1, .page-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.06;
  margin: 0 0 24px;
  font-weight: 650;
  letter-spacing: -.02em;
}
.hero-copy p, .page-hero p {
  font-size: 18px;
  max-width: 570px;
  color: rgba(255, 255, 255, .84);
  margin: 0 0 34px;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(7, 22, 27, .12); }
.btn.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn.ghost { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .42); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.hero-controls {
  position: absolute;
  z-index: 5;
  right: 44px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-dots {
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
}
.hero-dots button.is-active { background: #fff; }
.hero-play {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.44);
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.hero-play.is-active { background: #fff; color: var(--ink); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
  letter-spacing: .12em;
}
.section { padding: 104px 28px; }
.section.warm { background: var(--paper-warm); }
.section.research { background: var(--research-bg); }
.section.dark { background: var(--deep); color: #fff; }
.container { max-width: 1180px; margin: 0 auto; }
.section-head { margin-bottom: 42px; }
.section-head.compact { margin-bottom: 28px; }
.section-head h2, .stage-copy h2, [data-tab-title], [data-flow-title] {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  margin: 0;
  color: var(--ink);
}
.section.dark .section-head h2, .section.dark .section-head p { color: #fff; }
.section-head p, .stage-copy p, .expand-card p, .support-card p { color: var(--muted); }
.section-head p { max-width: 680px; margin: 16px 0 0; }
.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: center; }
.split.slim { grid-template-columns: 1fr; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dfe8ea;
}
.image-frame img { width: 100%; height: 460px; object-fit: cover; transition: transform .4s ease; }
.image-frame:hover img { transform: scale(1.018); }
.source-card {
  clip-path: inset(8% 10% 8% 0 round var(--radius));
  transition: clip-path .9s ease, opacity .6s ease, transform .6s ease;
}
.source-card.in { clip-path: inset(0 0 0 0 round var(--radius)); }
.source-card img { object-position: center; }
.image-viewer-trigger {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.86);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
  font-size: 13px;
}
.frame-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  background: rgba(7, 22, 27, .38);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  padding: 8px 12px;
}
.advantage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.advantage-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.expand-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
}
.expand-card:hover, .expand-card.is-open { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #C2D0D5; }
.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent-red);
  margin-bottom: 14px;
}
.expand-card .num { font-family: Inter, Arial, sans-serif; color: var(--accent-red); font-size: 13px; }
.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--ink);
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.expand-card:hover .card-link,
.expand-card.is-open .card-link { opacity: 1; transform: none; }
.expand-card h3 { font-size: 24px; margin: 18px 0 10px; }
.expand-card p { margin: 0; }
.expand-card ul { max-height: 0; overflow: hidden; margin: 0; padding: 0; transition: max-height .3s ease, margin .3s ease; color: var(--muted); }
.expand-card.is-open ul, .expand-card:hover ul { max-height: 140px; margin: 18px 0 0; padding-left: 18px; }
.product-stage {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(300px, 1.05fr) minmax(220px, .58fr);
  gap: 34px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  width: 100%;
  overflow: hidden;
}
.product-page-stage { align-items: stretch; }
.stage-copy { min-width: 0; }
.stage-copy p { margin: 16px 0 24px; }
.product-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #F8FBFC, #E5EEF2);
  border-radius: 24px;
  overflow: hidden;
}
.product-main-card { min-height: 520px; }
.product-visual img {
  width: min(86%, 560px);
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(7, 22, 27, .18));
  transition: opacity .25s ease, transform .25s ease;
}
.product-visual:hover img { transform: scale(1.015); }
.product-tabs, .side-tabs { display: grid; gap: 12px; align-content: start; }
.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  color: var(--muted);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.tab-btn.is-active, .tab-btn:hover { border-color: var(--ink); color: var(--ink); background: #F8FBFC; }
.info-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.page-hero {
  height: 56vh;
  min-height: 440px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}
.page-hero .container { position: relative; z-index: 3; padding: 0 28px 72px; width: 100%; }
.page-hero h1 { font-size: clamp(42px, 6vw, 70px); }
.page-hero .hero-overlay { z-index: 1; }
.product-hero { min-height: 100vh; padding: calc(var(--nav-h) + 64px) 28px 78px; display: flex; align-items: center; background: radial-gradient(circle at 78% 28%, rgba(216,224,226,.82), transparent 34%), linear-gradient(135deg, #07161B 0%, #102832 42%, #F3F7F8 42.2%, #F8F9F8 100%); overflow: hidden; }
.product-hero-inner { display: grid; grid-template-columns: minmax(0,.42fr) minmax(0,.58fr); gap: 52px; align-items: center; }
.product-hero-copy { color: #fff; max-width: 560px; }
.product-hero-copy h1 { font-size: clamp(44px,5.2vw,70px); line-height: 1.06; margin: 0 0 24px; letter-spacing: -.02em; }
.product-hero-copy p { color: rgba(255,255,255,.82); font-size: 18px; margin: 0 0 30px; }
.product-hero-copy .btn:not(.primary) { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.38); }
.product-hero-visual { min-height: 560px; border-radius: 34px; display: flex; align-items: center; justify-content: flex-end; padding: 34px; background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,245,247,.72)), repeating-linear-gradient(90deg, rgba(23,52,63,.055) 0 1px, transparent 1px 42px), repeating-linear-gradient(0deg, rgba(23,52,63,.04) 0 1px, transparent 1px 42px); box-shadow: var(--shadow-deep); overflow: hidden; }
.product-hero-visual img { width: min(100%,720px); max-height: 520px; object-fit: contain; object-position: right center; filter: drop-shadow(0 26px 36px rgba(7,22,27,.18)); }
.product-info-panel { position: relative; min-height: 460px; border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; background: linear-gradient(145deg, rgba(248,251,252,.96), rgba(229,238,242,.88)), repeating-linear-gradient(90deg, rgba(23,52,63,.055) 0 1px, transparent 1px 36px), repeating-linear-gradient(0deg, rgba(23,52,63,.04) 0 1px, transparent 1px 36px); border: 1px solid var(--line); }
.info-orbit { position: absolute; width: 280px; height: 280px; top: 40px; right: -70px; border: 1px solid rgba(23,52,63,.12); border-radius: 50%; }
.info-orbit::before, .info-orbit::after { content: ""; position: absolute; inset: 48px; border: 1px solid rgba(201,40,45,.16); border-radius: 50%; }
.info-orbit::after { inset: 96px; background: rgba(201,40,45,.10); }
.product-info-panel .num { font-family: Inter,Arial,sans-serif; color: var(--accent-red); font-size: 13px; position: relative; z-index: 1; }
.product-info-panel h3 { position: relative; z-index: 1; font-size: 28px; margin: 12px 0 12px; }
.product-info-panel p, .product-info-panel ul { position: relative; z-index: 1; color: var(--muted); margin: 0; }
.product-info-panel ul { padding-left: 18px; margin-top: 18px; }
.stage-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: 24px; }
.drawer { position: fixed; z-index: 80; inset: 0; pointer-events: none; }
.drawer::before { content: ""; position: absolute; inset: 0; background: rgba(7, 22, 27, .45); opacity: 0; transition: opacity .25s ease; }
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(460px, 92vw);
  background: #fff;
  padding: 34px;
  transform: translateX(100%);
  transition: transform .32s ease;
  box-shadow: -24px 0 60px rgba(7, 22, 27, .18);
  overflow-y: auto;
}
.drawer.is-open { pointer-events: auto; }
.drawer.is-open::before { opacity: 1; }
.drawer.is-open .drawer-panel { transform: none; }
.close-btn { border: 1px solid var(--line); background: #fff; border-radius: 50%; width: 42px; height: 42px; cursor: pointer; }
.brand-system-panel { position: relative; min-height: 430px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-deep); background: var(--deep); }
.brand-system-panel img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; opacity: .82; }
.brand-system-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,22,27,.12), rgba(7,22,27,.64)); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 26px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-card { border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 20px; min-height: 116px; display: flex; flex-direction: column; justify-content: space-between; }
.contact-card span { color: var(--muted); font-size: 13px; }
.contact-card strong { font-size: 17px; line-height: 1.42; }
.form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,22,27,.82), rgba(7,22,27,.62)),
    url("../assets/images/contact/contact-form-bg.webp") center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}
.form-card .eyebrow, .form-card h2, .form-card p { color: #fff; }
.need-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 16px 0 24px; }
.need-options button { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; padding: 11px 12px; cursor: pointer; }
.need-options button.is-active, .need-options button:hover { background: #fff; color: var(--ink); }
.field { display: grid; gap: 6px; margin: 12px 0; color: rgba(255,255,255,.9); }
.field input, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.3); border-radius: 14px; background: rgba(255,255,255,.12); color: #fff; padding: 12px 14px; outline: none; }
.field input:focus, .field textarea:focus { border-color: #fff; background: rgba(255,255,255,.16); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.58); }
.site-footer { background: #F4F7F8; color: var(--ink); padding: 32px 28px 26px; border-top: 1px solid rgba(216, 224, 226, .72); }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: flex-start; gap: 40px; }
.footer-inner p { max-width: 460px; }
.footer-links { display: none; }
.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 12px);
  background: rgba(7,22,27,.92);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; background: rgba(7,22,27,.45); padding: 20px; }
.modal.is-open { display: grid; }
.modal-box { width: min(460px, 92vw); background: #fff; color: var(--ink); border-radius: 24px; padding: 28px; box-shadow: var(--shadow-deep); }
.modal-box h3 { margin: 18px 0 10px; }
@media (max-width: 1180px) {
  .advantage-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-stage { grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr); }
  .product-tabs { grid-column: 1 / -1; grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .split, .contact-grid, .product-stage, .product-hero-inner { grid-template-columns: 1fr; }
  .product-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-visual, .product-main-card, .product-info-panel { min-height: 380px; }
  .product-hero { padding: calc(var(--nav-h) + 42px) 22px 60px; background: linear-gradient(180deg, #07161B 0%, #102832 43%, #F8F9F8 43.2%, #F8F9F8 100%); }
  .product-hero-visual { min-height: 420px; justify-content: center; }
  .info-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 18px; }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; top: var(--nav-h); left: 12px; right: 12px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px; background: rgba(248,249,248,.96); color: var(--ink); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 0; }
  .hero-carousel { min-height: 620px; }
  .hero-content { padding: 88px 22px 70px; }
  .hero-copy h1, .page-hero h1 { font-size: 40px; }
  .hero-copy p, .page-hero p { font-size: 16px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,22,27,.78), rgba(7,22,27,.42)), linear-gradient(0deg, rgba(7,22,27,.4), transparent 45%); }
  .hero-controls { right: 22px; bottom: 26px; }
  .scroll-cue { display: none; }
  .section { padding: 72px 20px; }
  .page-hero { min-height: 390px; height: 52vh; }
  .page-hero .container { padding: 0 20px 50px; }
  .image-frame img, .brand-system-panel img { height: 330px; min-height: 330px; }
  .advantage-grid, .advantage-grid.four, .contact-cards, .info-strip, .need-options { grid-template-columns: 1fr; }
  .product-tabs { grid-template-columns: 1fr; }
  .product-stage { padding: 22px; border-radius: 22px; }
  .product-visual, .product-main-card, .product-info-panel { min-height: 300px; }
  .product-hero-copy h1 { font-size: 40px; }
  .product-hero-copy p { font-size: 16px; }
  .product-hero-visual { min-height: 320px; padding: 18px; border-radius: 22px; }
  .product-hero-visual img { max-height: 300px; object-position: center; }
  .footer-inner { flex-direction: column; }
  .footer-consult-group { flex-wrap: wrap; justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero-slide.is-active .hero-bg, .image-frame:hover img, .product-visual:hover img { transform: none; }
  .source-card { clip-path: inset(0 0 0 0 round var(--radius)); }
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(7, 22, 27, .78);
}
.image-lightbox.is-open { display: grid; }
.image-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 20px;
  box-shadow: var(--shadow-deep);
}
.image-lightbox .close-btn {
  position: fixed;
  top: 24px;
  right: 24px;
}
@media (max-width: 768px) {
  .image-viewer-trigger { right: 14px; bottom: 14px; padding: 8px 12px; }
}
/* Product center usability fixes */
.product-page .product-hero {
  background: linear-gradient(135deg, #07161B 0%, #102832 43%, #F6F8F9 43.2%, #F8F9F8 100%);
}
.product-page .product-hero-copy .btn.primary {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(7, 22, 27, .14);
}
.product-page .product-hero-copy .btn:not(.primary) {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, .68);
}
.product-page .product-hero-visual {
  min-height: 560px;
  padding: 0;
  justify-content: stretch;
  background: #F4F7F8;
  border: 1px solid rgba(216, 224, 226, .72);
  box-shadow: 0 18px 50px rgba(7, 22, 27, .14);
}
.product-page .product-hero-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: right center;
  filter: none;
}
.product-doc-grid .product-doc-card {
  cursor: default;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.product-doc-grid .product-doc-card ul {
  max-height: none;
  margin: 16px 0 0;
  padding-left: 18px;
}
.product-doc-grid .product-doc-card .btn {
  margin-top: 18px;
}
@media (hover: hover) and (pointer: fine) {
  .product-doc-grid .product-doc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(7, 22, 27, .10);
    border-color: #C2D0D5;
  }
}
@media (max-width: 1024px) {
  .product-page .product-hero {
    background: linear-gradient(180deg, #07161B 0%, #102832 43%, #F8F9F8 43.2%, #F8F9F8 100%);
  }
  .product-page .product-hero-visual {
    min-height: 420px;
  }
}
@media (max-width: 768px) {
  .product-page .product-hero-visual {
    min-height: 320px;
  }
  .product-page .product-hero-visual img {
    object-position: right center;
  }
}
/* Product hero readability and static homepage carousel refinements */
.nowrap { white-space: nowrap; }
.hero-copy .title-break { display: block; }
.hero-bg {
  transform: none;
  transition: none;
}
.hero-slide.is-active .hero-bg {
  transform: none;
}
.product-page .product-hero {
  background: linear-gradient(135deg, #07161B 0%, #102832 56%, #F6F8F9 56.2%, #F8F9F8 100%);
}
.product-page .product-hero-inner {
  width: 100%;
  grid-template-columns: minmax(0, .40fr) minmax(0, .60fr);
  gap: 44px;
}
.product-page .product-hero-copy {
  max-width: 430px;
}
.product-page .product-hero-copy p {
  max-width: 430px;
}
.product-page .product-hero-visual {
  position: relative;
  height: clamp(430px, 38vw, 520px);
  min-height: 0;
  border-radius: 28px;
  background: #F4F7F8;
}
.product-page .product-hero-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 31%;
  width: 96px;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(90deg, #F4F7F8 0%, rgba(244, 247, 248, .95) 60%, rgba(244, 247, 248, 0) 100%);
}
.product-page .product-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
  opacity: 1;
  filter: none;
  transform: scale(1.22);
  transform-origin: right center;
  z-index: 1;
}
@media (max-width: 1024px) {
  .product-page .product-hero {
    background: linear-gradient(180deg, #07161B 0%, #102832 54%, #F8F9F8 54.2%, #F8F9F8 100%);
  }
  .product-page .product-hero-inner {
    grid-template-columns: 1fr;
  }
  .product-page .product-hero-visual {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .product-page .product-hero-visual {
    height: 320px;
  }
}
/* Contact page direct info + one-step inquiry redesign */
.contact-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(255,255,255,.72), transparent 28%),
    linear-gradient(180deg, #EEF5F7 0%, #F8F9F8 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .44fr) minmax(0, .56fr);
  gap: 30px;
  align-items: start;
}
.contact-info-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 224, 226, .92);
  border-radius: 28px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,247,249,.90)),
    repeating-linear-gradient(90deg, rgba(23,52,63,.035) 0 1px, transparent 1px 38px);
  box-shadow: 0 20px 56px rgba(7, 22, 27, .08);
  color: var(--ink);
}
.contact-info-panel::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -72px;
  top: -72px;
  border: 1px solid rgba(201, 40, 45, .16);
  border-radius: 50%;
}
.contact-info-panel .eyebrow,
.contact-form-card .eyebrow { margin-bottom: 10px; }
.contact-info-panel h2,
.contact-form-card h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.18;
}
.contact-accent-line {
  width: 62px;
  height: 2px;
  margin: 18px 0 26px;
  background: linear-gradient(90deg, var(--accent-red), rgba(201, 40, 45, 0));
}
.contact-info-list { display: grid; gap: 13px; }
.contact-info-row {
  width: 100%;
  border: 1px solid rgba(216, 224, 226, .94);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  padding: 16px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: var(--ink);
  text-align: left;
  cursor: default;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease, background .22s ease;
}
a.contact-info-row,
button.contact-info-row { cursor: pointer; }
a.contact-info-row:hover,
button.contact-info-row:hover,
a.contact-info-row:focus-visible,
button.contact-info-row:focus-visible {
  border-color: rgba(23, 52, 63, .34);
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(7, 22, 27, .08);
  outline: none;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 52, 63, .18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, .74);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-info-row small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
}
.contact-info-row strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  word-break: break-word;
}
.contact-empty {
  margin: 0;
  border: 1px dashed rgba(23, 52, 63, .20);
  border-radius: 18px;
  background: rgba(255, 255, 255, .66);
  padding: 18px;
  color: var(--muted);
}
.contact-qr-area {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 224, 226, .9);
}
.contact-qr-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-qr-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 12px;
  color: var(--ink);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.contact-qr-card:hover,
.contact-qr-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(23, 52, 63, .32);
  box-shadow: 0 14px 30px rgba(7, 22, 27, .08);
  outline: none;
}
.contact-qr-card img {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 8px;
  border-radius: 10px;
}
.contact-qr-card span {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.contact-form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,22,27,.88), rgba(12,35,43,.76)),
    url("../assets/images/contact/contact-form-bg.webp") center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 88% 16%, rgba(201,40,45,.20), transparent 24%);
}
.contact-form-card > * { position: relative; z-index: 1; }
.contact-form-card h2,
.contact-form-card .eyebrow { color: #fff; }
.contact-form-fields {
  display: grid;
  gap: 14px;
  margin: 26px 0 22px;
}
.contact-field {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
}
.contact-field input,
.contact-field textarea {
  margin-top: 7px;
  border-color: rgba(255,255,255,.22);
  background: rgba(9, 29, 36, .72);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255,255,255,.72);
  background: rgba(12, 36, 44, .86);
}
.contact-field input:focus-visible,
.contact-field textarea:focus-visible,
.contact-submit:focus-visible {
  outline: 2px solid rgba(255,255,255,.54);
  outline-offset: 3px;
}
.contact-field input[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] {
  border-color: rgba(201, 40, 45, .82);
}
.field-error {
  min-height: 18px;
  color: #FFB8B8;
  font-size: 12px;
}
.contact-submit {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.form-note {
  margin: 16px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
}
.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.76);
}
.form-status.is-warning,
.form-status.is-error,
.form-status.is-success {
  position: relative;
  padding-left: 16px;
}
.form-status.is-warning::before,
.form-status.is-error::before,
.form-status.is-success::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-red);
}
.form-status.is-success::before { background: #9CC7B5; }
.form-status.is-warning { color: rgba(255,255,255,.84); }
.form-status.is-error { color: #FFD3D3; }
.form-status.is-success { color: #D9F1E6; }
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-layout { gap: 20px; }
  .contact-info-panel,
  .contact-form-card { padding: 24px; border-radius: 22px; }
  .contact-info-row { grid-template-columns: 40px minmax(0, 1fr); padding: 14px; }
  .contact-icon { width: 38px; height: 38px; }
  .contact-qr-list { grid-template-columns: 1fr; }
  .contact-qr-card img { max-width: 180px; }
  .contact-submit { width: 100%; justify-content: center; }
}
.contact-layout,
.contact-info-panel,
.contact-form-card,
.contact-info-row,
.contact-empty,
.contact-field input,
.contact-field textarea {
  min-width: 0;
}
.contact-empty,
.contact-info-row strong,
.form-status {
  overflow-wrap: anywhere;
}
.contact-empty {
  max-width: 100%;
  white-space: normal;
  word-break: break-all;
}
@media (max-width: 768px) {
  .contact-section .container,
  .contact-layout,
  .contact-info-panel,
  .contact-form-card { width: 100%; max-width: 100%; }
}

/* About page news modules */
.about-news-section {
  background: #F8F9F8;
}
.news-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -14px 0 28px;
}
.news-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease;
}
.news-filter:hover,
.news-filter:focus-visible,
.news-filter.is-active {
  border-color: var(--ink);
  color: var(--ink);
  background: #F8FBFC;
  outline: none;
}
.news-filter.is-active {
  box-shadow: 0 10px 26px rgba(7,22,27,.07);
}
.news-grid {
  display: grid;
  gap: 20px;
}
.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-card,
.content-empty {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(7, 22, 27, .07);
}
.news-card {
  overflow: hidden;
  padding: 22px;
  min-height: 220px;
}
.news-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(216,224,226,.86);
  border-radius: 16px;
  background: #F4F7F8;
  overflow: hidden;
  margin-bottom: 18px;
}
.news-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--accent-warm);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-card h3,
.content-empty h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}
.news-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card p,
.content-empty p {
  color: var(--muted);
}
.news-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 600;
}
.text-link .arrow {
  transition: transform .22s ease;
}
.text-link:hover .arrow,
.text-link:focus-visible .arrow {
  transform: translateX(4px);
}
.content-empty {
  padding: 30px;
  max-width: 760px;
}
.content-empty h3 {
  font-size: 24px;
}
.content-empty p {
  margin: 10px 0 0;
}
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .news-filter-group { gap: 8px; overflow-x: auto; padding-bottom: 4px; }
  .news-filter { flex: 0 0 auto; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card,
  .content-empty { border-radius: 18px; padding: 20px; }
}
/* Product center main product showcase */
.product-showcase-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 70px) 28px 96px;
  background:
    radial-gradient(circle at 18% 18%, rgba(229, 238, 242, .72), transparent 34%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFA 48%, #EEF5F7 100%);
}
.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}
.product-showcase-visual {
  position: relative;
  min-height: clamp(440px, 43vw, 600px);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.product-showcase-visual::before {
  content: "";
  position: absolute;
  width: min(88%, 560px);
  height: min(72%, 430px);
  border-radius: 50%;
  background: rgba(238, 245, 247, .74);
  filter: blur(2px);
  z-index: -2;
}
.product-showcase-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
  transform: none;
}
.product-pedestal {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: clamp(26px, 5vw, 58px);
  width: min(72%, 500px);
  height: 34px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(23, 52, 63, .14) 0%, rgba(23, 52, 63, .07) 48%, rgba(23, 52, 63, 0) 72%);
  filter: blur(.2px);
}
.product-showcase-copy {
  max-width: 560px;
  justify-self: start;
}
.product-showcase-copy .eyebrow {
  margin-bottom: 14px;
  color: var(--accent-red);
}
.product-showcase-copy h1 {
  margin: 0;
  font-size: clamp(52px, 5.1vw, 64px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -.03em;
}
.product-brand {
  margin: 18px 0 34px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #48626B;
  letter-spacing: .01em;
}
.product-info-lines {
  border-top: 1px solid rgba(23, 52, 63, .16);
  border-bottom: 1px solid rgba(23, 52, 63, .16);
}
.product-info-line {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 52, 63, .10);
}
.product-info-line:first-child { border-top: 0; }
.product-info-line span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .08em;
}
.product-info-line strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}
.product-info-line p {
  margin: 0;
  color: #43585F;
  font-size: 17px;
  line-height: 1.75;
}
.product-showcase-actions {
  margin-top: 34px;
}
.product-showcase-actions .btn.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.product-outline-btn {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 52, 63, .32);
}
.product-showcase-actions .btn:hover .arrow {
  transform: translateX(3px);
}
@media (max-width: 1024px) {
  .product-showcase-section {
    min-height: auto;
    padding: calc(var(--nav-h) + 44px) 22px 78px;
  }
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .product-showcase-visual {
    order: 1;
    min-height: 420px;
  }
  .product-showcase-copy {
    order: 2;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .product-showcase-section {
    padding: calc(var(--nav-h) + 30px) 18px 64px;
  }
  .product-showcase-visual {
    min-height: 330px;
  }
  .product-showcase-visual img {
    width: min(100%, 520px);
  }
  .product-pedestal {
    bottom: 20px;
    height: 24px;
  }
  .product-showcase-copy h1 {
    font-size: 42px;
  }
  .product-info-line {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
  .product-info-line p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* Product center two-product refinements */
.product-secondary-section {
  min-height: auto;
  padding-top: 88px;
  background:
    radial-gradient(circle at 82% 14%, rgba(229, 238, 242, .70), transparent 34%),
    linear-gradient(135deg, #F8FAFA 0%, #FFFFFF 48%, #EEF5F7 100%);
}
.product-showcase-copy h2 {
  margin: 0;
  font-size: clamp(48px, 4.6vw, 60px);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -.03em;
}
.product-showcase-reverse .product-showcase-copy {
  justify-self: start;
}
.product-showcase-reverse .product-showcase-visual {
  justify-self: stretch;
}
.product-showcase-visual .tecno-product-image {
  width: min(82%, 500px);
  max-height: 620px;
}
.drawer-note-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
@media (max-width: 1024px) {
  .product-secondary-section {
    padding-top: 62px;
  }
  .product-showcase-copy h2 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .product-showcase-visual .tecno-product-image {
    width: min(86%, 360px);
    max-height: 430px;
  }
}

/* About page copy refinements */
.page-hero.about-hero {
  align-items: center;
  justify-content: center;
}

.page-hero.about-hero .container {
  display: grid;
  place-items: center;
  padding: 0 28px;
  text-align: center;
}

.page-hero.about-hero .container::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(460px, 68vw);
  height: min(180px, 26vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(17, 37, 38, .18), rgba(17, 37, 38, .08) 52%, transparent 78%);
  filter: blur(10px);
  pointer-events: none;
}

.page-hero.about-hero h1 {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0,0,0,.26), 0 1px 0 rgba(255,255,255,.08);
  animation: aboutHeroTitleIn 1.05s ease-out .18s both;
}

.page-hero.about-hero .hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 32, 35, .08) 0%, rgba(9, 32, 35, .10) 56%, rgba(9, 32, 35, .18) 100%),
    radial-gradient(ellipse at center, rgba(9, 32, 35, .02), rgba(9, 32, 35, .12) 82%);
}

@keyframes aboutHeroTitleIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .page-hero.about-hero h1 {
    font-size: clamp(40px, 13vw, 52px);
  }

  .page-hero.about-hero .container::before {
    width: min(360px, 82vw);
    height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero.about-hero h1 {
    animation: none;
  }
}

.page-hero.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0,0,0,.26), 0 1px 0 rgba(255,255,255,.08);
  animation: aboutHeroTitleIn 1.05s ease-out .18s both;
}

.page-hero.contact-hero {
  align-items: center;
  justify-content: center;
}

.page-hero.contact-hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 28px;
  text-align: center;
}

.page-hero.contact-hero .hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 32, 35, .08) 0%, rgba(9, 32, 35, .10) 56%, rgba(9, 32, 35, .18) 100%),
    radial-gradient(ellipse at center, rgba(9, 32, 35, .02), rgba(9, 32, 35, .12) 82%);
}

.page-hero.news-hero {
  align-items: center;
  justify-content: center;
}

.page-hero.news-hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 28px;
  text-align: center;
}

.page-hero.news-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0,0,0,.26), 0 1px 0 rgba(255,255,255,.08);
  animation: aboutHeroTitleIn 1.05s ease-out .18s both;
}

.page-hero.news-hero .hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 32, 35, .12) 0%, rgba(9, 32, 35, .16) 58%, rgba(9, 32, 35, .28) 100%),
    radial-gradient(ellipse at center, rgba(9, 32, 35, .02), rgba(9, 32, 35, .16) 82%);
}

@media (max-width: 640px) {
  .page-hero.contact-hero h1 {
    font-size: clamp(40px, 13vw, 52px);
  }

  .page-hero.news-hero h1 {
    font-size: clamp(40px, 13vw, 52px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero.contact-hero h1 {
    animation: none;
  }

  .page-hero.news-hero h1 {
    animation: none;
  }
}

.about-company-copy p {
  text-indent: 2em;
  margin: 0 0 24px;
}
.about-company-copy p:last-child {
  margin-bottom: 0;
}

/* Official logo integration */
.brand {
  transition: opacity .2s ease;
}
.brand:hover {
  opacity: .92;
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  transform: none;
  transition: transform .2s ease, opacity .2s ease;
}
.brand:hover .brand-mark {
  transform: scale(1.03);
}
.footer-brand-block {
  max-width: 520px;
  display: grid;
  gap: 6px;
}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2px;
}
.footer-logo {
  height: 72px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .footer-logo {
    height: 66px;
  }
}
/* Phase 1 architecture closeout: dropdown nav, product series, overview pages and footer */
.site-header {
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  border-bottom: 1px solid rgba(216, 224, 226, .72);
  backdrop-filter: blur(14px);
}
.site-header .nav { gap: 28px; }
.nav-links { align-items: center; }
.nav-item { position: relative; display: inline-flex; align-items: center; gap: 2px; }
.nav-primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 0 6px;
  transition: color .2s ease, transform .2s ease;
}
.nav-primary-link:hover,
.nav-primary-link:focus-visible,
.nav-primary-link.active,
.nav-item.active > .nav-primary-link { color: var(--accent-red); outline: none; }
.nav-item:hover > .nav-primary-link,
.nav-item:focus-within > .nav-primary-link,
.nav-item.is-open > .nav-primary-link {
  color: var(--accent-red);
  outline: none;
}
.nav-item:hover > .nav-primary-link::after,
.nav-item:focus-within > .nav-primary-link::after,
.nav-item.is-open > .nav-primary-link::after,
.nav-item.active > .nav-primary-link::after,
.nav-primary-link.active::after {
  transform: scaleX(1);
}
.submenu-toggle {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.submenu-toggle:hover,
.submenu-toggle:focus-visible,
.nav-item.is-open .submenu-toggle {
  background: rgba(201, 40, 45, .08);
  color: var(--accent-red);
  outline: none;
}
.nav-item.is-open .submenu-toggle { transform: rotate(180deg); }
.nav-submenu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 12px);
  left: 0;
  min-width: 196px;
  padding: 8px;
  border: 1px solid rgba(216, 224, 226, .96);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 46px rgba(7, 22, 27, .12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-item.is-open .nav-submenu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-submenu a {
  display: block;
  border-radius: 11px;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}
.nav-submenu a::after {
  display: none;
}
.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a.active {
  background: #F4F7F8;
  color: var(--accent-red);
  outline: none;
}
.hero-copy h1 {
  max-width: 760px;
  text-wrap: balance;
  line-break: strict;
}
.hero-copy p { max-width: 560px; }
.hero-bg,
.hero-slide.is-active .hero-bg { transform: none !important; animation: none !important; }
.scroll-cue {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: opacity .25s ease, visibility .25s ease;
}
.scroll-cue:hover,
.scroll-cue:focus-visible { color: #fff; outline: none; }
.hero-scroll-track {
  position: relative;
  display: block;
  width: 1px;
  height: 46px;
  margin-top: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,.42),
    rgba(255,255,255,0)
  );
  overflow: visible;
}
.hero-scroll-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 8px rgba(201, 40, 45, .62);
  transform: translateX(-50%);
  animation: heroScrollDot 1.9s ease-in-out infinite;
}
.scroll-cue.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes heroScrollDot {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  18% { opacity: 1; }
  72% {
    transform: translate(-50%, 32px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 40px);
    opacity: 0;
  }
}
.product-series-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(229, 238, 242, .76), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFB 100%);
}
.product-series-grid {
  display: grid;
  grid-template-columns: minmax(0, .44fr) minmax(0, .56fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.product-entry-list { display: grid; gap: 14px; margin-top: 30px; }
.product-entry {
  display: grid;
  gap: 7px;
  padding: 20px 0;
  border-top: 1px solid rgba(23, 52, 63, .14);
  color: var(--ink);
}
.product-entry:last-child { border-bottom: 1px solid rgba(23, 52, 63, .14); }
.product-entry strong { font-size: 22px; line-height: 1.25; }
.product-entry span { color: var(--muted); }
.product-entry em { font-style: normal; color: var(--accent-red); font-weight: 700; transition: transform .2s ease; }
.product-entry:hover em,
.product-entry:focus-visible em { transform: translateX(5px); }
.product-entry:focus-visible { outline: 2px solid rgba(201, 40, 45, .24); outline-offset: 5px; }
.product-series-visual {
  position: relative;
  min-height: clamp(430px, 42vw, 620px);
  isolation: isolate;
}
.product-series-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% 11% 12%;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(238,245,247,.86));
  box-shadow: 0 24px 72px rgba(7, 22, 27, .08);
}
.series-product {
  position: absolute;
  display: block;
  transition: transform .22s ease;
}
.series-product img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.series-product-acc { width: min(78%, 610px); left: 0; bottom: 9%; z-index: 2; }
.series-product-tecno { width: min(35%, 250px); right: 1%; top: 11%; z-index: 3; }
.series-product:hover,
.series-product:focus-visible { transform: translateY(-4px); outline: none; }
.product-overview-section { background: linear-gradient(180deg, #FFFFFF 0%, #F6FAFB 100%); }
.products-hero {
  min-height: clamp(280px, 30vw, 380px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 52px) 28px 72px;
  background:
    linear-gradient(90deg, rgba(8, 27, 34, .62) 0%, rgba(8, 27, 34, .30) 48%, rgba(248, 250, 251, .24) 100%),
    url("../assets/images/products/products-page-background.webp") center / cover no-repeat;
}
.products-hero-inner { width: 100%; }
.products-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.08;
  letter-spacing: -.02em;
  text-shadow: 0 12px 28px rgba(7, 22, 27, .22);
}
.product-page .product-overview-section {
  background: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);
}
.product-cards-section {
  padding-top: clamp(56px, 6vw, 84px);
}
.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.product-overview-card {
  display: grid;
  grid-template-columns: minmax(0, .54fr) minmax(0, .46fr);
  gap: 24px;
  align-items: center;
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(216, 224, 226, .9);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(7,22,27,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-overview-card:hover,
.product-overview-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(23, 52, 63, .22);
  box-shadow: 0 24px 62px rgba(7,22,27,.10);
  outline: none;
}
.overview-image { display: grid; place-items: center; min-height: 260px; }
.overview-image img { max-width: 100%; max-height: 310px; object-fit: contain; }
.overview-image-single img { max-height: 330px; }
.overview-copy h2 { margin: 8px 0 12px; font-size: clamp(26px, 2.8vw, 36px); color: var(--ink); }
.overview-copy p { color: var(--muted); line-height: 1.7; }
.overview-copy span { display: inline-flex; margin-top: 14px; color: var(--accent-red); font-weight: 700; }
#product-acc,
#product-tecno,
#product-materials {
  scroll-margin-top: calc(var(--nav-h) + 28px);
}
.product-overview-static { margin-top: 44px; }
.product-static-card {
  cursor: default;
}
.product-static-card:hover,
.product-static-card:focus-visible {
  transform: none;
  border-color: rgba(216, 224, 226, .9);
  box-shadow: 0 18px 50px rgba(7,22,27,.07);
  outline: none;
}
.product-materials-entry {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 48px);
}
.product-materials-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #173844;
  border-radius: 10px;
  background: #173844;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(20, 48, 58, .16);
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.product-materials-link span {
  transition: transform .22s ease;
}
.product-materials-link:hover,
.product-materials-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 18px 38px rgba(201, 40, 45, .18);
  outline: none;
}
.product-materials-link:hover span,
.product-materials-link:focus-visible span {
  transform: translateX(3px);
}
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.product-center-card {
  display: grid;
  grid-template-rows: 280px minmax(142px, auto) 72px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 224, 226, .92);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(7, 22, 27, .055);
  cursor: default;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.product-center-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 52, 63, .18);
  box-shadow: 0 16px 40px rgba(7, 22, 27, .075);
}
.product-card-media {
  display: grid;
  place-items: center;
  padding: 28px 28px 22px;
  border-bottom: 1px solid rgba(216, 224, 226, .76);
}
.product-card-media img {
  display: block;
  max-width: 78%;
  max-height: 238px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.product-card-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 26px 26px 18px;
  text-align: center;
}
.product-card-copy h2 {
  margin: 0;
  color: #173844;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.24;
  font-weight: 750;
}
.product-card-copy p {
  margin: 0;
  color: #4D6065;
  font-size: 16px;
  line-height: 1.5;
}
.product-card-copy small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.product-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px 24px;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 46px;
  padding: 0 24px;
  border: 1px solid #173844;
  border-radius: 12px;
  background: #173844;
  color: #fff;
  font-size: 16px;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(20, 48, 58, .10);
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.product-card-link:hover,
.product-card-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 12px 24px rgba(201, 40, 45, .16);
  outline: none;
}
.product-card-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(23, 52, 63, .16);
  border-radius: 12px;
  background: rgba(247, 250, 251, .88);
  color: rgba(23, 52, 63, .46);
  font-size: 16px;
  font-weight: 700;
  cursor: default;
}
.product-center-card-pending {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
}

.product-expansion-visual {
  position: relative;
  width: min(78%, 250px);
  aspect-ratio: 1.16;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 30%, rgba(34, 142, 128, .18) 0 9px, transparent 10px),
    radial-gradient(circle at 78% 26%, rgba(57, 91, 104, .16) 0 12px, transparent 13px),
    radial-gradient(circle at 68% 76%, rgba(34, 142, 128, .14) 0 10px, transparent 11px),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(237, 245, 247, .92) 54%, rgba(221, 234, 238, .86));
  box-shadow:
    inset 0 0 0 1px rgba(23, 52, 63, .06),
    0 18px 42px rgba(7, 22, 27, .075);
}

.product-expansion-visual::before {
  content: "";
  position: absolute;
  inset: 18% 12% 16%;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(216, 230, 235, .36)),
    radial-gradient(circle at 24% 34%, rgba(23, 52, 63, .12) 0 5px, transparent 6px),
    radial-gradient(circle at 52% 58%, rgba(34, 142, 128, .16) 0 6px, transparent 7px),
    radial-gradient(circle at 76% 42%, rgba(23, 52, 63, .10) 0 5px, transparent 6px);
  box-shadow: inset 0 0 0 1px rgba(23, 52, 63, .045);
  transform: rotate(-8deg);
}

.product-expansion-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .42) 42%, transparent 70%),
    radial-gradient(circle at 50% 115%, rgba(34, 142, 128, .16), transparent 48%);
  pointer-events: none;
}

.product-expansion-visual span {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, .68);
  box-shadow:
    inset 0 0 0 1px rgba(23, 52, 63, .055),
    0 10px 24px rgba(20, 48, 58, .08);
}

.product-expansion-visual span:nth-child(1) {
  left: 11%;
  bottom: 17%;
  width: 36%;
  height: 26%;
  border-radius: 18px;
}

.product-expansion-visual span:nth-child(2) {
  right: 12%;
  top: 18%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  background: rgba(235, 244, 246, .74);
}

.product-expansion-visual span:nth-child(3) {
  right: 20%;
  bottom: 18%;
  width: 30%;
  height: 18%;
  border-radius: 999px;
  background: rgba(226, 239, 242, .76);
}

.product-card-copy-empty {
  min-height: 0;
  padding-block: 0;
}

.product-card-status-coming {
  appearance: none;
  border-color: rgba(23, 52, 63, .28);
  background: #173844;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  opacity: 1;
}

.product-card-status-coming:disabled {
  opacity: 1;
}
.product-detail-section { min-height: auto; }
.compact-page-hero { min-height: 430px; height: 50vh; }
.overview-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.overview-link-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(216, 224, 226, .9);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(7,22,27,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.overview-link-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-red);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
}
.overview-link-card h3 { margin: 0 0 12px; font-size: 24px; color: var(--ink); }
.overview-link-card p { color: var(--muted); line-height: 1.7; }
.overview-link-card em { display: inline-flex; margin-top: 16px; color: var(--accent-red); font-style: normal; font-weight: 700; }
.overview-link-card:hover,
.overview-link-card:focus-visible { transform: translateY(-4px); border-color: rgba(23,52,63,.22); box-shadow: 0 24px 62px rgba(7,22,27,.10); outline: none; }
.content-empty .btn { margin-top: 20px; }
.about-origin-grid { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); }
.about-company-copy h2 {
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: -.02em;
}
.company-sign-panel {
  min-height: 0;
  height: auto;
  background: transparent;
}
.company-sign-panel img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
}
.site-footer {
  background: #F4F7F8;
  color: var(--ink);
  padding: 32px 28px 26px;
  border-top: 1px solid rgba(216, 224, 226, .72);
}
.site-footer p { margin: 0; color: var(--muted); }
.footer-inner { justify-content: space-between; align-items: center; }
.footer-links { display: none; }
.footer-links a { color: var(--ink); }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--accent-red); text-decoration-color: rgba(201,40,45,.8); outline: none; }
.footer-logo { filter: none; }
.footer-consult-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(26px, 3vw, 42px);
}
.footer-consult {
  max-width: 420px;
  display: grid;
  gap: 10px;
  color: var(--ink);
}
.footer-consult h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}
.footer-consult p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.7;
}
.footer-consult-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 40, 50, .26);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.footer-consult-link:hover,
.footer-consult-link:focus-visible {
  color: var(--accent-red);
  border-color: rgba(201, 40, 45, .78);
  outline: none;
}
.footer-qr-grid {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.footer-qr-item {
  width: 132px;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}
.footer-qr-item img {
  width: 96px;
  height: 96px;
  display: block;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(187, 201, 206, .76);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
}
.footer-qr-item figcaption {
  display: grid;
  gap: 3px;
}
.footer-qr-item strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}
.footer-qr-item span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .product-overview-grid,
  .product-overview-card,
  .product-series-grid,
  .about-origin-grid { grid-template-columns: 1fr; }
  .product-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .overview-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-series-visual { min-height: 520px; }
}
@media (max-width: 768px) {
  .about-vision-section {
    padding: clamp(68px, 16vw, 96px) 0;
  }

  .about-vision-section h2 {
    margin-bottom: 20px;
    font-size: clamp(32px, 8.5vw, 42px);
  }

  .about-vision-section p {
    font-size: 16px;
    line-height: 1.82;
  }

  .nav-item { display: grid; grid-template-columns: minmax(0, 1fr) 34px; width: 100%; border-bottom: 1px solid rgba(216,224,226,.72); }
  .nav-primary-link { min-height: 48px; padding: 0; }
  .submenu-toggle { align-self: center; justify-self: end; width: 32px; height: 32px; }
  .nav-submenu { position: static; grid-column: 1 / -1; min-width: 0; width: 100%; max-height: 0; padding: 0; border: 0; box-shadow: none; background: transparent; opacity: 1; transform: none; overflow: hidden; pointer-events: none; transition: max-height .22s ease; }
  .nav-item.is-open .nav-submenu { max-height: 240px; padding: 0 0 10px; pointer-events: auto; }
  .nav-submenu a { padding: 10px 12px; background: rgba(255,255,255,.62); }
  .scroll-cue { display: inline-flex; bottom: 82px; font-size: 10px; }
  .product-series-grid { gap: 28px; }
  .product-series-visual { min-height: 380px; }
  .series-product-acc { width: 86%; left: -4%; bottom: 8%; }
  .series-product-tecno { width: 34%; right: 0; top: 8%; }
  .products-hero {
    min-height: 280px;
    padding: calc(var(--nav-h) + 42px) 22px 56px;
  }
  .products-hero h1 { font-size: 40px; }
  .product-overview-card { grid-template-columns: 1fr; min-height: 0; padding: 22px; }
  .product-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }
  .product-center-card {
    grid-template-rows: 240px minmax(118px, auto) 66px;
    border-radius: 16px;
  }
  .product-card-media { padding: 24px 22px 18px; }
  .product-card-media img { max-height: 208px; }
  .product-card-copy { padding: 22px 22px 14px; }
  .product-card-copy h2 { font-size: 24px; }
  .product-card-action { padding: 0 22px 22px; }
  .overview-link-grid { grid-template-columns: 1fr; }
  .compact-page-hero { min-height: 360px; height: 46vh; }
  .about-company-copy h2 { font-size: 32px; }
  .site-footer { padding: 28px 22px 24px; }
  .footer-inner { align-items: flex-start; gap: 28px; }
  .footer-consult-group {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer-consult { max-width: 100%; }
  .footer-qr-grid { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-dot { animation: none; opacity: 1; transform: translate(-50%, 18px); }
}
/* Current-page correction pass: stable product dropdown, simplified products page, clean company sign */
.nav-submenu { top: 100%; }
.nav-item.has-submenu { padding-bottom: 10px; margin-bottom: -10px; }
.nav-item.has-submenu .nav-submenu { margin-top: 0; }
.product-overview-simple { padding-top: calc(var(--nav-h) + 84px); }
.product-overview-simple .section-head h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -.02em;
}
.company-sign-panel::after { display: none; }
.company-sign-panel img { opacity: 1; }
@media (max-width: 768px) {
  .nav-item.has-submenu { padding-bottom: 0; margin-bottom: 0; }
  .product-overview-simple { padding-top: calc(var(--nav-h) + 48px); }
  .product-overview-simple .section-head h1 { font-size: 36px; }
}

/* ACC quality metrics and report */
.key-quality-metrics {
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(23, 52, 63, .14);
}
.key-quality-metrics h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(23, 52, 63, .12);
  border-bottom: 1px solid rgba(23, 52, 63, .12);
}
.metric-grid div {
  display: grid;
  gap: 6px;
  padding: 16px 18px 16px 0;
  border-top: 1px solid rgba(23, 52, 63, .08);
}
.metric-grid div:nth-child(-n+2) { border-top: 0; }
.metric-grid dt {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
}
.metric-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid div:nth-child(n) { border-left: 0; border-top: 1px solid rgba(23, 52, 63, .10); }
  .metric-grid div:first-child { border-top: 0; }
}
/* Company journal horizontal stream */
.company-journal-section {
  background: linear-gradient(180deg, #FAFBFA 0%, #F2F7F8 100%);
  padding-top: 74px;
  padding-bottom: 86px;
  overflow: visible;
}
.company-journal-section[hidden] {
  display: none !important;
}
.company-journal-inner {
  max-width: 1180px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.journal-heading {
  display: none;
}
.journal-wall {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 48px;
  align-items: start;
  overflow: visible;
}
.journal-wall::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: 120px;
  align-self: start;
  padding-top: 46px;
  color: var(--ink);
  background: linear-gradient(var(--accent-red), var(--accent-red)) left 28px / 42px 2px no-repeat;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  z-index: 1;
}
.journal-grid {
  display: grid;
  grid-column: 1;
  grid-template-columns: 1fr;
  gap: 46px;
}
.journal-entry {
  position: relative;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  width: 100%;
  min-height: 198px;
  padding: 26px 32px;
  color: inherit;
  border: 0;
  border-bottom: 1px solid rgba(190, 207, 213, .48);
  border-radius: 14px;
  box-sizing: border-box;
  background: transparent;
  box-shadow: none;
  transition: background .22s ease, transform .22s ease, border-color .22s ease;
}
.journal-wall > .journal-entry {
  grid-column: 1;
  border-top: 1px solid rgba(190, 207, 213, .42);
}
.journal-entry::before {
  content: none;
  display: none;
}
.journal-entry:hover,
.journal-entry:focus-visible {
  background: linear-gradient(90deg, #228E80, #2A9A8C);
  border-color: rgba(255, 255, 255, .22);
  transform: translateY(-1px);
  outline: none;
}
.journal-entry:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .42);
}
.journal-entry:hover::before,
.journal-entry:focus-visible::before {
  content: none;
  display: none;
}
.journal-cover {
  width: 100%;
  height: 190px;
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #EFF5F6;
}
.journal-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .32s ease;
}
.journal-entry:hover .journal-cover img,
.journal-entry:focus-visible .journal-cover img {
  transform: translateY(-2px) scale(1.02);
}
.journal-copy {
  min-width: 0;
  padding-right: 12px;
}
.journal-meta {
  margin-bottom: 10px;
  color: #7F969D;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .03em;
  transition: color .22s ease;
}
.journal-meta time {
  color: #7F969D;
  white-space: nowrap;
  transition: color .22s ease;
}
.journal-entry h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.15vw, 30px);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: transform .22s ease, color .22s ease;
}
.journal-entry p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .22s ease;
}
.journal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 0;
  color: var(--ink);
  font-weight: 700;
  transition: color .22s ease;
}
.journal-link .arrow {
  display: inline-block;
  color: #C4302B;
  transition: transform .22s ease, color .22s ease;
}
.journal-entry:hover .journal-meta,
.journal-entry:focus-visible .journal-meta,
.journal-entry:hover .journal-meta time,
.journal-entry:focus-visible .journal-meta time {
  color: rgba(255, 255, 255, .78);
}
.journal-entry:hover h3,
.journal-entry:focus-visible h3 {
  color: rgba(255, 255, 255, .98);
  transform: translateX(4px);
}
.journal-entry:hover p,
.journal-entry:focus-visible p {
  color: rgba(255, 255, 255, .84);
}
.journal-entry:hover .journal-link,
.journal-entry:focus-visible .journal-link {
  color: #FFFFFF;
}
.journal-entry:hover .journal-link .arrow,
.journal-entry:focus-visible .journal-link .arrow {
  color: #FFFFFF;
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .journal-wall {
    grid-template-columns: 1fr;
  }
  .journal-wall::after {
    display: none;
  }
  .journal-entry {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    padding: 24px 12px;
  }
  .journal-cover {
    height: 172px;
  }
  .journal-entry h3 {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .company-journal-section {
    padding-top: 58px;
    padding-bottom: 66px;
  }
  .journal-wall,
  .journal-grid {
    gap: 46px;
  }
  .journal-entry {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 26px 0;
  }
  .journal-entry::before {
    content: none;
    display: none;
  }
  .journal-cover {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .journal-copy {
    padding-right: 0;
  }
  .journal-entry h3 {
    font-size: 23px;
  }
}

/* Company news three-item manual showcase */
.company-journal-section {
  padding-top: clamp(50px, 5.4vw, 72px);
  padding-bottom: clamp(58px, 6vw, 80px);
}
.company-news-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 340px) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 42px);
  align-items: stretch;
  width: 100%;
  max-width: 1180px;
  min-width: 0;
  overflow: hidden;
}
.company-news-heading {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 470px;
  padding: 0 34px 0 0;
  margin: 0;
  border-right: 1px solid rgba(23, 52, 63, .12);
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
}
.company-news-heading-inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  transform: none;
}
.company-news-heading h2 {
  position: static;
  margin: 0;
  padding: 0;
  color: #173844;
  font-size: clamp(36px, 2.8vw, 44px);
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: -.045em;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: clip;
  text-align: left;
  transform: none;
}
.company-news-heading h2::before {
  content: none;
  display: none;
}
.company-news-heading p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0;
  line-height: 1.6;
  letter-spacing: .04em;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  text-align: left;
  overflow: hidden;
  transform: none;
  position: static;
}
.company-news-heading p::before {
  content: "精选赛拉赫官方公众号";
  display: inline-block;
  max-width: 100%;
  color: inherit;
  font-size: 15px;
  line-height: 1.6;
  white-space: nowrap;
}
.company-news-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.company-news-list {
  --company-news-preview-height: 184px;
  --company-news-preview-gap: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.company-news-side {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.company-news-viewport {
  position: relative;
  width: 100%;
  height: calc(var(--company-news-preview-height) * 2 + var(--company-news-preview-gap));
  min-width: 0;
  overflow: hidden;
}
.company-news-track {
  display: grid;
  gap: var(--company-news-preview-gap);
  width: 100%;
  min-width: 0;
  will-change: auto;
  transition: transform 480ms cubic-bezier(.22, .61, .36, 1);
}
.company-news-card {
  appearance: none;
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid rgba(190, 207, 213, .68);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(7, 22, 27, .045);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, opacity .24s ease;
}
.company-news-card::before,
.company-news-card::after,
.company-news-card:hover::before,
.company-news-card:focus-visible::before,
.company-news-card:hover::after,
.company-news-card:focus-visible::after {
  content: none;
  display: none;
}
.company-news-card:focus-visible { outline: none; }
.company-news-cover {
  position: relative;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: #F8FAFB;
}
.company-news-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  cursor: pointer;
}
.company-news-card.is-card-shaking {
  animation: companyNewsCardShake 320ms ease;
}
.company-news-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
}
.company-news-meta {
  margin-bottom: 8px;
  color: #7F969D;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .03em;
}
.company-news-meta time {
  color: inherit;
  white-space: nowrap;
}
.company-news-card h3 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--ink);
  line-height: 1.32;
  display: block;
  overflow: visible;
  writing-mode: horizontal-tb;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-overflow: clip;
}
.company-news-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  display: block;
  overflow: visible;
}
.company-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}
.company-news-link .arrow {
  display: inline-block;
  color: #C4302B;
  transition: transform .22s ease;
}
.company-news-card-main {
  grid-template-columns: 46% 54%;
  height: 400px;
  background: rgba(255, 255, 255, .94);
  border-color: rgba(23, 52, 63, .18);
  box-shadow: 0 12px 28px rgba(7, 22, 27, .06);
}
.company-news-card-main .company-news-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 38px;
  overflow: visible;
}
.company-news-card-main .company-news-cover {
  width: 100%;
  height: 100%;
  padding: 12px;
}
.company-news-card-main .company-news-cover img {
  object-fit: contain;
  object-position: center;
}
.company-news-card-main .company-news-meta,
.company-news-card-main .company-news-meta time {
  color: #7F969D;
  font-size: 14px;
}
.company-news-card-main h3 {
  color: var(--ink);
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: -.02em;
  display: block;
  width: 100%;
  max-height: none;
  overflow: visible;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-overflow: clip;
}
.company-news-card-main p {
  display: block;
  margin-top: 16px;
  overflow: visible;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.company-news-card-main .company-news-link {
  align-self: flex-start;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 20px;
  border: 1px solid #173844;
  border-radius: 10px;
  background: transparent;
  color: #173844;
  font-size: 15px;
  line-height: 1;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}
.company-news-card-main:hover .company-news-link,
.company-news-card-main:focus-visible .company-news-link {
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #FFFFFF;
}
.company-news-card-main:hover .company-news-link .arrow,
.company-news-card-main:focus-visible .company-news-link .arrow {
  color: #FFFFFF;
  transform: translateX(3px);
}
.company-news-card-main:hover,
.company-news-card-main:focus-visible {
  transform: none;
  border-color: #228E80;
  box-shadow: 0 12px 28px rgba(7, 22, 27, .06);
}
.company-news-card-preview {
  grid-template-columns: 44% 56%;
  height: var(--company-news-preview-height);
  opacity: .72;
  cursor: default;
  box-shadow: 0 10px 24px rgba(7, 22, 27, .035);
}
.company-news-card-preview .company-news-cover {
  height: 100%;
  padding: 8px;
}
.company-news-card-preview .company-news-cover img {
  object-fit: contain;
  object-position: center;
}
.company-news-card-preview .company-news-copy {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px 18px;
}
.company-news-card-preview h3 {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.38;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.company-news-card-preview p {
  display: none;
}
.company-news-card-preview .company-news-link {
  min-height: 34px;
  width: max-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 0 12px;
  border: 1px solid #173844;
  border-radius: 8px;
  background: transparent;
  color: #173844;
  font-size: 13px;
  line-height: 1;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}
.company-news-card-preview .company-news-link .arrow {
  color: inherit;
}
.company-news-card-preview .company-news-link:hover,
.company-news-card-preview .company-news-link:focus-visible {
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #FFFFFF;
  outline: none;
}
.company-news-card-preview .company-news-link:hover .arrow,
.company-news-card-preview .company-news-link:focus-visible .arrow {
  color: #FFFFFF;
  transform: translateX(3px);
}
.company-news-card-preview:hover,
.company-news-card-preview:focus-visible {
  opacity: .72;
  transform: none;
  border-color: rgba(34, 142, 128, .72);
  box-shadow: 0 12px 28px rgba(7, 22, 27, .045);
}
.company-news-controls {
  display: grid;
  gap: 12px;
  justify-items: center;
  align-content: center;
  width: 48px;
  min-width: 0;
}
.company-news-control {
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(190, 207, 213, .82);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background-color .2s ease, opacity .2s ease;
}
.company-news-control:hover,
.company-news-control:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: #FFFFFF;
  outline: none;
}
.company-news-control:disabled {
  opacity: .34;
  cursor: default;
  pointer-events: none;
}
.company-news-stage.is-animating .company-news-control {
  pointer-events: none;
}
.company-news-stage.is-animating [data-news-preview] {
  pointer-events: none;
}
.company-news-stage.is-animating .company-news-track {
  will-change: transform;
}
.company-news-stage.is-animating .company-news-card-preview,
.company-news-stage.is-animating .company-news-card-preview:hover,
.company-news-stage.is-animating .company-news-card-preview:focus-visible {
  transform: none;
  opacity: .72;
  border-color: rgba(190, 207, 213, .68);
  box-shadow: 0 10px 24px rgba(7, 22, 27, .035);
  transition: none;
}
@keyframes companyNewsCardShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}
@media (max-width: 1240px) {
  .company-news-showcase {
    grid-template-columns: 1fr;
  }
  .company-news-heading {
    min-height: 0;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 52, 63, .12);
  }
}
@media (max-width: 900px) {
  .company-news-showcase {
    grid-template-columns: 1fr;
  }
  .company-news-stage {
    grid-template-columns: 1fr;
  }
  .company-news-list {
    grid-template-columns: 1fr;
  }
  .company-news-controls {
    grid-template-columns: repeat(2, 44px);
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .company-news-card-main {
    grid-template-columns: 1fr;
    height: auto;
  }
  .company-news-card-main .company-news-cover {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .company-news-card-main .company-news-copy {
    padding: 20px;
  }
  .company-news-card-main h3 {
    font-size: 24px;
  }
  .company-news-list {
    --company-news-preview-height: 132px;
  }
  .company-news-card-preview {
    grid-template-columns: 124px minmax(0, 1fr);
    height: var(--company-news-preview-height);
  }
  .company-news-card-preview .company-news-cover {
    height: 100%;
  }
  .company-news-card-preview .company-news-copy {
    padding: 14px 16px;
  }
  .company-news-card-preview h3 {
    font-size: 18px;
  }
  .company-news-card-preview p,
  .company-news-card-preview .company-news-link {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .company-news-card,
  .company-news-control,
  .company-news-link .arrow {
    transition: none;
  }
}

/* Company news right-down stacked cards */
.company-news-stage {
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: end;
}
.company-news-list {
  --company-news-stack-height: 400px;
  --company-news-stack-offset: 18px;
  display: block;
  position: relative;
  height: calc(var(--company-news-stack-height) + var(--company-news-stack-offset) * 3 + 2px);
  overflow: visible;
}
.company-news-card-stack {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 46% 54%;
  width: calc(100% - (var(--company-news-stack-offset) * 3 + 12px));
  height: var(--company-news-stack-height);
  background: #FFFFFF;
  border-color: rgba(23, 52, 63, .18);
  box-shadow: 0 12px 28px rgba(7, 22, 27, .06);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(.22, .61, .36, 1), opacity 520ms cubic-bezier(.22, .61, .36, 1);
  will-change: auto;
  pointer-events: none;
}
.company-news-card-stack[data-stack-layer="0"] {
  z-index: 4;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}
.company-news-card-stack[data-stack-layer="1"] {
  z-index: 3;
  opacity: 1;
  transform: translate3d(18px, 18px, 0) scale(.975);
}
.company-news-card-stack[data-stack-layer="2"] {
  z-index: 2;
  opacity: 1;
  transform: translate3d(36px, 36px, 0) scale(.95);
}
.company-news-card-stack[data-stack-layer="3"] {
  z-index: 1;
  opacity: 1;
  transform: translate3d(54px, 54px, 0) scale(.925);
}
.company-news-card-stack.is-exiting-next {
  z-index: 5;
  opacity: 0;
  transform: translate3d(110px, 90px, 0) scale(.96);
  pointer-events: none;
}
.company-news-card-stack.is-restacking {
  transition: none !important;
}
.company-news-card-stack .company-news-cover {
  width: 100%;
  height: 100%;
  padding: 12px;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.company-news-card-stack .company-news-cover img {
  object-fit: contain;
  object-position: center;
}
.company-news-card-stack .company-news-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 38px;
  overflow: visible;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.company-news-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #789098;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
}
.company-news-card-stack h3 {
  color: var(--ink);
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: -.02em;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  max-height: none;
  overflow: visible;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  text-overflow: clip;
}
.company-news-card-stack p {
  display: block;
  margin-top: 12px;
  overflow: visible;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.company-news-card-stack .company-news-link {
  align-self: flex-start;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 20px;
  border: 1px solid #173844;
  border-radius: 10px;
  background: transparent;
  color: #173844;
  font-size: 15px;
  line-height: 1;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}
.company-news-card-stack[data-stack-layer="1"] .company-news-cover,
.company-news-card-stack[data-stack-layer="1"] .company-news-copy,
.company-news-card-stack[data-stack-layer="2"] .company-news-cover,
.company-news-card-stack[data-stack-layer="2"] .company-news-copy,
.company-news-card-stack[data-stack-layer="3"] .company-news-cover,
.company-news-card-stack[data-stack-layer="3"] .company-news-copy {
  visibility: hidden;
  opacity: 0;
}
.company-news-card-stack.is-exiting-next .company-news-cover,
.company-news-card-stack.is-exiting-next .company-news-copy,
.company-news-card-stack[data-stack-layer="0"] .company-news-cover,
.company-news-card-stack[data-stack-layer="0"] .company-news-copy {
  visibility: visible;
  opacity: 1;
}
.company-news-card-stack[data-stack-layer="0"]:hover,
.company-news-card-stack[data-stack-layer="0"]:focus-within {
  border-color: #228E80;
  box-shadow: 0 12px 28px rgba(7, 22, 27, .06);
}
.company-news-card-stack[data-stack-layer="0"] .company-news-link:hover,
.company-news-card-stack[data-stack-layer="0"] .company-news-link:focus-visible {
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #FFFFFF;
  outline: none;
}
.company-news-card-stack[data-stack-layer="0"] .company-news-link:hover .arrow,
.company-news-card-stack[data-stack-layer="0"] .company-news-link:focus-visible .arrow {
  color: #FFFFFF;
  transform: translateX(3px);
}
.company-news-card-stack.is-stack-back {
  box-shadow: 0 8px 20px rgba(7, 22, 27, .035);
}
.company-news-card-stack.is-card-shaking {
  animation: companyNewsCardShake 300ms ease;
}
.company-news-card-stack.is-content-entering .company-news-status,
.company-news-card-stack.is-content-entering h3,
.company-news-card-stack.is-content-entering p,
.company-news-card-stack.is-content-entering .company-news-link {
  animation: companyNewsContentEnter 260ms cubic-bezier(.22, .61, .36, 1);
}
.company-news-card-stack.is-content-entering .company-news-cover img {
  animation: companyNewsCoverEnter 260ms cubic-bezier(.22, .61, .36, 1);
}
.company-news-stage.is-animating .company-news-card-stack {
  pointer-events: none;
  will-change: transform, opacity;
}
.company-news-controls {
  align-self: end;
  margin-bottom: 16px;
}
.company-news-progress {
  grid-column: 1 / 2;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  min-height: 4px;
  pointer-events: none;
}
.company-news-progress span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: rgba(190, 207, 213, .82);
  transition: width 220ms ease, background-color 220ms ease, opacity 220ms ease;
}
.company-news-progress span.is-active {
  width: 34px;
  background: var(--accent-red);
}
@keyframes companyNewsContentEnter {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes companyNewsCoverEnter {
  0% { opacity: .82; }
  100% { opacity: 1; }
}

@media (max-width: 768px) {
  .company-news-heading {
    justify-content: flex-start;
    padding-right: 0;
  }
  .company-news-heading h2 {
    font-size: clamp(30px, 8vw, 36px);
  }
  .company-news-stage {
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: hidden;
  }
  .company-news-list {
    --company-news-stack-height: 610px;
    --company-news-stack-offset: 10px;
    height: calc(var(--company-news-stack-height) + var(--company-news-stack-offset) * 3 + 2px);
    max-width: 100%;
  }
  .company-news-card-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    width: calc(100% - (var(--company-news-stack-offset) * 3 + 6px));
    height: var(--company-news-stack-height);
  }
  .company-news-card-stack[data-stack-layer="1"] {
    transform: translate3d(10px, 10px, 0) scale(.985);
  }
  .company-news-card-stack[data-stack-layer="2"] {
    transform: translate3d(20px, 20px, 0) scale(.97);
  }
  .company-news-card-stack[data-stack-layer="3"] {
    transform: translate3d(30px, 30px, 0) scale(.955);
  }
  .company-news-card-stack.is-exiting-next {
    transform: translate3d(54px, 46px, 0) scale(.96);
  }
  .company-news-card-stack .company-news-cover {
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 10px;
  }
  .company-news-card-stack .company-news-copy {
    justify-content: start;
    padding: 20px;
  }
  .company-news-card-stack h3 {
    font-size: clamp(22px, 6vw, 24px);
  }
  .company-news-status {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .company-news-controls {
    grid-template-columns: repeat(2, 44px);
    justify-content: center;
    align-self: center;
    margin-bottom: 0;
  }
  .company-news-progress {
    grid-column: 1;
    justify-content: center;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-news-card-stack {
    transition: none;
  }
  .company-news-card-stack.is-card-shaking {
    animation: none;
  }
  .company-news-card-stack.is-content-entering .company-news-status,
  .company-news-card-stack.is-content-entering h3,
  .company-news-card-stack.is-content-entering p,
  .company-news-card-stack.is-content-entering .company-news-link,
  .company-news-card-stack.is-content-entering .company-news-cover img {
    animation: none;
  }
}

/* Contact channel cards */
.contact-channel-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.contact-channel-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(190, 207, 213, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 30px rgba(7, 22, 27, .045);
}
.contact-channel-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 2px;
  height: 34px;
  background: var(--accent-red);
  opacity: .78;
}
.contact-channel-top span {
  display: block;
  margin-bottom: 7px;
  color: #7C9299;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
}
.contact-channel-top h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}
.contact-person {
  display: inline-block;
  margin-top: 8px;
  color: #C4302B;
  font-size: 15px;
}
.contact-channel-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.contact-channel-rows {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.contact-channel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(190, 207, 213, .5);
  color: var(--ink);
}
.contact-channel-row span:first-child {
  color: #7C9299;
  font-size: 13px;
}
.contact-channel-row a,
.contact-channel-row button {
  color: var(--ink);
  font: inherit;
}
.contact-channel-qrs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}
.contact-channel-qr {
  width: 116px;
  padding: 10px;
  border: 1px solid rgba(190, 207, 213, .72);
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--muted);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.contact-channel-qr:hover,
.contact-channel-qr:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(23, 52, 63, .28);
  box-shadow: 0 12px 28px rgba(7, 22, 27, .08);
  outline: none;
}
.contact-channel-qr img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}
.contact-channel-qr span {
  display: block;
  font-size: 12px;
  text-align: center;
}
.contact-channel-note {
  display: block;
  margin-top: 14px;
  color: #7C9299;
  font-style: normal;
}
@media (max-width: 768px) {
  .contact-channel-card { padding: 18px; }
  .contact-channel-qrs { gap: 10px; }
  .contact-channel-qr { width: 104px; }
}

/* Homepage hero two-slide refinement */
.hero-carousel .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 27, .76) 0%, rgba(7, 22, 27, .48) 38%, rgba(7, 22, 27, .16) 68%, rgba(7, 22, 27, .04) 100%),
    linear-gradient(0deg, rgba(7, 22, 27, .34), transparent 48%);
}
.hero-carousel .hero-bg {
  transform: none;
  transition: transform .7s ease, opacity .9s ease;
}
.hero-carousel:hover .hero-slide.is-active .hero-bg {
  transform: scale(1.02);
}
.hero-carousel .hero-copy {
  position: relative;
  max-width: 650px;
  padding: 24px 28px 28px;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .24s ease;
}
.hero-carousel .hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(34, 142, 128, .78), rgba(42, 154, 140, .42));
  opacity: 0;
  transition: opacity .24s ease;
}
.hero-carousel .hero-copy:hover::before,
.hero-carousel .hero-copy:focus-within::before {
  opacity: 1;
}
.hero-carousel .hero-copy:hover h1,
.hero-carousel .hero-copy:focus-within h1 {
  color: #FFFFFF;
}
.hero-carousel .hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(46px, 5.4vw, 70px);
  line-height: 1.12;
  text-wrap: balance;
  transition: color .24s ease;
}
.hero-carousel .hero-copy p {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .hero-carousel .hero-copy {
    padding: 18px 16px 20px;
    max-width: 100%;
  }
  .hero-carousel .hero-copy h1 {
    font-size: 40px;
  }
  .hero-carousel .hero-copy p {
    margin-top: 20px;
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-carousel:hover .hero-slide.is-active .hero-bg {
    transform: none;
  }
}
/* Homepage hero hover correction: button-only color fill */
.hero-carousel:hover .hero-slide.is-active .hero-bg {
  transform: none !important;
}
.hero-carousel .hero-copy {
  background: transparent !important;
}
.hero-carousel .hero-copy::before,
.hero-carousel .hero-copy:hover::before,
.hero-carousel .hero-copy:focus-within::before {
  display: none !important;
  opacity: 0 !important;
}
.hero-carousel .hero-copy:hover h1,
.hero-carousel .hero-copy:focus-within h1 {
  color: #FFFFFF;
}
/* Homepage hero typography and entrance refinement */
.hero-carousel .hero-copy {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}
.hero-carousel .hero-copy::before,
.hero-carousel .hero-copy:hover::before,
.hero-carousel .hero-copy:focus-within::before {
  display: none !important;
  opacity: 0 !important;
}
.hero-carousel .hero-title,
.hero-carousel .hero-copy h1 {
  max-width: 780px;
  font-family: "PingFang SC", "Noto Sans SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(46px, 5.1vw, 68px);
  font-weight: 760;
  line-height: 1.16;
  letter-spacing: .015em;
  text-wrap: balance;
  text-shadow: 0 14px 42px rgba(0, 0, 0, .26);
}
.hero-title-source {
  max-width: 700px;
}
.hero-title-comma {
  display: inline-block;
  margin: 0 .02em 0 .01em;
  font-size: .78em;
  font-weight: 560;
  transform: translateY(-.03em);
  opacity: .92;
}
.hero-title-rest {
  display: block;
  margin-top: .04em;
}
.hero-carousel .hero-copy p {
  max-width: 590px;
  margin-top: 30px;
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 400;
  line-height: 1.86;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}
.hero-carousel .hero-slide .hero-copy h1,
.hero-carousel .hero-slide .hero-copy p {
  opacity: 0;
  transform: translateY(18px);
}
.hero-carousel .hero-slide.is-active .hero-copy h1 {
  animation: heroTextFloatIn .68s cubic-bezier(.2, .72, .22, 1) .62s both;
}
.hero-carousel .hero-slide.is-active .hero-copy p {
  animation: heroTextFloatIn .68s cubic-bezier(.2, .72, .22, 1) .86s both;
}
.hero-carousel .scroll-cue {
  opacity: 0;
  animation: heroCueFloatIn .58s ease 1.38s both;
}
.hero-carousel .hero-copy:hover h1,
.hero-carousel .hero-copy:focus-within h1 {
  color: #FFFFFF;
}
@keyframes heroTextFloatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroCueFloatIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 768px) {
  .hero-carousel .hero-title,
  .hero-carousel .hero-copy h1 {
    font-size: 40px;
    line-height: 1.18;
  }
  .hero-carousel .hero-copy p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.76;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-carousel .hero-slide .hero-copy h1,
  .hero-carousel .hero-slide .hero-copy p,
  .hero-carousel .scroll-cue {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
/* Homepage hero intro single-run control */
.hero-carousel.hero-intro-done .hero-slide .hero-copy h1,
.hero-carousel.hero-intro-done .hero-slide .hero-copy p {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.hero-carousel.hero-intro-done .scroll-cue {
  opacity: 1;
  animation: none !important;
}

/* Homepage PRODUCT SERIES Apple-like product showcase */
.home-series-showcase {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  min-height: min(920px, 100vh);
  padding: clamp(76px, 8vw, 116px) 28px clamp(72px, 7vw, 104px);
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.92), rgba(255,255,255,0) 26%),
    radial-gradient(ellipse at 50% 68%, rgba(209,224,229,.66), rgba(248,249,248,0) 44%),
    linear-gradient(180deg, #F9FBFB 0%, #EEF5F7 48%, #F8F9F8 100%);
}
.home-series-showcase::before,
.home-series-showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}
.home-series-showcase::before {
  top: 14%;
  width: min(760px, 72vw);
  height: min(760px, 72vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.72), rgba(255,255,255,0) 62%);
}
.home-series-showcase::after {
  bottom: 10%;
  width: min(760px, 72vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23,52,63,.12), transparent);
  box-shadow:
    0 -86px 80px rgba(255,255,255,.42),
    0 34px 76px rgba(7,22,27,.10);
}
.home-series-inner { position: relative; z-index: 1; }
.home-series-stage {
  position: relative;
  min-height: clamp(720px, 65vw, 860px);
  overflow: visible;
  isolation: isolate;
  perspective: 1400px;
}
.home-series-space {
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: min(720px, 78vw);
  height: min(240px, 28vw);
  border-radius: 50%;
  transform: translateX(-50%) rotateX(64deg);
  transform-origin: center;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.62) 0%, rgba(224,235,238,.26) 48%, rgba(120,145,154,.10) 68%, transparent 76%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.54), transparent);
  filter: blur(.1px);
  opacity: .9;
  z-index: 0;
}
.home-series-item {
  position: absolute;
  z-index: 2;
  overflow: visible;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  transition: filter .38s ease, opacity .38s ease, transform .38s cubic-bezier(.2,.72,.22,1);
}
.home-series-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
  pointer-events: none;
  user-select: none;
}
.home-series-acc {
  left: 39%;
  bottom: 4%;
  z-index: 3;
  width: clamp(240px, 22vw, 310px);
  transform: translate3d(-50%, 0, 18px) rotate(-2deg) scale(1.02);
}
.home-series-tecno {
  right: 18%;
  bottom: 18%;
  z-index: 2;
  width: clamp(150px, 14vw, 220px);
  transform: translate3d(0, 6px, 8px) rotate(3deg) scale(.9);
}
.home-series-showcase.is-ready .home-series-item {
  animation: productBottleIn .76s cubic-bezier(.2,.72,.22,1) both;
}
.home-series-showcase.is-ready .home-series-tecno { animation-delay: .08s; }
.home-series-showcase.is-ready .home-series-acc {
  transform: translate3d(-50%, 0, 18px) rotate(-2deg) scale(1.02);
}
.home-series-showcase.is-ready .home-series-tecno {
  transform: translate3d(0, 6px, 8px) rotate(3deg) scale(.9);
}
.home-series-stage.is-acc-active .home-series-tecno,
.home-series-stage.is-tecno-active .home-series-acc {
  filter: saturate(.82) opacity(.72);
}
.home-series-stage.is-tecno-active .home-series-acc {
  filter: saturate(.94) opacity(.86);
}
.home-series-stage.is-acc-active .home-series-acc {
  outline: none;
  transform: translate3d(-50%, 0, 18px) rotate(-2deg) scale(1.02);
}
.home-series-stage.is-tecno-active .home-series-tecno {
  outline: none;
  transform: translate3d(0, 6px, 8px) rotate(3deg) scale(.9);
}
.home-series-acc:hover,
.home-series-acc:focus-visible {
  outline: none;
  transform: translate3d(-50%, -4px, 24px) rotate(-1.5deg) scale(1.02);
}
.home-series-tecno:hover,
.home-series-tecno:focus-visible {
  outline: none;
  transform: translate3d(0, -6px, 16px) rotate(2deg) scale(.94);
}
.home-series-copy {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(22px, 4vw, 54px);
  width: min(680px, 100%);
  transform: translateX(-50%);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}
.home-series-copy .eyebrow { margin: 0; color: rgba(23,52,63,.58); }
.home-series-names {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
}
.home-series-name {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(7,22,27,.46);
  padding: 8px 13px;
  font: inherit;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: color .28s ease, background-color .28s ease, transform .28s ease;
}
.home-series-name:hover,
.home-series-name:focus-visible,
.home-series-name.is-active {
  color: var(--ink);
  background: rgba(255,255,255,.48);
  outline: none;
}
.home-series-name[data-product-target="acc"] {
  font-size: clamp(24px, 2.5vw, 36px);
}
.home-series-name[data-product-target="tecno"] {
  font-size: clamp(18px, 1.85vw, 27px);
}
.home-series-action {
  appearance: none;
  border: 1px solid rgba(23,52,63,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(7,22,27,.08);
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}
.home-series-action:hover,
.home-series-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201,40,45,.34);
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 54px rgba(7,22,27,.12);
  outline: none;
}
.home-series-action.is-pulsing { animation: productActionPulse .42s ease; }
.home-series-showcase.is-ready .home-series-names {
  animation: productTextIn .56s cubic-bezier(.2,.72,.22,1) .38s both;
}
.home-series-showcase.is-ready .home-series-action {
  animation: productTextIn .56s cubic-bezier(.2,.72,.22,1) .72s both;
}
@keyframes productBottleIn {
  0% { opacity: 0; filter: blur(6px) saturate(.92); }
  100% { opacity: 1; filter: blur(0) saturate(1); }
}
@keyframes productTextIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes productActionPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-2px) scale(1.02); }
}
@media (max-width: 768px) {
  .home-series-showcase {
    min-height: auto;
    padding: 62px 18px 72px;
  }
  .home-series-stage { min-height: 610px; }
  .home-series-space {
    bottom: 20%;
    width: 96vw;
    height: 38vw;
  }
  .home-series-acc {
    left: 42%;
    bottom: 20%;
    width: min(44vw, 180px);
    transform: translate3d(-50%, 0, 24px) rotate(-3deg) scale(1.02);
  }
  .home-series-tecno {
    right: 9%;
    bottom: 29%;
    width: min(28vw, 120px);
    transform: translate3d(0, 8px, 8px) rotate(4deg) scale(.9);
  }
  .home-series-showcase.is-ready .home-series-acc {
    transform: translate3d(-50%, 0, 24px) rotate(-3deg) scale(1.02);
  }
  .home-series-showcase.is-ready .home-series-tecno {
    transform: translate3d(0, 8px, 8px) rotate(4deg) scale(.9);
  }
  .home-series-stage.is-acc-active .home-series-acc {
    transform: translate3d(-50%, 0, 24px) rotate(-3deg) scale(1.02);
  }
  .home-series-stage.is-tecno-active .home-series-tecno {
    transform: translate3d(0, 8px, 8px) rotate(4deg) scale(.9);
  }
  .home-series-acc:hover,
  .home-series-acc:focus-visible {
    transform: translate3d(-50%, -4px, 32px) rotate(-2deg) scale(1.02);
  }
  .home-series-tecno:hover,
  .home-series-tecno:focus-visible {
    transform: translate3d(0, -7px, 18px) rotate(3deg) scale(.94);
  }
  .home-series-copy {
    bottom: 10px;
    gap: 14px;
  }
  .home-series-name {
    font-size: 20px;
    padding: 7px 10px;
  }
  .home-series-name[data-product-target="acc"] { font-size: 22px; }
  .home-series-name[data-product-target="tecno"] { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-series-item,
  .home-series-showcase.is-ready .home-series-item,
  .home-series-showcase.is-ready .home-series-names,
  .home-series-showcase.is-ready .home-series-action,
  .home-series-action.is-pulsing {
    animation: none !important;
  }
  .home-series-item,
  .home-series-names,
  .home-series-action { opacity: 1; }
  .home-series-names,
  .home-series-action { transform: none; }
}

/* PRODUCT SERIES targeted visual fix: ACC as hero product */
.home-series-showcase {
  overflow-x: clip;
  overflow-y: visible;
  min-height: auto;
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(68px, 7vw, 110px);
  background:
    radial-gradient(circle at 42% 18%, rgba(255,255,255,.92), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 33% 45%, rgba(218, 232, 237, .58), rgba(218, 232, 237, 0) 38%),
    radial-gradient(circle at 70% 42%, rgba(235, 241, 243, .72), rgba(235, 241, 243, 0) 42%),
    radial-gradient(ellipse at 50% 86%, rgba(190, 210, 217, .28), rgba(190, 210, 217, 0) 58%),
    linear-gradient(145deg, #F7FAFA 0%, #EEF5F7 48%, #F9FBFB 100%);
  color: var(--ink);
}
.home-series-showcase::before {
  top: 6%;
  width: min(900px, 74vw);
  height: min(620px, 54vw);
  background: radial-gradient(ellipse at center, rgba(255,255,255,.72), rgba(214, 230, 235, .22) 44%, rgba(214, 230, 235, 0) 72%);
}
.home-series-showcase::after {
  bottom: 7%;
  width: min(820px, 76vw);
  height: min(260px, 30vw);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.74) 0%, rgba(196, 214, 221, .24) 48%, rgba(196, 214, 221, 0) 78%);
  box-shadow: 0 38px 90px rgba(23, 52, 63, .12);
}
.home-series-stage {
  overflow: visible;
  min-height: clamp(720px, 65vw, 860px);
  padding-top: clamp(64px, 6vw, 96px);
  padding-bottom: clamp(150px, 14vw, 190px);
}
.home-series-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(54px, 7vw, 98px);
  width: min(560px, 62vw);
  height: min(360px, 42vw);
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(255,255,255,.62), rgba(207, 225, 230, .16) 46%, rgba(207, 225, 230, 0) 72%);
  pointer-events: none;
  z-index: 1;
}
.home-series-space {
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.82) 0%, rgba(202, 219, 225, .32) 48%, rgba(150, 174, 184, .12) 72%, transparent 84%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  opacity: .9;
}
.home-series-item {
  overflow: visible;
  opacity: 1;
  max-width: none;
  transition:
    transform .7s cubic-bezier(.2,.8,.2,1),
    filter .7s ease,
    opacity .7s ease;
}
.home-series-acc::before {
  content: none;
  display: none;
}
.home-series-item img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  max-width: none;
  filter: none;
}
.home-series-acc img {
  filter: none;
}
.home-series-acc {
  left: 41%;
  bottom: 27%;
  z-index: 5;
  width: clamp(180px, 15vw, 235px);
  --series-rest-transform: translate3d(-50%, 0, 18px) rotate(-4deg) scale(1);
  --series-feedback-transform: translate3d(-50%, -10px, 32px) rotate(-2.7deg) scale(1.045);
  transform: var(--series-rest-transform);
}
.home-series-tecno {
  right: 24%;
  bottom: 31%;
  z-index: 3;
  width: clamp(112px, 9.2vw, 162px);
  --series-rest-transform: translate3d(0, 6px, 8px) rotate(5deg) scale(1);
  --series-feedback-transform: translate3d(0, -8px, 24px) rotate(3.8deg) scale(1.045);
  transform: var(--series-rest-transform);
}
.home-series-showcase.is-ready .home-series-acc {
  transform: var(--series-rest-transform);
}
.home-series-showcase.is-ready .home-series-tecno {
  transform: var(--series-rest-transform);
}
.home-series-item.is-active {
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
}
.home-series-stage.is-acc-active .home-series-tecno {
  opacity: .64;
  filter: saturate(.82) contrast(.92) blur(.15px);
}
.home-series-stage.is-tecno-active .home-series-tecno {
  opacity: 1;
  filter: saturate(1.03) contrast(1.02);
}
.home-series-stage.is-tecno-active .home-series-acc {
  opacity: .84;
  filter: saturate(.96) contrast(.99);
}
.home-series-stage.is-acc-active .home-series-acc {
  transform: var(--series-rest-transform);
}
.home-series-stage.is-tecno-active .home-series-tecno {
  transform: var(--series-rest-transform);
}
.home-series-acc:hover,
.home-series-acc:focus-visible {
  transform: var(--series-feedback-transform);
}
.home-series-tecno:hover,
.home-series-tecno:focus-visible {
  transform: var(--series-feedback-transform);
}
.home-series-stage.is-acc-hover .home-series-acc,
.home-series-stage.is-tecno-hover .home-series-tecno {
  opacity: 1;
  transform: var(--series-feedback-transform);
  filter: saturate(1.1) contrast(1.07) drop-shadow(0 20px 30px rgba(23, 52, 63, .14));
}
.home-series-stage.is-acc-hover .home-series-tecno,
.home-series-stage.is-tecno-hover .home-series-acc {
  opacity: .62;
  transform: var(--series-rest-transform);
  filter: saturate(.76) contrast(.88) blur(.2px);
}
.home-series-item.is-activating {
  animation: productActiveFeedback .42s cubic-bezier(.2,.72,.22,1) both;
}
@keyframes productActiveFeedback {
  0%, 100% { transform: var(--series-rest-transform); }
  46% { transform: var(--series-feedback-transform); }
}
.home-series-copy {
  position: absolute;
  z-index: 8;
  left: 50%;
  width: min(720px, 100%);
  bottom: clamp(22px, 3vw, 42px);
  transform: translateX(-50%);
  pointer-events: auto;
  color: var(--ink);
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.home-series-names {
  position: relative;
  z-index: 9;
  opacity: 1;
  transform: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.home-series-name {
  color: rgba(23, 52, 63, .58);
  background: transparent;
  text-shadow: 0 8px 24px rgba(255,255,255,.72);
}
.home-series-name:hover,
.home-series-name:focus-visible {
  color: var(--accent-red);
  opacity: 1;
  background: transparent;
}
.home-series-name.is-active {
  color: rgba(23, 52, 63, .68);
  opacity: 1;
  background: transparent;
}
.home-series-stage.is-acc-hover .home-series-name[data-product-target="acc"],
.home-series-stage.is-tecno-hover .home-series-name[data-product-target="tecno"] {
  color: var(--accent-red);
  opacity: 1;
}
.home-series-stage.is-acc-hover .home-series-name[data-product-target="tecno"],
.home-series-stage.is-tecno-hover .home-series-name[data-product-target="acc"] {
  color: rgba(23, 52, 63, .34);
  opacity: .72;
}
.home-series-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  min-width: 140px;
  height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 16px;
  opacity: 1;
  transform: none;
  overflow: hidden;
  background: #173844;
  color: #FFFFFF;
  border-color: #173844;
  box-shadow: 0 8px 18px rgba(20, 48, 58, .10);
  transition:
    transform .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    color .25s ease;
}
.home-series-action::before,
.home-series-action::after {
  content: none;
  display: none;
}
.home-series-action:hover,
.home-series-action:focus-visible {
  transform: translateY(-2px);
  background: #C92732;
  color: #FFFFFF;
  border-color: #C92732;
  box-shadow: 0 12px 24px rgba(201, 40, 45, .16);
  outline: none;
}
.home-series-copy::before,
.home-series-names::before,
.home-series-name::before {
  content: none;
  display: none;
}
.home-series-showcase:not(.is-ready) .home-series-item {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.94);
}
.home-series-showcase:not(.is-ready) .home-series-names {
  opacity: 0;
  transform: translateY(16px);
}
.home-series-showcase:not(.is-ready) .home-series-action {
  opacity: 0;
  transform: translateY(14px);
}
@media (max-width: 768px) {
  .home-series-showcase {
    overflow-x: clip;
    overflow-y: visible;
    padding: 48px 18px 66px;
  }
  .home-series-stage {
    min-height: 590px;
    padding-top: 52px;
    padding-bottom: 138px;
  }
  .home-series-stage::before {
    top: 58px;
    width: 78vw;
    height: 44vw;
  }
  .home-series-acc {
    left: 40%;
    bottom: 33%;
    width: min(39vw, 172px);
    --series-rest-transform: translate3d(-50%, 0, 24px) rotate(-4.5deg) scale(1);
    --series-feedback-transform: translate3d(-50%, -9px, 38px) rotate(-3.1deg) scale(1.04);
    transform: var(--series-rest-transform);
  }
  .home-series-tecno {
    right: 8%;
    bottom: 36%;
    width: min(24.5vw, 108px);
    --series-rest-transform: translate3d(0, 8px, 8px) rotate(5.5deg) scale(1);
    --series-feedback-transform: translate3d(0, -8px, 24px) rotate(4.1deg) scale(1.04);
    transform: var(--series-rest-transform);
  }
  .home-series-showcase.is-ready .home-series-acc {
    transform: var(--series-rest-transform);
  }
  .home-series-showcase.is-ready .home-series-tecno {
    transform: var(--series-rest-transform);
  }
  .home-series-stage.is-acc-active .home-series-acc {
    transform: var(--series-rest-transform);
  }
  .home-series-stage.is-tecno-active .home-series-tecno {
    transform: var(--series-rest-transform);
  }
  .home-series-acc:hover,
  .home-series-acc:focus-visible {
    transform: var(--series-feedback-transform);
  }
  .home-series-tecno:hover,
  .home-series-tecno:focus-visible {
    transform: var(--series-feedback-transform);
  }
  .home-series-copy {
    left: 50%;
    width: min(100%, 520px);
    bottom: 14px;
  }
}

/* Homepage product series in-page switch */
.product-series-section .product-entry-list { gap: 12px; }
.product-series-section .product-entry {
  appearance: none;
  width: 100%;
  text-align: left;
  font: inherit;
  background: transparent;
  cursor: pointer;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0;
  position: relative;
  transition: padding-left .22s ease, background-color .22s ease, border-color .22s ease;
}
.product-series-section .product-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 99px;
  background: var(--accent-red);
  opacity: 0;
  transition: opacity .22s ease;
}
.product-series-section .product-entry.is-active {
  padding-left: 18px;
  background: rgba(232, 241, 244, .52);
  border-color: rgba(23, 52, 63, .18);
}
.product-series-section .product-entry.is-active::before { opacity: 1; }
.product-series-section .product-entry:hover,
.product-series-section .product-entry:focus-visible { background: rgba(246, 250, 250, .76); }
.product-series-section .product-entry.is-active em { color: var(--ink); }
.product-series-switch {
  min-height: clamp(470px, 42vw, 620px);
  padding: clamp(22px, 3vw, 38px);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(255,255,255,.95), transparent 30%),
    linear-gradient(145deg, #EDF4F6 0%, #F8FBFB 58%, #E7F0F2 100%);
  box-shadow: 0 24px 72px rgba(7, 22, 27, .08);
}
.product-series-switch::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255,255,255,.64), rgba(255,255,255,0) 42%),
    repeating-linear-gradient(90deg, rgba(23,52,63,.035) 0 1px, transparent 1px 56px);
  box-shadow: none;
}
.home-product-view {
  position: relative;
  z-index: 1;
  min-height: calc(clamp(470px, 42vw, 620px) - clamp(44px, 6vw, 76px));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease;
}
.home-product-view[hidden] { display: none; }
.home-product-view.is-active {
  opacity: 1;
  transform: none;
}
.home-product-stage {
  position: relative;
  min-height: inherit;
}
.home-product-figure {
  position: absolute;
  margin: 0;
  z-index: 2;
}
.home-product-figure img,
.home-product-single,
.home-product-crop img {
  display: block;
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 26px rgba(7, 22, 27, .11));
}
.home-product-figure-acc {
  left: 11%;
  bottom: 12%;
}
.home-product-figure-tecno {
  right: 12%;
  bottom: 13%;
  width: clamp(150px, 16vw, 230px);
}
.home-product-figure-tecno img,
.home-product-single { width: 100%; }
.home-product-crop {
  display: block;
  overflow: hidden;
  width: clamp(190px, 18vw, 290px);
  aspect-ratio: .58;
}
.home-product-crop img {
  max-width: none;
  width: clamp(540px, 48vw, 760px);
  transform: translate(-19%, -3%);
}
.home-product-crop.is-detail { width: clamp(190px, 20vw, 300px); }
.home-product-pedestal {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(72%, 520px);
  height: 52px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.94) 0%, rgba(216,228,232,.72) 45%, rgba(160,178,184,.18) 75%, transparent 100%);
  box-shadow: 0 22px 42px rgba(7,22,27,.10);
  z-index: 1;
}
.home-product-detail {
  display: grid;
  grid-template-columns: minmax(0, .56fr) minmax(220px, .44fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
}
.home-product-info h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}
.home-product-info > p {
  margin: 12px 0 28px;
  color: #4C6670;
  font-size: 18px;
}
.home-product-info dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(23, 52, 63, .14);
}
.home-product-info dl div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(23, 52, 63, .12);
}
.home-product-info dt {
  color: #789098;
  font-size: 13px;
  letter-spacing: .08em;
}
.home-product-info dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}
.home-product-detail-visual {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: end;
  min-height: 390px;
}
.home-product-detail-visual .home-product-pedestal {
  bottom: 6%;
  width: 88%;
}
.home-product-detail-visual .home-product-single {
  position: relative;
  z-index: 2;
  width: clamp(180px, 20vw, 290px);
}
@media (max-width: 1080px) {
  .home-product-view,
  .home-product-stage { min-height: 500px; }
  .home-product-detail { grid-template-columns: 1fr; }
  .home-product-detail-visual { min-height: 340px; }
}
@media (max-width: 768px) {
  .product-series-switch {
    width: 100%;
    min-height: 0;
    margin: 16px 0 8px;
    padding: 18px;
    border-radius: 24px;
  }
  .home-product-view,
  .home-product-stage { min-height: 330px; }
  .home-product-figure-acc {
    left: 3%;
    bottom: 17%;
  }
  .home-product-figure-tecno {
    right: 5%;
    bottom: 18%;
    width: 31%;
  }
  .home-product-crop { width: min(48vw, 190px); }
  .home-product-crop img { width: min(122vw, 520px); }
  .home-product-detail { gap: 18px; }
  .home-product-info h3 { font-size: 30px; }
  .home-product-info > p { margin-bottom: 18px; }
  .home-product-info dl div { grid-template-columns: 76px minmax(0, 1fr); }
  .home-product-detail-visual {
    min-height: 300px;
    order: -1;
  }
  .home-product-detail-visual .home-product-single { width: min(48vw, 190px); }
}

/* International chain homepage showcase */
.chain-showcase {
  overflow: hidden;
  padding: clamp(76px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.86), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(218,232,237,.42), transparent 34%),
    linear-gradient(180deg, #F8FBFB 0%, var(--site-page-bg, #F8F9F8) 100%);
}
.chain-inner {
  display: grid;
  grid-template-columns: minmax(300px, .38fr) minmax(0, .62fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}
.chain-copy {
  position: relative;
  z-index: 3;
  color: var(--ink);
  max-width: 490px;
  min-height: clamp(500px, 42vw, 610px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.chain-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 2.5vw, 40px);
  line-height: 1.22;
  letter-spacing: 0;
}
.advantage-tabs {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 8px;
  margin-top: clamp(26px, 3vw, 36px);
  pointer-events: auto;
}
.advantage-tab {
  position: relative;
  z-index: 6;
  appearance: none;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: #49646D;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  pointer-events: auto;
  transition: color .22s ease;
}
.advantage-tab:hover,
.advantage-tab:focus-visible {
  color: var(--ink);
  outline: none;
}
.advantage-tab.is-active {
  color: var(--accent-red);
  font-weight: 700;
}
.advantage-gem {
  position: relative;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border: 1px solid rgba(23, 52, 63, .28);
  border-radius: 3px;
  background: rgba(23, 52, 63, .06);
  transform: rotate(45deg);
  pointer-events: none;
  transition:
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}
.advantage-gem::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .62);
  pointer-events: none;
}
.advantage-tab.is-active .advantage-gem {
  background: #c9252d;
  border-color: #c9252d;
  box-shadow:
    0 0 0 4px rgba(201, 37, 45, .10),
    0 0 12px rgba(201, 37, 45, .35);
}
.advantage-tab-number,
.advantage-tab-label {
  pointer-events: none;
}
.advantage-tab:focus-visible {
  outline: 2px solid rgba(204, 37, 45, .7);
  outline-offset: 4px;
}
.chain-step {
  min-height: 244px;
  margin-top: clamp(30px, 3.8vw, 46px);
  transition: opacity .24s ease, transform .24s ease;
}
.chain-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.22;
  letter-spacing: 0;
}
.chain-copy [data-advantage-body] {
  margin: 14px 0 0;
  color: #4C6670;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
}
.chain-copy [data-advantage-body] p {
  margin: 0;
}
.chain-copy [data-advantage-body] p + p {
  margin-top: 10px;
}
.chain-showcase.is-switching .chain-step {
  opacity: 0;
  transform: translateY(8px);
}
.advantage-visual-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.advantage-visual-group {
  display: grid;
  grid-template-areas: "left main right";
  grid-template-columns: minmax(150px, .72fr) minmax(260px, 1.25fr) minmax(150px, .72fr);
  gap: 18px;
  align-items: center;
  min-height: clamp(520px, 44vw, 620px);
  transition: opacity .28s ease, transform .28s ease;
}
.chain-showcase.is-switching .advantage-visual-group {
  opacity: 0;
  transform: translateX(12px);
}
.advantage-visual-card {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0;
  padding: clamp(12px, 1.4vw, 20px);
  border: 1px solid rgba(216, 224, 226, .86);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(241,247,249,.88));
  box-shadow: 0 18px 46px rgba(7, 22, 27, .08);
  color: inherit;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  filter: none;
  transform: none;
  -webkit-tap-highlight-color: transparent;
}
.advantage-visual-card[hidden] {
  display: none;
}
.advantage-visual-card:hover,
.advantage-visual-card:active,
.advantage-visual-card:focus {
  border-color: rgba(23, 52, 63, .22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,250,251,.94));
  box-shadow: 0 20px 50px rgba(7, 22, 27, .10);
  opacity: 1;
  filter: none;
  transform: none;
}
.advantage-visual-card::before,
.advantage-visual-card::after {
  display: none;
  content: none;
}
.advantage-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
  backface-visibility: hidden;
}
.advantage-visual-card:hover img,
.advantage-visual-card:active img,
.advantage-visual-card:focus img {
  opacity: 1;
  filter: none;
  transform: none;
}
.advantage-visual-card:focus-visible {
  outline: 2px solid rgba(204, 37, 45, .7);
  outline-offset: 3px;
}
.advantage-visual-card-main {
  grid-area: main;
  height: clamp(480px, 42vw, 560px);
}
.advantage-visual-card-side-left {
  grid-area: left;
  height: clamp(300px, 30vw, 390px);
  opacity: .84;
}
.advantage-visual-card-side-right {
  grid-area: right;
  height: clamp(300px, 30vw, 390px);
  opacity: .84;
}
.advantage-visual-group.is-two-up {
  grid-template-areas: "left right";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 34vw, 460px);
}
.advantage-visual-group.is-two-up .advantage-visual-card-side-left,
.advantage-visual-group.is-two-up .advantage-visual-card-side-right {
  height: clamp(340px, 32vw, 440px);
  opacity: 1;
}
.advantage-visual-group.is-two-up .advantage-visual-card {
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .16),
    0 16px 34px rgba(7, 22, 27, .10),
    0 0 28px rgba(216, 224, 226, .28);
  overflow: hidden;
}
.advantage-visual-group.is-two-up .advantage-visual-card:hover,
.advantage-visual-group.is-two-up .advantage-visual-card:active,
.advantage-visual-group.is-two-up .advantage-visual-card:focus {
  border: 0;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .18),
    0 16px 34px rgba(7, 22, 27, .10),
    0 0 28px rgba(216, 224, 226, .28);
}
.advantage-visual-group.is-two-up .advantage-visual-card img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  background: transparent;
  box-shadow: none;
  outline: 0;
}
@media (max-width: 900px) {
  .chain-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .chain-copy {
    max-width: 680px;
    min-height: 0;
  }
  .advantage-visual-group {
    min-height: 0;
  }
}
@media (max-width: 560px) {
  .chain-showcase {
    padding: 60px 0 72px;
  }
  .chain-inner {
    gap: 20px;
  }
  .chain-heading h2 {
    font-size: clamp(26px, 7vw, 30px);
  }
  .advantage-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .advantage-tab {
    min-height: 48px;
    padding: 9px 10px;
    font-size: 15px;
  }
  .chain-copy [data-advantage-body] {
    font-size: 16px;
  }
  .advantage-visual-group {
    grid-template-areas:
      "main main"
      "left right";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .advantage-visual-card-main {
    height: 300px;
  }
  .advantage-visual-card-side-left,
  .advantage-visual-card-side-right {
    height: 180px;
    opacity: .84;
  }
  .advantage-visual-group.is-two-up {
    grid-template-areas: "left right";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .advantage-visual-group.is-two-up .advantage-visual-card-side-left,
  .advantage-visual-group.is-two-up .advantage-visual-card-side-right {
    height: clamp(150px, 44vw, 220px);
    opacity: 1;
  }
}
@media (max-width: 420px) {
  .advantage-tabs {
    grid-template-columns: 1fr;
  }
  .advantage-visual-group {
    grid-template-areas:
      "main"
      "left"
      "right";
    grid-template-columns: 1fr;
  }
  .advantage-visual-card-side-left,
  .advantage-visual-card-side-right {
    height: 190px;
  }
  .advantage-visual-group.is-two-up {
    grid-template-areas: "left right";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .advantage-visual-group.is-two-up .advantage-visual-card-side-left,
  .advantage-visual-group.is-two-up .advantage-visual-card-side-right {
    height: clamp(140px, 46vw, 190px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .chain-step,
  .advantage-visual-group,
  .advantage-tab,
  .advantage-gem {
    transition: none;
  }
}

/* Homepage about Selah workspace section */
.home-about-section {
  position: relative;
  min-height: clamp(620px, 58vw, 720px);
  overflow: hidden;
  padding: 0;
  color: #FFFFFF;
  background: #081B22;
}
.home-about-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: 1;
  height: clamp(130px, 15vw, 180px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(238, 245, 247, .96) 0%,
    rgba(238, 245, 247, .78) 22%,
    rgba(238, 245, 247, .42) 48%,
    rgba(238, 245, 247, .14) 74%,
    rgba(238, 245, 247, 0) 100%
  );
}
.home-about-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: none;
  opacity: 1;
}
.home-about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transform: none;
}
.home-about-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 27, 34, .08) 0%,
      rgba(8, 27, 34, 0) 18%
    ),
    linear-gradient(
      90deg,
      rgba(8, 27, 34, .90) 0%,
      rgba(8, 27, 34, .76) 28%,
      rgba(8, 27, 34, .30) 55%,
      rgba(8, 27, 34, .04) 80%
    );
  pointer-events: none;
}
.home-about-inner {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(92px, 10vw, 130px);
  padding-bottom: clamp(76px, 8vw, 112px);
}
.home-about-content {
  width: min(560px, 100%);
  margin-left: clamp(8px, 2vw, 28px);
}
.home-about-label,
.home-about-title,
.home-about-description,
.home-about-action {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .74s ease, transform .74s cubic-bezier(.2,.72,.22,1);
}
.home-about-label {
  position: relative;
  margin: 0 0 18px;
  padding-left: 54px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(15px, 1.2vw, 17px);
  letter-spacing: .14em;
}
.home-about-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 38px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--accent-red);
}
.home-about-title {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}
.home-about-description {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.84;
}
.home-about-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  min-width: 148px;
  min-height: 48px;
  border: 1px solid #173844;
  border-radius: 12px;
  background: #173844;
  color: #FFFFFF;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(20, 48, 58, .14);
  transition:
    opacity .74s ease .34s,
    transform .24s ease,
    background-color .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}
.home-about-action span {
  display: inline-block;
  transition: transform .24s ease;
}
.home-about-action:hover,
.home-about-action:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #FFFFFF;
  box-shadow: 0 12px 24px rgba(201, 40, 45, .18);
  outline: none;
}
.home-about-action:hover span,
.home-about-action:focus-visible span {
  transform: translateX(3px);
}
.home-about-section.is-visible .home-about-label,
.home-about-section.is-visible .home-about-title,
.home-about-section.is-visible .home-about-description,
.home-about-section.is-visible .home-about-action {
  opacity: 1;
  transform: translateY(0);
}
.home-about-section.is-visible .home-about-title { transition-delay: .10s; }
.home-about-section.is-visible .home-about-description { transition-delay: .22s; }
.home-about-section.is-visible .home-about-action { transition-delay: .34s, 0s, 0s, 0s, 0s; }
@media (max-width: 1024px) {
  .home-about-section {
    min-height: 620px;
  }
  .home-about-media img {
    object-position: 60% center;
  }
  .home-about-content {
    width: min(520px, 100%);
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .home-about-section {
    min-height: 630px;
  }
  .home-about-media img {
    object-position: 66% center;
  }
  .home-about-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 27, 34, .08) 0%,
      rgba(8, 27, 34, .24) 34%,
      rgba(8, 27, 34, .86) 100%
    );
  }
  .home-about-inner {
    align-items: flex-end;
    padding-top: 78px;
    padding-bottom: 46px;
  }
  .home-about-content {
    width: 100%;
  }
  .home-about-label {
    margin-bottom: 14px;
    font-size: 15px;
  }
  .home-about-title {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.22;
  }
  .home-about-description {
    margin-top: 18px;
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.78;
  }
  .home-about-action {
    margin-top: 24px;
    padding: 12px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-about-label,
  .home-about-title,
  .home-about-description,
  .home-about-action,
  .home-about-action span {
    transition: none;
  }
  .home-about-label,
  .home-about-title,
  .home-about-description,
  .home-about-action {
    opacity: 1;
    transform: none;
  }
}

/* Final site background palette */
:root {
  --site-page-bg: #F7F8F6;
  --site-section-white: #FFFFFF;
  --site-section-mist: #EEF2F0;
  --site-section-warm: #F5F2EB;
  --site-section-soft: #F3F5F2;
}

body {
  background: var(--site-page-bg);
}

.home-series-showcase {
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(218, 228, 224, .38),
      transparent 34%
    ),
    var(--site-section-soft);
}

.home-series-showcase::before,
.home-series-showcase::after {
  background: transparent;
}

.chain-showcase {
  background: var(--site-section-white);
}

.about-hero + .section.warm {
  background: var(--site-section-warm);
}

.company-journal-section {
  background: var(--site-page-bg);
}

.product-page .product-overview-section.product-cards-section {
  background: var(--site-page-bg);
}

.contact-section {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 255, 255, .72),
      transparent 30%
    ),
    var(--site-section-soft);
}
/* Fluid responsive foundation 2026-07-18 */
:root {
  --site-content-max: 1360px;
  --site-wide-max: 1600px;
  --site-reading-max: 760px;
  --site-gutter: clamp(20px, 4vw, 72px);
  --section-space: clamp(56px, 7vw, 112px);
  --section-space-tight: clamp(44px, 5.5vw, 88px);
  --card-gap: clamp(18px, 2.4vw, 36px);
  --fluid-hero-title: clamp(42px, 5vw, 72px);
  --fluid-page-title: clamp(36px, 4.2vw, 60px);
  --fluid-section-title: clamp(30px, 3.2vw, 46px);
  --fluid-card-title: clamp(21px, 2vw, 28px);
  --fluid-body: clamp(15px, 1.05vw, 17px);
  --fluid-small: clamp(12px, .86vw, 14px);
  --hero-home-min: 620px;
  --hero-home-max: 920px;
  --hero-page-min: 340px;
  --hero-page-max: 520px;
  --responsive-accent: #228e80;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
}

img,
picture,
video,
canvas {
  height: auto;
}

.container,
.nav,
.footer-inner,
.chain-inner,
.company-news-stage,
.about-origin-grid,
.contact-layout,
.products-hero .container,
.page-hero .container {
  width: calc(100% - 40px);
  max-width: var(--site-content-max);
  margin-inline: auto;
}

@supports (width: min(100%, 1px)) {
  .container,
  .nav,
  .footer-inner,
  .chain-inner,
  .company-news-stage,
  .about-origin-grid,
.contact-layout,
.products-hero .container,
.page-hero .container {
    width: min(calc(100% - var(--site-gutter) - var(--site-gutter)), var(--site-content-max));
    max-width: none;
  }
}

.section {
  padding-block: var(--section-space);
  padding-inline: 0;
}

.section .container,
.product-card-grid,
.contact-layout,
.home-series-stage,
.company-news-layout {
  min-width: 0;
}

.hero-carousel {
  min-height: var(--hero-home-min);
  height: 100vh;
  max-height: var(--hero-home-max);
}

@supports (height: 100svh) {
  .hero-carousel {
    height: 100svh;
  }
}

.hero-content {
  width: calc(100% - 40px);
  max-width: var(--site-content-max);
  margin-inline: auto;
  padding-inline: 0;
}

@supports (width: min(100%, 1px)) {
  .hero-content {
    width: min(calc(100% - var(--site-gutter) - var(--site-gutter)), var(--site-content-max));
    max-width: none;
  }
}

.hero-carousel .hero-title,
.hero-carousel .hero-copy h1 {
  max-width: min(720px, 13ch);
  font-size: var(--fluid-hero-title);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-carousel .hero-subtitle,
.hero-carousel .hero-copy p,
.page-hero p,
.products-hero p {
  max-width: min(620px, 100%);
  font-size: var(--fluid-body);
  line-height: 1.75;
}

.page-hero,
.products-hero {
  min-height: var(--hero-page-min);
  height: clamp(var(--hero-page-min), 34vw, var(--hero-page-max));
}

.page-hero h1,
.products-hero h1 {
  max-width: min(780px, 100%);
  font-size: var(--fluid-page-title);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-title h2,
.home-series-copy h2,
.chain-heading h2,
.about-company-copy h2,
.contact-info-panel h2,
.contact-form-card h2 {
  max-width: min(780px, 100%);
  font-size: var(--fluid-section-title);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-title p,
.home-series-copy p,
.chain-heading p,
.about-company-copy p,
.contact-info-panel p,
.contact-form-card p {
  max-width: var(--site-reading-max);
  font-size: var(--fluid-body);
  line-height: 1.78;
}

.nav {
  max-width: var(--site-content-max);
}

.nav-links {
  gap: clamp(18px, 2vw, 34px);
}

@media (min-width: 1181px) {
  .nav-submenu {
    left: auto;
    right: 0;
    max-width: min(260px, calc(100vw - 40px));
  }

  .nav-item:first-child .nav-submenu {
    left: 0;
    right: auto;
  }
}

.home-series-showcase {
  min-height: auto;
  padding-block: var(--section-space-tight);
}

.home-series-stage {
  width: min(calc(100% - 40px), var(--site-wide-max));
  min-height: clamp(560px, 52vw, 720px);
  margin-inline: auto;
}

@supports (width: min(100%, 1px)) {
  .home-series-stage {
    width: min(calc(100% - var(--site-gutter) - var(--site-gutter)), var(--site-wide-max));
  }
}

.home-series-space {
  width: min(620px, 70vw);
  height: min(190px, 22vw);
  bottom: 6%;
}

.home-series-acc {
  width: clamp(210px, 18vw, 275px);
}

.home-series-tecno {
  width: clamp(132px, 11vw, 182px);
}

.product-series-switch {
  min-height: clamp(430px, 34vw, 560px);
}

.home-product-view,
.home-product-stage {
  min-height: calc(clamp(430px, 34vw, 560px) - clamp(44px, 6vw, 76px));
}

.home-product-crop {
  width: clamp(170px, 15vw, 245px);
}

.home-product-crop img {
  width: clamp(480px, 40vw, 650px);
}

.home-product-detail-visual {
  min-height: clamp(300px, 28vw, 360px);
}

.home-product-detail-visual .home-product-single {
  width: clamp(160px, 16vw, 230px);
}

.chain-showcase {
  padding-block: var(--section-space-tight);
}

.home-about-section {
  min-height: clamp(620px, 48vw, 700px);
}

.home-about-media img {
  object-position: 55% center;
}

.product-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--card-gap);
}

.product-center-card {
  grid-template-rows: clamp(230px, 18vw, 280px) minmax(132px, auto) 68px;
}

.product-card-media img,
.product-detail-media img,
.home-product-single,
.home-product-crop img {
  object-fit: contain;
}

.product-card-media img {
  max-height: clamp(198px, 15vw, 238px);
}

#company-profile {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 7vw, 110px) 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(202, 221, 216, .34), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(222, 232, 235, .42), transparent 30%),
    linear-gradient(180deg, #EEF5F2 0%, #F5F8F7 42%, #F8F9F8 100%);
}

#company-profile::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto;
  height: clamp(220px, 24vw, 340px);
  background: url("../assets/images/about/about-banner.webp") center bottom / cover no-repeat;
  opacity: .14;
  filter: blur(14px) saturate(.92);
  transform: scale(1.04);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.34) 42%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.34) 42%, transparent 100%);
}

#company-profile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(238,245,242,.42) 0%, rgba(248,249,248,0) 30%),
    linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,255,255,0) 44%, rgba(255,255,255,.24));
  pointer-events: none;
}

.about-origin-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 5vw, 84px);
  align-items: center;
}

.about-company-copy {
  max-width: 680px;
}

.about-company-copy h2 {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: clamp(42px, 3.2vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
}

.about-company-copy p {
  max-width: 660px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
  text-align: left;
  text-align-last: auto;
  text-indent: 2em;
}

.about-company-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  #company-profile {
    padding: clamp(72px, 8vw, 88px) 0;
  }

  .about-origin-grid {
    grid-template-columns: 1fr;
    gap: clamp(34px, 5vw, 44px);
  }

  .about-company-copy {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  #company-profile {
    padding: clamp(56px, 12vw, 68px) 0;
  }

  .about-company-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(32px, 8.5vw, 36px);
  }

  .about-company-copy p {
    margin-bottom: 20px;
    font-size: clamp(15px, 4.1vw, 16px);
    line-height: 1.85;
  }
}

.company-sign-panel img,
.document-card img {
  object-fit: contain;
}

.company-news-layout {
  grid-template-columns: minmax(0, 1fr) clamp(118px, 11vw, 168px);
  gap: clamp(28px, 4vw, 56px);
}

.company-news-stage {
  max-width: min(100%, 1080px);
}

.contact-layout {
  grid-template-columns: minmax(320px, .44fr) minmax(0, .56fr);
  gap: clamp(24px, 3vw, 36px);
  max-width: min(var(--site-content-max), 1180px);
}

.contact-info-panel,
.contact-form-card,
.contact-channel-card,
.contact-form-fields,
.form-row {
  min-width: 0;
}

.contact-channel-card {
  padding: clamp(18px, 2vw, 24px);
}

.contact-form-fields {
  gap: clamp(12px, 1.5vw, 16px);
}

.site-footer {
  padding-inline: 0;
}

@media (min-width: 1800px) {
  :root {
    --site-content-max: 1420px;
    --site-gutter: clamp(48px, 4.5vw, 96px);
  }

  .home-about-media img {
    object-position: 52% center;
  }
}

@media (max-width: 1180px) {
  :root {
    --site-gutter: clamp(20px, 4vw, 48px);
    --section-space: clamp(52px, 8vw, 88px);
    --section-space-tight: clamp(44px, 7vw, 76px);
    --nav-h: 64px;
  }

  .nav {
    width: 100%;
    max-width: var(--site-content-max);
    padding-inline: var(--site-gutter);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: var(--site-gutter);
    right: var(--site-gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - var(--nav-h) - 24px);
    padding: 10px 18px;
    overflow-y: auto;
    color: var(--ink);
    background: rgba(248, 249, 248, .97);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    width: 100%;
    border-bottom: 1px solid rgba(216, 224, 226, .72);
  }

  .nav-item:last-child {
    border-bottom: 0;
  }

  .nav-primary-link {
    min-height: 48px;
    padding: 0;
  }

  .submenu-toggle {
    align-self: center;
    justify-self: end;
    width: 32px;
    height: 32px;
  }

  .nav-submenu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: max-height .22s ease;
  }

  .nav-item.is-open .nav-submenu {
    max-height: 240px;
    padding: 0 0 10px;
    pointer-events: auto;
  }

  .nav-submenu a {
    min-height: 40px;
    padding: 10px 12px;
    white-space: normal;
    background: rgba(255, 255, 255, .62);
  }

  .home-series-stage {
    min-height: clamp(520px, 72vw, 640px);
  }

  .product-series-switch {
    min-height: 480px;
  }

  .home-product-view,
  .home-product-stage {
    min-height: 430px;
  }

  .about-origin-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    max-width: min(100%, 780px);
  }
}

@media (max-width: 900px) {
  :root {
    --fluid-hero-title: clamp(38px, 9vw, 58px);
    --fluid-page-title: clamp(32px, 7vw, 46px);
    --fluid-section-title: clamp(28px, 6vw, 38px);
  }

  .company-news-layout {
    display: block;
  }

  .company-news-side {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --site-gutter: 20px;
    --section-space: clamp(52px, 12vw, 76px);
    --section-space-tight: clamp(44px, 10vw, 64px);
    --hero-page-min: 320px;
    --hero-page-max: 420px;
  }

  .hero-carousel {
    min-height: 620px;
    max-height: none;
  }

  .page-hero,
  .products-hero {
    min-height: var(--hero-page-min);
    height: clamp(var(--hero-page-min), 64vw, var(--hero-page-max));
  }

  .home-series-showcase {
    padding-block: var(--section-space-tight);
  }

  .home-series-stage {
    min-height: 590px;
  }

  .home-series-space {
    left: 50%;
    width: min(100%, 390px);
    height: 78px;
  }

  .product-series-switch {
    min-height: 0;
  }

  .home-product-view,
  .home-product-stage {
    min-height: 315px;
  }

  .home-product-crop {
    width: min(44vw, 170px);
  }

  .home-product-crop img {
    width: min(112vw, 480px);
  }

  .product-center-card {
    grid-template-rows: 230px minmax(126px, auto) 64px;
  }

  .company-news-controls {
    justify-content: center;
    padding-inline: 8px;
  }

  .company-news-control {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 560px) {
  :root {
    --fluid-hero-title: clamp(36px, 10vw, 46px);
    --fluid-page-title: clamp(30px, 8vw, 38px);
  }

  .home-about-section {
    min-height: 610px;
  }
}

/* Product center: current-page product detail workspace */
.product-page .products-hero {
  min-height: clamp(240px, 22vw, 320px);
  padding: calc(var(--nav-h) + 42px) 28px 46px;
}

.product-page .product-cards-section {
  padding-top: clamp(42px, 4.5vw, 64px);
  padding-bottom: clamp(42px, 5vw, 72px);
}

.product-category-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: min(720px, 100%);
  margin: 0 auto clamp(34px, 4vw, 54px);
  padding-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-category-nav::-webkit-scrollbar {
  display: none;
}

.product-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(23, 52, 63, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  color: #173844;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform .22s ease, color .22s ease, background-color .22s ease, border-color .22s ease;
}

.product-category-nav a:hover,
.product-category-nav a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(23, 52, 63, .42);
  background: #fff;
  color: #102A33;
  outline: none;
}

.product-category-nav a.is-active,
.product-category-nav a[aria-current="page"] {
  border-color: #173844;
  background: #173844;
  color: #fff;
}

.product-page .product-card-grid {
  margin-top: 0;
}

.product-category-placeholder {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0 clamp(70px, 8vw, 110px);
  text-align: center;
}

.product-category-placeholder h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.product-category-placeholder p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--fluid-body);
  line-height: 1.8;
}

.product-center-card.is-active {
  border-color: rgba(34, 142, 128, .62);
  box-shadow: 0 18px 42px rgba(20, 75, 83, .14);
}

.product-center-card.is-active .product-card-link {
  background: #228E80;
  border-color: #228E80;
}

.product-information-section {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.product-information-section[hidden],
.product-information-panel[hidden] {
  display: none !important;
}

.product-information-shell {
  position: absolute;
  top: 0;
  right: 0;
  width: min(720px, 100vw);
  height: 100vh;
  padding: clamp(22px, 3vw, 34px);
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: auto;
  border-left: 1px solid rgba(23, 52, 63, .12);
  background:
    linear-gradient(180deg, rgba(247, 250, 251, .98), rgba(255, 255, 255, .98)),
    radial-gradient(circle at 0% 0%, rgba(34, 142, 128, .08), transparent 36%);
  box-shadow: -24px 0 56px rgba(7, 22, 27, .16);
  transform: translateX(104%);
  transition: transform .36s ease;
}

.product-information-section.is-open .product-information-shell {
  transform: translateX(0);
}

.product-information-heading {
  position: sticky;
  top: calc(clamp(22px, 3vw, 34px) * -1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 22px;
  padding: clamp(18px, 2.2vw, 26px) clamp(22px, 3vw, 34px) 18px;
  border-bottom: 1px solid rgba(23, 52, 63, .08);
  background: rgba(247, 250, 251, .94);
  backdrop-filter: blur(16px);
}

.product-information-heading .eyebrow {
  margin: 0 0 6px;
  color: #228E80;
  font-size: 12px;
}

.product-information-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.16;
  letter-spacing: 0;
}

.product-information-close {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(23, 52, 63, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .84);
  color: #173844;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.product-information-close:hover,
.product-information-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(23, 52, 63, .32);
  background: #fff;
  outline: none;
}

.product-information-panel.is-entering {
  animation: product-information-in .32s ease both;
}

@keyframes product-information-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.product-information-grid {
  display: block;
}

.product-information-visual,
.product-information-block {
  min-width: 0;
  margin-bottom: 18px;
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(23, 52, 63, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px rgba(7, 22, 27, .055);
}

.product-information-visual {
  text-align: center;
}

.product-information-image {
  display: grid;
  place-items: center;
  min-height: clamp(260px, 30vw, 340px);
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(232, 241, 244, .86), rgba(255, 255, 255, .42));
}

.product-information-image img {
  display: block;
  width: min(74%, 300px);
  max-height: clamp(240px, 28vw, 320px);
  height: auto;
  object-fit: contain;
}

.product-information-name {
  margin: 0 0 8px;
  color: #173844;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 760;
  line-height: 1.2;
}

.product-information-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #4D6065;
  font-size: 15px;
  line-height: 1.5;
}

.product-information-brand span {
  color: #7A8D92;
  font-size: 13px;
  font-weight: 700;
}

.product-information-content {
  min-width: 0;
}

.product-information-block:last-of-type {
  margin-bottom: 0;
}

.product-information-block h3,
.product-information-block h4 {
  margin: 0;
  color: #173844;
  line-height: 1.35;
}

.product-information-block h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 760;
}

.product-information-block h4 {
  margin-bottom: 10px;
  color: #61777D;
  font-size: 13px;
  font-weight: 760;
}

.product-information-block > p {
  margin: 0;
  color: #4D6065;
  font-size: 15px;
  line-height: 1.78;
}

.product-information-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.product-information-list > div {
  display: grid;
  grid-template-columns: minmax(104px, .34fr) minmax(0, .66fr);
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid rgba(23, 52, 63, .085);
}

.product-information-list > div:first-child {
  border-top: 0;
}

.product-information-list dt,
.product-information-list dd {
  margin: 0;
  line-height: 1.5;
}

.product-information-list dt {
  color: #72858A;
  font-size: 14px;
}

.product-information-list dd {
  color: #173844;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.product-information-quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(200px, .9fr);
  gap: 28px;
}

.product-information-quality-grid > div {
  min-width: 0;
}

.product-information-list-compact {
  grid-template-columns: 1fr;
  gap: 0;
}

.product-information-list-compact > div {
  display: grid;
  grid-template-columns: minmax(126px, .48fr) minmax(0, .52fr);
  gap: 14px;
  min-height: 0;
  padding: 11px 0;
  border: 0;
  border-top: 1px solid rgba(23, 52, 63, .08);
  border-radius: 0;
  background: transparent;
}

.product-information-list-compact dt {
  margin: 0;
  color: #72858A;
  font-size: 14px;
  font-weight: 700;
}

.product-information-list-compact dd {
  color: #173844;
  font-size: 14px;
  font-weight: 740;
  text-align: right;
}

.product-information-note {
  margin-top: 14px !important;
  color: #72858A !important;
  font-size: 13px !important;
}

.product-information-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.product-information-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #173844;
  border-radius: 10px;
  background: #173844;
  color: #fff;
  font-weight: 760;
  box-shadow: 0 12px 26px rgba(20, 48, 58, .14);
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product-information-consult:hover,
.product-information-consult:focus-visible {
  transform: translateY(-2px);
  border-color: #228E80;
  background: #228E80;
  color: #fff;
  box-shadow: 0 16px 32px rgba(34, 142, 128, .16);
  outline: none;
}

@media (max-width: 768px) {
  .product-page .products-hero {
    min-height: 240px;
    padding: calc(var(--nav-h) + 34px) 20px 38px;
  }

  .product-page .product-cards-section {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .product-category-nav {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 6px;
  }

  .product-category-nav a {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  .product-category-placeholder {
    padding: 44px 0 64px;
  }

  .service-category-section {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .service-category-nav {
    width: 100%;
  }

  .service-placeholder-panel,
  .service-faq-accordion,
  .service-file-panel {
    margin-top: 34px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .service-faq-accordion summary {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 12px;
    min-height: 66px;
    padding: 0 16px;
  }

  .service-faq-accordion details[open] > div {
    padding: 0 16px 18px;
  }

  .service-faq-accordion details > div > p {
    margin-left: 46px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.9;
  }

  .service-faq-accordion details > div > ul {
    margin-left: 66px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.86;
  }

  .service-file-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-file-list a {
    width: 100%;
  }

  .coa-query-controls,
  .coa-query-result dl div {
    grid-template-columns: 1fr;
  }

  .coa-query-controls button,
  .coa-query-actions a {
    width: 100%;
  }

  .coa-query-actions {
    flex-direction: column;
  }

  .coa-admin-page {
    padding: 22px;
  }

  .coa-admin-header,
  .coa-admin-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .coa-admin-header-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .coa-admin-header-actions a,
  .coa-admin-header-actions button,
  .coa-admin-card-heading button {
    width: 100%;
  }

  .coa-admin-form,
  .coa-admin-list-heading form,
  .coa-admin-import-placeholder {
    grid-template-columns: 1fr;
  }

  .coa-admin-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-after-sales-panel {
    margin-top: 34px;
    padding: 42px 0 56px;
  }

  .service-after-sales-panel a {
    width: 100%;
  }

  .product-information-heading {
    margin: -20px -20px 18px;
    padding: 18px 20px 14px;
  }

  .product-information-shell {
    width: 100vw;
    padding: 20px;
  }

  .product-information-image {
    min-height: 240px;
  }

  .product-information-image img {
    max-height: 230px;
  }

  .product-information-name {
    font-size: 26px;
  }

  .product-information-quality-grid,
  .product-information-list-compact {
    grid-template-columns: 1fr;
  }

  .product-information-list > div,
  .product-information-list-compact > div {
    grid-template-columns: minmax(110px, .48fr) minmax(0, .52fr);
  }

  .product-information-list dd {
    text-align: left;
  }

  .product-information-actions {
    justify-content: stretch;
  }

  .product-information-consult {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-information-shell {
    transition: none;
  }

  .product-information-panel.is-entering {
    animation: none;
  }
}

/* v1.1 content structure */
.nav-links {
  gap: clamp(12px, 1.2vw, 24px);
}

.nav-primary-link {
  white-space: nowrap;
}

.products-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(23, 52, 63, .72);
  font-size: var(--fluid-body);
  line-height: 1.8;
}

.application-section,
.about-advantage-section,
.case-directions-section {
  background: var(--site-page-bg);
}

.services-hero {
  align-items: center;
  text-align: center;
}

.services-hero .container {
  display: grid;
  place-items: center;
  padding: 0 28px;
}

.services-hero h1 {
  margin: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 14px 32px rgba(7, 22, 27, .32);
}

.service-category-section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(64px, 8vw, 108px);
  background: var(--site-page-bg);
}

.service-category-nav {
  width: min(980px, 100%);
  margin-bottom: 0;
}

.service-category-nav a {
  border-color: rgba(23, 52, 63, .18);
  background: #fff;
  color: #173844;
  box-shadow: none;
}

.service-category-nav a:hover,
.service-category-nav a:focus-visible {
  border-color: rgba(201, 40, 45, .38);
  background: #fff;
  color: var(--accent-red);
}

.service-category-nav a.is-active,
.service-category-nav a[aria-current="page"] {
  border-color: var(--accent-red);
  background: #fff;
  color: var(--accent-red);
  box-shadow: none;
}

.service-placeholder-panel,
.service-faq-accordion,
.service-file-panel {
  width: min(920px, 100%);
  margin: clamp(42px, 5vw, 64px) auto 0;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(216, 224, 226, .86);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 46px rgba(7, 22, 27, .055);
}

.service-placeholder-panel h2,
.service-faq-accordion h2,
.service-file-panel h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.service-placeholder-panel p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: var(--fluid-body);
  line-height: 1.8;
}

.service-faq-accordion {
  display: grid;
  gap: 12px;
}

.service-faq-accordion > p {
  max-width: 760px;
  margin: -4px 0 16px;
  color: var(--muted);
  font-size: var(--fluid-body);
  line-height: 1.85;
}

.service-faq-accordion details {
  border: 1px solid rgba(23, 52, 63, .10);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  overflow: hidden;
}

.service-faq-accordion summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 0 22px;
  color: #173844;
  cursor: pointer;
  list-style: none;
}

.service-faq-accordion summary::-webkit-details-marker {
  display: none;
}

.service-faq-accordion summary::after {
  content: "+";
  justify-self: end;
  color: #173844;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: color .22s ease, transform .22s ease;
}

.service-faq-accordion details[open] summary::after {
  content: "-";
  color: var(--accent-red);
}

.service-faq-accordion summary span {
  color: var(--accent-red);
  font: 700 13px/1 Inter, Arial, sans-serif;
  letter-spacing: .12em;
}

.service-faq-accordion summary strong {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.35;
}

.service-faq-accordion details > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.service-faq-accordion details[open] > div {
  grid-template-rows: 1fr;
  padding: 0 22px 22px;
}

.service-faq-accordion details > div > p {
  overflow: hidden;
  max-width: 760px;
  margin: 0 0 18px 60px;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.9;
  text-indent: 2em;
}

.service-faq-accordion details > div > ul {
  max-width: 720px;
  margin: -6px 0 18px 84px;
  padding: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.9;
}

.service-faq-accordion details > div > li,
.service-faq-accordion details > div > ul li {
  margin: 0 0 6px;
  padding-left: 2px;
}

.service-file-list {
  display: grid;
  border-top: 1px solid rgba(23, 52, 63, .10);
}

.service-file-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 52, 63, .10);
}

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

.service-file-list strong {
  color: #173844;
  font-size: 17px;
  line-height: 1.35;
}

.service-file-list span {
  margin-top: 6px;
  color: #72858A;
  font-size: 13px;
  line-height: 1.5;
}

.service-file-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #173844;
  border-radius: 8px;
  background: #173844;
  color: #fff;
  font-weight: 740;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.service-file-list a:hover,
.service-file-list a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #fff;
  outline: none;
}

.coa-query-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.coa-query-form label {
  color: #173844;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.coa-query-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.coa-query-controls input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(23, 52, 63, .18);
  border-radius: 8px;
  background: #fff;
  color: #173844;
  font: inherit;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.coa-query-controls input:focus {
  border-color: rgba(23, 52, 63, .46);
  box-shadow: 0 0 0 3px rgba(34, 142, 128, .10);
}

.coa-query-controls button,
.coa-query-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #173844;
  border-radius: 8px;
  background: #173844;
  color: #fff;
  font-weight: 740;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease;
}

.coa-query-controls button:hover,
.coa-query-controls button:focus-visible,
.coa-query-actions a:hover,
.coa-query-actions a:focus-visible {
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #fff;
  outline: none;
}

.coa-query-message {
  margin: 0;
  color: var(--accent-red);
  font-size: 15px;
  line-height: 1.7;
}

.coa-query-result {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 52, 63, .10);
}

.coa-query-result dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.coa-query-result dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
}

.coa-query-result dt {
  color: #72858A;
  font-weight: 700;
}

.coa-query-result dd {
  margin: 0;
  color: #173844;
  font-weight: 700;
}

.coa-query-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.coa-admin-page {
  min-height: 100vh;
  padding: clamp(28px, 4vw, 56px);
  background: var(--site-page-bg);
  color: #173844;
}

.coa-admin-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.coa-admin-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.coa-admin-header p {
  margin: 0 0 8px;
  color: var(--accent-red);
  font: 700 12px/1 Inter, Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.coa-admin-header h1 {
  margin: 0;
  color: #173844;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.16;
}

.coa-admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.coa-admin-header a,
.coa-admin-header button,
.coa-admin-card-heading button,
.coa-admin-form-actions button,
.coa-admin-list-heading button,
.coa-admin-row-actions a,
.coa-admin-row-actions button,
.coa-admin-row-actions label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(23, 52, 63, .24);
  border-radius: 8px;
  background: #fff;
  color: #173844;
  font: inherit;
  font-weight: 740;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .22s ease, color .22s ease, background-color .22s ease;
}

.coa-admin-header a:hover,
.coa-admin-header button:hover,
.coa-admin-card-heading button:hover,
.coa-admin-form-actions button:hover,
.coa-admin-list-heading button:hover,
.coa-admin-row-actions a:hover,
.coa-admin-row-actions button:hover,
.coa-admin-row-actions label:hover {
  border-color: rgba(201, 40, 45, .42);
  color: var(--accent-red);
}

.coa-admin-header button:first-child {
  border-color: #173844;
  background: #173844;
  color: #fff;
}

.coa-admin-header button:first-child:hover {
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #fff;
}

.coa-admin-card {
  margin-top: 22px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(216, 224, 226, .86);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
}

.coa-admin-card[hidden] {
  display: none;
}

.coa-admin-modal[hidden] {
  display: none;
}

.coa-admin-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
}

.coa-admin-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 22, 27, .42);
  cursor: pointer;
}

.coa-admin-form-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 820px);
  margin: 0;
  overflow: auto;
  box-shadow: 0 28px 82px rgba(7, 22, 27, .22);
}

.coa-admin-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.coa-admin-card-heading h2 {
  margin: 0;
  color: #173844;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.22;
}

.coa-admin-card-heading p {
  margin: 8px 0 0;
  color: #5D7378;
  font-size: 14px;
  line-height: 1.62;
}

.coa-admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.coa-admin-form label,
.coa-admin-list-heading form {
  display: grid;
  gap: 8px;
}

.coa-admin-form label span {
  color: #5D7378;
  font-size: 14px;
  font-weight: 740;
}

.coa-admin-form input,
.coa-admin-form select,
.coa-admin-form textarea,
.coa-admin-list-heading input,
.coa-admin-list-heading select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(23, 52, 63, .18);
  border-radius: 8px;
  background: #fff;
  color: #173844;
  font: inherit;
  outline: none;
}

.coa-admin-form input:focus,
.coa-admin-form select:focus,
.coa-admin-form textarea:focus,
.coa-admin-list-heading input:focus,
.coa-admin-list-heading select:focus {
  border-color: rgba(23, 52, 63, .46);
}

.coa-admin-form textarea {
  min-height: 128px;
  padding: 12px 14px;
  line-height: 1.65;
  resize: vertical;
}

.news-admin-form-wide {
  grid-column: 1 / -1;
}

.news-admin-form-card {
  width: min(980px, 100%);
}

.news-admin-page .coa-admin-list-heading form {
  grid-template-columns: minmax(190px, 1fr) minmax(130px, .58fr) minmax(120px, .5fr) auto auto;
  width: min(940px, 100%);
}

.news-admin-table {
  min-width: 1080px;
}

.coa-admin-form-file,
.coa-admin-form-actions {
  grid-column: 1 / -1;
}

.coa-admin-form-file {
  padding: 18px;
  border: 1px dashed rgba(23, 52, 63, .24);
  border-radius: 12px;
  background: rgba(248, 251, 251, .84);
}

.coa-admin-form-file input {
  padding: 10px 12px;
  background: #fff;
}

.coa-admin-form-file small {
  color: #6C7F83;
  font-size: 13px;
  line-height: 1.55;
}

.coa-admin-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.coa-admin-form-actions button {
  border-color: #173844;
  background: #173844;
  color: #fff;
}

.coa-admin-form-actions button[data-coa-admin-clear-form] {
  border-color: rgba(23, 52, 63, .24);
  background: #fff;
  color: #173844;
}

.coa-admin-form-actions button:hover {
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: #fff;
}

.coa-admin-form-actions p {
  margin: 0;
  color: #5D7378;
}

.coa-admin-form-actions p.is-success {
  color: #228E80;
}

.coa-admin-form-actions p.is-error {
  color: var(--accent-red);
}

.coa-admin-list-heading {
  align-items: end;
}

.coa-admin-list-heading form {
  grid-template-columns: minmax(190px, 1fr) minmax(160px, .74fr) auto auto;
  width: min(760px, 100%);
}

.coa-admin-import-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .58fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px dashed rgba(23, 52, 63, .22);
  border-radius: 12px;
  background: rgba(248, 251, 251, .78);
}

.coa-admin-import-placeholder strong {
  color: #173844;
  font-size: 16px;
}

.coa-admin-import-placeholder p {
  margin: 8px 0 0;
  color: #5D7378;
  line-height: 1.7;
}

.coa-admin-import-placeholder label {
  display: grid;
  gap: 8px;
  color: #5D7378;
  font-size: 14px;
  font-weight: 740;
}

.coa-admin-import-placeholder input {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 52, 63, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
  color: #6C7F83;
}

.coa-admin-table-wrap {
  overflow-x: auto;
}

.coa-admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 940px;
}

.coa-admin-table th,
.coa-admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(23, 52, 63, .10);
  text-align: left;
  vertical-align: top;
}

.coa-admin-table th {
  color: #5D7378;
  font-size: 13px;
  font-weight: 800;
}

.coa-admin-table td {
  color: #173844;
  font-size: 14px;
  line-height: 1.55;
}

.coa-admin-lot {
  color: #173844;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
}

.coa-admin-table td small {
  display: block;
  margin-top: 3px;
  color: #6C7F83;
  font-size: 12px;
}

.coa-admin-batch-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(34, 142, 128, .24);
  border-radius: 999px;
  background: rgba(34, 142, 128, .08);
  color: #228E80;
  font-size: 12px;
  font-weight: 800;
}

.coa-admin-batch-status.is-inactive {
  border-color: rgba(108, 127, 131, .24);
  background: rgba(108, 127, 131, .08);
  color: #6C7F83;
}

.coa-admin-file-state {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(23, 52, 63, .16);
  border-radius: 999px;
  background: rgba(248, 251, 251, .92);
  color: #6C7F83;
  font-size: 12px;
  font-weight: 760;
}

.coa-admin-file-state.is-ready {
  border-color: rgba(34, 142, 128, .24);
  background: rgba(34, 142, 128, .08);
  color: #228E80;
}

.coa-admin-file-link {
  display: inline-flex;
  margin-top: 8px;
  color: #173844;
  font-size: 13px;
  font-weight: 740;
}

.coa-admin-file-link:hover,
.coa-admin-file-link:focus-visible {
  color: var(--accent-red);
  outline: none;
}

.coa-admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coa-admin-row-actions input[type="file"] {
  display: none;
}

.coa-admin-page-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: #5D7378;
  font-size: 14px;
}

.coa-admin-page-status.is-success {
  color: #228E80;
}

.coa-admin-page-status.is-error {
  color: var(--accent-red);
}

.service-after-sales-panel {
  display: grid;
  justify-items: center;
  width: min(760px, 100%);
  margin: clamp(58px, 7vw, 96px) auto 0;
  padding: clamp(52px, 7vw, 86px) 0 clamp(46px, 6vw, 72px);
  text-align: center;
}

.service-after-sales-panel strong {
  color: #173844;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 760;
  line-height: 1.22;
}

.service-after-sales-panel p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.9;
}

.service-after-sales-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 34px;
  padding: 0 28px;
  border: 1px solid rgba(23, 52, 63, .28);
  border-radius: 8px;
  background: #fff;
  color: #173844;
  font-size: 16px;
  font-weight: 740;
  transition: border-color .22s ease, color .22s ease, background-color .22s ease;
}

.service-after-sales-panel a:hover,
.service-after-sales-panel a:focus-visible {
  border-color: rgba(201, 40, 45, .48);
  color: var(--accent-red);
  outline: none;
}

.application-section {
  overflow-x: clip;
  padding: clamp(30px, 3.4vw, 46px) 0 clamp(50px, 5.4vw, 76px);
}

.application-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.news-archive-grid {
  display: grid;
  gap: var(--card-gap);
}

.application-showcase {
  --application-text-left: clamp(18px, 2.5vw, 48px);
  --application-text-right: clamp(10px, 1.6vw, 30px);
  --application-text-bottom: clamp(32px, 3.5vw, 52px);
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.application-title-rail {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  min-height: clamp(68px, 7vw, 88px);
  padding: clamp(18px, 2.2vw, 28px) clamp(24px, 5vw, 72px);
  color: #1e5663;
  background: transparent;
}

.application-title-rail::after {
  content: none;
}

.application-title-rail p,
.application-title-rail h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  writing-mode: horizontal-tb;
  text-orientation: initial;
  letter-spacing: 0;
}

.application-title-rail p {
  color: rgba(30, 86, 99, .58);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(11px, .9vw, 13px);
  font-weight: 700;
  line-height: 1.2;
}

.application-title-rail h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 750;
}

.application-panels {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  min-height: clamp(520px, 44vw, 700px);
  min-width: 0;
}

.application-panel {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background: #d7e7ea;
  border: 0;
  border-left: 1px solid rgba(234, 242, 245, .78);
  transform: translateZ(0);
  transition: flex-grow .56s cubic-bezier(.22, 1, .36, 1);
  will-change: flex-grow;
}

.application-panel:first-child {
  border-left: 0;
}

.application-panel.is-active {
  flex: 6.2 1 0%;
}

.application-panel:focus-visible {
  outline: 3px solid rgba(193, 39, 45, .46);
  outline-offset: -6px;
}

.application-panel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateZ(0) scale(1.015);
  transition: transform .56s cubic-bezier(.22, 1, .36, 1);
  z-index: -2;
  will-change: transform;
}

.application-panel::before,
.application-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.application-panel::before {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 30, 35, .04) 0%, rgba(10, 30, 35, .22) 42%, rgba(5, 18, 22, .88) 100%),
    linear-gradient(90deg, rgba(5, 18, 22, .5) 0%, rgba(5, 18, 22, .18) 34%, rgba(5, 18, 22, .06) 100%);
}

.application-panel::after {
  background: rgba(4, 19, 23, .2);
  opacity: .42;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1);
}

.application-panel.is-active::after {
  opacity: 0;
}

.application-panel.is-active .application-panel-image {
  transform: translateZ(0) scale(1);
}

.application-panel-content {
  position: absolute;
  top: auto;
  left: var(--application-text-left);
  right: var(--application-text-right);
  bottom: var(--application-text-bottom);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1.1vw, 16px);
  width: auto;
  max-width: 620px;
  box-sizing: border-box;
  margin-top: 0;
  padding: 0;
  color: #fff;
  transform: none;
  transition: none;
}

.application-panel-index {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  background: rgba(8, 32, 38, .28);
  transition: none;
}

.application-panel.is-active .application-panel-index {
  color: #fff;
  border-color: rgba(193, 39, 45, .72);
  background: rgba(193, 39, 45, .84);
}

.application-panel-heading {
  position: static;
  min-width: 0;
  max-width: min(100%, 420px);
  text-align: left;
  transition: none;
}

.application-panel-heading p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .68);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
  display: none;
  overflow-wrap: anywhere;
  transition: none;
}

.application-panel-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  transition: none;
}

.application-panel-solution {
  display: none;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 720;
  line-height: 1.38;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  transition: none;
}

.application-panel-copy {
  position: static;
  display: none;
  gap: 10px;
  max-width: 560px;
  transition: none;
}

.application-panel-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.78;
  overflow-wrap: anywhere;
  transition: none;
}

.application-panel:not(.is-active) .application-panel-content {
  top: auto;
  left: var(--application-text-left);
  right: var(--application-text-right);
  bottom: var(--application-text-bottom);
  width: auto;
  max-width: none;
  margin-top: 0;
  padding: 0;
  transform: none;
  transition: none;
}

.application-panel.is-active .application-panel-heading p {
  display: block;
}

.application-panel.is-active .application-panel-solution {
  display: block;
}

.application-panel.is-active .application-panel-copy {
  display: grid;
}

.application-panel:not(.is-active) .application-panel-heading {
  text-align: left;
}

.application-panel:not(.is-active) .application-panel-heading p {
  display: none;
}

.application-panel:not(.is-active) .application-panel-solution {
  display: none;
}

.application-panel:not(.is-active) .application-panel-heading h3 {
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.14;
}

.application-panel:not(.is-active) .application-panel-index {
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
}

.news-archive-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-archive-card,
.vision-note,
.case-status-panel {
  min-width: 0;
  border: 1px solid rgba(216, 224, 226, .86);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 48px rgba(7, 22, 27, .07);
}

.vision-note span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-red);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}

.strength-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.28;
}

.vision-note p,
.strength-list p,
.case-status-panel p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fluid-body);
  line-height: 1.78;
}

.about-advantages-longform {
  position: relative;
  overflow: hidden;
  padding: 0 28px;
  background: #fff;
}

.about-advantages-longform__background {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}

.about-advantages-longform__background.is-bg-loaded {
  opacity: .82;
}

.about-advantages-longform::before,
.about-advantages-longform::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-advantages-longform::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.64) 42%, rgba(255,255,255,.86)),
    linear-gradient(90deg, rgba(255,255,255,.58), rgba(255,255,255,.2) 46%, rgba(255,255,255,.54));
}

.about-advantages-longform::after {
  background: radial-gradient(circle at 18% 34%, rgba(255,255,255,.66), transparent 36%);
}

.about-advantages-longform__content {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 7vw, 104px) 0 0;
}

.about-advantages-longform .reveal {
  transform: translateY(24px);
  transition: opacity .72s ease-out, transform .72s ease-out;
}

.about-advantages-longform .reveal.in {
  transform: none;
}

.about-advantages-longform__hero {
  min-height: clamp(300px, 48vh, 520px);
  display: grid;
  place-items: center;
  text-align: center;
}

.about-advantages-longform__hero h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-advantages-longform__core {
  display: grid;
  gap: clamp(30px, 4.4vw, 54px);
}

.about-advantages-longform__core > h3,
.about-advantages-longform__statement h3,
.future-outlook-section__intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-advantages-longform__core > h3 {
  text-align: center;
}

.about-advantage-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 40%);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  min-height: clamp(320px, 48vh, 520px);
  padding: clamp(12px, 1.6vw, 22px) 0;
}

.about-advantage-item--reverse {
  grid-template-columns: minmax(280px, 40%) minmax(0, 1fr);
}

.about-advantage-item--reverse .about-advantage-item__copy {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: min(560px, 100%);
}

.about-advantage-item--reverse .about-advantage-item__media {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  justify-self: start;
}

.about-advantage-item:not(.about-advantage-item--reverse) > .about-advantage-item__copy {
  justify-self: end;
  width: min(560px, 100%);
}

.about-advantage-item__copy {
  min-width: 0;
  max-width: 560px;
}

.about-advantage-item__copy h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-advantage-item__copy p,
.about-advantages-longform__statement p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.28vw, 20px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
}

.about-advantage-item__media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 44px rgba(7,22,27,.09);
  justify-self: end;
}

.about-advantage-item__media img {
  display: block;
  width: 100%;
  height: auto;
}

.about-advantages-longform__statement {
  width: min(860px, 100%);
  margin: clamp(58px, 8vw, 110px) auto 0;
  padding: clamp(8px, 1.5vw, 18px) 0;
  text-align: center;
}

.about-advantages-longform__statement h3 {
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.about-advantages-longform__statement--proof {
  width: min(1120px, 100%);
}

.about-advantages-longform__statement--proof > h3,
.about-advantages-longform__statement--proof > p {
  width: min(860px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.about-proof-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  width: min(1080px, 100%);
  margin: clamp(34px, 4.8vw, 58px) auto 0;
}

.about-proof-gallery__item {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 36px rgba(28, 55, 68, .10);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .72s ease,
    transform .72s ease,
    box-shadow .28s ease;
}

.about-proof-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-proof-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(28, 55, 68, .14);
}

.about-advantages-longform__statement.in .about-proof-gallery__item {
  opacity: 1;
  transform: translateY(0);
}

.about-advantages-longform__statement.in .about-proof-gallery__item:hover {
  transform: translateY(-4px);
  transition-delay: 0s, 0s, 0s;
}

.about-proof-gallery__item:nth-child(1) { transition-delay: .02s, .02s, 0s; }
.about-proof-gallery__item:nth-child(2) { transition-delay: .10s, .10s, 0s; }
.about-proof-gallery__item:nth-child(3) { transition-delay: .18s, .18s, 0s; }
.about-proof-gallery__item:nth-child(4) { transition-delay: .26s, .26s, 0s; }
.about-proof-gallery__item:nth-child(5) { transition-delay: .34s, .34s, 0s; }
.about-proof-gallery__item:nth-child(6) { transition-delay: .42s, .42s, 0s; }
.about-proof-gallery__item:nth-child(7) { transition-delay: .50s, .50s, 0s; }
.about-proof-gallery__item:nth-child(8) { transition-delay: .58s, .58s, 0s; }

.future-outlook-section {
  width: 100vw;
  margin: clamp(64px, 8vw, 116px) 0 0 calc(50% - 50vw);
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.future-outlook-section__intro {
  position: absolute;
  z-index: 3;
  top: clamp(44px, 7vw, 86px);
  left: 50%;
  width: min(820px, calc(100% - 48px));
  margin: 0;
  transform: translateX(-50%);
  color: rgba(246,250,251,.94);
}

.future-outlook-section__intro::before {
  content: "";
  position: absolute;
  inset: -22px -82px -30px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(4,16,24,.42), rgba(4,16,24,.18) 48%, rgba(4,16,24,0) 76%);
  pointer-events: none;
}

.future-outlook-section__intro h3 {
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: rgba(248,251,252,.96);
  text-shadow: 0 2px 20px rgba(0,0,0,.44);
}

.future-outlook-section__intro p {
  margin: 0 auto;
  color: rgba(226,236,240,.86);
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.9;
  text-shadow: 0 2px 18px rgba(0,0,0,.36);
}

.future-outlook-section__map-stage {
  position: relative;
  height: clamp(560px, 56.3vw, 820px);
  overflow: hidden;
  background-color: #07161b;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1080px) {
  .about-advantages-longform {
    padding: 0 24px;
  }

  .about-advantages-longform__background {
    background-size: auto 100%;
    background-position: center top;
  }

  .about-advantages-longform__background.is-bg-loaded {
    opacity: .58;
  }

  .about-advantages-longform__content {
    padding: 72px 0 0;
  }

  .about-advantages-longform__hero {
    min-height: 320px;
  }

  .about-advantage-item,
  .about-advantage-item--reverse {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 28px 0;
  }

  .about-advantage-item--reverse .about-advantage-item__copy,
  .about-advantage-item--reverse .about-advantage-item__media {
    grid-column: auto;
    grid-row: auto;
  }

  .about-advantage-item--reverse .about-advantage-item__copy {
    justify-self: stretch;
    width: 100%;
  }

  .about-advantage-item:not(.about-advantage-item--reverse) > .about-advantage-item__copy {
    justify-self: stretch;
    width: 100%;
  }

  .about-advantage-item--reverse .about-advantage-item__media {
    order: -1;
  }

  .about-advantage-item__copy {
    max-width: none;
  }

  .future-outlook-section {
    margin-top: 72px;
  }

  .future-outlook-section__map-stage {
    height: clamp(520px, 62vw, 680px);
  }
}

@media (max-width: 640px) {
  .about-advantages-longform {
    padding: 0 18px;
  }

  .about-advantages-longform__background.is-bg-loaded {
    opacity: .42;
  }

  .about-advantages-longform__content {
    padding: 58px 0 0;
  }

  .about-advantages-longform__hero {
    min-height: 260px;
  }

  .about-advantages-longform__hero h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .about-advantages-longform__core {
    gap: 26px;
  }

  .about-advantages-longform__core > h3,
  .about-advantages-longform__statement h3,
  .future-outlook-section__intro h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .about-advantage-item {
    gap: 16px;
    padding: 20px 0;
  }

  .about-advantage-item__copy h4 {
    margin-bottom: 10px;
    font-size: clamp(21px, 6.6vw, 27px);
  }

  .about-advantage-item__copy p,
  .about-advantages-longform__statement p {
    font-size: 16px;
    line-height: 1.82;
  }

  .about-advantage-item__media {
    border-radius: 18px;
  }

  .about-advantages-longform__statement {
    margin-top: 46px;
    text-align: left;
  }

  .about-advantages-longform__statement--proof {
    text-align: center;
  }

  .about-proof-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .about-proof-gallery__item {
    border-radius: 10px;
  }

  .future-outlook-section {
    margin-top: 52px;
  }

  .future-outlook-section__intro {
    top: 28px;
    width: min(100%, calc(100vw - 36px));
  }

  .future-outlook-section__intro p {
    font-size: 16px;
    line-height: 1.82;
  }

  .future-outlook-section__map-stage {
    height: 460px;
  }
}

.case-status-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
}

.case-status-panel {
  padding: clamp(28px, 4vw, 46px);
}

.case-status-panel h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: var(--fluid-section-title);
  line-height: 1.18;
}

.about-strength-grid {
  align-items: stretch;
}

.about-strength-section {
  padding: clamp(76px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 228, 232, .32), transparent 34%),
    linear-gradient(180deg, #F7F8F6 0%, #FFFFFF 100%);
}

.about-strength-layout {
  display: grid;
  grid-template-columns: minmax(260px, .32fr) minmax(0, .68fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: start;
}

.about-strength-intro {
  max-width: 390px;
}

.about-strength-intro .eyebrow {
  margin: 0 0 12px;
}

.about-strength-intro h2 {
  margin: 0 0 clamp(18px, 2vw, 24px);
  color: var(--ink);
  font-size: var(--fluid-section-title);
  line-height: 1.16;
}

.about-strength-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.16vw, 19px);
  line-height: 1.9;
  text-align: left;
  text-indent: 2em;
}

.about-strength-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.about-strength-card {
  min-height: clamp(230px, 22vw, 300px);
  padding: clamp(22px, 2.2vw, 30px);
  border: 1px solid rgba(23, 52, 63, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
}

.about-strength-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.34;
}

.about-strength-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.9;
  text-align: left;
  text-indent: 2em;
}

.about-strength-cold-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(230px, .34fr) minmax(0, .66fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  min-height: 0;
}

.about-strength-quality-card {
  grid-column: 1 / -1;
  min-height: 0;
}

.about-strength-quality-copy {
  max-width: 980px;
  min-height: 0;
}

.about-strength-quality-copy .btn {
  text-indent: 0;
}

.about-strength-cold-copy {
  min-width: 0;
}

.about-strength-cold-copy h3 {
  margin-bottom: 12px;
}

.about-strength-cold-metric {
  display: grid;
  gap: 6px;
  margin-top: clamp(18px, 2.4vw, 28px);
}

.about-strength-cold-metric strong {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: 0;
}

.about-strength-cold-metric span {
  color: rgba(23, 52, 63, .68);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 700;
  line-height: 1.35;
}

.about-cold-storage-media {
  margin: 0;
}

.about-cold-storage-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(280px, 30vw, 420px);
  border-radius: 18px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 22px 56px rgba(7, 22, 27, .14);
}

.about-strength-quality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(18px, 2.3vw, 28px) 0 0;
  padding: 0;
  list-style: none;
}

.about-strength-quality-tags li {
  border: 1px solid rgba(23, 52, 63, .14);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .66);
  color: rgba(23, 52, 63, .78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.about-strength-quality-cta {
  width: fit-content;
  margin-top: clamp(18px, 2.4vw, 30px);
  padding: 10px 16px;
  border-color: rgba(23, 52, 63, .34);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: none;
}

.about-strength-quality-cta .arrow {
  opacity: .72;
}

.about-strength-quality-cta:hover,
.about-strength-quality-cta:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 22, 27, .12);
  transform: translateY(-1px);
}

.about-strength-quality-cta:hover .arrow,
.about-strength-quality-cta:focus-visible .arrow {
  opacity: 1;
}

@media (max-width: 960px) {
  .about-strength-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-strength-intro {
    max-width: 680px;
  }

  .about-strength-cold-card {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .about-strength-section {
    padding: 64px 0;
  }

  .about-strength-cards {
    grid-template-columns: 1fr;
  }

  .about-cold-storage-media img {
    border-radius: 16px;
  }
}

.about-vision-section {
  margin-top: -1px;
  padding: clamp(96px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 228, 232, .42), transparent 34%),
    linear-gradient(180deg, #EEF5F7 0%, #F5F8F8 100%);
}

.about-vision-content {
  display: grid;
  place-items: center;
  text-align: center;
}

.about-vision-content > .reveal {
  width: min(820px, 100%);
}

.about-vision-section h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: var(--fluid-section-title);
  line-height: 1.16;
}

.about-vision-section h2 {
  margin-bottom: clamp(22px, 2.8vw, 34px);
  font-size: clamp(42px, 4.8vw, 62px);
}

.about-vision-section p {
  max-width: var(--site-reading-max);
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.9;
}

.vision-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 38px);
}

.strength-list {
  display: grid;
  gap: 18px;
}

.strength-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(216, 224, 226, .86);
}

.strength-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.news-archive-card {
  overflow: hidden;
}

.news-list-section {
  background: linear-gradient(180deg, #F7FAFA 0%, #FFFFFF 100%);
}

.news-section-stack {
  display: grid;
  gap: clamp(26px, 3vw, 38px);
}

.news-list-window {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(216, 224, 226, .86);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 42px rgba(7, 22, 27, .06);
}

.news-list-head {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(216, 224, 226, .86);
}

.news-list-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.2;
}

.news-list-group {
  display: grid;
}

.news-list-item {
  display: grid;
  grid-template-columns: clamp(128px, 14vw, 184px) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  padding: clamp(22px, 2.4vw, 30px) 0;
  border-bottom: 1px solid rgba(216, 224, 226, .72);
  transition: box-shadow .22s ease, transform .22s ease, padding-inline .22s ease;
}

.news-list-item:last-child {
  border-bottom: 0;
}

.news-list-item:hover,
.news-list-item:focus-within {
  padding-inline: clamp(10px, 1vw, 16px);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(7, 22, 27, .07);
  transform: translateY(-1px);
}

.news-list-cover {
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(216, 224, 226, .72);
  border-radius: 14px;
  background: #F3F7F8;
}

.news-list-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-list-main {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.news-list-main h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.42;
}

.news-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: rgba(23, 52, 63, .56);
  font-size: 13px;
  line-height: 1.4;
}

.news-list-main p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.news-list-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: max-content;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(185, 204, 210, .88);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  font-weight: 740;
  line-height: 1;
  transition: color 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.news-list-link .arrow {
  display: inline-block;
  transform: none;
}

.news-list-link:hover,
.news-list-link:focus-visible {
  border-color: rgba(187, 47, 52, .42);
  background: #F8FBFC;
  color: var(--accent-red);
}

.news-list-link.is-disabled {
  border-color: rgba(216, 224, 226, .72);
  background: rgba(248, 251, 252, .72);
  color: rgba(23, 52, 63, .42);
  cursor: default;
}

:is(#major-news, #enterprise-news) .news-list-item,
:is(#major-news, #enterprise-news) .news-list-item:hover,
:is(#major-news, #enterprise-news) .news-list-item:focus-within {
  padding-inline: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  filter: none;
  transition: none;
}

:is(#major-news, #enterprise-news) .news-list-cover,
:is(#major-news, #enterprise-news) .news-list-cover img {
  transform: none;
  filter: none;
  transition: none;
  will-change: auto;
}

.news-list-empty {
  padding: clamp(22px, 3vw, 34px) 0 4px;
  color: rgba(23, 52, 63, .56);
  font-size: 15px;
  line-height: 1.7;
}

.news-detail-section {
  background: linear-gradient(180deg, #F7FAFA 0%, #FFFFFF 100%);
}

.news-detail-container {
  max-width: 900px;
}

.news-detail-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--muted);
  font-weight: 720;
  transition: color .22s ease;
}

.news-detail-back:hover,
.news-detail-back:focus-visible {
  color: var(--accent-red);
}

.news-detail-head {
  display: grid;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(216, 224, 226, .86);
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(23, 52, 63, .58);
  font-size: 14px;
}

.news-detail-meta span:first-child {
  color: var(--accent-red);
  font-weight: 760;
}

.news-detail-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.24;
}

.news-detail-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.8;
}

.news-detail-cover {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(216, 224, 226, .86);
  border-radius: 18px;
  background: var(--research-bg);
}

.news-detail-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail-content {
  margin-top: 34px;
  color: var(--ink);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.92;
}

.news-detail-content p {
  margin: 0 0 1.2em;
  text-indent: 2em;
}

.news-detail-content p:last-child {
  margin-bottom: 0;
}

.news-detail-status {
  margin: 26px 0 0;
  color: var(--accent-red);
}

.news-archive-cover {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--research-bg);
}

.news-archive-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-archive-copy {
  padding: clamp(20px, 2vw, 28px);
}

.news-archive-copy time {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-red);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.news-archive-copy h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.38;
}

.news-archive-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.news-archive-copy a {
  color: var(--ink);
  font-weight: 700;
}

.contact-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.contact-scope-grid article {
  min-width: 0;
  border: 1px solid rgba(216, 224, 226, .78);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  padding: 14px;
}

.contact-scope-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.contact-scope-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 16px;
}

/* Contact page clean inquiry form */
.contact-section {
  background: linear-gradient(180deg, #F8FAFA 0%, #FFFFFF 100%);
}

.contact-section .contact-layout {
  display: block;
  width: min(calc(100% - var(--site-gutter) - var(--site-gutter)), 960px);
  max-width: 960px;
  margin-inline: auto;
}

.contact-form-heading {
  margin: 0 0 clamp(28px, 3.2vw, 42px);
  color: #6D9FB6;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.contact-section .contact-form-card {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.contact-section .contact-form-card::before {
  content: none;
}

.contact-section .contact-form-card > * {
  position: static;
  z-index: auto;
}

.contact-section .contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 15px;
  margin: 0;
  align-items: start;
}

.contact-section .contact-field {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 7px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.contact-section .contact-field--full {
  grid-column: 1 / -1;
}

.contact-section .contact-field input,
.contact-section .contact-field textarea {
  width: 100%;
  margin: 0;
  border: 1px solid #CFDADD;
  border-radius: 12px;
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: none;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.contact-section .contact-field input {
  height: 50px;
  padding: 0 16px;
}

.contact-section .contact-field textarea {
  min-height: 124px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-section .contact-field input::placeholder,
.contact-section .contact-field textarea::placeholder {
  color: #93A3A8;
}

.contact-section .contact-field input:focus,
.contact-section .contact-field textarea:focus {
  border-color: #4D91AD;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(77, 145, 173, .12);
}

.contact-section .contact-field input:focus-visible,
.contact-section .contact-field textarea:focus-visible,
.contact-section .contact-submit:focus-visible {
  outline: 2px solid rgba(77, 145, 173, .34);
  outline-offset: 3px;
}

.contact-section .contact-field input[aria-invalid="true"],
.contact-section .contact-field textarea[aria-invalid="true"] {
  border-color: rgba(201, 40, 45, .72);
  box-shadow: 0 0 0 3px rgba(201, 40, 45, .08);
}

.contact-section .field-error {
  min-height: 0;
  color: var(--accent-red);
  font-size: 12px;
  line-height: 1.5;
}

.contact-section .field-error:empty {
  display: none;
}

.contact-section .contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(220px, 100%);
  min-height: 50px;
  margin: 24px auto 0;
  border-color: #6D9FB6;
  background: #6D9FB6;
  color: #FFFFFF;
  box-shadow: none;
}

.contact-section .contact-submit:hover {
  border-color: #5B8FA6;
  background: #5B8FA6;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: none;
}

.contact-section .form-status {
  min-height: 22px;
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.contact-section .form-status.is-warning,
.contact-section .form-status.is-error,
.contact-section .form-status.is-success {
  padding-left: 0;
}

.contact-section .form-status.is-warning::before,
.contact-section .form-status.is-error::before,
.contact-section .form-status.is-success::before {
  content: none;
}

.contact-section .form-status.is-warning { color: #6F7E84; }
.contact-section .form-status.is-error { color: var(--accent-red); }
.contact-section .form-status.is-success { color: #2F7A69; }

.contact-unified-section {
  background: linear-gradient(180deg, #F5F8F8 0%, #FFFFFF 100%);
}

.contact-unified {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
}

.contact-unified-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: clamp(24px, 3.8vw, 52px);
  align-items: start;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(178, 203, 209, .42);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
}

.contact-unified-block {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.contact-unified-block h2,
.contact-agent-list h3 {
  margin: 0;
  color: #1E5663;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
}

.contact-unified-block dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-unified-block dl div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
}

.contact-unified-block dt {
  color: var(--muted);
  font-size: 14px;
}

.contact-unified-block dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 650;
  line-height: 1.65;
}

.contact-unified-block a {
  color: inherit;
  transition: color .22s ease;
}

.contact-unified-block a:hover,
.contact-unified-block a:focus-visible {
  color: var(--accent-red);
}

.contact-unified-qrs {
  display: flex;
  gap: clamp(16px, 2.3vw, 24px);
  align-items: flex-start;
  justify-content: flex-end;
}

.contact-unified-qrs figure {
  width: clamp(118px, 11vw, 148px);
  margin: 0;
  text-align: center;
}

.contact-unified-qrs img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 8px;
  border: 1px solid rgba(178, 203, 209, .58);
  border-radius: 14px;
  background: rgba(255, 255, 255, .88);
}

.contact-unified-qrs figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-manager-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(26px, 3.6vw, 40px);
  border: 1px solid rgba(178, 203, 209, .42);
  border-radius: 24px;
  background: rgba(255, 255, 255, .7);
}

.contact-manager-info {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.contact-manager-info h2 {
  margin: 0;
  color: #1E5663;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
}

.contact-manager-info dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-manager-info dl div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
}

.contact-manager-info dt {
  color: var(--muted);
  font-size: 14px;
}

.contact-manager-info dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 650;
  line-height: 1.65;
}

.contact-manager-info a {
  color: inherit;
  transition: color .22s ease;
}

.contact-manager-info a:hover,
.contact-manager-info a:focus-visible {
  color: var(--accent-red);
}

.contact-manager-qr {
  width: clamp(126px, 12vw, 160px);
  margin: 0;
  text-align: center;
}

.contact-manager-qr img {
  display: block;
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid rgba(178, 203, 209, .58);
  border-radius: 14px;
  background: rgba(255, 255, 255, .88);
}

.contact-manager-qr figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-agent-list {
  display: grid;
  gap: 22px;
}

.contact-agent-table {
  display: grid;
  border-top: 1px solid rgba(178, 203, 209, .54);
}

.contact-agent-row {
  display: grid;
  grid-template-columns: minmax(96px, .48fr) minmax(178px, .88fr) minmax(260px, 1.55fr) minmax(150px, .72fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(178, 203, 209, .42);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-agent-row--head {
  padding: 14px 0;
  color: #6D7F86;
  font-size: 13px;
  font-weight: 700;
}

.contact-agent-row strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.contact-agent-region {
  color: #1E5663;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .contact-unified-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contact-unified-qrs {
    justify-content: flex-end;
  }
}

.case-empty-section {
  min-height: clamp(320px, 42vw, 520px);
  background: var(--site-page-bg, #F8F9F8);
}

.case-empty-section .container {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-empty-section p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 720px) {
  .contact-section .contact-layout {
    width: min(calc(100% - 40px), 100%);
  }

  .contact-section .contact-form-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form-heading {
    margin-bottom: 26px;
    font-size: 20px;
  }

  .contact-section .contact-submit {
    width: 100%;
  }

  .contact-unified {
    gap: 34px;
  }

  .contact-unified-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px;
  }

  .contact-unified-block dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-unified-qrs {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-unified-qrs figure {
    width: min(138px, 42vw);
  }

  .contact-manager-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px;
  }

  .contact-manager-info dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-manager-qr {
    width: min(150px, 48vw);
  }

  .contact-agent-row,
  .contact-agent-row--head {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .contact-agent-row--head {
    display: none;
  }
}

@media (max-width: 1080px) {
  .news-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .application-showcase {
    --application-text-left: clamp(12px, 1.7vw, 24px);
    --application-text-right: clamp(8px, 1.4vw, 16px);
    --application-text-bottom: clamp(30px, 4vw, 44px);
    min-height: 0;
  }

  .application-title-rail {
    min-height: clamp(96px, 10vw, 120px);
    padding-inline: clamp(24px, 4vw, 48px);
  }

  .application-panels {
    min-height: clamp(500px, 56vw, 640px);
  }

  .application-panel.is-active {
    flex: 5.4 1 0%;
  }

  .application-panel-content {
    max-width: 560px;
  }

  .application-panel-heading h3 {
    font-size: clamp(22px, 3vw, 30px);
  }

  .application-panel:not(.is-active) .application-panel-heading h3 {
    font-size: clamp(14px, 1.8vw, 18px);
  }

  .application-panel-copy p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .nav-primary-link {
    white-space: normal;
  }

  .products-hero p {
    font-size: 15px;
  }

  .news-archive-grid,
  .contact-scope-grid {
    grid-template-columns: 1fr;
  }

  .news-list-window {
    padding: 22px;
    border-radius: 18px;
  }

  .news-list-item {
    grid-template-columns: 1fr;
  }

  .news-list-item {
    gap: 14px;
  }

  .news-list-action {
    justify-self: start;
  }

  .application-showcase {
    --application-text-left: 22px;
    --application-text-right: 22px;
    --application-text-bottom: 24px;
    display: block;
    width: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .application-title-rail {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 16px;
    min-height: 72px;
    padding: 18px 22px;
  }

  .application-title-rail::after {
    content: none;
  }

  .application-title-rail p,
  .application-title-rail h2 {
    writing-mode: horizontal-tb;
  }

  .application-title-rail p {
    max-width: 96px;
    font-size: 10px;
    line-height: 1.4;
  }

  .application-title-rail h2 {
    font-size: 32px;
  }

  .application-panels {
    display: flex;
    width: 100%;
    min-height: min(540px, 118vw);
    min-width: 0;
  }

  .application-panel {
    flex: 1 1 0%;
    min-width: 0;
    min-height: inherit;
    border-left: 1px solid rgba(255, 255, 255, .48);
    border-top: 0;
    transition: flex-grow .48s cubic-bezier(.22, 1, .36, 1);
    will-change: flex-grow;
  }

  .application-panel:first-child {
    border-left: 0;
  }

  .application-panel.is-active {
    flex: 5.8 1 0%;
    min-height: inherit;
  }

  .application-panel-content,
  .application-panel:not(.is-active) .application-panel-content {
    left: var(--application-text-left);
    right: var(--application-text-right);
    bottom: var(--application-text-bottom);
    width: auto;
    max-width: none;
    padding: 0;
    transform: none;
    transition: none;
  }

  .application-panel-heading p {
    display: none;
  }

  .application-panel:not(.is-active) .application-panel-heading p {
    display: none;
  }

  .application-panel.is-active .application-panel-heading p {
    display: block;
  }

  .application-panel-heading h3 {
    writing-mode: horizontal-tb;
    font-size: 24px;
    line-height: 1.18;
  }

  .application-panel:not(.is-active) .application-panel-heading h3 {
    writing-mode: horizontal-tb;
    font-size: 15px;
    line-height: 1.16;
  }

  .application-panel-copy {
    max-width: none;
    bottom: clamp(124px, 34vw, 148px);
    gap: 8px;
  }

  .application-panel-solution {
    max-width: none;
    font-size: 16px;
    line-height: 1.36;
  }

  .application-panel:not(.is-active) .application-panel-copy {
    display: none;
  }

  .application-panel.is-active .application-panel-copy {
    display: grid;
  }

  .application-panel-copy p {
    font-size: 14px;
    line-height: 1.58;
  }

  .application-panel-index,
  .application-panel:not(.is-active) .application-panel-index {
    bottom: 64px;
    width: 38px;
    height: 38px;
  }

  .case-status-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-status-panel .btn {
    width: 100%;
  }

  .case-status-panel .btn {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .application-showcase {
    --application-text-left: 18px;
    --application-text-right: 18px;
    --application-text-bottom: 20px;
  }

  .application-panel-heading h3 {
    font-size: 22px;
  }

  .application-panel:not(.is-active) .application-panel-heading h3 {
    font-size: 14px;
  }

  .application-panel-copy {
    bottom: 118px;
  }

  .application-panel-solution {
    font-size: 15px;
  }

  .application-panel-copy p {
    font-size: 13px;
    line-height: 1.52;
  }
}

@media (prefers-reduced-motion: reduce) {
  .application-panel,
  .application-panel-image,
  .application-panel::after,
  .application-panel-heading p,
  .application-panel-heading h3,
  .application-panel-solution,
  .application-panel-copy,
  .application-panel-index {
    transition: none;
  }

  .application-panel,
  .application-panel-image {
    will-change: auto;
  }

  .application-panel-image,
  .application-panel.is-active .application-panel-image {
    transform: translateZ(0);
  }
}

/* Homepage hero copy adjustment */
.hero-carousel .hero-content {
  justify-content: flex-start;
}

.hero-carousel .hero-copy {
  width: min(900px, 100%);
  max-width: 900px;
}

.hero-carousel .hero-title,
.hero-carousel .hero-copy h1 {
  max-width: min(860px, 100%);
  margin: 0;
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-carousel .hero-title-line {
  display: block;
}

.hero-carousel .hero-title-line + .hero-title-line {
  margin-top: .03em;
}

.hero-carousel .hero-subtitle,
.hero-carousel .hero-copy p.hero-subtitle {
  width: max-content;
  max-width: min(920px, 100%);
  margin-top: clamp(14px, 1.35vw, 20px);
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.08vw, 19px);
  font-weight: 400;
  line-height: 1.54;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .hero-carousel .hero-title,
  .hero-carousel .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(31px, 6.6vw, 44px);
    line-height: 1.15;
  }

  .hero-carousel .hero-subtitle,
  .hero-carousel .hero-copy p.hero-subtitle {
    width: auto;
    max-width: min(720px, 100%);
    font-size: 16px;
    line-height: 1.68;
  }
}

@media (max-width: 560px) {
  .hero-carousel .hero-title,
  .hero-carousel .hero-copy h1 {
    font-size: clamp(27px, 7.6vw, 35px);
    line-height: 1.16;
  }

  .hero-carousel .hero-subtitle,
  .hero-carousel .hero-copy p.hero-subtitle {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.66;
  }
}

/* Homepage brand profile */
.home-brand-profile {
  display: block;
  padding: clamp(78px, 6vw, 92px) 0;
  background: linear-gradient(180deg, #F3F7F8 0%, #EAF1F3 100%);
  overflow: visible;
}

.home-brand-profile-layout {
  display: grid;
  gap: clamp(32px, 4vw, 52px);
  align-items: start;
}

.home-brand-profile-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: min(980px, 100%);
  gap: clamp(16px, 2vw, 22px);
  min-width: 0;
}

.home-brand-profile-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  height: clamp(380px, 48vw, 640px);
  overflow: hidden;
}

.home-brand-profile-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  filter: none;
  transform: none;
  transition: opacity .48s ease;
  backface-visibility: hidden;
  pointer-events: none;
}

.home-brand-profile-image.is-active {
  opacity: 1;
}

.home-brand-profile-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(23, 52, 63, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  transition:
    color .22s ease,
    border-color .22s ease,
    background-color .22s ease;
}

.home-brand-profile-toggle:hover,
.home-brand-profile-toggle:focus-visible {
  color: var(--accent-red);
  border-color: rgba(201, 37, 45, .42);
  background: rgba(255, 255, 255, .34);
}

.home-brand-profile-toggle:focus-visible {
  outline: 2px solid rgba(204, 37, 45, .7);
  outline-offset: 3px;
}

.home-brand-profile-copy {
  justify-self: center;
  min-width: 0;
  width: min(1200px, 100%);
  padding: 0 2px;
  text-align: center;
}

.home-brand-profile-eyebrow {
  margin: 0 0 12px;
  color: rgba(19, 50, 63, .62);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
}

.home-brand-profile-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
}

.home-brand-profile-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.9;
  text-indent: 2em;
}

.home-brand-profile-copy p + p {
  margin-top: 14px;
}

.home-brand-profile-copy strong {
  color: var(--ink);
  font-weight: 750;
}

@media (max-width: 1050px) and (min-width: 769px) {
  .home-brand-profile-media {
    width: min(860px, 100%);
  }

  .home-brand-profile-copy p {
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.82;
  }
}

@media (max-width: 768px) {
  .home-brand-profile {
    padding: 72px 0;
  }

  .home-brand-profile-layout {
    gap: 18px;
  }

  .home-brand-profile-media {
    width: 100%;
    gap: 14px;
    margin-top: 10px;
  }

  .home-brand-profile-copy {
    padding-top: 2px;
  }

  .home-brand-profile-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .home-brand-profile-copy p {
    font-size: 16px;
    line-height: 1.78;
  }

  .home-brand-profile-stage {
    height: clamp(300px, 68vw, 440px);
  }
}
