/*
 * Vortexa Theme — single source of truth
 * Conventions: BEM-ish, `.sw-` prefix. No SaaS IDs, no !important, no :has()
 * Naming map: component (.sw-X) → modifier (.sw-X--variant) → child (.sw-X__el)
 */

/* ==========================================================================
   1. Tokens
   ========================================================================== */
:root {
  /* brand */
  --sw-blue: #004A99;
  --sw-blue-dark: #003B7A;
  --sw-blue-light: #1F6FBF;
  --sw-accent: #FFB836;
  /* neutrals */
  --sw-black: #0E0E0F;
  --sw-grey-900: #1A1A1A;
  --sw-grey-700: #3a3a3a;
  --sw-grey-500: #666;
  --sw-grey-300: #cfd5dc;
  --sw-grey-100: #f3f5f8;
  --sw-grey-50:  #f9fafc;
  --sw-white:    #ffffff;
  --sw-border:   #E6E9EE;
  /* typography */
  --sw-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
             "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
             "Helvetica Neue", Arial, sans-serif;
  --sw-fs-h1: clamp(40px, 5vw, 64px);
  --sw-fs-h2: clamp(30px, 3.6vw, 44px);
  --sw-fs-h3: clamp(22px, 2.4vw, 28px);
  --sw-fs-eyebrow: 13px;
  --sw-fs-body: 15px;
  --sw-lh-tight: 1.2;
  --sw-lh-base: 1.6;
  --sw-lh-loose: 1.85;
  /* radii */
  --sw-r-sm: 8px;
  --sw-r-md: 12px;
  --sw-r-lg: 16px;
  --sw-r-xl: 24px;
  /* shadows */
  --sw-sh-sm:  0 2px 8px rgba(0,0,0,.06);
  --sw-sh-md:  0 8px 24px rgba(0,0,0,.08);
  --sw-sh-lg:  0 14px 32px rgba(0,74,153,.12);
  --sw-sh-nav: 0 8px 32px rgba(14,14,15,.08), 0 0 0 1px rgba(255,255,255,.5) inset;
  /* motion */
  --sw-ease: cubic-bezier(.2,.8,.2,1);
  --sw-dur: .3s;
  --sw-dur-slow: .6s;
  /* layout */
  --sw-container: 1280px;
  --sw-gutter: 24px;
  --sw-nav-h: 72px;
  /* z-index */
  --sw-z-nav: 100;
  --sw-z-floating: 90;
  --sw-z-overlay: 50;
}

/* ==========================================================================
   2. Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sw-font);
  font-size: var(--sw-fs-body);
  line-height: var(--sw-lh-base);
  color: var(--sw-grey-900);
  background: var(--sw-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sw-blue); text-decoration: none; transition: color var(--sw-dur) var(--sw-ease); }
a:hover { color: var(--sw-blue-light); }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 { margin: 0; line-height: var(--sw-lh-tight); font-weight: 700; letter-spacing: -.01em; color: var(--sw-grey-900); }
p { margin: 0 0 1em; }
hr { border: 0; height: 1px; background: var(--sw-border); margin: 32px 0; }

::selection { background: var(--sw-blue); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--sw-grey-300); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--sw-grey-500); }

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */
.sw-container {
  width: 100%;
  max-width: var(--sw-container);
  margin-inline: auto;
  padding-inline: var(--sw-gutter);
}
.sw-section {
  padding-block: clamp(56px, 8vw, 96px);
}
.sw-section--tight { padding-block: clamp(40px, 5vw, 64px); }
.sw-section--grey { background: var(--sw-grey-50); }
.sw-section--dark { background: var(--sw-black); color: rgba(255,255,255,.85); }

.sw-grid { display: grid; gap: 24px; }
.sw-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sw-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sw-grid--4 { grid-template-columns: repeat(4, 1fr); }
.sw-grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (max-width: 1024px) {
  .sw-grid--3, .sw-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sw-grid--2, .sw-grid--3, .sw-grid--4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   4. Section header (eyebrow + h2 + blue period + underline)
   ========================================================================== */
.sw-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
.sw-section-header--start { align-items: flex-start; text-align: left; }
.sw-section-header__eyebrow {
  font-size: var(--sw-fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sw-blue);
  font-weight: 600;
  margin-bottom: 12px;
}
.sw-section-header__title {
  font-size: var(--sw-fs-h2);
  color: var(--sw-grey-900);
  letter-spacing: -.02em;
}
.sw-section-header__title::after {
  content: ".";
  color: var(--sw-blue);
  font-weight: 800;
}
.sw-section-header__rule {
  width: 64px; height: 3px;
  background: var(--sw-blue);
  border-radius: 3px;
  margin-top: 20px;
}
.sw-section-header__lead {
  margin: 16px auto 0;
  max-width: 640px;
  color: var(--sw-grey-500);
  font-size: 15px;
}
.sw-section-header--on-dark .sw-section-header__eyebrow { color: rgba(255,255,255,.85); }
.sw-section-header--on-dark .sw-section-header__title,
.sw-section-header__title--on-dark { color: #fff; }
.sw-section-header--on-dark .sw-section-header__title::after,
.sw-section-header__title--on-dark::after { color: #fff; }
.sw-section-header--on-dark .sw-section-header__rule { background: #fff; }
.sw-section-header--on-dark .sw-section-header__lead { color: rgba(255,255,255,.8); }

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.sw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--sw-r-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid transparent;
  background: var(--sw-blue);
  color: #fff;
  transition: transform var(--sw-dur) var(--sw-ease),
              background-color var(--sw-dur) var(--sw-ease),
              box-shadow var(--sw-dur) var(--sw-ease);
}
.sw-btn:hover { background: var(--sw-blue-dark); transform: translateY(-2px); box-shadow: var(--sw-sh-md); color: #fff; }
.sw-btn--ghost {
  background: transparent;
  color: var(--sw-blue);
  border-color: var(--sw-blue);
}
.sw-btn--ghost:hover { background: var(--sw-blue); color: #fff; }
.sw-btn--white {
  background: #fff; color: var(--sw-grey-900); border-color: var(--sw-border);
}
.sw-btn--white:hover { background: var(--sw-grey-100); color: var(--sw-grey-900); }

/* ==========================================================================
   6. Top navigation (glass)
   ========================================================================== */
.sw-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 32px), 1320px);
  height: var(--sw-nav-h);
  z-index: var(--sw-z-nav);
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-radius: 999px;
  box-shadow: var(--sw-sh-nav);
  display: flex; align-items: center;
  padding: 0 24px;
  transition: background-color var(--sw-dur) var(--sw-ease), box-shadow var(--sw-dur) var(--sw-ease);
}
.sw-nav.is-scrolled { background: rgba(255,255,255,.95); }
.sw-nav__brand {
  display: flex; align-items: center;
  margin-right: 32px;
  flex: none;
}
.sw-nav__brand img { height: 38px; width: auto; }
.sw-nav__menu { display: flex; align-items: center; gap: 4px; flex: 1; }
.sw-nav__item { position: relative; }
.sw-nav__link {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 16px;
  color: var(--sw-grey-900);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: color var(--sw-dur) var(--sw-ease), background-color var(--sw-dur) var(--sw-ease);
}
.sw-nav__link:hover,
.sw-nav__item.is-current > .sw-nav__link {
  color: var(--sw-blue);
  background: rgba(0,74,153,.06);
}
.sw-nav__caret {
  width: 10px; height: 10px;
  transition: transform var(--sw-dur) var(--sw-ease);
}
.sw-nav__item:hover .sw-nav__caret { transform: rotate(180deg); }
.sw-nav__sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: #fff;
  border-radius: var(--sw-r-md);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--sw-dur) var(--sw-ease), transform var(--sw-dur) var(--sw-ease), visibility 0s linear var(--sw-dur);
}
.sw-nav__item:hover .sw-nav__sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.sw-nav__sub-link {
  display: block; padding: 10px 14px; border-radius: var(--sw-r-sm);
  font-size: 13px; color: var(--sw-grey-700); white-space: nowrap;
}
.sw-nav__sub-link:hover { background: var(--sw-grey-100); color: var(--sw-blue); }
.sw-nav__action {
  margin-left: auto; flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sw-grey-900);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 0;
}
.sw-nav__action:hover { background: var(--sw-blue); }
.sw-nav__toggle {
  display: none;
  margin-left: auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--sw-grey-900);
  border: 0;
}
@media (max-width: 1024px) {
  .sw-nav { padding: 0 16px; }
  .sw-nav__menu { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-radius: var(--sw-r-md); margin-top: 12px; padding: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
  }
  .sw-nav.is-open .sw-nav__menu { display: flex; }
  .sw-nav__sub { position: static; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto; box-shadow: none; padding: 0 0 0 16px; }
  .sw-nav__action { display: none; }
  .sw-nav__toggle { display: flex; align-items: center; justify-content: center; }
}
/* push body content below the floating nav */
body { padding-top: calc(var(--sw-nav-h) + 32px); }
body.home { padding-top: 0; }  /* hero spans 100vh, nav floats over it */

/* ==========================================================================
   7. Footer
   ========================================================================== */
.sw-footer {
  background: var(--sw-black);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
  margin-top: 0;
}
.sw-footer a { color: rgba(255,255,255,.85); }
.sw-footer a:hover { color: #fff; }
.sw-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.sw-footer__brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.sw-footer__brand img {
  width: 176px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}
.sw-footer__brand-meta { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); }
.sw-footer__nav {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.sw-footer__col h4 {
  color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px;
}
.sw-footer__col a { display: block; padding: 4px 0; font-size: 13px; }
.sw-footer__contact h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.sw-footer__contact p { font-size: 13px; line-height: 1.8; margin-bottom: 8px; }
.sw-footer__friend {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: 13px;
}
.sw-footer__friend-label { color: rgba(255,255,255,.5); }
.sw-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,.4);
}
@media (max-width: 1024px) {
  .sw-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .sw-footer__nav { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   8. Floating right-side widget (call / back-to-top)
   ========================================================================== */
.sw-floating {
  position: fixed; right: 16px; top: 50%; transform: translateY(-50%);
  z-index: var(--sw-z-floating);
  display: flex; flex-direction: column;
  background: var(--sw-grey-900);
  border-radius: 999px;
  padding: 8px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.sw-floating__btn {
  width: 56px; height: 56px;
  background: transparent; border: 0; color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  outline: 0;
  position: relative;
  transition: color var(--sw-dur) var(--sw-ease);
}
.sw-floating__btn + .sw-floating__btn { border-top: 1px solid rgba(255,255,255,.08); }
.sw-floating__btn:hover { color: #fff; }
.sw-floating__btn:focus-visible { color: #fff; box-shadow: inset 0 0 0 2px var(--sw-blue); }
.sw-floating__btn svg { width: 22px; height: 22px; fill: currentColor; }
.sw-floating__tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--sw-blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--sw-r-sm);
  font-size: 13px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--sw-dur) var(--sw-ease);
}
.sw-floating__btn:hover .sw-floating__tooltip { opacity: 1; }
@media (max-width: 640px) {
  .sw-floating { display: none; }
}

/* ==========================================================================
   9. Hero (homepage)
   ========================================================================== */
.sw-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--sw-black);
  color: #fff;
}
.sw-hero__media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.7);
}
.sw-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, transparent 65%);
}
.sw-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%;
  padding-block: 80px;
}
.sw-hero__eyebrow {
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sw-blue-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.sw-hero__title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 24px;
}
.sw-hero__title::after { content: "."; color: var(--sw-blue-light); }
.sw-hero__lead {
  max-width: 560px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin: 0 0 32px;
}
.sw-hero__chips {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.sw-hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
}
.sw-hero__chip::before {
  content: ""; width: 6px; height: 6px;
  background: var(--sw-blue-light); border-radius: 50%;
}
.sw-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.sw-hero__scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 12px;
}
.sw-hero__scroll-hint::after {
  content: ""; width: 40px; height: 1px; background: rgba(255,255,255,.4);
  animation: sw-pulse 2s var(--sw-ease) infinite;
}
@keyframes sw-pulse {
  0%, 100% { transform: scaleX(.6); opacity: .6; }
  50%      { transform: scaleX(1);  opacity: 1; }
}

/* ==========================================================================
   10. Inner page banner
   ========================================================================== */
.sw-banner {
  position: relative;
  height: clamp(360px, 45vh, 480px);
  overflow: hidden;
  background: var(--sw-grey-900);
  color: #fff;
  margin-top: calc(-1 * (var(--sw-nav-h) + 32px));   /* sit under floating nav */
  padding-top: calc(var(--sw-nav-h) + 32px);
}
.sw-banner__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sw-banner__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.65) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, transparent 60%);
}
.sw-banner__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%;
  padding-bottom: 64px;
}
.sw-banner__eyebrow {
  font-size: 13px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--sw-blue-light); font-weight: 600; margin-bottom: 16px;
}
.sw-banner__title {
  font-size: var(--sw-fs-h1);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
  color: #fff;
}
.sw-banner__title::after { content: "."; color: var(--sw-blue-light); }
.sw-banner__lead {
  max-width: 600px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.8);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   11. Family chrome (sub-nav under banner) + breadcrumb
   ========================================================================== */
.sw-family-chrome {
  background: #fff;
  border-bottom: 1px solid var(--sw-border);
  position: sticky; top: 0; z-index: 10;
}
.sw-family-chrome__inner {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  padding-block: 16px;
}
.sw-family-chrome__crumb {
  font-size: 13px; color: var(--sw-grey-500); flex: 1;
}
.sw-family-chrome__crumb a { color: var(--sw-grey-500); }
.sw-family-chrome__crumb a:hover { color: var(--sw-blue); }
.sw-family-chrome__crumb-sep { margin: 0 8px; color: var(--sw-grey-300); }
.sw-family-chrome__nav { display: flex; gap: 4px; flex-wrap: wrap; }
.sw-family-chrome__link {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--sw-grey-700);
  font-weight: 500;
  transition: background-color var(--sw-dur) var(--sw-ease), color var(--sw-dur) var(--sw-ease);
}
.sw-family-chrome__link:hover { background: var(--sw-grey-100); }
.sw-family-chrome__link.is-current {
  background: var(--sw-blue); color: #fff;
}

/* ==========================================================================
   12. Cards (news / product / project / qualification)
   ========================================================================== */
