:root {
  --blue-950: #0b2236;
  --blue-900: #173d60;
  --blue-800: #1e4e7a;
  --blue-600: #2f6fae;
  --blue-500: #4682b4;
  --blue-200: #b0c4de;
  --blue-100: #dcebfa;
  --blue-50: #f4f8fc;
  --mosaic: #eff9ff;
  --ink: #1f2d3d;
  --muted: #607286;
  --line: #c9d9e8;
  --white: #ffffff;
  --red: #c50000;
  --red-dark: #a40000;
  --gold: #cc9900;
  --gold-mid: #ffd872;
  --gold-pale: #fff3d8;
  --gold-ink: #79520b;
  --success: #17633f;
  --success-pale: #e3f3eb;
  --radius-control: 6px;
  --radius-card: 8px;
  --shadow-small: 0 1px 3px rgb(15 47 76 / 12%);
  --shadow-medium: 0 12px 32px rgb(30 78 122 / 14%);
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--blue-600);
}

a:hover {
  color: var(--blue-800);
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid rgb(47 111 174 / 38%);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--blue-900);
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.5vw, 4.7rem);
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--blue-600);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  letter-spacing: -0.015em;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-900);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--blue-100);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.identity-line {
  height: 4px;
  display: grid;
  grid-template-columns: minmax(100px, 1fr) minmax(120px, 2fr) minmax(40px, 0.4fr);
}

.identity-line span:nth-child(1) { background: var(--red); }
.identity-line span:nth-child(2) { background: var(--blue-600); }
.identity-line span:nth-child(3) { background: var(--gold); }

.header-layout {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.site-brand {
  width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--muted);
  text-decoration: none;
}

.site-brand img {
  width: 244px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.primary-nav a {
  position: relative;
  padding: 12px 14px;
  color: var(--blue-800);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  min-height: 46px;
  padding: 11px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue-600);
  border: 1px solid var(--blue-600);
  border-radius: var(--radius-control);
  box-shadow: 0 2px 0 rgb(15 47 76 / 14%);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.86rem;
}

.button-secondary {
  color: var(--blue-800);
  background: var(--white);
  border-color: var(--blue-600);
}

.button-secondary:hover {
  color: var(--blue-900);
  background: var(--blue-100);
  border-color: var(--blue-800);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgb(220 235 250 / 24%) 50% 50.1%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49.9%, rgb(220 235 250 / 18%) 50% 50.1%, transparent 50.2%),
    var(--white);
  background-size: 72px 72px;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 10px;
  background: var(--blue-200);
  content: "";
}

