:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-strong: #eaf2ff;
  --ink: #001028;
  --muted: #4c6078;
  --line: #d5e0f2;
  --brand: #0058e0;
  --brand-dark: #003f9f;
  --brand-soft: #e6efff;
  --mint: #e03830;
  --accent: #e03830;
  --navy: #001028;
  --warning: #f5a524;
  --shadow: 0 18px 55px rgba(0, 16, 40, 0.12);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(84px, calc(env(safe-area-inset-bottom) + 24px));
  z-index: 40;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 48, 130, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-dark);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 48, 130, 0.36);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(0, 88, 224, 0.28);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.uk-link,
a {
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

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

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

p {
  margin: 0 0 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.container.uk-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.uk-section.hero,
.uk-section.page-hero,
.uk-section.section {
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 248, 255, 0.96);
  border-bottom: 1px solid rgba(213, 224, 242, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--navy);
}

.brand-logo {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: #122640;
  font-weight: 650;
  font-size: 0.95rem;
}

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

.nav-actions {
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 50px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.uk-button.btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}

.uk-button.btn:hover,
.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.uk-button-primary.btn-primary,
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-color: rgba(0, 88, 224, 0.46);
  box-shadow: 0 12px 24px rgba(0, 88, 224, 0.24);
}

.uk-button-primary.btn-primary:hover {
  background: linear-gradient(135deg, #0a63ed, #00398f);
  color: #fff;
}

.uk-button-default.btn-secondary,
.btn-secondary {
  background: var(--surface);
  color: var(--brand-dark);
  border-color: var(--line);
}

.uk-button-text.btn-ghost,
.btn-ghost {
  color: var(--brand-dark);
  background: transparent;
  border-color: transparent;
}

.uk-button-text.btn-ghost::before {
  display: none;
}

.eyebrow {
  color: var(--brand-dark);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 88, 224, 0.16), transparent 32%),
    radial-gradient(circle at 12% 92%, rgba(224, 56, 48, 0.08), transparent 30%),
    linear-gradient(180deg, #f7faff 0%, #eaf2ff 100%);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.lead {
  color: #334b66;
  font-size: 1.15rem;
  max-width: 760px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.chip,
.proof {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: #123a66;
  font-weight: 750;
  font-size: 0.9rem;
}

.hero-panel,
.feature-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px;
}

.policy-panel {
  margin-top: 18px;
}

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

.metric {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--navy);
}

.metric span {
  display: block;
  color: #334b66;
  margin-top: 5px;
  font-size: 0.9rem;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: #ffffff;
}

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

.section-head h2,
.article-content h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.card p,
.article-card p {
  color: #334b66;
}

.grid-3,
.grid-4,
.grid-2,
.network-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.card,
.article-card,
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(0, 16, 40, 0.07);
  color: var(--ink);
  overflow: hidden;
}

.uk-card-default.card:hover,
.uk-card-default.article-card:hover,
.uk-card-default.value-card:hover {
  border-color: rgba(0, 88, 224, 0.34);
  box-shadow: 0 18px 42px rgba(0, 16, 40, 0.1);
}

.card-icon,
.article-icon,
.value-icon {
  width: 44px;
  height: 44px;
  padding: 9px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--brand-soft);
  border: 1px solid var(--line);
}

.article-icon {
  background: #edf4ff;
}

.brand-icon-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 850;
  color: var(--navy);
}

.brand-pill img {
  width: 24px;
  height: 24px;
}

.card h3,
.article-card h3,
.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.card p,
.article-card p,
.value-card p {
  margin: 0;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.article-card .text-link {
  margin-top: auto;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 850;
}

.news-index-section {
  background: #ffffff;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(290px, 1fr) minmax(0, 2.55fr);
  grid-template-areas:
    "search feed"
    "sidebar feed";
  grid-template-rows: auto 1fr;
  gap: 24px 48px;
  align-items: start;
}

.news-search-panel {
  grid-area: search;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0, 16, 40, 0.05);
}

.news-search-panel input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: default;
}

.news-search-panel input::placeholder {
  color: #647a94;
  opacity: 1;
}

.news-search-icon {
  flex: 0 0 auto;
  color: var(--brand-dark);
}