.sw-card {
  background: #fff;
  border-radius: var(--sw-r-lg);
  overflow: hidden;
  border: 1px solid var(--sw-border);
  transition: transform var(--sw-dur) var(--sw-ease), box-shadow var(--sw-dur) var(--sw-ease), border-color var(--sw-dur) var(--sw-ease);
  display: flex; flex-direction: column;
}
.sw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sw-sh-lg);
  border-color: var(--sw-blue);
}
.sw-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sw-grey-100);
}
.sw-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--sw-dur-slow) var(--sw-ease);
}
.sw-card:hover .sw-card__thumb img { transform: scale(1.04); }
.sw-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.sw-card__tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sw-blue);
  font-weight: 600;
  background: rgba(0,74,153,.08);
  padding: 4px 10px;
  border-radius: 4px;
}
.sw-card__title {
  font-size: 18px; font-weight: 700;
  line-height: 1.4;
  color: var(--sw-grey-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sw-card__summary {
  font-size: 14px;
  color: var(--sw-grey-500);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.sw-card__meta {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px; color: var(--sw-grey-500);
  font-variant-numeric: tabular-nums;
}
.sw-card__meta-icon { width: 14px; height: 14px; fill: currentColor; opacity: .6; }

/* feature card variant — taller, image dominant */
.sw-card--feature {
  position: relative;
  border: 0;
}
.sw-card--feature .sw-card__thumb {
  aspect-ratio: auto;
  position: absolute; inset: 0;
}
.sw-card--feature .sw-card__body {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 32px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  color: #fff;
}
.sw-card--feature .sw-card__title { color: #fff; -webkit-line-clamp: 3; }
.sw-card--feature .sw-card__summary { color: rgba(255,255,255,.78); }
.sw-card--feature .sw-card__tag {
  background: rgba(255,255,255,.18); color: #fff;
}

/* compact list-style card (used in news right column) */
.sw-card--row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 0;
}
.sw-card--row .sw-card__thumb { aspect-ratio: auto; height: 100%; }
.sw-card--row .sw-card__body { padding: 16px 16px 16px 0; }

/* simple text-only row (for news tabs panel) */
.sw-list-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sw-border);
  font-size: 14px;
}
.sw-list-row:last-child { border-bottom: 0; }
.sw-list-row__title {
  flex: 1; color: var(--sw-grey-900); font-weight: 500;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sw-list-row__title:hover { color: var(--sw-blue); }
.sw-list-row__date {
  font-variant-numeric: tabular-nums;
  color: var(--sw-grey-500); font-size: 13px;
  flex: none;
}

/* ==========================================================================
   13. Tabs
   ========================================================================== */
.sw-tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--sw-border);
  margin-bottom: 32px;
}
.sw-tabs__btn {
  padding: 12px 20px;
  background: transparent; border: 0;
  font-size: 14px; font-weight: 500;
  color: var(--sw-grey-500);
  position: relative;
  transition: color var(--sw-dur) var(--sw-ease);
}
.sw-tabs__btn:hover { color: var(--sw-grey-900); }
.sw-tabs__btn.is-active {
  color: var(--sw-blue);
}
.sw-tabs__btn.is-active::after {
  content: "";
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--sw-blue);
  border-radius: 2px;
}
.sw-tabs__panel { display: none; }
.sw-tabs__panel.is-active { display: block; }

/* ==========================================================================
   14. KPI counters
   ========================================================================== */
.sw-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.sw-kpi {
  background: #fff;
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-r-lg);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--sw-dur) var(--sw-ease), box-shadow var(--sw-dur) var(--sw-ease), border-color var(--sw-dur) var(--sw-ease);
}
.sw-kpi:hover { transform: translateY(-4px); box-shadow: var(--sw-sh-lg); border-color: var(--sw-blue); }
.sw-kpi__num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--sw-blue);
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.sw-kpi__suffix { font-size: .5em; font-weight: 600; }
.sw-kpi__label {
  margin-top: 16px;
  font-size: 14px;
  color: var(--sw-grey-500);
  line-height: 1.5;
}

/* ==========================================================================
   15. Pagination
   ========================================================================== */
.sw-pagination {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 48px;
}
.sw-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: var(--sw-r-md);
  font-size: 14px;
  color: var(--sw-grey-700);
  background: #fff;
  border: 1px solid var(--sw-border);
  transition: all var(--sw-dur) var(--sw-ease);
}
.sw-pagination .page-numbers:hover { border-color: var(--sw-blue); color: var(--sw-blue); }
.sw-pagination .page-numbers.current {
  background: var(--sw-blue); color: #fff; border-color: var(--sw-blue);
}
.sw-pagination .page-numbers.dots {
  border: 0; background: transparent;
}

/* ==========================================================================
   16. Forms
   ========================================================================== */
.sw-form { display: flex; flex-direction: column; gap: 20px; max-width: 720px; }
.sw-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sw-form__group { display: flex; flex-direction: column; gap: 6px; }
.sw-form__label { font-size: 13px; color: var(--sw-grey-700); font-weight: 500; }
.sw-form__input, .sw-form__textarea, .sw-form__select {
  padding: 12px 16px;
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-r-md);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--sw-grey-900);
  transition: border-color var(--sw-dur) var(--sw-ease), box-shadow var(--sw-dur) var(--sw-ease);
}
.sw-form__textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.sw-form__input:focus, .sw-form__textarea:focus, .sw-form__select:focus {
  outline: 0;
  border-color: var(--sw-blue);
  box-shadow: 0 0 0 4px rgba(0,74,153,.1);
}
.sw-form__hint { font-size: 12px; color: var(--sw-grey-500); }
@media (max-width: 640px) { .sw-form__row { grid-template-columns: 1fr; } }

/* ==========================================================================
   17. Article body (single post)
   ========================================================================== */
.sw-article {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: var(--sw-lh-loose);
  color: var(--sw-grey-700);
}
.sw-article h2 { font-size: 28px; margin: 48px 0 16px; color: var(--sw-grey-900); }
.sw-article h3 { font-size: 22px; margin: 32px 0 12px; color: var(--sw-grey-900); }
.sw-article p { margin: 0 0 20px; }
.sw-article img, .sw-article video {
  width: 100%; height: auto;
  border-radius: var(--sw-r-md);
  margin: 24px 0;
}
.sw-article a { color: var(--sw-blue); text-decoration: underline; text-underline-offset: 2px; }
.sw-article ul, .sw-article ol { margin: 0 0 20px; padding-left: 24px; list-style: disc; }
.sw-article ol { list-style: decimal; }
.sw-article li { margin-bottom: 8px; }
.sw-article blockquote {
  border-left: 3px solid var(--sw-blue);
  padding: 8px 24px;
  margin: 24px 0;
  color: var(--sw-grey-500);
  background: var(--sw-grey-50);
  border-radius: 0 var(--sw-r-md) var(--sw-r-md) 0;
}

.sw-article-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.sw-article-header__category {
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sw-blue); font-weight: 600;
  margin-bottom: 12px; display: inline-block;
}
.sw-article-header__title {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.3;
  margin-bottom: 16px;
}
.sw-article-header__meta {
  display: flex; justify-content: center; gap: 16px;
  font-size: 13px; color: var(--sw-grey-500);
  font-variant-numeric: tabular-nums;
}

