:root {
  --ink: #102033;
  --muted: #5f6f83;
  --line: #dce5ef;
  --soft: #f5f8fb;
  --blue: #1463ff;
  --blue-dark: #0b3a8f;
  --teal: #00a6a6;
  --green: #15a36a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 32, 51, 0.12);
  --nav-height: 76px;
  --top-background:
    linear-gradient(180deg, rgba(235, 247, 255, 0.84) 0%, rgba(246, 251, 255, 0.88) 62%, #ffffff 100%),
    url("top-tech-background.png");
}

/* Editorial article layout: readable body with conversion and latest-news rail */
.article-page .article-hero {
  padding: 52px 0 44px;
  border-bottom: 1px solid #dbe6f1;
  background:
    linear-gradient(110deg, rgba(245, 250, 255, 0.98) 0 56%, rgba(229, 242, 255, 0.78)),
    url("top-tech-background.png") center / cover no-repeat;
}

.article-page .article-hero-inner {
  max-width: 1160px;
}

.article-page .article-breadcrumb {
  margin-bottom: 30px;
}

.article-page .article-hero h1 {
  max-width: 900px;
  margin: 10px 0 16px;
  font-size: 28px;
  line-height: 1.1;
}

.article-page .article-deck {
  max-width: 820px;
  font-size: 17px;
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(290px, 340px);
  gap: 64px;
  align-items: start;
  justify-content: center;
  padding-top: 58px;
  padding-bottom: 74px;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: grid;
  gap: 22px;
}

.article-lead-card,
.article-latest-card {
  border: 1px solid #d4e1ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.07);
}

.article-lead-card {
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(235, 245, 255, 0.96), rgba(255, 255, 255, 0.98) 58%),
    #fff;
}

.article-lead-card h2,
.article-sidebar-heading h2 {
  margin: 7px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.article-lead-card > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: #607289;
  font-size: 14px;
  line-height: 1.6;
}

.article-lead-form {
  display: grid;
  gap: 13px;
}

.article-lead-form label {
  display: grid;
  gap: 6px;
  color: #243a52;
  font-size: 12px;
  font-weight: 800;
}

.article-lead-form input {
  box-sizing: border-box;
  width: 100%;
  height: 43px;
  padding: 0 12px;
  border: 1px solid #c9d9e9;
  border-radius: 5px;
  color: #102033;
  background: rgba(255, 255, 255, 0.95);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-lead-form input:focus {
  border-color: #1463ff;
  box-shadow: 0 0 0 3px rgba(20, 99, 255, 0.1);
}

.article-lead-form .btn {
  width: 100%;
  margin-top: 3px;
}

.article-latest-card {
  overflow: hidden;
}

.article-sidebar-heading {
  padding: 23px 24px 14px;
  border-bottom: 1px solid #dbe6f1;
}

.article-sidebar-heading h2 {
  margin-bottom: 0;
}

.article-latest-card > a:not(.article-latest-more) {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  padding: 16px 24px;
  border-bottom: 1px solid #e2ebf4;
  color: #102033;
  transition: background 0.2s ease;
}

.article-latest-card > a:not(.article-latest-more):hover {
  background: #f5f9fe;
}

.article-latest-card a span {
  grid-column: 1;
  color: #1463ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-latest-card a strong {
  grid-column: 1;
  font-size: 14px;
  line-height: 1.42;
}

.article-latest-card a time {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  color: #8291a3;
  font-size: 11px;
}

.article-latest-more {
  display: block;
  padding: 16px 24px 18px;
  color: #1463ff;
  font-size: 12px;
  font-weight: 850;
}

.article-sidebar .article-share {
  margin-top: 0;
  padding: 0 2px;
}

@media (max-width: 980px) {
  .article-detail-layout {
    grid-template-columns: minmax(0, 760px);
    gap: 44px;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .article-sidebar .article-share {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .article-page .article-hero {
    padding: 38px 0 32px;
  }

  .article-page .article-hero h1 {
    font-size: 30px;
  }

  .article-detail-layout {
    gap: 36px;
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-lead-card {
    padding: 22px 20px;
  }
}

/* Consistent text-only sections used where no editorial image is available */
.text-card-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

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

.text-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.resource-result-grid .text-only-card {
  min-height: 330px;
  padding: 34px 26px;
}

.resource-result-grid .text-only-card[hidden] {
  display: none;
}

.text-only-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 38px;
  border: 1px solid #d6e2ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.06);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.text-only-card:hover {
  border-color: #b8cef0;
  box-shadow: 0 22px 46px rgba(16, 32, 51, 0.1);
  transform: translateY(-4px);
}

.text-only-card.wide {
  width: min(900px, 100%);
  min-height: 300px;
  margin-inline: auto;
}

.text-only-card h2,
.text-only-card h3 {
  max-width: 620px;
  margin: 10px auto 15px;
}

.text-only-card > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 22px;
  color: #607289;
  font-size: 16px;
  line-height: 1.7;
}

.text-only-card .badge-list {
  justify-content: center;
  margin-top: 0;
}

.text-only-card .btn,
.text-only-card .link {
  margin-top: auto;
}

.text-only-card .link {
  color: #1463ff;
  font-weight: 850;
}

.text-only-section .section-head {
  justify-items: center;
  text-align: center;
}

.text-only-section .section-head > div,
.text-only-section .section-head > p {
  max-width: 760px;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .text-card-grid.two,
  .text-card-grid.three,
  .resource-result-grid {
    grid-template-columns: 1fr;
  }

  .text-only-card {
    min-height: 0;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .resource-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .text-only-card {
    padding: 32px 22px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

body::selection {
  color: var(--white);
  background: var(--blue);
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
  background: #eff8ff;
  border-bottom-color: rgba(198, 215, 232, 0.9);
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.08);
  backdrop-filter: none;
}

.site-header:has(.nav-item:hover),
.site-header:has(.nav-item:focus-within),
.site-header.is-dropdown-open,
.site-header.is-open {
  background: #eff8ff;
  border-bottom-color: rgba(198, 215, 232, 0.9);
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.08);
  backdrop-filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #32445a;
  font-size: 15px;
  font-weight: 650;
}

.nav-item {
  position: relative;
}

.nav-links a {
  padding: 26px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
}

.dropdown {
  position: absolute;
  top: 58px;
  left: -22px;
  min-width: 310px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.dropdown a:hover {
  background: var(--soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(20, 99, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 99, 255, 0.22);
}

.btn:active {
  transform: scale(0.98);
}

.btn.secondary {
  color: var(--blue);
  background: var(--white);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  min-height: calc(560px + var(--nav-height));
  margin-top: calc(-1 * var(--nav-height));
  padding: calc(68px + var(--nav-height)) 0 76px;
  background: var(--top-background);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 28px;
}

h2 {
  font-size: clamp(25px, 3vw, 36px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.hero-media {
  position: relative;
  min-height: 430px;
}

.hero-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  animation: floatVisual 7s ease-in-out infinite;
}

.data-panel {
  position: absolute;
  right: 28px;
  bottom: -28px;
  width: min(360px, 80%);
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.mini-stat {
  padding: 12px;
  border-radius: 6px;
  background: var(--soft);
}

.mini-stat strong,
.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.mini-stat span,
.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 76px 0;
}

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

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

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

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

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

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

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(20, 99, 255, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.2s ease;
  content: "";
}

.card:hover {
  border-color: rgba(20, 99, 255, 0.28);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.12);
  transform: translateY(-4px);
}

.card:hover::after {
  opacity: 1;
}

.card.highlight {
  border-color: rgba(20, 99, 255, 0.36);
  box-shadow: 0 18px 44px rgba(20, 99, 255, 0.12);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--blue);
  border-radius: 8px;
  background: #eaf2ff;
  font-weight: 900;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.card:hover .icon {
  color: var(--white);
  background: var(--blue);
  transform: scale(1.08);
}

.card p,
.copy p,
.industry-hero p {
  color: var(--muted);
}

.link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 850;
}

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

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

.bento-card {
  min-height: 260px;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.tall {
  grid-row: span 2;
}

.visual-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.card-visual {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20, 99, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 99, 255, 0.08) 1px, transparent 1px),
    #f8fbff;
  background-size: 28px 28px;
}

.card-visual::before,
.card-visual::after {
  position: absolute;
  content: "";
}

.card-visual::before {
  left: 22px;
  right: 22px;
  bottom: 32px;
  height: 78px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 99, 255, 0.38), rgba(20, 99, 255, 0.08));
  clip-path: polygon(0 72%, 18% 42%, 36% 58%, 52% 20%, 72% 36%, 100% 8%, 100% 100%, 0 100%);
}

.card-visual::after {
  width: 90px;
  height: 90px;
  right: 24px;
  top: 24px;
  border: 16px solid rgba(0, 166, 166, 0.18);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spinSlow 12s linear infinite;
}

.card-visual.route::before {
  height: 4px;
  top: 50%;
  bottom: auto;
  background: var(--blue);
  clip-path: none;
  transform: rotate(-12deg);
}

.card-visual.route::after {
  width: 12px;
  height: 12px;
  top: calc(50% - 6px);
  left: 32px;
  right: auto;
  border: 0;
  background: var(--teal);
  box-shadow: 80px -28px 0 var(--blue), 170px 18px 0 var(--green), 255px -12px 0 var(--blue-dark);
  animation: pulseNode 2s ease-in-out infinite;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 16px;
  min-height: 320px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.08);
}

.preview-sidebar,
.preview-main,
.preview-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.preview-sidebar {
  padding: 14px;
}

.preview-line {
  height: 10px;
  margin: 12px 0;
  border-radius: 999px;
  background: #d9e5f3;
}

.preview-line.short {
  width: 62%;
}

.preview-main {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 14px;
}

.preview-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-panel {
  min-height: 68px;
  padding: 12px;
}

.preview-chart {
  position: relative;
  min-height: 150px;
  overflow: hidden;
}

.preview-chart::before {
  position: absolute;
  inset: 26px 16px 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 99, 255, 0.32), rgba(20, 99, 255, 0.08));
  clip-path: polygon(0 74%, 12% 58%, 24% 66%, 38% 40%, 52% 50%, 66% 24%, 82% 34%, 100% 12%, 100% 100%, 0 100%);
  content: "";
}

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
}

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-item strong {
  display: block;
  margin-bottom: 4px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #25435f;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.tab-button {
  min-height: 42px;
  padding: 0 14px;
  color: #33475f;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s ease;
}

.tab-button:hover,
.tab-button.is-active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.24s ease both;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  padding: 22px 22px 22px 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline-item::before {
  position: absolute;
  left: 22px;
  top: 26px;
  width: 14px;
  height: 14px;
  border: 4px solid #dbe8ff;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.comparison tr:hover td {
  background: #f8fbff;
}

.comparison th {
  color: #30445e;
  background: var(--soft);
}

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

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #31445d;
  font-size: 13px;
  font-weight: 800;
}

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

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(20, 99, 255, 0.22);
  border-color: var(--blue);
}

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

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

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

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

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseNode {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.35);
  }
}

.metric {
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #123b7a, #106b9d);
  border-radius: 8px;
}

.metric strong {
  font-size: 34px;
}

.metric span {
  color: rgba(255, 255, 255, 0.82);
}

.country-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.country-board ul,
.check-list,
.plain-list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.country-board li,
.plain-list li,
.check-list li {
  margin: 10px 0;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
  content: "✓";
}

