:root {
  --ink: #142033;
  --muted: #637083;
  --line: #dce3ea;
  --brand: #0077b6;
  --brand-2: #00a676;
  --accent: #f3a712;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --deep: #0b1d3a;
  --shadow: 0 18px 50px rgba(17, 33, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.65;
}

section[id] {
  scroll-margin-top: 88px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 15, 31, 0.86) 0%, rgba(3, 15, 31, 0.48) 64%, rgba(3, 15, 31, 0) 100%);
  border-bottom: 1px solid transparent;
  transition: min-height 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(7, 22, 43, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(4, 15, 31, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.26);
}

.brand-name {
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand-2);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav .lang-switch {
  min-width: 42px;
  padding: 6px 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.main-nav .lang-switch::after {
  display: none;
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  min-height: clamp(520px, 74vh, 690px);
  display: grid;
  align-items: center;
  padding: 132px clamp(22px, 6vw, 90px) 86px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(8, 22, 47, 0.88), rgba(8, 22, 47, 0.5), rgba(8, 22, 47, 0.12)),
    url("hero-generated.webp");
  background-position: center;
  background-size: cover;
}

.hero-inner {
  width: min(720px, 100%);
}

.hero-inner > * {
  animation: hero-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-inner > :nth-child(2) {
  animation-delay: 0.08s;
}

.hero-inner > :nth-child(3) {
  animation-delay: 0.16s;
}

.hero-inner > :nth-child(4) {
  animation-delay: 0.24s;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ce6cf;
}

.hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn.primary {
  border-color: var(--brand-2);
  background: var(--brand-2);
  color: #06231d;
}

.btn.secondary {
  color: #fff;
}

.proof-band {
  color: #fff;
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 0;
}

.proof-inner div {
  min-width: 0;
  padding: 0 26px;
  animation: proof-in 0.6s ease-out both;
}

.proof-inner div:first-child {
  padding-left: 0;
}

.proof-inner div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-inner span,
.proof-inner strong {
  display: block;
}

.proof-inner span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-inner strong {
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head h2,
.solution-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: 0;
}

.section-head p:last-child,
.solution-copy p,
.contact-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.brand-grid a {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 14px;
  min-height: 158px;
  padding: 24px;
  text-align: center;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .22s ease, color .22s ease;
}

.brand-grid a:hover {
  background: #f4faf8;
}

.brand-mark {
  min-width: 0;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: auto;
  height: auto;
  max-width: 130px;
  max-height: 50px;
  object-fit: contain;
}

.brand-mark-regal {
  width: 150px;
  overflow: hidden;
}

.brand-mark-regal img {
  width: 210px;
  max-width: none;
  max-height: none;
}

.brand-meta {
  min-width: 0;
}

.brand-meta strong,
.brand-meta small {
  display: block;
}

.brand-meta strong {
  color: #26384f;
  font-size: 15px;
  font-weight: 800;
}

.brand-meta small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.quick-grid a {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 132px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid #e4edf3;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-grid a:hover,
.product-card:hover,
.news-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 166, 118, 0.45);
  box-shadow: 0 16px 36px rgba(17, 33, 55, 0.1);
}

.quick-grid span {
  margin-top: 12px;
  color: #26384f;
  font-weight: 700;
  text-align: center;
}

.regal-feature {
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.regal-feature-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 78px 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.regal-feature-copy {
  max-width: 520px;
}

.regal-wordmark {
  margin: 9px 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.regal-feature h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
}

.regal-feature-copy > p:last-of-type {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.regal-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  margin-top: 30px;
}

.regal-official-link {
  padding: 8px 0;
  color: #b6f1e2;
  font-weight: 800;
  border-bottom: 1px solid rgba(182, 241, 226, 0.45);
}

.regal-feature-media {
  margin: 0;
}

.regal-feature-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.28);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.regal-feature-media:hover img {
  transform: scale(1.018);
}

.regal-feature-media figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.products {
  width: 100%;
  background: var(--soft);
}

.products .section-head,
.product-grid {
  width: min(1180px, calc(100% - 44px));
  margin-right: auto;
  margin-left: auto;
}

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

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #e2e9ef;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 20px;
  object-fit: contain;
  background: #f5f7f9;
}

