:root {
  --ink: #071826;
  --navy: #082033;
  --navy-2: #0d2c45;
  --steel: #607080;
  --muted: #8a98a7;
  --line: #dce4eb;
  --soft: #f4f8fb;
  --white: #ffffff;
  --blue: #0077c8;
  --blue-2: #00a8e8;
  --green: #00a36c;
  --red: #d7192a;
  --shadow: 0 24px 70px rgba(8, 32, 51, 0.18);
  --radius: 6px;
  font-synthesis-weight: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

body[data-lang="cn"] {
  font-family: Inter, "Noto Sans SC", system-ui, sans-serif;
}

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 42px;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header[data-elevated="true"],
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 44px rgba(7, 24, 38, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 156px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 82px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.site-header[data-elevated="true"] .brand img,
.site-header.menu-open .brand img {
  filter: none;
}

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

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
  opacity: 0.9;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue-2);
  transition: right 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch,
.ghost-btn,
.primary-btn,
.video-btn,
.menu-toggle,
.close-btn {
  border: 0;
}

.lang-switch,
.ghost-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  padding: 0 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

.site-header[data-elevated="true"] .lang-switch,
.site-header[data-elevated="true"] .ghost-btn,
.site-header.menu-open .lang-switch,
.site-header.menu-open .ghost-btn {
  border-color: var(--line);
  background: var(--white);
}

.primary-btn,
.video-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #004c95);
  box-shadow: 0 14px 32px rgba(0, 119, 200, 0.28);
}

.primary-btn.small {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 13px;
}

.video-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.primary-btn:hover,
.video-btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 34px;
  padding: 112px 56px 54px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--navy);
}

.hero-media video,
.motion-fallback,
.motion-fallback span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media video,
.motion-fallback span {
  object-fit: cover;
}

.motion-fallback {
  opacity: 0;
}

.video-missing .motion-fallback {
  opacity: 1;
}

.video-missing .hero-media video {
  opacity: 0;
}

.motion-fallback span {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fallbackPan 18s infinite;
}

.motion-fallback span:nth-child(2) {
  animation-delay: 6s;
}

.motion-fallback span:nth-child(3) {
  animation-delay: 12s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 22, 0.92) 0%, rgba(3, 19, 33, 0.72) 42%, rgba(3, 20, 31, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.56));
  z-index: 2;
}

.scanline {
  position: absolute;
  inset: auto 0 19%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 168, 232, 0.62), transparent);
  z-index: 3;
  animation: scan 5s ease-in-out infinite;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 18px;
  font-size: clamp(48px, 5.7vw, 78px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.56;
  color: rgba(255, 255, 255, 0.82);
}

.finder {
  width: min(690px, 100%);
  padding: 15px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.finder label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.search-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 10px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.search-tab {
  min-height: 30px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.search-tab.active {
  background: var(--white);
  color: var(--ink);
}

.finder-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px 8px 8px 14px;
  color: var(--ink);
}

.finder-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.finder-row button {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 0 16px;
  font-weight: 750;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.filter-chip,
.family-tab {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 750;
}

.filter-chip.active,
.family-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-proof {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.hero-proof strong {
  display: block;
  font-size: 31px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.scroll-cue {
  position: absolute;
  right: 40px;
  bottom: 34px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  animation: floatY 2.2s ease-in-out infinite;
}

.buyer-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 56px;
  margin-top: -24px;
  position: relative;
  z-index: 5;
}

.buyer-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-right: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(7, 24, 38, 0.1);
}

.buyer-card:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.buyer-card:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.buyer-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.buyer-card i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 26px 0 28px;
  border-radius: var(--radius);
  background: #e8f6fd;
  color: var(--blue);
}

.buyer-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.16;
}

.buyer-card p {
  margin: 0;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.58;
}

.section {
  padding: 106px 56px;
}

.subpage-main {
  background: var(--white);
}