.news-sidebar {
  grid-area: sidebar;
  display: grid;
  gap: 20px;
}

.news-side-block {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.news-side-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 850;
}

.news-side-heading .uk-icon {
  color: var(--brand);
}

.news-side-list,
.news-popular-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-side-list li + li,
.news-popular-list li + li {
  border-top: 1px solid #e7eef8;
}

.news-side-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 15px 0;
  color: var(--ink);
}

.news-side-list img {
  width: 34px;
  height: 34px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--brand-soft);
}

.news-side-list strong,
.news-side-list small {
  display: block;
}

.news-side-list strong {
  line-height: 1.35;
}

.news-side-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.news-popular-list {
  counter-reset: popular;
}

.news-popular-list li {
  counter-increment: popular;
}

.news-popular-list a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  padding: 15px 0;
  color: #26425f;
  font-weight: 750;
  line-height: 1.45;
}

.news-popular-list a::before {
  content: "0" counter(popular);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
}

.news-side-list a:hover,
.news-side-list a:focus-visible,
.news-popular-list a:hover,
.news-popular-list a:focus-visible {
  color: var(--brand-dark);
}

.news-feed {
  grid-area: feed;
  min-width: 0;
}

.news-feed-header {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(230px, 0.75fr);
  gap: 34px;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.news-feed-header h2 {
  margin: 8px 0 0;
  max-width: 720px;
  font-size: 2.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.news-feed-header p {
  margin: 0;
  color: var(--muted);
}

.news-list-entry {
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.news-list-item {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  color: var(--ink);
}

.news-list-media {
  aspect-ratio: 5 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.news-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.news-list-copy {
  min-width: 0;
}

.news-list-meta {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.news-list-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.3;
  transition: color 180ms ease;
}

.news-list-copy p {
  margin: 0 0 14px;
  color: #334b66;
}

.news-list-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-weight: 850;
}

.news-list-link .uk-icon {
  transition: transform 180ms ease;
}

.news-list-item:hover .news-list-media img,
.news-list-item:focus-visible .news-list-media img {
  transform: scale(1.035);
}

.news-list-item:hover h3,
.news-list-item:focus-visible h3 {
  color: var(--brand-dark);
}

.news-list-item:hover .news-list-link .uk-icon,
.news-list-item:focus-visible .news-list-link .uk-icon {
  transform: translateX(3px);
}

.news-list-item:focus-visible,
.news-side-list a:focus-visible,
.news-popular-list a:focus-visible {
  outline: 3px solid rgba(0, 88, 224, 0.28);
  outline-offset: 4px;
}

.pageList {
  margin-top: 34px;
}

.pageList .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pageList .pagination li {
  margin: 0;
  padding: 0;
}

.pageList .pagination a,
.pageList .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #26425f;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.pageList .pagination a:hover,
.pageList .pagination a:focus-visible {
  border-color: rgba(0, 88, 224, 0.34);
  background: var(--surface-strong);
  color: var(--brand-dark);
  box-shadow: 0 12px 24px rgba(0, 52, 140, 0.12);
}

.pageList .pagination .active span {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.pageList .pagination .disabled span {
  background: var(--surface);
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.68;
}

.network-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 64px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 800;
  text-align: left;
}

.network-item img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.visual-stack {
  display: grid;
  gap: 14px;
}

.visual-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.visual-row img {
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.visual-row strong {
  display: block;
  color: var(--navy);
}

.visual-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.timeline-steps {
  position: relative;
  gap: 18px;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 53px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--mint));
  opacity: 0.28;
  z-index: 1;
}

.timeline-steps .step {
  position: relative;
  min-height: 260px;
  padding: 116px 20px 24px;
  overflow: hidden;
}

.timeline-steps .step::before {
  position: absolute;
  left: 22px;
  top: 28px;
  z-index: 2;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  border: 8px solid var(--bg);
  box-shadow: 0 0 0 1px var(--line);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

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

th {
  color: var(--navy);
  background: var(--surface-strong);
}

tr:last-child td {
  border-bottom: 0;
}

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

.pricing-plan-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(0, 16, 40, 0.09);
}

.pricing-plan-header {
  min-height: 158px;
  padding: 26px;
  background: var(--navy);
  color: #ffffff;
}

.pricing-plan-header h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 1.75rem;
}

.pricing-plan-volume span,
.pricing-plan-volume strong {
  display: block;
}

.pricing-plan-volume span {
  color: #aebfda;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-plan-volume strong {
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.08rem;
}

.pricing-plan-details {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0;
}

.pricing-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}