.product-card span {
  display: block;
  padding: 16px 18px 18px;
  color: #1b2c44;
  font-size: 17px;
  font-weight: 800;
}

.solution-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}

.solution-copy {
  padding-right: 12px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--brand);
  font-weight: 800;
}

.solution-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.solution-image img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.quick-links {
  border-top: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.quick-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.news-section {
  width: 100%;
  background: var(--deep);
  color: #fff;
}

.news-section .section-head,
.news-list {
  width: min(1180px, calc(100% - 44px));
  margin-right: auto;
  margin-left: auto;
}

.news-section .section-head p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

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

.news-list a {
  min-height: 160px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-list span {
  display: block;
  color: #8ce6cf;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-list strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.5;
}

.knowledge-section {
  color: #fff;
  background: var(--deep);
}

.knowledge-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.knowledge-section .section-head {
  position: sticky;
  top: 108px;
  margin: 0;
}

.knowledge-section .section-head p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.knowledge-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.knowledge-list a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding-left 0.25s ease, color 0.25s ease;
}

.knowledge-list a:hover {
  padding-left: 8px;
  color: #b6f1e2;
}

.knowledge-list span {
  color: #8ce6cf;
  font-size: 13px;
  font-weight: 800;
}

.knowledge-list strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.knowledge-list p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.knowledge-list b {
  color: #8ce6cf;
  font-size: 13px;
  white-space: nowrap;
}

.customer-showcase {
  padding-bottom: 34px;
  background: #f3f7f9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.customer-showcase-inner {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.customer-intro {
  max-width: 430px;
}

.customer-intro h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.14;
}

