/* ============================================================
   INNER PAGES — shared layout for Products / Product / Platform
   / Technology & Architecture / Use Cases — Finance & Banking
   Reuses tokens from styles.css. Mobile-first, no build step.
   ============================================================ */

/* ---------- Page hero (shared) ---------- */
.page-hero {
  position: relative;
  padding: 96px 0 64px;
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(60% 60% at 100% 0%, rgba(0,60,255,.06), transparent 60%),
    radial-gradient(50% 50% at 0% 0%, rgba(135,223,255,.18), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: var(--fs-micro);
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero-title {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: var(--fw-semibold);
  max-width: 880px;
  margin: 0 0 18px;
}
.page-hero-title .accent { color: var(--accent); }
.page-hero-lead {
  max-width: 720px;
  font-size: var(--fs-lead);
  color: var(--ink-2);
  line-height: 1.55;
}
.page-hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ---------- Breadcrumbs ---------- */
.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: var(--fs-micro);
  color: var(--ink-3);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.crumbs a { color: var(--ink-3); transition: color .2s; }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: var(--gray-400); }
.crumbs .current { color: var(--ink); }

/* ---------- Generic section wrapper ---------- */
.page-section { padding: 80px 0; }
.page-section.tight { padding: 56px 0; }
.page-section.dark { background: var(--gray-50); }
.page-section.deep { background: #050519; color: #fff; }
.page-section.deep .section-eyebrow { color: var(--aqua); }
.page-section.deep .section-title, .page-section.deep h2, .page-section.deep h3 { color: #fff; }
.page-section.deep .section-lead, .page-section.deep p { color: rgba(255,255,255,.74); }

.section-head.left { text-align: left; max-width: 760px; margin: 0 0 36px; }
.section-eyebrow.brand { color: var(--accent); }

/* ---------- Products catalogue grid ---------- */
.products-group { margin-top: 56px; }
.products-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.products-group-title {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.018em;
}
.products-group-meta {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.products-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(0,60,255,.25);
}
.product-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(0,60,255,.08), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.product-card:hover::after { opacity: 1; }
.product-card .pc-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #0042a8);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.product-card .pc-ico svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.product-card h3 {
  font-size: 17px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.product-card p {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}
.product-card .pc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--accent);
}
.product-card .pc-link .arrow { transition: transform .25s; }
.product-card:hover .pc-link .arrow { transform: translateX(3px); }

/* ---------- Two-column split with rule example ---------- */
.split-two {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 880px) { .split-two { grid-template-columns: 1fr; gap: 36px; } }

.prose h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: var(--fw-medium);
  margin: 0 0 16px;
}
.prose h3 {
  font-size: 20px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
  margin: 28px 0 10px;
}
.prose p {
  color: var(--ink-2);
  line-height: 1.65;
  font-size: var(--fs-body);
  margin-bottom: 14px;
}
.prose p strong { color: var(--ink); font-weight: var(--fw-semibold); }
.prose ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 18px;
}
.prose ul li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-2);
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 10px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 11L3 7.5l1-1L6.5 9 12 3.5l1 1z'/></svg>") center/12px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 11L3 7.5l1-1L6.5 9 12 3.5l1 1z'/></svg>") center/12px no-repeat;
}

/* ---------- Plain-language rule snippet ---------- */
.rule-card {
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.rule-card .rule-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: var(--fs-micro);
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rule-card .rule-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,60,255,.12);
}
.rule-card .rule-title {
  font-size: 14px;
  color: var(--ink);
  font-weight: var(--fw-semibold);
  margin-bottom: 12px;
}
.rule-card pre {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.7;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.rule-card pre .kw { color: var(--accent); font-weight: var(--fw-medium); }
.rule-card pre .num { color: #b54708; }
.rule-card .rule-meta {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: var(--fs-xs);
  color: var(--ink-3);
}
.rule-card .rule-meta b { color: var(--ink); font-weight: var(--fw-medium); }

/* ---------- Before / After contrast card ---------- */
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 720px) { .contrast-grid { grid-template-columns: 1fr; } }
.contrast-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.contrast-card.is-before { background: var(--gray-75); }
.contrast-card.is-after {
  border-color: rgba(0,60,255,.25);
  background: linear-gradient(180deg, #fff, #fafbff);
}
.contrast-card .ct-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: var(--fs-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.contrast-card.is-after .ct-label { color: var(--accent); }
.contrast-card h4 {
  font-size: 17px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.contrast-card .ct-list { list-style: none; padding: 0; margin: 0; }
.contrast-card .ct-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  color: var(--ink-2);
  font-size: var(--fs-sm);
  line-height: 1.5;
}
.contrast-card .ct-list li:first-child { border-top: 0; }
.contrast-card .ct-list li .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-3);
  margin-top: 9px;
  flex-shrink: 0;
}
.contrast-card.is-after .ct-list li .dot { background: var(--accent); }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  margin: 48px 0;
}
@media (max-width: 720px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stats-strip .stat-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-strip .stat-cell:last-child { border-right: 0; }
@media (max-width: 720px) {
  .stats-strip .stat-cell:nth-child(2n) { border-right: 0; }
}
.stats-strip .v {
  font-size: 34px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stats-strip .v .unit { color: var(--accent); }
.stats-strip .l {
  margin-top: 6px;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.45;
}

/* ---------- Numbered steps (How it works) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 880px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
}
.step-card .step-n {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--ink-3);
  letter-spacing: .08em;
}
.step-card h4 {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
  margin: 8px 0 10px;
}
.step-card p {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.55;
}

/* ---------- Layer stack (Tech & Architecture) ---------- */
.layer-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 48px;
  counter-reset: layer;
}
.layer-row {
  display: grid;
  grid-template-columns: 56px 1fr 1.4fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: border-color .25s, transform .25s;
}
.layer-row:hover { border-color: var(--accent); transform: translateX(2px); }
.layer-row .layer-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #0042a8);
  color: #fff;
  font-weight: var(--fw-semibold);
  font-size: 16px;
}
.layer-row .layer-label {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
}
.layer-row .layer-label .codename {
  display: block;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--ink-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: var(--fw-regular);
}
.layer-row .layer-desc {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.55;
}
@media (max-width: 720px) {
  .layer-row { grid-template-columns: 40px 1fr; }
  .layer-row .layer-desc { grid-column: 1 / -1; }
}

