:root {
  --ink: #172131;
  --muted: #5e6875;
  --line: #d9dfe6;
  --surface: #f2f3f5;
  --white: #ffffff;
  --blue: #0b50f2;
  --blue-dark: #091933;
  --red: #0b50f2;
  --yellow: #0b50f2;
  --green: #25795f;
  --amber: #b7791f;
  --shadow: 0 16px 45px rgba(18, 24, 32, 0.12);
  --radius: 8px;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.topbar {
  background: #202832;
  color: #dfe6ee;
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

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

.brand-logo {
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: #33404d;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a[aria-current="page"] {
  color: var(--blue-dark);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: #a92f27;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--blue);
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #111922;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 126px;
}

.eyebrow {
  display: inline-flex;
  color: #e6eff8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  border-left: 4px solid var(--red);
  padding-left: 12px;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 670px;
  font-size: 19px;
  color: #e2e8ef;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.hero-stat {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background: #18212b;
  color: var(--white);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 26px;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section h2,
.section-title {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.lead {
  max-width: 650px;
  color: var(--muted);
  margin: 0;
}

.dark .section-head p,
.dark .lead {
  color: #c4ced8;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.product-card,
.info-card,
.application-card,
.quote-panel,
.spec-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8edf3;
}

.product-card.tall img {
  aspect-ratio: 3 / 2;
  object-position: center top;
}

.product-body,
.info-card,
.application-card {
  padding: 22px;
}

.product-body h3,
.info-card h3,
.application-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.product-body p,
.info-card p,
.application-card p {
  color: var(--muted);
  margin: 0 0 16px;
}

.product-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  color: #344151;
  font-size: 14px;
}

.product-meta li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #edf1f5;
  padding-bottom: 8px;
}

.model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.model-list li {
  background: #edf4fb;
  color: var(--blue-dark);
  border: 1px solid #d5e5f4;
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 800;
}

.spec-image {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

.catalog-page img {
  width: 100%;
  display: block;
}

.catalog-page figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.feature-row img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 3;
  width: 100%;
  object-fit: cover;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #30404f;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 2px;
}

.dark .check-list li {
  color: #d7e0e9;
}

.application-card {
  min-height: 210px;
}

.application-card .tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.split-band .media {
  background-size: cover;
  background-position: center;
}

.split-band .copy {
  display: flex;
  align-items: center;
  padding: 70px min(7vw, 90px);
  background: #18212b;
  color: var(--white);
}

.split-band .copy p {
  color: #c4ced8;
}

.split-band .copy .check-list li {
  color: #d7e0e9;
}

.cta-band {
  background: #202832;
  color: var(--white);
  padding: 58px 0;
}

.cta-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.cta-inner p {
  margin: 0;
  color: #c7d1dc;
}

.site-footer {
  background: #10161d;
  color: #d8e0e8;
  padding: 52px 0 26px;
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin: 0 0 16px;
}

.site-footer p,
.site-footer a {
  color: #aeb9c4;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-weight: 700;
}

.footer-social a:hover {
  border-color: #0b50f2;
  background: #0b50f2;
}

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

.contact-channel {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: #ffffff;
  background: #111c2b;
  border-top: 3px solid #0b50f2;
}

.contact-channel span {
  color: #9ba8b8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-channel strong {
  font-size: 16px;
}

.contact-channel:hover {
  background: #0b50f2;
}

.check-list a {
  color: #0b50f2;
  font-weight: 800;
}

/* Industry case library */
.industry-cases-hero {
  background: #101721;
}

.industry-cases-hero .section-kicker {
  display: inline-flex;
  margin-top: 32px;
}

.industry-cases-hero h1 {
  max-width: 820px;
}

.industry-cases-hero p {
  max-width: 780px;
}

.industry-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: #dfe3e8;
  border: 1px solid #dfe3e8;
}

.industry-case-card {
  min-width: 0;
  color: #111111;
  background: #ffffff;
}

.industry-case-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #18202b;
}

.industry-case-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(5, 10, 18, 0.78));
}

.industry-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.industry-case-media span {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.industry-case-card:hover .industry-case-media img {
  transform: scale(1.045);
}

.industry-case-copy {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.industry-case-copy h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.industry-case-copy > p {
  margin: 0;
  color: #68727d;
}

.industry-case-copy dl {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
}

.industry-case-copy dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid #e2e6ea;
}

.industry-case-copy dt {
  color: #0b50f2;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.industry-case-copy dd {
  margin: 0;
  color: #374452;
  font-size: 14px;
}

.industry-case-copy > strong {
  margin-top: auto;
  padding-top: 24px;
  color: #0b50f2;
  font-size: 13px;
}

.case-method-band {
  padding: 0 0 96px;
  background: #f3f5f7;
}

.case-method-band .section-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  color: #ffffff;
  background: #111c2b;
}