.customer-intro > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.customer-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.customer-logo {
  min-width: 0;
  min-height: 164px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px 20px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.customer-logo img {
  width: auto;
  height: auto;
  max-width: 148px;
  max-height: 58px;
  object-fit: contain;
}

.customer-logo span {
  margin-top: 18px;
  color: #708095;
  font-size: 12px;
  letter-spacing: .04em;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
  padding: 48px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-meta {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-meta li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  color: var(--muted);
}

.contact-meta strong {
  color: var(--ink);
}

.contact-meta a {
  color: var(--brand);
  font-weight: 700;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 800;
}

.qr-list {
  display: flex;
  gap: 20px;
}

.qr-list figure {
  margin: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.qr-list img {
  width: 126px;
  height: 126px;
  object-fit: cover;
}

.qr-list figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 26px clamp(22px, 6vw, 90px);
  color: rgba(255, 255, 255, 0.78);
  background: #071629;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.86);
}

.contact-dock {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  min-width: 198px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 227, 234, 0.94);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(7, 22, 41, 0.2);
  backdrop-filter: blur(12px);
  animation: dock-in 0.7s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-dock a {
  display: grid;
  gap: 1px;
  padding: 12px 16px;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-dock a + a {
  border-top: 1px solid var(--line);
}

.contact-dock span {
  color: var(--muted);
  font-size: 11px;
}

.contact-dock strong {
  color: var(--ink);
  font-size: 14px;
}

.contact-dock .contact-dock-primary {
  background: var(--brand-2);
}

.contact-dock .contact-dock-primary span,
.contact-dock .contact-dock-primary strong {
  color: #05251d;
}

.contact-dock a:hover {
  background: #eaf5f2;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proof-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dock-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
    padding: 10px 18px;
    background: linear-gradient(180deg, rgba(3, 15, 31, 0.94), rgba(3, 15, 31, 0.72));
  }

  .site-header.is-scrolled {
    min-height: 62px;
  }

  .brand {
    max-width: calc(100vw - 90px);
    gap: 2px;
  }

  .brand-name {
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 0;
    text-overflow: ellipsis;
  }

  .brand-subtitle {
    overflow: hidden;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
  }

  .nav-button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
  }

  .nav-button span,
  .nav-button span::before,
  .nav-button span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    content: "";
  }

  .nav-button span {
    position: relative;
  }

  .nav-button span::before,
  .nav-button span::after {
    position: absolute;
    left: 0;
  }

  .nav-button span::before {
    top: -7px;
  }

  .nav-button span::after {
    top: 7px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    padding: 10px 18px 18px;
    color: #fff;
    background: rgba(7, 22, 43, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .main-nav a {
    display: block;
    padding: 12px 0;
  }

  .nav-toggle:checked ~ .main-nav {
    display: block;
  }

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

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solution-band,
  .contact,
  .knowledge-inner,
  .regal-feature-inner,
  .customer-showcase-inner {
    grid-template-columns: 1fr;
  }

  .regal-feature-copy {
    max-width: 720px;
  }

  .knowledge-section .section-head {
    position: static;
  }

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

  .proof-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .proof-inner div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 560px;
    padding: 120px 22px 68px;
    background-position: 42% center;
  }

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

  .section {
    width: min(100% - 32px, 1180px);
    padding: 58px 0;
  }

  .regal-feature-inner {
    width: min(100% - 32px, 1180px);
    padding: 58px 0;
    gap: 32px;
  }

  .regal-feature-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .products .section-head,
  .product-grid,
  .news-section .section-head,
  .news-list {
    width: min(100% - 32px, 1180px);
  }

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

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

  .brand-grid a {
    min-height: 124px;
  }

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

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

  .contact {
    padding: 28px;
  }

  .proof-inner {
    width: min(100% - 32px, 1180px);
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .proof-inner div,
  .proof-inner div:first-child,
  .proof-inner div:nth-child(3) {
    padding: 9px 0;
    border-left: 0;
  }

  .proof-inner div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .knowledge-list a {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .knowledge-list b {
    grid-column: 2;
  }

  .contact-meta li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact-dock {
    right: 12px;
    bottom: 10px;
    left: 12px;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .contact-dock a {
    min-width: 0;
    padding: 11px 13px;
  }

  .contact-dock a + a {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .contact-dock strong {
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .qr-list {
    flex-wrap: wrap;
  }
}

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

/* Lean homepage: fewer labels, stronger section hierarchy. */
.home-simple-section { padding-top: 70px; padding-bottom: 70px; }
.home-section-title { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.home-section-title h2, .home-resource-inner > h2 { margin: 0; font-size: clamp(30px, 3.5vw, 46px); line-height: 1.12; }
.home-section-title > a { color: var(--brand); font-weight: 800; }
.brand-grid-compact a { min-height: 126px; padding: 22px; }
.home-products { padding-top: 74px; padding-bottom: 78px; }
.home-products .home-section-title { width: min(1180px, calc(100% - 44px)); margin-right: auto; margin-left: auto; }
.home-resource-band { color: #fff; background: var(--deep); }
.home-resource-inner { display: grid; grid-template-columns: minmax(220px, .5fr) minmax(0, 1.5fr); gap: clamp(42px, 7vw, 94px); align-items: start; }
.home-resource-links { border-top: 1px solid rgba(255, 255, 255, .18); }
.home-resource-links a { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, .18); transition: padding-left .22s ease, color .22s ease; }
.home-resource-links a:hover { padding-left: 8px; color: #b6f1e2; }
.home-resource-links span, .home-resource-links b { color: #8ce6cf; font-size: 13px; }
.home-resource-links h3 { margin: 0; color: #fff; font-size: 21px; }
.home-resource-links p { margin: 5px 0 0; color: rgba(255, 255, 255, .66); font-size: 14px; }
.customer-logo-grid-compact .customer-logo { min-height: 132px; }
@media (max-width: 900px) { .home-resource-inner { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
  .home-section-title { align-items: flex-start; flex-direction: column; gap: 10px; }
  .brand-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-grid-compact a { min-height: 112px; }
  .home-resource-links a { grid-template-columns: 34px minmax(0, 1fr) auto; gap: 12px; }
}

.industry-word-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.industry-word-grid a { display: grid; gap: 7px; min-height: 112px; align-content: center; padding: 22px 24px; color: var(--ink); border-bottom: 1px solid var(--line); }
.industry-word-grid a:nth-child(odd) { border-right: 1px solid var(--line); }
.industry-word-grid strong { font-size: 18px; }
.industry-word-grid span { color: var(--muted); font-size: 14px; }
.industry-word-grid a:hover strong { color: var(--brand); }
@media (max-width: 700px) {
  .industry-word-grid { grid-template-columns: 1fr; }
  .industry-word-grid a:nth-child(odd) { border-right: 0; }
}