.band {
  padding: 54px 0;
  color: var(--white);
  background: linear-gradient(135deg, #0e2d59, #115c9f);
}

.band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(560px + var(--nav-height));
  margin-top: calc(-1 * var(--nav-height));
  padding: calc(58px + var(--nav-height)) 0 68px;
  background: var(--top-background);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero .container,
.industry-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.industry-hero h1 {
  max-width: 620px;
}

.page-hero .lead {
  max-width: 560px;
}

.page-hero::after,
.industry-hero::after {
  position: absolute;
  right: max(28px, calc((100vw - 1160px) / 2));
  top: calc(var(--nav-height) + 58px);
  width: clamp(300px, 31vw, 470px);
  height: 292px;
  border: 1px solid rgba(207, 217, 230, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 26, 48, 0.04), rgba(10, 26, 48, 0.2)),
    url("global-trade-intelligence-hero.png") center / cover;
  box-shadow: 0 22px 58px rgba(16, 32, 51, 0.16);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floatVisual 7s ease-in-out infinite;
  content: "";
}

.page-hero::before,
.industry-hero::before {
  position: absolute;
  z-index: 1;
  right: max(48px, calc((100vw - 1160px) / 2 + 38px));
  top: calc(var(--nav-height) + 262px);
  width: 246px;
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(220, 229, 239, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.12);
  color: var(--ink);
  font-weight: 850;
  content: "200+ markets  •  AI search  •  live alerts";
}

.page-hero:hover::after,
.industry-hero:hover::after {
  box-shadow: 0 28px 70px rgba(16, 32, 51, 0.2);
  transform: translateY(-4px);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 72px;
}

.step::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
  counter-increment: step;
  content: counter(step);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0;
}

.price strong {
  font-size: 34px;
}

.faq details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.industry-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(560px + var(--nav-height));
  margin-top: calc(-1 * var(--nav-height));
  padding: calc(58px + var(--nav-height)) 0 68px;
  background: var(--top-background);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}

.contact-box {
  padding: 32px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  padding: 54px 0 28px;
  color: #cbd8ea;
  background: #0b1728;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 30px;
}

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

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
}

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

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #cbd8ea;
}

.site-footer .footer-brand {
  margin-top: 0;
}

.footer-contact {
  margin-top: 18px;
}

.footer-contact a {
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: rgba(203, 216, 234, 0.45);
  text-underline-offset: 3px;
}

.footer-contact a:hover {
  color: var(--white);
  text-decoration-color: currentColor;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb0c8;
  font-size: 14px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .nav-actions {
    display: flex;
  }

  .site-header.is-open .nav {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .site-header.is-open .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .dropdown {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero-grid,
  .split,
  .feature-row,
  .grid.two,
  .grid.three,
  .grid.four,
  .metrics,
  .bento-grid,
  .country-board,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.wide,
  .bento-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

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

  .section-head,
  .band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-media img {
    height: 340px;
  }

  .data-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .page-hero::before,
  .page-hero::after,
  .industry-hero::before,
  .industry-hero::after {
    display: none;
  }

  .page-hero h1,
  .industry-hero h1,
  .page-hero .lead,
  .industry-hero .lead {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero,
  .page-hero,
  .industry-hero {
    padding: calc(48px + var(--nav-height)) 0 48px;
  }

  .section {
    padding: 48px 0;
  }

  .hero,
  .page-hero,
  .industry-hero {
    min-height: calc(390px + var(--nav-height));
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  .lead {
    font-size: 16px;
  }

  .card {
    padding: 22px;
  }
}

/* First-screen redesign */
.hero,
.page-hero,
.industry-hero {
  display: flex;
  align-items: center;
  min-height: calc(620px + var(--nav-height));
  padding: calc(52px + var(--nav-height)) 0 72px;
}

.hero {
  position: relative;
}

.hero::after,
.page-hero::after,
.industry-hero::after {
  content: "";
}

.hero .hero-grid {
  position: relative;
  width: min(1280px, calc(100% - 56px));
  min-height: 500px;
  padding: 54px 60px;
  border: 1px solid rgba(188, 210, 232, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 90px rgba(16, 32, 51, 0.12);
}

.hero .hero-grid::before,
.page-hero .container::before,
.industry-hero .container::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  pointer-events: none;
  content: "";
}

.hero .hero-grid::after {
  position: absolute;
  left: 58px;
  bottom: 30px;
  width: 340px;
  height: 56px;
  border: 1px solid rgba(201, 215, 230, 0.96);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(231, 248, 241, 0.95) 0 126px, transparent 126px),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(16, 32, 51, 0.08);
  content: "Verified records   Real-time alerts";
  display: flex;
  align-items: center;
  padding-left: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.hero-grid > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 530px;
  padding-top: 0;
  padding-bottom: 58px;
}

.hero .eyebrow,
.page-hero .eyebrow,
.industry-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(20, 99, 255, 0.18);
  border-radius: 8px;
  background: rgba(234, 242, 255, 0.72);
  letter-spacing: 0.1em;
}

.hero h1,
.page-hero h1,
.industry-hero h1 {
  max-width: 620px;
  font-size: 28px;
}

.hero .lead,
.page-hero .lead,
.industry-hero .lead {
  max-width: 560px;
  font-size: 18px;
}

.hero-actions {
  margin-top: 28px;
}

.hero .insight-toolbar {
  width: min(528px, 100%);
  margin-top: 0;
  padding: 12px 14px;
}

.hero-media {
  min-height: 450px;
}

.hero-media::before {
  position: absolute;
  inset: 42px -20px auto auto;
  width: 76%;
  height: 74%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 99, 255, 0.12), rgba(0, 166, 166, 0.09));
  filter: blur(26px);
  content: "";
}

.hero-media img {
  position: relative;
  height: 430px;
  border: 1px solid rgba(201, 215, 230, 0.72);
}

.data-panel {
  right: 30px;
  bottom: 2px;
  width: min(360px, 82%);
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.page-hero .container,
.industry-hero .container {
  position: relative;
  width: min(1280px, calc(100% - 56px));
  min-height: 500px;
  padding: 58px 56% 58px 60px;
  border: 1px solid rgba(188, 210, 232, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 90px rgba(16, 32, 51, 0.12);
}

.page-hero .container::after,
.industry-hero .container::after {
  position: absolute;
  right: 52px;
  bottom: 48px;
  width: 340px;
  min-height: 104px;
  padding: 22px;
  border: 1px solid rgba(201, 215, 230, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.12);
  color: var(--ink);
  font-weight: 850;
  line-height: 1.5;
  content: "AI search workspace \A 200+ markets  •  60B+ records";
  white-space: pre-line;
}

.page-hero::after,
.industry-hero::after {
  right: max(52px, calc((100vw - 1280px) / 2 + 54px));
  top: calc(var(--nav-height) + 128px);
  width: clamp(380px, 34vw, 540px);
  height: 308px;
  border-color: rgba(201, 215, 230, 0.76);
}

.page-hero::before,
.industry-hero::before {
  right: max(62px, calc((100vw - 1280px) / 2 + 68px));
  top: calc(var(--nav-height) + 398px);
  width: 286px;
  min-height: 64px;
  padding: 16px 18px;
  content: "Search  •  Analyze  •  Monitor";
}

.page-hero:hover::after,
.industry-hero:hover::after,
.hero-media:hover img {
  transform: translateY(-5px);
}

@media (max-width: 1100px) {
  .hero .hero-grid,
  .page-hero .container,
  .industry-hero .container {
    width: min(100% - 40px, 1160px);
    padding: 44px;
  }

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

  .hero-grid > div:first-child {
    padding-bottom: 0;
  }

  .hero .hero-grid::after {
    position: static;
    margin-top: 16px;
  }

  .page-hero::before,
  .page-hero::after,
  .industry-hero::before,
  .industry-hero::after,
  .page-hero .container::after,
  .industry-hero .container::after {
    display: none;
  }

  .page-hero .container,
  .industry-hero .container {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .hero,
  .page-hero,
  .industry-hero {
    min-height: calc(520px + var(--nav-height));
    padding: calc(34px + var(--nav-height)) 0 42px;
  }

  .hero .hero-grid,
  .page-hero .container,
  .industry-hero .container {
    width: min(100% - 28px, 1160px);
    min-height: auto;
    padding: 28px;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 0;
    height: 300px;
  }

  .hero .hero-grid::after {
    width: 100%;
    height: auto;
    min-height: 54px;
  }
}

/* UI rebuild: Corporate Clean + data-product polish */
:root {
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-tint: #f6f9fd;
  --line-strong: #c9d7e6;
  --ring: rgba(20, 99, 255, 0.28);
  --shadow-soft: 0 10px 30px rgba(16, 32, 51, 0.08);
  --shadow-hover: 0 16px 42px rgba(16, 32, 51, 0.12);
}

body {
  text-rendering: optimizeLegibility;
}

a,
button,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.site-header.is-scrolled,
.site-header:has(.nav-item:hover),
.site-header:has(.nav-item:focus-within),
.site-header.is-dropdown-open,
.site-header.is-open {
  background: rgba(239, 248, 255, 0.96);
}

.dropdown {
  padding: 10px;
}

.dropdown a {
  position: relative;
  font-size: 14px;
}

.dropdown a::after,
.link::after {
  margin-left: 8px;
  content: "→";
  transition: transform 0.2s ease;
}

.dropdown a:hover::after,
.link:hover::after {
  transform: translateX(3px);
}

.hero,
.page-hero,
.industry-hero {
  isolation: isolate;
}

.hero::before,
.page-hero::before,
.industry-hero::before {
  pointer-events: none;
}

.hero-grid {
  min-height: 520px;
}

.hero-grid > div:first-child,
.page-hero .container,
.industry-hero .container {
  padding-top: 18px;
}

.hero h1,
.page-hero h1,
.industry-hero h1 {
  text-wrap: balance;
}

.hero-media {
  perspective: 1000px;
}

.hero-media img,
.page-hero::after,
.industry-hero::after {
  border-radius: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.hero-media:hover img {
  filter: saturate(1.05);
  transform: translateY(-4px) rotateX(1deg);
}

.data-panel,
.contact-box,
.comparison,
.dashboard-preview,
.process-item,
.timeline-item,
.metric,
.card {
  border-color: rgba(201, 215, 230, 0.92);
}

.section {
  position: relative;
}

.section.soft {
  background:
    linear-gradient(180deg, rgba(246, 249, 253, 0.96), rgba(241, 246, 252, 0.98)),
    radial-gradient(circle at 10% 0%, rgba(20, 99, 255, 0.07), transparent 28%);
}

.section-head {
  align-items: start;
}

.section-head h2 {
  max-width: 760px;
}

.grid.three .card:nth-child(3n + 2),
.grid.four .card:nth-child(4n + 2) {
  transform-origin: center bottom;
}

.card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 1)),
    var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card:active {
  transform: translateY(-1px) scale(0.995);
}

.card h3 + p,
.card h2 + p {
  margin-top: 12px;
}

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

.highlight::before,
.card.highlight::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  content: "";
}

.icon {
  box-shadow: inset 0 0 0 1px rgba(20, 99, 255, 0.08);
}

.badge,
.tab-button,
.filter-chip,
.status-pill {
  user-select: none;
}

.badge {
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.badge:hover {
  border-color: rgba(20, 99, 255, 0.32);
  background: #eef5ff;
  transform: translateY(-1px);
}

.btn {
  gap: 8px;
  min-width: max-content;
}

.btn::after {
  font-weight: 900;
  content: "→";
  transition: transform 0.2s ease;
}

.btn:hover::after {
  transform: translateX(3px);
}

.btn.secondary:hover {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
  background: #f7fbff;
}

.btn.is-loading {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.76);
}

.btn.is-loading::after {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: var(--white);
  border-radius: 50%;
  content: "";
  animation: spinSlow 0.8s linear infinite;
}

.filter-bar,
.insight-toolbar,
.status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(201, 215, 230, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.filter-bar {
  justify-content: space-between;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-search,
.filter-select {
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.filter-search {
  width: min(320px, 100%);
}

.filter-chip {
  min-height: 38px;
  padding: 0 13px;
  color: #31445d;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-1px);
}

.filter-chip.is-loading {
  opacity: 0.78;
}

.status-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 18px;
  padding: 28px;
  text-align: center;
}

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

.status-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue);
  border-radius: 8px;
  background: #eaf2ff;
  font-weight: 900;
}

.loading-row {
  display: grid;
  gap: 10px;
  width: 100%;
}

.skeleton {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce8f6;
}

.skeleton::after {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: shimmer 1.4s ease-in-out infinite;
  content: "";
}

.skeleton.short {
  width: 64%;
}

.state-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.state-card {
  min-height: 150px;
}

.industry-command {
  padding-top: 42px;
  padding-bottom: 42px;
}

.state-card.loading {
  pointer-events: none;
}

.list-card {
  display: grid;
  gap: 14px;
}

.list-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-tint);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.list-row:hover {
  border-color: rgba(20, 99, 255, 0.28);
  background: #fff;
  transform: translateX(3px);
}

