:root {
  --blue: #0a5cd6;
  --blue-deep: #0748aa;
  --cyan: #00a9a2;
  --ink: #171c24;
  --muted: #667085;
  --line: #dde3ea;
  --soft: #f4f7fa;
  --white: #ffffff;
  --dark: #101a29;
  --radius: 6px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.mobile-nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.site-header { height: 76px; background: rgba(255,255,255,.98); border-bottom: 1px solid #edf0f4; position: sticky; top: 0; z-index: 30; }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { width: 158px; flex: 0 0 auto; }
.brand img { width: 130px; height: 52px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: stretch; height: 100%; gap: 31px; margin-left: auto; }
.desktop-nav a { position: relative; display: flex; align-items: center; font-size: 14px; color: #2d3440; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 3px; background: var(--blue); transition: .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { left: 0; right: 0; }
.desktop-nav a.active { color: var(--blue); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 16px; margin-left: 10px; }
.contact-button { height: 38px; padding: 0 16px; border-radius: 4px; background: var(--blue); color: white; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; }
.contact-button svg { width: 15px; }

.hero { position: relative; min-height: 660px; overflow: hidden; background: #f6faff; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 584px; object-fit: cover; object-position: center; }
.hero-inner { position: relative; z-index: 2; height: 584px; display: flex; align-items: center; }
.hero-copy { width: 620px; padding-bottom: 12px; }
.hero h1 { margin: 0 0 24px; font-size: 52px; line-height: 1.25; font-weight: 750; letter-spacing: 0; color: #151a22; }
.hero-copy > p { width: 545px; margin: 0 0 34px; color: #505968; font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; gap: 14px; }
.button { min-width: 160px; height: 48px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; }
.button.primary { background: var(--blue); color: white; }
.button.primary:hover { background: var(--blue-deep); }
.button.secondary { border: 1px solid var(--cyan); background: rgba(255,255,255,.9); color: #087c7a; }
.hero-bottom { position: absolute; z-index: 3; bottom: 0; left: 0; right: 0; height: 76px; background: rgba(16,26,41,.96); color: white; }
.hero-proof { height: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-proof div { display: flex; align-items: center; gap: 18px; padding: 0 34px; border-right: 1px solid rgba(255,255,255,.14); }
.hero-proof div:first-child { padding-left: 0; }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { font-size: 16px; }
.hero-proof span { color: #aeb9c8; font-size: 13px; }

.section { padding: 94px 0; }
.section-heading { margin-bottom: 42px; }
.section-heading > div, .section-heading:not(.split-heading) { position: relative; }
.section-index { display: inline-block; margin-bottom: 6px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: 0; }
.section-index.light { color: #63d4d0; }
.section-heading h2 { margin: 0; font-size: 34px; line-height: 1.3; font-weight: 700; }
.section-heading h2::after { content: ""; display: block; width: 40px; height: 3px; background: var(--blue); margin-top: 14px; }
.split-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.split-heading > p { max-width: 530px; margin: 0 0 4px; color: var(--muted); }
.split-heading.compact { align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 600; font-size: 14px; }
.text-link svg { width: 17px; }

.solutions { background: white; }
.solution-layout { display: grid; grid-template-columns: 1.22fr .78fr; gap: 28px; }
.solution-layout.single { grid-template-columns: 1fr; }
.solution-feature { min-height: 510px; display: grid; grid-template-columns: 1.1fr .9fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; }
.solution-feature > img { width: 100%; height: 100%; object-fit: cover; }
.solution-feature-copy { padding: 44px 34px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.solution-feature-copy > span, .solution-row span { color: var(--cyan); font-size: 12px; font-weight: 600; }
.solution-feature h3 { margin: 10px 0 18px; font-size: 28px; line-height: 1.35; }
.solution-feature p { margin: 0 0 28px; color: var(--muted); }
.solution-feature a { margin-top: auto; color: var(--blue); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.solution-feature a svg { width: 17px; }
.solution-list { display: grid; grid-auto-rows: 1fr; border-top: 1px solid var(--line); }
.solution-row { display: grid; grid-template-columns: 150px 1fr 32px; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.solution-row img { width: 150px; height: 116px; object-fit: cover; border-radius: 4px; }
.solution-row h3 { margin: 4px 0 5px; font-size: 20px; }
.solution-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.solution-row > a { color: #98a2b3; }
.solution-row > a:hover { color: var(--blue); }
.solution-row > a svg { width: 20px; }
.home-section-empty { min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.home-section-empty > svg { width: 42px; height: 42px; color: #98a6b5; stroke-width: 1.4; }
.home-section-empty h3 { margin: 17px 0 5px; font-size: 20px; }
.home-section-empty p { margin: 0 0 20px; color: var(--muted); font-size: 13px; }

.product-section { background: var(--soft); }
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #d7dee7; border-bottom: 1px solid #d7dee7; }
.product-column { position: relative; min-height: 310px; padding: 42px 26px 32px; border-right: 1px solid #d7dee7; background: transparent; transition: .2s ease; }
.product-column:last-child { border-right: 0; }
.product-column:hover, .product-column.active { background: white; box-shadow: 0 12px 30px rgba(22,34,55,.07); }
.product-number { position: absolute; right: 18px; top: 14px; color: #bac3ce; font-size: 12px; }
.product-column > svg { width: 38px; height: 38px; color: var(--cyan); stroke-width: 1.6; }
.product-column h3 { margin: 25px 0 14px; font-size: 19px; }
.product-column p { min-height: 74px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.product-column a { color: var(--blue); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.product-column a svg { width: 15px; }

.stock-band { padding: 72px 0; color: white; background: var(--dark); }
.stock-layout { display: grid; grid-template-columns: 320px 1fr; align-items: center; gap: 72px; }
.stock-title h2 { margin: 0 0 10px; font-size: 34px; }
.stock-title p { margin: 0; color: #aeb9c8; }
.stock-search label { display: block; margin-bottom: 9px; color: #bdc7d4; font-size: 13px; }
.search-control { height: 62px; display: grid; grid-template-columns: 48px 1fr 150px; align-items: center; background: white; border-radius: 4px; overflow: hidden; }
.search-control > svg { width: 20px; margin-left: 19px; color: #667085; }
.search-control input { height: 100%; min-width: 0; border: 0; outline: 0; color: var(--ink); padding: 0 14px; font-size: 15px; }
.search-control button { height: 100%; border: 0; background: var(--blue); color: white; cursor: pointer; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; }
.search-control button:hover { background: var(--blue-deep); }
.search-control button svg { width: 17px; }
.stock-note { display: flex; gap: 30px; margin-top: 17px; color: #aeb9c8; font-size: 12px; }
.stock-note span { display: flex; align-items: center; gap: 6px; }
.stock-note svg { width: 15px; color: #63d4d0; }

.brands { padding-bottom: 86px; }
.brand-groups { display: grid; gap: 34px; }
.brand-group-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 12px; }
.brand-group-heading span { color: var(--ink); font-size: 15px; font-weight: 700; }
.brand-group-heading p { margin: 0; color: var(--muted); font-size: 11px; }
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-grid > div { height: 112px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 21px; font-weight: 700; color: #435061; transition: .2s ease; }
.brand-grid > div:hover { color: var(--blue); background: #f8fbff; }
.brand-grid small { color: #a4adba; font-size: 10px; font-weight: 500; margin-top: 4px; }
.brand-grid.featured { grid-template-columns: repeat(3, 1fr); }
.brand-grid.featured > div { height: 120px; color: #183b67; background: #f7fbff; }
.brand-grid.distribution { grid-template-columns: repeat(5, 1fr); }
.brand-grid.distribution > div { height: 92px; font-size: 17px; }

.advantages { background: #eef3f7; padding: 76px 0 82px; }
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.advantage-grid article { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 3px 28px; border-right: 1px solid #d2dbe5; }
.advantage-grid article:first-child { padding-left: 0; }
.advantage-grid article:last-child { border-right: 0; }
.advantage-grid svg { width: 38px; height: 38px; color: var(--cyan); stroke-width: 1.6; }
.advantage-grid h3 { margin: 0 0 8px; font-size: 17px; }
.advantage-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.news-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 50px; }
.news-layout.single { grid-template-columns: 1fr; }
.featured-news { display: grid; grid-template-columns: 260px 1fr; border: 1px solid var(--line); }
.featured-news > img { width: 260px; height: 100%; min-height: 270px; object-fit: cover; object-position: 65% center; }
.featured-news > div { padding: 30px 28px; }
.featured-news time, .news-list time { color: #8a95a4; font-size: 12px; }
.featured-news h3 { margin: 13px 0 14px; font-size: 21px; line-height: 1.45; }
.featured-news p { margin: 0 0 22px; color: var(--muted); font-size: 13px; }
.featured-news a { color: var(--blue); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.featured-news a svg { width: 15px; }
.news-list { border-top: 1px solid var(--line); }
.news-list > a { min-height: 68px; padding: 11px 4px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.news-list > a:hover b { color: var(--blue); }
.news-list span { min-width: 0; }
.news-list time { display: block; margin-bottom: 2px; }
.news-list b { display: block; font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.news-list svg { width: 18px; color: #a3acb8; flex: 0 0 auto; }

.site-footer { background: #111821; color: #d3dae4; }
.footer-top { display: grid; grid-template-columns: 1.5fr .65fr .65fr 1.1fr; gap: 72px; padding: 70px 0 58px; }
.footer-brand img { width: 130px; height: 54px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 390px; margin: 20px 0 0; color: #929eae; font-size: 13px; text-wrap: balance; }
.site-footer h3 { margin: 3px 0 18px; color: white; font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: #929eae; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-contact p { margin: 0 0 12px; color: #929eae; font-size: 13px; display: flex; gap: 9px; align-items: flex-start; }
.footer-contact a { color: inherit; }
.footer-contact svg { width: 15px; margin-top: 3px; color: #55cbc7; flex: 0 0 auto; }
.footer-bottom { height: 58px; border-top: 1px solid rgba(255,255,255,.1); color: #778393; display: flex; align-items: center; justify-content: space-between; font-size: 12px; }

@media (min-width: 1200px) {
  .footer-brand p { white-space: nowrap; }
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 17px; }
  .contact-button { display: none; }
  .solution-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .stock-layout { grid-template-columns: 1fr; gap: 30px; }
  .brand-grid.distribution { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 36px, var(--container)); }
  .site-header { height: 64px; }
  .desktop-nav { display: none; }
  .nav-actions { margin-left: auto; }
  .hero { min-height: 650px; }
  .hero-image { height: 570px; object-position: 60% center; opacity: .45; }
  .hero-inner { height: 570px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 36px; }
  .hero-copy > p { width: 100%; font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-bottom { height: 80px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { display: none; }
  .hero-proof div:first-child { display: flex; padding: 0; border: 0; }
  .section { padding: 68px 0; }
  .split-heading { align-items: flex-start; flex-direction: column; gap: 16px; }
  .section-heading h2 { font-size: 29px; }
  .solution-feature { grid-template-columns: 1fr; }
  .solution-feature > img { height: 260px; }
  .solution-row { grid-template-columns: 112px 1fr 24px; }
  .solution-row img { width: 112px; height: 90px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-column { min-height: 240px; border-right: 0; border-bottom: 1px solid #d7dee7; }
  .search-control { height: auto; grid-template-columns: 42px 1fr; }
  .search-control input { height: 58px; }
  .search-control button { grid-column: 1 / -1; height: 52px; }
  .stock-note { flex-wrap: wrap; gap: 10px 20px; }
  .brand-group-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .brand-grid, .brand-grid.featured, .brand-grid.distribution { grid-template-columns: repeat(2, 1fr); }
  .brand-grid.featured > div, .brand-grid.distribution > div { height: 92px; font-size: 15px; }
  .advantage-grid { grid-template-columns: 1fr; gap: 30px; }
  .advantage-grid article { padding: 0; border: 0; }
  .news-layout, .featured-news { grid-template-columns: 1fr; }
  .featured-news > img { width: 100%; height: 220px; min-height: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { height: auto; padding: 20px 0; flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* Homepage V2: AllSemi-inspired function set in the approved NDS visual system. */
.desktop-nav .nav-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2d3440;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}
.desktop-nav .nav-trigger::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 3px; background: var(--blue); transition: .2s ease; }
.desktop-nav .nav-trigger:hover::after, .desktop-nav .nav-trigger.is-open::after, .desktop-nav .nav-trigger.active::after { left: 0; right: 0; }
.desktop-nav .nav-trigger.active { color: var(--blue); font-weight: 600; }
.desktop-nav .nav-trigger > svg { width: 14px; transition: transform .2s ease; }
.desktop-nav .nav-trigger.is-open > svg { transform: rotate(180deg); }
.mobile-menu-button { display: none; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 4px; background: white; color: var(--ink); align-items: center; justify-content: center; }
.mobile-menu-button svg { width: 20px; }
.mobile-nav { display: none; }

.mega-menu { position: absolute; top: 76px; left: 0; right: 0; z-index: 25; padding: 34px 0 38px; background: white; border-top: 1px solid #eef1f5; border-bottom: 1px solid var(--line); box-shadow: 0 18px 35px rgba(20,35,58,.11); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
.mega-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-layout { display: grid; grid-template-columns: 310px 1fr; gap: 58px; }
.mega-intro { padding-right: 36px; border-right: 1px solid var(--line); }
.mega-intro > span { color: var(--cyan); font-size: 12px; font-weight: 700; }
.mega-intro h2 { margin: 6px 0 10px; font-size: 23px; line-height: 1.4; }
.mega-intro p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.mega-intro a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-size: 13px; font-weight: 600; }
.mega-intro a svg { width: 15px; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 20px; }
.mega-grid > a { min-height: 76px; display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: center; padding: 12px 14px; border: 1px solid transparent; border-radius: 4px; }
.mega-grid > a:hover { border-color: #d9e6f6; background: #f7fbff; }
.mega-grid > a > svg { width: 25px; color: var(--cyan); stroke-width: 1.6; }
.mega-grid b, .mega-grid small { display: block; }
.mega-grid b { margin-bottom: 3px; font-size: 14px; }
.mega-grid small { color: var(--muted); font-size: 11px; line-height: 1.45; }

.hero-v2 { height: 610px; min-height: 610px; background: #f5f9fd; }
.hero-v2 .hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .5s ease; }
.hero-v2 .hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-v2 .hero-slide > img { position: absolute; right: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-v2 .hero-slide:nth-of-type(n+2) > img { width: 64%; object-position: center; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 26%); mask-image: linear-gradient(to right, transparent 0, #000 26%); }
.hero-v2 .hero-inner { position: relative; z-index: 2; height: 100%; }
.hero-v2 .hero-copy { position: relative; z-index: 2; }
.hero-v2 h1, .hero-v2 h2 { margin: 0 0 24px; color: #151a22; font-size: 52px; line-height: 1.25; font-weight: 750; letter-spacing: 0; }
.hero-v2 .hero-copy > p { width: 545px; margin: 0 0 34px; color: #505968; font-size: 17px; line-height: 1.85; }
.hero-controls { position: absolute; z-index: 6; left: 50%; bottom: 8px; transform: translateX(-50%); display: flex; gap: 0; }
.hero-controls button { position: relative; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.hero-controls button::before { content: ""; position: absolute; left: 50%; top: 50%; width: 24px; height: 4px; transform: translate(-50%, -50%); background: #aeb9c8; transition: width .2s ease, background .2s ease; }
.hero-controls button.is-active::before { width: 42px; background: var(--blue); }
.hero-controls button:focus-visible { outline: 2px solid var(--blue); outline-offset: 0; }

@media (prefers-reduced-motion: reduce) {
  .hero-v2 .hero-slide, .hero-controls button::before { transition: none; }
}

.quick-entries { position: relative; z-index: 8; background: white; border-bottom: 1px solid var(--line); }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-grid > a { min-height: 118px; display: grid; grid-template-columns: 24px 44px 1fr 24px; align-items: center; gap: 17px; padding: 20px 34px; border-right: 1px solid var(--line); transition: background .2s ease; }
.quick-grid > a:first-child { border-left: 1px solid var(--line); }
.quick-grid > a:hover { background: #f7fbff; }
.quick-grid > a > span { align-self: flex-start; margin-top: 19px; color: #b1bbc8; font-size: 11px; }
.quick-grid > a > svg { width: 30px; color: var(--cyan); stroke-width: 1.6; }
.quick-grid > a > svg:last-child { width: 17px; color: #9ca7b5; }
.quick-grid h2 { margin: 0 0 3px; font-size: 18px; }
.quick-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.product-v2 { background: var(--soft); }
.product-tabs { display: flex; gap: 0; margin-bottom: 26px; border-bottom: 1px solid #cfd8e3; }
.product-tabs button { position: relative; min-width: 150px; padding: 16px 24px; border: 0; background: transparent; color: #586373; cursor: pointer; font-size: 14px; }
.product-tabs button::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -1px; height: 3px; background: var(--blue); transition: .2s ease; }
.product-tabs button.is-active { color: var(--blue); font-weight: 600; }
.product-tabs button.is-active::after { left: 0; right: 0; }
.product-panel { display: none; grid-template-columns: .78fr 1.42fr; min-height: 360px; background: white; border: 1px solid #dce3eb; }
.product-panel.is-active { display: grid; }
.product-summary { padding: 44px 42px; border-right: 1px solid var(--line); }
.product-summary > svg { width: 46px; height: 46px; margin-bottom: 23px; color: var(--cyan); stroke-width: 1.4; }
.product-summary > span { display: block; color: #98a2b3; font-size: 10px; font-weight: 600; }
.product-summary h3 { margin: 4px 0 14px; font-size: 27px; }
.product-summary p { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.product-summary a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-size: 13px; font-weight: 600; }
.product-summary a svg { width: 15px; }
.product-items { display: grid; grid-template-columns: repeat(3, 1fr); }
.product-items.two-column { grid-template-columns: repeat(2, 1fr); }
.product-items article { position: relative; padding: 62px 28px 30px; border-right: 1px solid var(--line); }
.product-items article:last-child { border-right: 0; }
.product-items article > span { position: absolute; right: 18px; top: 16px; color: #bcc5d0; font-size: 11px; }
.product-items h4 { margin: 0 0 15px; font-size: 18px; }
.product-items p { min-height: 88px; margin: 0; color: var(--muted); font-size: 13px; }
.product-items b { display: flex; align-items: center; gap: 6px; color: var(--blue); font-size: 12px; }
.product-items b svg { width: 14px; }
.product-card-link { display: flex; align-items: center; gap: 6px; color: var(--blue); font-size: 12px; font-weight: 700; }
.product-card-link svg { width: 14px; }

.company-section { padding: 92px 0; color: white; background: #122238; }
.company-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.company-copy h2 { margin: 0 0 3px; font-size: 36px; }
.company-copy h3 { margin: 0 0 20px; color: #77d8d4; font-size: 19px; font-weight: 500; }
.company-copy p { max-width: 550px; margin: 0 0 28px; color: #afbbc9; }
.button.outline-light { min-width: 136px; height: 44px; border: 1px solid #718097; color: white; }
.company-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.company-facts div { min-height: 150px; display: flex; flex-direction: column; justify-content: center; padding: 24px; border-right: 1px solid rgba(255,255,255,.16); }
.company-facts div:last-child { border-right: 0; }
.company-facts strong { color: white; font-size: 25px; line-height: 1.35; }
.company-facts span { margin-top: 8px; color: #96a5b7; font-size: 12px; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 16px; }
  .mega-layout { grid-template-columns: 250px 1fr; gap: 32px; }
  .product-tabs { overflow-x: auto; }
  .product-tabs button { min-width: 150px; }
}

@media (max-width: 760px) {
  .nav-wrap { gap: 16px; }
  .brand { width: auto; }
  .brand img { width: 120px; }
  .nav-actions { flex: 0 0 auto; margin-left: auto; }
  .mobile-menu-button { display: inline-flex; }
  .mobile-nav { position: absolute; top: 64px; left: 0; right: 0; max-height: calc(100dvh - 64px); padding: 8px 18px 18px; overflow-y: auto; overscroll-behavior: contain; background: white; border-top: 1px solid var(--line); box-shadow: 0 12px 24px rgba(20,35,58,.1); }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { padding: 12px 4px; border-bottom: 1px solid #eef1f5; font-size: 14px; }
  .mobile-nav a.active { color: var(--blue); font-weight: 600; }
  .mobile-nav .mobile-nav-cta { color: var(--blue); font-weight: 600; }
  .mega-menu { display: none; }
  .hero-v2 { height: 650px; min-height: 650px; }
  .hero-v2 .hero-slide > img, .hero-v2 .hero-slide:nth-of-type(n+2) > img { width: 100%; height: 100%; opacity: .32; -webkit-mask-image: none; mask-image: none; }
  .hero-v2 .hero-inner { height: 100%; }
  .hero-v2 .hero-copy { width: 100%; max-width: 100%; }
  .hero-v2 h1, .hero-v2 h2 { max-width: 100%; overflow-wrap: anywhere; font-size: 35px; }
  .hero-v2 .hero-copy > p { width: 100%; max-width: 100%; overflow-wrap: anywhere; font-size: 15px; }
  .hero-controls { bottom: 0; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid > a, .quick-grid > a:first-child { min-height: 100px; padding: 15px 18px; border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-tabs { margin-right: -18px; scroll-padding-inline: 18px; overscroll-behavior-inline: contain; }
  .product-tabs button { min-width: 140px; padding: 14px 16px; }
  .product-panel, .product-panel.is-active { grid-template-columns: 1fr; }
  .product-summary { border-right: 0; border-bottom: 1px solid var(--line); }
  .product-items, .product-items.two-column { grid-template-columns: 1fr; }
  .product-items article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-items p { min-height: 55px; }
  .solution-row > div { min-width: 0; }
  .solution-row h3, .solution-row p { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; }
  .solution-row h3 { -webkit-line-clamp: 2; }
  .solution-row p { -webkit-line-clamp: 2; }
  .company-layout { grid-template-columns: 1fr; gap: 46px; }
  .company-facts { grid-template-columns: 1fr; }
  .company-facts div { min-height: 105px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
}

/* Shared internal pages */
[hidden] { display: none !important; }
.inner-page { min-height: 70vh; background: white; }
.preview-notice { border-bottom: 1px solid #d7e1eb; background: #f3f7fa; color: #435166; }
.preview-notice-inner { min-height: 48px; display: flex; align-items: center; gap: 12px; font-size: 13px; }
.preview-notice strong { flex: 0 0 auto; color: var(--blue); }
.preview-notice span { min-width: 0; }
.inner-hero { min-height: 286px; padding: 34px 0 58px; background: #eef4f9; border-bottom: 1px solid #dce4ed; }
.breadcrumb { min-height: 28px; display: flex; align-items: center; gap: 8px; color: #7d8998; font-size: 12px; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb svg { width: 13px; }
.breadcrumb span { min-width: 0; overflow-wrap: anywhere; }
.inner-hero-copy { max-width: 720px; padding-top: 42px; }
.inner-hero-copy > span, .solution-hero-copy > span { color: var(--cyan); font-size: 11px; font-weight: 700; }
.inner-hero-copy h1 { margin: 5px 0 14px; font-size: 40px; line-height: 1.3; }
.inner-hero-copy p { max-width: 670px; margin: 0; color: #596677; font-size: 15px; }
.inner-section { padding-top: 72px; }

/* Shared error pages */
.error-section { min-height: 650px; display: flex; align-items: center; padding: 80px 0; background: #eef4f9; }
.error-layout { display: grid; grid-template-columns: .72fr 1fr; align-items: center; gap: 80px; }
.error-code { color: #d7e2ec; font-size: 180px; line-height: .85; font-weight: 700; text-align: right; }
.error-copy { max-width: 560px; padding-left: 50px; border-left: 3px solid var(--blue); }
.error-copy > span { color: var(--cyan); font-size: 11px; font-weight: 700; }
.error-copy h1 { margin: 7px 0 16px; font-size: 39px; line-height: 1.3; }
.error-copy p { margin: 0; color: var(--muted); font-size: 15px; }
.error-actions { display: flex; gap: 12px; margin-top: 30px; }
.error-actions .button { min-width: 130px; height: 44px; font-size: 13px; }

@media (max-width: 760px) {
  .preview-notice-inner { min-height: 56px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; line-height: 1.5; }
  .error-section { min-height: 560px; padding: 64px 0; }
  .error-layout { grid-template-columns: 1fr; gap: 34px; }
  .error-code { font-size: 104px; text-align: left; }
  .error-copy { padding-left: 22px; }
  .error-copy h1 { font-size: 30px; }
  .error-actions { align-items: stretch; flex-direction: column; }
  .error-actions .button { width: 100%; }
}

/* Product filters and data tables */
.filter-panel { display: grid; grid-template-columns: 1.4fr repeat(4, minmax(120px, 1fr)) auto; align-items: end; gap: 16px; padding: 24px 26px; background: #f2f6f9; border-top: 3px solid var(--blue); }
.product-filter-toggle { display: none; }
.filter-field label, .results-search > label, .form-grid label > span { display: block; margin-bottom: 7px; color: #5b6674; font-size: 12px; font-weight: 600; }
.filter-field input, .filter-field select, .results-search input, .form-grid input, .form-grid textarea { width: 100%; border: 1px solid #ccd5df; border-radius: 3px; background: white; color: var(--ink); outline: 0; transition: border .2s ease, box-shadow .2s ease; }
.filter-field input, .filter-field select { height: 44px; padding: 0 12px; }
.filter-field input:focus, .filter-field select:focus, .results-search input:focus, .form-grid input:focus, .form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,92,214,.1); }
.search-field > div { position: relative; }
.search-field svg { position: absolute; left: 13px; top: 12px; width: 18px; color: #7b8795; }
.search-field input { padding-left: 40px; }
.styled-select { position: relative; width: 100%; }
.styled-select-trigger { width: 100%; height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 12px 0 13px; border: 1px solid #ccd5df; border-radius: 3px; background: white; color: var(--ink); cursor: pointer; font: inherit; font-size: 13px; text-align: left; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.styled-select-trigger:hover { border-color: #aebbc9; background: #fbfdff; }
.styled-select-trigger:disabled { border-color: #d7dee6; background: #edf1f4; color: #8d98a5; cursor: not-allowed; }
.styled-select-trigger > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.styled-select-trigger > svg { width: 16px; min-width: 16px; color: #647285; transition: transform .2s ease; }
.styled-select.is-open .styled-select-trigger { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,92,214,.12); }
.styled-select.is-open .styled-select-trigger > svg { transform: rotate(180deg); }
.styled-select-list { position: absolute; z-index: 80; top: calc(100% + 6px); left: 0; right: 0; max-height: min(320px, 50vh); overflow-y: auto; padding: 6px; border: 1px solid #cbd5e0; border-radius: 4px; background: white; box-shadow: 0 14px 34px rgba(26,42,60,.16), 0 3px 8px rgba(26,42,60,.08); }
.styled-select-option { position: relative; width: 100%; min-height: 38px; display: grid; grid-template-columns: minmax(0, 1fr) 17px; align-items: center; gap: 10px; padding: 7px 9px 7px 11px; border: 0; border-radius: 3px; background: transparent; color: #3f4c5b; cursor: pointer; font: inherit; font-size: 13px; line-height: 1.45; text-align: left; }
.styled-select-option:hover, .styled-select-option:focus-visible { outline: 0; background: #f1f5f8; color: #1f2b38; }
.styled-select-option[aria-selected="true"] { background: #e9f2ff; color: #075ac8; font-weight: 600; }
.styled-select-option > span { min-width: 0; overflow-wrap: anywhere; }
.styled-select-option > svg { width: 15px; opacity: 0; }
.styled-select-option[aria-selected="true"] > svg { opacity: 1; }
.filter-actions { display: flex; gap: 8px; }
.filter-submit, .filter-reset { height: 44px; padding: 0 15px; border-radius: 3px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 7px; white-space: nowrap; }
.filter-submit { border: 1px solid var(--blue); background: var(--blue); color: white; }
.filter-submit:hover { border-color: #084cac; background: #084cac; }
.filter-reset { border: 1px solid #bdc8d4; background: white; color: #536070; }
.filter-reset:hover { color: var(--blue); border-color: var(--blue); }
.filter-submit svg, .filter-reset svg { width: 15px; }
.result-toolbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.result-toolbar > div { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.result-toolbar strong { color: var(--blue); font-size: 25px; }
.result-toolbar span { color: #596677; font-size: 13px; }
.result-toolbar p { display: flex; align-items: center; gap: 7px; margin: 0; color: #8a95a4; font-size: 11px; }
.result-toolbar p svg { width: 14px; color: var(--cyan); }
.result-toolbar:focus { outline: 2px solid rgba(10,92,214,.28); outline-offset: 4px; }
.table-shell { width: 100%; overflow-x: auto; border: 1px solid #d7dfe8; background: white; }
.data-table { width: 100%; min-width: 920px; border-collapse: collapse; font-size: 13px; }
.product-table { min-width: 1040px; }
.data-table th { height: 52px; padding: 0 18px; background: #f1f5f8; border-bottom: 1px solid #d7dfe8; color: #5a6675; text-align: left; font-size: 12px; white-space: nowrap; }
.data-table td { height: 78px; padding: 13px 18px; border-bottom: 1px solid #e4e9ef; color: #465261; vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: #f8fbff; }
.data-table td small { display: block; margin-top: 2px; color: #909ba8; font-size: 11px; }
.model-link { color: var(--blue); font-weight: 700; }
.lifecycle-badge { display: inline-flex; align-items: center; height: 25px; padding: 0 9px; border-radius: 3px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.lifecycle-badge.active { color: #087d66; background: #e1f6ef; }
.lifecycle-badge.new { color: #075cc8; background: #e8f2ff; }
.lifecycle-badge.eol { color: #8a4b4b; background: #fae9e9; }
.table-actions { display: flex; gap: 12px; white-space: nowrap; }
.table-actions a, .data-table td > a, .table-inquiry { color: var(--blue); font-weight: 600; font-size: 12px; }
.table-actions a + a { padding-left: 12px; border-left: 1px solid #d9e0e8; }
.cell-list { display: flex; flex-direction: column; gap: 3px; }
.cell-list > span { display: block; }
.table-muted { color: #9aa5b2; }
.table-empty { min-height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 20px; text-align: center; }
.table-empty > svg { width: 44px; height: 44px; color: #93a2b2; stroke-width: 1.4; }
.table-empty h2 { margin: 18px 0 6px; font-size: 21px; }
.table-empty p { max-width: 520px; margin: 0 0 24px; color: var(--muted); }
.table-empty .button { min-width: 142px; height: 42px; font-size: 13px; }
.product-list-empty { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-list-footer { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.product-list-footer > p { margin: 0; color: #8793a2; font-size: 12px; }

/* Product detail */
.detail-title { min-height: 260px; }
.detail-title .inner-hero-copy { padding-top: 30px; }
.detail-overview { padding: 72px 0 78px; }
.detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.detail-visual { position: relative; height: 420px; overflow: hidden; background: #e9f0f6; }
.detail-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.detail-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,25,44,.4), transparent 46%); }
.detail-visual span { position: absolute; z-index: 2; left: 20px; bottom: 16px; color: white; font-size: 11px; }
.detail-brand { min-width: 0; color: var(--cyan); font-size: 12px; font-weight: 700; overflow-wrap: anywhere; }
.detail-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.detail-meta-row .lifecycle-badge { flex: 0 0 auto; }
.detail-summary h2 { margin: 6px 0 17px; font-size: 31px; line-height: 1.35; overflow-wrap: anywhere; }
.detail-summary > p { margin: 0 0 28px; color: var(--muted); }
.key-spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 30px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.key-spec-grid div { min-height: 82px; padding: 15px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.key-spec-grid > div:only-child { grid-column: 1 / -1; }
.key-spec-grid span, .key-spec-grid strong { display: block; }
.key-spec-grid span { color: #8995a4; font-size: 11px; }
.key-spec-grid strong { margin-top: 3px; font-size: 15px; }
.detail-actions { display: flex; gap: 12px; margin-bottom: 18px; }
.detail-actions .button { min-width: 145px; height: 44px; font-size: 13px; }
.feature-section { padding: 78px 0; border-top: 1px solid var(--line); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-list article { min-height: 126px; padding: 27px 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-list h3 { position: relative; margin: 0 0 9px; padding-left: 15px; font-size: 16px; }
.feature-list h3::before { content: ""; position: absolute; left: 0; top: .2em; width: 3px; height: 1em; background: var(--cyan); }
.feature-list p { margin: 0; color: var(--muted); font-size: 12px; }
.spec-section { padding: 78px 0; background: #f2f6f9; }
.content-split { display: grid; grid-template-columns: 270px 1fr; gap: 74px; }
.section-rail > span { color: var(--blue); font-size: 11px; font-weight: 700; }
.section-rail h2 { margin: 4px 0 12px; font-size: 30px; }
.section-rail p { margin: 0; color: var(--muted); font-size: 13px; }
.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #ccd6e0; border-left: 1px solid #ccd6e0; }
.spec-list div { min-height: 84px; display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 20px; padding: 15px 22px; border-right: 1px solid #ccd6e0; border-bottom: 1px solid #ccd6e0; background: white; }
.spec-list span { color: #7a8796; font-size: 12px; }
.spec-list strong { font-size: 14px; }
.spec-list .parameter-value-multiline {
  overflow-wrap: anywhere;
  white-space: pre-line;
}
.application-section { padding: 72px 0; }
.application-section .section-heading { margin-bottom: 32px; }
.application-grid { counter-reset: application-item; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.application-grid article { counter-increment: application-item; position: relative; min-height: 145px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 30px 34px; border-right: 1px solid var(--line); }
.application-grid article:last-child { border-right: 0; }
.application-grid article::before { content: "0" counter(application-item); position: absolute; top: 20px; right: 25px; color: #e8eef4; font-size: 48px; line-height: 1; font-weight: 700; }
.application-grid h3 { position: relative; z-index: 1; margin: 0 0 10px; padding-left: 16px; font-size: 19px; }
.application-grid h3::before { content: ""; position: absolute; left: 0; top: .16em; width: 3px; height: 1.05em; background: var(--cyan); }
.application-grid p { position: relative; z-index: 1; max-width: 290px; margin: 0; color: var(--muted); font-size: 13px; }
.orderable-section { background: white; }
.orderable-section .section-heading > p { max-width: 560px; }
.related-section { background: #f2f6f9; }
.related-solution-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 24px; }
.related-solution-list > a { min-height: 178px; display: grid; grid-template-columns: 180px 1fr 24px; align-items: center; gap: 24px; overflow: hidden; border: 1px solid #d6dee7; border-radius: var(--radius); background: white; }
.related-solution-list img { width: 180px; height: 100%; object-fit: cover; }
.related-solution-list span { color: var(--cyan); font-size: 11px; font-weight: 600; }
.related-solution-list h3 { margin: 4px 0 8px; font-size: 18px; }
.related-solution-list p { margin: 0; color: var(--muted); font-size: 12px; }
.related-solution-list > a > svg { width: 18px; margin-right: 18px; color: #9aa6b4; }
.related-solution-list > a:hover h3 { color: var(--blue); }
.resource-section { background: #f6f8fa; }
.resource-list { border-top: 1px solid #d5dde6; }
.resource-list > a { min-height: 82px; display: grid; grid-template-columns: 34px 1fr 24px; align-items: center; gap: 17px; padding: 14px 18px; border-bottom: 1px solid #d5dde6; background: white; }
.resource-list > a:hover strong { color: var(--blue); }
.resource-list > a > svg { width: 23px; color: var(--cyan); }
.resource-list > a > svg:last-child { width: 17px; color: #9ba7b5; }
.product-resource-list > a { grid-template-columns: 1fr 24px; }
.solution-resource-list > a { grid-template-columns: 1fr 24px; }
.resource-list strong, .resource-list small { display: block; }
.resource-list strong { font-size: 14px; }
.resource-list small { margin-top: 3px; color: #8c98a6; font-size: 11px; overflow-wrap: anywhere; }

/* Solution index */
.solution-index-hero { min-height: 300px; }
.solution-index-section { padding-top: 64px; }
.solution-filter { display: flex; align-items: center; margin-bottom: 42px; border-bottom: 1px solid var(--line); }
.solution-filter a { position: relative; min-width: 118px; height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; color: #657180; font-size: 14px; white-space: nowrap; }
.solution-filter a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: -1px; height: 3px; background: transparent; }
.solution-filter a:hover, .solution-filter a.is-active { color: var(--blue); font-weight: 600; }
.solution-filter a.is-active::after { background: var(--blue); }
.solution-index-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.solution-index-grid > article { min-width: 0; overflow: hidden; border: 1px solid #d8e0e8; border-radius: 4px; background: white; }
.solution-index-grid > article[hidden] { display: none; }
.solution-card-media { position: relative; display: block; height: 270px; overflow: hidden; background: #e8eef3; }
.solution-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,24,42,.58), transparent 52%); }
.solution-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.solution-index-grid article:hover .solution-card-media img { transform: scale(1.02); }
.solution-card-media span { position: absolute; z-index: 2; left: 24px; bottom: 19px; color: white; font-size: 12px; font-weight: 700; }
.solution-card-copy { padding: 28px 30px 30px; }
.solution-card-copy h2 { margin: 0 0 12px; font-size: 22px; line-height: 1.45; }
.solution-card-copy h2 a:hover { color: var(--blue); }
.solution-card-copy > p { min-height: 46px; margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.solution-empty { min-height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-bottom: 1px solid var(--line); }
.solution-empty[hidden] { display: none; }
.solution-empty > svg { width: 44px; height: 44px; color: #93a2b2; stroke-width: 1.4; }
.solution-empty h2 { margin: 18px 0 6px; font-size: 21px; }
.solution-empty p { margin: 0 0 24px; color: var(--muted); }
.solution-list-footer { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.solution-list-footer > p { margin: 0; color: #8793a2; font-size: 12px; }
.prototype-list-note { display: flex; align-items: center; gap: 9px; margin-top: 28px; color: #8793a1; font-size: 11px; }
.prototype-list-note svg { width: 15px; flex: 0 0 auto; color: var(--cyan); }

/* Solution detail */
.solution-hero { position: relative; min-height: 570px; color: white; overflow: hidden; background: #101a29; }
.solution-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.solution-server-hero > img { object-position: center; }
.solution-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,18,33,.92) 0%, rgba(7,18,33,.72) 45%, rgba(7,18,33,.18) 100%); }
.solution-hero .container { position: relative; z-index: 2; }
.breadcrumb-light { padding-top: 34px; color: #bdc8d5; }
.solution-hero-copy { max-width: 670px; padding-top: 98px; }
.solution-hero-copy h1 { margin: 7px 0 20px; font-size: 44px; line-height: 1.28; }
.solution-hero-copy p { max-width: 610px; margin: 0 0 30px; color: #ced7e2; font-size: 16px; }
.solution-hero-copy .button { min-width: 172px; height: 46px; font-size: 13px; }
.intro-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.intro-layout h2 { margin: 4px 0 0; font-size: 31px; }
.intro-layout h3 { margin: 2px 0 18px; font-size: 23px; }
.intro-layout p { color: var(--muted); }
.benefit-list { counter-reset: solution-benefit; display: grid; grid-template-columns: repeat(3, 1fr); margin: 30px 0 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-list > div { counter-increment: solution-benefit; position: relative; min-height: 118px; display: flex; align-items: center; overflow: hidden; padding: 24px 20px; border-right: 1px solid var(--line); }
.benefit-list > div:last-child { border-right: 0; }
.benefit-list > div::before { content: "0" counter(solution-benefit); position: absolute; top: 17px; right: 16px; color: #e8eef4; font-size: 42px; line-height: 1; font-weight: 700; }
.benefit-list > div > span { position: relative; z-index: 1; }
.benefit-list strong, .benefit-list small { display: block; }
.benefit-list strong { position: relative; padding-left: 14px; font-size: 14px; }
.benefit-list strong::before { content: ""; position: absolute; left: 0; top: .15em; width: 3px; height: 1.05em; background: var(--cyan); }
.benefit-list small { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.solution-system { background: #f1f5f8; }
.system-flow { counter-reset: solution-module; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.system-flow > article { counter-increment: solution-module; position: relative; min-height: 205px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 32px 27px; background: white; border-top: 3px solid var(--blue); }
.system-flow > article::before { content: "0" counter(solution-module); position: absolute; top: 18px; right: 20px; color: #e8eef4; font-size: 48px; line-height: 1; font-weight: 700; }
.system-flow > article h3 { position: relative; z-index: 1; margin: 0 0 12px; padding-left: 15px; font-size: 18px; }
.system-flow > article h3::before { content: ""; position: absolute; left: 0; top: .16em; width: 3px; height: 1.05em; background: var(--cyan); }
.system-flow > article p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 12px; }
.solution-metric-section { background: #122238; color: white; }
.solution-metric-section .section-heading h2::after { background: #63d4d0; }
.solution-metric-section .section-heading > p { color: #aeb9c8; }
.solution-metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.solution-metric-grid > div { min-height: 160px; padding: 28px 25px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.solution-metric-grid span, .solution-metric-grid strong, .solution-metric-grid small { display: block; }
.solution-metric-grid span { color: #8fa0b4; font-size: 11px; }
.solution-metric-grid strong { margin: 10px 0 7px; color: white; font-size: 22px; line-height: 1.35; }
.solution-metric-grid small { color: #63d4d0; font-size: 10px; }
.solution-support { padding: 65px 0; color: white; background: #122238; }
.solution-support .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.solution-support span { color: #63d4d0; font-size: 11px; font-weight: 700; }
.solution-support h2 { margin: 5px 0 8px; font-size: 29px; }
.solution-support p { margin: 0; color: #aeb9c8; }
.solution-support .button { flex: 0 0 auto; min-width: 170px; height: 46px; font-size: 13px; }

/* Stock results */
.results-search { padding: 25px 28px; background: #101a29; }
.results-search > label { color: #c3ccd7; }
.results-search > div { height: 54px; display: grid; grid-template-columns: 45px 1fr 130px; align-items: center; background: white; }
.results-search svg { width: 18px; margin-left: 16px; color: #748190; }
.results-search input { height: 100%; padding: 0 12px; border: 0; box-shadow: none; }
.results-search button { height: 100%; border: 0; background: var(--blue); color: white; cursor: pointer; font-weight: 600; }
.results-search button:hover { background: var(--blue-deep); }
.stock-status { display: inline-flex; align-items: center; height: 25px; padding: 0 9px; border-radius: 3px; font-size: 11px; font-weight: 600; }
.stock-status.available { color: #087d66; background: #e1f6ef; }
.stock-status.limited { color: #a26107; background: #fff1d8; }
.stock-status.order { color: #1453a3; background: #e7f0fc; }
.stock-status.checking { color: #546171; background: #edf1f5; }
.stock-table-shell { -webkit-overflow-scrolling: touch; }
.stock-search-section { min-height: 520px; }
.stock-empty { min-height: 280px; border: 1px solid #d7dfe8; }
.search-help { margin-top: 34px; min-height: 128px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 30px; border-left: 3px solid var(--cyan); background: #f1f5f8; }
.search-help > div { display: grid; grid-template-columns: 42px 1fr; column-gap: 18px; }
.search-help svg { grid-row: 1 / 3; width: 36px; color: var(--cyan); }
.search-help h2 { margin: 0 0 3px; font-size: 18px; }
.search-help p { margin: 0; color: var(--muted); font-size: 13px; }
.search-help .button { min-width: 144px; height: 42px; font-size: 13px; }

/* Inquiry */
.inquiry-section { background: #f3f6f9; }
.inquiry-layout { display: grid; grid-template-columns: 310px 1fr; gap: 42px; align-items: start; }
.inquiry-aside { position: sticky; top: 110px; padding: 34px 30px; color: white; background: #122238; }
.inquiry-aside > span { color: #63d4d0; font-size: 11px; font-weight: 700; }
.inquiry-aside h2 { margin: 5px 0 28px; font-size: 24px; }
.inquiry-aside ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.inquiry-aside li { min-height: 87px; display: grid; grid-template-columns: 30px 1fr; gap: 13px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.14); }
.inquiry-aside li > b { color: #63d4d0; font-size: 11px; }
.inquiry-aside strong { font-size: 14px; }
.inquiry-aside li p { margin: 2px 0 0; color: #96a5b7; font-size: 11px; }
.inquiry-aside-summary { display: none; }
.privacy-note { display: flex; gap: 10px; margin-top: 25px; color: #aeb9c8; font-size: 11px; }
.privacy-note svg { width: 18px; flex: 0 0 auto; color: #63d4d0; }
.privacy-note p { margin: 0; }
.inquiry-form-shell { min-height: 620px; padding: 38px 42px; background: white; border-top: 3px solid var(--blue); }
.form-section + .form-section { margin-top: 42px; padding-top: 38px; border-top: 1px solid var(--line); }
.form-section-title { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.form-section-title > span { width: 31px; height: 31px; display: inline-flex; align-items: center; justify-content: center; border-radius: 3px; background: var(--blue); color: white; font-size: 11px; }
.form-section-title h2 { margin: 0; font-size: 20px; }
.form-section-title p { margin: 2px 0 0; color: #8a96a4; font-size: 11px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.form-grid label { min-width: 0; }
.form-grid input { height: 46px; padding: 0 13px; }
.form-grid textarea { padding: 12px 13px; resize: vertical; line-height: 1.6; }
.form-wide { grid-column: 1 / -1; }
.form-grid label > .input-suffix { display: grid; grid-template-columns: minmax(0, 1fr) 52px; margin-bottom: 0; color: inherit; font-size: inherit; font-weight: inherit; }
.input-suffix input { border-radius: 3px 0 0 3px; }
.form-grid label > .input-suffix > span { display: flex; align-items: center; justify-content: center; margin-bottom: 0; border: 1px solid #ccd5df; border-left: 0; border-radius: 0 3px 3px 0; background: #f1f4f7; color: #687585; font-size: 11px; font-weight: 400; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-errors { margin: 0 0 28px; padding: 14px 16px; border-left: 3px solid #bf2c2c; background: #fff3f3; color: #982525; font-size: 12px; }
.form-errors > strong { display: block; margin-bottom: 7px; color: #7f1d1d; }
.form-errors ul { margin: 0; padding-left: 18px; }
.form-errors li + li { margin-top: 4px; }
.form-errors a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.form-errors:focus { outline: 2px solid rgba(191,44,44,.35); outline-offset: 3px; }
.field-error { display: block; margin-top: 6px; color: #bf2c2c; font-size: 11px; }
.form-grid input[aria-invalid="true"],
.form-grid textarea[aria-invalid="true"] { border-color: #bf2c2c; }
.form-privacy { margin: 18px 0 0; color: #7d8997; font-size: 12px; line-height: 1.7; }
.form-privacy a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.form-submit p { display: flex; align-items: center; gap: 7px; margin: 0; color: #8b96a4; font-size: 11px; }
.form-submit p svg { width: 15px; color: var(--cyan); }
.form-submit .button { border: 0; min-width: 140px; height: 44px; font-size: 13px; cursor: pointer; }
.form-submit .button:disabled { opacity: .68; cursor: wait; }
.submit-success { min-height: 540px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.submit-success > svg { width: 62px; height: 62px; color: #0a9b75; stroke-width: 1.5; }
.submit-success h2 { margin: 23px 0 8px; font-size: 27px; }
.submit-success p { max-width: 530px; margin: 0 0 28px; color: var(--muted); }
.submit-success > div { display: flex; gap: 12px; }
.submit-success .button { min-width: 135px; height: 43px; font-size: 13px; }
.submit-success button { cursor: pointer; }

@media (max-width: 1100px) {
  .filter-panel { grid-template-columns: repeat(2, 1fr); }
  .filter-actions { width: max-content; }
  .detail-grid { gap: 40px; }
  .system-flow { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .system-flow > svg { display: none; }
  .related-solution-list { grid-template-columns: 1fr; }
  .solution-metric-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .inner-hero { min-height: 235px; padding: 24px 0 42px; }
  .inner-hero-copy { padding-top: 27px; }
  .inner-hero-copy h1 { font-size: 31px; }
  .inner-section { padding-top: 48px; }
  .filter-panel { grid-template-columns: 1fr; padding: 20px 18px; }
  .product-filter-enhanced .product-filter-toggle { width: 100%; height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border: 1px solid #ccd5df; border-left: 3px solid var(--blue); border-radius: 3px; background: white; color: #334151; cursor: pointer; font: inherit; }
  .product-filter-enhanced .product-filter-toggle > span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
  .product-filter-enhanced .product-filter-toggle svg { width: 17px; }
  .product-filter-enhanced .product-filter-toggle > small { min-width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; margin-left: auto; margin-right: 10px; border-radius: 50%; background: #e8f2ff; color: var(--blue); font-size: 11px; font-weight: 700; }
  .product-filter-enhanced .product-filter-toggle > svg { transition: transform .2s ease; }
  .product-filter-enhanced .product-filter-toggle[aria-expanded="true"] > svg { transform: rotate(180deg); }
  .product-filter-enhanced .product-filter-toggle[aria-expanded="true"] { border-radius: 3px 3px 0 0; }
  .product-filter-enhanced .product-filter-toggle[aria-expanded="true"] + .filter-panel { border-top-width: 1px; }
  .product-filter-enhanced .filter-panel { border-radius: 0 0 3px 3px; }
  .filter-actions { width: 100%; }
  .filter-submit, .filter-reset { flex: 1; }
  .result-toolbar { align-items: flex-start; flex-direction: column; gap: 6px; padding: 17px 0; }
  #product-results { scroll-margin-top: 92px; }
  .result-toolbar p { align-items: flex-start; }
  .product-table-shell { overflow: visible; border: 0; background: transparent; }
  .product-table { min-width: 0; border-collapse: separate; border-spacing: 0 14px; }
  .product-table thead { display: none; }
  .product-table tbody, .product-table tr, .product-table td { display: block; width: 100%; }
  .product-table tr { padding: 14px 18px; border: 1px solid #d7dfe8; background: white; }
  .product-table td { min-height: 0; height: auto; display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; padding: 8px 0; border-bottom: 1px solid #edf1f5; }
  .product-table td:last-child { border-bottom: 0; }
  .product-table td::before { content: attr(data-label); color: #7d8997; font-size: 11px; font-weight: 600; }
  .product-table td > * { min-width: 0; }
  .product-table .lifecycle-badge { justify-self: start; }
  .product-table td small { grid-column: 2; margin-top: -11px; }
  .product-table tbody tr:hover { background: white; }
  .product-list-footer { align-items: flex-start; flex-direction: column; padding: 24px 0; }
  .pagination { max-width: 100%; overflow-x: auto; }
  .detail-overview { padding: 50px 0 58px; }
  .detail-grid { grid-template-columns: 1fr; gap: 34px; }
  .detail-visual { height: 300px; }
  .detail-summary { display: flex; flex-direction: column; }
  .detail-meta-row { order: 1; }
  .detail-summary h2 { order: 2; font-size: 25px; }
  .detail-actions { order: 3; flex-direction: column; margin: 0 0 24px; }
  .detail-actions .button { width: 100%; min-width: 0; height: auto; min-height: 44px; padding: 10px 16px; text-align: center; white-space: normal; overflow-wrap: anywhere; }
  .detail-actions .button svg { flex: 0 0 auto; }
  .detail-description { order: 4; }
  .key-spec-grid { order: 5; grid-template-columns: 1fr; margin-bottom: 0; }
  .content-split { grid-template-columns: 1fr; gap: 30px; }
  .feature-list { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .spec-list div { grid-template-columns: .9fr 1.1fr; }
  .application-grid { grid-template-columns: 1fr; }
  .application-section { padding: 56px 0; }
  .application-section .section-heading { margin-bottom: 26px; }
  .application-grid article { min-height: 118px; padding: 24px 26px; border-right: 0; border-bottom: 1px solid var(--line); }
  .application-grid article::before { top: 18px; right: 20px; font-size: 42px; }
  .related-solution-list > a { grid-template-columns: 112px 1fr 20px; gap: 16px; }
  .related-solution-list img { width: 112px; }
  .related-solution-list h3 { font-size: 15px; }
  .related-solution-list p { display: none; }
  .related-solution-list > a > svg { margin-right: 8px; }
  .solution-hero { min-height: 590px; }
  .solution-hero > img { object-position: 67% center; }
  .solution-hero-shade { background: rgba(7,18,33,.72); }
  .solution-hero-copy { padding-top: 100px; }
  .solution-hero-copy h1 { font-size: 34px; }
  .intro-layout { grid-template-columns: 1fr; gap: 28px; }
  .benefit-list { grid-template-columns: 1fr; }
  .benefit-list > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-list > div:last-child { border-bottom: 0; }
  .system-flow { grid-template-columns: 1fr; }
  .system-flow > article { min-height: 145px; padding: 26px; }
  .system-flow > article::before { top: 18px; right: 20px; font-size: 42px; }
  .solution-metric-grid { grid-template-columns: 1fr; }
  .solution-support .container { align-items: flex-start; flex-direction: column; }
  .results-search { padding: 20px 18px; }
  .results-search > div { height: auto; grid-template-columns: 40px 1fr; }
  .results-search input { height: 52px; }
  .results-search button { grid-column: 1 / -1; height: 48px; }
  .stock-table-shell { overflow: visible; border: 0; background: transparent; }
  .stock-table { min-width: 0; border-collapse: separate; border-spacing: 0 14px; }
  .stock-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .stock-table tbody, .stock-table tr, .stock-table td { display: block; width: 100%; }
  .stock-table tr { overflow: hidden; padding: 18px; border: 1px solid #d7dfe8; border-top: 3px solid var(--blue); border-radius: 3px; background: white; }
  .stock-table td { min-height: 0; height: auto; display: grid; grid-template-columns: 104px minmax(0, 1fr); align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid #edf1f5; overflow-wrap: anywhere; }
  .stock-table td::before { content: attr(data-label); color: #7d8997; font-size: 11px; font-weight: 600; }
  .stock-table td > * { min-width: 0; }
  .stock-table .stock-model-cell { display: block; padding: 0 0 4px; border-bottom: 0; }
  .stock-table .stock-model-cell::before { display: none; }
  .stock-table .stock-model-cell .model-link { display: inline-block; color: #1c2b3c; font-size: 17px; line-height: 1.45; overflow-wrap: anywhere; }
  .stock-table .stock-brand-cell { display: flex; align-items: baseline; gap: 8px; padding: 0 0 14px; color: #5f6d7c; font-size: 12px; }
  .stock-table .stock-brand-cell::before { flex: 0 0 auto; }
  .stock-table .stock-status { justify-self: start; }
  .stock-table .stock-batch-cell { align-items: start; }
  .stock-table .stock-inquiry-cell { display: block; padding: 16px 0 0; border-bottom: 0; }
  .stock-table .stock-inquiry-cell::before { display: none; }
  .stock-table .table-inquiry { width: 100%; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--blue); border-radius: 3px; background: var(--blue); color: white; font-size: 13px; }
  .stock-table .table-inquiry:hover { border-color: #084cac; background: #084cac; }
  .stock-table tbody tr:hover { background: white; }
  .search-help { align-items: flex-start; flex-direction: column; }
  .search-help .button { width: 100%; }
  .inquiry-layout { grid-template-columns: 1fr; }
  .inquiry-aside { position: static; }
  .inquiry-form-page .inquiry-form-shell { order: 1; }
  .inquiry-form-page .inquiry-aside { order: 2; padding: 22px 20px; }
  .inquiry-form-page .inquiry-aside > span,
  .inquiry-form-page .inquiry-aside > h2,
  .inquiry-form-page .inquiry-aside > ol,
  .inquiry-form-page .inquiry-aside > .privacy-note { display: none; }
  .inquiry-form-page .inquiry-aside-summary { display: grid; gap: 3px; margin: 0; }
  .inquiry-form-page .inquiry-aside-summary strong { font-size: 15px; }
  .inquiry-form-page .inquiry-aside-summary span { color: #aeb9c8; font-size: 11px; line-height: 1.6; }
  .inquiry-form-shell { padding: 30px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .submit-success > div { width: 100%; flex-direction: column; }
  .submit-success .button { width: 100%; }
}

/* News index */
.news-hero { min-height: 300px; background: linear-gradient(110deg, #eef4f9 0%, #f7fafc 68%, #edf6f5 100%); }
.news-index-section { padding-top: 64px; }
.news-filter { display: flex; align-items: center; gap: 0; margin-bottom: 42px; border-bottom: 1px solid var(--line); }
.news-filter a { position: relative; min-width: 112px; height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; color: #657180; font-size: 14px; }
.news-filter a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: -1px; height: 3px; background: transparent; }
.news-filter a:hover, .news-filter a.is-active { color: var(--blue); font-weight: 600; }
.news-filter a.is-active::after { background: var(--blue); }
.news-meta { display: flex; align-items: center; gap: 15px; color: #8b97a5; font-size: 11px; }
.news-meta span { color: var(--cyan); font-weight: 700; }
.news-index-list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 52px; border-top: 1px solid var(--line); }
.news-index-list > article { min-height: 246px; display: grid; grid-template-columns: 192px 1fr; gap: 25px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.news-index-list > article[hidden] { display: none; }
.news-index-image { height: 180px; overflow: hidden; background: #e9eef3; }
.news-index-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.news-index-list article:hover .news-index-image img { transform: scale(1.025); }
.news-index-list article > div { position: relative; min-width: 0; padding-right: 25px; }
.news-index-list h2 { margin: 12px 0 11px; font-size: 18px; line-height: 1.55; }
.news-index-list h2 a:hover { color: var(--blue); }
.news-index-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.news-index-list article > div > a:last-child { position: absolute; right: 0; bottom: 0; color: #a1acb9; }
.news-index-list article > div > a:last-child:hover { color: var(--blue); }
.news-index-list article > div > a:last-child svg { width: 18px; }
.news-empty { min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-bottom: 1px solid var(--line); }
.news-empty[hidden] { display: none; }
.news-empty > svg { width: 42px; height: 42px; color: #9aa7b6; stroke-width: 1.4; }
.news-empty h2 { margin: 16px 0 3px; font-size: 19px; }
.news-empty p { margin: 0; color: var(--muted); font-size: 13px; }
.news-list-footer { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.news-list-footer > p { margin: 0; color: #8793a2; font-size: 12px; }
.news-list-footer > p strong { color: var(--blue); }
.pagination { display: flex; align-items: center; }
.pagination a { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-right: 0; color: #657180; font-size: 12px; }
.pagination a:last-child { border-right: 1px solid var(--line); }
.pagination a:hover, .pagination a.is-active { border-color: var(--blue); background: var(--blue); color: white; }
.pagination a.is-active + a { border-left-color: var(--blue); }
.pagination svg { width: 15px; }

/* News detail and restricted rich text */
.article-title-band { min-height: 390px; padding: 35px 0 70px; background: #101d2e; color: white; }
.article-title-band .breadcrumb { color: #99a8ba; }
.article-title-band .breadcrumb a:hover { color: #70d8d3; }
.article-title-copy { max-width: 900px; padding-top: 70px; }
.article-title-copy .news-meta time { color: #aeb9c7; }
.article-title-copy h1 { margin: 14px 0 20px; font-size: 42px; line-height: 1.35; }
.article-title-copy > p { max-width: 760px; margin: 0; color: #b8c4d1; font-size: 16px; }
.article-section { padding: 74px 0 48px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 790px) 270px; justify-content: space-between; gap: 80px; align-items: start; }
.article-content { min-width: 0; color: #3f4b5a; font-size: 15px; line-height: 1.95; overflow-wrap: anywhere; }
.article-content img { max-width: 100%; height: auto; }
.privacy-content { max-width: 860px; }
.privacy-content p { white-space: pre-line; }
.privacy-content p:not(:first-child):not(.privacy-contact)::first-line { color: var(--ink); font-size: 20px; font-weight: 700; }
.article-cover { width: 100%; aspect-ratio: 16 / 8.8; margin-bottom: 36px; object-fit: cover; object-position: 66% center; }
.article-content p { margin: 0 0 22px; }
.article-content .article-lead { padding: 22px 25px; border-left: 3px solid var(--cyan); background: #f1f6f8; color: #334151; font-size: 16px; }
.article-content h2 { margin: 48px 0 16px; color: var(--ink); font-size: 25px; line-height: 1.45; }
.article-content h3 { margin: 35px 0 14px; color: var(--ink); font-size: 19px; }
.article-content ul, .article-content ol { margin: 0 0 25px; padding-left: 23px; }
.article-content li { margin: 7px 0; }
.article-content li::marker { color: var(--cyan); }
.article-content blockquote { margin: 34px 0; padding: 26px 30px; border-left: 3px solid var(--blue); background: #f2f5f8; color: #344252; font-size: 17px; font-weight: 600; }
.article-content figure { margin: 30px 0 35px; }
.article-content figure img { width: 100%; max-height: 470px; object-fit: cover; }
.article-content figcaption { margin-top: 8px; color: #8c98a6; text-align: center; font-size: 11px; }
.article-content a:not(.text-link) { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article-content figure.table, .article-content > table { max-width: 100%; overflow-x: auto; border: 1px solid #d5dee7; }
.article-content > table { display: block; margin: 25px 0 30px; }
.article-table-scroll { max-width: 100%; margin: 25px 0 30px; overflow-x: auto; border: 1px solid #d5dee7; }
.article-content table { width: 100%; min-width: 650px; border-collapse: collapse; font-size: 13px; }
.article-content th { padding: 13px 16px; background: #eff4f7; color: #536171; text-align: left; white-space: nowrap; }
.article-content td { padding: 14px 16px; border-top: 1px solid #dce3ea; vertical-align: top; }
.article-content td + td, .article-content th + th { border-left: 1px solid #dce3ea; }
.article-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 42px; }
.article-tags span { padding: 5px 10px; border: 1px solid #d7e0e8; color: #74808f; font-size: 11px; }
.article-back { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); }
.article-back > span { color: #9aa5b1; font-size: 11px; }
.article-aside { position: sticky; top: 108px; }
.article-aside-block { padding: 27px 0; border-top: 2px solid #1d2d41; }
.article-aside-block > span { color: var(--cyan); font-size: 10px; font-weight: 700; }
.article-aside-block > h2 { margin: 3px 0 20px; font-size: 19px; }
.article-aside dl { margin: 0; }
.article-aside dl > div { min-height: 49px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); font-size: 12px; }
.article-aside dt { color: #8a96a4; }
.article-aside dd { margin: 0; color: #3d4957; }
.article-pager { display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 82px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-pager a { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 20px 26px; }
.article-pager .next-article { align-items: flex-end; border-left: 1px solid var(--line); text-align: right; }
.article-pager .next-article:only-child { grid-column: 2; }
.article-pager span { color: #8b97a5; font-size: 11px; }
.article-pager strong { margin-top: 5px; font-size: 14px; }
.article-pager a:hover strong { color: var(--blue); }

@media (max-width: 1100px) {
  .solution-card-media { height: 230px; }
  .news-index-list { column-gap: 34px; }
  .news-index-list > article { grid-template-columns: 150px 1fr; }
  .news-index-image { height: 155px; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 250px; gap: 50px; }
}

@media (max-width: 760px) {
  .solution-index-hero { min-height: 245px; }
  .solution-index-section { padding: 36px 0 58px; }
  .solution-filter { margin: 0 -18px 30px; padding: 0 18px; overflow-x: auto; scrollbar-width: none; }
  .solution-filter::-webkit-scrollbar { display: none; }
  .solution-filter a { min-width: max-content; padding: 0 15px; }
  .solution-filter a::after { left: 15px; right: 15px; }
  .solution-index-grid { grid-template-columns: 1fr; gap: 22px; }
  .solution-card-media { height: auto; aspect-ratio: 16 / 9; }
  .solution-card-copy { padding: 23px 21px 25px; }
  .solution-card-copy h2 { font-size: 19px; }
  .solution-card-copy > p { min-height: 0; }
  .solution-list-footer { align-items: flex-start; flex-direction: column; padding-top: 24px; }
  .solution-product-table-shell { overflow: visible; border: 0; background: transparent; }
  .solution-product-table { min-width: 0; border-collapse: separate; border-spacing: 0 14px; }
  .solution-product-table thead { display: none; }
  .solution-product-table tbody, .solution-product-table tr, .solution-product-table td { display: block; width: 100%; }
  .solution-product-table tr { padding: 14px 18px; border: 1px solid #d7dfe8; background: white; }
  .solution-product-table td { min-height: 0; height: auto; display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; padding: 8px 0; border-bottom: 1px solid #edf1f5; }
  .solution-product-table td:last-child { border-bottom: 0; }
  .solution-product-table td::before { content: attr(data-label); color: #7d8997; font-size: 11px; font-weight: 600; }
  .solution-product-table tbody tr:hover { background: white; }
  .news-hero { min-height: 245px; }
  .news-index-section { padding: 36px 0 58px; }
  .news-filter { margin: 0 -18px 30px; padding: 0 18px; overflow-x: auto; scrollbar-width: none; }
  .news-filter::-webkit-scrollbar { display: none; }
  .news-filter a { min-width: max-content; padding: 0 15px; }
  .news-filter a::after { left: 15px; right: 15px; }
  .news-index-list { grid-template-columns: 1fr; }
  .news-index-list > article { min-height: 0; grid-template-columns: 112px minmax(0, 1fr); gap: 17px; padding: 24px 0; }
  .news-index-image { height: 112px; }
  .news-index-list article > div { padding-right: 0; }
  .news-index-list h2 { margin: 7px 0 0; font-size: 15px; line-height: 1.55; }
  .news-index-list p, .news-index-list article > div > a:last-child { display: none; }
  .news-meta { gap: 9px; font-size: 9px; }
  .news-list-footer { min-height: 122px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 13px; }
  .article-title-band { min-height: 360px; padding: 24px 0 52px; }
  .article-title-copy { padding-top: 48px; }
  .article-title-copy h1 { font-size: 30px; }
  .article-title-copy > p { font-size: 14px; }
  .article-section { padding: 46px 0 30px; }
  .article-layout { grid-template-columns: 1fr; gap: 48px; }
  .article-cover { margin-bottom: 28px; aspect-ratio: 16 / 10; }
  .article-content { font-size: 14px; line-height: 1.9; }
  .article-content .article-lead { padding: 18px 19px; font-size: 15px; }
  .article-content h2 { margin-top: 38px; font-size: 22px; }
  .article-content blockquote { padding: 21px 20px; font-size: 15px; }
  .article-content figure { margin-left: 0; margin-right: 0; }
  .article-back { align-items: flex-start; flex-direction: column; }
  .article-aside { position: static; }
  .article-aside { display: none; }
  .article-pager { grid-template-columns: 1fr; margin-bottom: 58px; }
  .article-pager a { min-height: 92px; padding: 18px 0; }
  .article-pager .next-article { grid-column: auto; align-items: flex-start; border-top: 1px solid var(--line); border-left: 0; text-align: left; }
  .article-pager .next-article:only-child { border-top: 0; }
}

/* Shared public focus and interaction states. */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.button.primary:focus-visible,
.contact-button:focus-visible,
.filter-submit:focus-visible,
.search-control button:focus-visible,
.results-search button:focus-visible,
.form-submit .button:focus-visible,
.pagination a.is-active:focus-visible {
  outline: 2px solid white;
  outline-offset: 1px;
  box-shadow: 0 0 0 5px #007f7a;
}

.filter-field input:focus-visible,
.filter-field select:focus-visible,
.results-search input:focus-visible,
.form-grid input:focus-visible,
.form-grid textarea:focus-visible {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,92,214,.16);
}
.search-control:focus-within,
.results-search > div:focus-within {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.search-control input:focus-visible,
.results-search input:focus-visible { outline: 0; }

.company-section a:focus-visible,
.stock-band a:focus-visible,
.stock-band button:focus-visible,
.solution-hero a:focus-visible,
.solution-metric-section a:focus-visible,
.solution-support a:focus-visible,
.article-title-band a:focus-visible,
.inquiry-aside a:focus-visible,
.site-footer a:focus-visible {
  outline-color: #63d4d0;
}
.stock-band button:focus-visible,
.results-search button:focus-visible,
.solution-hero .button.primary:focus-visible {
  box-shadow: 0 0 0 5px #63d4d0;
}

.hero-controls button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 1px;
  box-shadow: 0 0 0 4px rgba(255,255,255,.92);
}

.button:active:not(:disabled),
.contact-button:active,
.quick-grid > a:active {
  transform: translateY(0);
}
.filter-submit:active,
.search-control button:active,
.results-search button:active { background: var(--blue-deep); }
.filter-reset:active { background: #f1f5f8; }

button:disabled,
.button[aria-disabled="true"] {
  opacity: .62;
  cursor: not-allowed;
  transform: none;
}
.button[aria-disabled="true"] { pointer-events: none; }

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