.case-method-band .section-inner > div {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.case-method-band .section-inner > div:last-child {
  border-right: 0;
}

.case-method-band span {
  color: #5590ff;
  font-weight: 800;
}

.case-method-band h3 {
  margin: 54px 0 10px;
  font-size: 23px;
}

.case-method-band p {
  margin: 0;
  color: #aeb9c4;
}

@media (max-width: 760px) {
  .industry-case-grid,
  .case-method-band .section-inner {
    grid-template-columns: 1fr;
  }

  .industry-case-copy {
    min-height: 300px;
    padding: 24px;
  }

  .industry-case-copy h3 {
    font-size: 24px;
  }

  .case-method-band .section-inner > div {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .case-method-band .section-inner > div:last-child {
    border-bottom: 0;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8b98a5;
  font-size: 13px;
}

.page-hero {
  background: #17202a;
  color: var(--white);
  padding: 88px 0;
}

.page-hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.breadcrumb {
  color: #aab7c4;
  font-size: 14px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.spec-panel,
.quote-panel {
  padding: 26px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

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

.spec-table th {
  color: #435160;
  width: 44%;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: #344151;
  font-weight: 700;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

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

.faq p {
  color: var(--muted);
  margin-bottom: 0;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  min-height: 40px;
  padding: 0 12px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .topbar-inner {
    flex-direction: column;
    gap: 4px;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 16px;
  }

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

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 56px;
  }

  .hero-stats,
  .grid-3,
  .grid-4,
  .catalog-grid,
  .feature-row,
  .split-band,
  .product-detail,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .section-head,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-band .media {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .hero-content,
  .hero-stats,
  .cta-inner,
  .footer-grid,
  .copyright,
  .page-hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 820px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .section {
    padding: 64px 0;
  }
}

/* YCM-inspired industrial presentation, adapted to the Kunlun brand. */
.topbar {
  color: #66717d;
  background: #f7f8f9;
  border-bottom: 1px solid #e5e8ec;
  font-size: 12px;
}

.topbar-inner {
  justify-content: flex-end;
  padding: 6px 0;
}

.topbar-inner span:first-child {
  margin-right: auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 0;
  box-shadow: 0 6px 22px rgba(18, 31, 48, 0.06);
}

.nav-inner {
  min-height: 82px;
}

.brand-logo {
  height: 48px;
  max-width: 230px;
}

.nav-links {
  gap: 27px;
  color: #263342;
  font-size: 14px;
  font-weight: 700;
}

.nav-links > a:not(.btn) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 82px;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: var(--yellow);
  transition: right 0.2s ease;
}

.nav-links > a:not(.btn):hover::after,
.nav-links > a[aria-current="page"]::after {
  right: 0;
}

.btn {
  border-radius: 2px;
  min-height: 46px;
  padding: 0 20px;
  font-size: 14px;
}

.btn-primary {
  background: var(--blue-dark);
}

.btn-primary:hover {
  background: #174f96;
}

.btn-secondary {
  border-color: #cbd2da;
}

.home-hero {
  width: min(1320px, calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  border-bottom: 5px solid var(--yellow);
  background: #172131;
  background-size: cover;
  background-position: center;
}

.home-hero::before {
  display: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 42, 0.46);
}

.home-hero .hero-content {
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 620px;
  padding: 70px 70px 86px;
}

.hero-copy {
  width: min(610px, 54%);
}

.eyebrow {
  border-left-color: var(--yellow);
  color: #ffffff;
  font-size: 12px;
}

.home-hero h1 {
  max-width: 620px;
  margin: 20px 0;
  font-size: 58px;
  line-height: 1.03;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.home-hero p {
  max-width: 600px;
  color: #f1f4f7;
}

.home-hero .btn-secondary {
  color: #ffffff;
  background: rgba(10, 24, 42, 0.58);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-index span {
  color: var(--yellow);
  font-size: 20px;
  font-weight: 800;
}

.home-intro {
  padding: 70px 0 24px;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.1fr) minmax(300px, 0.9fr) auto;
  gap: 36px;
  align-items: end;
}

.home-intro h2 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: 43px;
  line-height: 1.08;
}

.home-intro p {
  margin: 0;
  color: var(--muted);
}

.arrow-link {
  white-space: nowrap;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 5px;
}

.home-products-section {
  padding-top: 30px;
}

.home-product-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(3, 215px);
  gap: 12px;
}

.home-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #eef0f2;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.home-product-card:hover {
  background: #e5e8eb;
  border-bottom-color: var(--yellow);
}

.home-product-card.featured {
  grid-row: 1 / span 3;
}

.home-product-card img {
  position: absolute;
  right: 0;
  bottom: -4%;
  width: 74%;
  height: 78%;
  object-fit: contain;
  object-position: right bottom;
  transition: transform 0.3s ease;
}

.home-product-card.featured img {
  width: 92%;
  height: 68%;
  right: -6%;
}

.home-product-card:hover img {
  transform: scale(1.025);
}

.home-product-copy {
  position: relative;
  z-index: 2;
  max-width: 78%;
  padding: 24px;
}

.home-product-copy span {
  display: block;
  min-height: 18px;
  color: #77818c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-product-copy h3 {
  margin: 6px 0 0;
  font-size: 20px;
  line-height: 1.2;
}

.home-product-card.featured h3 {
  max-width: 360px;
  font-size: 29px;
}

.home-product-copy p {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.home-product-arrow {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  border: 1px solid #cbd2da;
  font-size: 20px;
}

.home-solutions {
  padding: 92px 0;
  color: #ffffff;
  background: #101b27;
  border-bottom: 5px solid var(--yellow);
}

.light-head p {
  color: #c3ccd6;
}

.solution-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, 190px);
}

.solution-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 30px;
  color: #ffffff;
  background: #1d2732;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.solution-tile.wide {
  grid-row: 1 / span 3;
}

.solution-tile.wide::after,
.solution-tile.image::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(9, 18, 28, 0.64);
}