.list-row strong {
  display: block;
}

.list-row span {
  color: var(--muted);
  font-size: 13px;
}

.status-pill {
  min-height: 28px;
  padding: 0 9px;
  color: #126149;
  border-radius: 8px;
  background: #e7f8f1;
  font-size: 12px;
  font-weight: 850;
}

.process-item,
.timeline-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.process-item:hover,
.timeline-item:hover {
  border-color: rgba(20, 99, 255, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.dashboard-preview {
  background:
    linear-gradient(180deg, #f8fbff, #eef5fc);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-preview:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.preview-panel {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dashboard-preview:hover .preview-panel {
  border-color: rgba(20, 99, 255, 0.24);
}

.comparison {
  box-shadow: var(--shadow-soft);
}

.comparison th {
  position: sticky;
  top: 0;
  z-index: 1;
}

.faq details {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.04);
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  padding: 18px 20px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  float: right;
  color: var(--blue);
  content: "+";
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: var(--line-strong);
  background: #fbfdff;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(20, 99, 255, 0.12);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #d94a4a;
}

.contact-box {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 45, 89, 0.98), rgba(17, 92, 159, 0.96)),
    url("top-tech-background.png") center / cover;
}

.band::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

@keyframes shimmer {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(260%);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    min-height: auto;
  }

  .filter-bar,
  .insight-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-search {
    width: 100%;
  }

  .state-grid,
  .list-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .filter-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-chip {
    width: 100%;
  }

  .mini-grid,
  .preview-kpis {
    grid-template-columns: 1fr;
  }
}

/* Transparent first-screen layout refresh */
.hero,
.page-hero,
.industry-hero {
  min-height: calc(540px + var(--nav-height));
  padding: calc(44px + var(--nav-height)) 0 54px;
  background:
    linear-gradient(180deg, rgba(235, 247, 255, 0.7) 0%, rgba(248, 252, 255, 0.9) 68%, #ffffff 100%),
    url("top-tech-background.png") center top / cover no-repeat;
}

.hero .hero-grid {
  width: min(1160px, calc(100% - 40px));
  min-height: 430px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero .hero-grid::before,
.hero .hero-grid::after,
.page-hero .container::before,
.page-hero .container::after,
.industry-hero .container::before,
.industry-hero .container::after {
  display: none;
}

.hero-grid > div:first-child {
  max-width: 560px;
  padding-bottom: 0;
}

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

.hero .lead,
.page-hero .lead,
.industry-hero .lead {
  max-width: 610px;
}

.hero .insight-toolbar {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

.hero-media {
  min-height: 390px;
}

.hero-media::before {
  inset: 54px -18px 18px 22px;
  width: auto;
  height: auto;
  filter: blur(34px);
}

.hero-media img {
  height: 390px;
  border-radius: 8px;
}

.data-panel {
  right: 24px;
  bottom: -18px;
}

.page-hero .container,
.industry-hero .container {
  width: min(1160px, calc(100% - 40px));
  min-height: 410px;
  padding: 28px 48% 28px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-hero::after,
.industry-hero::after {
  display: block;
  right: max(28px, calc((100vw - 1160px) / 2));
  top: calc(var(--nav-height) + 92px);
  width: clamp(360px, 34vw, 520px);
  height: 300px;
  border-radius: 8px;
  opacity: 0.95;
}

.page-hero::before,
.industry-hero::before {
  display: block;
  right: max(46px, calc((100vw - 1160px) / 2 + 44px));
  top: calc(var(--nav-height) + 326px);
  width: 280px;
  min-height: 58px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  content: "200+ markets  •  60B+ records";
}

.page-hero .badge-list,
.industry-hero .badge-list {
  margin-top: 22px;
}

@media (max-width: 1100px) {
  .hero .hero-grid,
  .page-hero .container,
  .industry-hero .container {
    width: min(100% - 40px, 1160px);
    padding: 0;
  }

  .hero-grid {
    gap: 30px;
  }

  .page-hero .container,
  .industry-hero .container {
    min-height: 330px;
    padding-right: 0;
  }

  .page-hero::before,
  .page-hero::after,
  .industry-hero::before,
  .industry-hero::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero,
  .page-hero,
  .industry-hero {
    min-height: auto;
    padding: calc(32px + var(--nav-height)) 0 42px;
  }

  .hero .hero-grid,
  .page-hero .container,
  .industry-hero .container {
    width: min(100% - 28px, 1160px);
    padding: 0;
  }

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

  .hero-media,
  .hero-media img {
    height: 280px;
  }
}

/* Reference-style home hero */
.hero {
  min-height: calc(500px + var(--nav-height));
  padding: calc(28px + var(--nav-height)) 0 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 31%, rgba(255, 255, 255, 0.42) 55%, rgba(255, 255, 255, 0.05) 100%),
    url("hero-trade-dashboard-light.png") center center / cover no-repeat;
}

.hero .hero-grid {
  width: min(1260px, calc(100% - 64px));
  min-height: 420px;
  grid-template-columns: minmax(420px, 520px) 1fr;
  gap: 20px;
}

.hero-grid > div:first-child {
  max-width: 520px;
  align-self: center;
}

.hero .eyebrow {
  padding: 0;
  border: 0;
  background: transparent;
}

.hero h1 {
  max-width: 560px;
  font-size: 28px;
  line-height: 1.05;
}

.hero .lead {
  max-width: 520px;
  margin-top: 18px;
  font-size: 16px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  color: #31445d;
}

.hero-stat {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 8px;
  align-items: center;
  min-width: 108px;
}

.hero-stat::before {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--blue);
  border: 1px solid rgba(20, 99, 255, 0.22);
  border-radius: 50%;
  background: #eef5ff;
  font-size: 13px;
  font-weight: 900;
  content: "✓";
}

.hero-stat strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.hero-stat span {
  grid-column: 2;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-media {
  display: none;
}

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

.hero-media img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  object-position: right center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: none;
}

.hero-media:hover img {
  filter: none;
  transform: translateY(-3px);
}

.hero .data-panel {
  display: none;
}

@media (max-width: 1100px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-grid > div:first-child {
    max-width: 680px;
  }

  .hero-media img {
    object-position: center;
  }
}

@media (max-width: 700px) {
  .hero .hero-grid {
    width: min(100% - 28px, 1160px);
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .hero-media,
  .hero-media img {
    display: none;
  }
}

/* Inner page first-screen background refresh */
.page-hero,
.industry-hero {
  min-height: calc(500px + var(--nav-height));
  padding: calc(28px + var(--nav-height)) 0 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.46) 58%, rgba(255, 255, 255, 0.08) 100%),
    url("hero-trade-dashboard-light.png") center center / cover no-repeat;
}

.page-hero .container,
.industry-hero .container {
  width: min(1160px, calc(100% - 40px));
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.page-hero::before,
.page-hero::after,
.industry-hero::before,
.industry-hero::after {
  display: none;
}

.page-hero h1,
.industry-hero h1 {
  max-width: 620px;
  font-size: 28px;
  line-height: 1.05;
}

.page-hero .lead,
.industry-hero .lead {
  max-width: 540px;
  font-size: 17px;
}

.page-hero .eyebrow,
.industry-hero .eyebrow {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
}

@media (max-width: 900px) {
  .page-hero,
  .industry-hero {
    min-height: calc(430px + var(--nav-height));
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 68%, rgba(255, 255, 255, 0.68) 100%),
      url("hero-trade-dashboard-light.png") center center / cover no-repeat;
  }

  .page-hero .container,
  .industry-hero .container {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  .page-hero,
  .industry-hero {
    min-height: auto;
    padding: calc(32px + var(--nav-height)) 0 42px;
  }

  .page-hero .container,
  .industry-hero .container {
    width: min(100% - 28px, 1160px);
    min-height: 300px;
  }

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

/* Lead capture modal */
body.modal-open {
  overflow: hidden;
}

/* Homepage latest articles */
.latest-insights-section {
  overflow: hidden;
  background: #fff;
}

.latest-insights-head {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.latest-insights-head > div:first-child {
  max-width: 680px;
}

.latest-insights-head h2 {
  margin: 8px 0 12px;
  font-size: 30px;
}

.latest-insights-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.latest-insights-actions {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.latest-insights-all {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.article-carousel-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.article-carousel-count {
  display: flex;
  gap: 6px;
  align-items: baseline;
  min-width: 72px;
  color: #91a1b4;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.article-carousel-count strong {
  color: var(--ink);
  font-size: 18px;
}

.article-carousel-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.article-carousel-controls button:hover,
.article-carousel-controls button:focus-visible {
  color: #fff;
  border-color: var(--blue);
  outline: none;
  background: var(--blue);
}

.article-carousel-controls button:disabled {
  cursor: default;
  opacity: 0.4;
}

.latest-articles-viewport {
  outline: none;
}

.latest-articles-viewport:focus-visible {
  border-radius: 10px;
  box-shadow: 0 0 0 4px rgba(20, 99, 255, 0.12);
}

.latest-articles-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.latest-articles-track::-webkit-scrollbar {
  display: none;
}

.latest-article-card {
  display: flex;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d5e1ed;
  border-radius: 8px;
  background: #fff;
  scroll-snap-align: start;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.latest-article-card:hover {
  border-color: #b9cfee;
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.1);
  transform: translateY(-4px);
}

.latest-article-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eaf1f8;
}

.latest-article-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(8, 24, 43, 0.55));
  content: "";
}

.latest-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.latest-article-card:hover .latest-article-media img {
  transform: scale(1.035);
}

.latest-article-media-dashboard img {
  object-position: center top;
}

.latest-article-media > span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.latest-article-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.latest-article-meta {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  color: #71839a;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.latest-article-body h3 {
  margin: 16px 0 12px;
  font-size: 20px;
  line-height: 1.35;
}

.latest-article-body h3 a {
  color: var(--ink);
}

.latest-article-body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.latest-article-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

@media (max-width: 900px) {
  .latest-article-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .latest-insights-head {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .latest-insights-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .latest-article-card {
    flex: 0 0 88%;
  }

  .latest-article-body {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .latest-articles-track {
    scroll-behavior: auto;
  }

  .latest-article-card,
  .latest-article-media img {
    transition: none;
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 22, 39, 0.48);
}

.modal-backdrop[hidden] {
  display: none;
}

.lead-modal {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  width: min(940px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(9, 22, 39, 0.28);
  animation: fadeUp 0.22s ease both;
}

.lead-modal-info {
  position: relative;
  padding: 46px 38px;
  background:
    linear-gradient(180deg, rgba(240, 248, 255, 0.94), rgba(225, 241, 255, 0.9)),
    url("hero-trade-dashboard-light.png") center bottom / cover no-repeat;
}

.lead-modal-info::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.74));
  content: "";
}

.lead-modal-info > * {
  position: relative;
  z-index: 1;
}

.modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--blue);
  border: 1px solid rgba(20, 99, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
}

.lead-modal-info h2 {
  max-width: 360px;
  margin-top: 28px;
  font-size: clamp(30px, 3vw, 40px);
}

.lead-modal-info p {
  max-width: 390px;
  color: var(--muted);
}

.modal-benefits {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.modal-benefits > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.modal-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.modal-benefits strong {
  display: block;
}

.modal-benefits small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.lead-modal-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 34px 38px;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  color: #8ba0b7;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--ink);
  background: var(--soft);
}

.modal-form-head {
  padding-right: 42px;
}

.modal-form-head h3 {
  margin-top: 10px;
  font-size: 26px;
}

.lead-modal-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.lead-modal-form label span::first-letter {
  color: var(--blue);
}

.lead-modal-form input,
.lead-modal-form select,
.lead-modal-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-modal-form textarea {
  min-height: 92px;
  resize: vertical;
}

.lead-modal-form input:focus,
.lead-modal-form select:focus,
.lead-modal-form textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 99, 255, 0.12);
}

