:root {
  --bg: #eaf6ff;
  --surface: #ffffff;
  --surface-muted: #dff4ff;
  --line: #cce7f7;
  --line-dark: #8ecdf0;
  --text: #0b3b72;
  --muted: #4f789a;
  --accent: #0098e8;
  --accent-strong: #0069d9;
  --accent-soft: #d8f5ff;
  --pink: #ff4f7a;
  --dark: #15232f;
  --radius: 14px;
  --shadow: 0 18px 38px rgba(0, 96, 180, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(40, 207, 255, 0.28) 0 58px,
      transparent 59px
    ),
    radial-gradient(
      circle at 95% 26%,
      rgba(0, 128, 229, 0.12) 0 92px,
      transparent 93px
    ),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}
p,
h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}
h1 {
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.15;
  text-wrap: balance;
}
h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  text-wrap: balance;
}
h3 {
  color: #111827;
  font-size: 19px;
  line-height: 1.3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(
    90deg,
    rgba(0, 186, 240, 0.94),
    rgba(0, 91, 206, 0.94)
  );
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.header-inner,
.section-inner,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
}

.site-header .header-inner {
  max-width: 1200px;
  min-height: 64px;
  padding-right: 24px;
  padding-left: 24px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-symbol {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  overflow: hidden;
}

.brand-symbol img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.brand-word {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 14px;
}

.nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: inherit;
  font-size: 14px;
}

.nav a,
.footer-links a {
  opacity: 0.9;
}

.site-header .nav {
  flex-wrap: nowrap;
  gap: 8px;
  font-size: 13px;
}

.site-header .nav a {
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.24s ease;
}

.site-header .nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.header-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-header .header-actions {
  gap: 8px;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: 0.24s ease;
}

.mobile-menu-toggle span + span {
  margin-top: 4px;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(0, 140, 220, 0.22);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 120, 210, 0.12);
}