.sw-job-meta {
  list-style: none; padding: 16px 24px; margin: 0 auto 32px;
  max-width: 720px;
  display: flex; flex-wrap: wrap; gap: 8px 32px;
  justify-content: center;
  background: var(--sw-grey-50, #f5f7fa);
  border-radius: var(--sw-r-md, 8px);
  font-size: 14px;
}
.sw-job-meta__k { color: var(--sw-grey-500, #6b7280); }
.sw-job-meta__v { color: var(--sw-blue, #0a4ea2); font-weight: 600; }

.sw-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--sw-border);
}
.sw-article-nav__item {
  padding: 16px 20px;
  border-radius: var(--sw-r-md);
  border: 1px solid var(--sw-border);
  display: block;
  transition: border-color var(--sw-dur) var(--sw-ease), background-color var(--sw-dur) var(--sw-ease);
}
.sw-article-nav__item:hover { border-color: var(--sw-blue); background: var(--sw-grey-50); }
.sw-article-nav__item--next { text-align: right; }
.sw-article-nav__label { font-size: 12px; color: var(--sw-grey-500); margin-bottom: 4px; }
.sw-article-nav__title { font-size: 14px; font-weight: 600; color: var(--sw-grey-900); }
@media (max-width: 640px) { .sw-article-nav { grid-template-columns: 1fr; } }

/* ==========================================================================
   18. Empty state
   ========================================================================== */
.sw-empty {
  padding: 96px 24px;
  text-align: center;
  color: var(--sw-grey-500);
  font-size: 16px;
}

/* ==========================================================================
   18a. Post list (shortcode renderer for tender/news/etc)
   ========================================================================== */
.sw-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--sw-line);
}
.sw-post-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--sw-line);
  transition: background-color .2s ease;
}
.sw-post-list__item:hover { background-color: rgba(0, 102, 204, .04); }
.sw-post-list__link {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}
.sw-post-list__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--sw-ink);
  line-height: 1.5;
}
.sw-post-list__link:hover .sw-post-list__title { color: var(--sw-blue, #0066cc); }
.sw-post-list__summary {
  font-size: 14px;
  color: var(--sw-grey-500);
  line-height: 1.55;
}
.sw-post-list__date {
  flex: 0 0 auto;
  font-size: 14px;
  color: var(--sw-grey-500);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .sw-post-list__item { flex-wrap: wrap; }
  .sw-post-list__date { width: 100%; padding-left: 0; font-size: 13px; }
}

/* ==========================================================================
   18b. Solid card variant (used in marketing/localization landing pages)
   ========================================================================== */
.sw-card.sw-card--solid {
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.sw-card.sw-card--solid .sw-card__body {
  padding: 0;
}
.sw-card.sw-card--solid ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--sw-grey-700, #4a5568);
  line-height: 1.7;
}

/* ==========================================================================
   19. Animations / scroll-triggered fade
   ========================================================================== */
/* sw-fade is a tiny progressive-enhancement: content is visible by default,
 * the JS only adds .is-in for any future use (no opacity tricks). */
.sw-fade { /* no-op marker class */ }
@media (prefers-reduced-motion: reduce) {
  .sw-fade { opacity: 1; transform: none; transition: none; }
  .sw-hero__scroll-hint::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   20. Misc utilities
   ========================================================================== */
.sw-text-center { text-align: center; }
.sw-mt-0 { margin-top: 0; }
.sw-mt-4 { margin-top: 32px; }
.sw-mt-8 { margin-top: 64px; }
.sw-flex { display: flex; }
.sw-flex--center { justify-content: center; align-items: center; }
.sw-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   21. WordPress core class hooks (required for accessibility-ready themes)
   These styles must be present so that core blocks, alignment classes,
   captions and post-tag markers render correctly.
   ========================================================================== */

/* WP screen-reader / accessibility helper — must hide visually but stay
   focusable so keyboard users can read skip-links etc. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px; overflow: hidden; padding: 0; position: absolute !important;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #fff;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: var(--sw-blue);
  display: block;
  font-size: 14px;
  font-weight: 600;
  height: auto; width: auto;
  left: 8px; top: 8px;
  line-height: 1; padding: 12px 18px;
  text-decoration: none;
  z-index: 100000;
}

/* Sticky post indicator (used on blog index by core). */
.sticky { display: block; }

/* Comment list highlight for posts authored by the post author. */
.bypostauthor { display: block; }

/* Alignment classes used by classic editor and the block editor. */
.alignleft   { float: left;  margin-right: 1.5em; margin-bottom: 1em; }
.alignright  { float: right; margin-left: 1.5em;  margin-bottom: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide   { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull   { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }

/* Image caption styles (classic editor). */
.wp-caption {
  max-width: 100%; margin-bottom: 24px;
}
.wp-caption img { display: block; max-width: 100%; height: auto; }
.wp-caption-text,
.gallery-caption {
  font-size: 13px;
  color: var(--sw-grey-500);
  text-align: center;
  margin: 8px 0 0;
}

/* Article footer (tags) and content pagination. */
.sw-article-footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--sw-grey-200);
}
.sw-tags { font-size: 14px; color: var(--sw-grey-600); }
.sw-tags__label { font-weight: 600; margin-right: 8px; }
.sw-tag {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 2px 10px;
  border: 1px solid var(--sw-grey-300);
  border-radius: 999px;
  color: var(--sw-grey-700);
  text-decoration: none;
}
.sw-tag:hover { color: var(--sw-blue); border-color: var(--sw-blue); }
.sw-article-pagination {
  margin-top: 24px;
  font-size: 14px;
}
.sw-article-pagination span { margin-right: 8px; font-weight: 600; }
.sw-article-pagination a {
  display: inline-block;
  margin-right: 4px;
  padding: 4px 10px;
  border: 1px solid var(--sw-grey-300);
  border-radius: 4px;
  text-decoration: none;
}

/* ==========================================================================
   19. Carousel (horizontal news / generic)
   Native scroll-snap viewport. Buttons + dots are wired up by theme.js.
   ========================================================================== */
.sw-carousel {
  position: relative;
  margin: 0 -8px; /* let cards bleed slightly toward viewport edges */
}
.sw-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sw-carousel__viewport::-webkit-scrollbar { display: none; }
.sw-carousel__track {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 8px;
  margin: 0;
}
.sw-carousel__item {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .sw-carousel__item { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .sw-carousel__track { gap: 16px; }
  .sw-carousel__item  { flex-basis: 88%; }
}
.sw-carousel__btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--sw-blue);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  transition: opacity .2s, transform .2s;
  z-index: 2;
}
.sw-carousel__btn:hover { transform: translateY(-50%) scale(1.05); }
.sw-carousel__btn:disabled { opacity: .35; cursor: default; }
.sw-carousel__btn--prev { left: -8px; }
.sw-carousel__btn--next { right: -8px; }
@media (max-width: 640px) {
  .sw-carousel__btn { display: none; } /* mobile: rely on swipe */
}
.sw-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.sw-carousel__dot {
  width: 8px; height: 8px;
  border: 0;
  border-radius: 50%;
  background: var(--sw-grey-300);
  padding: 0;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.sw-carousel__dot.is-active {
  background: var(--sw-blue);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   19a. News matrix — left feature carousel + right tabbed text list.
   Mirrors the upstream sunwardtbm.com home-page layout.
   ========================================================================== */
.sw-news-matrix {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .sw-news-matrix { grid-template-columns: 1fr; }
}

/* --- left feature card (single big image with caption + auto-rotate) --- */
.sw-feature-carousel {
  position: relative;
  height: 100%;
  min-height: 440px;
}
.sw-feature-carousel__viewport {
  position: relative;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sw-grey-100);
}
.sw-feature-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
}
.sw-feature-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.sw-feature-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.sw-feature-card {
  display: block;
  position: relative;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
.sw-feature-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sw-feature-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.sw-feature-carousel__slide.is-active .sw-feature-card__media img {
  transform: scale(1.05);
}
.sw-feature-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.75) 100%);
}
.sw-feature-card__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  background: rgba(0, 74, 153, .92);
  color: #fff;
}
.sw-feature-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
}
.sw-feature-carousel__dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 96px; /* sit just above the blue caption */
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.sw-feature-carousel__dot {
  width: 24px; height: 3px;
  border: 0; padding: 0;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .2s;
}
.sw-feature-carousel__dot.is-active { background: #fff; }

/* --- right side: news tab + text list --- */
.sw-tabs--news {
  border-bottom: 1px solid var(--sw-grey-300);
  margin-bottom: 8px;
}
.sw-tabs--news .sw-tabs__btn {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--sw-grey-600);
  cursor: pointer;
  position: relative;
}
.sw-tabs--news .sw-tabs__btn.is-active {
  background: var(--sw-blue);
  color: #fff;
}
.sw-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sw-news-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--sw-grey-200);
}
.sw-news-list__row:last-child { border-bottom: 0; }
.sw-news-list__title {
  flex: 1;
  color: var(--sw-grey-800);
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding-left: 14px;
}
.sw-news-list__title::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sw-grey-400);
  transform: translateY(-50%);
  transition: background .2s;
}
.sw-news-list__title:hover {
  color: var(--sw-blue);
}
.sw-news-list__title:hover::before {
  background: var(--sw-blue);
}
.sw-news-list__tag {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--sw-grey-600, #4b5563);
  background: var(--sw-grey-100, #f3f4f6);
  border-radius: 3px;
  vertical-align: 1px;
}
.sw-news-list__date {
  flex-shrink: 0;
  color: var(--sw-grey-500);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.sw-news-list__more {
  margin-top: 16px;
  text-align: right;
}
.sw-news-list__more a {
  color: var(--sw-blue);
  font-size: 14px;
  text-decoration: none;
}

/* ==========================================================================
   19b. Application card (with overlay + zoom-on-hover)
   ========================================================================== */
.sw-card.sw-card--app .sw-card__thumb {
  position: relative;
  overflow: hidden;
}
.sw-card.sw-card--app .sw-card__thumb img {
  transition: transform .5s ease;
}
.sw-card.sw-card--app .sw-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.sw-card.sw-card--app:hover .sw-card__thumb img { transform: scale(1.08); }
.sw-card.sw-card--app:hover .sw-card__overlay   { opacity: 1; }
.sw-card.sw-card--app .sw-card__subtitle {
  margin: 4px 0 8px;
  font-size: 13px;
  color: var(--sw-grey-500);
  font-weight: 500;
}

/* ==========================================================================
   19d. Certificate cards (used on /qualifications/)
   ========================================================================== */
.sw-cert-grid {
  margin-top: 24px;
}
.sw-cert-card {
  background: #fff;
  border: 1px solid var(--sw-grey-200);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.sw-cert-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.sw-cert-card__media {
  aspect-ratio: 4 / 5;
  background: var(--sw-grey-50, #fafafa);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.sw-cert-card__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sw-cert-card__body {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--sw-grey-200);
}
.sw-cert-card__title {
  font-size: 15px;
  margin: 0 0 6px;
  color: var(--sw-grey-900);
}
.sw-cert-card__desc {
  font-size: 13px;
  color: var(--sw-grey-600);
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   19e. Download list (used on /downloads/)
   ========================================================================== */
.sw-download-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.sw-download-item + .sw-download-item { margin-top: 8px; }
.sw-download-item__link {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--sw-grey-200);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: background .2s, border-color .2s;
}
.sw-download-item__link:hover {
  border-color: var(--sw-blue);
  background: #f8fafc;
}
.sw-download-item__icon {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  background: var(--sw-grey-500);
  padding: 8px 0;
  border-radius: 3px;
}
.sw-download-item__icon--pdf  { background: #d33;     }
.sw-download-item__icon--doc,
.sw-download-item__icon--docx { background: #2A579A; }
.sw-download-item__icon--xls,
.sw-download-item__icon--xlsx { background: #217346; }
.sw-download-item__icon--ppt,
.sw-download-item__icon--pptx { background: #C04600; }
.sw-download-item__icon--zip,
.sw-download-item__icon--rar  { background: #8B5A00; }
.sw-download-item__name {
  font-size: 15px;
  color: var(--sw-grey-900);
  font-weight: 500;
}
.sw-download-item__meta {
  font-size: 13px;
  color: var(--sw-grey-500);
  white-space: nowrap;
}
.sw-download-item__cta {
  font-size: 14px;
  color: var(--sw-blue);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .sw-download-item__link { grid-template-columns: 64px 1fr auto; gap: 12px; padding: 12px; }
  .sw-download-item__meta { display: none; }
}

/* ==========================================================================
   19f. Job list (used on /job-apply/)
   ========================================================================== */
.sw-job-list {
  list-style: none;
  margin: 24px 0 40px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.sw-job-card {
  background: #fff;
  border: 1px solid var(--sw-grey-200);
  border-left: 3px solid var(--sw-blue);
  border-radius: 4px;
  padding: 24px 28px;
}
.sw-job-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.sw-job-card__title {
  margin: 0;
  font-size: 19px;
  color: var(--sw-grey-900);
}
.sw-job-card__dept {
  font-size: 13px;
  color: var(--sw-grey-500);
}
.sw-job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 12px 16px;
  background: var(--sw-grey-50, #f8fafc);
  border-radius: 4px;
  font-size: 14px;
  color: var(--sw-grey-700);
  margin-bottom: 16px;
}
.sw-job-card__meta strong {
  color: var(--sw-grey-500);
  font-weight: 500;
  margin-right: 4px;
}
.sw-job-card__body h4 {
  font-size: 14px;
  color: var(--sw-blue);
  margin: 16px 0 8px;
}
.sw-job-card__text {
  font-family: inherit;
  white-space: pre-line;
  font-size: 14px;
  color: var(--sw-grey-700);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}
.sw-job-card .sw-btn {
  margin-top: 20px;
}

/* ==========================================================================
   19g. Apply form layout
   ========================================================================== */
.sw-apply-form {
  margin: 16px 0 40px;
}
.sw-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .sw-form-grid { grid-template-columns: 1fr; }
}
.sw-form-grid__full { grid-column: 1 / -1; }
.sw-apply-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--sw-grey-700);
}
.sw-apply-form input,
.sw-apply-form select,
.sw-apply-form textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--sw-grey-300);
  border-radius: 4px;
  background: #fff;
}
.sw-apply-form input:focus,
.sw-apply-form select:focus,
.sw-apply-form textarea:focus {
  outline: none;
  border-color: var(--sw-blue);
  box-shadow: 0 0 0 3px rgba(0, 74, 153, .12);
}

/* ==========================================================================
   20. Core Business page — multi-section storytelling layout
   ========================================================================== */

/* 20a. Intro band — image + copy split */
.sw-biz-intro__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sw-biz-intro__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.sw-biz-intro__media img {
  width: 100%; height: auto;
  display: block;
  transition: transform .6s ease;
}
.sw-biz-intro__media:hover img { transform: scale(1.04); }
.sw-biz-intro__lead {
  font-size: 16px;
  color: var(--sw-grey-700);
  line-height: 1.85;
}
@media (max-width: 800px) {
  .sw-biz-intro__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* 20b. Feature triplet */
.sw-biz-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sw-biz-feature {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.sw-biz-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.sw-biz-feature__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sw-grey-100);
}
.sw-biz-feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.sw-biz-feature:hover .sw-biz-feature__media img { transform: scale(1.06); }
.sw-biz-feature__title {
  margin: 24px 24px 8px;
  font-size: 18px;
  color: var(--sw-grey-900);
}
.sw-biz-feature__desc {
  margin: 0 24px 24px;
  font-size: 14px;
  color: var(--sw-grey-600);
  line-height: 1.7;
}
@media (max-width: 800px) {
  .sw-biz-features { grid-template-columns: 1fr; gap: 20px; }
}

/* 20c. Stats band — animated counters on dark bg */
.sw-biz-stats {
  background: linear-gradient(135deg, var(--sw-blue-dark), var(--sw-blue));
  color: #fff;
}
.sw-biz-stats__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.sw-biz-stats__item {
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.sw-biz-stats__item:last-child { border-right: 0; }
.sw-biz-stats__num {
  display: block;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.sw-biz-stats__label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .sw-biz-stats__list { grid-template-columns: 1fr; }
  .sw-biz-stats__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .sw-biz-stats__item:last-child { border-bottom: 0; }
}

/* 20c2. Product carousel — horizontal scroll-snap slider with prev/next buttons */
.sw-biz-carousel { padding-top: 64px; padding-bottom: 64px; }
.sw-biz-carousel__viewport {
  position: relative;
  margin-top: 32px;
  padding: 0 56px;
}
.sw-biz-carousel__track {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none;
}
.sw-biz-carousel__track::-webkit-scrollbar { display: none; }
.sw-biz-carousel__slide {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .sw-biz-carousel__slide { flex-basis: calc((100% - 40px) / 3); }
}
@media (max-width: 768px) {
  .sw-biz-carousel__viewport { padding: 0 36px; }
  .sw-biz-carousel__slide { flex-basis: calc((100% - 20px) / 2); }
}
.sw-biz-carousel__card {
  display: block; text-decoration: none; color: inherit;
  background: #fff;
  border: 1px solid var(--sw-border, #e5e7eb);
  border-radius: var(--sw-r-md, 8px);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sw-biz-carousel__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,21,46,.08);
  border-color: var(--sw-blue, #0a4ea2);
}
.sw-biz-carousel__media {
  aspect-ratio: 4 / 3; overflow: hidden; background: var(--sw-grey-100, #f3f4f6);
}
.sw-biz-carousel__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.sw-biz-carousel__card:hover .sw-biz-carousel__media img { transform: scale(1.06); }
.sw-biz-carousel__name {
  margin: 0; padding: 16px 18px;
  font-size: 15px; font-weight: 600; line-height: 1.4;
  color: var(--sw-grey-800, #1f2937);
  min-height: 3.2em;
}
.sw-biz-carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--sw-border, #e5e7eb);
  background: #fff; color: var(--sw-grey-800, #1f2937);
  font-size: 24px; line-height: 1; cursor: pointer;
  border-radius: 50%;
  z-index: 1;
  transition: background .2s, color .2s, border-color .2s;
}
.sw-biz-carousel__btn:hover {
  background: var(--sw-blue, #0a4ea2); color: #fff;
  border-color: var(--sw-blue, #0a4ea2);
}
.sw-biz-carousel__btn--prev { left: 0; }
.sw-biz-carousel__btn--next { right: 0; }

/* 20d. Product showcase — alternating image/copy rows */
.sw-biz-products { margin-top: 40px; }
.sw-biz-product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.sw-biz-product:last-child { margin-bottom: 0; }
.sw-biz-product--reverse { grid-template-columns: 1fr 1.1fr; }
.sw-biz-product--reverse .sw-biz-product__media { order: 2; }
.sw-biz-product--reverse .sw-biz-product__copy  { order: 1; }
.sw-biz-product__media {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.sw-biz-product__media img {
  width: 100%; height: auto;
  display: block;
  transition: transform .6s ease;
}
.sw-biz-product__media:hover img { transform: scale(1.06); }
.sw-biz-product__cat {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--sw-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sw-biz-product__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--sw-grey-900);
  letter-spacing: -.01em;
}
.sw-biz-product__summary {
  font-size: 15px;
  color: var(--sw-grey-700);
  line-height: 1.85;
  margin-bottom: 16px;
}
.sw-biz-product__specs {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-left: 2px solid var(--sw-blue);
  padding-left: 16px;
  font-size: 14px;
  color: var(--sw-grey-700);
}
.sw-biz-product__specs li {
  padding: 4px 0;
}
@media (max-width: 800px) {
  .sw-biz-product,
  .sw-biz-product--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .sw-biz-product--reverse .sw-biz-product__media { order: 0; }
  .sw-biz-product--reverse .sw-biz-product__copy  { order: 0; }
}

/* 20e. Application news row */
.sw-biz-news {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.sw-biz-news__card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.sw-biz-news__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.sw-biz-news__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sw-grey-100);
}
.sw-biz-news__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.sw-biz-news__card:hover .sw-biz-news__media img { transform: scale(1.06); }
.sw-biz-news__title {
  font-size: 14px;
  margin: 0;
  padding: 14px 16px;
  color: var(--sw-grey-800);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sw-biz-news__card:hover .sw-biz-news__title { color: var(--sw-blue); }
@media (max-width: 1024px) {
  .sw-biz-news { grid-template-columns: repeat(3, 1fr); }
  .sw-biz-news__card:nth-child(n+4) { display: none; }
}
@media (max-width: 640px) {
  .sw-biz-news { grid-template-columns: repeat(2, 1fr); }
  .sw-biz-news__card:nth-child(n+5) { display: none; }
}

/* 20f. Support strip */
.sw-biz-support {
  background: var(--sw-grey-50, #f6f9fc);
}
.sw-biz-support__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 0;
}
.sw-biz-support__title {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--sw-grey-900);
}
.sw-biz-support__lead {
  margin: 0;
  font-size: 15px;
  color: var(--sw-grey-600);
}
.sw-biz-support__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sw-biz-support__phone-label {
  display: block;
  font-size: 12px;
  color: var(--sw-grey-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sw-biz-support__phone-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--sw-blue);
  text-decoration: none;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

/* ─── Sitewide secondary sub-navigation (under banner) ─────────────────── */
.sw-subnav {
  background: #fff;
  border-bottom: 1px solid var(--sw-grey-300, #e5e7eb);
  position: relative;
  z-index: 4;
}
.sw-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
}
.sw-subnav__tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
}
.sw-subnav__item a {
  display: inline-block;
  padding: 18px 0;
  font-size: 15px;
  color: var(--sw-grey-700, #3a3a3a);
  text-decoration: none;
  position: relative;
  transition: color .2s ease;
}
.sw-subnav__item a:hover { color: var(--sw-blue, #004A99); }
.sw-subnav__item.is-active a { color: var(--sw-blue, #004A99); font-weight: 600; }
.sw-subnav__item.is-active a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--sw-blue, #004A99);
}
.sw-subnav__crumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 13px;
  color: var(--sw-grey-500, #666);
}
.sw-subnav__crumbs li { display: inline-flex; align-items: center; }
.sw-subnav__crumbs li::after { content: '›'; margin: 0 8px; color: var(--sw-grey-300, #cfd5dc); }
.sw-subnav__crumbs li:last-child::after { content: ''; }
.sw-subnav__crumbs a { color: inherit; text-decoration: none; }
.sw-subnav__crumbs a:hover { color: var(--sw-blue, #004A99); }
@media (max-width: 800px) {
  .sw-subnav__inner { padding-top: 8px; padding-bottom: 8px; }
  .sw-subnav__tabs { gap: 4px 16px; }
  .sw-subnav__item a { padding: 8px 0; font-size: 14px; }
  .sw-subnav__crumbs { display: none; }
}

/* Legacy hero-band (kept as a no-op so any cached references don't 404). */
.sw-page-hero-band { display: none; }

/* ─── 1:1 simple page primitives (culture / brand-video / etc.) ─────────── */
.sw-simple-hero {
  margin: 0 0 32px 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.sw-simple-hero img,
.sw-simple-hero video {
  width: 100%;
  height: auto;
  display: block;
}
.sw-simple-text {
  max-width: 920px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
  color: var(--sw-grey-700, #3a3a3a);
}
.sw-simple-text .sw-lead {
  font-size: 18px;
  color: var(--sw-grey-900, #1A1A1A);
  margin-bottom: 18px;
}

/* ─── About: image-left / text-right intro split ────────────────────────── */
.sw-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.sw-intro-split__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.sw-intro-split__copy h2 {
  font-size: 28px;
  margin-bottom: 16px;
}
.sw-intro-split__copy p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--sw-grey-700, #3a3a3a);
  margin: 0 0 14px 0;
}
@media (max-width: 800px) {
  .sw-intro-split { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── Contact: card-left / form-right split ─────────────────────────────── */
.sw-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.sw-contact-card,
.sw-contact-form {
  background: var(--sw-grey-50, #f9fafc);
  border: 1px solid var(--sw-grey-300, #cfd5dc);
  padding: 32px;
  border-radius: 6px;
}
.sw-contact-card h2,
.sw-contact-form h2 {
  font-size: 22px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sw-blue, #004A99);
  display: inline-block;
}
.sw-contact-list { list-style: none; margin: 0; padding: 0; font-size: 15px; line-height: 2; color: var(--sw-grey-700); }
.sw-contact-list li { padding-left: 0; }
.sw-contact-list strong { color: var(--sw-grey-900); margin-right: 6px; }
.sw-contact-form input[type="text"],
.sw-contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--sw-grey-300);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
}
.sw-contact-form input[type="text"]:focus,
.sw-contact-form textarea:focus {
  outline: none;
  border-color: var(--sw-blue);
  box-shadow: 0 0 0 3px rgba(0,74,153,.12);
}
.sw-contact-form label { font-size: 14px; color: var(--sw-grey-700); }
.sw-contact-form p { margin: 0 0 14px 0; }
@media (max-width: 800px) {
  .sw-contact-split { grid-template-columns: 1fr; gap: 24px; }
}

/* Job application status banner (rendered on /job-apply/ when ?apply=…). */
.sw-apply-status {
  margin: 0 auto 24px;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 15px;
  border: 1px solid;
  max-width: var(--sw-container-max, 1200px);
}
.sw-apply-status--ok  { background: #e8f6ed; border-color: #b9e3c8; color: #156a35; }
.sw-apply-status--err { background: #fdecea; border-color: #f5b9b3; color: #8a1f1a; }

/* ==========================================================================
   21. Single product page — image-led hero + specs grid + related
   ========================================================================== */

.sw-product-hero {
  padding: 80px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--sw-blue-dark, #051430), var(--sw-blue, #00b3e6));
  position: relative;
  overflow: hidden;
}
.sw-product-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sw-product-hero__media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-product-hero__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .6s ease;
}
.sw-product-hero__media:hover img { transform: scale(1.04); }
.sw-product-hero__cat {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
}
.sw-product-hero__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.01em;
}
.sw-product-hero__highlights {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}
.sw-product-hero__highlights li {
  border-left: 2px solid rgba(255,255,255,.6);
  padding: 6px 0 6px 14px;
}
.sw-product-hero__highlight-key {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.04em;
}
.sw-product-hero__highlight-val {
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 2px;
}
.sw-product-hero__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sw-product-hero__cta .sw-btn {
  background: #fff;
  color: var(--sw-blue);
  border-color: #fff;
}
.sw-product-hero__cta .sw-btn:hover {
  background: rgba(255,255,255,.92);
}
.sw-product-hero__phone {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sw-product-hero__phone-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}
.sw-product-hero__phone-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
@media (max-width: 800px) {
  .sw-product-hero { padding: 56px 0; }
  .sw-product-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .sw-product-hero__highlights { grid-template-columns: 1fr; }
}

/* Specs grid */
.sw-product-specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.sw-product-specs__item {
  background: #fff;
  border-radius: 4px;
  padding: 20px 24px;
  border-left: 3px solid var(--sw-blue);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.sw-product-specs__key {
  display: block;
  font-size: 12px;
  color: var(--sw-grey-500);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.sw-product-specs__val {
  display: block;
  font-size: 16px;
  color: var(--sw-grey-900);
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .sw-product-specs { grid-template-columns: 1fr; }
}

/* Related product cards */
.sw-product-related {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sw-product-related__card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.sw-product-related__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,.14);
}
.sw-product-related__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sw-grey-100);
}
.sw-product-related__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sw-product-related__card:hover .sw-product-related__media img { transform: scale(1.06); }
.sw-product-related__title {
  font-size: 15px;
  margin: 0;
  padding: 14px 16px;
  color: var(--sw-grey-900);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sw-product-related__card:hover .sw-product-related__title { color: var(--sw-blue); }
@media (max-width: 1024px) {
  .sw-product-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .sw-product-related { grid-template-columns: 1fr; }
}

/* ==========================================================================
   19c. Bottom video band (mirror upstream's second swiper section)
   ========================================================================== */
.sw-bottom-band {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  background: #000;
}
.sw-bottom-band__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 640px) {
  .sw-bottom-band { aspect-ratio: 16 / 9; }
}

/* ==========================================================================
   20. News hub & Applications hub cards
   1:1 of upstream xw.html / yyly.html: a hero card on top of the news page,
   then a 3-col / 4-col card grid where each card is "title at top, image
   below, optional → arrow in the bottom-right of the image area".
   ========================================================================== */

.sw-news-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #fff;
  border-radius: var(--sw-r-lg);
  overflow: hidden;
  margin-bottom: 32px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--sw-border);
  transition: box-shadow var(--sw-dur) var(--sw-ease), transform var(--sw-dur) var(--sw-ease);
}
.sw-news-hero:hover {
  box-shadow: var(--sw-sh-lg);
  transform: translateY(-2px);
}
.sw-news-hero__media {
  background: var(--sw-grey-100);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.sw-news-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.sw-news-hero__body {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.sw-news-hero__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sw-grey-900);
  margin: 0;
}
.sw-news-hero__date {
  font-size: 13px;
  color: var(--sw-grey-500);
  font-variant-numeric: tabular-nums;
}
.sw-news-hero__more {
  align-self: flex-start;
  margin-top: 12px;
  background: #d62828;
  color: #fff;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: .04em;
  transition: background var(--sw-dur) var(--sw-ease);
}
.sw-news-hero:hover .sw-news-hero__more { background: #b51e1e; }
@media (max-width: 768px) {
  .sw-news-hero { grid-template-columns: 1fr; }
  .sw-news-hero__body { padding: 24px; }
  .sw-news-hero__title { font-size: 18px; }
}

/* Grid card used in /news/ (3-col) and /applications/ (4-col) */
.sw-news-grid,
.sw-app-grid {
  list-style: none; padding: 0; margin: 0;
}
.sw-news-card {
  list-style: none;
}
.sw-news-card__inner {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--sw-r-lg);
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--sw-border);
  transition: box-shadow var(--sw-dur) var(--sw-ease), transform var(--sw-dur) var(--sw-ease), border-color var(--sw-dur) var(--sw-ease);
}
.sw-news-card__inner:hover {
  box-shadow: var(--sw-sh-md);
  transform: translateY(-3px);
  border-color: var(--sw-blue);
}
.sw-news-card__head {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sw-news-card__date {
  font-size: 12px;
  color: var(--sw-grey-500);
  font-variant-numeric: tabular-nums;
}
.sw-news-card__title {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--sw-grey-900);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sw-news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--sw-grey-100);
  overflow: hidden;
  margin-top: auto;
}
.sw-news-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--sw-dur-slow) var(--sw-ease);
}
.sw-news-card__inner:hover .sw-news-card__media img { transform: scale(1.04); }
/* Empty card: pure white image frame, mirrors upstream /yyly.html. */
.sw-news-card__media--empty { background: #fff; }
.sw-news-card__arrow {
  position: absolute;
  right: 16px; bottom: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--sw-grey-700, #374151);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  transition: background var(--sw-dur) var(--sw-ease), color var(--sw-dur) var(--sw-ease);
}
.sw-news-card__inner:hover .sw-news-card__arrow {
  background: var(--sw-blue);
  color: #fff;
}
/* /applications/ variant — show arrow only (no date in head) */
.sw-news-card--app .sw-news-card__head { padding-bottom: 16px; }

/* News matrix page: two columns, four rows per page. */
.sw-news-hub__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}
.sw-news-hub__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sw-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .34em;
}
.sw-news-hub__title {
  margin: 0;
  color: var(--sw-grey-900);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.06em;
}
.sw-news-hub__tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: #eef0f4;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.sw-news-hub__tab {
  min-width: 108px;
  padding: 13px 20px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #8b95a5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: color var(--sw-dur) var(--sw-ease), background var(--sw-dur) var(--sw-ease), box-shadow var(--sw-dur) var(--sw-ease);
}
.sw-news-hub__tab:hover,
.sw-news-hub__tab.is-active {
  background: #fff;
  color: var(--sw-blue);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .10);
}
.sw-news-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sw-news-matrix-card {
  list-style: none;
}
.sw-news-matrix-card__inner {
  display: grid;
  grid-template-columns: minmax(220px, 42%) 1fr;
  min-height: 260px;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 22px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
  transition: transform var(--sw-dur) var(--sw-ease), box-shadow var(--sw-dur) var(--sw-ease), border-color var(--sw-dur) var(--sw-ease);
}
.sw-news-matrix-card__inner:hover {
  transform: translateY(-4px);
  border-color: rgba(0,74,153,.26);
  box-shadow: 0 22px 46px rgba(15, 23, 42, .12);
}
.sw-news-matrix-card__media {
  position: relative;
  overflow: hidden;
  background: #eef0f4;
}
.sw-news-matrix-card__media.is-empty {
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.9), transparent 24%),
    linear-gradient(135deg, #f6f7f9, #e9edf2);
}
.sw-news-matrix-card__media img,
.sw-news-matrix-card__media video,
.sw-card__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sw-news-matrix-card__media img,
.sw-news-matrix-card__media video {
  transition: transform var(--sw-dur-slow) var(--sw-ease);
}
.sw-news-matrix-card__inner:hover .sw-news-matrix-card__media img,
.sw-news-matrix-card__inner:hover .sw-news-matrix-card__media video {
  transform: scale(1.04);
}
.sw-news-matrix-card__date {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-width: 58px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  color: var(--sw-grey-900);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .10);
}
.sw-news-matrix-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 28px 24px;
}
.sw-news-matrix-card__title {
  margin: 0;
  color: var(--sw-grey-900);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -.03em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sw-news-matrix-card__foot {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  color: #86a6d4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sw-news-matrix-card__foot span:last-child {
  height: 1px;
  background: rgba(134, 166, 212, .42);
}
.sw-video-thumb {
  background: #111827;
}
.sw-video-thumb__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .22);
}
.sw-video-thumb__play::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-left: 16px solid var(--sw-blue);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.sw-card__thumb {
  position: relative;
}
@media (max-width: 1100px) {
  .sw-news-hub__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .sw-news-hub__tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }
}
@media (max-width: 860px) {
  .sw-news-matrix-grid {
    grid-template-columns: 1fr;
  }
  .sw-news-matrix-card__inner {
    grid-template-columns: 1fr;
  }
  .sw-news-matrix-card__media {
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 520px) {
  .sw-news-hub__title {
    font-size: 38px;
  }
  .sw-news-hub__tab {
    min-width: 96px;
    padding: 11px 16px;
  }
  .sw-news-matrix-card__body {
    padding: 22px;
  }
}

/* Application tunnel sub-pages: subtitle + case grid (metro / hydraulic /
   utility / mountain). Cases are simple text-only project name cards. */
.sw-tunnel-intro { max-width: 880px; margin: 0 auto 32px; }
.sw-tunnel-cases {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.sw-tunnel-case {
  list-style: none;
  background: #fff;
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-r-md, 8px);
  overflow: hidden;
  transition: box-shadow var(--sw-dur) var(--sw-ease),
              transform var(--sw-dur) var(--sw-ease),
              border-color var(--sw-dur) var(--sw-ease);
}
.sw-tunnel-case__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.sw-tunnel-case:not(.sw-tunnel-case--clickable) .sw-tunnel-case__body { padding: 28px 24px; }
.sw-tunnel-case--clickable:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  transform: translateY(-2px);
  border-color: var(--sw-primary, #c8161d);
}
.sw-tunnel-case--clickable:hover .sw-tunnel-case__title { color: var(--sw-primary, #c8161d); }
.sw-tunnel-case--clickable:hover .sw-tunnel-case__media img { transform: scale(1.05); }
.sw-tunnel-case__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
  overflow: hidden;
}
.sw-tunnel-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--sw-ease);
}
.sw-tunnel-case__body { padding: 22px 22px 24px; }
.sw-tunnel-case__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--sw-grey-900);
  line-height: 1.5;
  transition: color var(--sw-dur) var(--sw-ease);
}
.sw-tunnel-case__desc {
  margin: 0;
  font-size: 14px;
  color: var(--sw-grey-700);
  line-height: 1.6;
}
.sw-tunnel-case__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sw-primary, #c8161d);
  letter-spacing: .04em;
}
@media (max-width: 768px) {
  .sw-tunnel-cases { grid-template-columns: 1fr; }
}

/* ==========================================================================
   21. Jobs list (/job-apply/) — 1:1 of upstream rczp.html job rows.
   Each row: title at top-left, meta strip below, blue "招聘详情" button
   top-right with a circular "→" beside it.
   ========================================================================== */
.sw-jobs-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.sw-jobs-list__row { list-style: none; }
.sw-jobs-list__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 28px 32px;
  background: #fff;
  border-radius: var(--sw-r-md, 8px);
  border: 1px solid var(--sw-border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--sw-dur) var(--sw-ease), border-color var(--sw-dur) var(--sw-ease), transform var(--sw-dur) var(--sw-ease);
}
.sw-jobs-list__inner:hover {
  box-shadow: var(--sw-sh-md);
  border-color: var(--sw-blue);
  transform: translateY(-2px);
}
.sw-jobs-list__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sw-grey-900);
  margin: 0 0 14px;
}
.sw-jobs-list__meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  gap: 6px 32px;
  font-size: 13px;
}
.sw-jobs-list__meta li { list-style: none; }
.sw-jobs-list__k { color: var(--sw-grey-500, #6b7280); }
.sw-jobs-list__v { color: var(--sw-grey-900, #111827); }
.sw-jobs-list__col-aside {
  display: flex; align-items: center; gap: 16px;
  flex: none;
}
.sw-jobs-list__btn {
  background: var(--sw-blue, #0a4ea2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  letter-spacing: .04em;
  transition: background var(--sw-dur) var(--sw-ease);
}
.sw-jobs-list__inner:hover .sw-jobs-list__btn { background: #083e80; }
.sw-jobs-list__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sw-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--sw-grey-500);
  transition: background var(--sw-dur) var(--sw-ease), color var(--sw-dur) var(--sw-ease), border-color var(--sw-dur) var(--sw-ease);
}
.sw-jobs-list__inner:hover .sw-jobs-list__arrow {
  background: var(--sw-blue);
  color: #fff;
  border-color: var(--sw-blue);
}

@media (max-width: 720px) {
  .sw-jobs-list__inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .sw-jobs-list__col-aside {
    justify-content: flex-start;
  }
}

/* ========================================================================
   22. Sunward upstream alignment pass.
   Keep the existing navigation style. Only tune page bodies, banners, cards,
   floating tools and content blocks so pages move closer to the target site.
   ======================================================================== */
body {
  background: #f6f7f9;
}
body.home { padding-top: 0; }
body.home .sw-hero__overlay {
  display: none;
}
body.home .sw-hero__content,
body.home .sw-hero__scroll-hint {
  display: none;
}

.sw-banner {
  height: clamp(260px, 30vw, 340px);
  background-color: #d7dde5;
}
.sw-banner__overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.22) 42%, rgba(0,76,156,.48) 100%),
    linear-gradient(90deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.16) 100%);
}
.sw-banner__content {
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 0;
}
.sw-banner__eyebrow {
  margin-bottom: 10px;
  color: #1267b2;
  letter-spacing: .18em;
}
.sw-banner__title {
  font-size: clamp(30px, 4vw, 46px);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.28);
}
.sw-banner__title::after { content: ''; }
.sw-banner__lead {
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 6px rgba(0,0,0,.24);
}