.modal-submit {
  width: 100%;
  margin-top: 8px;
}

.modal-security,
.modal-success {
  margin: 0;
  text-align: center;
  color: #8ba0b7;
  font-size: 13px;
}

.modal-success {
  color: var(--green);
  font-weight: 850;
}

.lead-result-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lead-result-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.lead-result-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 22, 39, 0.54);
}

.lead-result-content {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  padding: 32px 28px 28px;
  text-align: center;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(9, 22, 39, 0.24);
  transform: translateY(12px);
  transition: transform 0.22s ease;
}

.lead-result-modal.show .lead-result-content {
  transform: translateY(0);
}

.lead-result-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(21, 163, 106, 0.1);
}

.lead-result-icon.error {
  background: rgba(214, 69, 69, 0.1);
}

.lead-result-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-result-icon.error svg {
  stroke: #d64545;
}

.lead-result-content h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.lead-result-content p {
  margin: 0;
  color: var(--muted);
}

.lead-result-btn {
  width: 100%;
  margin-top: 22px;
}

.modal-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

@media (max-width: 780px) {
  .modal-backdrop {
    align-items: start;
    padding: 14px;
    overflow-y: auto;
  }

  .lead-modal {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .lead-modal-info {
    padding: 30px 24px;
  }

  .lead-modal-form {
    padding: 28px 24px;
  }
}

/* Global title + icon-card section system */
.section {
  padding: 78px 0;
}

.section.soft {
  background:
    linear-gradient(180deg, rgba(247, 250, 254, 0.98), rgba(241, 246, 253, 0.98));
}

.section-head {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head > div {
  display: grid;
  justify-items: center;
}

.section-head h2,
.section > .container > .copy > h2,
.feature-row h2,
.split h2,
.faq h2,
.contact-box > h2 {
  max-width: 980px;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

.section-head p {
  max-width: 680px;
  margin-top: 14px;
  font-size: 16px;
  text-align: center;
}

.grid.three,
.grid.four,
.country-board {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.bento-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.bento-card.wide,
.bento-card.tall {
  grid-column: auto;
  grid-row: auto;
}

.card,
.process-item,
.timeline-item,
.contact-box,
.comparison,
.dashboard-preview,
.status-card {
  border-color: rgba(222, 230, 241, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.06);
}

.card {
  min-height: 300px;
  padding: 38px;
}

.card h2,
.card h3 {
  margin-top: 8px;
  color: #0e1b33;
  font-size: 24px;
  line-height: 1.12;
}

.card p,
.card li,
.process-item p,
.timeline-item p {
  color: #657386;
  font-size: 16px;
  line-height: 1.65;
}

.card:hover,
.process-item:hover,
.timeline-item:hover {
  border-color: rgba(20, 99, 255, 0.22);
  box-shadow: 0 20px 46px rgba(16, 32, 51, 0.1);
  transform: translateY(-3px);
}

.card > .icon:first-child {
  float: left;
  margin: 0 20px 14px 0;
}

.card > .icon:first-child + h3 {
  min-height: 62px;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.card > .icon:first-child + h3 + p {
  clear: both;
  margin-top: 18px;
}

.icon,
.status-icon,
.modal-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  color: #3c49ff;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.icon svg,
.status-icon svg,
.modal-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon svg + svg,
.status-icon svg + svg,
.modal-icon svg + svg {
  display: none;
}

.lucide-ready .icon svg:not(.lucide),
.lucide-ready .status-icon svg:not(.lucide),
.lucide-ready .modal-icon svg:not(.lucide) {
  display: none;
}

.lucide-ready .icon svg.lucide,
.lucide-ready .status-icon svg.lucide,
.lucide-ready .modal-icon svg.lucide {
  display: block;
}

.card:hover .icon,
.card:hover .status-icon,
.process-item:hover .icon {
  color: var(--blue);
  background: transparent;
  transform: translateY(-2px) scale(1.03);
}

.visual-card {
  gap: 22px;
}

.card-visual {
  min-height: 150px;
  border-radius: 8px;
}

.split,
.feature-row {
  align-items: stretch;
  gap: 28px;
}

.split > .copy,
.feature-row > div:not(.dashboard-preview):not(.card),
.copy {
  display: grid;
  align-content: center;
  padding: 38px;
  border: 1px solid rgba(222, 230, 241, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.06);
}

.split > .copy .eyebrow,
.feature-row .eyebrow {
  justify-self: center;
}

.split > .copy p,
.feature-row > div:not(.dashboard-preview):not(.card) p {
  text-align: center;
}

.badge-list {
  justify-content: center;
}

.process-list {
  margin-top: 28px;
}

.process-item,
.list-row {
  border-radius: 8px;
}

.filter-bar {
  margin-bottom: 26px;
}

@media (max-width: 900px) {
  .section {
    padding: 58px 0;
  }

  .section-head h2,
  .section > .container > .copy > h2,
  .feature-row h2,
  .split h2,
  .faq h2,
  .contact-box > h2 {
    font-size: 32px;
  }

  .card {
    min-height: auto;
    padding: 30px;
  }

  .split > .copy,
  .feature-row > div:not(.dashboard-preview):not(.card),
  .copy {
    padding: 30px;
  }
}

/* Uploaded image driven content */
.image-story {
  padding: 70px 0;
  background: #f7faff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "main wide"
    "main small-a"
    "small-b small-a";
  gap: 22px;
}

.card-visual {
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
  background:
    linear-gradient(135deg, rgba(236, 246, 255, 0.96), rgba(255, 255, 255, 1)),
    radial-gradient(circle at 78% 24%, rgba(20, 99, 255, 0.12), transparent 34%);
}

.card-visual::before,
.card-visual::after {
  display: none;
}

.visual-card:nth-child(2n) .card-visual {
  background-image: none;
}

.visual-card:nth-child(3n) .card-visual {
  background-image: none;
}

.card-visual.route {
  background-image: none;
}

.dashboard-preview {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.96)),
    radial-gradient(circle at 74% 24%, rgba(20, 99, 255, 0.12), transparent 32%);
}

.dashboard-preview::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.2));
  content: "";
}

.dashboard-preview > * {
  display: none;
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "wide"
      "small-a"
      "small-b";
  }
}

/* Homepage platform section refinement */
.platform-section {
  overflow: hidden;
  padding: 76px 0;
  background:
    linear-gradient(135deg, rgba(247, 251, 255, 0.98), rgba(239, 246, 255, 0.96)),
    radial-gradient(circle at 84% 12%, rgba(20, 99, 255, 0.1), transparent 30%);
}

.platform-layout {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 34px;
}

.feature-row > .platform-copy {
  display: grid;
  align-content: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.platform-copy .eyebrow {
  justify-self: start;
  margin-bottom: 14px;
}

.platform-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.08;
  text-align: left;
}

.feature-row > .platform-copy p,
.platform-copy .lead {
  max-width: 610px;
  margin-top: 18px;
  color: #52667d;
  text-align: left;
}

.platform-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.platform-metrics span {
  display: grid;
  gap: 3px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 215, 230, 0.92);
  border-radius: 8px;
  color: #5f6f83;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.05);
}

.platform-metrics strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.platform-section .process-list {
  gap: 12px;
  margin-top: 18px;
}

.platform-section .process-item {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: auto;
  padding: 18px 20px;
  border-color: rgba(201, 215, 230, 0.92);
  background: rgba(255, 255, 255, 0.92);
}

.platform-section .process-item .icon {
  width: 54px;
  height: 54px;
  color: var(--blue);
  background: rgba(20, 99, 255, 0.08);
}

.platform-section .process-item strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.platform-section .process-item p {
  margin: 0;
  color: #607086;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}

.platform-visual {
  position: relative;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(201, 215, 230, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  box-shadow: 0 24px 58px rgba(16, 32, 51, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.platform-visual:hover {
  border-color: rgba(20, 99, 255, 0.24);
  box-shadow: 0 30px 70px rgba(16, 32, 51, 0.13);
  transform: translateY(-4px);
}

.platform-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1448 / 1012;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.platform-visual figcaption {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 5px;
  width: min(360px, calc(100% - 68px));
  padding: 16px 18px;
  border: 1px solid rgba(201, 215, 230, 0.92);
  border-radius: 8px;
  color: #52667d;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.12);
  backdrop-filter: blur(10px);
}

.platform-visual figcaption span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-visual figcaption strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .platform-layout {
    grid-template-columns: 1fr;
  }

  .platform-copy h2,
  .platform-copy .lead {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .platform-section {
    padding: 56px 0;
  }

  .platform-copy h2 {
    font-size: 32px;
  }

  .platform-metrics {
    grid-template-columns: 1fr;
  }

  .platform-section .process-item {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px;
  }

  .platform-section .process-item .icon {
    width: 46px;
    height: 46px;
  }

  .platform-visual {
    padding: 10px;
  }

  .platform-visual figcaption {
    position: static;
    width: auto;
    margin-top: 10px;
  }
}

/* Alternating image/text showcase layout */
.image-showcase {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.image-showcase .section-head {
  max-width: 920px;
  margin-bottom: 34px;
}

.image-showcase .showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: none;
  gap: 26px;
}

.image-showcase .showcase-card,
.image-showcase .showcase-card-main,
.image-showcase .showcase-card-wide,
.image-showcase .showcase-grid .showcase-card:nth-child(3),
.image-showcase .showcase-grid .showcase-card:nth-child(4) {
  grid-area: auto;
}

.image-showcase .showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
}

.image-showcase .showcase-card:nth-child(even) {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.08fr);
}

.image-showcase .showcase-card:nth-child(even) img {
  order: 2;
}

.image-showcase .showcase-card:nth-child(even) figcaption {
  order: 1;
}

.image-showcase .showcase-card img,
.image-showcase .showcase-card-main img,
.image-showcase .showcase-card-wide img,
.image-showcase .showcase-grid .showcase-card:nth-child(3) img,
.image-showcase .showcase-grid .showcase-card:nth-child(4) img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 460px;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(240, 247, 255, 0.94), rgba(255, 255, 255, 1));
}

.image-showcase .showcase-card-main img {
  min-height: 420px;
}