/* ---------- Services table (Tech & Architecture) ---------- */
.svc-table {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.svc-row {
  display: grid;
  grid-template-columns: 180px 200px 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc-row:first-child { border-top: 0; background: var(--gray-50); }
.svc-row > div { padding: 18px 22px; }
.svc-row .svc-name {
  font-weight: var(--fw-semibold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: var(--fs-sm);
  letter-spacing: -.005em;
}
.svc-row .svc-role {
  font-size: var(--fs-sm);
  color: var(--ink);
  font-weight: var(--fw-medium);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.svc-row .svc-detail {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.55;
}
.svc-row:first-child .svc-name,
.svc-row:first-child .svc-role,
.svc-row:first-child .svc-detail {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: var(--fw-medium);
}
@media (max-width: 720px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row > div { padding: 14px 18px; border-top: 1px dashed var(--line); }
  .svc-row > div:first-child { border-top: 0; }
  .svc-row .svc-role { border-left: 0; border-right: 0; }
}

/* ---------- Two-engine card (Cognitive vs Deterministic) ---------- */
.engines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 720px) { .engines { grid-template-columns: 1fr; } }
.engine-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.engine-card.cortex {
  background: linear-gradient(160deg, rgba(135,223,255,.18), #fff 65%);
}
.engine-card.conductor {
  background: linear-gradient(160deg, rgba(0,60,255,.10), #fff 65%);
}
.engine-card .e-name {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.engine-card h3 {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  margin: 6px 0 6px;
  letter-spacing: -0.018em;
}
.engine-card .e-type {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  margin-bottom: 16px;
}
.engine-card p {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.6;
}
.engine-card .e-used-for {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: var(--fs-xs);
  color: var(--ink-3);
}
.engine-card .e-used-for b { color: var(--ink); font-weight: var(--fw-medium); }

/* ---------- Sovereignty diagram (Control vs Data plane) ---------- */
.planes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  background: #050519;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.planes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(135,223,255,.15), transparent 60%);
  pointer-events: none;
}
@media (max-width: 720px) { .planes { grid-template-columns: 1fr; } }
.plane {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
  position: relative;
}
.plane.data-plane { border-color: var(--aqua); }
.plane .plane-tag {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.plane.data-plane .plane-tag { color: var(--aqua); }
.plane h4 {
  font-size: 20px;
  font-weight: var(--fw-semibold);
  margin: 8px 0 16px;
}
.plane ul { list-style: none; padding: 0; margin: 0; }
.plane ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.75);
  padding: 8px 0;
  border-top: 1px dashed rgba(255,255,255,.1);
}
.plane ul li:first-child { border-top: 0; }
.plane ul li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  margin-top: 7px;
  flex-shrink: 0;
}
.plane.data-plane ul li::before { background: var(--aqua); }

/* ---------- Comparison table (Tech & Architecture / Platform) ---------- */
/* Open comparison table (no outer box) — see overrides block below for details. */
.cmp-table { margin-top: 40px; }
.cmp-row {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.35fr;
  align-items: center;
}
.cmp-row > div { padding: 16px 8px; font-size: var(--fs-sm); line-height: 1.5; }
.cmp-row .cmp-dim { font-weight: var(--fw-medium); color: var(--ink); }
.cmp-row .cmp-old { color: var(--ink-2); }
.cmp-row .cmp-new { color: var(--ink); }
@media (max-width: 720px) {
  .cmp-row { grid-template-columns: 1fr; row-gap: 4px; padding: 10px 0; }
  .cmp-row > div { padding: 4px 0; }
  .cmp-row.cmp-head { display: none; }
}

/* ---------- Industry segment card (Use cases page) ---------- */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 880px) { .segments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .segments-grid { grid-template-columns: 1fr; } }
.segment-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
}
.segment-card.active {
  border-color: var(--accent);
  background: linear-gradient(170deg, rgba(0,60,255,.05), #fff 60%);
}
.segment-card .seg-tag {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.segment-card.active .seg-tag { color: var(--accent); }
.segment-card h3 {
  font-size: 19px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
  margin: 8px 0 8px;
}
.segment-card p {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.55;
}
.segment-card .seg-status {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.segment-card.active .seg-status {
  color: var(--accent);
  border-color: rgba(0,60,255,.25);
  background: rgba(0,60,255,.05);
}

/* ---------- Solution row (Use cases page) ---------- */
.sol-list { margin-top: 56px; }
.sol-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.sol-row:first-child { border-top: 0; padding-top: 0; }
@media (max-width: 880px) { .sol-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; } }
.sol-row .sol-meta { position: sticky; top: 96px; }
@media (max-width: 880px) { .sol-row .sol-meta { position: static; } }
.sol-row .sol-meta .sol-n {
  display: inline-block;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: .12em;
}
.sol-row .sol-meta h3 {
  font-size: 26px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
  line-height: 1.15;
}
.sol-row .sol-meta p {
  font-size: var(--fs-body);
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 18px;
}
.sol-row .sol-meta .sol-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--accent);
}

/* ---------- Two-band sub-section anchor for product pages ---------- */
.anchor-toc {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: var(--bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-top: 40px;
  position: sticky;
  top: 84px;
  z-index: 5;
}
.anchor-toc a {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  font-weight: var(--fw-medium);
  transition: color .2s;
}
.anchor-toc a:hover { color: var(--accent); }

/* ---------- Pull quote (used in product pages) ---------- */
.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-weight: var(--fw-medium);
}
.pull-quote .em { color: var(--accent); }

/* NOTE: the static "light band CTA" rules that lived here used `.cta-band`, which
   COLLIDES with the real CTA component's section class (template-parts/cta/light-band.php,
   styled in blog.css). Since inner-pages.css loads after blog.css on Section Builder pages,
   they overrode the component and broke its layout. Removed — use the CTA component. */

/* ---------- Process flow visual (Platform page) ---------- */
.process-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pf-step {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
}
.pf-step + .pf-step { margin-left: -1px; }
.pf-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 14px;
  z-index: 2;
}
@media (max-width: 720px) {
  .pf-step:not(:last-child)::after { display: none; }
}
.pf-step .pf-n {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  color: var(--accent);
  letter-spacing: .08em;
}
.pf-step h5 {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  margin: 6px 0 6px;
}
.pf-step p {
  font-size: var(--fs-xs);
  color: var(--ink-2);
  line-height: 1.5;
}