.pricing-plan-row:nth-child(even) {
  background: #f7faff;
}

.pricing-plan-row dt {
  color: var(--muted);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.pricing-plan-row dd {
  flex: 0 0 auto;
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  text-align: right;
}

.pricing-plan-emphasis {
  color: var(--brand-dark) !important;
}

.pricing-plan-settlement {
  margin-top: auto;
  border-bottom: 0;
  background: var(--surface-strong) !important;
}

.note-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.page-hero {
  padding: 78px 0 52px;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 88, 224, 0.14), transparent 30%),
    linear-gradient(180deg, #f7faff 0%, #eaf2ff 100%);
}

.industry-hero {
  overflow: hidden;
}

.industry-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 46px;
  align-items: center;
}

.industry-hero-media {
  position: relative;
  margin: 0;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.industry-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 16, 40, 0.82));
  pointer-events: none;
}

.industry-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.industry-hero-media figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #f3f8fc;
  font-weight: 750;
  line-height: 1.35;
}

.industry-card h3 {
  color: var(--navy);
}

.industry-card {
  min-height: 250px;
}

.industry-card-icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--brand-soft);
}

.industry-solution-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  counter-reset: industry-solution;
}

.industry-solution-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.industry-solution-item::before {
  counter-increment: industry-solution;
  content: "0" counter(industry-solution);
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--brand-soft);
  border: 1px solid var(--line);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

.industry-solution-item strong {
  grid-column: 2;
  color: var(--navy);
  font-size: 1.04rem;
}

.industry-solution-item span {
  grid-column: 2;
  color: #334b66;
}

.industry-visual-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 242, 255, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(0, 88, 224, 0.2), transparent 32%);
}

.industry-panel-kicker {
  color: var(--brand-dark);
  font-weight: 850;
  margin-bottom: 18px;
}

.industry-flow-section {
  background:
    linear-gradient(180deg, #f4f8ff 0%, #eaf2ff 100%);
}

.industry-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.industry-flow::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 27px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--mint));
  opacity: 0.28;
}

.industry-flow-step {
  position: relative;
  padding-top: 58px;
}

.industry-flow-step span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 8px solid #eaf2ff;
  box-shadow: 0 0 0 1px var(--line);
  color: var(--brand-dark);
  font-weight: 900;
}

.industry-flow-step p {
  min-height: 126px;
  margin: 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  color: #334b66;
  font-weight: 650;
}

.industry-fit-grid .cta-band {
  min-height: 300px;
}

.article-layout {
  max-width: 820px;
  margin: 0 auto;
}

.article-page-layout {
  display: grid;
  grid-template-columns: minmax(290px, 1fr) minmax(0, 2.55fr);
  grid-template-areas: "sidebar main";
  gap: 48px;
  align-items: start;
}

.article-page-main {
  grid-area: main;
  min-width: 0;
}

.article-page-sidebar {
  grid-area: sidebar;
  display: grid;
  gap: 20px;
  min-width: 0;
}

.article-page-sidebar .news-search-panel {
  grid-area: auto;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--brand-dark);
  font-weight: 850;
}

.article-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.article-pager-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.article-pager-next {
  justify-content: flex-end;
  text-align: right;
}

.article-pager-copy {
  display: grid;
  gap: 5px;
}

.article-pager-copy small {
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-pager-copy strong {
  line-height: 1.35;
}

.article-pager-link.is-disabled {
  background: #f4f7fb;
  color: #6f8197;
  cursor: default;
}

.article-pager-link.is-disabled .article-pager-copy small {
  color: #6f8197;
}

.article-back-link:hover,
.article-back-link:focus-visible,
.article-pager-link:not(.is-disabled):hover,
.article-pager-link:not(.is-disabled):focus-visible {
  border-color: rgba(0, 88, 224, 0.38);
  color: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(0, 16, 40, 0.08);
}

.article-back-link:focus-visible,
.article-pager-link:not(.is-disabled):focus-visible {
  outline: 3px solid rgba(0, 88, 224, 0.28);
  outline-offset: 4px;
}

.article-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.article-content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  margin: 12px 0 18px;
}