.image-showcase .showcase-card figcaption {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 100%;
  padding: clamp(28px, 4vw, 54px);
  border-top: 0;
  border-left: 1px solid rgba(222, 230, 241, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
}

.image-showcase .showcase-card:nth-child(even) figcaption {
  border-right: 1px solid rgba(222, 230, 241, 0.9);
  border-left: 0;
}

.image-showcase .showcase-card figcaption::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 99, 255, 0.16);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(20, 99, 255, 0.08);
  font-weight: 900;
  content: "0" counter(showcase);
}

.image-showcase .showcase-grid {
  counter-reset: showcase;
}

.image-showcase .showcase-card {
  counter-increment: showcase;
}

.image-showcase .showcase-card figcaption strong {
  max-width: 420px;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
}

.image-showcase .showcase-card figcaption span {
  max-width: 460px;
  color: #5d6f86;
  font-size: 17px;
  line-height: 1.7;
}

.image-showcase .showcase-card:hover img {
  transform: scale(1.015);
}

.image-showcase .showcase-card img {
  transition: transform 0.28s ease;
}

@media (max-width: 900px) {
  .image-showcase .showcase-card,
  .image-showcase .showcase-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .image-showcase .showcase-card:nth-child(even) img,
  .image-showcase .showcase-card:nth-child(even) figcaption {
    order: initial;
  }

  .image-showcase .showcase-card img,
  .image-showcase .showcase-card-main img {
    min-height: 220px;
    max-height: none;
    padding: 14px;
  }

  .image-showcase .showcase-card figcaption,
  .image-showcase .showcase-card:nth-child(even) figcaption {
    min-height: 0;
    border-top: 1px solid rgba(222, 230, 241, 0.9);
    border-right: 0;
    border-left: 0;
  }
}

/* Homepage hero product image slide-in */
.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 32%, rgba(255, 255, 255, 0.56) 58%, rgba(235, 246, 255, 0.18) 100%),
    url("hero-trade-dashboard-light.png") center center / cover no-repeat;
}

.hero .hero-grid {
  grid-template-columns: minmax(410px, 520px) minmax(0, 1fr);
  gap: 34px;
}

.hero-photo-slide {
  position: relative;
  align-self: center;
  min-height: 420px;
  overflow: visible;
  perspective: 1000px;
}

.hero-photo-slide img {
  position: absolute;
  top: 50%;
  right: -12px;
  width: min(760px, 58vw);
  max-width: none;
  height: auto;
  min-height: 0;
  border: 0;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: 0 28px 76px rgba(32, 86, 145, 0.12);
  opacity: 0;
  transform: translate(58vw, -50%) scale(0.98);
  animation: heroDashboardSlideIn 1.05s cubic-bezier(0.18, 0.82, 0.24, 1) 0.18s forwards;
  transition: transform 0.28s ease, filter 0.28s ease, box-shadow 0.28s ease;
}

.hero-photo-slide:hover img {
  filter: saturate(1.04) contrast(1.02);
  box-shadow: 0 34px 90px rgba(32, 86, 145, 0.16);
  transform: translate(0, calc(-50% - 6px)) scale(1.015);
}

.hero-photo-slide .data-panel {
  display: none;
}

@keyframes heroDashboardSlideIn {
  0% {
    opacity: 0;
    transform: translate(58vw, -50%) scale(0.98);
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-slide img {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
    animation: none;
  }
}

@media (max-width: 1100px) {
  .hero-photo-slide {
    min-height: 360px;
  }

  .hero-photo-slide img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: translateX(42vw);
    animation: heroDashboardSlideInMobile 0.9s cubic-bezier(0.18, 0.82, 0.24, 1) 0.15s forwards;
  }

  .hero-photo-slide:hover img {
    transform: translateY(-4px) scale(1.01);
  }
}

@keyframes heroDashboardSlideInMobile {
  0% {
    opacity: 0;
    transform: translateX(42vw);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 700px) {
  .hero-photo-slide,
  .hero-photo-slide img {
    display: block;
  }

  .hero-photo-slide {
    min-height: 0;
  }
}

/* Single-use page image narrative modules */
.visual-narrative {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.visual-narrative.soft {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(241, 247, 255, 0.98));
}

.visual-narrative-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 34px;
}

.visual-narrative-row.reverse {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
}

.visual-narrative-row.reverse .visual-narrative-copy {
  order: 2;
}

.visual-narrative-row.reverse .visual-narrative-media {
  order: 1;
}

.visual-narrative-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
}

.visual-narrative-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
  text-align: left;
}

.visual-narrative-copy p {
  max-width: 620px;
  color: #5c6f86;
  font-size: 17px;
  line-height: 1.7;
  text-align: left;
}

.visual-narrative-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 249, 255, 0.98), rgba(255, 255, 255, 1));
  box-shadow: 0 22px 54px rgba(16, 32, 51, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.visual-narrative-media:hover {
  border-color: rgba(20, 99, 255, 0.28);
  box-shadow: 0 30px 72px rgba(16, 32, 51, 0.14);
  transform: translateY(-4px);
}

.visual-narrative-media img {
  display: block;
  width: 100%;
  height: auto;
  padding: 18px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.visual-narrative-media:hover img {
  transform: scale(1.018);
}

.visual-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 620px);
  margin-top: 6px;
}

.visual-points span {
  padding: 12px 14px;
  border: 1px solid rgba(205, 220, 236, 0.88);
  border-radius: 8px;
  color: #30445e;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .visual-narrative-row,
  .visual-narrative-row.reverse {
    grid-template-columns: 1fr;
  }

  .visual-narrative-row.reverse .visual-narrative-copy,
  .visual-narrative-row.reverse .visual-narrative-media {
    order: initial;
  }

  .visual-points {
    grid-template-columns: 1fr;
  }
}

/* Platform section: text above, product image below */
.platform-section {
  padding: 82px 0 88px;
}

.platform-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.feature-row > .platform-copy {
  justify-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.platform-copy .eyebrow {
  justify-self: center;
}

.platform-copy h2 {
  max-width: 760px;
  text-align: center;
}

.feature-row > .platform-copy p,
.platform-copy .lead {
  max-width: 760px;
  text-align: center;
}

.platform-metrics {
  width: min(760px, 100%);
}

.platform-section .process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 28px;
}

.platform-section .process-item {
  align-content: start;
  align-items: start;
  min-height: 180px;
}

.platform-section .process-item p {
  text-align: left;
}

.platform-visual {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 20px;
}

.platform-visual img {
  aspect-ratio: auto;
  max-height: 640px;
  object-fit: contain;
}

.platform-visual figcaption {
  right: 42px;
  bottom: 42px;
}

@media (max-width: 900px) {
  .platform-section .process-list {
    grid-template-columns: 1fr;
  }

  .platform-section .process-item {
    min-height: auto;
  }
}

/* Homepage industry decision map */
.industry-overview {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.industry-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.industry-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  text-align: left;
}

.industry-heading p:not(.eyebrow) {
  margin: 0;
  color: #5d6f86;
  font-size: 17px;
  line-height: 1.65;
}

.industry-map {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) repeat(2, minmax(230px, 0.72fr));
  gap: 18px;
}

.industry-tile {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  min-height: 218px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.industry-tile::after {
  position: absolute;
  inset: auto -20px -46px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(20, 99, 255, 0.11);
  border-radius: 50%;
  background: rgba(20, 99, 255, 0.04);
  content: "";
}

.industry-tile:hover {
  border-color: rgba(20, 99, 255, 0.3);
  box-shadow: 0 24px 58px rgba(16, 32, 51, 0.12);
  transform: translateY(-4px);
}

.industry-tile-feature {
  grid-row: span 2;
  grid-template-columns: 78px minmax(0, 1fr);
  align-content: center;
  min-height: 454px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(238, 247, 255, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 88% 18%, rgba(20, 99, 255, 0.14), transparent 34%);
}

.industry-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(20, 99, 255, 0.18);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(20, 99, 255, 0.08);
  font-size: 24px;
  font-weight: 900;
}

.industry-tile-feature .industry-icon {
  width: 78px;
  height: 78px;
  font-size: 30px;
}

.industry-tile h3 {
  position: relative;
  z-index: 1;
  margin: 10px 0 10px;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.12;
}

.industry-tile-feature h3 {
  max-width: 460px;
  font-size: clamp(30px, 3vw, 42px);
}

.industry-tile p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5d6f86;
  font-size: 16px;
  line-height: 1.62;
}

.industry-signals {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.industry-signals span,
.industry-action {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 999px;
  color: #30445e;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.industry-action {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .industry-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .industry-tile-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }
}

@media (max-width: 700px) {
  .industry-map {
    grid-template-columns: 1fr;
  }

  .industry-tile,
  .industry-tile-feature {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: auto;
    padding: 22px;
  }

  .industry-icon,
  .industry-tile-feature .industry-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
}

/* Industry overview reset: clean equal-card layout */
.industry-overview {
  padding: 86px 0;
}

.industry-overview .container {
  display: grid;
  gap: 34px;
}

.industry-heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.industry-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  text-align: center;
}

.industry-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #5d6f86;
  font-size: 17px;
  line-height: 1.65;
}

.industry-heading .btn {
  margin-top: 4px;
}

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

.industry-tile,
.industry-tile-feature {
  grid-column: auto;
  grid-row: auto;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 300px;
  padding: 26px;
}

.industry-tile::after {
  opacity: 0.55;
}

.industry-icon,
.industry-tile-feature .industry-icon {
  width: 58px;
  height: 58px;
  font-size: 22px;
}

.industry-tile h3,
.industry-tile-feature h3 {
  max-width: none;
  margin: 16px 0 10px;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.15;
}

.industry-tile p {
  font-size: 15.5px;
  line-height: 1.58;
}

.industry-signals {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .industry-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .industry-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .industry-overview {
    padding: 58px 0;
  }

  .industry-map {
    grid-template-columns: 1fr;
  }

  .industry-tile,
  .industry-tile-feature {
    min-height: auto;
    padding: 22px;
  }
}

/* Industry block final redesign */
.industry-redesign {
  padding: 84px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.industry-redesign .container {
  display: grid;
  gap: 36px;
}

.industry-redesign .industry-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.industry-redesign .industry-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.08;
  text-align: center;
}

.industry-redesign .industry-heading p:not(.eyebrow) {
  max-width: 670px;
  margin: 0;
  color: #5d6f86;
  font-size: 17px;
  line-height: 1.65;
}

.industry-workspace {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.5fr);
  gap: 22px;
  align-items: stretch;
}

.industry-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 247, 255, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
}

.industry-summary h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.industry-summary p {
  margin: 0;
  color: #5d6f86;
  font-size: 16px;
  line-height: 1.65;
}

.industry-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.industry-summary-stats span {
  display: grid;
  gap: 3px;
  padding: 14px 12px;
  border: 1px solid rgba(205, 220, 236, 0.9);
  border-radius: 8px;
  color: #5d6f86;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.industry-summary-stats strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.industry-summary .btn {
  width: fit-content;
  margin-top: 6px;
}

.industry-list {
  display: grid;
  gap: 14px;
}

.industry-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 20px 22px;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.industry-row:hover {
  border-color: rgba(20, 99, 255, 0.3);
  box-shadow: 0 20px 46px rgba(16, 32, 51, 0.11);
  transform: translateY(-3px);
}

.industry-row .industry-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
}

.industry-row h3 {
  margin: 0 0 6px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
}

.industry-row p {
  max-width: 620px;
  margin: 0;
  color: #5d6f86;
  font-size: 15.5px;
  line-height: 1.55;
}