.sub-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 470px;
  padding: 132px 56px 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image, url("assets/reference/factory-hero.jpg")) center / cover no-repeat;
  opacity: 0.64;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 22, 0.92), rgba(2, 12, 22, 0.52)),
    linear-gradient(180deg, rgba(2, 12, 22, 0.24), rgba(2, 12, 22, 0.72));
}

.sub-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--white);
}

.sub-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.sub-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.62;
}

.page-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 26px 56px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-search {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  max-width: 680px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  min-height: 48px;
}

.page-search input {
  border: 0;
  padding-inline: 0;
  box-shadow: none;
}

.page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0 13px;
  font-weight: 800;
}

.page-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.content-band {
  padding: 86px 56px;
}

.content-band.soft {
  background: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.48fr);
  gap: 44px;
  align-items: start;
}

.copy-stack h2,
.page-section-head h2 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.copy-stack p,
.page-section-head p {
  max-width: 780px;
  color: var(--steel);
  line-height: 1.72;
}

.info-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 58px rgba(7, 24, 38, 0.08);
}

.info-panel h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--steel);
  line-height: 1.55;
}

.check-list i {
  margin-top: 3px;
  color: var(--green);
}

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

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.listing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.listing-card.image-contain img {
  object-fit: contain;
  padding: 20px;
}

.listing-card-body {
  padding: 22px;
}

.listing-card-body small {
  color: var(--blue);
  font-weight: 850;
  text-transform: uppercase;
}

.listing-card-body h3 {
  margin: 10px 0;
  font-size: 23px;
  line-height: 1.14;
}

.listing-card-body p {
  color: var(--steel);
  line-height: 1.58;
  margin: 0 0 18px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 850;
}

.fa-arrow-down-long {
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-2px);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.data-table th,
.data-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--ink);
  background: #f8fbfd;
  font-size: 13px;
  text-transform: uppercase;
}

.data-table td {
  color: var(--steel);
  line-height: 1.55;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 42px 56px;
  background: var(--ink);
  color: var(--white);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 42px);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-head h2,
.motion-copy h2,
.quality-copy h2,
.contact-copy h2,
.spec-panel h2 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p,
.motion-copy p,
.quality-copy p,
.contact-copy p {
  max-width: 720px;
  color: var(--steel);
  line-height: 1.72;
  font-size: 16px;
}

.product-section {
  background: var(--white);
}

.solution-section {
  background:
    linear-gradient(180deg, #f7fbfe 0%, #ffffff 48%, #f4f8fb 100%);
}

.solution-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 22px;
}

.solution-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(7, 24, 38, 0.14);
}

.solution-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.solution-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 22, 36, 0.68), rgba(5, 22, 36, 0.08)),
    linear-gradient(180deg, transparent, rgba(5, 22, 36, 0.42));
}

.solution-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(360px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.solution-badge span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-badge strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.05;
}

.solution-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.solution-copy h3 {
  margin: 14px 0 14px;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.02;
  letter-spacing: 0;
}

.solution-copy p {
  margin: 0;
  color: var(--steel);
  line-height: 1.7;
}

.standard-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.standard-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  color: var(--ink);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 800;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ghost-dark-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0 18px;
  font-weight: 800;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.solution-card {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.solution-card:hover {
  background: #f8fbfd;
  transform: translateY(-3px);
}

.solution-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.solution-card h3 {
  margin: 44px 0 12px;
  font-size: 21px;
  line-height: 1.16;
}

.solution-card p {
  margin: 0;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.58;
}

.product-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
}

.product-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.family-tab {
  justify-content: flex-start;
  width: 100%;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.family-tab.active {
  background: var(--ink);
  border-color: var(--ink);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 119, 200, 0.42);
  box-shadow: 0 20px 50px rgba(7, 24, 38, 0.12);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: #edf3f7;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.45s ease;
}

.product-image.image-fill img {
  object-fit: cover;
  padding: 0;
}

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

.product-body {
  padding: 20px 20px 16px;
}