.solution-tile.blue {
  background: var(--blue-dark);
}

.solution-tile.dark {
  background: #1b1f24;
}

.solution-tile.image {
  display: flex;
}

.solution-tile > span {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.solution-tile h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.solution-tile p {
  max-width: 480px;
  margin: 0;
  color: #d3dae1;
}

.capability-section {
  padding-bottom: 100px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid article {
  min-height: 270px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid span {
  color: var(--blue);
  font-weight: 800;
}

.capability-grid h3 {
  margin: 70px 0 10px;
  font-size: 23px;
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.home-links {
  padding: 0 0 92px;
}

.home-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 360px;
}

.home-link-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 34px;
  overflow: hidden;
  isolation: isolate;
}

.home-link-block.navy {
  color: #ffffff;
  background: var(--blue-dark);
}

.home-link-block.light {
  background: #eef0f2;
}

.home-link-block.photo {
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.home-link-block.photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(9, 18, 28, 0.6);
}

.home-link-block span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-link-block h3 {
  margin: 12px 0 54px;
  font-size: 25px;
  line-height: 1.25;
}

.home-link-block strong {
  font-size: 13px;
}

.section {
  padding: 82px 0;
}

.section-kicker {
  color: var(--blue);
  letter-spacing: 0;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--yellow);
}

.product-card,
.info-card,
.application-card,
.quote-panel,
.spec-panel {
  border-radius: 2px;
}

.product-card {
  border: 0;
  background: #eef0f2;
}

.product-card img,
.product-card.tall img {
  object-fit: contain;
  background: #eef0f2;
}

.product-body {
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 0;
}

.page-hero {
  position: relative;
  padding: 88px 0;
  background: #172131;
  border-bottom: 5px solid var(--yellow);
  overflow: hidden;
}

.page-hero h1 {
  font-size: 54px;
  line-height: 1.04;
}

.product-page-hero {
  min-height: 500px;
  padding: 45px 0;
  background: #e9ecef;
  color: var(--ink);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 40px;
}

.product-hero-copy {
  position: relative;
  z-index: 2;
}

.product-page-hero .breadcrumb {
  color: #6c7783;
}

.product-page-hero h1 {
  max-width: 680px;
  color: var(--ink);
}

.product-page-hero p {
  color: var(--muted);
}

.product-hero-machine {
  height: 410px;
  display: grid;
  place-items: center;
}

.product-hero-machine img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.gallery-main {
  border-radius: 2px;
  background: #eef0f2;
}

.gallery-main img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.spec-panel {
  border-top: 4px solid var(--yellow);
}

.cta-band {
  background: #152238;
  border-top: 5px solid var(--yellow);
}

.site-footer {
  position: relative;
  background: #10244a;
  border-bottom: 5px solid var(--yellow);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 16px;
  }

  .home-hero .hero-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .home-product-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 280px);
  }

  .home-product-card.featured {
    grid-row: auto;
  }

  .home-product-card.featured img,
  .home-product-card img {
    width: 72%;
    height: 72%;
    right: -3%;
  }

  .home-product-card.featured h3 {
    font-size: 22px;
  }

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

  .capability-grid article:nth-child(2) {
    border-right: 0;
  }

  .capability-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  .nav-inner {
    min-height: 70px;
  }

  .nav-links > a:not(.btn) {
    min-height: 36px;
  }

  .nav-links > a:not(.btn)::after {
    display: none;
  }

  .home-hero {
    width: 100%;
    min-height: 660px;
  }

  .home-hero .hero-content {
    min-height: 660px;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 70px 32px;
  }

  .hero-copy {
    width: 100%;
  }

  .home-hero h1 {
    max-width: 680px;
    font-size: 50px;
  }

  .home-intro-grid,
  .product-hero-inner {
    grid-template-columns: 1fr;
  }

  .product-hero-machine {
    height: 320px;
  }

  .solution-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 220px 220px 220px;
  }

  .solution-tile.wide {
    grid-row: auto;
  }

  .home-links-grid {
    grid-template-columns: 1fr;
  }

  .home-link-block {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    height: 38px;
    max-width: 190px;
  }

  .home-hero {
    min-height: 590px;
  }

  .home-hero::before {
    background-position: 68% center;
  }

  .home-hero .hero-content {
    min-height: 590px;
    padding: 46px 20px 70px;
  }

  .home-hero h1 {
    font-size: 39px;
  }

  .home-hero p {
    font-size: 16px;
  }

  .hero-index {
    left: 20px;
    right: auto;
  }

  .home-intro {
    padding-top: 52px;
  }

  .home-intro h2,
  .section h2,
  .section-title,
  .page-hero h1 {
    font-size: 34px;
  }

  .home-product-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .home-product-card,
  .home-product-card.featured {
    min-height: 300px;
  }

  .home-product-card.featured img,
  .home-product-card img {
    width: 78%;
    height: 68%;
  }

  .home-product-card.featured h3 {
    font-size: 22px;
  }

  .solution-mosaic {
    grid-template-rows: 360px 210px 210px 210px;
  }

  .solution-tile {
    padding: 24px;
  }

  .solution-tile h3 {
    font-size: 23px;
  }

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

  .capability-grid article,
  .capability-grid article:nth-child(2) {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-grid h3 {
    margin-top: 38px;
  }

  .product-page-hero {
    min-height: auto;
    padding: 58px 0 36px;
  }

  .product-hero-machine {
    height: 260px;
  }
}