.industry-row .industry-action {
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .industry-workspace {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .industry-redesign {
    padding: 58px 0;
  }

  .industry-summary-stats {
    grid-template-columns: 1fr;
  }

  .industry-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .industry-row .industry-action {
    grid-column: 2;
  }
}

/* How it works intelligence layer */
.intelligence-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.intelligence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 34px;
}

.intelligence-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 249, 255, 0.98), rgba(255, 255, 255, 1));
  box-shadow: 0 22px 54px rgba(16, 32, 51, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.intelligence-media:hover {
  border-color: rgba(20, 99, 255, 0.28);
  box-shadow: 0 30px 72px rgba(16, 32, 51, 0.14);
  transform: translateY(-4px);
}

.intelligence-media img {
  display: block;
  width: 100%;
  height: auto;
  padding: 18px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.intelligence-media:hover img {
  transform: scale(1.02);
}

.intelligence-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.intelligence-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.08;
  text-align: left;
}

.intelligence-copy .lead {
  max-width: 620px;
  color: #5d6f86;
  text-align: left;
}

.intelligence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intelligence-tags span {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 999px;
  color: #30445e;
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
}

.intelligence-steps {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.intelligence-steps > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 16px;
  padding: 18px 20px;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.045);
}

.intelligence-steps strong {
  color: var(--ink);
  font-size: 18px;
}

.intelligence-steps p {
  grid-column: 1;
  margin: 0;
  color: #5d6f86;
  font-size: 14.5px;
  line-height: 1.5;
}

.intelligence-steps span {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  padding: 7px 10px;
  border-radius: 8px;
  color: #28614d;
  background: #e7f8f1;
  font-size: 13px;
  font-weight: 850;
}

@media (max-width: 1000px) {
  .intelligence-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .intelligence-steps > div {
    grid-template-columns: 1fr;
  }

  .intelligence-steps span {
    grid-row: auto;
    grid-column: 1;
    width: fit-content;
  }
}

/* Intelligence section final stack layout */
.intelligence-stack {
  display: grid;
  gap: 26px;
}

.intelligence-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.intelligence-head h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
}

.intelligence-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #5d6f86;
  font-size: 17px;
  line-height: 1.65;
}

.intelligence-head .intelligence-tags {
  justify-content: center;
}

.intelligence-media-wide {
  width: min(980px, 100%);
  margin: 4px auto 0;
}

.intelligence-media-wide img {
  width: 100%;
  padding: 20px;
}

.intelligence-stack .intelligence-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.intelligence-stack .intelligence-steps > div {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 178px;
  padding: 24px;
}

.intelligence-stack .intelligence-steps span {
  grid-row: auto;
  grid-column: auto;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--blue);
  background: rgba(20, 99, 255, 0.08);
}

.intelligence-stack .intelligence-steps p {
  grid-column: auto;
  margin-top: 8px;
}

@media (max-width: 820px) {
  .intelligence-stack .intelligence-steps {
    grid-template-columns: 1fr;
  }

  .intelligence-stack .intelligence-steps > div {
    min-height: auto;
  }
}

.showcase-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 226, 239, 0.96);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.showcase-card:hover {
  border-color: rgba(20, 99, 255, 0.28);
  box-shadow: 0 22px 52px rgba(16, 32, 51, 0.14);
  transform: translateY(-4px);
}

.showcase-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.showcase-card figcaption {
  display: grid;
  gap: 5px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(222, 230, 241, 0.82);
}

.showcase-card figcaption strong {
  color: var(--ink);
  font-size: 18px;
}

.showcase-card figcaption span {
  color: var(--muted);
  font-size: 14px;
}

.showcase-card-main {
  grid-area: main;
}

.showcase-card-main img {
  aspect-ratio: 1448 / 1012;
}

.showcase-card-wide {
  grid-area: wide;
}

.showcase-card-wide img {
  aspect-ratio: 1384 / 486;
}

.showcase-grid .showcase-card:nth-child(3) {
  grid-area: small-a;
}

.showcase-grid .showcase-card:nth-child(3) img {
  aspect-ratio: 1448 / 938;
}

.showcase-grid .showcase-card:nth-child(4) {
  grid-area: small-b;
}

.showcase-grid .showcase-card:nth-child(4) img {
  aspect-ratio: 494 / 245;
}

.card.list-card,
.card:has(> .icon:first-child + h3) {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 18px;
  align-content: start;
}

.card.list-card {
  grid-template-rows: auto auto 1fr auto;
}

.card.list-card > .icon:first-child,
.card:has(> .icon:first-child + h3) > .icon:first-child {
  grid-column: 1;
  grid-row: 1;
  float: none;
  margin: 0;
}

.card.list-card > .icon:first-child + h3,
.card:has(> .icon:first-child + h3) > .icon:first-child + h3 {
  grid-column: 2;
  grid-row: 1;
  min-height: 62px;
  display: flex;
  align-items: center;
  margin: 0;
}

.card.list-card > .icon:first-child + h3 + p,
.card:has(> .icon:first-child + h3) > .icon:first-child + h3 + p,
.card.list-card > .list-row,
.card:has(> .icon:first-child + h3) > .list-row,
.card.list-card > .badge-list,
.card:has(> .icon:first-child + h3) > .badge-list,
.card.list-card > .check-list,
.card:has(> .icon:first-child + h3) > .check-list {
  grid-column: 1 / -1;
  clear: none;
}

.card.list-card > .list-row {
  align-self: end;
  margin-top: 6px;
}

.list-row > .icon:first-child {
  display: none;
}

.list-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.card.list-card > .icon:first-child + h3 + p,
.card:has(> .icon:first-child + h3) > .icon:first-child + h3 + p {
  margin-top: 0;
}

@media (max-width: 560px) {
  .card.list-card,
  .card:has(> .icon:first-child + h3) {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 16px;
  }
}

/* Final typography and data-source card refinement */
h1,
.hero h1,
.page-hero h1,
.industry-hero h1 {
  font-size: 28px;
  line-height: 1.08;
}

h2,
.section-head h2,
.section > .container > .copy > h2,
.feature-row h2,
.split h2,
.faq h2,
.contact-box > h2,
.platform-copy h2,
.visual-narrative-copy h2,
.industry-heading h2,
.industry-redesign .industry-heading h2,
.industry-summary h3,
.intelligence-copy h2,
.intelligence-head h2 {
  font-size: clamp(26px, 2.9vw, 38px);
  line-height: 1.1;
}

.card h2,
.card h3,
.industry-row h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
}

.data-source-section .split {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.data-source-section .copy {
  justify-content: center;
}

.data-source-section .data-source-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.data-source-section .data-source-cards .card {
  min-height: 0;
  padding: 36px;
}

.data-source-section .data-source-cards .card p {
  margin-top: 16px;
}

@media (max-width: 900px) {
  h1,
  .hero h1,
  .page-hero h1,
  .industry-hero h1 {
    font-size: 30px;
  }

  h2,
  .section-head h2,
  .section > .container > .copy > h2,
  .feature-row h2,
  .split h2,
  .faq h2,
  .contact-box > h2,
  .platform-copy h2,
  .visual-narrative-copy h2,
  .industry-heading h2,
  .industry-redesign .industry-heading h2,
  .industry-summary h3,
  .intelligence-copy h2,
  .intelligence-head h2 {
    font-size: 27px;
  }

  .data-source-section .data-source-cards {
    grid-template-columns: 1fr;
  }
}

/* Homepage hero metric cards */
.hero-stats {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-stat {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid rgba(210, 225, 242, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.94));
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.hero-stat:hover {
  border-color: rgba(20, 99, 255, 0.32);
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.11);
  transform: translateY(-2px);
}

.hero-stat::before {
  display: none;
  content: none;
}

.hero-stat-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--blue);
  border: 1px solid rgba(20, 99, 255, 0.28);
  border-radius: 999px;
  background: rgba(20, 99, 255, 0.06);
}