.sw-subnav {
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  border-bottom: 1px solid #edf0f4;
}
.sw-subnav__inner {
  min-height: 48px;
}
.sw-subnav__tabs {
  gap: 0 28px;
}
.sw-subnav__item a {
  padding: 14px 0;
  font-size: 14px;
}
.sw-subnav__item.is-active a { color: #c8161d; }
.sw-subnav__item.is-active a::after { background: #c8161d; }

.sw-section,
.sw-section--grey {
  background: #f6f7f9;
}
.sw-card,
.sw-news-card__inner,
.sw-tunnel-case,
.sw-jobs-list__inner,
.sw-post-list__item,
.sw-download-item__link {
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}
.sw-floating {
  right: 18px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  gap: 3px;
}
.sw-floating__btn {
  width: 44px;
  height: 44px;
  background: #0a63b8;
  color: #fff;
}
.sw-floating__btn + .sw-floating__btn {
  border-top: 0;
}
.sw-floating__btn:hover {
  background: #084d91;
}

body.category .sw-section > .sw-container {
  width: min(calc(100% - 48px), 760px);
  max-width: none;
}
body.category .sw-section .sw-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.category .sw-section .sw-card {
  min-height: 100%;
}
body.category .sw-section .sw-card__thumb {
  aspect-ratio: 16 / 10;
}
body.category .sw-section .sw-card__body {
  padding: 18px 16px 20px;
}

@media (max-width: 720px) {
  .sw-banner { height: 220px; }
  body.category .sw-section .sw-grid--3 {
    grid-template-columns: 1fr;
  }
}

.sw-contact-split--upstream {
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid #edf0f4;
}
.sw-contact-split--upstream .sw-contact-card,
.sw-contact-split--upstream .sw-contact-map,
.sw-contact-split--upstream .sw-contact-form {
  border: 0;
  border-radius: 0;
  background: #fff;
}
.sw-contact-split--upstream .sw-contact-card {
  padding: 38px 40px;
}
.sw-contact-map {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.16)),
    repeating-linear-gradient(0deg, rgba(46,93,148,.12) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(46,93,148,.12) 0 1px, transparent 1px 44px),
    linear-gradient(135deg, #eef3e9, #f6efe2 46%, #e8f1f7);
}
.sw-contact-map::before,
.sw-contact-map::after {
  content: '';
  position: absolute;
  background: rgba(241,176,73,.65);
  transform: rotate(-18deg);
}
.sw-contact-map::before {
  width: 120%;
  height: 18px;
  left: -10%;
  top: 45%;
}
.sw-contact-map::after {
  width: 80%;
  height: 14px;
  right: -12%;
  top: 62%;
  background: rgba(83,138,199,.55);
  transform: rotate(22deg);
}
.sw-contact-map__pin {
  position: absolute;
  left: 58%;
  top: 46%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: #d71920;
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(215,25,32,.35);
}
.sw-contact-map__pin::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}
.sw-contact-form--below {
  margin-top: 28px;
  background: #fff;
  border-color: #edf0f4;
}
@media (max-width: 800px) {
  .sw-contact-split--upstream { grid-template-columns: 1fr; }
  .sw-contact-map { min-height: 220px; }
}