.article-content p,
.article-content li {
  color: #334b66;
}

.article-content a {
  color: var(--brand-dark);
  font-weight: 800;
}

.cta-band {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 88, 224, 0.32), transparent 38%),
    linear-gradient(135deg, var(--navy), #062754);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
}

.cta-band h2,
.cta-band h3 {
  color: #ffffff;
}

.cta-band .eyebrow {
  color: #6aa7ff;
}

.cta-band p {
  color: #d9e7ff;
}

.cta-band .chip {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.62);
  color: #001f4d;
}

.section_footer {
  background: var(--navy);
  color: #cbd9ef;
  padding: 58px 0 36px;
}

.section_footer .uk-container {
  width: var(--container);
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}

.section_footer .uk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.section_footer .uk-width-medium-1-2 > .uk-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section_footer .uk-width-medium-1-2 > .uk-grid > div {
  text-align: right;
}

.section_footer h3 {
  color: #ffffff;
  margin: 0 0 14px;
}

.section_footer p,
.section_footer li,
.section_footer a {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd9ef;
}

.section_footer .uk-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section_footer .uk-list li {
  margin-bottom: 8px;
}

.section_footer .ipp-text-white {
  color: #ffffff;
}

.section_footer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 20px 0;
}

.section_footer .uk-visible-small {
  display: none;
}

.policy-section-band {
  background: #ffffff;
}

.policy-shell {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 104px;
  align-self: start;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  padding-left: 18px;
  padding-right: 10px;
  border-left: 3px solid var(--brand);
}

.policy-toc summary {
  position: relative;
  margin: 0 0 14px;
  padding-right: 24px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

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

.policy-toc summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--brand-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.policy-toc details[open] summary::after {
  content: "-";
}

.policy-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.policy-toc li + li {
  margin-top: 7px;
}

.policy-toc a {
  display: block;
  color: #38516d;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.policy-toc a:hover {
  color: var(--brand-dark);
}

@media (min-width: 561px) {
  .policy-toc details:not([open]) > ul {
    display: block;
  }

  .policy-toc summary {
    pointer-events: none;
  }

  .policy-toc summary::after {
    display: none;
  }
}

.policy-content {
  min-width: 0;
  max-width: 820px;
}

.policy-intro {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 20px 0 0;
  color: #38516d;
  font-size: 0.92rem;
  font-weight: 750;
}

.policy-section {
  scroll-margin-top: 100px;
  padding-top: 38px;
}

.policy-section + .policy-section {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1.2;
}

.policy-section h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.policy-section p,
.policy-section li {
  color: #334b66;
}

.policy-section ul,
.policy-section ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.policy-section li + li {
  margin-top: 8px;
}

.policy-section a,
.policy-contact a {
  color: var(--brand-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.policy-callout,
.policy-contact {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
  color: #183b62;
}

.policy-callout p:last-child,
.policy-contact p:last-child {
  margin-bottom: 0;
}

.legal-address {
  overflow-wrap: anywhere;
}

.company-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.company-story-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.company-story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.company-story-media figcaption {
  padding: 14px 16px;
  background: var(--navy);
  color: #d9e7ff;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.company-purpose article {
  padding: 26px;
  border-top: 4px solid var(--brand);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(0, 16, 40, 0.07);
}

.company-purpose article:last-child {
  border-top-color: var(--accent);
}

.company-purpose-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 10px 14px 10px 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 88, 224, 0.2);
  border-radius: var(--radius);
  background: var(--brand-soft);
}

.company-purpose-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(0, 88, 224, 0.16);
  border-radius: 6px;
  background: #ffffff;
}

.company-purpose-icon img {
  width: 24px;
  height: 24px;
}

.company-purpose-card.vision .company-purpose-title {
  border-color: rgba(224, 56, 48, 0.24);
  background: rgba(224, 56, 48, 0.1);
}

.company-purpose-card.vision .company-purpose-icon {
  border-color: rgba(224, 56, 48, 0.2);
}