.product-body p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.product-body span {
  color: var(--steel);
  font-size: 14px;
  line-height: 1.55;
}

.product-card > button {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

.spec-band {
  padding: 0 56px 96px;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.spec-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr) auto;
  align-items: center;
  gap: 32px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.spec-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
}

.spec-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.spec-panel dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-panel dt {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-panel dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.applications {
  background: var(--soft);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.application-item {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.application-item i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border-radius: var(--radius);
  background: #e8f6fd;
  color: var(--blue);
}

.application-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.application-item p {
  margin: 0;
  color: var(--steel);
  line-height: 1.55;
  font-size: 14px;
}

.application-item .inline-link i {
  width: auto;
  height: auto;
  display: inline-block;
  place-items: initial;
  margin: 0;
  border-radius: 0;
  background: none;
  color: var(--blue);
}

.motion-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
  padding: 110px 56px;
  background: var(--ink);
  color: var(--white);
}

.motion-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.support-steps {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.support-steps div {
  display: grid;
  grid-template-columns: 58px 110px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.support-steps span {
  color: var(--blue-2);
  font-weight: 800;
}

.support-steps strong {
  font-size: 18px;
}

.support-steps p {
  margin: 0;
  font-size: 14px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-frame button {
  position: absolute;
  left: 22px;
  bottom: 22px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  padding: 0 16px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.resources {
  background: var(--white);
}

.resource-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.resource-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px 48px;
  align-items: center;
  min-height: 86px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.resource-row span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 19px;
  font-weight: 800;
}

.resource-row span i {
  color: var(--blue);
}

.resource-row small {
  color: var(--steel);
  font-size: 14px;
}

.resource-row > i {
  color: var(--blue);
  transition: transform 0.2s ease;
}

.resource-row:hover > i {
  transform: translateY(4px);
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 56px;
  padding: 110px 56px;
  background: var(--soft);
}

.quality-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.quality-media img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.quality-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.quality-metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quality-metrics strong {
  display: block;
  font-size: 30px;
}

.quality-metrics span {
  color: var(--steel);
  font-size: 13px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: 56px;
  padding: 110px 56px;
  background: var(--white);
}

.contact-form,
.drawer-panel form {
  display: grid;
  gap: 14px;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(7, 24, 38, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 119, 200, 0.1);
}

.floating-quote {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 40;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 170px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 18px 12px;
  font-weight: 800;
  box-shadow: 0 20px 48px rgba(0, 119, 200, 0.3);
}

.floating-quote i {
  writing-mode: horizontal-tb;
}

.quote-drawer,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.quote-drawer {
  background: rgba(7, 24, 38, 0.48);
}

.quote-drawer[aria-hidden="false"],
.video-modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(480px, 100%);
  height: 100%;
  padding: 40px;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow: auto;
}

.quote-drawer[aria-hidden="false"] .drawer-panel {
  transform: translateX(0);
}

.drawer-panel h2 {
  margin: 12px 0 24px;
  font-size: 34px;
  line-height: 1.08;
}

.close-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
}

.drawer-panel .close-btn {
  margin-left: auto;
  margin-bottom: 22px;
}

.video-modal {
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(1, 8, 14, 0.86);
}

.video-modal-panel {
  position: relative;
  width: min(1120px, 100%);
}

.video-modal-panel video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.close-btn.light {
  position: absolute;
  top: -54px;
  right: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  transform: translate(-50%, 24px);
  min-width: 260px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-align: center;
  font-weight: 750;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px 56px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer img {
  width: 96px;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 20px;
  color: var(--white);
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-gallery-main,
.certificate-card,
.news-card,
.contact-card,
.document-card,
.faq-list details,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-gallery-main {
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: 34px;
  background: #f7fbfd;
}

.detail-gallery-main img {
  width: min(520px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-copy h2,
.legal-panel h2 {
  margin: 12px 0 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
}

.detail-copy p,
.legal-panel p {
  color: var(--steel);
  line-height: 1.72;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.spec-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.spec-list dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-weight: 760;
}

.document-grid,
.certificate-grid,
.news-grid,
.contact-grid,
.dealer-flow,
.faq-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.document-card,
.certificate-card,
.news-card,
.contact-card {
  overflow: hidden;
}

.document-card,
.contact-card {
  padding: 24px;
}

.document-card i,
.contact-card i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background: #e8f6fd;
  color: var(--blue);
}

.document-card small,
.news-card small,
.certificate-card small,
.contact-card small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.document-card h3,
.certificate-card h3,
.news-card h3,
.contact-card h3,
.faq-list summary {
  margin: 10px 0;
  font-size: 21px;
  line-height: 1.18;
}

.document-card p,
.certificate-card p,
.news-card p,
.contact-card p {
  margin: 0;
  color: var(--steel);
  line-height: 1.6;
}

.certificate-card img,
.news-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.certificate-card img {
  object-fit: contain;
  padding: 18px;
}

.certificate-card div,
.news-card div {
  padding: 22px;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 820;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--steel);
  line-height: 1.64;
}

.dealer-step {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.dealer-step span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.dealer-step h3 {
  margin: 42px 0 12px;
  font-size: 22px;
}

.dealer-step p {
  margin: 0;
  color: var(--steel);
  line-height: 1.58;
}

.legal-panel {
  max-width: 980px;
  padding: 36px;
}

.legal-panel h3 {
  margin: 30px 0 8px;
  font-size: 22px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  gap: 34px;
  align-items: start;
}

.article-body {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-body h2 {
  margin: 34px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 24px 0 10px;
  font-size: 22px;
}

.article-body p,
.article-body li {
  color: var(--steel);
  line-height: 1.72;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 22px;
  padding-left: 22px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.article-meta span,
.template-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: #f8fbfd;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.article-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.sidebar-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sidebar-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.sidebar-card p {
  margin: 0 0 14px;
  color: var(--steel);
  line-height: 1.6;
}

.sidebar-link-list {
  display: grid;
  gap: 10px;
}

.sidebar-link-list a,
.sidebar-link-list button {
  width: 100%;
  justify-content: space-between;
}

.sidebar-link-list .inline-link i {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: none;
  color: var(--blue);
}

.template-note {
  border-left: 4px solid var(--blue);
  padding: 16px 18px;
  background: #f1f9fd;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.62;
}

.filter-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.case-meta div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.case-meta small {
  color: var(--blue);
  font-weight: 850;
}

.case-meta strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

.article-photo-grid,
.media-card-grid,
.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.article-photo,
.media-card,
.field-card,
.asset-note {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-photo img,
.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.article-photo.contain img,
.media-card.contain img {
  object-fit: contain;
  padding: 16px;
}

.article-photo div,
.media-card div,
.field-card {
  padding: 16px;
}

.article-photo small,
.media-card small,
.field-card small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-photo strong,
.media-card strong,
.field-card strong {
  display: block;
  margin-top: 7px;
  line-height: 1.24;
}

.article-photo p,
.media-card p,
.field-card p,
.asset-note p {
  margin: 8px 0 0;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.58;
}

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

.asset-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  margin: 24px 0;
  background: #f8fbfd;
}

.asset-note i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--blue);
  background: #e8f6fd;
}

.asset-note strong {
  display: block;
  margin-bottom: 4px;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.process-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.process-list p {
  margin: 0;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 24, 38, 0.94), rgba(0, 119, 200, 0.62)),
    url("assets/reference/factory-line.jpg") center / cover;
}

.not-found-card {
  max-width: 740px;
  text-align: center;
}

.not-found-card strong {
  display: block;
  color: var(--blue-2);
  font-size: 110px;
  line-height: 0.9;
}

.not-found-card h1 {
  margin: 18px 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
}

.not-found-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.source-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

@keyframes fallbackPan {
  0% { opacity: 0; transform: scale(1.04); }
  8% { opacity: 1; }
  34% { opacity: 1; transform: scale(1.12) translateX(-2%); }
  42% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.04); }
}

@keyframes scan {
  0%, 100% { transform: translateY(-90px); opacity: 0.2; }
  50% { transform: translateY(120px); opacity: 0.75; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 22px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .primary-nav,
  .header-actions {
    position: fixed;
    left: 0;
    right: 0;
    display: none;
    background: var(--white);
    color: var(--ink);
    padding-inline: 22px;
  }

  .site-header.menu-open .primary-nav {
    top: 76px;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-open .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-open .header-actions {
    top: 414px;
    display: flex;
    flex-wrap: wrap;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .product-shell,
  .solution-feature,
  .article-shell,
  .detail-layout,
  .split-layout,
  .motion-section,
  .quality,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-inline: 28px;
  }

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

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

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

  .document-grid,
  .certificate-grid,
  .news-grid,
  .contact-grid,
  .dealer-flow,
  .article-photo-grid,
  .media-card-grid,
  .faq-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .buyer-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    padding: 28px;
  }

  .buyer-card,
  .buyer-card:first-child,
  .buyer-card:last-child {
    border-radius: 0;
    border: 1px solid var(--line);
  }

  .product-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .family-tab {
    width: auto;
  }

  .spec-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 900px) and (max-height: 800px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    margin-bottom: 14px;
  }

  .hero-copy {
    max-width: 610px;
    margin-bottom: 14px;
    font-size: 15.5px;
    line-height: 1.45;
  }

  .finder {
    padding: 12px;
  }

  .finder label,
  .search-tabs {
    margin-bottom: 8px;
  }

  .filter-chip {
    min-height: 32px;
  }

  .hero-ctas {
    margin-top: 12px;
  }

  .hero-ctas .primary-btn,
  .hero-ctas .video-btn {
    min-height: 42px;
  }

  .hero-proof {
    gap: 8px;
  }

  .article-sidebar {
    position: static;
  }

  .hero-proof div {
    padding: 13px;
  }

  .hero-proof strong {
    font-size: 27px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
  }

  .site-header.menu-open .primary-nav {
    top: 68px;
  }

  .site-header.menu-open .primary-nav a {
    padding: 13px 0;
  }

  .site-header.menu-open .header-actions {
    top: 334px;
  }

  .brand img {
    width: 72px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 980px;
    padding: 112px 18px 48px;
  }

  .hero h1 {
    font-size: 48px;
  }

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

  .finder-row {
    grid-template-columns: auto 1fr;
  }

  .finder-row button {
    grid-column: 1 / -1;
  }

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

  .section,
  .motion-section,
  .quality,
  .contact-section {
    padding: 72px 18px;
  }

  .spec-band {
    padding: 0 18px 72px;
  }

  .product-grid,
  .application-grid,
  .solution-grid,
  .buyer-path,
  .listing-grid,
  .document-grid,
  .certificate-grid,
  .news-grid,
  .contact-grid,
  .dealer-flow,
  .article-photo-grid,
  .media-card-grid,
  .field-grid,
  .faq-columns,
  .spec-list,
  .detail-thumbs,
  .page-tools,
  .cta-band,
  .resource-row,
  .quality-metrics,
  .footer {
    grid-template-columns: 1fr;
  }

  .article-shell,
  .case-meta {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 24px 18px;
  }

  .buyer-path {
    padding: 18px;
  }

  .sub-hero {
    min-height: 420px;
    padding: 108px 18px 54px;
  }

  .page-tools,
  .content-band,
  .cta-band {
    padding-inline: 18px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .buyer-card {
    min-height: 190px;
    box-shadow: none;
  }

  .resource-row {
    gap: 8px;
    padding: 18px 0;
  }

  .support-steps div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .floating-quote {
    top: auto;
    right: 16px;
    bottom: 16px;
    transform: none;
    writing-mode: horizontal-tb;
    min-height: 48px;
    padding: 0 16px;
  }

  .drawer-panel {
    padding: 26px 18px;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}

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