/* Business pages: upstream-like overview and left-sidebar category pages. */
.sw-business-overview {
  background: #fff;
  padding-top: 62px;
  padding-bottom: 62px;
}
.sw-business-overview__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: stretch;
}
.sw-business-overview__copy {
  min-height: 360px;
  padding: 54px 62px 48px 0;
  background:
    url("data:image/svg+xml,%3Csvg width='420' height='300' viewBox='0 0 420 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23e7ecf2' stroke-width='2' opacity='.9'%3E%3Cpath d='M33 216c92-92 218-114 342-70'/%3E%3Cpath d='M74 242c76-74 178-91 285-54'/%3E%3Cpath d='M112 268c60-55 139-69 222-42'/%3E%3C/g%3E%3C/svg%3E") left bottom / 420px auto no-repeat;
}
.sw-business-overview__copy .sw-section-header__title {
  max-width: 420px;
  font-size: clamp(26px, 3vw, 36px);
}
.sw-business-overview__copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #555f6d;
  font-size: 15px;
  line-height: 2;
}
.sw-business-overview__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #0a6fd3;
}
.sw-business-tile {
  min-height: 180px;
  padding: 36px 34px;
  color: #fff;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(135deg, rgba(0,73,153,.14), rgba(255,255,255,0));
  transition: background .25s ease, transform .25s ease;
}
.sw-business-tile:hover {
  background-color: rgba(0,52,112,.26);
  transform: translateY(-2px);
}
.sw-business-tile strong,
.sw-business-tile em {
  display: block;
}
.sw-business-tile strong {
  margin-top: 18px;
  font-size: 18px;
  font-style: normal;
}
.sw-business-tile em {
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}
.sw-business-tile__icon {
  display: block;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.82);
  position: relative;
}
.sw-business-tile__icon::before,
.sw-business-tile__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.sw-business-tile__icon--machine {
  border-radius: 50%;
}
.sw-business-tile__icon--machine::before {
  inset: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
}
.sw-business-tile__icon--calendar::before {
  width: 22px;
  height: 2px;
  left: 4px;
  top: 9px;
}
.sw-business-tile__icon--calendar::after {
  width: 2px;
  height: 22px;
  left: 15px;
  top: 4px;
}
.sw-business-tile__icon--tunnel {
  border-radius: 18px 18px 4px 4px;
}
.sw-business-tile__icon--tunnel::before {
  width: 20px;
  height: 2px;
  left: 5px;
  bottom: 9px;
}
.sw-business-tile__icon--safe {
  transform: rotate(45deg);
}
.sw-business-tile__icon--safe::before {
  width: 18px;
  height: 2px;
  left: 6px;
  top: 14px;
}
.sw-business-products,
.sw-business-cases,
.sw-business-news {
  padding-top: 56px;
  padding-bottom: 58px;
}
.sw-business-cardrow,
.sw-business-casegrid,
.sw-business-newsrow {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}
.sw-business-cardrow {
  grid-template-columns: repeat(4, 1fr);
}
.sw-business-casegrid {
  grid-template-columns: repeat(3, 1fr);
}
.sw-business-newsrow {
  grid-template-columns: repeat(4, 1fr);
}
.sw-business-cardrow__card,
.sw-business-casegrid__card,
.sw-business-newsrow__item {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #edf0f4;
  overflow: hidden;
}
.sw-business-cardrow__card img,
.sw-business-casegrid__card img,
.sw-business-newsrow__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.sw-business-cardrow__card strong,
.sw-business-casegrid__card strong,
.sw-business-newsrow__item strong {
  display: block;
  padding: 16px 18px 20px;
  font-size: 15px;
  line-height: 1.55;
}
.sw-business-casegrid__card span {
  display: block;
  padding: 18px 18px 0;
  color: #0a63b8;
  font-size: 12px;
}
.sw-business-cat {
  padding-top: 44px;
}
.sw-business-cat__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.sw-business-sidebar {
  background: #fff;
}
.sw-business-sidebar__head {
  display: block;
  padding: 18px 22px;
  color: #fff;
  text-decoration: none;
  background: #0a63b8;
  font-weight: 700;
}
.sw-business-sidebar__head span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  letter-spacing: .08em;
}
.sw-business-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #edf0f4;
  border-top: 0;
}
.sw-business-sidebar a {
  text-decoration: none;
}
.sw-business-sidebar li a {
  display: block;
  padding: 15px 22px;
  color: #333b46;
  border-bottom: 1px solid #edf0f4;
  font-size: 14px;
}
.sw-business-sidebar li:last-child a {
  border-bottom: 0;
}
.sw-business-sidebar li.is-active a,
.sw-business-sidebar li a:hover {
  color: #fff;
  background: #07549e;
}
.sw-business-cat__main {
  min-width: 0;
}
.sw-business-crumb {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-bottom: 22px;
  color: #9aa3af;
  font-size: 12px;
}
.sw-business-crumb a {
  color: inherit;
  text-decoration: none;
}
.sw-business-crumb strong {
  color: #667085;
  font-weight: 400;
}
.sw-business-cat__grid.sw-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.sw-business-cat__grid .sw-news-card {
  background: #fff;
  border: 1px solid #edf0f4;
}
.sw-business-cat__grid .sw-news-card__head {
  min-height: 52px;
  padding: 14px 14px 8px;
}
.sw-business-cat__grid .sw-news-card__title {
  font-size: 13px;
  line-height: 1.5;
}
.sw-business-cat__grid .sw-news-card__media {
  border-radius: 0;
}
@media (max-width: 1024px) {
  .sw-business-overview__inner {
    grid-template-columns: 1fr;
  }
  .sw-business-overview__copy {
    padding-right: 0;
  }
  .sw-business-cardrow,
  .sw-business-newsrow,
  .sw-business-cat__grid.sw-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sw-business-cat__layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .sw-business-overview__tiles,
  .sw-business-cardrow,
  .sw-business-casegrid,
  .sw-business-newsrow,
  .sw-business-cat__grid.sw-grid--4 {
    grid-template-columns: 1fr;
  }
  .sw-business-overview__copy {
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 36px;
  }
}

/* Homepage news matrix: reference-style 4-column / 2-row information wall. */
.sw-home-news-matrix {
  background: #fff;
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(66px, 7vw, 96px);
}
.sw-home-news-matrix > .sw-container {
  width: min(calc(100% - 64px), 1560px);
  max-width: none;
}
.sw-home-news-matrix__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(46px, 6vw, 76px);
}
.sw-home-news-matrix__eyebrow {
  display: inline-block;
  color: #0b5aa7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .52em;
}
.sw-home-news-matrix__title {
  margin: 14px 0 0;
  color: #151a22;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.07em;
}
.sw-home-news-matrix__title::after {
  content: '.';
  color: #151a22;
}
.sw-home-news-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: min(100%, 430px);
  margin-top: 32px;
  padding: 5px;
  border-radius: 13px;
  background: #f0f2f6;
}
.sw-home-news-tabs__btn {
  flex: 1 1 0;
  min-width: 92px;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  background: transparent;
  color: #9aa3b2;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
}
.sw-home-news-tabs__btn:hover,
.sw-home-news-tabs__btn.is-active {
  color: #0b5aa7;
  background: #fff;
  box-shadow: 0 4px 12px rgba(22, 32, 48, .12);
}
.sw-home-news-tabs__btn::after {
  display: none;
}
.sw-home-news-panel {
  display: none;
}
.sw-home-news-panel.is-active {
  display: block;
}
.sw-home-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 78px;
}
.sw-home-news-card {
  min-width: 0;
}
.sw-home-news-card__inner {
  display: block;
  color: inherit;
  text-decoration: none;
}
.sw-home-news-card__media {
  position: relative;
  aspect-ratio: 1.05 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #f0f2f6;
  box-shadow: 0 5px 14px rgba(16, 24, 40, .08);
}
.sw-home-news-card__media.is-empty {
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.95), transparent 22%),
    linear-gradient(145deg, #f3f5f8, #eceff4);
}
.sw-home-news-card__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}
.sw-home-news-card__inner:hover .sw-home-news-card__media img {
  transform: scale(1.045);
}
.sw-home-news-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-width: 52px;
  padding: 5px 10px;
  border-radius: 7px;
  background: rgba(255,255,255,.94);
  color: #252b33;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  box-shadow: 0 4px 12px rgba(22,32,48,.08);
}
.sw-home-news-card__body {
  padding-top: 22px;
}
.sw-home-news-card__title {
  margin: 8px 0 0;
  color: #111827;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: -.04em;
}
.sw-home-news-card__foot {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  color: #88a8d5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}
.sw-home-news-card__foot i {
  height: 1px;
  background: #d7e1ef;
}
.sw-home-news-more {
  margin-top: 82px;
  padding-top: 40px;
  border-top: 1px solid #e8edf4;
  text-align: center;
}
.sw-home-news-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 214px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid #dde3eb;
  color: #111827;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(16, 24, 40, .06);
  font-size: 13px;
  font-weight: 800;
}
.sw-home-news-more a:hover {
  color: #0b5aa7;
  border-color: #c6d6ea;
  box-shadow: 0 8px 20px rgba(16, 24, 40, .1);
}
.sw-home-news-more svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 1200px) {
  .sw-home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .sw-home-news-matrix__head {
    flex-direction: column;
  }
  .sw-home-news-tabs {
    width: 100%;
    margin-top: 0;
    overflow-x: auto;
  }
  .sw-home-news-tabs__btn {
    flex: 0 0 auto;
  }
}
@media (max-width: 640px) {
  .sw-home-news-matrix > .sw-container {
    width: min(calc(100% - 32px), 1560px);
  }
  .sw-home-news-grid {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }
  .sw-home-news-card__date {
    left: 14px;
  }
  .sw-home-news-card__title {
    font-size: 18px;
  }
}