/* ---------- What runs on Cornytis grid ---------- */
.runs-on-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 720px) { .runs-on-grid { grid-template-columns: 1fr; } }
.runs-on-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.runs-on-card h4 {
  font-size: 19px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.018em;
  margin-bottom: 8px;
}
.runs-on-card .ro-sub {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  color: var(--ink-3);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.runs-on-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.runs-on-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  font-size: var(--fs-sm);
}
.runs-on-card ul li:first-child { border-top: 0; }
.runs-on-card ul li a { color: var(--ink); transition: color .2s; flex: 1; }
.runs-on-card ul li a:hover { color: var(--accent); }
.runs-on-card ul li .ro-arrow {
  color: var(--ink-3);
  transition: color .2s, transform .2s;
}
.runs-on-card ul li a:hover ~ .ro-arrow,
.runs-on-card ul li:hover .ro-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ---------- Section spacing tweaks for inner pages ---------- */
.inner-section + .inner-section { border-top: 1px solid var(--line); }
.inner-section { padding: 96px 0; }
.inner-section.dark { background: var(--gray-50); border-top: 1px solid var(--line); }
.inner-section.deep {
  background: #050519;
  color: #fff;
  border-top: 0;
  padding: 96px 0;
}
.inner-section.deep h2 { color: #fff; }
.inner-section.deep p, .inner-section.deep .section-lead { color: rgba(255,255,255,.74); }
.inner-section.deep .section-eyebrow { color: var(--aqua); }
.inner-section.deep .layer-row {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}
.inner-section.deep .layer-row .layer-desc { color: rgba(255,255,255,.7); }
.inner-section.deep .layer-row .layer-label .codename { color: var(--aqua); }
.inner-section.deep .layer-row:hover { border-color: var(--aqua); }

@media (max-width: 640px) {
  .inner-section { padding: 64px 0; }
  .page-section { padding: 56px 0; }
  .page-hero { padding: 56px 0 40px; }
}

/* ============================================================
   OPERATIONAL EXECUTION — screenshot-specific overrides + visuals
   (Appended; loaded only on Section Builder pages.)
   ============================================================ */

/* ---------- Centered product hero + corner-curve pattern ---------- */
.page-hero.is-centered { text-align: center; padding: 132px 0 148px; }
/* Fade the pattern toward the bottom so it doesn't hard-cut at the hero edge. */
.page-hero .about-hero-pattern {
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 38%, transparent 70%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 38%, transparent 70%);
}
.page-hero.is-centered .container { position: relative; z-index: 1; }
.page-hero.is-centered .page-hero-title {
  max-width: 920px;
  margin: 0 auto 24px;
  line-height: 1.06;
}
.page-hero.is-centered .page-hero-lead { max-width: 560px; margin: 0 auto; }
.page-hero.is-centered .page-hero-cta { justify-content: center; margin-top: 50px; gap: 14px; }

/* Eyebrow as a pill (same treatment as the About hero eyebrow) */
.page-hero.is-centered .page-hero-eyebrow {
  background: rgba(7, 87, 255, 0.10);
  padding: 6px 14px;
  border-radius: var(--b-radius-8);
  margin-bottom: 28px;
}