.company-purpose-card.vision .company-purpose-icon img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(74%) saturate(1852%) hue-rotate(337deg) brightness(90%) contrast(90%);
}

.company-purpose h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.5rem;
}

.company-purpose-card.vision h2 {
  color: var(--accent);
}

.company-purpose p {
  margin: 0;
  color: #334b66;
  font-size: 1.06rem;
}

.company-identity {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.company-identity-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
}

.company-identity-row + .company-identity-row {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(0, 88, 224, 0.14);
}

.company-identity-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 88, 224, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--brand);
}

.company-identity-label {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.company-identity strong {
  display: block;
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.company-identity address {
  margin: 0;
  color: #334b66;
  font-style: normal;
  overflow-wrap: anywhere;
}

.company-identity a {
  color: var(--brand-dark);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.company-identity a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.careers-status {
  padding: 28px;
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
}

.careers-status h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.55rem;
}

.careers-status p:last-child {
  margin-bottom: 0;
}

.talent-area {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.talent-area img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-soft);
}

.talent-area h3 {
  margin: 0 0 6px;
}

.talent-area p {
  color: #334b66;
}

.site-footer {
  background: var(--navy);
  color: #d9e7ff;
  padding: 58px 0 28px;
}

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

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin: 0 0 14px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #cbd9ef;
  margin: 0 0 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 22px;
  color: #aebfda;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    color: var(--navy);
    box-shadow: none;
  }

  .brand-logo {
    width: 116px;
  }

  .nav-bar {
    min-height: 68px;
  }

  .site-nav {
    display: none;
  }

  .mobile-drawer {
    width: min(68vw, 430px);
    max-width: calc(100vw - 92px);
    padding: 0;
    background: linear-gradient(180deg, #001028 0%, #061e42 100%);
    color: #ffffff;
    box-shadow: -24px 0 54px rgba(0, 16, 40, 0.42);
  }

  .mobile-drawer-close {
    top: 22px;
    right: 22px;
    color: rgba(255, 255, 255, 0.9);
  }

  .mobile-drawer-nav {
    padding-top: 74px;
  }

  .mobile-drawer .uk-nav-default > li > a,
  .mobile-drawer-nav > li > a,
  .mobile-drawer-actions > li > a {
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #061e42;
    color: #f3f8fc;
    font-size: 1.15rem;
    font-weight: 600;
  }

  .mobile-drawer .uk-nav-default > li > a:hover,
  .mobile-drawer-nav > li > a:hover,
  .mobile-drawer-actions > li > a:hover {
    background: #0a2b62;
    color: #ffffff;
  }

  .mobile-drawer .uk-nav-default > li.uk-active > a,
  .mobile-drawer-nav > li.uk-active > a {
    position: relative;
    background: #000a18;
    color: #ffffff;
  }

  .mobile-drawer-nav > li.uk-active > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--brand);
  }

  .mobile-drawer-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-drawer-actions > li > .drawer-link-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #ffffff;
  }

  .mobile-drawer-actions > li > .drawer-link-secondary {
    background: #061e42;
    color: #f3f8fc;
  }

  .hero-grid,
  .split-grid,
  .industry-hero-grid,
  .company-story,
  .policy-shell,
  .grid-2,
  .grid-3,
  .grid-4,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .news-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "search"
      "feed"
      "sidebar";
    grid-template-rows: auto auto auto;
    gap: 28px;
  }

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

  .pricing-plan-grid {
    grid-template-columns: 1fr;
  }

  .article-page-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "sidebar";
    gap: 36px;
  }

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

  .article-search-panel {
    grid-column: 1 / -1;
  }

  .policy-shell {
    gap: 36px;
  }

  .policy-toc {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand);
    background: var(--surface-strong);
  }

  .policy-toc ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
  }

  .policy-toc details:not([open]) > ul,
  .policy-toc details[open] > ul {
    display: grid;
  }

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

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

  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 54px;
  }

  .timeline-steps::before {
    left: 24px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--brand), var(--mint));
  }

  .timeline-steps .step {
    min-height: auto;
    padding: 22px;
  }

  .timeline-steps .step::before {
    left: -56px;
    top: 22px;
  }

  .industry-hero-media,
  .industry-hero-media img {
    min-height: 320px;
  }

  .industry-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 54px;
  }

  .industry-flow::before {
    left: 24px;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--brand), var(--mint));
  }

  .industry-flow-step {
    padding-top: 0;
  }

  .industry-flow-step span {
    left: -54px;
    top: 8px;
  }

  .industry-flow-step p {
    min-height: auto;
  }

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

  .section_footer .uk-grid,
  .section_footer .uk-width-medium-1-2 > .uk-grid {
    grid-template-columns: 1fr;
  }

  .section_footer .uk-width-medium-1-2 > .uk-grid > div {
    text-align: left;
  }

  .section_footer .uk-width-medium-1-2 > .uk-grid {
    gap: 20px;
    margin-top: 8px;
  }

  .section_footer .uk-hidden-small {
    display: none;
  }

  .section_footer .uk-visible-small {
    display: block;
  }

}