/* Sitewide visual consistency pass: one rounded card language. */
:root {
  --sw-card-radius-unified: 22px;
  --sw-card-shadow-unified: 0 12px 30px rgba(15, 23, 42, .07);
  --sw-card-shadow-unified-hover: 0 22px 46px rgba(15, 23, 42, .12);
}
.sw-card,
.sw-news-card__inner,
.sw-news-matrix-card__inner,
.sw-home-news-card__media,
.sw-business-cardrow__card,
.sw-business-casegrid__card,
.sw-business-newsrow__item,
.sw-jobs-list__inner,
.sw-post-list__item,
.sw-download-item__link,
.sw-contact-card,
.sw-contact-map,
.sw-contact-form,
.sw-article,
.sw-video,
.sw-feature-card,
.sw-feature-card__media {
  border-radius: var(--sw-card-radius-unified);
}
.sw-card,
.sw-news-card__inner,
.sw-news-matrix-card__inner,
.sw-home-news-card__media,
.sw-business-cardrow__card,
.sw-business-casegrid__card,
.sw-business-newsrow__item,
.sw-jobs-list__inner,
.sw-post-list__item,
.sw-download-item__link,
.sw-contact-card,
.sw-contact-form,
.sw-article {
  box-shadow: var(--sw-card-shadow-unified);
  border-color: rgba(15, 23, 42, .06);
}
.sw-card,
.sw-news-card__inner,
.sw-news-matrix-card__inner,
.sw-business-cardrow__card,
.sw-business-casegrid__card,
.sw-business-newsrow__item,
.sw-jobs-list__inner,
.sw-post-list__item,
.sw-download-item__link,
.sw-contact-card,
.sw-contact-form,
.sw-article,
.sw-feature-card,
.sw-feature-card__media {
  overflow: hidden;
}
.sw-card:hover,
.sw-news-card__inner:hover,
.sw-news-matrix-card__inner:hover,
.sw-business-cardrow__card:hover,
.sw-business-casegrid__card:hover,
.sw-business-newsrow__item:hover,
.sw-jobs-list__inner:hover,
.sw-post-list__item:hover,
.sw-download-item__link:hover {
  box-shadow: var(--sw-card-shadow-unified-hover);
}
.sw-home-news-matrix .sw-home-news-card__media {
  border-radius: 16px;
  box-shadow: 0 5px 14px rgba(16, 24, 40, .08);
}
.sw-home-card-section > .sw-container {
  width: min(calc(100% - 64px), 1560px);
  max-width: none;
}
.sw-home-card-section .sw-grid--4 {
  column-gap: 28px;
  row-gap: 42px;
}
.sw-home-card-section .sw-card {
  border: 0;
  border-radius: 16px;
  overflow: visible;
}
.sw-home-card-section .sw-card__thumb {
  aspect-ratio: 1.05 / 1;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.sw-home-card-section .sw-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.sw-home-card-section .sw-card__body {
  min-height: 90px;
  flex: 0 0 auto;
  overflow: visible;
  padding: 22px 0 0;
  background: transparent;
}
.sw-home-card-section .sw-card__title {
  color: #111827;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: -.04em;
}
.sw-home-card-section .sw-card__subtitle,
.sw-home-card-section .sw-card__summary {
  font-size: 13px;
  line-height: 1.55;
  display: block;
  overflow: visible;
}
@media (max-width: 640px) {
  .sw-home-card-section > .sw-container {
    width: min(calc(100% - 32px), 1560px);
  }
}
.sw-card__thumb,
.sw-card__thumb img,
.sw-news-card__media,
.sw-news-card__media img,
.sw-news-matrix-card__media,
.sw-news-matrix-card__media img,
.sw-news-matrix-card__media video,
.sw-business-cardrow__card img,
.sw-business-casegrid__card img,
.sw-business-newsrow__item img {
  overflow: hidden;
}
.sw-contact-split--upstream {
  border-radius: var(--sw-card-radius-unified);
  overflow: hidden;
  box-shadow: var(--sw-card-shadow-unified);
}
.sw-contact-split--upstream .sw-contact-card,
.sw-contact-split--upstream .sw-contact-map,
.sw-contact-split--upstream .sw-contact-form {
  box-shadow: none;
}
.sw-contact-split--upstream .sw-contact-card {
  border-radius: var(--sw-card-radius-unified) 0 0 var(--sw-card-radius-unified);
}
.sw-contact-split--upstream .sw-contact-map {
  border-radius: 0 var(--sw-card-radius-unified) var(--sw-card-radius-unified) 0;
}
.sw-business-sidebar,
.sw-business-sidebar ul,
.sw-business-sidebar__head {
  border-radius: 18px;
}
.sw-business-sidebar {
  overflow: hidden;
  box-shadow: var(--sw-card-shadow-unified);
}
.sw-business-sidebar ul {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.sw-business-sidebar__head {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.sw-business-overview__tiles {
  border-radius: var(--sw-card-radius-unified);
  overflow: hidden;
  box-shadow: var(--sw-card-shadow-unified);
}

/* News landing page: upstream-like featured item + compact 3-column grid. */
.sw-news-list-page {
  padding-top: 48px;
}
.sw-news-list-page__inner {
  width: min(calc(100% - 48px), 760px);
  max-width: none;
}
.sw-news-list-page__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin: 0 0 32px;
  color: #6f7785;
  font-size: 13px;
}
.sw-news-list-page__tabs a {
  position: relative;
  color: inherit;
  text-decoration: none;
}
.sw-news-list-page__tabs a.is-active,
.sw-news-list-page__tabs a:hover {
  color: #c8161d;
}
.sw-news-list-page__tabs a.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 22px;
  height: 2px;
  background: #c8161d;
  transform: translateX(-50%);
}
.sw-news-landing-feature {
  margin-bottom: 18px;
}
.sw-news-landing-feature__inner {
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  min-height: 178px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}
.sw-news-landing-feature__media,
.sw-news-landing-card__media {
  background: #f3f5f8;
  overflow: hidden;
}
.sw-news-landing-feature__media {
  aspect-ratio: 16 / 8.2;
}
.sw-news-landing-feature__media img,
.sw-news-landing-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sw-news-landing-feature__media.is-empty,
.sw-news-landing-card__media.is-empty {
  background: linear-gradient(135deg, #f7f8fa, #edf1f5);
}
.sw-news-landing-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
}
.sw-news-landing-feature__body h2 {
  margin: 0 0 12px;
  color: #121820;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 800;
}
.sw-news-landing-feature__body time {
  color: #9aa3af;
  font-size: 12px;
}
.sw-news-landing-feature__body span {
  align-self: flex-start;
  margin-top: 18px;
  padding: 9px 20px;
  color: #fff;
  background: #d71920;
  font-size: 12px;
  font-weight: 700;
}
.sw-news-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sw-news-landing-card {
  list-style: none;
  background: #fff;
}
.sw-news-landing-card a {
  display: block;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  background: #fff;
}
.sw-news-landing-card__media {
  aspect-ratio: 16 / 10;
}
.sw-news-landing-card time {
  display: block;
  padding: 13px 14px 0;
  color: #9aa3af;
  font-size: 11px;
}
.sw-news-landing-card h3 {
  margin: 0;
  padding: 6px 14px 18px;
  min-height: 58px;
  color: #101828;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}
@media (max-width: 760px) {
  .sw-news-landing-feature__inner {
    grid-template-columns: 1fr;
  }
  .sw-news-landing-grid {
    grid-template-columns: 1fr;
  }
  .sw-news-list-page__tabs {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
  }
}

/* About/contact refinements: keep upstream page hierarchy, but align with the
   rounded card system used across the rebuilt WordPress theme. */
.sw-about-page {
  padding-top: 64px;
}
.sw-about-page__inner {
  width: min(calc(100% - 48px), 1120px);
  max-width: none;
}
.sw-about-intro {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.sw-about-intro .sw-intro-split {
  position: relative;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: 0;
  align-items: stretch;
  min-height: 390px;
  border-radius: var(--sw-card-radius-unified);
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 55%, rgba(255,255,255,.18) 100%),
    url('/wp-content/uploads/sunward-mirror/assets/omo-oss-image.thefastimg.com/portal-saas/pg2025041616501736520/cms/image/f7f30d9d-a1de-4b45-a2ee-3263686d2979.jpg') right center / cover no-repeat;
  box-shadow: var(--sw-card-shadow-unified);
}
.sw-about-intro .sw-intro-split__media {
  order: 2;
  min-height: 100%;
  opacity: .28;
}
.sw-about-intro .sw-intro-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sw-about-intro .sw-intro-split__copy {
  order: 1;
  padding: 58px 56px;
}
.sw-about-intro .sw-intro-split__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}
.sw-about-intro .sw-intro-split__copy p {
  max-width: 760px;
  color: #4b5563;
  line-height: 1.95;
}
.sw-about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -42px;
  padding: 0 44px;
  position: relative;
  z-index: 2;
}
.sw-about-stat {
  padding: 26px 28px;
  border-radius: var(--sw-card-radius-unified);
  background: #fff;
  box-shadow: var(--sw-card-shadow-unified);
}
.sw-about-stat strong {
  display: block;
  color: var(--sw-blue);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
}
.sw-about-stat span {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
}
.sw-about-honors {
  margin-top: 72px;
}
.sw-about-honors__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.sw-about-honor {
  margin: 0;
  padding: 18px;
  border-radius: var(--sw-card-radius-unified);
  background: #fff;
  box-shadow: var(--sw-card-shadow-unified);
}
.sw-about-honor img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}
.sw-about-honor figcaption {
  margin-top: 14px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

body.page-id-2532 .sw-section > .sw-container {
  width: min(calc(100% - 48px), 1120px);
  max-width: none;
}
body.page-id-2532 .sw-article {
  max-width: none;
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
body.page-id-2532 .sw-contact-split--upstream {
  width: min(100%, 820px);
  margin: 0 auto;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .78fr);
  border: 0;
  background: #fff;
}
body.page-id-2532 .sw-contact-split--upstream .sw-contact-card {
  padding: 42px 44px;
}
body.page-id-2532 .sw-contact-form--below {
  margin-top: 44px;
  padding: 48px 56px;
  border: 0;
  border-radius: var(--sw-card-radius-unified);
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    url('/wp-content/uploads/sunward-mirror/assets/omo-oss-image.thefastimg.com/portal-saas/pg2025041616501736520/cms/image/f7f30d9d-a1de-4b45-a2ee-3263686d2979.jpg') center / cover no-repeat;
}
body.page-id-2532 .sw-contact-form--below form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}
body.page-id-2532 .sw-contact-form--below form > p {
  margin: 0;
}
body.page-id-2532 .sw-contact-form--below form > p:first-child {
  display: none;
}
body.page-id-2532 .sw-contact-form--below form > p:nth-child(4),
body.page-id-2532 .sw-contact-form--below form > p:nth-child(5) {
  grid-column: 1 / -1;
}
body.page-id-2532 .sw-contact-form textarea {
  min-height: 118px;
}

/* News module consistency: /news/ landing cards and category cards share the
   same compact card scale. The landing page keeps its single featured item. */
.sw-news-landing-feature__inner,
.sw-news-landing-card a {
  border-radius: var(--sw-card-radius-unified);
  box-shadow: var(--sw-card-shadow-unified);
  overflow: hidden;
}
.sw-news-landing-card a:hover {
  transform: translateY(-4px);
  box-shadow: var(--sw-card-shadow-unified-hover);
}
body.category .sw-section .sw-card__tag,
body.category .sw-section .sw-card__summary {
  display: none;
}
body.category .sw-section .sw-card {
  border-radius: var(--sw-card-radius-unified);
}
body.category .sw-section .sw-card__body {
  gap: 8px;
  min-height: 116px;
}
body.category .sw-section .sw-card__title {
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
}
body.category .sw-section .sw-card__meta {
  margin-top: auto;
  padding-top: 4px;
  border-top: 0;
}

@media (max-width: 760px) {
  .sw-about-intro .sw-intro-split {
    grid-template-columns: 1fr;
  }
  .sw-about-intro .sw-intro-split__copy {
    padding: 36px 28px;
  }
  .sw-about-stats,
  .sw-about-honors__grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
  body.page-id-2532 .sw-contact-split--upstream,
  body.page-id-2532 .sw-contact-form--below form {
    grid-template-columns: 1fr;
  }
body.page-id-2532 .sw-contact-form--below {
    padding: 32px 24px;
  }
}

/* Wide-screen rhythm pass: the main content should feel substantial on
   desktop while preserving the same rounded card language across sections. */
:root {
  --sw-page-wide: 1200px;
}
.sw-news-list-page__inner,
body.category .sw-section > .sw-container,
.sw-about-page__inner,
body.page-id-2532 .sw-section > .sw-container {
  width: min(calc(100% - 64px), var(--sw-page-wide));
  max-width: none;
}
.sw-news-landing-grid,
body.category .sw-section .sw-grid--3,
.sw-about-honors__grid {
  gap: 24px;
}
.sw-news-landing-feature {
  margin-bottom: 24px;
}
.sw-news-landing-feature__inner {
  min-height: 230px;
}
body.page-id-2532 .sw-contact-split--upstream {
  width: 100%;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
}
body.page-id-2532 .sw-contact-form--below {
  width: 100%;
}
body.category .sw-section .sw-card__body,
.sw-news-landing-card h3 {
  min-height: 126px;
}
@media (max-width: 760px) {
  .sw-news-list-page__inner,
  body.category .sw-section > .sw-container,
  .sw-about-page__inner,
  body.page-id-2532 .sw-section > .sw-container {
    width: min(calc(100% - 32px), var(--sw-page-wide));
  }
  body.page-id-2532 .sw-contact-split--upstream {
    grid-template-columns: 1fr;
  }
}

/* Homepage: reference-inspired core business, application cinema, and X-Ray blueprint. */
.sw-home-business {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(86px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 74, 153, .08), transparent 34%),
    linear-gradient(180deg, var(--sw-white) 0%, var(--sw-grey-50) 100%);
  color: var(--sw-grey-900);
}
.sw-home-business::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,74,153,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,74,153,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.sw-home-business__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), 1560px);
  margin-inline: auto;
}
.sw-home-business__head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.sw-home-business__eyebrow,
.sw-home-apps__head span,
.sw-xray__head span {
  display: block;
  color: var(--sw-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5em;
  text-transform: uppercase;
}
.sw-home-business__title,
.sw-home-apps__head h2,
.sw-xray__head h2 {
  margin: 18px 0 0;
  color: var(--sw-grey-900);
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.05em;
}
.sw-home-business__title::after,
.sw-home-apps__head h2::after {
  content: ".";
  color: var(--sw-blue);
}
.sw-home-business__head i,
.sw-home-apps__head i {
  display: block;
  width: 64px;
  height: 2px;
  margin: 24px auto 0;
  background: var(--sw-blue);
}
.sw-home-business__head p,
.sw-home-apps__head p {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--sw-grey-500);
  font-size: 16px;
  line-height: 1.8;
}
.sw-home-business__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 42px;
}
.sw-home-business__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--sw-border);
  border-radius: 999px;
  background: var(--sw-white);
  color: var(--sw-grey-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}