.hero-layout {
  min-height: 820px;
  padding-block: 88px 104px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-mark {
  width: 23px;
  height: 3px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
  background: var(--red);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 24px;
  color: #3a5269;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-statement {
  max-width: 650px;
  margin-bottom: 12px;
  color: var(--red);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-concepts {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-concepts article {
  padding: 16px 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-600);
  box-shadow: var(--shadow-small);
}

.hero-concepts article:last-child {
  border-top-color: var(--red);
}

.hero-concepts span,
.hero-concepts strong {
  display: block;
}

.hero-concepts span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-concepts strong {
  color: var(--blue-900);
  font-size: 0.98rem;
}

.hero-concepts p {
  margin: 6px 0 0;
  color: #4b647a;
  font-size: 0.78rem;
  line-height: 1.45;
}

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

.prototype-note,
.content-status,
.preview-disclaimer {
  color: var(--muted);
  font-size: 0.78rem;
}

.prototype-note {
  max-width: 620px;
  margin-top: 18px;
  margin-bottom: 0;
  padding-left: 12px;
  border-left: 3px solid var(--blue-200);
}

.product-preview {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
}

.product-preview::before {
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  z-index: -1;
  border: 2px solid var(--red);
  content: "";
}

.preview-titlebar {
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 7px 7px 0 0;
}

.preview-product {
  font-weight: 750;
}

.preview-product::first-letter {
  color: var(--red);
}

.preview-context {
  color: #d4e2ee;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.preview-toolbar {
  min-height: 42px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  border-bottom: 1px solid var(--line);
}

.preview-toolbar span {
  width: 30px;
  height: 24px;
  display: block;
  background: var(--white);
  border: 1px solid #9fb7cc;
  border-radius: 3px;
}

.preview-toolbar .tool-active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: inset 0 -4px 0 rgb(23 61 96 / 25%);
}

.preview-toolbar .toolbar-space {
  width: auto;
  flex: 1;
  background: transparent;
  border: 0;
}

.preview-toolbar .security-dot {
  width: 18px;
  height: 18px;
  background: var(--gold-mid);
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.preview-body {
  padding: 24px;
}

.preview-heading,
.data-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.preview-heading strong,
.preview-kicker {
  display: block;
}

.preview-heading strong {
  color: var(--blue-900);
  font-size: 1.1rem;
}

.preview-kicker {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-chip,
.demo-flag,
.table-state {
  display: inline-block;
  color: var(--success);
  background: var(--success-pale);
  border: 1px solid #b8dfc9;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 750;
}

.status-chip {
  padding: 4px 8px;
  white-space: nowrap;
}

.summary-grid {
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.summary-grid div {
  padding: 12px;
  background: var(--blue-50);
  border-right: 1px solid var(--line);
}

.summary-grid div:last-child {
  border-right: 0;
}

.summary-grid span,
.summary-grid strong {
  display: block;
}

.summary-grid span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.summary-grid strong {
  color: var(--blue-800);
  font-size: 0.86rem;
}

.preview-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.preview-row {
  min-height: 43px;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.7fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.preview-row:last-child {
  border-bottom: 0;
}

.preview-row-head {
  color: var(--blue-800);
  background: var(--blue-100);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.state-mark {
  color: var(--success);
  font-weight: 750;
}

.state-gold {
  color: var(--gold-ink);
}

.preview-disclaimer {
  margin: 12px 0 0;
  line-height: 1.45;
}

.mosaic-band,
.heritage-mosaic {
  background-color: var(--white);
  background-image: url("mosaic-light.png");
  background-repeat: repeat-x;
}

.mosaic-band {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 71px;
}

.section {
  padding-block: 96px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered > p:last-child {
  max-width: 660px;
  margin-inline: auto;
}

.node-type {
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solutions-section {
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(40px, 8vw, 100px);
}

.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.86fr;
  gap: 20px;
}

.solution-card {
  min-height: 480px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-small);
}

.solution-card-top {
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.solution-number {
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
}

.solution-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-logo {
  width: min(100%, 255px);
  margin-bottom: 25px;
}

.solution-card h3 {
  margin-bottom: 16px;
}

.solution-card > p:not(.content-status) {
  color: #455f77;
}

.content-status {
  margin: 6px 0 24px;
  padding: 10px 12px;
  background: var(--blue-50);
  border-left: 3px solid var(--blue-200);
  line-height: 1.45;
}

.text-link {
  margin-top: auto;
  color: var(--blue-800);
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legacy-card {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red);
}

.legacy-card::after {
  position: absolute;
  right: -160px;
  bottom: 0;
  left: 0;
  height: 56px;
  background: url("mosaic-light.png") repeat-x bottom left / auto 56px;
  content: "";
  pointer-events: none;
}

.legacy-card > * {
  position: relative;
  z-index: 1;
}

.live-card {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
  border-top: 4px solid var(--gold);
  box-shadow: 0 10px 28px rgb(11 34 54 / 18%);
}

.live-card h3,
.live-card .solution-number {
  color: var(--white);
}

.live-card .solution-label,
.live-card > p:not(.content-status) {
  color: #d4e2ee;
}

.content-status-dark {
  color: #dce6ef;
  background: rgb(255 255 255 / 7%);
  border-left-color: var(--gold);
}

.text-link-light {
  color: var(--white);
}

.text-link-light:hover {
  color: var(--white);
}

.tool-card {
  border-top: 4px solid var(--blue-600);
}

.tool-heading {
  min-height: 62px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--blue-900);
  font-size: 1.35rem;
}

.table-symbol {
  width: 46px;
  height: 38px;
  display: block;
  background:
    linear-gradient(var(--blue-600), var(--blue-600)) 0 0 / 100% 8px no-repeat,
    repeating-linear-gradient(0deg, transparent 0 8px, var(--line) 8px 9px),
    repeating-linear-gradient(90deg, transparent 0 14px, var(--line) 14px 15px),
    var(--white);
  border: 2px solid var(--blue-600);
  border-radius: 3px;
}

.evolution-section {
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
}

.evolution-timeline {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.evolution-timeline li {
  position: relative;
  min-height: 240px;
  padding: 34px 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-right: 0;
}

.evolution-timeline li:last-child {
  border-right: 1px solid var(--line);
}

.evolution-timeline li::after {
  position: absolute;
  top: 48px;
  right: -9px;
  z-index: 2;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-top: 2px solid var(--blue-500);
  border-right: 2px solid var(--blue-500);
  content: "";
  transform: rotate(45deg);
}

.evolution-timeline li:last-child::after {
  display: none;
}

.evolution-timeline .timeline-current {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
  border-top: 4px solid var(--gold);
}

.timeline-index {
  margin-bottom: 42px;
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.evolution-timeline strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.18rem;
  line-height: 1.25;
}

.evolution-timeline p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.timeline-current .timeline-index {
  color: var(--gold-mid);
}

.timeline-current strong {
  color: var(--white);
}

.timeline-current p {
  color: #d4e2ee;
}

.live-evolution-panel {
  margin-top: 28px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow-small);
}

.live-panel-name {
  margin: 0;
  color: var(--red);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.live-word {
  width: fit-content;
  margin-bottom: 8px;
  padding: 2px 8px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-evolution-panel h3 {
  margin-bottom: 8px;
}

.live-evolution-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.integration-section {
  background: var(--white);
}

.integration-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.ecosystem-logo {
  width: min(100%, 310px);
  margin-bottom: 26px;
}

.ecosystem-name {
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.ecosystem-motto {
  max-width: 470px;
  margin-bottom: 34px;
  padding: 13px 0 13px 18px;
  color: var(--blue-900);
  border-left: 4px solid var(--red);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
}

.integration-title {
  margin-bottom: 14px;
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.integration-copy > p:not(.eyebrow, .content-status, .ecosystem-motto) {
  color: var(--muted);
}

.ecosystem-map {
  position: relative;
  min-height: 520px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 32px;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgb(220 235 250 / 34%) 50% 50.2%, transparent 50.4%),
    linear-gradient(0deg, transparent 0 49.8%, rgb(220 235 250 / 26%) 50% 50.2%, transparent 50.4%),
    var(--blue-50);
  background-size: 48px 48px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue-600);
}

.ecosystem-hub {
  min-height: 180px;
  padding: 28px 20px;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--blue-900);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 1px var(--blue-900), var(--shadow-medium);
}

.ecosystem-hub span,
.ecosystem-hub small {
  color: #d4e2ee;
}

.ecosystem-hub span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem-hub strong {
  color: var(--white);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.9rem;
}

.ecosystem-hub small {
  font-size: 0.72rem;
}

.ecosystem-map ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.ecosystem-map li {
  min-height: 62px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue-500);
  color: var(--blue-900);
  font-size: 0.84rem;
  font-weight: 700;
}

.ecosystem-map li span {
  color: var(--red);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.business-cycle {
  margin-top: 86px;
  padding-top: 76px;
  border-top: 1px solid var(--blue-100);
}

.cycle-heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: end;
  gap: clamp(40px, 8vw, 100px);
}

.cycle-heading h2,
.cycle-heading p {
  margin-bottom: 0;
}

.cycle-heading > p {
  color: var(--muted);
}

.cycle-rulebar {
  min-height: 66px;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  color: var(--white);
  background: var(--blue-900);
  border-top: 4px solid var(--gold);
}

.cycle-rulebar span {
  padding: 2px 20px;
  border-right: 1px solid rgb(255 255 255 / 18%);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-align: center;
}

.cycle-rulebar span:last-child {
  border-right: 0;
}

.cycle-flow {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.cycle-flow li {
  position: relative;
  min-width: 0;
  min-height: 270px;
  padding: 16px 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue-500);
  box-shadow: var(--shadow-small);
}

.cycle-flow li:not(:last-child)::after {
  position: absolute;
  top: calc(50% - 5px);
  right: -8px;
  z-index: 2;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-top: 2px solid var(--blue-600);
  border-right: 2px solid var(--blue-600);
  content: "";
  transform: rotate(45deg);
}

.cycle-index,
.cycle-state,
.cycle-flow strong,
.cycle-flow small {
  display: block;
}

.cycle-index {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.cycle-state {
  width: fit-content;
  margin-bottom: 14px;
  padding: 2px 5px;
  color: var(--blue-800);
  background: var(--blue-100);
  border: 1px solid var(--blue-200);
  border-radius: 3px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.cycle-flow strong {
  color: var(--blue-900);
  font-size: 0.86rem;
  line-height: 1.2;
}

.cycle-flow small {
  min-height: 34px;
  margin-top: 5px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.3;
}

.cycle-flow p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.42;
}

.cycle-flow .cycle-origin,
.cycle-flow .cycle-accounting {
  border-top-color: var(--red);
}

.cycle-flow .cycle-financial {
  background: #fffbf1;
  border-top-color: var(--gold);
}

.cycle-financial .cycle-state {
  color: var(--gold-ink);
  background: var(--gold-pale);
  border-color: #ead49c;
}

.cycle-decision {
  color: var(--white);
  background: var(--blue-900) !important;
  border-color: var(--blue-900) !important;
  border-top-color: var(--gold) !important;
}

.cycle-decision .cycle-index,
.cycle-decision small {
  color: var(--gold-mid);
}

.cycle-decision .cycle-state {
  color: var(--blue-900);
  background: var(--gold-mid);
  border-color: var(--gold);
}

.cycle-decision strong {
  color: var(--white);
}

.cycle-decision p {
  color: #d4e2ee;
}

.cycle-continuity {
  margin: 20px 0 0;
  padding: 14px 18px;
  color: var(--blue-800);
  background: var(--blue-100);
  border-left: 4px solid var(--red);
  font-size: 0.9rem;
  font-weight: 700;
}

.cycle-value-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.continuous-reconciliation,
.accounting-principle {
  min-height: 330px;
  padding: clamp(28px, 4vw, 42px);
}

.continuous-reconciliation {
  color: var(--gold-ink);
  background: var(--gold-pale);
  border: 1px solid #ead49c;
  border-top: 5px solid var(--gold);
}

.value-kicker {
  margin-bottom: 9px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.continuous-reconciliation h3 {
  color: var(--gold-ink);
}

.value-lead {
  color: #5f430b;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.day-comparison {
  margin: 24px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.day-comparison > div {
  min-height: 84px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 1px solid #d9bf78;
}

.day-comparison span,
.day-comparison strong {
  display: block;
}

.day-comparison div span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.day-comparison strong {
  color: var(--blue-900);
  font-size: 0.86rem;
}

.comparison-arrow {
  color: var(--gold-ink);
  font-size: 1.35rem;
  font-weight: 800;
}

.availability-note {
  margin-bottom: 0;
  color: #624a1a;
  font-size: 0.78rem;
  line-height: 1.5;
}

.accounting-principle {
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
}

.accounting-principle p:not(.value-kicker) {
  color: #40576d;
}

.accounting-principle span {
  padding-top: 14px;
  display: block;
  color: var(--muted);
  border-top: 1px solid var(--blue-100);
  font-size: 0.72rem;
}

.intelligence-section {
  color: var(--white);
  background: var(--blue-950);
  border-top: 6px solid var(--blue-600);
}

.wbi-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.wbi-intro h2 {
  color: var(--white);
}

.wbi-intro > p:not(.eyebrow) {
  color: #d4e2ee;
}

.wbi-intro .wbi-lead {
  color: var(--white);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.4;
}

.wbi-cycle-link {
  padding: 10px 12px;
  color: var(--gold-mid) !important;
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  font-weight: 750;
}

.not-a-brand {
  padding: 10px 12px;
  display: block;
  color: var(--gold-mid);
  border-left: 3px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.wbi-flow {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}

.wbi-flow li {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #12314d;
  border: 1px solid rgb(220 235 250 / 20%);
  border-top: 3px solid var(--blue-500);
}

.wbi-flow li:last-child {
  border-top-color: var(--gold);
}

.wbi-flow span,
.wbi-flow strong,
.wbi-flow small {
  display: block;
}

.wbi-flow span {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
}

.wbi-flow strong {
  color: var(--white);
}

.wbi-flow small {
  margin-top: 6px;
  color: #9fb7cc;
  line-height: 1.4;
}

.context-feature {
  margin-top: 80px;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 100px);
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.context-copy h2 {
  color: var(--white);
}

.context-definition {
  color: #d4e2ee;
  font-size: 1.08rem;
}

.context-cycle-link {
  color: #b9cad9;
  font-size: 0.9rem;
}

.context-quote {
  margin: 28px 0 0;
  padding: 18px 0 18px 24px;
  border-left-color: var(--gold);
}

.context-quote p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.context-matrix {
  background: var(--white);
  border: 1px solid var(--blue-200);
  color: var(--ink);
}

.context-matrix > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.context-matrix > div > * {
  height: 100%;
  padding: 14px 16px;
  display: flex;
  align-items: center;
}

.context-matrix > div > *:first-child {
  border-right: 1px solid var(--line);
}

.context-matrix-head {
  color: var(--blue-800);
  background: var(--blue-100);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.context-matrix strong {
  color: var(--blue-900);
  font-size: 0.86rem;
}

.context-matrix span {
  color: #40576d;
  font-size: 0.82rem;
  line-height: 1.4;
}

.context-matrix > p {
  margin: 0;
  padding: 12px 16px;
  color: var(--muted);
  background: var(--blue-50);
  font-size: 0.72rem;
}

.data-language {
  background: var(--white);
}

.data-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.data-copy p {
  color: var(--muted);
}

.precision-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.precision-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--blue-100);
}

.precision-list li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: var(--red);
  content: "";
}

.data-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue-600);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
}

.data-panel-header {
  margin-bottom: 22px;
}

.data-panel-header h3 {
  margin-bottom: 0;
}

.demo-flag {
  padding: 5px 8px;
  color: var(--blue-800);
  background: var(--blue-100);
  border-color: var(--blue-200);
  white-space: nowrap;
}

.table-scroll {
  overflow-x: auto;
}

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

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

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

th {
  color: var(--blue-800);
  background: var(--blue-100);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

tbody tr:nth-child(even) {
  background: var(--blue-50);
}

tbody tr:hover {
  background: #edf5fc;
}

td {
  color: #40576d;
  font-size: 0.9rem;
}

td strong {
  color: var(--ink);
}

.table-state {
  padding: 3px 7px;
  color: var(--blue-800);
  background: var(--blue-100);
  border-color: var(--blue-200);
}

.table-state-gold {
  color: var(--gold-ink);
  background: var(--gold-pale);
  border-color: #ead49c;
}

.security-section {
  padding-top: 32px;
  background: var(--white);
}

.security-panel {
  min-height: 330px;
  padding: clamp(36px, 6vw, 70px);
  display: grid;
  grid-template-columns: 150px 1fr 0.8fr;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  background: var(--blue-900);
  border: 1px solid var(--blue-950);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
}

.lock-icon {
  position: relative;
  width: 112px;
  height: 130px;
  margin-inline: auto;
}

.lock-shackle {
  position: absolute;
  top: 0;
  left: 24px;
  width: 66px;
  height: 74px;
  border: 12px solid var(--gold-mid);
  border-bottom: 0;
  border-radius: 36px 36px 0 0;
  box-shadow: inset 0 0 0 3px rgb(121 82 11 / 18%);
}

.lock-body {
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 78px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border: 3px solid #9a7200;
  border-radius: 8px;
  box-shadow: inset -12px -12px 0 rgb(121 82 11 / 16%), inset 10px 10px 0 rgb(255 216 114 / 42%);
}

.keyhole {
  position: relative;
  width: 15px;
  height: 24px;
  margin-top: 10px;
  background: var(--blue-900);
  border-radius: 8px 8px 3px 3px;
}

.keyhole::before {
  position: absolute;
  top: -8px;
  left: 2px;
  width: 11px;
  height: 11px;
  background: var(--blue-900);
  border-radius: 50%;
  content: "";
}

.eyebrow-gold {
  color: var(--gold-mid);
}

.security-copy h2 {
  color: var(--white);
}

.security-copy p:last-child {
  margin-bottom: 0;
  color: #d4e2ee;
}

.security-points {
  margin: 0;
  padding: 0;
  color: var(--white);
  list-style: none;
}

.security-points li {
  padding: 13px 0;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  font-size: 0.94rem;
  font-weight: 650;
}

.security-points li:last-child {
  border-bottom: 0;
}

.security-points span {
  margin-right: 9px;
  color: var(--gold-mid);
  font-size: 0.72rem;
}

.heritage-section {
  position: relative;
  overflow: hidden;
  background: var(--blue-50);
}

.heritage-mosaic {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 71px;
}

.heritage-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.portrait-frame {
  position: relative;
  margin: 0;
}

.portrait-frame::before {
  position: absolute;
  top: -16px;
  right: 22px;
  bottom: 60px;
  left: -16px;
  z-index: 0;
  border: 4px solid var(--red);
  content: "";
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 15%;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-medium);
}

.portrait-frame figcaption {
  position: relative;
  z-index: 2;
  margin: -28px 18px 0;
  padding: 16px 18px;
  color: var(--white);
  background: var(--blue-900);
  font-size: 0.78rem;
  line-height: 1.4;
}

.heritage-copy {
  padding-top: 34px;
}

blockquote {
  margin: 34px 0;
  padding: 22px 0 22px 28px;
  border-left: 5px solid var(--red);
}

blockquote p {
  margin-bottom: 7px;
  color: var(--blue-900);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.3;
}

blockquote cite {
  color: var(--blue-600);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.96rem;
}

.archive-reference {
  margin: 32px 0 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.archive-reference img {
  width: 150px;
  border: 1px solid var(--blue-200);
}

.archive-reference figcaption {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.archive-reference strong {
  display: block;
  color: var(--blue-800);
}

.developer-section {
  background: var(--white);
}

.developer-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.developer-photo-placeholder {
  min-height: 460px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, transparent 0 49.7%, rgb(176 196 222 / 26%) 50% 50.3%, transparent 50.6%),
    linear-gradient(0deg, transparent 0 49.7%, rgb(176 196 222 / 20%) 50% 50.3%, transparent 50.6%),
    var(--blue-50);
  background-size: 44px 44px;
  border: 2px dashed var(--blue-500);
  border-top: 6px solid var(--red);
}

.developer-photo-placeholder strong,
.developer-photo-placeholder small {
  display: block;
}

.photo-status {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.developer-photo-placeholder strong {
  max-width: 330px;
  margin-top: 8px;
  color: var(--blue-900);
  font-size: 1.5rem;
  line-height: 1.25;
}

.developer-photo-placeholder small {
  max-width: 320px;
  margin-top: 8px;
  color: var(--muted);
}

.developer-name {
  margin-bottom: 2px;
  color: var(--blue-900);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 700;
}

.developer-role {
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.developer-copy > p:not(.eyebrow, .developer-name, .developer-role, .legal-context) {
  color: var(--muted);
}

.mvp-note {
  margin: 30px 0;
  padding: 24px 26px;
  display: grid;
  gap: 7px;
  background: var(--blue-900);
  border-left: 5px solid var(--gold);
}

.mvp-note strong {
  color: var(--white);
}

.mvp-note q {
  color: var(--gold-mid);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.mvp-note small {
  color: #b9cad9;
  line-height: 1.45;
}

.legal-context {
  margin: 0;
  padding: 12px 14px;
  color: var(--blue-800);
  background: var(--blue-50);
  border-left: 3px solid var(--blue-500);
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-section {
  background: var(--white);
}

.contact-heading {
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  min-height: 320px;
  padding: clamp(30px, 5vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-card);
}

.support-card {
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue-600);
}

.phone-card {
  color: var(--white);
  background: var(--blue-900);
  border: 1px solid var(--blue-950);
  border-top: 5px solid var(--gold);
}

.phone-card h3 {
  color: var(--white);
}

.phone-card p {
  color: #d4e2ee;
}

.contact-index {
  margin-bottom: 28px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.phone-card .contact-index {
  color: var(--gold-mid);
}

.contact-value {
  margin: 16px 0 10px;
  color: var(--blue-800);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-value:hover {
  color: var(--red);
}

.phone-number {
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.contact-meta {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.phone-card .contact-meta {
  color: #d4e2ee;
}

.site-footer {
  padding-top: 60px;
  color: #d4e2ee;
  background: var(--blue-950);
  border-top: 5px solid var(--blue-600);
}

.footer-layout {
  padding-bottom: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
}

.footer-brand,
.footer-ecosystem {
  display: flex;
  flex-direction: column;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 10px;
  padding: 5px 8px;
  background: var(--white);
  border-radius: 3px;
}

.footer-ecosystem > span {
  color: #9fb7cc;
  font-size: 0.8rem;
}

.footer-ecosystem {
  padding-left: 28px;
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.footer-ecosystem strong {
  color: var(--white);
  font-size: 0.82rem;
}

.footer-ecosystem strong:first-of-type {
  margin-top: 8px;
  color: var(--gold-mid);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}

.footer-nav a {
  color: #d4e2ee;
  font-size: 0.85rem;
  text-decoration: none;
}

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

.footer-bottom {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #9fb7cc;
  border-top: 1px solid rgb(255 255 255 / 14%);
  font-size: 0.72rem;
}

@media (max-width: 1080px) {
  .header-layout {
    grid-template-columns: 1fr auto;
    gap: 14px 26px;
    padding-block: 14px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    border-top: 1px solid var(--blue-100);
  }

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

  .hero-copy {
    max-width: 850px;
  }

  .product-preview {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .evolution-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .evolution-timeline li,
  .evolution-timeline li:last-child {
    border: 1px solid var(--line);
  }

  .evolution-timeline li::after {
    display: none;
  }

  .live-evolution-panel {
    grid-template-columns: 220px 1fr;
  }

  .live-evolution-panel .button {
    grid-column: 2;
    justify-self: start;
  }

  .integration-layout,
  .wbi-feature,
  .context-feature {
    grid-template-columns: 1fr;
  }

  .ecosystem-map {
    min-height: 460px;
  }

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

  .tool-card {
    min-height: 380px;
    grid-column: 1 / -1;
  }

  .security-panel {
    grid-template-columns: 130px 1fr;
  }

  .security-points {
    grid-column: 2;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    position: static;
  }

  .header-layout {
    grid-template-columns: 1fr;
  }

  .site-brand {
    width: 100%;
  }

  .primary-nav {
    grid-column: auto;
    grid-row: auto;
    overflow-x: auto;
  }

  .primary-nav a {
    padding-inline: 9px;
    white-space: nowrap;
  }

  .header-layout > .button {
    width: 100%;
  }

  .hero-layout {
    min-height: 0;
    padding-block: 64px 106px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .product-preview::before {
    top: -10px;
    right: -8px;
    left: 8px;
  }

  .preview-titlebar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }

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

  .summary-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-grid div:last-child {
    border-bottom: 0;
  }

  .preview-row {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .preview-row span:last-child {
    display: none;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .split-heading,
  .solution-grid,
  .data-layout,
  .contact-grid,
  .heritage-layout,
  .developer-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 20px;
  }

  .cycle-heading,
  .cycle-value-grid {
    grid-template-columns: 1fr;
  }

  .cycle-heading {
    gap: 16px;
  }

  .business-cycle {
    margin-top: 64px;
    padding-top: 56px;
  }

  .cycle-rulebar {
    padding: 10px 18px;
    grid-template-columns: 1fr;
  }

  .cycle-rulebar span {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .cycle-rulebar span:last-child {
    border-bottom: 0;
  }

  .cycle-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cycle-flow li {
    min-height: 0;
    padding: 20px;
  }

  .cycle-flow li:not(:last-child)::after {
    top: auto;
    right: calc(50% - 5px);
    bottom: -8px;
    transform: rotate(135deg);
  }

  .cycle-flow small {
    min-height: 0;
  }

  .cycle-flow p {
    font-size: 0.78rem;
  }

  .solution-card,
  .tool-card {
    min-height: 0;
    grid-column: auto;
  }

  .evolution-timeline {
    grid-template-columns: 1fr;
  }

  .evolution-timeline li {
    min-height: 0;
  }

  .timeline-index {
    margin-bottom: 24px;
  }

  .live-evolution-panel {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .live-evolution-panel .button {
    width: 100%;
    grid-column: auto;
  }

  .ecosystem-map {
    min-height: 0;
    padding: 24px;
    grid-template-columns: 1fr;
  }

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

  .wbi-flow {
    grid-template-columns: 1fr;
  }

  .context-feature {
    margin-top: 60px;
    padding-top: 54px;
  }

  .context-matrix > div {
    grid-template-columns: 1fr;
  }

  .context-matrix > div > *:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .context-matrix-head span:last-child {
    display: none;
  }

  .developer-photo-placeholder {
    width: min(100%, 520px);
    min-height: 360px;
  }

  .security-panel {
    padding-inline: 28px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .security-points {
    width: 100%;
    grid-column: auto;
    text-align: left;
  }

  .heritage-mosaic {
    width: 100%;
  }

  .portrait-frame {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .archive-reference {
    grid-template-columns: 1fr;
  }

  .archive-reference img {
    width: min(100%, 300px);
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-ecosystem {
    padding: 24px 0 0;
    border-top: 1px solid rgb(255 255 255 / 18%);
    border-left: 0;
  }

  .footer-nav {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 14px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.35rem;
  }

  .primary-nav {
    gap: 0;
  }

  .primary-nav a {
    font-size: 0.82rem;
  }

  .preview-body,
  .data-panel,
  .solution-card {
    padding: 20px;
  }

  .preview-heading,
  .data-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .day-comparison {
    grid-template-columns: 1fr;
  }

  .comparison-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .developer-photo-placeholder {
    min-height: 310px;
    padding: 26px;
  }

  .contact-card {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header {
    position: static;
  }

  .button {
    box-shadow: none;
  }
}

/* Integración con la envoltura que WordPress genera para los bloques. */
.wp-site-blocks {
  overflow: hidden;
}

.wp-site-blocks > .wp-block-template-part,
.wp-site-blocks > .si-home {
  margin-block-start: 0;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