/* Modular application solution pages */
.application-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: #dfe3e8;
}

.application-index-card {
  min-width: 0;
  color: #111111;
  background: #ffffff;
}

.application-index-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.application-index-copy {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.application-index-copy > span,
.application-detail-grid article > span,
.application-selection-grid article > span {
  color: #0b50f2;
  font-size: 13px;
  font-weight: 800;
}

.application-index-copy h3 {
  margin: 28px 0 12px;
  font-size: 28px;
}

.application-index-copy p {
  margin: 0;
  color: #68727d;
}

.application-index-copy strong {
  margin-top: auto;
  padding-top: 24px;
  color: #0b50f2;
  font-size: 13px;
}

.application-page-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: #101721;
}

.application-hero-bg,
.application-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.application-hero-bg {
  object-fit: cover;
  object-position: center;
}

.application-hero-shade {
  background: rgba(5, 13, 25, 0.64);
}

.application-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
}

.application-overline {
  display: block;
  margin: 34px 0 20px;
  color: #9db7ff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.application-page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
}

.application-page-hero p {
  max-width: 720px;
  margin: 24px 0 34px;
  color: #edf1f6;
  font-size: 19px;
}

.application-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.application-intro .section-title {
  margin-bottom: 0;
}

.application-intro > p {
  margin: 0;
}

.application-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #dfe3e8;
  border-bottom: 1px solid #dfe3e8;
}

.application-detail-grid article {
  min-width: 0;
  padding: 42px 48px 48px 0;
}

.application-detail-grid article + article {
  padding-left: 48px;
  border-left: 1px solid #dfe3e8;
}

.application-detail-grid h3 {
  margin: 20px 0 24px;
  font-size: 28px;
}

.application-detail-grid .check-list {
  margin-bottom: 0;
}

.application-selection-section {
  padding: 110px 0;
  color: #ffffff;
  background: #091933;
}

.application-selection-section .dn-section-title h2,
.application-selection-section .dn-section-title p {
  color: #ffffff;
}

.application-selection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.application-selection-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.application-selection-grid article:last-child {
  border-right: 0;
}

.application-selection-grid h3 {
  margin: 58px 0 14px;
  font-size: 22px;
}

.application-selection-grid p {
  margin: 0;
  color: #b8c2d0;
}

.recommended-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  background: #dfe3e8;
}

.recommended-product-grid a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: #111111;
  background: #f7f8fa;
}

.recommended-product-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #eef0f2;
}

.recommended-product-grid a > div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.recommended-product-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.recommended-product-grid p {
  margin: 0;
  color: #68727d;
  font-size: 14px;
}