@media (max-width: 560px) {
  .back-to-top {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(72px, calc(env(safe-area-inset-bottom) + 16px));
    width: 44px;
    height: 44px;
  }

  :root {
    --container: min(100% - 28px, 1120px);
  }

  .hero {
    padding: 58px 0 48px;
  }

  .mobile-drawer {
    width: min(74vw, 360px);
    max-width: calc(100vw - 76px);
  }

  .mobile-drawer .uk-nav-default > li > a,
  .mobile-drawer-nav > li > a,
  .mobile-drawer-actions > li > a {
    min-height: 68px;
    padding: 0 24px;
    font-size: 1rem;
  }

  .page-hero {
    padding: 52px 0 38px;
  }

  .industry-hero-media,
  .industry-hero-media img {
    min-height: 250px;
  }

  .industry-hero-media figcaption {
    left: 16px;
    right: 16px;
    bottom: 14px;
    font-size: 0.92rem;
  }

  .industry-card {
    min-height: auto;
  }

  .industry-flow {
    padding-left: 48px;
  }

  .industry-flow::before {
    left: 21px;
  }

  .industry-flow-step span {
    left: -50px;
    width: 42px;
    height: 42px;
    border-width: 6px;
    font-size: 0.86rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-panel,
  .feature-panel,
  .article-content,
  .cta-band {
    padding: 20px;
  }

  .news-feed-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 22px;
  }

  .news-feed-header h2 {
    font-size: 1.85rem;
  }

  .news-list-entry {
    padding: 24px 0;
  }

  .news-list-item {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .news-list-media {
    aspect-ratio: 16 / 9;
  }

  .news-list-copy h3 {
    font-size: 1.2rem;
  }

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

  .news-side-block {
    padding: 20px;
  }

  .pricing-plan-header {
    min-height: 144px;
    padding: 22px;
  }

  .pricing-plan-row {
    min-height: 62px;
    padding: 14px 16px;
  }

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

  .article-search-panel {
    grid-column: auto;
  }

  .article-pager-link {
    min-height: 96px;
  }

  .company-purpose,
  .policy-toc ul {
    grid-template-columns: 1fr;
  }

  .policy-toc details:not([open]) > ul {
    display: none;
  }

  .policy-toc details[open] > ul {
    display: grid;
  }

  .company-purpose article,
  .company-identity,
  .careers-status,
  .policy-callout,
  .policy-contact {
    padding: 20px;
  }

  .policy-section {
    padding-top: 30px;
  }

  .policy-section + .policy-section {
    margin-top: 22px;
  }

  .metric-grid,
  .steps,
  .network-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section_footer {
    padding: 42px 0 26px;
  }

  .section_footer .uk-grid {
    gap: 22px;
  }

  .section_footer h3 {
    margin-bottom: 8px;
  }

  .section_footer p,
  .section_footer li,
  .section_footer a {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .section_footer .uk-width-medium-1-2 > .uk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .section_footer .uk-list li {
    margin-bottom: 7px;
  }

  .timeline-steps {
    padding-left: 48px;
  }

  .timeline-steps::before {
    left: 21px;
  }

  .timeline-steps .step::before {
    left: -50px;
    width: 42px;
    height: 42px;
    border-width: 6px;
  }

  .btn {
    width: 100%;
  }
}