.hero-stat-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stat strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.hero-stat span {
  grid-column: 2;
  color: #52657c;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 760px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* Homepage hero foreground dashboard */
.hero .hero-grid {
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  align-items: center;
}

.hero-media.hero-photo-slide {
  display: block;
  position: relative;
  z-index: 1;
  min-height: 410px;
  overflow: visible;
  pointer-events: auto;
}

.hero-media.hero-photo-slide::before {
  display: none;
}

.hero-photo-slide img {
  display: block !important;
  position: absolute;
  top: 50%;
  right: -96px;
  width: min(760px, 58vw);
  height: min(410px, 38vw);
  max-height: 430px;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 26px 70px rgba(24, 73, 130, 0.13);
  opacity: 0;
  transform: translate(180px, -50%) scale(0.98);
  animation: photo3HeroSlide 1s cubic-bezier(0.18, 0.82, 0.24, 1) 0.12s forwards;
  transition: filter 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.hero-photo-slide:hover img {
  filter: saturate(1.04) contrast(1.02);
  box-shadow: 0 34px 88px rgba(24, 73, 130, 0.18);
  transform: translate(-10px, -50%) scale(1.015);
}

@keyframes photo3HeroSlide {
  0% {
    opacity: 0;
    transform: translate(180px, -50%) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }
}

@media (max-width: 1100px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media.hero-photo-slide {
    min-height: 360px;
  }

  .hero-photo-slide img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    max-height: none;
    transform: translateX(160px) scale(0.98);
    animation: photo3HeroSlideMobile 0.9s cubic-bezier(0.18, 0.82, 0.24, 1) 0.12s forwards;
  }

  .hero-photo-slide:hover img {
    transform: translateX(-6px) scale(1.01);
  }
}

@keyframes photo3HeroSlideMobile {
  0% {
    opacity: 0;
    transform: translateX(160px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 700px) {
  .hero-media.hero-photo-slide {
    min-height: 0;
  }
}

/* Hero metrics layout correction */
.hero-stats {
  width: min(700px, 100%);
  gap: 12px;
}

.hero-stat {
  grid-template-columns: minmax(0, 1fr) 30px;
  grid-template-rows: auto auto;
  gap: 7px 10px;
  min-height: 78px;
  padding: 13px 14px 12px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 255, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 28px rgba(20, 64, 120, 0.1);
}

.hero-stat:hover {
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(231, 243, 255, 0.96));
}

.hero-stat-icon {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: 28px;
  height: 28px;
  border: 0;
  background: rgba(20, 99, 255, 0.1);
}

.hero-stat strong {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  font-size: 20px;
}

.hero-stat > span:not(.hero-stat-icon) {
  grid-column: 1 / -1;
  grid-row: 2;
  color: #425772;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.18;
  white-space: nowrap;
}

/* Final global heading scale */
h2,
.section-head h2,
.section > .container > .copy > h2,
.feature-row h2,
.split h2,
.faq h2,
.contact-box > h2,
.platform-copy h2,
.visual-narrative-copy h2,
.industry-heading h2,
.industry-redesign .industry-heading h2,
.industry-summary h3,
.intelligence-copy h2,
.intelligence-head h2,
.band h2 {
  font-size: 20px;
  line-height: 1.12;
}

h3,
.card h3,
.card h2,
.industry-row h3,
.showcase-card figcaption strong,
.process-item strong,
.timeline-item h3,
.status-card h3,
.contact-box h3 {
  font-size: 18px;
  line-height: 1.18;
}

@media (max-width: 700px) {
  h2,
  .section-head h2,
  .section > .container > .copy > h2,
  .feature-row h2,
  .split h2,
  .faq h2,
  .contact-box > h2,
  .platform-copy h2,
  .visual-narrative-copy h2,
  .industry-heading h2,
  .industry-redesign .industry-heading h2,
  .industry-summary h3,
  .intelligence-copy h2,
  .intelligence-head h2,
  .band h2 {
    font-size: 20px;
  }

  h3,
  .card h3,
  .card h2,
  .industry-row h3,
  .showcase-card figcaption strong,
  .process-item strong,
  .timeline-item h3,
  .status-card h3,
  .contact-box h3 {
    font-size: 18px;
  }
}

/* Country coverage cards */
.country-board-rich {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.country-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 0;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(20, 99, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.country-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(20, 99, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.country-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.country-card-head h3 {
  margin: 0;
  font-size: 18px;
}

.country-card-head span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  color: #0b5ce8;
  background: rgba(20, 99, 255, 0.08);
  font-size: 11px;
  font-weight: 850;
}

.country-card p {
  margin: 0;
  color: #5d6f86;
  font-size: 14px;
  line-height: 1.5;
}

.country-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
}

.country-card li {
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: #344962;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(207, 222, 238, 0.9);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1100px) {
  .country-board-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .country-board-rich {
    grid-template-columns: 1fr;
  }
}

/* Pricing private quote treatment */
.pricing-filter-bar {
  justify-content: flex-start;
}

.price-private {
  display: inline-grid;
  gap: 4px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(239, 247, 255, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: inset 0 0 0 1px rgba(196, 216, 239, 0.88);
}

.price-private strong {
  color: var(--blue);
  font-size: 26px;
  letter-spacing: 0.02em;
}

.price-private span {
  color: #52657c;
  font-size: 13px;
  font-weight: 800;
}

.pricing-note {
  max-width: 560px;
  margin: -4px 0 18px;
  color: #5d6f86;
  font-size: 14px;
  line-height: 1.55;
}

/* Compact pricing comparison table */
.pricing-table-section .section-head {
  margin-bottom: 28px;
}

.pricing-compare {
  overflow-x: auto;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.08);
}

.pricing-compare table {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-compare th,
.pricing-compare td {
  width: 24%;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(222, 230, 241, 0.92);
  color: #52657c;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.pricing-compare th:first-child,
.pricing-compare td:first-child {
  width: 28%;
  color: var(--ink);
  font-weight: 850;
}

.pricing-compare thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--ink);
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  font-size: 15px;
}

.pricing-compare tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-compare tbody tr:hover td {
  background: rgba(244, 249, 255, 0.78);
}

.pricing-row td:not(:first-child) {
  color: var(--ink);
  background: rgba(239, 247, 255, 0.72);
}

.pricing-row strong {
  display: block;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.pricing-row span {
  display: block;
  margin-top: 8px;
  color: #52657c;
  font-size: 12px;
  font-weight: 800;
}

.pricing-table-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .pricing-compare th,
  .pricing-compare td {
    padding: 15px;
  }
}

/* Industries overview and detail redesign */
.industry-page-hero .container,
.industry-detail-hero .container {
  position: relative;
}

.industry-suite .section-head,
.industry-method .section-head {
  margin-bottom: 34px;
}

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

.industry-solution-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 188px;
  padding: 26px;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 8%, rgba(20, 99, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.065);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.industry-solution-card:hover {
  border-color: rgba(20, 99, 255, 0.32);
  box-shadow: 0 24px 56px rgba(16, 32, 51, 0.11);
  transform: translateY(-4px);
}

.industry-solution-card > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(20, 99, 255, 0.09);
  font-weight: 900;
}

.industry-solution-card small {
  display: block;
  margin-bottom: 8px;
  color: #0b5ce8;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-solution-card h3,
.industry-detail-cards h3,
.industry-steps h3,
.industry-output-grid h3,
.industry-question-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.18;
}

.industry-solution-card p,
.industry-detail-cards p,
.industry-steps p,
.industry-output-grid p,
.industry-question-grid p {
  margin: 0;
  color: #5d6f86;
  font-size: 14.5px;
  line-height: 1.55;
}

.industry-method-grid,
.industry-question-grid,
.industry-output-grid,
.industry-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.industry-method-grid article,
.industry-question-grid article,
.industry-output-grid article,
.industry-steps article,
.industry-detail-cards article {
  padding: 24px;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.055);
}

.industry-method-grid strong,
.industry-steps strong {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(20, 99, 255, 0.08);
  font-size: 13px;
}

.industry-detail-hero {
  overflow: hidden;
  min-height: calc(500px + var(--nav-height));
  margin-top: calc(-1 * var(--nav-height));
  padding: calc(82px + var(--nav-height)) 0 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(237, 248, 255, 0.5) 100%),
    url("hero-trade-dashboard-light.png") center center / cover no-repeat;
}

.industry-detail-hero h1 {
  max-width: 760px;
  font-size:28px;
}

.industry-detail-hero .lead {
  max-width: 700px;
}

.industry-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.industry-hero-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #0b5ce8;
  background: rgba(20, 99, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(20, 99, 255, 0.14);
  font-size: 13px;
  font-weight: 850;
}

.industry-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
}

.industry-detail-copy {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  padding: 30px;
  border: 1px solid rgba(205, 220, 236, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.065);
}

.industry-detail-copy h2 {
  margin-bottom: 14px;
  font-size: 20px;
}

.industry-detail-copy p:not(.eyebrow) {
  margin: 0;
  color: #5d6f86;
  line-height: 1.65;
}

.industry-detail-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1040px) {
  .industry-solution-grid,
  .industry-detail-layout,
  .industry-detail-cards,
  .industry-question-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industry-detail-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .industry-detail-hero {
    min-height: auto;
    padding: calc(54px + var(--nav-height)) 0 52px;
  }

  .industry-solution-grid,
  .industry-method-grid,
  .industry-question-grid,
  .industry-output-grid,
  .industry-steps,
  .industry-detail-layout,
  .industry-detail-cards {
    grid-template-columns: 1fr;
  }

  .industry-solution-card {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 22px;
  }

  .industry-solution-card > span {
    width: 50px;
    height: 50px;
  }
}

/* Home page section intro alignment */
body:has(.hero) main > section:not(.hero) > .container > .section-head,
body:has(.hero) .industry-redesign .industry-heading,
body:has(.hero) .platform-section .platform-copy {
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

body:has(.hero) main > section:not(.hero) > .container > .section-head {
  margin-bottom: 36px;
}

body:has(.hero) .platform-section .platform-copy {
  max-width: 920px;
}

body:has(.hero) main > section:not(.hero) .section-head > div,
body:has(.hero) .industry-redesign .industry-heading {
  justify-items: center;
}

body:has(.hero) main > section:not(.hero) .eyebrow {
  margin-bottom: 10px;
}

body:has(.hero) main > section:not(.hero) .section-head h2,
body:has(.hero) .platform-section .platform-copy h2,
body:has(.hero) .industry-redesign .industry-heading h2 {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

body:has(.hero) main > section:not(.hero) .section-head p,
body:has(.hero) .platform-section .platform-copy > .lead,
body:has(.hero) .industry-redesign .industry-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 12px auto 0;
  color: #5d6f86;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* Trade intelligence newsroom */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsroom-page {
  background: #fff;
}

.newsroom-page h2 {
  font-size: 20px;
}

.newsroom-page h3 {
  font-size: 18px;
}

.newsroom-hero {
  overflow: hidden;
  padding: 82px 0 68px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 255, 0.94) 52%, rgba(230, 244, 255, 0.78) 100%),
    url("hero-trade-dashboard-light.png") center 38% / cover no-repeat;
}

.newsroom-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 72px;
  align-items: end;
}

.newsroom-hero h1 {
  max-width: 700px;
  margin: 12px 0 16px;
  font-size: 28px;
  line-height: 1.02;
}

.newsroom-hero .lead {
  max-width: 660px;
  margin: 0;
}

.newsroom-brief {
  padding: 22px 24px;
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.07);
}

.newsroom-brief > span,
.pulse-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsroom-brief strong {
  display: block;
  font-size: 17px;
}

.newsroom-brief p {
  margin: 8px 0 0;
  color: #5d6f86;
  font-size: 14px;
  line-height: 1.55;
}

.newsroom-featured {
  padding-bottom: 54px;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: #0f2035;
  box-shadow: 0 26px 70px rgba(16, 32, 51, 0.16);
}

.lead-story-media,
.news-card-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.lead-story-media img,
.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lead-story:hover .lead-story-media img,
.news-card:hover .news-card-media img {
  transform: scale(1.035);
}

.story-signal,
.news-card-media > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 10px;
  border-radius: 4px;
  color: #fff;
  background: rgba(10, 79, 204, 0.9);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  align-items: center;
  color: #6b7d93;
  font-size: 12px;
  font-weight: 700;
}

.lead-story-copy .story-meta {
  color: #aabbd0;
}

.story-meta span:not(:first-child)::before,
.story-meta time + span::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.65;
}

.lead-story-copy h2 {
  margin: 20px 0 14px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.14;
}

.lead-story-copy h2 a,
.news-card h3 a {
  color: inherit;
}

.lead-story-copy p {
  margin: 0 0 26px;
  color: #c8d4e2;
  line-height: 1.65;
}

.story-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.lead-story-copy .story-link {
  color: #fff;
}

.story-link span {
  transition: transform 0.2s ease;
}

.story-link:hover span {
  transform: translateX(4px);
}

.newsroom-pulse {
  display: grid;
  grid-template-columns: 120px repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  border-top: 1px solid #d9e5f1;
  border-bottom: 1px solid #d9e5f1;
}

.newsroom-pulse > * {
  padding: 18px;
}

.newsroom-pulse > a {
  display: grid;
  gap: 7px;
  border-left: 1px solid #d9e5f1;
  color: #102033;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
  transition: background 0.2s ease, color 0.2s ease;
}

.newsroom-pulse > a:hover {
  color: var(--blue);
  background: #f5f9ff;
}

.newsroom-pulse time {
  color: #7a8ba0;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.newsroom-feed {
  padding-top: 72px;
  background: #f5f8fc;
}

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

.newsroom-feed-head h2 {
  margin: 6px 0 0;
}

.news-search {
  position: relative;
  width: min(360px, 100%);
}

.news-search::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 14px;
  height: 14px;
  border: 2px solid #71839a;
  border-radius: 50%;
  transform: translateY(-58%);
}

.news-search::after {
  content: "";
  position: absolute;
  top: calc(50% + 6px);
  left: 29px;
  width: 6px;
  height: 2px;
  background: #71839a;
  transform: rotate(45deg);
}

.news-search input {
  width: 100%;
  height: 46px;
  padding: 0 16px 0 44px;
  border: 1px solid #ccdaea;
  border-radius: 6px;
  color: #102033;
  background: #fff;
  font: inherit;
  outline: none;
}

.news-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 99, 255, 0.11);
}

.news-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.news-filter-row .filter-chip {
  min-height: 36px;
  border-radius: 4px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
  align-items: stretch;
}

.news-card {
  display: flex;
  min-width: 0;
  min-height: 448px;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d3e0ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.055);
  transition: transform 0.23s ease, box-shadow 0.23s ease, border-color 0.23s ease;
}

.news-card:hover {
  border-color: #b9cfee;
  box-shadow: 0 22px 48px rgba(16, 32, 51, 0.11);
  transform: translateY(-4px);
}

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

.news-card-media {
  aspect-ratio: 16 / 9;
  background: #eaf1f8;
}

.news-card-art {
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 241, 255, 0.9)),
    #eaf2fb;
}

.news-card-art::before,
.news-card-art::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.news-card-art::before {
  inset: 16% 9% 22%;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(16, 32, 51, 0.12);
}