.btn.primary {
  border-color: var(--pink);
  background: linear-gradient(90deg, #ff5b88, #ff356b);
  color: #ffffff;
}

.site-header .btn {
  min-height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

.btn.dark {
  border-color: var(--dark);
  background: var(--dark);
  color: #ffffff;
}

.section {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-bottom: 0;
  background:
    radial-gradient(
      circle at 8% 92%,
      rgba(0, 170, 235, 0.12) 0 92px,
      transparent 94px
    ),
    var(--surface);
}

#article-body.section {
  overflow: visible;
}

.section.alt {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(0, 112, 210, 0.12) 0 86px,
      transparent 88px
    ),
    linear-gradient(180deg, #eaf6ff 0%, #f6fbff 100%);
}
.section.dark {
  background:
    radial-gradient(
      circle at 15% 12%,
      rgba(0, 196, 255, 0.28) 0 90px,
      transparent 92px
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(35, 114, 255, 0.26) 0 112px,
      transparent 114px
    ),
    linear-gradient(135deg, #00b9ef 0%, #0066d9 58%, #0049b9 100%);
  color: #ffffff;
}
.section-inner {
  padding-top: 104px;
  padding-bottom: 104px;
}

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

main > .section:first-child {
  background:
    radial-gradient(
      circle at 5% 8%,
      rgba(116, 226, 255, 0.28) 0 86px,
      transparent 88px
    ),
    radial-gradient(
      circle at 86% 20%,
      rgba(255, 255, 255, 0.2) 0 52px,
      transparent 54px
    ),
    linear-gradient(135deg, #10c8f5 0%, #008bea 46%, #0056c8 100%);
  color: #ffffff;
}

main > .section:first-child .lead {
  color: rgba(255, 255, 255, 0.88);
}

main > .section:first-child .btn:not(.primary) {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  min-height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 114, 205, 0.12);
}

.lead {
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
}

.dark .lead,
.dark p {
  color: #d7dee5;
}
.actions {
  margin-top: 38px;
}

.wire-panel {
  min-height: 360px;
  padding: 28px;
  border: 0;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.wire-browser {
  display: flex;
  gap: 10px;
  height: 34px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

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

.wire-block {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(0, 142, 220, 0.14);
  border-radius: 12px;
  background: #f3fbff;
}

.wire-block.large {
  min-height: 210px;
  grid-column: span 2;
}
.wire-line {
  height: 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #c8eaff;
}
.wire-line.short {
  width: 62%;
}
.wire-line.accent {
  background: linear-gradient(90deg, #24c8ff, #0074dd);
}

.page-hero .section-inner {
  min-height: 0;
  padding-top: 42px;
  padding-bottom: 44px;
  text-align: center;
}

.page-hero h1 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(30px, 3.4vw, 44px);
}

.page-hero .lead {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
}

.hero-compact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.page-hero .hero-grid,
.page-hero .hero-compact,
.page-hero .hero-text-only {
  display: block;
}

.page-hero .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.page-hero .actions {
  justify-content: center;
  margin-top: 24px;
}

.page-hero .wire-panel {
  display: none;
}

.page-hero:not(.cv-hero) .lead,
.page-hero:not(.cv-hero) .actions,
.page-hero:not(.cv-hero) .hero-steps,
.page-hero:not(.cv-hero) .hero-checks,
.page-hero:not(.cv-hero) .hero-links,
.page-hero:not(.cv-hero) .hero-prices,
.page-hero:not(.cv-hero) .hero-decision {
  display: none;
}

.page-hero:not(.cv-hero) h1 {
  max-width: 900px;
}

.hero-text-only {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}

.hero-strip .tag {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hero-steps,
.hero-checks,
.hero-links,
.hero-prices {
  display: grid;
  gap: 14px;
}

.page-hero .hero-steps,
.page-hero .hero-checks,
.page-hero .hero-links,
.page-hero .hero-prices,
.page-hero .hero-decision {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin: 28px auto 0;
  text-align: left;
}

.hero-step,
.hero-check,
.hero-link,
.hero-price {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.hero-step strong,
.hero-check strong,
.hero-link strong,
.hero-price strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-strong);
}

.hero-step p,
.hero-check p,
.hero-link p,
.hero-price p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-decision {
  display: grid;
  gap: 12px;
}

.hero-decision div {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-decision b {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

.hero-decision span {
  color: rgba(255, 255, 255, 0.82);
}

.hero-form {
  min-height: 0;
}

.sp-break {
  display: none;
}

.page-hero .form-wire {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: left;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
  text-align: center;
}

.section-head.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

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

.section-head p {
  color: var(--muted);
}

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

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

.feature-groups {
  display: grid;
  gap: 34px;
}

.feature-group-head {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.feature-group-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff3bf;
  color: #8a5a00;
  font-size: 12px;
  font-weight: 800;
}

.feature-group.use .feature-group-kicker {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.feature-group-head h3 {
  font-size: clamp(24px, 3vw, 32px);
}

.feature-group-head p {
  color: var(--muted);
}

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

.card {
  min-height: 220px;
  padding: 32px;
  border: 0;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card p {
  margin-top: 18px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
}

.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 54px 0 18px;
  counter-reset: flow-step;
}

.flow::before {
  position: absolute;
  top: 78px;
  right: 12.5%;
  left: 12.5%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00b9ef, #0066d9);
  content: "";
}

.flow-stage {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 0 18px;
  text-align: center;
}

.flow-stage::before {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border: 6px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b9ef, #0066d9);
  color: #fff;
  content: counter(flow-step);
  counter-increment: flow-step;
  font-size: 18px;
  font-weight: 900;
}

.flow-stage h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.flow-stage p {
  max-width: 220px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.flow-caption {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.impact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.impact-map-header {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  background: linear-gradient(135deg, #00b9ef, #0066d9);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.impact-map-header span {
  padding: 14px 24px;
}

.impact-map-header .impact-arrow-head {
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 16px;
  opacity: 0.5;
}

.impact-row {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.impact-arrow {
  display: grid;
  place-items: center;
  color: var(--accent, #0098e8);
  font-size: 18px;
  font-weight: 400;
}

.impact-row:last-child {
  border-bottom: none;
}

.impact-row:nth-child(even) {
  background: var(--surface);
}

.impact-row:nth-child(odd) {
  background: var(--surface-muted, #f4f9ff);
}

.impact-cell {
  min-width: 0;
  padding: 24px;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.impact-cell:not(:last-child) {
  border-right: none;
}

.impact-cell.problem,
.impact-cell.solution,
.impact-cell.result {
  background: none;
  color: inherit;
}

.impact-cell span,
.infographic-card span,
.comparison-mini-card span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
}

.impact-cell.result span {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.impact-cell h3 {
  margin-top: 0;
  font-size: 15px;
  word-break: keep-all;
}

.impact-cell p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.impact-cell.result p {
  color: var(--muted);
}

.infographic-grid {
  display: flex;
  gap: 0;
  counter-reset: step;
  position: relative;
  padding-top: 56px;
}

.infographic-grid::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10c8f5, #0056c8);
  border-radius: 1px;
}

.infographic-card {
  position: relative;
  flex: 1;
  padding: 0 16px;
  background: none;
  box-shadow: none;
  min-height: auto;
  text-align: center;
}

.infographic-card::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b9ef, #0066d9);
  color: #ffffff;
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-size: 13px;
  font-weight: 900;
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px var(--bg);
}

.infographic-card p,
.comparison-mini-card p,
.assurance-card p {
  margin-top: 12px;
  color: var(--muted);
}

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

.comparison-mini-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.comparison-mini-card.highlight {
  background: linear-gradient(135deg, #00b9ef, #0066d9);
  color: #ffffff;
}

.comparison-mini-card.highlight p {
  color: rgba(255, 255, 255, 0.86);
}

.comparison-mini-card.highlight span {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

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

.assurance-card {
  padding: 26px;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.assurance-card b {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 40px;
  align-items: center;
}

.cta-panel {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.cta-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-panel li {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.table-wire {
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.table-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 160px;
  gap: 28px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}
.table-row p {
  color: var(--muted);
}

.signal-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.signal-copy {
  position: sticky;
  top: 118px;
}

.signal-copy p {
  margin-top: 20px;
  color: var(--muted);
}

.signal-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.signal-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.signal-item b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff3bf;
  color: #8a5a00;
  font-size: 13px;
}

.signal-item h3 {
  font-size: 18px;
}

.signal-item p {
  margin-top: 8px;
  color: var(--muted);
}

.department-lanes {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.department-lane {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(220px, 0.65fr);
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.department-lane .role {
  color: var(--accent-strong);
  font-weight: 900;
}

.department-lane h3 {
  margin-bottom: 8px;
}

.department-lane p {
  color: var(--muted);
}

.department-lane .cta-link {
  justify-self: end;
  color: var(--accent-strong);
  font-weight: 800;
}

.route-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.usecase-river {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.river-head {
  position: sticky;
  top: 118px;
}

.river-head p {
  margin-top: 18px;
  color: var(--muted);
}

.river-lines {
  display: grid;
  border-top: 2px solid var(--accent-strong);
}

.river-line {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.river-line span {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
}

.river-line strong {
  font-size: 17px;
  line-height: 1.45;
}

.river-line i {
  position: relative;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #00b9ef, #0066d9);
}

.river-line i::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0066d9;
  border-right: 2px solid #0066d9;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.route-question {
  display: grid;
  align-content: center;
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00b9ef, #0066d9);
  color: #ffffff;
}

.route-question p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.route-lines {
  display: grid;
  gap: 14px;
}

.route-line {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.route-line:last-child {
  border-bottom: 0;
}

.route-line strong {
  color: var(--text);
}

.route-line span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 900;
}

.route-line p {
  color: var(--muted);
}

.contact-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-top: 48px;
  counter-reset: contact-step;
}

.contact-flow::before {
  position: absolute;
  top: 72px;
  right: 10%;
  left: 10%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00b9ef, #0066d9);
  content: "";
}

.contact-step {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 0 14px;
  text-align: center;
}

.contact-step::before {
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border: 6px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b9ef, #0066d9);
  color: #ffffff;
  content: counter(contact-step);
  counter-increment: contact-step;
  font-weight: 900;
}

.contact-step p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-lines {
  display: grid;
  border-top: 2px solid var(--accent-strong);
}

.contact-line {
  display: grid;
  grid-template-columns: 72px minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.contact-line strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.45;
}

.contact-line p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-price-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 38px 0;
  border-top: 2px solid var(--accent-strong);
  border-bottom: 1px solid var(--line);
}

.contact-price-band h2 {
  margin-top: 10px;
}

.contact-price-band p {
  color: var(--muted);
  line-height: 1.8;
}

.company-lines {
  display: grid;
  border-top: 2px solid var(--accent-strong);
}

.company-lines div {
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.company-lines span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.company-lines strong {
  color: var(--text);
  font-size: 20px;
}

.company-lines p,
.company-source {
  color: var(--muted);
  line-height: 1.8;
}

.company-source {
  margin-top: 24px;
  font-size: 13px;
}

.company-source a {
  color: var(--accent-strong);
  font-weight: 900;
}

.company-link-panel {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 42px 0;
  border-top: 2px solid var(--accent-strong);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.company-link-panel span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.company-link-panel strong {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.company-link-panel p {
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.company-link-panel .btn {
  margin-top: 26px;
}

.faq-strips {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.faq-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-strip p {
  color: rgba(255, 255, 255, 0.86);
}

.usecase-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 44px;
  align-items: center;
}

.usecase-cta-note {
  padding: 8px 0 8px 24px;
  border-left: 4px solid #ffdf2e;
}

.usecase-cta-note p {
  color: rgba(255, 255, 255, 0.88);
}

.cv-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cv-wrap h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.35;
}

.cv-wrap .lead {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.cv-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.cv-note {
  margin-top: 40px;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.ops-readiness {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.ops-readiness-copy {
  position: sticky;
  top: 118px;
}

.ops-readiness-copy p {
  margin-top: 18px;
  color: var(--muted);
}

.ops-readiness-copy .cta-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--accent-strong);
  font-weight: 900;
}

.ops-concerns {
  display: grid;
  border-top: 2px solid var(--accent-strong);
}

.ops-concerns div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.ops-concerns span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.ops-concerns strong {
  font-size: 20px;
  line-height: 1.45;
}

.ops-effect-lines {
  display: grid;
  border-top: 1px solid var(--line);
}

.ops-effect-line {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 130px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.ops-effect-line span {
  color: var(--muted);
  font-weight: 800;
}

.ops-effect-line b {
  display: inline-flex;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
}

.ops-effect-line strong {
  font-size: 18px;
  line-height: 1.55;
}

.status-ledger {
  overflow: hidden;
  border-top: 2px solid var(--accent-strong);
}

.status-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) 128px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.status-row strong {
  font-size: 18px;
}

.status-row span {
  display: inline-flex;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.status-row p {
  color: var(--muted);
}

.decision-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--accent-strong);
  border-left: 1px solid var(--line);
}

.decision-checks div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 86px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  font-weight: 800;
}

.decision-checks svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  padding: 4px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #ffffff;
}

.decision-checks path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.ops-faq-lines {
  display: grid;
  border-top: 2px solid var(--accent-strong);
}

.ops-faq-lines div {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.ops-faq-lines strong {
  font-size: 18px;
}

.ops-faq-lines p {
  color: var(--muted);
}

.faq-header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.faq-header p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.faq-list {
  display: grid;
  max-width: 800px;
  margin: 0 auto;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-q {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.faq-q::before {
  position: relative;
  top: 1px;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  content: "Q";
  font-size: 13px;
  font-weight: 800;
}

.faq-a {
  margin-top: 12px;
  padding-left: 42px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.pricing-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.pricing-lead {
  position: sticky;
  top: 118px;
}

.pricing-lead p {
  margin-top: 18px;
  color: var(--muted);
}

.price-stack {
  display: grid;
  gap: 18px;
}

.price-line {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-line + .price-line {
  border-top: 0;
}

.price-line span {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
}

.price-line strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
}

.price-line.primary strong {
  color: var(--accent-strong);
}

.price-line p {
  margin-top: 14px;
  color: var(--muted);
}

.price-line.primary p strong,
.demo-pricing-strip p strong {
  color: var(--accent-strong);
  font-weight: 900;
}

.price-scope {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--accent-strong);
}

.price-scope div {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-scope div:last-child {
  border-right: 0;
}

.price-scope b {
  color: var(--accent-strong);
  font-size: 13px;
}

.price-scope strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
}

.price-scope p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.price-ledger {
  display: grid;
  border-top: 2px solid var(--accent-strong);
}

.price-ledger div {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) 140px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.price-ledger strong {
  font-size: 18px;
}

.price-ledger span {
  display: inline-flex;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.price-ledger p {
  color: var(--muted);
}

.blog-featured {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0 72px 0 72px;
  isolation: isolate;
}

.blog-featured-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.blog-featured::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 36, 64, 0.82), rgba(7, 36, 64, 0.2) 58%),
    linear-gradient(0deg, rgba(0, 97, 190, 0.4), transparent 46%);
  content: "";
}

.blog-featured-image img,
.blog-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-copy {
  display: grid;
  align-content: end;
  width: min(680px, 72%);
  min-height: 560px;
  padding: 56px;
  color: #ffffff;
}

.blog-featured-copy .eyebrow {
  width: max-content;
}

.blog-featured-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.blog-meta span + span::before {
  width: 4px;
  height: 4px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--line-dark);
  content: "";
}

.blog-featured-copy .cta-link {
  display: inline-flex;
  margin-top: 28px;
  color: #ffffff;
  font-weight: 900;
}

.blog-featured-side {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 8px;
  min-width: 180px;
  padding-left: 24px;
  border-left: 3px solid #ffdf2e;
  color: #ffffff;
}

.blog-featured-side span,
.blog-featured-side em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.blog-featured-side strong {
  font-size: 22px;
  line-height: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 28px;
}

.blog-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.blog-card[data-href] {
  cursor: pointer;
}

.blog-card[data-href]:focus-visible {
  border-radius: 0 28px 0 28px;
  outline: 3px solid rgba(0, 152, 232, 0.28);
  outline-offset: 8px;
}

.blog-thumb {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 0 28px 0 28px;
  background: var(--surface-muted);
}

.blog-copy h3 {
  margin-top: 10px;
}

.blog-copy p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 64px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 15px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
}

.blog-pagination .current {
  border-color: var(--accent-strong);
  background: linear-gradient(135deg, #00b9ef, #0066d9);
  color: #ffffff;
}

.blog-pagination .page-control {
  min-width: 84px;
}

.blog-pagination .disabled {
  border-color: var(--line);
  color: var(--muted);
  opacity: 0.48;
  pointer-events: none;
}

.blog-pagination .page-ellipsis {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.blog-category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.blog-category-list a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--accent-strong);
  font-weight: 900;
}

.article-hero {
  overflow: hidden;
  padding-bottom: 0;
  background: #f4f7fa;
  color: var(--text);
}

.article-hero .section-inner {
  position: relative;
  padding-top: 62px;
  padding-bottom: 72px;
  text-align: left;
}

.article-hero .section-inner::before {
  display: none;
}

.article-hero .section-inner::after {
  display: none;
}

.article-back {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 114, 205, 0.12);
}

.article-back::before {
  margin-right: 8px;
  content: "←";
}

.article-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.62fr);
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}

.article-hero-copy {
  max-width: 880px;
}

.article-hero-copy h1,
.article-hero-copy .lead {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.article-hero-copy h1 {
  max-width: 880px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.16;
}

.article-hero-copy .lead {
  display: block !important;
  max-width: 720px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.article-hero-copy .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--accent-strong);
}

.article-hero-copy .blog-meta span + span::before {
  display: none;
}

.article-hero-copy .blog-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.article-summary-box {
  max-width: 720px;
  margin-top: 34px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.article-summary-box dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.article-summary-box dl div {
  padding: 14px 16px;
  background: #ffffff;
}

.article-summary-box dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.article-summary-box dd {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.article-summary-box p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.article-hero-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  border: 0;
  border-radius: 0 48px 0 48px;
  box-shadow: 0 28px 80px rgba(0, 42, 110, 0.16);
  transform: none;
}

.article-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 28, 72, 0.34));
  content: "";
}

.article-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  gap: 0;
  align-items: start;
  overflow: visible;
}

.article-side {
  display: none;
  position: sticky;
  top: 118px;
  align-self: start;
  gap: 18px;
  height: max-content;
  max-height: calc(100vh - 148px);
  overflow-y: auto;
  z-index: 2;
}

@media (min-width: 981px) {
  .article-side {
    position: -webkit-sticky;
    position: sticky;
    top: 118px;
  }
}

.article-side nav {
  display: grid;
  border-top: 2px solid var(--accent-strong);
}

.article-side a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-side a:hover {
  color: var(--accent-strong);
}

.article-body {
  min-width: 0;
  color: var(--text);
}

.article-body section {
  scroll-margin-top: 110px;
}

.article-inline-toc {
  display: grid;
  gap: 0;
  overflow: hidden;
  margin-bottom: 54px;
  border-top: 2px solid var(--accent-strong);
  border-bottom: 1px solid var(--line);
}

.article-inline-toc span {
  padding: 18px 0;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.article-inline-toc a {
  display: grid;
  min-height: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.article-inline-toc a:hover {
  color: var(--accent-strong);
}

.article-lead {
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.75;
}

.article-body h2 {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
}

.article-body section:first-child h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.article-body h3 {
  margin-top: 46px;
  color: #111827;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.55;
}

.article-body p {
  margin-top: 22px;
  color: #244e78;
  font-size: 17px;
  line-height: 2;
}

.metric-storyline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 38px;
}

.metric-storyline div {
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.metric-storyline div:first-child {
  border-radius: 0 0 0 30px;
}

.metric-storyline div:last-child {
  border-radius: 0 30px 0 0;
}

.metric-storyline i {
  position: relative;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, #10c8f5, #0056c8);
}

.metric-storyline i::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0056c8;
  border-right: 2px solid #0056c8;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.metric-storyline span,
.knowledge-role-map span,
.metric-cluster > span,
.metric-design-board span,
.metric-benchmark-strip span,
.metric-action-flow span {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.metric-storyline strong,
.knowledge-role-map strong,
.metric-design-board strong,
.metric-benchmark-strip strong,
.metric-action-flow strong {
  display: block;
  color: #111827;
  font-size: 20px;
  line-height: 1.45;
}

.metric-storyline p,
.knowledge-role-map p,
.metric-cluster p,
.metric-design-board p,
.metric-action-flow p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
}

.knowledge-role-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 0 30px 0 30px;
  background: var(--line);
}

.knowledge-role-map div {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
}

.metric-cluster-grid {
  display: grid;
  gap: 28px;
  margin-top: 38px;
}

.metric-cluster {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: 28px 36px;
  align-items: start;
  padding: 34px 0;
  border-top: 2px solid var(--line);
}

.metric-cluster h3 {
  margin-top: 0;
  color: #111827;
  font-size: 24px;
}

.metric-cluster > p {
  grid-column: 1;
}

.metric-cluster dl {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 3;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0 26px 0 26px;
  background: var(--line);
}

.metric-cluster dl div {
  padding: 22px;
  background: #ffffff;
}

.metric-cluster dt {
  color: var(--accent-strong);
  font-size: 16px;
  font-weight: 900;
}

.metric-cluster dd {
  margin: 8px 0 0;
  color: #244e78;
  font-size: 14px;
  line-height: 1.7;
}

.metric-cluster.usage {
  border-top-color: #10c8f5;
}

.metric-cluster.value {
  border-top-color: #0069d9;
}

.metric-cluster.health {
  border-top-color: #ffdf2e;
}

.metric-design-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 0 30px 0 30px;
  background: var(--line);
}

.metric-design-board div {
  min-height: 180px;
  padding: 26px;
  background: #ffffff;
}

.metric-benchmark-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid #ffdf2e;
  border-radius: 0 30px 0 30px;
  background: #ffdf2e;
}

.metric-benchmark-strip div {
  padding: 26px;
  background: #fffbea;
}

.metric-action-flow {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 2px solid var(--accent-strong);
  border-bottom: 1px solid var(--line);
}

.metric-action-flow div {
  display: grid;
  grid-template-columns: 150px minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.metric-action-flow div:last-child {
  border-bottom: 0;
}

.metric-action-flow p {
  margin-top: 0;
}

.poc-question-strip,
.poc-rule-board,
.poc-small-start {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 0 30px 0 30px;
  background: var(--line);
}

.poc-question-strip div,
.poc-rule-board div,
.poc-small-start div {
  min-height: 138px;
  padding: 26px;
  background: #ffffff;
}

.poc-question-strip span,
.poc-rule-board span,
.poc-minimum-flow span,
.poc-ai-flow span,
.poc-small-start span,
.poc-stop-map span {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.poc-question-strip strong,
.poc-rule-board strong,
.poc-minimum-flow strong,
.poc-ai-flow strong,
.poc-small-start strong,
.poc-stop-map strong {
  display: block;
  color: #111827;
  font-size: 18px;
  line-height: 1.45;
}

.poc-rule-board p,
.poc-ai-flow p,
.poc-stop-map p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
}

.poc-stop-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.poc-stop-map div {
  min-height: 210px;
  padding: 26px 0;
  border-top: 3px solid var(--accent-strong);
  border-bottom: 1px solid var(--line);
}

.poc-stop-map div:nth-child(3),
.poc-stop-map div:nth-child(4) {
  border-top-color: #ffdf2e;
}

.poc-minimum-flow {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr) 22px
    minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  margin-top: 34px;
}

.poc-minimum-flow div {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.poc-minimum-flow i {
  height: 2px;
  background: linear-gradient(90deg, #10c8f5, #0069d9);
}

.poc-ai-flow {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 2px solid var(--accent-strong);
  border-bottom: 1px solid var(--line);
}

.poc-ai-flow div {
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.poc-ai-flow div:last-child {
  border-bottom: 0;
}

.poc-ai-flow p {
  margin-top: 0;
}

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

.metric-storyline p,
.knowledge-role-map p,
.metric-cluster p,
.metric-design-board p,
.metric-action-flow p,
.poc-rule-board p,
.poc-ai-flow p,
.poc-stop-map p,
.article-summary-box p,
.article-table td {
  color: #244e78;
}

.article-summary-box dt {
  color: #42698e;
}

.article-table th,
.article-table tbody th {
  color: #073d75;
}

.article-body ul {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.article-body li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.8;
}

.article-body li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-strong);
  content: "";
}

.article-number-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
  counter-reset: articleStep;
}

.article-number-list li {
  position: relative;
  padding: 24px 0 24px 74px;
  border-top: 1px solid var(--line);
  counter-increment: articleStep;
}

.article-number-list li::before {
  position: absolute;
  top: 24px;
  left: 0;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  content: counter(articleStep, decimal-leading-zero);
  font-size: 13px;
  font-weight: 900;
}

.article-number-list strong,
.article-checklist h3 {
  display: block;
  color: #111827;
  font-size: 20px;
  line-height: 1.45;
}

.article-number-list p,
.article-checklist p {
  margin-top: 10px;
}

.article-checklist {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 0 30px 0 30px;
  background: var(--line);
}

.article-checklist div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px 20px;
  padding: 26px;
  background: #ffffff;
}

.article-checklist span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #ffdf2e;
  color: #143e68;
  font-size: 13px;
  font-weight: 900;
}

.article-checklist p {
  grid-column: 2;
}

.article-example {
  margin-top: 28px;
  padding: 30px 0 30px 28px;
  border-left: 5px solid var(--accent-strong);
  background: linear-gradient(90deg, rgba(16, 200, 245, 0.08), transparent);
}

.article-example p {
  color: var(--text);
  font-weight: 700;
}

.article-example strong {
  color: var(--accent-strong);
}

.article-layer-model {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 0 30px 0 30px;
  background: var(--line);
}

.article-layer-model div {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 154px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
}

.article-layer-model span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.article-layer-model strong {
  color: #111827;
  font-size: 18px;
  line-height: 1.5;
}

.metric-table {
  min-width: 920px;
}

.article-warning-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid #ffe677;
  border-radius: 0 30px 0 30px;
  background: #ffe677;
}

.article-warning-list p {
  margin-top: 0;
  padding: 20px 24px;
  background: #fffbea;
  color: var(--text);
}

.article-warning-list strong {
  display: block;
  margin-bottom: 6px;
  color: #6d4b00;
}

.article-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.article-table {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
  border-collapse: collapse;
}

.metric-table {
  min-width: 920px;
}

.article-table th,
.article-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}

.article-table thead th {
  background: #f6fbff;
  color: var(--text);
  font-weight: 900;
}

.article-table tbody th {
  width: 112px;
  color: var(--text);
  font-weight: 900;
}

.article-table tbody tr:last-child th,
.article-table tbody tr:last-child td {
  border-bottom: 0;
}

.article-highlight {
  margin-top: 34px;
  padding: 26px 0 26px 26px;
  border-left: 5px solid #ffdf2e;
}

.article-highlight strong,
.article-next span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.article-next {
  margin-top: 70px;
  padding: 42px 0;
  border-top: 2px solid var(--accent-strong);
  border-bottom: 1px solid var(--line);
}

.article-next h2 {
  margin-top: 12px;
  padding-top: 0;
  border-top: 0;
}

.article-next .actions {
  margin-top: 28px;
}

.form-wire {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 0;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.field {
  min-height: 54px;
  border: 1px solid rgba(0, 142, 220, 0.16);
  border-radius: 12px;
  background: #f3fbff;
}

.field.large {
  min-height: 140px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 142, 220, 0.2);
  border-radius: 12px;
  background: #f8fdff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 152, 232, 0.14);
}

h3 {
  color: #111827;
}

.demo-value-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e7f7ff 100%);
  box-shadow: var(--shadow);
}

.demo-value-copy p {
  margin-top: 16px;
  color: var(--muted);
}

.demo-value-list {
  display: grid;
  gap: 12px;
}

.demo-value-list div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.demo-value-list div:last-child {
  border-bottom: 0;
}

.demo-value-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 900;
}

.demo-value-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.demo-pricing-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.demo-pricing-strip div {
  padding: 30px;
  background: #ffffff;
}

.demo-pricing-strip span,
.demo-theme-lanes span,
.demo-assurance span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.demo-pricing-strip strong {
  display: block;
  color: #111827;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.demo-pricing-strip p {
  margin-top: 10px;
  color: var(--muted);
}

.demo-theme-lanes {
  display: grid;
  gap: 18px;
}

.demo-theme-lane {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.demo-theme-lane:last-child {
  border-bottom: 1px solid var(--line);
}

.demo-theme-lane p {
  color: var(--muted);
}

.demo-assurance {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px;
  border-radius: 24px;
  background: #fff8e1;
}

.demo-assurance ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.demo-assurance li {
  position: relative;
  padding-left: 28px;
  color: #4f3600;
}

.demo-assurance li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffdf2e;
  color: #4f3600;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.footer {
  background:
    radial-gradient(
      circle at 6% 20%,
      rgba(255, 255, 255, 0.08) 0 92px,
      transparent 94px
    ),
    #17212a;
  border-top: 0;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  padding-top: 44px;
  padding-bottom: 44px;
}

@media (max-width: 980px) {
  .hero-grid,
  .hero-compact,
  .hero-text-only,
  .section-head,
  .card-grid,
  .card-grid.two,
  .blog-featured,
  .blog-grid,
  .article-hero-grid,
  .article-layout,
  .pricing-main,
  .price-scope,
  .price-ledger div,
  .feature-group-head,
  .feature-group .card-grid,
  .flow,
  .impact-map-header,
  .impact-row,
  .comparison-mini,
  .assurance-grid,
  .split-cta,
  .signal-split,
  .ops-readiness,
  .ops-effect-line,
  .status-row,
  .decision-checks,
  .ops-faq-lines div,
  .usecase-river,
  .river-line,
  .department-lane,
  .route-board,
  .route-line,
  .contact-lines,
  .contact-line,
  .contact-price-band,
  .company-lines div,
  .contact-flow,
  .faq-strip,
  .usecase-cta,
  .demo-value-band,
  .demo-pricing-strip,
  .demo-theme-lane,
  .demo-assurance {
    grid-template-columns: 1fr;
  }
  .signal-copy {
    position: static;
  }
  .ops-readiness-copy {
    position: static;
  }
  .pricing-lead {
    position: static;
  }
  .river-head {
    position: static;
  }
  .river-line i {
    width: 48px;
    transform: rotate(90deg);
  }
  .department-lane .cta-link {
    justify-self: start;
  }
  .route-line span {
    transform: rotate(90deg);
  }
  .contact-line {
    gap: 8px;
    padding: 24px 0;
  }
  .contact-price-band {
    justify-items: start;
  }
  .company-lines div {
    gap: 8px;
  }
  .contact-flow {
    gap: 28px;
    padding-top: 0;
    padding-left: 58px;
  }
  .contact-flow::before {
    top: 24px;
    bottom: 24px;
    left: 23px;
    width: 4px;
    height: auto;
  }
  .contact-step {
    justify-items: start;
    min-height: 120px;
    padding: 0;
    text-align: left;
  }
  .contact-step::before {
    position: absolute;
    top: 0;
    left: -58px;
    margin-bottom: 0;
  }
  .cv-actions {
    flex-direction: column;
  }
  .blog-featured {
    min-height: 520px;
    border-radius: 0 42px 0 42px;
  }
  .blog-featured-copy {
    width: 100%;
    min-height: 520px;
    padding: 34px;
  }
  .blog-featured-side {
    right: 28px;
    bottom: 28px;
    min-width: 0;
  }
  .article-hero-grid {
    gap: 32px;
    margin-top: 30px;
  }
  .article-hero-copy h1 {
    font-size: clamp(34px, 8vw, 52px);
  }
  .article-summary-box dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-hero-image {
    max-width: 520px;
    border-radius: 24px;
    transform: none;
  }
  .article-side {
    position: static;
  }
  .article-layer-model {
    grid-template-columns: 1fr;
  }
  .metric-storyline,
  .knowledge-role-map,
  .metric-design-board,
  .metric-benchmark-strip {
    grid-template-columns: 1fr;
  }
  .metric-storyline i {
    width: 2px;
    height: 34px;
    justify-self: center;
    background: linear-gradient(180deg, #10c8f5, #0056c8);
  }
  .metric-storyline i::after {
    top: auto;
    right: 50%;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }
  .metric-cluster {
    grid-template-columns: 1fr;
  }
  .metric-cluster > p,
  .metric-cluster dl {
    grid-column: auto;
    grid-row: auto;
  }
  .metric-cluster dl {
    grid-template-columns: 1fr;
  }
  .metric-action-flow div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .poc-question-strip,
  .poc-rule-board,
  .poc-stop-map,
  .poc-small-start {
    grid-template-columns: 1fr;
  }
  .poc-minimum-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .poc-minimum-flow i {
    display: none;
  }
  .poc-ai-flow div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .article-checklist div {
    grid-template-columns: 1fr;
  }
  .article-checklist p {
    grid-column: auto;
  }
  .faq-q {
    font-size: 16px;
  }
  .infographic-grid {
    flex-direction: column;
    padding-top: 0;
    padding-left: 56px;
  }
  .infographic-grid::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #10c8f5, #0056c8);
  }
  .infographic-card {
    padding: 0 0 40px 0;
    text-align: left;
  }
  .infographic-card:last-child {
    padding-bottom: 0;
  }
  .infographic-card::before {
    top: 0;
    left: -56px;
    transform: none;
  }
  .impact-arrow {
    min-height: 34px;
    transform: rotate(90deg);
  }
  .flow {
    gap: 28px;
    padding: 0 0 0 58px;
  }
  .flow::before {
    top: 24px;
    bottom: 24px;
    left: 23px;
    width: 4px;
    height: auto;
  }
  .flow-stage {
    justify-items: start;
    min-height: 120px;
    padding: 0;
    text-align: left;
  }
  .flow-stage::before {
    position: absolute;
    top: 0;
    left: -58px;
    margin-bottom: 0;
  }
  .flow-stage p {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
  .impact-arrow-head {
    display: none;
  }
  .wire-block.large {
    grid-column: auto;
  }
  .nav {
    display: none;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand {
    flex: 1;
  }
  .brand-symbol {
    width: 34px;
    height: 34px;
  }
  .brand-symbol img {
    width: 26px;
    height: 26px;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    flex-shrink: 0;
  }
  .header-actions {
    display: none;
  }
  .site-header.menu-open .nav,
  .site-header.menu-open .header-actions {
    display: flex;
  }
  .site-header.menu-open .nav {
    order: 3;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .nav a {
    padding: 12px 14px;
    border-radius: 12px;
    opacity: 1;
  }
  .site-header.menu-open .nav a:hover {
    background: var(--accent-soft);
  }
  .site-header.menu-open .header-actions {
    order: 4;
    width: 100%;
    gap: 10px;
  }
  .site-header.menu-open .header-actions .btn {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .header-actions,
  .actions,
  .btn {
    width: 100%;
  }
  .mobile-menu-toggle {
    width: 46px;
  }
  .btn {
    flex: 1;
  }
  .site-header .header-inner {
    align-items: center;
    flex-direction: row;
    min-height: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .site-header .mobile-menu-toggle {
    width: 42px;
  }
  .site-header .btn {
    width: auto;
    flex: 0 0 auto;
  }
  .site-header.menu-open .header-actions .btn {
    width: 100%;
    flex: 1;
  }
  .section-inner {
    padding: 72px 20px;
  }
  .wire-grid,
  .table-row {
    grid-template-columns: 1fr;
  }
}