.sw-home-business__nav a::after {
  content: "→";
  opacity: .68;
}
.sw-home-business__nav a:hover {
  color: #fff;
  border-color: var(--sw-blue);
  background: var(--sw-blue);
  transform: translateY(-2px);
}
.sw-home-business__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.sw-home-business-card {
  position: relative;
  min-height: clamp(360px, 36vw, 520px);
  overflow: hidden;
  border-radius: 22px;
  background: var(--sw-grey-100);
  color: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .12);
  isolation: isolate;
}
.sw-home-business-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: grayscale(.25) brightness(.72);
  transform: scale(1.01);
  transition: transform .8s var(--sw-ease), filter .6s var(--sw-ease);
}
.sw-home-business-card:hover img {
  filter: grayscale(0) brightness(.9);
  transform: scale(1.07);
}
.sw-home-business-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05) 26%, rgba(0,0,0,.9) 100%),
    radial-gradient(circle at 20% 0%, rgba(0, 74, 153, .34), transparent 38%);
}
.sw-home-business-card__body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}
.sw-home-business-card__body span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .32em;
}
.sw-home-business-card__body h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.18;
  font-weight: 900;
}
.sw-home-business-card__body p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.65;
}

.sw-home-apps {
  overflow: hidden;
  background: var(--sw-grey-50);
  color: var(--sw-grey-900);
}
.sw-home-apps__head {
  padding: clamp(72px, 7vw, 96px) 24px 52px;
  text-align: center;
}
.sw-home-apps__stage {
  position: relative;
  min-height: clamp(560px, 66vh, 760px);
}
.sw-home-apps__slides,
.sw-home-apps__slide {
  position: absolute;
  inset: 0;
}
.sw-home-apps__slide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity .9s var(--sw-ease), transform 1.25s var(--sw-ease);
}
.sw-home-apps__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.sw-home-apps__slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.sw-home-apps__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.34) 48%, rgba(0,0,0,.1) 100%),
    linear-gradient(180deg, rgba(2,17,37,.25), rgba(2,17,37,.8));
}
.sw-home-apps__copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1560px);
  min-height: clamp(430px, 54vh, 620px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sw-home-apps__copy span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
}
.sw-home-apps__copy span::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,.62);
}
.sw-home-apps__copy h3 {
  max-width: 700px;
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.05em;
}
.sw-home-apps__copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.8;
}
.sw-home-apps__copy a {
  width: fit-content;
  margin-top: 30px;
  padding: 13px 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.sw-home-apps__copy a:hover {
  background: var(--sw-blue);
  border-color: var(--sw-blue);
}
.sw-home-apps__tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(6,18,34,.28);
  border-top: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.sw-home-apps__tabs button {
  position: relative;
  min-height: 84px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .06em;
}
.sw-home-apps__tabs button:last-child {
  border-right: 0;
}
.sw-home-apps__tabs button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sw-blue);
  transform: translateX(-50%);
  transition: width .3s var(--sw-ease);
}
.sw-home-apps__tabs button:hover,
.sw-home-apps__tabs button.is-active {
  color: #fff;
  background: rgba(0,74,153,.72);
}
.sw-home-apps__tabs button.is-active::before {
  width: 58%;
}

.sw-xray {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 9vw, 140px) 0;
  background: #fff;
}
.sw-xray__decor {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  opacity: .035;
}
.sw-xray__decor--left {
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  border: 46px solid #004a99;
}
.sw-xray__decor--right {
  right: -280px;
  top: 32%;
  width: 760px;
  height: 760px;
  border: 1px solid #004a99;
}
.sw-xray__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), 1280px);
  margin-inline: auto;
}
.sw-xray__head {
  max-width: 850px;
  margin: 0 auto 62px;
  text-align: center;
}
.sw-xray__head h2 {
  color: #111827;
}
.sw-xray__head p {
  max-width: 760px;
  margin: 24px auto 0;
  color: #8a94a6;
  font-size: 18px;
  line-height: 1.8;
}
.sw-xray__panel {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(10,37,64,.06);
  border-radius: 38px;
  background:
    radial-gradient(#0044ff17 1px, transparent 1px),
    linear-gradient(180deg, #f7faff 0%, #f2f6fb 100%);
  background-size: 24px 24px, auto;
  box-shadow: 0 28px 80px rgba(15,23,42,.08);
}
.sw-xray__meta {
  position: absolute;
  top: 28px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(10,37,64,.45);
  font-size: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.sw-xray__meta span {
  color: #0044ff;
  font-size: 15px;
}
.sw-xray__machine {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  pointer-events: none;
}
.sw-xray__machine > span {
  display: block;
}
.sw-xray__cutter {
  width: 15%;
  height: 128px;
  border: 1px solid rgba(0,68,255,.22);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, rgba(0,68,255,.12), rgba(0,68,255,.02));
}
.sw-xray__body {
  position: relative;
  width: 70%;
  height: 104px;
  border-top: 1px solid rgba(10,37,64,.12);
  border-bottom: 1px solid rgba(10,37,64,.12);
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}
.sw-xray__body i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(10,37,64,.06);
}
.sw-xray__body i:nth-child(1) { left: 25%; }
.sw-xray__body i:nth-child(2) { left: 50%; }
.sw-xray__body i:nth-child(3) { left: 75%; }
.sw-xray__tail {
  width: 15%;
  height: 78px;
  border: 1px solid rgba(10,37,64,.12);
  background: rgba(255,255,255,.72);
}
.sw-xray__node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 5;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
}
.sw-xray__node::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(0,68,255,.22);
  animation: sw-xray-pulse 1.8s infinite;
}
.sw-xray__node span {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
  margin: 8px;
  border: 2px solid #0044ff;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,68,255,.16);
}
.sw-xray__node.is-active span {
  background: #0044ff;
  border-color: #fff;
  transform: scale(1.2);
}
.sw-xray__node b {
  position: absolute;
  top: 42px;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
  color: rgba(10,37,64,.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.sw-xray__detail {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: min(390px, 100%);
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: rgba(255,255,255,.96);
  border-left: 1px solid rgba(0,68,255,.08);
  box-shadow: -24px 0 60px rgba(15,23,42,.12);
  transform: translateX(105%);
  opacity: 0;
  transition: transform .42s var(--sw-ease), opacity .42s var(--sw-ease);
}
.sw-xray__detail.is-open {
  transform: translateX(0);
  opacity: 1;
}
.sw-xray__close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(10,37,64,.05);
  color: rgba(10,37,64,.48);
  font-size: 22px;
}
.sw-xray__detail-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(0,68,255,.06);
  color: #0044ff;
  font-size: 24px;
}
.sw-xray__detail h3 {
  margin: 22px 0 34px;
  color: #0a2540;
  font-size: 24px;
}
.sw-xray__detail > span {
  color: rgba(0,68,255,.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.sw-xray__detail h4 {
  margin: 10px 0 14px;
  color: #0a2540;
  font-size: 20px;
}
.sw-xray__detail p {
  color: #667085;
  line-height: 1.75;
}
.sw-xray__detail dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(10,37,64,.07);
}
.sw-xray__detail dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f6f9fc;
}
.sw-xray__detail dt {
  color: rgba(10,37,64,.5);
  font-size: 11px;
  font-weight: 800;
}
.sw-xray__detail dd {
  margin: 0;
  color: #0a2540;
  font-size: 13px;
  font-weight: 900;
}
.sw-xray__detail a {
  margin-top: auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #0a2540;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.sw-xray__detail a:hover {
  background: #0044ff;
  color: #fff;
}
.sw-xray__hint {
  position: absolute;
  left: 36px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(10,37,64,.38);
  font-size: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.sw-xray__hint i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0044ff;
  animation: sw-xray-pulse 1.8s infinite;
}
@keyframes sw-xray-pulse {
  0% { transform: scale(.7); opacity: .72; }
  100% { transform: scale(2.1); opacity: 0; }
}
@media (max-width: 1024px) {
  .sw-home-business__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sw-home-apps__tabs { grid-template-columns: repeat(2, 1fr); }
  .sw-xray__machine { padding: 50px; }
  .sw-xray__detail { width: 340px; }
}
@media (max-width: 720px) {
  .sw-home-business__inner,
  .sw-home-apps__copy,
  .sw-xray__inner {
    width: min(calc(100% - 32px), 1560px);
  }
  .sw-home-business__grid { grid-template-columns: 1fr; }
  .sw-home-business-card { min-height: 420px; }
  .sw-home-apps__stage { min-height: 680px; }
  .sw-home-apps__copy {
    min-height: 500px;
    justify-content: flex-start;
    padding-top: 80px;
  }
  .sw-home-apps__tabs button { min-height: 68px; font-size: 14px; }
  .sw-xray__panel { min-height: 820px; border-radius: 26px; }
  .sw-xray__machine {
    align-items: flex-start;
    padding: 170px 28px 0;
  }
  .sw-xray__detail {
    top: auto;
    left: 0;
    width: 100%;
    max-height: 520px;
    border-left: 0;
    border-top: 1px solid rgba(0,68,255,.08);
    transform: translateY(105%);
  }
  .sw-xray__detail.is-open { transform: translateY(0); }
  .sw-xray__hint { display: none; }
}

/* Keep the redesigned homepage modules on the site's original blue/white/grey palette. */
.sw-home-business__nav a::after {
  content: "\2192";
}
.sw-xray__decor--left {
  border-color: var(--sw-blue);
}
.sw-xray__decor--right {
  border-color: var(--sw-blue);
}
.sw-xray__panel {
  border-color: rgba(0, 74, 153, .08);
  background:
    radial-gradient(rgba(0, 74, 153, .10) 1px, transparent 1px),
    linear-gradient(180deg, var(--sw-white) 0%, var(--sw-grey-50) 100%);
}
.sw-xray__meta span,
.sw-xray__detail-icon,
.sw-xray__detail > span {
  color: var(--sw-blue);
}
.sw-xray__cutter {
  border-color: rgba(0, 74, 153, .22);
  background: linear-gradient(90deg, rgba(0, 74, 153, .10), rgba(0, 74, 153, .02));
}
.sw-xray__node::before {
  background: rgba(0, 74, 153, .22);
}
.sw-xray__node span {
  border-color: var(--sw-blue);
  box-shadow: 0 8px 18px rgba(0, 74, 153, .16);
}
.sw-xray__node.is-active span,
.sw-xray__hint i {
  background: var(--sw-blue);
}
.sw-xray__detail a:hover {
  background: var(--sw-blue);
}