.news-card-art::after {
  right: 14%;
  bottom: 31%;
  left: 14%;
  height: 36%;
  background:
    linear-gradient(154deg, transparent 0 17%, #4383f5 18% 20%, transparent 21% 34%, #4383f5 35% 37%, transparent 38% 54%, #4383f5 55% 57%, transparent 58% 70%, #4383f5 71% 73%, transparent 74%),
    repeating-linear-gradient(90deg, #dce9f7 0 2px, transparent 2px 34px);
  opacity: 0.9;
}

.news-art-supply {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 247, 243, 0.92)),
    #ebf7f4;
}

.news-art-supply::after {
  height: 42%;
  background:
    radial-gradient(circle at 16% 72%, #1463ff 0 6px, transparent 7px),
    radial-gradient(circle at 50% 28%, #19a77b 0 6px, transparent 7px),
    radial-gradient(circle at 84% 65%, #1463ff 0 6px, transparent 7px),
    linear-gradient(24deg, transparent 0 24%, #7eacd9 25% 27%, transparent 28% 48%, #7eacd9 49% 51%, transparent 52%);
}

.news-art-compliance {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 239, 255, 0.9)),
    #f3f1ff;
}

.news-art-compliance::after {
  width: 78px;
  height: 92px;
  right: 50%;
  bottom: 27%;
  left: auto;
  border: 6px solid #4b55ff;
  border-top-width: 18px;
  border-radius: 8px 8px 35px 35px;
  background:
    linear-gradient(135deg, transparent 42%, #4b55ff 43% 49%, transparent 50%),
    linear-gradient(45deg, transparent 53%, #4b55ff 54% 60%, transparent 61%);
  transform: translateX(50%);
}

.news-art-product {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 246, 255, 0.9)),
    #eaf7fd;
}

.news-art-product::after {
  right: 16%;
  bottom: 31%;
  left: 16%;
  height: 40%;
  background:
    linear-gradient(#1463ff, #1463ff) 5% 85% / 12% 32% no-repeat,
    linear-gradient(#23a6d5, #23a6d5) 27% 85% / 12% 58% no-repeat,
    linear-gradient(#1463ff, #1463ff) 49% 85% / 12% 44% no-repeat,
    linear-gradient(#23a6d5, #23a6d5) 71% 85% / 12% 76% no-repeat,
    linear-gradient(#1463ff, #1463ff) 93% 85% / 12% 64% no-repeat;
}

.news-art-demand {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 228, 0.9)),
    #fff6e8;
}

.news-art-demand::after {
  right: 16%;
  bottom: 26%;
  left: auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: conic-gradient(#1463ff 0 34%, #16a77a 34% 58%, #f2a93b 58% 78%, #dce7f3 78%);
  box-shadow: inset 0 0 0 25px #fff;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 226px;
  padding: 24px;
}

.news-card h3 {
  margin: 15px 0 12px;
  min-height: 48px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.32;
}

.news-card p {
  min-height: 68px;
  margin: 0 0 22px;
  overflow: hidden;
  color: #607289;
  font-size: 14px;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card .story-link {
  margin-top: auto;
  font-size: 13px;
}

.news-pagination {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 46px;
}

.news-pagination a {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 5px;
  color: #40546c;
  background: #fff;
  box-shadow: inset 0 0 0 1px #cfdeed;
  font-size: 13px;
  font-weight: 800;
}

.news-pagination a:hover,
.news-pagination .is-current {
  color: #fff;
  background: var(--blue);
  box-shadow: none;
}

.news-pagination .next {
  gap: 7px;
  grid-auto-flow: column;
}

.newsroom-subscribe {
  padding: 56px 0;
  color: #fff;
  background: #102033;
}

.newsroom-subscribe-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 64px;
  align-items: center;
}

.newsroom-subscribe .eyebrow {
  color: #78adff;
}

.newsroom-subscribe h2 {
  margin: 6px 0 8px;
}

.newsroom-subscribe p {
  margin: 0;
  color: #b9c8d9;
}

.newsroom-subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsroom-subscribe-form input {
  min-width: 0;
  height: 46px;
  padding: 0 15px;
  border: 1px solid #40556d;
  border-radius: 5px;
  color: #fff;
  background: #182d45;
  font: inherit;
  outline: none;
}

.newsroom-subscribe-form input:focus {
  border-color: #78adff;
}

/* News article */
.article-hero {
  padding: 66px 0 54px;
  background:
    linear-gradient(180deg, rgba(235, 246, 255, 0.78), rgba(255, 255, 255, 0.96)),
    url("top-tech-background.png") center / cover no-repeat;
}

.article-hero-inner {
  max-width: 970px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: #71839a;
  font-size: 12px;
}

.article-breadcrumb a {
  color: #50647b;
}

.article-hero h1 {
  max-width: 900px;
  margin: 13px 0 18px;
  font-size:28px;
  line-height: 1.06;
}

.article-deck {
  max-width: 790px;
  margin: 0;
  color: #53677f;
  font-size: 19px;
  line-height: 1.58;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-top: 30px;
  color: #6a7d93;
  font-size: 13px;
}

.author-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
}

.article-byline > div {
  display: grid;
  margin-right: 20px;
}

.article-byline strong {
  color: #102033;
}

.article-byline div span {
  font-size: 12px;
}

.article-cover-wrap {
  margin-top: 36px;
}

.article-cover {
  display: block;
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 20%;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.13);
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 70px;
  justify-content: center;
  padding-top: 68px;
  padding-bottom: 78px;
}

.article-rail {
  position: relative;
}

.article-rail-card {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  display: grid;
  gap: 12px;
  padding: 20px 0;
  border-top: 2px solid #102033;
  border-bottom: 1px solid #d5e1ed;
}

.article-rail-card > span,
.article-share > span {
  margin-bottom: 3px;
  color: #102033;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-rail-card a {
  color: #607289;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.article-rail-card a:hover {
  color: var(--blue);
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.article-share > span {
  width: 100%;
}

.article-share button,
.article-share a {
  padding: 7px 10px;
  border: 1px solid #cfdeed;
  border-radius: 4px;
  color: #3f536b;
  background: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.article-content {
  min-width: 0;
  color: #344a62;
  font-size: 17px;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.article-content > p,
.article-content > ul {
  margin: 0 0 26px;
}

.article-content h2 {
  margin: 54px 0 18px;
  color: #102033;
  font-size: 20px;
  line-height: 1.32;
  scroll-margin-top: 110px;
}

.article-content h3 {
  margin: 32px 0 13px;
  color: #102033;
  font-size: 18px;
}

.article-content li {
  margin-bottom: 8px;
  padding-left: 5px;
}

.article-intro {
  color: #102033;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.62;
}

.article-key-points {
  margin: 38px 0 44px;
  padding: 26px 28px;
  border-left: 3px solid var(--blue);
  background: #f3f8ff;
}

.article-key-points ul {
  margin: 12px 0 0;
  padding-left: 19px;
}

.article-data-figure {
  margin: 40px 0;
}

.article-data-figure img {
  display: block;
  width: 100%;
  border: 1px solid #d5e1ed;
  border-radius: 8px;
  background: #f6f9fd;
}

.article-data-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid #d5e1ed;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f5f9fe);
}

.article-data-panel > div {
  display: grid;
  gap: 9px;
  padding: 18px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.065);
}

.article-data-panel span {
  color: #65788f;
  font-size: 11px;
  font-weight: 750;
}

.article-data-panel strong {
  color: #102033;
  font-size: 22px;
}

.article-data-panel i {
  display: block;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue) var(--value), #e3edf7 var(--value));
}

.article-data-figure figcaption {
  margin-top: 11px;
  color: #73859a;
  font-size: 12px;
  line-height: 1.45;
}

.article-content blockquote {
  margin: 42px 0;
  padding: 2px 0 2px 28px;
  border-left: 4px solid #102033;
}

.article-content blockquote p {
  margin: 0;
  color: #102033;
  font-size: 24px;
  font-weight: 750;
  line-height: 1.38;
}

.article-takeaway {
  margin-top: 52px;
  padding: 32px;
  border-radius: 8px;
  color: #fff;
  background: #102033;
}

.article-takeaway .eyebrow {
  color: #78adff;
}

.article-takeaway h2 {
  margin: 8px 0 12px;
  color: #fff;
}

.article-takeaway p {
  color: #c4d1df;
}

.article-takeaway .btn {
  margin-top: 8px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #d8e3ee;
}

.article-tags span {
  margin-right: 5px;
  color: #102033;
  font-size: 12px;
  font-weight: 850;
}

.article-tags a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #496078;
  background: #edf4fb;
  font-size: 11px;
  font-weight: 800;
}

.article-related {
  background: #f5f8fc;
}

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

.related-grid .news-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  min-height: 260px;
}

.related-grid .news-card-media {
  aspect-ratio: auto;
}

.article-next-prev {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 50px;
  margin-bottom: 70px;
  border-top: 1px solid #d3e0ed;
  border-bottom: 1px solid #d3e0ed;
}

.article-next-prev a {
  display: grid;
  gap: 9px;
  padding: 24px 0;
  color: #102033;
}

.article-next-prev a + a {
  padding-left: 34px;
  border-left: 1px solid #d3e0ed;
  text-align: right;
}

.article-next-prev span {
  color: #71839a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-next-prev strong {
  font-size: 15px;
}

@media (max-width: 980px) {
  .newsroom-hero-inner,
  .lead-story,
  .newsroom-subscribe-inner {
    grid-template-columns: 1fr;
  }

  .lead-story-media {
    min-height: 360px;
  }

  .newsroom-pulse {
    grid-template-columns: 1fr;
  }

  .newsroom-pulse > a {
    border-top: 1px solid #d9e5f1;
    border-left: 0;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .article-rail {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .nav-actions {
    display: flex;
  }

  .site-header.is-open .nav {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .site-header.is-open .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-header.is-open .nav-links a {
    padding: 8px 0;
  }

  .site-header.is-open .dropdown {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (max-width: 700px) {
  .newsroom-hero {
    padding: 54px 0 48px;
  }

  .newsroom-hero-inner {
    gap: 28px;
  }

  .newsroom-featured {
    padding-top: 32px;
  }

  .lead-story {
    min-height: 0;
  }

  .lead-story-media {
    min-height: 240px;
  }

  .lead-story-copy {
    padding: 28px 24px;
  }

  .lead-story-copy h2 {
    font-size: 23px;
  }

  .newsroom-feed-head {
    align-items: stretch;
    flex-direction: column;
  }

  .news-search {
    width: 100%;
  }

  .news-grid,
  .related-grid,
  .related-grid .news-card,
  .newsroom-subscribe-form,
  .article-next-prev {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 0;
  }

  .news-card-body,
  .news-card h3,
  .news-card p {
    min-height: 0;
  }

  .newsroom-subscribe-inner {
    gap: 28px;
  }

  .article-hero {
    padding: 42px 0 38px;
  }

  .article-breadcrumb {
    margin-bottom: 26px;
  }

  .article-deck {
    font-size: 17px;
  }

  .article-cover-wrap {
    margin-top: 20px;
  }

  .article-cover {
    min-height: 260px;
  }

  .article-layout {
    padding-top: 44px;
  }

  .article-content {
    font-size: 16px;
  }

  .article-intro {
    font-size: 18px;
  }

  .article-key-points,
  .article-takeaway {
    padding: 24px 20px;
  }

  .article-takeaway .btn {
    box-sizing: border-box;
    width: 100%;
    min-height: 46px;
    padding-inline: 14px;
    white-space: normal;
    text-align: center;
  }

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

  .article-content blockquote p {
    font-size: 20px;
  }

  .related-grid .news-card-media {
    aspect-ratio: 16 / 9;
  }

  .article-next-prev a + a {
    padding-left: 0;
    border-top: 1px solid #d3e0ed;
    border-left: 0;
    text-align: left;
  }
}