.recommended-product-grid strong {
  margin-top: auto;
  padding-top: 20px;
  color: #0b50f2;
  font-size: 13px;
}

.application-inquiry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

@media (max-width: 1020px) {
  .application-index-grid,
  .recommended-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .application-selection-grid article:nth-child(2) {
    border-right: 0;
  }

  .application-selection-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }
}

@media (max-width: 720px) {
  .application-page-hero {
    min-height: 620px;
  }

  .application-hero-inner {
    width: min(100% - 32px, 1320px);
    padding: 58px 0;
  }

  .application-page-hero h1 {
    font-size: 42px;
  }

  .application-page-hero p {
    font-size: 16px;
  }

  .application-intro,
  .application-detail-grid,
  .application-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .application-intro {
    margin-bottom: 42px;
  }

  .application-detail-grid article,
  .application-detail-grid article + article {
    padding: 32px 0;
    border-left: 0;
  }

  .application-detail-grid article + article {
    border-top: 1px solid #dfe3e8;
  }

  .application-selection-section {
    padding: 78px 0;
  }
}

@media (max-width: 540px) {
  .application-index-grid,
  .recommended-product-grid,
  .application-selection-grid {
    grid-template-columns: 1fr;
  }

  .application-selection-grid article,
  .application-selection-grid article:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .application-selection-grid article:last-child {
    border-bottom: 0;
  }
}

/* DN Solutions-inspired direction, rebuilt with Kunlun content and assets. */
.topbar {
  color: #c8d0dc;
  background: #091933;
  border-bottom: 0;
}

.site-header {
  box-shadow: none;
  border-bottom: 1px solid #e6e8eb;
}

.nav-links > a:not(.btn)::after {
  height: 3px;
  background: #0b50f2;
}

.btn-primary {
  background: #0b50f2;
}

.btn-primary:hover {
  background: #1142b6;
}

.btn-outline-light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
}

.btn-outline-light:hover {
  color: #091933;
  background: #ffffff;
}

.dn-hero {
  position: relative;
  min-height: 760px;
  height: calc(100vh - 112px);
  max-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #091933;
  background-size: cover;
  background-position: center;
}

.dn-hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dn-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 29, 0.46);
}

body[data-page="home"] .nav-inner {
  min-height: 100px;
}

body[data-page="home"] .brand-logo {
  height: 64px;
  max-width: 320px;
}

.dn-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
  padding-bottom: 42px;
}

.dn-overline,
.dn-section-title > span,
.dn-company-intro > span {
  display: block;
  margin-bottom: 22px;
  color: #6f98ff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.dn-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: 82px;
  line-height: 1.02;
}

.dn-hero p {
  max-width: 780px;
  margin: 30px 0 0;
  color: #eef2f7;
  font-size: 22px;
  line-height: 1.6;
}

.dn-hero .hero-actions {
  margin-top: 48px;
}

.dn-hero-rail {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 80px));
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
}

.dn-hero-rail span {
  color: #6f98ff;
  font-weight: 800;
}

.dn-hero-rail i {
  width: 90px;
  height: 1px;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.48);
}

.dn-industry-section,
.dn-resources-section {
  padding: 120px 0;
}

.dn-lineup-section {
  padding: 80px 0 110px;
  overflow: hidden;
  background: #ffffff;
}

.dn-lineup-shell {
  width: min(1800px, calc(100% - 40px));
  min-height: 645px;
  display: flex;
  margin: 0 auto;
}

.dn-lineup-intro {
  width: 24%;
  flex: 0 0 24%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 38px 0 0;
}

.dn-lineup-intro > div > span {
  display: block;
  margin-bottom: 26px;
  color: #767676;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.dn-lineup-intro h2 {
  margin: 0;
  color: #111111;
  font-size: 42px;
  line-height: 1.16;
}

.dn-lineup-intro p {
  max-width: 300px;
  margin: 30px 0 0;
  color: #68727d;
  font-size: 16px;
}

.dn-lineup-intro .btn {
  width: 240px;
}

.dn-section-title {
  max-width: 850px;
  margin: 0 auto 64px;
  text-align: center;
}

.dn-section-title > span {
  margin-bottom: 16px;
  color: #767676;
}

.dn-section-title h2 {
  margin: 0;
  color: #111111;
  font-size: 50px;
  line-height: 1.12;
}

.dn-section-title p {
  max-width: 680px;
  margin: 24px auto 0;
  color: #767676;
  font-size: 18px;
}

.dn-lineup {
  min-width: 0;
  height: 645px;
  flex: 1 1 auto;
  display: flex;
  overflow: visible;
  border-left: 1px solid #e7e9ed;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  background: #ffffff;
}