/* Gradient fill on the accent word(s) */
.page-hero-title .accent {
  background: linear-gradient(96deg, #3E74FF 0%, #003CFF 70%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

/* Sticky anchor-tab bar — floats below the main nav while scrolling the page */
.anchor-toc-bar {
  position: sticky;
  top: 90px;
  z-index: 20;
  display: flex;
  justify-content: center;
  margin: -52px 0 40px;
  padding: 0 20px;
  pointer-events: none;
  /* Entrance is opacity-only: a lingering transform here (e.g. from .fade)
     would become the backdrop root and break the child's backdrop-filter blur. */
  animation: toc-fade .6s ease .24s both;
}
@keyframes toc-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .anchor-toc-bar { animation: none; } }
.anchor-toc-bar .anchor-toc {
  position: static;
  margin: 0;
  pointer-events: auto;
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  max-width: 100%;
  box-shadow: 0 14px 34px -18px rgba(8, 8, 48, 0.30);
}
.anchor-toc a { padding: 8px 16px; border-radius: 999px; }
.anchor-toc a.is-active { background: var(--gray-75); color: var(--ink); }
/* Hide the sticky anchor nav on mobile (when the main nav collapses to the burger). */
@media (max-width: 960px) {
  .anchor-toc-bar { display: none; }
  .page-hero.is-centered { padding-bottom: 64px; }
}

/* ---------- How it works: heading left + note right ---------- */
.how-steps-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.how-steps-headline .section-eyebrow { display: inline-block; margin-bottom: 12px; }
.how-steps-headline .section-title { margin: 0; }
.how-steps-note { margin: 0; align-self: end; }
@media (max-width: 880px) { .how-steps-head { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Operating model: image left, prose right ---------- */
.om-split { align-items: center; }
.om-media { margin: 0; border-radius: var(--b-radius-20); overflow: hidden; }
.om-media img { display: block; width: 100%; height: auto; }
.om-media.is-empty { min-height: 420px; background: var(--gray-100); }

/* ---------- Problem section: light-blue bg + masked square pattern ---------- */
.problem-section {
  position: relative;
  background: linear-gradient(180deg, #EAF7FF 0%, #F4FAFF 55%, #FFFFFF 100%);
  overflow: hidden;
}
/* Reuse the how-it-works squares pattern, tinted faint blue + faded toward the
   right (its strokes are near-white, so we use it as a mask over a blue fill). */
.problem-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 60, 255, 0.10);
  -webkit-mask:
    url("../graphics/squares-pattern.svg") top center / 1600px auto repeat,
    linear-gradient(90deg, #000 0%, #000 42%, rgba(0, 0, 0, 0) 72%);
  -webkit-mask-composite: source-in;
          mask:
    url("../graphics/squares-pattern.svg") top center / 1600px auto repeat,
    linear-gradient(90deg, #000 0%, #000 42%, rgba(0, 0, 0, 0) 72%);
          mask-composite: intersect;
}
.problem-section .container { position: relative; z-index: 1; }
.problem-split { align-items: center; grid-template-columns: 0.92fr 1.08fr; }

/* ---------- Dashboard (browser mock) ---------- */
.exec-dash-frame {
  width: 100%;            /* bleeds off the right edge (section clips) */
  background: linear-gradient(180deg, #DCEEFF 0%, #E9F3FF 100%);
  border-radius: 26px;
  padding: 16px;
  /* box-shadow: 0 44px 90px -48px rgba(8, 8, 48, 0.34); */
}
.exec-dash {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.exec-dash-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.exec-dot { width: 10px; height: 10px; border-radius: 50%; background: #D7D7E0; }
.exec-dash-url {
  margin-left: auto;
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  background: var(--gray-50); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.exec-dash-body { padding: 20px; }
.exec-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.exec-chip {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; background: #fff;
}
.exec-chip-tag { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.exec-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; border: 1px solid transparent;
}
.exec-badge i { width: 6px; height: 6px; border-radius: 50%; }
.exec-badge.is-ok   { color: var(--accent); border-color: rgba(0,60,255,.3);   background: rgba(0,60,255,.05); }
.exec-badge.is-ok i { background: var(--accent); }
.exec-badge.is-warn   { color: #9a6700; border-color: rgba(245,158,11,.35); background: rgba(245,158,11,.07); }
.exec-badge.is-warn i { background: #F59E0B; }
.exec-badge.is-err   { color: #c0392b; border-color: rgba(220,38,38,.30);  background: rgba(220,38,38,.05); }
.exec-badge.is-err i { background: #DC2626; }
.exec-chip-title { font-size: 13px; font-weight: var(--fw-medium); color: var(--ink); line-height: 1.3; }
.exec-chip-status { font-size: 11px; color: var(--ink-3); }

.exec-flow { margin-top: 16px; border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.exec-flow-title { font-size: 15px; font-weight: var(--fw-medium); color: var(--ink); margin-bottom: 14px; }
.exec-flow-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.exec-step {
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: #fff;
  min-height: 86px;
}
.exec-step-t { font-size: 13px; color: var(--ink); line-height: 1.35; font-weight: var(--fw-medium); }
.exec-step-n { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: auto; }
.exec-step-n.is-active { color: var(--accent); }

@media (max-width: 880px) {
  .problem-split { grid-template-columns: 1fr; }
  .exec-dash-frame { width: 100%; }
}
@media (max-width: 560px) {
  .exec-board, .exec-flow-steps { grid-template-columns: 1fr; }
}

/* ---------- What changes (dark navy band) ---------- */
.what-changes {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
}
.what-changes::before, .what-changes::after {
  content: ""; position: absolute; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #87DFFF 20%, #003CFF 50%, #87DFFF 80%, rgba(255,255,255,0) 100%);
  box-shadow: 0 0 20px rgba(135,223,255,.5); z-index: 2;
}
.what-changes::before { top: 0; } .what-changes::after { bottom: 0; }
.what-changes .container { position: relative; z-index: 1; }
.what-changes .wc-head { text-align: center; max-width: none; margin: 0 auto 48px; }
.what-changes .wc-head .section-eyebrow {
  display: inline-block;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--aqua);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px; border-radius: var(--b-radius-8);
  margin-bottom: 22px;
}
.what-changes .wc-title { color: #fff; font-size: clamp(34px, 4.6vw, 56px); line-height: 1.08; letter-spacing: -0.02em; }

/* Stats — centered, no divider lines, prominent unit */
.wc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 8px; }
.wc-stat { text-align: center; }
.wc-stat-v {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  font-family: var(--mono); font-weight: var(--fw-regular);
  font-size: clamp(40px, 4.6vw, 58px); line-height: 1; letter-spacing: -0.02em;
  color: var(--aqua-light);
}
.wc-stat-unit { font-size: 0.56em; color: var(--aqua-light); letter-spacing: 0; }
.wc-stat-l { margin: 16px auto 0; max-width: 22ch; font-size: var(--fs-sm); color: rgba(255,255,255,.6); line-height: 1.5; }

/* Team cards */
.wc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.wc-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--b-radius-20);
  padding: 28px 28px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.wc-card-sub { font-family: var(--mono); font-size: var(--fs-micro); letter-spacing: .12em; text-transform: uppercase; color: var(--aqua); }
.wc-card-head { display: flex; align-items: center; gap: 14px; margin: 18px 0 16px; }
.wc-card-ico {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(135,223,255,.08); border: 1px solid rgba(135,223,255,.20);
  color: var(--aqua);
}
.wc-card-ico svg { width: 20px; height: 20px; }
.wc-card h4 { margin: 0; font-size: var(--fs-h3); font-weight: var(--fw-medium); color: #fff; }
.wc-card ul { list-style: none; margin: 0; padding: 0; }
.wc-card li {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 4px; font-size: var(--fs-sm); color: rgba(255,255,255,.78); line-height: 1.45;
  border-top: 1px solid rgba(255,255,255,.07);
}
.wc-card li:first-child { border-top: 0; }
.wc-bullet-ico {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 7px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  color: var(--aqua);
}
.wc-bullet-ico svg { width: 13px; height: 13px; }

.wc-actions { display: flex; gap: 12px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.wc-btn-secondary { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.20); }
.wc-btn-secondary:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- Comparison section (Traditional vs Cornytis) ---------- */
.comparison-section {
  position: relative;
  background: linear-gradient(180deg, #EAF7FF 0%, #F2F8FF 60%, #F6FBFF 100%);
}

/* Header row: icon + Dimension (left), centered platform/Cornytis headers, divider. */
.cmp-row.cmp-head { border-bottom: 1px solid rgba(8, 8, 48, 0.10); align-items: end; }
.cmp-row.cmp-head > div { padding-bottom: 18px; }
.cmp-dim-head { display: flex; align-items: center; gap: 12px; font-weight: var(--fw-medium); color: var(--ink); font-size: var(--fs-body); }
.cmp-dim-ico {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(0, 60, 255, 0.08); color: var(--accent);
}
.cmp-dim-ico svg { width: 18px; height: 18px; }
.cmp-h { text-align: left; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.cmp-h strong { font-size: var(--fs-body); font-weight: var(--fw-medium); color: var(--ink); }
.cmp-h span { font-size: var(--fs-sm); color: var(--ink-3); }
.cmp-h.cmp-h-brand { position: relative; overflow: hidden;}
/* Cornytis column stands out: solid brand blue + a leading brand dot + soft glow. */
.cmp-h.cmp-h-brand strong {
  color: var(--accent);
  font-weight: var(--fw-semibold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cmp-h.cmp-h-brand strong::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 60, 255, 0.14);
}
.cmp-h.cmp-h-brand span { color: var(--ink); }
/* Soft glow behind the Cornytis column header. */
.cmp-h.cmp-h-brand::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 16px;
    width: 100%;
    height: 150px;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 60, 255, 0.16), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Value cells: left-aligned check + text. */
.cmp-old, .cmp-new { display: flex; align-items: center; gap: 10px; }
.cmp-check { width: 20px; height: 20px; flex: 0 0 auto; }
.cmp-old .cmp-check { color: var(--ink-3); }
.cmp-new .cmp-check { color: var(--accent); }

/* Footnote pill. */
.cmp-note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 40px; padding: 16px 22px;
  background: rgba(0, 60, 255, 0.05);
  border: 1px solid rgba(0, 60, 255, 0.10);
  border-radius: var(--b-radius-15);
}
.cmp-note-dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-top: 8px; }
.cmp-note p { margin: 0; font-size: var(--fs-sm); line-height: 1.55; color: var(--ink-2); }
.cmp-note .em { color: var(--accent); }
/* Title accent gradient (same as the other sections) */
.cmp-title .accent {
  background: linear-gradient(90deg, #0047FF 0%, #4D8CFF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.cmp-vlabel { display: none; }
@media (max-width: 720px) {
  /* Each dimension becomes a card; column headers are hidden, so each value
     gets its own Traditional / Cornytis label. */
  .cmp-table { margin-top: 28px; }
  .cmp-row {
    display: block;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(8, 8, 48, 0.06);
    border-radius: var(--b-radius-15);
    padding: 16px 18px;
    margin-bottom: 14px;
  }
  .cmp-row.cmp-head { display: none; }
  .cmp-row .cmp-dim { padding: 0; margin-bottom: 12px; font-size: var(--fs-body); font-weight: var(--fw-medium); }
  .cmp-old, .cmp-new { padding: 7px 0; flex-wrap: wrap; align-items: center; }
  .cmp-vlabel {
    display: block; flex: 0 0 100%;
    font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink-3); margin-bottom: 5px;
  }
  .cmp-new .cmp-vlabel { color: var(--accent); }
}

/* ---------- Reveal animation (content-level, matches About/homepage) ---------- */
.inner-section[data-in-view] .prose,
.inner-section[data-in-view] .exec-dash,
.inner-section[data-in-view] .om-media,
.inner-section[data-in-view] .steps-grid,
.inner-section[data-in-view] .cmp-table,
.inner-section[data-in-view] .pull-quote,
.what-changes[data-in-view] .wc-head,
.what-changes[data-in-view] .wc-stats,
.what-changes[data-in-view] .wc-cards,
.what-changes[data-in-view] .wc-actions {
  opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease;
}
.inner-section.in-view .prose,
.inner-section.in-view .exec-dash,
.inner-section.in-view .om-media,
.inner-section.in-view .steps-grid,
.inner-section.in-view .cmp-table,
.inner-section.in-view .pull-quote,
.what-changes.in-view .wc-head,
.what-changes.in-view .wc-stats,
.what-changes.in-view .wc-cards,
.what-changes.in-view .wc-actions { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-in-view] * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 880px) {
  .wc-stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .wc-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .exec-board, .exec-flow-steps { grid-template-columns: 1fr; }
  .wc-stats { grid-template-columns: 1fr; }
}

/* Accent highlight in section titles / prose headings (blue, like the hero). */
.section-title .accent,
.prose h2 .accent {
  background: linear-gradient(90deg, #0047FF 0%, #4D8CFF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

/* ---------- How it works (steps) — screenshot refinements ---------- */
.how-steps-head { align-items: end; }
.how-steps-title {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.1;
  font-weight: var(--fw-medium);
  letter-spacing: -0.02em;
}
/* Gradient fill on the accent words */
.how-steps-title .accent {
  background: linear-gradient(90deg, #0047FF 0%, #4D8CFF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.how-steps-note {
  text-align: right;
  color: var(--ink-2);
  max-width: 420px;
  margin-left: auto;
}

/* Equal-height cards + more space between the card title and copy */
.steps-grid { align-items: stretch; gap: 24px; }
.step-card { display: flex; flex-direction: column; padding: 26px; }
.step-card h4 { margin: 14px 0 34px; font-weight: var(--fw-medium); }
.step-card p { margin: 0; }

/* Gradient connector line between cards (same gradient as the homepage beams) */
.steps-grid .step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -24px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #2E6BFF 0%, #5BD5FF 100%);
  box-shadow: 0 0 8px rgba(46, 107, 255, 0.55);
  z-index: 2;
}
@media (max-width: 880px) {
  .steps-grid .step-card:not(:last-child)::after { display: none; }
}

/* ---------- How it works (steps) — mobile ---------- */
@media (max-width: 880px) {
  /* note (content under heading) left-aligned when stacked */
  .how-steps-note { text-align: left; max-width: none; margin-left: 0; }
  /* don't force the accent onto its own line on smaller screens */
  .how-steps-title br { display: none; }
}
@media (max-width: 560px) {
  /* vertical gradient connectors between stacked cards */
  .steps-grid .step-card:not(:last-child)::after {
    display: block;
    top: auto;
    right: auto;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, #2E6BFF 0%, #5BD5FF 100%);
    box-shadow: 0 0 8px rgba(46, 107, 255, 0.55);
  }
}

/* ---------- Problem visual: admin image in a framed container + gray fallback ---------- */
.problem-visual {
  width: 100%;
  margin: 0;
  align-self: center;
  background: var(--gray-100);                 /* default / fallback */
  border: 1px solid var(--line);
  border-radius: var(--b-radius-20);
  box-shadow: 0 24px 50px -34px rgba(8, 8, 48, 0.25);
  overflow: hidden;
}
.problem-visual img { display: block; width: 100%; height: auto; }
.problem-visual.is-empty { min-height: 420px; }

/* ============================================================
   TECHNOLOGY & ARCHITECTURE page
   ============================================================ */

/* Section heads */
.section-head.center { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-head.center .section-eyebrow { display: inline-block; margin-bottom: 18px; }
.section-head.center .section-lead { margin: 0 auto; max-width: 64ch; }

.sec-head-2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: end; margin-bottom: 44px; }
.sec-head-2-main .section-eyebrow { display: inline-block; margin-bottom: 14px; }
.sec-head-2-main .section-title { margin: 0; }
.sec-head-2-note { margin: 0; text-align: right; align-self: end; color: var(--ink-2); }
@media (max-width: 880px) { .sec-head-2 { grid-template-columns: 1fr; gap: 14px; } .sec-head-2-note { text-align: left; } }

/* Dark deep sections: gradient strokes + eyebrow pill + buttons */
.tech-layers, .tech-sov { position: relative; isolation: isolate; }
.tech-layers::before, .tech-layers::after, .tech-sov::before, .tech-sov::after {
  content: ""; position: absolute; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #87DFFF 20%, #003CFF 50%, #87DFFF 80%, rgba(255,255,255,0) 100%);
  box-shadow: 0 0 20px rgba(135,223,255,.5); z-index: 2;
}
.tech-layers::before, .tech-sov::before { top: 0; }
.tech-layers::after, .tech-sov::after { bottom: 0; }
.tech-layers .container, .tech-sov .container { position: relative; z-index: 1; }
.inner-section.deep .section-eyebrow { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--aqua); }
.tech-cta { display: flex; gap: 12px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* Six-layer card grid */
.tech-layers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.tlc {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--b-radius-20);
  padding: 28px;
}
/* Graphic sits directly on the card (no inner box); fixed height keeps the meta rows aligned. */
.tlc-viz { height: 200px; display: grid; place-items: center; margin-bottom: 28px; }
.tlc-viz img { width: 100%; height: auto; max-height: 100%; display: block; }
.tlc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tlc-num { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.65); background: rgba(255,255,255,.06); border-radius: 6px; padding: 4px 9px; }
.tlc-name { color: #fff; font-weight: var(--fw-medium); font-size: var(--fs-h3); letter-spacing: -0.01em; }
.tlc-desc { color: rgba(255,255,255,.58); font-size: var(--fs-sm); line-height: 1.6; margin: 0 0 24px; }
.tlc-power { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: rgba(135,223,255,.85); text-transform: uppercase; margin-top: auto; }
.tlc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; box-shadow: 0 0 8px rgba(0,60,255,.6); }
@media (max-width: 880px) { .tech-layers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tech-layers-grid { grid-template-columns: 1fr; } }

/* Pull-quote banner on dark */
.tech-quote {
  position: relative;
  background: rgba(135,223,255,.06);
  border: 1px solid rgba(135,223,255,.16);
  border-left: 1px solid rgba(135,223,255,.16);
  border-radius: var(--b-radius-15);
  padding: 16px 22px 16px 42px;
  margin-top: 40px;
  color: rgba(255,255,255,.82);
  font-size: var(--fs-sm); line-height: 1.6;
}
.tech-quote::before { content: ""; position: absolute; left: 22px; top: 22px; width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); }
.tech-quote .em { color: var(--aqua); }

/* Execution-engine cards — reuse the About core-values card treatment */
.engines .engine-card,
.engine-card.cortex,
.engine-card.conductor {
  position: relative;
  border: 0;
  border-radius: var(--b-radius-20);
  padding: 30px;
  overflow: hidden;
  isolation: isolate;
}
.engine-card.cortex { background: var(--gray-100); }
.engine-card.conductor { background: #E9F3FF; }
.engine-symbol { position: absolute; top: -14px; right: -26px; width: 190px; opacity: 0.06; pointer-events: none; z-index: 0; }
.engine-symbol svg { width: 100%; height: auto; display: block; }
.engine-card > :not(.engine-symbol) { position: relative; z-index: 1; }
.engine-ico {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: var(--b-radius-10);
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(8, 8, 48, .05);
  color: var(--accent); margin-bottom: 22px;
}
.engine-ico svg { width: 24px; height: 24px; display: block; }
.engine-card h3 { font-size: var(--fs-h3); font-weight: var(--fw-medium); color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em; }
.engine-card .e-type { font-size: var(--fs-sm); color: var(--ink-2); margin-bottom: 16px; }
.engine-card p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; margin: 0; }
.engine-card .e-used-for {
  display: flex; align-items: center; gap: 8px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed rgba(8, 8, 48, .14);
  font-size: var(--fs-xs); color: var(--ink-2);
}
.engine-card .e-used-for .euf-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.engine-card .e-used-for b { color: var(--ink); font-weight: var(--fw-medium); }

/* Knowledge storage: vector/knowledge cards (equal height) + Regulatory Scope panel */
.store-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 8px; align-items: stretch; }
.store-card {
  display: flex; flex-direction: column;
  background: #EAF2FE; border: 0;
  border-radius: var(--b-radius-20); padding: 28px;
}
.store-ico {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: var(--b-radius-10);
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(8,8,48,.05);
  color: var(--accent); margin-bottom: 22px;
}
.store-ico svg { width: 24px; height: 24px; }
.store-card h3 { font-size: 26px; font-weight: var(--fw-medium); margin: 0; color: var(--ink); letter-spacing: -0.015em; }
.store-foot { margin-top: auto; padding-top: 40px; }   /* push tag + copy to the bottom */
.store-tag { display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--accent); margin-bottom: 12px; }
.store-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.store-card p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; margin: 0; }
/* Regulatory Scope reuses .arch-card; just keep it from forcing a wider min */
.store-scope { align-self: stretch; }
.store-scope .arch-card-grid { gap: 10px; }
@media (max-width: 880px) { .store-grid { grid-template-columns: 1fr; } }

/* Data sovereignty deployment table (dark) */
.deploy-table { margin-top: 28px; border: 1px solid rgba(255,255,255,.10); border-radius: var(--b-radius-15); overflow: hidden; }
.deploy-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.deploy-row > div { padding: 14px 20px; font-size: var(--fs-sm); color: rgba(255,255,255,.72); line-height: 1.5; border-top: 1px solid rgba(255,255,255,.07); }
.deploy-row:first-child > div { border-top: 0; }
.deploy-head > div { background: rgba(255,255,255,.05); color: var(--aqua); font-family: var(--mono); font-size: var(--fs-micro); letter-spacing: .08em; text-transform: uppercase; }
.deploy-dim { color: #fff; }
.deploy-new { background: rgba(135,223,255,.06); color: #fff; }
@media (max-width: 720px) { .deploy-row { grid-template-columns: 1fr; } .deploy-row > div { border-top: 0; padding: 8px 16px; } .deploy-head { display: none; } }

/* Evolution: left panel (intro + 2x2 cards) + right graphic card */
.evo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; margin-top: 44px; }
.evo-panel { display: flex; flex-direction: column; justify-content: space-between; background: var(--gray-100); border-radius: var(--b-radius-20); padding: 32px; }
.evo-intro { position: relative; padding-left: 18px; margin: 0 0 28px; font-size: var(--fs-body); color: var(--ink); line-height: 1.6; }
.evo-intro-dot { position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.evo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.evo-card { display: flex; gap: 10px; }
.evo-check { flex: 0 0 auto; width: 20px; height: 20px; color: var(--accent); margin-top: 1px; }
.evo-check svg { width: 20px; height: 20px; display: block; }
.evo-card h4 { font-size: var(--fs-body); font-weight: var(--fw-medium); margin: 0 0 4px; color: var(--ink); }
.evo-card p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.5; margin: 0; }
.evo-viz { display: grid; place-items: center; background: #E9F3FF; border-radius: var(--b-radius-20); padding: 40px; margin: 0; }
.evo-viz img { width: 100%; height: auto; display: block; }
@media (max-width: 880px) { .evo-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .evo-cards { grid-template-columns: 1fr; } }

/* Hero without anchor tabs — trim the bottom padding meant for the bar */
.page-hero.is-centered.no-tabs { padding-bottom: 84px; }

/* ---------- Data sovereignty — match design (separate plane cards + deploy table) ---------- */
.tech-sov .planes { background: transparent; padding: 0; border-radius: 0; margin-top: 44px; overflow: visible; }
.tech-sov .planes::before { display: none; }
.tech-sov .plane {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--b-radius-20);
  padding: 28px;
}
.tech-sov .plane.data-plane {
  border-color: rgba(135,223,255,.40);
  box-shadow: 0 0 0 1px rgba(135,223,255,.12), 0 24px 60px -34px rgba(135,223,255,.25);
}
.tech-sov .plane .plane-tag { font-family: var(--mono); font-size: var(--fs-micro); letter-spacing: .08em; text-transform: uppercase; color: var(--aqua); }
.tech-sov .plane-head { display: flex; align-items: center; gap: 14px; margin: 16px 0 14px; }
.tech-sov .plane-ico { flex: 0 0 auto; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(135,223,255,.08); border: 1px solid rgba(135,223,255,.20); color: var(--aqua); }
.tech-sov .plane-ico svg { width: 20px; height: 20px; }
.tech-sov .plane h4 { margin: 0; font-size: var(--fs-h3); font-weight: var(--fw-medium); color: #fff; }
.tech-sov .plane ul { list-style: none; margin: 8px 0 0; padding: 0; }
.tech-sov .plane li {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 12px; font-size: var(--fs-sm); color: rgba(255,255,255,.78); line-height: 1.45;
  /* background: rgba(255,255,255,.02); */
  border-bottom: 1px dashed rgba(255,255,255,.09);
}
.tech-sov .plane li:last-child { border-bottom: 0; }
.tech-sov .plane li::before { content: none; }
.tech-sov .plane-arrow { flex: 0 0 auto; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(135,223,255,.25); color: var(--aqua); }
.tech-sov .plane-arrow svg { width: 13px; height: 13px; }

.tech-sov .deploy-table { margin-top: 24px; padding: 10px 28px; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.10); border-radius: var(--b-radius-20); overflow: hidden; }
.tech-sov .deploy-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.tech-sov .deploy-row > div { padding: 15px 14px; font-size: var(--fs-sm); color: rgba(255,255,255,.72); line-height: 1.5; border-top: 1px dashed rgba(255,255,255,.08); }
.tech-sov .deploy-row > div:not(:first-child) { border-left: 1px dashed rgba(255,255,255,.06); }
.tech-sov .deploy-row:first-child > div { border-top: 0; }
.tech-sov .deploy-head > div { display: flex; align-items: center; gap: 10px; background: transparent; color: #fff; font-family: var(--font); font-size: var(--fs-body); font-weight: var(--fw-medium); letter-spacing: 0; text-transform: none; padding-top: 18px; padding-bottom: 18px; }
.tech-sov .deploy-hico { flex: 0 0 auto; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: rgba(135,223,255,.08); border: 1px solid rgba(135,223,255,.18); color: var(--aqua); }
.tech-sov .deploy-hico svg { width: 18px; height: 18px; }
.tech-sov .deploy-dim { display: flex; align-items: center; gap: 8px; color: #fff; }
.tech-sov .deploy-chev { color: var(--ink-3); font-size: 16px; line-height: 1; }
.tech-sov .deploy-new { background: transparent; color: rgba(255,255,255,.72); }
@media (max-width: 720px) {
  .tech-sov .deploy-row { grid-template-columns: 1fr; }
  .tech-sov .deploy-row > div { border-top: 0; border-left: 0; padding: 6px 8px; }
  .tech-sov .deploy-head { display: none; }
}

/* ---------- Services — styled icon list (redesigned, replaces the plain table) ---------- */
.svc-list {
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--b-radius-20);
  overflow: hidden;
  box-shadow: 0 28px 60px -40px rgba(8, 8, 48, 0.16);
}
.svc-item {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) 2fr;
  gap: 36px;
  align-items: center;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  position: relative;
  transition: background .15s ease;
}
.svc-item:first-child { border-top: 0; }
.svc-item::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), #2E6BFF);
  opacity: 0; transition: opacity .15s ease;
}
.svc-item:hover { background: var(--gray-50); }
.svc-item:hover::before { opacity: 1; }
.svc-left { display: flex; align-items: center; gap: 14px; }
.svc-ico {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: var(--b-radius-10);
  background: linear-gradient(135deg, var(--accent) 0%, #2E6BFF 100%);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(0, 60, 255, 0.6);
}
.svc-ico svg { width: 22px; height: 22px; display: block; }
.svc-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.svc-name { font-size: 17px; font-weight: var(--fw-semibold); color: var(--ink); letter-spacing: -0.01em; }
.svc-role {
  font-family: var(--mono); font-size: 11px; letter-spacing: .03em;
  color: var(--accent); background: rgba(0, 60, 255, 0.07);
  padding: 3px 10px; border-radius: 999px;
}
.svc-desc { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; margin: 0; }
@media (max-width: 760px) {
  .svc-item { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
}

/* ===================== PLATFORM page ===================== */
/* /01 — the layer (prose left + photo right) */
.platform-layer { align-items: center; }
.platform-photo { margin: 0; border-radius: var(--b-radius-20); overflow: hidden; }
.platform-photo img { width: 100%; height: auto; display: block; }

/* /02 — products: card head (icon+title) above the slash tag */
.platform-products .plane-head { margin: 0 0 4px; }
.platform-products .plane-tag { display: block; margin-bottom: 16px; }

/* /03 — process: 5-step row */
.steps-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .steps-grid.cols-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .steps-grid.cols-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .steps-grid.cols-5 { grid-template-columns: 1fr; } }

/* /05 — model: record vs execution */
.plat-model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; align-items: stretch; }
.plat-model-card { background: var(--gray-100); border-radius: var(--b-radius-20); padding: 34px; }
.plat-model-card.is-cornytis { background: #E9F3FF; }
.pm-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: var(--fs-micro); letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }
.plat-model-card.is-cornytis .pm-tag { color: var(--accent); }
.pm-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.plat-model-card h4 { margin: 14px 0 20px; font-size: var(--fs-h3); font-weight: var(--fw-medium); color: var(--ink); }
.plat-model-card ul { list-style: none; margin: 0; padding: 0; }
.plat-model-card li { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.5; border-top: 1px dashed var(--line); }
.plat-model-card li:first-child { border-top: 0; }
.pm-check { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; }
.pm-check svg { width: 22px; height: 22px; display: block; }
@media (max-width: 760px) { .plat-model-grid { grid-template-columns: 1fr; } }

/* Platform /01 — light-gray fallback when no admin image is set */
.platform-photo.is-empty { background: var(--gray-100); min-height: 380px; border-radius: var(--b-radius-20); }

/* /02 products — both cards same border; aqua border + glow on hover */
.platform-products .plane,
.platform-products .plane.data-plane,
.uc-operating .plane,
.uc-operating .plane.data-plane {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.platform-products .plane:hover,
.platform-products .plane.data-plane:hover,
.uc-operating .plane:hover,
.uc-operating .plane.data-plane:hover {
  border-color: rgba(135, 223, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(135, 223, 255, 0.18), 0 24px 60px -34px rgba(135, 223, 255, 0.28);
}

/* /03 process — horizontal swipe carousel on mobile, connectors kept (horizontal) */
@media (max-width: 880px) {
  .steps-grid.cols-5 {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    margin: 0;
    padding: 4px 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .steps-grid.cols-5::-webkit-scrollbar { display: none; }
  .steps-grid.cols-5 .step-card {
    flex: 0 0 76%;
    scroll-snap-align: start;
  }
  /* keep the desktop horizontal connector (override the hide/vertical rules) */
  .steps-grid.cols-5 .step-card:not(:last-child)::after {
    display: block;
    top: 42px; right: -24px; left: auto; bottom: auto;
    transform: none;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, #2E6BFF 0%, #5BD5FF 100%);
    box-shadow: 0 0 8px rgba(46, 107, 255, 0.55);
  }
}
@media (max-width: 480px) {
  .steps-grid.cols-5 { grid-template-columns: none; }
  .steps-grid.cols-5 .step-card { flex: 0 0 82%; }
}

/* ===================== USE CASES page ===================== */
/* Industry segments cards */
.uc-seg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; align-items: stretch; }
.uc-seg-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--b-radius-20); padding: 28px; }
.uc-seg-card.is-active { background: #EAF2FE; border-color: rgba(0, 71, 255, 0.30); box-shadow: 0 0 0 1px rgba(0, 71, 255, 0.10); }
.uc-seg-tag { font-family: var(--mono); font-size: var(--fs-micro); letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.uc-seg-title { display: flex; align-items: center; gap: 9px; margin: 18px 0 12px; font-size: var(--fs-h3); font-weight: var(--fw-medium); color: var(--ink); }
.uc-seg-dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.uc-seg-desc { margin: 0 0 24px; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; }
.uc-seg-pill { margin-top: auto; align-self: flex-start; font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); background: var(--gray-100); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.uc-seg-pill.is-now { color: #fff; background: var(--accent); border-color: transparent; }
@media (max-width: 880px) { .uc-seg-grid { grid-template-columns: 1fr; } }

/* Operating model (dark) — reuses .tech-sov .plane; head above tag + dark footnote */
.uc-operating .plane-head { margin: 0 0 4px; }
.uc-operating .plane-tag { display: block; margin-bottom: 16px; }
.uc-op-note { margin-top: 28px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); }
.uc-op-note p { color: rgba(255, 255, 255, 0.72); }
.uc-op-note .em { color: var(--aqua); }

/* Scenarios (light-blue band) */
.uc-scenarios { background: #EEF4FF; }
.uc-scn-list { margin-top: 40px; }
.uc-scn { display: grid; grid-template-columns: 0.85fr 1.5fr; gap: 48px; padding: 44px 0; border-top: 1px solid rgba(0, 71, 255, 0.12); }
.uc-scn:first-child { border-top: 0; padding-top: 4px; }
.uc-scn-n { font-family: var(--mono); font-size: var(--fs-micro); letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.uc-scn-title { margin: 14px 0 10px; font-size: var(--fs-h3); font-weight: var(--fw-medium); color: var(--ink); }
.uc-scn-tag { margin: 0 0 22px; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.55; }
.uc-scn-link { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--accent); text-decoration: none; }
.uc-scn-link:hover { text-decoration: underline; }
.uc-scn-body { display: flex; flex-direction: column; gap: 22px; }
.uc-blk-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 10px; }
.uc-blk-ico { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 6px; background: #fff; border: 1px solid var(--line); }
.uc-blk-ico svg { width: 13px; height: 13px; }
.uc-blk-label.pain .uc-blk-ico { color: var(--ink-3); }
.uc-blk-label.does .uc-blk-ico { color: #fff; background: var(--accent); border-color: transparent; }
.uc-blk-label.chg .uc-blk-ico { color: var(--accent); }
.uc-blk p { margin: 0; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; }
.uc-changes { list-style: none; margin: 0; padding: 0; }
.uc-changes li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.5; }
.uc-chk { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; }
.uc-chk svg { width: 18px; height: 18px; }
@media (max-width: 880px) { .uc-scn { grid-template-columns: 1fr; gap: 22px; } }

/* ===================== LEGAL pages (Cookie / Privacy / Terms) ===================== */
.legal-doc { max-width: 760px; margin: 0 auto; }
.legal-title { text-align: center; margin: 0; font-size: clamp(30px, 4vw, 44px); font-weight: var(--fw-medium); letter-spacing: -0.025em; color: var(--ink); }
.legal-updated { margin: 30px 0 26px; font-size: var(--fs-sm); color: var(--ink-3); }
.legal-body { font-size: var(--fs-body); color: var(--ink-2); line-height: 1.75; }
.legal-body > :first-child { margin-top: 0; }
.legal-body h2 { margin: 44px 0 16px; font-size: var(--fs-h3); font-weight: var(--fw-medium); color: var(--ink); letter-spacing: -0.01em; }
.legal-body h3 { margin: 28px 0 12px; font-size: var(--fs-body); font-weight: var(--fw-semibold); color: var(--ink); }
.legal-body p { margin: 0 0 16px; }
.legal-body strong { color: var(--ink); font-weight: var(--fw-semibold); }
.legal-body a { color: var(--accent); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body ul { margin: 0 0 16px; padding-left: 22px; }
.legal-body li { margin-bottom: 10px; line-height: 1.7; }
.legal-body li::marker { color: var(--ink-3); }