/* Mobile QA pass: keep content visible, compact and on the original palette. */
@media (max-width: 720px) {
  .sw-banner {
    height: 360px;
  }
  .sw-banner__content {
    justify-content: center;
    padding-top: 92px;
  }
  .sw-banner__lead {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 15px;
    line-height: 1.55;
  }

  body.home .sw-hero {
    height: 760px;
    min-height: 680px;
  }
  body.home .sw-hero__overlay {
    display: block;
    background:
      linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.18) 34%, rgba(0,0,0,.62) 100%),
      linear-gradient(90deg, rgba(0,74,153,.46), rgba(0,0,0,.08) 72%);
  }
  body.home .sw-hero__content {
    display: flex;
    justify-content: flex-end;
    padding-top: 118px;
    padding-bottom: 70px;
  }
  body.home .sw-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: .18em;
  }
  body.home .sw-hero__title {
    font-size: clamp(28px, 8.4vw, 34px);
    line-height: 1.08;
    margin-bottom: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  body.home .sw-hero__lead {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  body.home .sw-hero__chips {
    gap: 8px;
    margin-bottom: 24px;
  }
  body.home .sw-hero__chip {
    padding: 5px 10px;
    font-size: 12px;
  }
  body.home .sw-hero__cta {
    gap: 10px;
  }
  body.home .sw-hero__cta .sw-btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
  body.home .sw-hero__scroll-hint {
    display: none;
  }

  .sw-home-news-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .sw-home-news-tabs__btn {
    min-width: 0;
    min-height: 42px;
  }
  .sw-home-news-more {
    margin-top: 46px;
    padding-top: 28px;
  }
  .sw-home-news-matrix,
  .sw-home-business,
  .sw-home-apps,
  .sw-xray {
    scroll-margin-top: 112px;
  }

  .sw-home-business {
    padding: 64px 0;
  }
  .sw-home-business__head,
  .sw-home-apps__head,
  .sw-xray__head {
    margin-bottom: 34px;
  }
  .sw-home-business__title,
  .sw-home-apps__head h2,
  .sw-xray__head h2 {
    font-size: clamp(30px, 10vw, 40px);
  }
  .sw-home-business-card {
    min-height: 360px;
    border-radius: 20px;
  }

  .sw-home-apps__head {
    padding: 64px 18px 34px;
  }
  .sw-home-apps__stage {
    min-height: 620px;
  }
  .sw-home-apps__copy {
    min-height: 460px;
    padding-top: 66px;
  }
  .sw-home-apps__copy h3 {
    font-size: clamp(30px, 8.6vw, 36px);
  }
  .sw-home-apps__copy p {
    font-size: 15px;
  }
  .sw-home-apps__slide {
    transform: none;
  }

  .sw-xray {
    padding: 64px 0;
  }
  .sw-xray__head p {
    margin-top: 18px;
    font-size: 15px;
  }
  .sw-xray__decor {
    display: none;
  }
  .sw-xray__panel {
    min-height: 620px;
    border-radius: 24px;
  }
  .sw-xray__meta {
    top: 22px;
    left: 20px;
    right: 20px;
    line-height: 1.6;
    letter-spacing: .16em;
  }
  .sw-xray__machine {
    align-items: flex-start;
    padding: 128px 20px 0;
  }
  .sw-xray__cutter {
    height: 88px;
  }
  .sw-xray__body {
    height: 76px;
  }
  .sw-xray__tail {
    height: 58px;
  }
  .sw-xray__node b {
    top: 38px;
    font-size: 10px;
  }
}

/* TBM technology module: replace the early wireframe with an image-led 3D model view. */
.sw-xray__panel {
  min-height: 680px;
  overflow: hidden;
}
.sw-xray__model {
  position: absolute;
  inset: 86px 360px 72px 48px;
  z-index: 2;
  perspective: 1200px;
}
.sw-xray__model-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(246,249,252,.42)),
    radial-gradient(circle at 24% 32%, rgba(0,74,153,.14), transparent 34%);
  box-shadow: 0 34px 90px rgba(15,23,42,.14);
  transform: rotateX(3deg) rotateY(-6deg);
  transform-origin: center;
}
.sw-xray__model-stage img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 44% center;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.03);
}
.sw-xray__model-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,74,153,.22), transparent 28%, transparent 76%, rgba(10,37,64,.28)),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(10,37,64,.2));
  mix-blend-mode: multiply;
}
.sw-xray__model-stage::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 22px;
}
.sw-xray__scanline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22%;
  z-index: 4;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.78), transparent);
  box-shadow: 0 0 28px rgba(0,74,153,.62);
  animation: sw-tbm-scan 5.6s var(--sw-ease) infinite;
}
.sw-xray__model-shadow {
  position: absolute;
  left: 12%;
  right: 10%;
  bottom: 18px;
  z-index: 1;
  height: 36px;
  border-radius: 999px;
  background: rgba(15,23,42,.22);
  filter: blur(18px);
}
.sw-xray__axis {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -34px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: rgba(10,37,64,.48);
  font-size: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.sw-xray__axis i {
  height: 1px;
  background: rgba(0,74,153,.22);
}
.sw-xray__node {
  z-index: 6;
  width: 38px;
  height: 38px;
}
.sw-xray__node span {
  width: 18px;
  height: 18px;
  margin: 10px;
  background: rgba(255,255,255,.94);
}
.sw-xray__node b {
  top: 44px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--sw-blue);
  box-shadow: 0 10px 26px rgba(15,23,42,.12);
}
.sw-xray__node.is-active b {
  color: #fff;
  background: var(--sw-blue);
}
.sw-xray__detail {
  width: 360px;
  padding: 42px 34px;
  border-left: 1px solid rgba(0,74,153,.1);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.sw-xray__detail h3 {
  margin-bottom: 24px;
}
.sw-xray__detail h4 {
  font-size: 22px;
}
.sw-xray__detail p {
  font-size: 14px;
}
.sw-xray__hint {
  z-index: 5;
  left: 52px;
  bottom: 26px;
}
@keyframes sw-tbm-scan {
  0%, 100% { left: 18%; opacity: .2; }
  48% { left: 82%; opacity: .78; }
  56% { left: 82%; opacity: .2; }
}
@media (max-width: 1024px) {
  .sw-xray__model {
    inset: 86px 300px 72px 34px;
  }
  .sw-xray__detail {
    width: 300px;
    padding-inline: 26px;
  }
}
@media (max-width: 720px) {
  .sw-xray__panel {
    min-height: 900px;
  }
  .sw-xray__model {
    inset: 92px 18px 330px;
  }
  .sw-xray__model-stage {
    border-radius: 22px;
    transform: none;
  }
  .sw-xray__model-stage img {
    object-position: 36% center;
  }
  .sw-xray__axis {
    display: none;
  }
  .sw-xray__node {
    width: 34px;
    height: 34px;
  }
  .sw-xray__node span {
    width: 16px;
    height: 16px;
    margin: 9px;
  }
  .sw-xray__node b {
    top: 38px;
    font-size: 10px;
    letter-spacing: .06em;
  }
  .sw-xray__detail {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 360px;
    padding: 28px 24px 24px;
    border-left: 0;
    border-top: 1px solid rgba(0,74,153,.1);
    transform: translateY(105%);
  }
  .sw-xray__detail.is-open {
    transform: translateY(0);
  }
  .sw-xray__detail h3 {
    margin: 12px 0 16px;
    font-size: 20px;
  }
  .sw-xray__detail h4 {
    font-size: 18px;
  }
  .sw-xray__detail p,
  .sw-xray__detail dl {
    font-size: 13px;
  }
  .sw-xray__detail dl {
    margin-top: 18px;
    padding-top: 18px;
  }
}

/* TBM 2D plan view: flat technical diagram, no perspective or 3D imagery. */
.sw-xray__model {
  perspective: none;
}
.sw-xray__model-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  background:
    linear-gradient(90deg, rgba(0,74,153,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,74,153,.05) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: 0 28px 70px rgba(15,23,42,.09);
}
.sw-xray__model-stage::before {
  background:
    linear-gradient(90deg, rgba(0,74,153,.08), transparent 18%, transparent 82%, rgba(0,74,153,.08)),
    radial-gradient(circle at 18% 50%, rgba(0,74,153,.10), transparent 26%);
  mix-blend-mode: normal;
}
.sw-xray__scanline,
.sw-xray__model-shadow,
.sw-xray__model-stage img {
  display: none;
}
.sw-xray__machine-2d {
  position: relative;
  z-index: 4;
  width: min(92%, 820px);
  height: 250px;
}
.sw-xray__machine-2d > span {
  position: absolute;
  display: block;
}
.sw-xray__machine-cutter {
  left: 0;
  top: 22px;
  width: 206px;
  height: 206px;
  border: 3px solid rgba(0,74,153,.42);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 10deg, rgba(0,74,153,.18) 0 14deg, transparent 14deg 28deg),
    radial-gradient(circle, #fff 0 18%, rgba(0,74,153,.12) 19% 22%, transparent 23% 100%);
  box-shadow: inset 0 0 0 18px rgba(0,74,153,.06), 0 20px 42px rgba(0,74,153,.10);
}
.sw-xray__machine-cutter::before,
.sw-xray__machine-cutter::after {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px dashed rgba(0,74,153,.28);
  border-radius: 50%;
}
.sw-xray__machine-cutter::after {
  inset: 82px;
  background: var(--sw-blue);
  border: 0;
  box-shadow: 0 0 0 10px rgba(0,74,153,.10);
}
.sw-xray__machine-drive {
  left: 168px;
  top: 54px;
  width: 120px;
  height: 142px;
  border: 2px solid rgba(0,74,153,.24);
  background: linear-gradient(180deg, #fff, #edf4fb);
  box-shadow: inset 16px 0 0 rgba(0,74,153,.08);
}
.sw-xray__machine-shield {
  left: 270px;
  top: 44px;
  width: 300px;
  height: 162px;
  border: 2px solid rgba(0,74,153,.22);
  border-left: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(0,74,153,.08) 58px 60px),
    linear-gradient(180deg, #fff 0%, #eef5fb 100%);
  box-shadow: 0 18px 38px rgba(15,23,42,.07);
}
.sw-xray__machine-thrust {
  left: 514px;
  top: 72px;
  width: 150px;
  height: 106px;
  border: 2px solid rgba(0,74,153,.22);
  background:
    repeating-linear-gradient(180deg, rgba(0,74,153,.13) 0 7px, transparent 7px 18px),
    linear-gradient(90deg, #f8fbff, #eaf2fa);
}
.sw-xray__machine-backup {
  left: 644px;
  top: 88px;
  width: 150px;
  height: 74px;
  border: 2px solid rgba(0,74,153,.18);
  border-radius: 0 16px 16px 0;
  background:
    linear-gradient(90deg, rgba(0,74,153,.08) 1px, transparent 1px),
    linear-gradient(180deg, #fff, #eef4fa);
  background-size: 24px 100%, auto;
}
.sw-xray__machine-backup::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0,74,153,.18);
}
@media (max-width: 720px) {
  .sw-xray__machine-2d {
    width: 330px;
    height: 180px;
    transform: none;
    }
  .sw-xray__model-stage {
    overflow: hidden;
  }
  .sw-xray__machine-cutter {
    left: 0;
    top: 38px;
    width: 96px;
    height: 96px;
    box-shadow: inset 0 0 0 9px rgba(0,74,153,.06), 0 12px 28px rgba(0,74,153,.08);
  }
  .sw-xray__machine-cutter::before { inset: 21px; }
  .sw-xray__machine-cutter::after { inset: 39px; box-shadow: 0 0 0 6px rgba(0,74,153,.10); }
  .sw-xray__machine-drive {
    left: 82px;
    top: 54px;
    width: 54px;
    height: 64px;
  }
  .sw-xray__machine-shield {
    left: 132px;
    top: 48px;
    width: 118px;
    height: 76px;
  }
  .sw-xray__machine-thrust {
    left: 236px;
    top: 58px;
    width: 62px;
    height: 56px;
  }
  .sw-xray__machine-backup {
    left: 292px;
    top: 68px;
    width: 38px;
    height: 34px;
  }
  .sw-xray__node[data-xray-node="3"] {
    --y: 52% !important;
  }
}

/* Match the reference interaction: no default detail panel and no reserved side gap. */
.sw-xray__model {
  inset: 86px 48px 72px 48px;
}
.sw-xray__detail {
  pointer-events: none;
}
.sw-xray__detail.is-open {
  pointer-events: auto;
}
@media (max-width: 1024px) {
  .sw-xray__model {
    inset: 86px 34px 72px 34px;
  }
}
@media (max-width: 720px) {
  .sw-xray__model {
    inset: 92px 18px 330px;
  }
}

/* Expanded TBM 2D blueprint: cover the main construction systems without changing the theme palette. */
.sw-xray__machine-2d {
  width: min(96%, 980px);
  height: 300px;
}
.sw-xray__machine-cutter {
  top: 45px;
  width: 210px;
  height: 210px;
  background:
    repeating-conic-gradient(from -8deg, rgba(0,74,153,.18) 0 9deg, rgba(255,255,255,.72) 9deg 18deg),
    radial-gradient(circle, rgba(0,74,153,.10), rgba(255,255,255,.9) 64%);
}
.sw-xray__machine-drive {
  left: 176px;
  top: 76px;
  width: 104px;
  height: 148px;
  border-radius: 20px 0 0 20px;
}
.sw-xray__machine-chamber {
  left: 254px;
  top: 88px;
  width: 72px;
  height: 124px;
  border: 2px solid rgba(0,74,153,.24);
  border-left: 0;
  background:
    linear-gradient(90deg, rgba(0,74,153,.08), rgba(255,255,255,.88)),
    repeating-linear-gradient(180deg, transparent 0 20px, rgba(0,74,153,.06) 20px 22px);
}
.sw-xray__machine-seal {
  left: 326px;
  top: 62px;
  width: 34px;
  height: 176px;
  border: 2px solid rgba(0,74,153,.26);
  background: repeating-linear-gradient(180deg, rgba(0,74,153,.12) 0 8px, rgba(255,255,255,.82) 8px 18px);
}
.sw-xray__machine-shield {
  left: 360px;
  top: 62px;
  width: 278px;
  height: 176px;
  background:
    repeating-linear-gradient(90deg, transparent 0 64px, rgba(0,74,153,.14) 64px 66px),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,246,253,.92));
}
.sw-xray__machine-screw {
  left: 286px;
  top: 178px;
  width: 350px;
  height: 18px;
  border: 1px solid rgba(0,74,153,.24);
  border-radius: 999px;
  background:
    repeating-linear-gradient(115deg, rgba(0,74,153,.22) 0 10px, rgba(255,255,255,.85) 10px 21px),
    linear-gradient(90deg, rgba(0,74,153,.08), rgba(255,255,255,.86));
  transform: rotate(5deg);
  transform-origin: left center;
}
.sw-xray__machine-thrust {
  left: 586px;
  top: 80px;
  width: 116px;
  height: 140px;
  background:
    repeating-linear-gradient(180deg, rgba(0,74,153,.18) 0 12px, rgba(255,255,255,.86) 12px 26px),
    linear-gradient(90deg, #fff, #eef4fa);
}
.sw-xray__machine-segment {
  left: 655px;
  top: 58px;
  width: 94px;
  height: 184px;
  border: 2px solid rgba(0,74,153,.20);
  border-radius: 46px;
  background:
    repeating-conic-gradient(from 0deg, rgba(0,74,153,.10) 0 18deg, rgba(255,255,255,.86) 18deg 36deg);
}
.sw-xray__machine-grout {
  left: 610px;
  top: 234px;
  width: 230px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 50%, var(--sw-blue) 0 4px, transparent 5px),
    radial-gradient(circle at 45% 50%, var(--sw-blue) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 50%, var(--sw-blue) 0 4px, transparent 5px),
    linear-gradient(90deg, rgba(0,74,153,.18), rgba(0,74,153,.04));
}
.sw-xray__machine-backup {
  left: 730px;
  top: 86px;
  width: 230px;
  height: 114px;
  border-radius: 0 24px 24px 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(0,74,153,.13) 48px 50px),
    linear-gradient(180deg, #fff, #eef4fa);
}
.sw-xray__machine-control {
  left: 800px;
  top: 34px;
  width: 104px;
  height: 48px;
  border: 2px solid rgba(0,74,153,.20);
  border-radius: 16px;
  background:
    radial-gradient(circle at 24px 24px, var(--sw-blue) 0 5px, transparent 6px),
    linear-gradient(90deg, rgba(0,74,153,.10), rgba(255,255,255,.9));
}
.sw-xray__machine-conveyor {
  left: 778px;
  top: 208px;
  width: 172px;
  height: 12px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(0,74,153,.18) 0 14px, rgba(255,255,255,.76) 14px 28px),
    rgba(0,74,153,.08);
}
@media (max-width: 720px) {
  .sw-xray__machine-2d {
    width: 330px;
    height: 220px;
  }
  .sw-xray__machine-cutter { left: 0; top: 55px; width: 92px; height: 92px; }
  .sw-xray__machine-cutter::before { inset: 20px; }
  .sw-xray__machine-cutter::after { inset: 38px; }
  .sw-xray__machine-drive { left: 78px; top: 72px; width: 42px; height: 58px; }
  .sw-xray__machine-chamber { left: 116px; top: 78px; width: 28px; height: 46px; }
  .sw-xray__machine-seal { left: 144px; top: 64px; width: 16px; height: 76px; }
  .sw-xray__machine-shield { left: 160px; top: 64px; width: 92px; height: 76px; }
  .sw-xray__machine-screw { left: 126px; top: 126px; width: 142px; height: 10px; }
  .sw-xray__machine-thrust { left: 236px; top: 72px; width: 40px; height: 58px; }
  .sw-xray__machine-segment { left: 258px; top: 62px; width: 34px; height: 80px; border-radius: 18px; }
  .sw-xray__machine-grout { left: 238px; top: 150px; width: 82px; height: 10px; }
  .sw-xray__machine-backup { left: 288px; top: 78px; width: 42px; height: 50px; }
  .sw-xray__machine-control { left: 270px; top: 30px; width: 48px; height: 28px; border-radius: 10px; }
  .sw-xray__machine-conveyor { left: 286px; top: 142px; width: 42px; height: 8px; }
  .sw-xray__node b {
    padding: 4px 7px;
    font-size: 9px;
  }
  .sw-xray__node[data-xray-node="1"] { --x: 31% !important; --y: 38% !important; }
  .sw-xray__node[data-xray-node="2"] { --x: 30% !important; --y: 50% !important; }
  .sw-xray__node[data-xray-node="3"] { --x: 44% !important; --y: 58% !important; }
  .sw-xray__node[data-xray-node="4"] { --x: 44% !important; --y: 39% !important; }
  .sw-xray__node[data-xray-node="5"] { --x: 55% !important; --y: 64% !important; }
  .sw-xray__node[data-xray-node="6"] { --x: 61% !important; --y: 41% !important; }
  .sw-xray__node[data-xray-node="7"] { --x: 68% !important; --y: 58% !important; }
  .sw-xray__node[data-xray-node="8"] { --x: 76% !important; --y: 39% !important; }
  .sw-xray__node[data-xray-node="9"] { --x: 82% !important; --y: 50% !important; }
}