.dn-lineup-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  color: #111111;
  background: #ffffff;
  border-right: 1px solid #eeeeee;
  transition: flex 0.55s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.dn-lineup-card:last-child {
  border-right: 0;
}

.dn-lineup-card:first-child {
  flex: 3.7 1 0;
  color: #ffffff;
  background: #0b50f2;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.dn-lineup:hover .dn-lineup-card {
  flex: 1 1 0;
  color: #111111;
  background: #ffffff;
  box-shadow: none;
  z-index: 1;
}

.dn-lineup .dn-lineup-card:hover,
.dn-lineup .dn-lineup-card:focus-visible {
  flex: 3.7 1 0;
  color: #ffffff;
  background: #0b50f2;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.22);
  z-index: 2;
  outline: 0;
}

.dn-lineup-marker {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dn-lineup-card:first-child .dn-lineup-marker,
.dn-lineup-card:hover .dn-lineup-marker,
.dn-lineup-card:focus-visible .dn-lineup-marker {
  opacity: 1;
}

.dn-lineup-number {
  position: absolute;
  top: 32px;
  left: 30px;
  color: #d4d4d4;
  font-size: 28px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.dn-lineup-card:first-child .dn-lineup-number,
.dn-lineup-card:hover .dn-lineup-number,
.dn-lineup-card:focus-visible .dn-lineup-number {
  opacity: 0;
}

.dn-lineup-copy {
  position: absolute;
  z-index: 2;
  top: 130px;
  left: 30px;
  right: 26px;
}

.dn-lineup-card:first-child .dn-lineup-copy,
.dn-lineup-card:hover .dn-lineup-copy,
.dn-lineup-card:focus-visible .dn-lineup-copy {
  top: 70px;
}

.dn-lineup-label {
  display: block;
  margin-bottom: 18px;
  color: #b9cbff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dn-lineup-copy h3 {
  margin: 0;
  max-width: 170px;
  font-size: 19px;
  line-height: 1.35;
  transition: max-width 0.35s ease, font-size 0.35s ease;
}

.dn-lineup-copy p {
  max-width: 340px;
  margin: 18px 0 0;
  color: #767676;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dn-lineup-copy strong {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dn-lineup-card:first-child .dn-lineup-copy p,
.dn-lineup-card:first-child .dn-lineup-copy strong,
.dn-lineup-card:first-child .dn-lineup-label,
.dn-lineup-card:hover .dn-lineup-copy p,
.dn-lineup-card:hover .dn-lineup-copy strong,
.dn-lineup-card:hover .dn-lineup-label,
.dn-lineup-card:focus-visible .dn-lineup-copy p,
.dn-lineup-card:focus-visible .dn-lineup-copy strong,
.dn-lineup-card:focus-visible .dn-lineup-label {
  color: #ffffff;
  opacity: 1;
}

.dn-lineup-card:first-child .dn-lineup-copy h3,
.dn-lineup-card:hover .dn-lineup-copy h3,
.dn-lineup-card:focus-visible .dn-lineup-copy h3 {
  max-width: 430px;
  font-size: 34px;
  line-height: 1.18;
}

.dn-lineup-card img {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 86%;
  height: 43%;
  object-fit: contain;
  transition: width 0.45s ease, height 0.45s ease;
}

.dn-lineup-card:first-child img,
.dn-lineup-card:hover img,
.dn-lineup-card:focus-visible img {
  width: 95%;
  height: 48%;
}

.dn-solutions-section {
  padding: 110px 0 0;
  color: #ffffff;
  background: #091933;
}

.dn-section-title.light h2 {
  color: #ffffff;
}

.dn-section-title.light > span {
  color: #6f98ff;
}

.dn-solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #f8f9fb;
}

.dn-solution-row.reverse .dn-solution-media {
  order: 2;
}

.dn-solution-media {
  min-height: 560px;
  background-size: cover;
  background-position: center;
}

.dn-solution-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(8vw, 90px);
  color: #111111;
  background: #f8f9fb;
}

.dn-solution-copy > span {
  color: #0b50f2;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.dn-solution-copy h3 {
  margin: 20px 0 0;
  font-size: 48px;
  line-height: 1.12;
}

.dn-solution-copy p {
  margin: 28px 0 0;
  color: #666f79;
  font-size: 18px;
}

.dn-solution-copy a {
  align-self: flex-start;
  margin-top: 36px;
  padding-bottom: 6px;
  color: #0b50f2;
  border-bottom: 2px solid #0b50f2;
  font-weight: 800;
}

.dn-industry-section {
  background: #ffffff;
}

.dn-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: #ffffff;
}

.dn-industry-grid a {
  position: relative;
  min-width: 0;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #ffffff;
  background-color: #20242b;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dn-industry-grid a > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s ease;
}

.dn-industry-grid a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(6, 15, 29, 0.56);
  transition: background 0.35s ease;
}

.dn-industry-grid a:hover,
.dn-industry-grid a:focus-visible {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(8, 20, 38, 0.28);
  outline: 0;
}

.dn-industry-grid a:hover::after {
  background: rgba(6, 15, 29, 0.38);
}

.dn-industry-grid a:hover > img,
.dn-industry-grid a:focus-visible > img {
  transform: scale(1.1);
}

.dn-industry-copy {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.dn-industry-copy span {
  position: absolute;
  top: 34px;
  right: 34px;
  color: #9db7ff;
  font-weight: 800;
}

.dn-industry-copy h3 {
  margin: 0;
  font-size: 34px;
}

.dn-industry-copy p {
  margin: 12px 0 0;
  color: #e1e6ee;
  font-size: 17px;
}

.dn-company-section {
  padding: 120px 0;
  color: #ffffff;
  background: #091933;
}

.dn-company-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: end;
}

.dn-company-intro > span {
  color: #6f98ff;
}

.dn-company-intro h2 {
  margin: 0;
  font-size: 49px;
  line-height: 1.12;
}

.dn-company-intro .btn {
  margin-top: 38px;
}

.dn-company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.dn-company-facts article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.dn-company-facts article:last-child {
  border-right: 0;
}

.dn-company-facts strong {
  font-size: 34px;
  line-height: 1.05;
}

.dn-company-facts span {
  margin-top: 18px;
  color: #b8c2d0;
  font-size: 13px;
}

.dn-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #dfe3e8;
  border-bottom: 1px solid #dfe3e8;
}

.dn-resource-grid a {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid #dfe3e8;
  transition: color 0.2s ease, background 0.2s ease;
}

.dn-resource-grid a:last-child {
  border-right: 0;
}

.dn-resource-grid a:hover {
  color: #ffffff;
  background: #0b50f2;
}

.dn-resource-grid span {
  color: #0b50f2;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dn-resource-grid a:hover span {
  color: #ffffff;
}

.dn-resource-grid h3 {
  margin: 70px 0 0;
  font-size: 27px;
  line-height: 1.25;
}

.dn-resource-grid strong {
  margin-top: auto;
  font-size: 13px;
}

.section-kicker::before {
  background: #0b50f2;
}

.page-hero,
.cta-band {
  border-bottom-color: #0b50f2;
  border-top-color: #0b50f2;
}

.spec-panel {
  border-top-color: #0b50f2;
}

.site-footer {
  background: #111111;
  border-bottom-color: #0b50f2;
}

@media (max-width: 1120px) {
  .dn-hero h1 {
    font-size: 68px;
  }

  .dn-lineup-shell {
    width: min(100% - 40px, 1320px);
    min-height: 0;
    display: block;
  }

  .dn-lineup-intro {
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    padding: 0;
    margin-bottom: 48px;
  }

  .dn-lineup-intro h2 {
    max-width: 720px;
    font-size: 44px;
  }

  .dn-lineup-intro .btn {
    flex: 0 0 240px;
  }

  .dn-lineup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: auto;
    overflow: hidden;
    border: 1px solid #e1e4e8;
  }

  .dn-lineup-card,
  .dn-lineup-card:first-child,
  .dn-lineup:hover .dn-lineup-card,
  .dn-lineup .dn-lineup-card:hover {
    min-height: 390px;
    color: #111111;
    background: #f8f9fb;
    border-bottom: 1px solid #e1e4e8;
    box-shadow: none;
    z-index: 1;
  }

  .dn-lineup-card:first-child .dn-lineup-number,
  .dn-lineup-card:hover .dn-lineup-number,
  .dn-lineup-card:focus-visible .dn-lineup-number {
    color: #0b50f2;
    opacity: 1;
  }

  .dn-lineup-marker,
  .dn-lineup-card:first-child .dn-lineup-marker,
  .dn-lineup-card:hover .dn-lineup-marker,
  .dn-lineup-card:focus-visible .dn-lineup-marker,
  .dn-lineup-label,
  .dn-lineup-card:first-child .dn-lineup-label,
  .dn-lineup-card:hover .dn-lineup-label,
  .dn-lineup-card:focus-visible .dn-lineup-label {
    opacity: 0;
  }

  .dn-lineup-copy {
    top: 82px;
  }

  .dn-lineup-card:first-child .dn-lineup-copy,
  .dn-lineup-card:hover .dn-lineup-copy,
  .dn-lineup-card:focus-visible .dn-lineup-copy {
    top: 82px;
  }

  .dn-lineup-copy h3,
  .dn-lineup-card:first-child .dn-lineup-copy h3,
  .dn-lineup-card:hover .dn-lineup-copy h3,
  .dn-lineup-card:focus-visible .dn-lineup-copy h3 {
    max-width: none;
    font-size: 23px;
    line-height: 1.25;
  }

  .dn-lineup-card:first-child .dn-lineup-copy p,
  .dn-lineup-card:first-child .dn-lineup-copy strong,
  .dn-lineup-card:hover .dn-lineup-copy p,
  .dn-lineup-card:hover .dn-lineup-copy strong {
    color: #767676;
    opacity: 1;
  }

  .dn-lineup-copy p,
  .dn-lineup-copy strong {
    opacity: 1;
  }

  .dn-lineup-card img,
  .dn-lineup-card:first-child img,
  .dn-lineup-card:hover img {
    width: 88%;
    height: 52%;
  }

  .dn-solution-copy {
    padding-left: 60px;
    padding-right: 60px;
  }

  .dn-company-section .section-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .dn-hero {
    height: auto;
    min-height: 690px;
  }

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

  .dn-hero h1 {
    font-size: 54px;
  }

  .dn-hero-rail {
    width: min(100% - 40px, 1320px);
  }

  .dn-solution-row {
    grid-template-columns: 1fr;
  }

  .dn-solution-row.reverse .dn-solution-media {
    order: 0;
  }

  .dn-solution-media {
    min-height: 420px;
  }

  .dn-solution-copy {
    min-height: 430px;
  }

  .dn-industry-grid,
  .dn-resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dn-resource-grid a:nth-child(2) {
    border-right: 0;
  }

  .dn-resource-grid a:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid #dfe3e8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dn-hero-video {
    display: none;
  }
}

@media (max-width: 620px) {
  .dn-hero {
    min-height: 650px;
    background-position: 68% center;
  }

  body[data-page="home"] .nav-inner {
    min-height: 78px;
  }

  body[data-page="home"] .brand-logo {
    height: 48px;
    max-width: 230px;
  }

  .dn-hero-inner {
    padding-bottom: 88px;
  }

  .dn-overline {
    font-size: 13px;
  }

  .dn-hero h1 {
    font-size: 42px;
  }

  .dn-hero p {
    margin-top: 22px;
    font-size: 16px;
  }

  .dn-hero .hero-actions {
    margin-top: 30px;
  }

  .dn-hero-rail {
    bottom: 20px;
    overflow: hidden;
    white-space: nowrap;
  }

  .dn-lineup-section,
  .dn-industry-section,
  .dn-resources-section,
  .dn-company-section {
    padding: 78px 0;
  }

  .dn-section-title {
    margin-bottom: 42px;
    text-align: left;
  }

  .dn-section-title h2 {
    font-size: 36px;
  }

  .dn-section-title p {
    font-size: 16px;
  }

  .dn-lineup-shell {
    width: min(100% - 28px, 1320px);
  }

  .dn-lineup-intro {
    min-height: 0;
    display: block;
    margin-bottom: 42px;
  }

  .dn-lineup-intro > div > span {
    margin-bottom: 16px;
  }

  .dn-lineup-intro h2 {
    font-size: 36px;
  }

  .dn-lineup-intro p {
    margin-top: 20px;
    font-size: 16px;
  }

  .dn-lineup-intro .btn {
    width: 100%;
    margin-top: 28px;
  }

  .dn-lineup {
    grid-template-columns: 1fr;
  }

  .dn-lineup-card,
  .dn-lineup-card:first-child,
  .dn-lineup:hover .dn-lineup-card,
  .dn-lineup .dn-lineup-card:hover {
    min-height: 390px;
    border-right: 0;
  }

  .dn-solutions-section {
    padding-top: 78px;
  }

  .dn-solutions-section > .dn-section-title {
    width: min(100% - 28px, 850px);
  }

  .dn-solution-media {
    min-height: 300px;
  }

  .dn-solution-copy {
    min-height: 420px;
    padding: 46px 24px;
  }

  .dn-solution-copy h3 {
    font-size: 34px;
  }

  .dn-industry-grid,
  .dn-resource-grid,
  .dn-company-facts {
    grid-template-columns: 1fr;
  }

  .dn-industry-grid a {
    min-height: 320px;
  }

  .dn-company-intro h2 {
    font-size: 37px;
  }

  .dn-company-facts article {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .dn-resource-grid a,
  .dn-resource-grid a:nth-child(2),
  .dn-resource-grid a:last-child {
    min-height: 270px;
    grid-column: auto;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #dfe3e8;
  }

  .dn-resource-grid h3 {
    margin-top: 48px;
  }
}
