:root {
  --font-sans: "IBM Plex Sans", "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --bg: #eff3f6;
  --surface: #ffffff;
  --surface-alt: #f5f8fa;
  --surface-strong: #ffffff;
  --ink: #13212d;
  --muted: #495b67;
  --line: #cad5dc;
  --line-strong: #9aaeb9;
  --accent: #166d88;
  --accent-dark: #0f5469;
  --accent-soft: #dcecf3;
  --accent-soft-strong: #c9e0ea;
  --accent-faint: rgba(22, 109, 136, 0.08);
  --accent-faint-strong: rgba(22, 109, 136, 0.16);
  --shadow: 0 16px 36px rgba(16, 32, 44, 0.07);
  --shadow-soft: 0 10px 22px rgba(16, 32, 44, 0.045);
  --shadow-strong: 0 22px 44px rgba(16, 32, 44, 0.11);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(22, 109, 136, 0.08), transparent 24rem),
    linear-gradient(180deg, #eaf0f3 0%, #f4f7f9 34%, #fbfcfd 100%);
  line-height: 1.55;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid rgba(29, 105, 116, 0.35);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.breadcrumb-wrap {
  padding-top: 0.85rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb span:last-child {
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 251, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(158, 175, 185, 0.34);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(22, 109, 136, 0.11), rgba(158, 175, 185, 0.12)),
    #fff;
  border: 1px solid rgba(158, 175, 185, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand__mark--image {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.brand__text {
  display: grid;
  gap: 0.1rem;
}

.brand__name {
  font-size: 1rem;
}

.brand__tag {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(158, 175, 185, 0.6);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a {
  color: var(--ink);
  font-size: 0.89rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration-color: rgba(22, 109, 136, 0.35);
}

.site-nav__links a[aria-current="page"] {
  color: var(--accent-dark);
}

.site-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
  cursor: pointer;
  text-decoration: none;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 24px rgba(15, 84, 105, 0.22);
}

.button--secondary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(22, 109, 136, 0.24);
}

.button--signal {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-color: rgba(22, 109, 136, 0.28);
}

.button--text {
  padding-inline: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  box-shadow: none;
}

.footer-button {
  padding: 0;
  min-height: 0;
  background: transparent;
  border: 0;
  color: var(--accent);
  justify-content: flex-start;
  font-weight: 600;
  box-shadow: none;
}

.footer-button:hover {
  transform: none;
  text-decoration: underline;
}

.button--text:hover {
  transform: none;
  text-decoration: underline;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-faint);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(22, 109, 136, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.45rem, 4.8vw, 4.45rem);
}

h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
}

h3 {
  font-size: clamp(1.12rem, 1.9vw, 1.42rem);
}

p {
  margin: 0 0 1rem;
}

.lede,
.section-heading p,
.page-hero__copy p,
.card p,
.stat-card p,
.workflow-step p,
.proof-card figcaption,
.cta-band p,
.footer-copy,
.contact-card p,
.about-note,
.summary-list,
.list-note {
  color: var(--muted);
}

.section {
  padding: 1.8rem 0 0;
}

.section--spacious {
  padding-top: 4rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.3rem;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.page-hero {
  padding: 3.5rem 0 2.35rem;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.15rem;
  align-items: stretch;
}

.page-hero__copy,
.page-hero__panel,
.card,
.stat-card,
.workflow-step,
.proof-card,
.cta-band,
.contact-card,
.product-panel,
.note-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(158, 175, 185, 0.34);
  box-shadow: var(--shadow-soft);
}

.page-hero__copy {
  padding: clamp(1.7rem, 3vw, 2.85rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 247, 250, 0.97)),
    var(--surface-strong);
  border-top: 4px solid rgba(22, 109, 136, 0.28);
}

.page-hero__copy .lede {
  max-width: 58ch;
  margin-top: 1.2rem;
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.page-hero__support {
  margin-top: 0.85rem;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--muted);
}

.page-hero__panel {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(239, 245, 248, 0.98)),
    var(--surface-alt);
  border-top: 4px solid rgba(158, 175, 185, 0.34);
}

.page-hero__panel--dark {
  color: #ecf4f4;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(180deg, #16212b 0%, #1a2a33 100%);
}

.panel-label {
  margin: 0 0 0.8rem;
  color: inherit;
  opacity: 0.86;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-intro {
  margin-bottom: 1rem;
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-flow {
  display: grid;
  gap: 0.9rem;
}

.hero-flow__lane,
.feature-list,
.card-list,
.metric-list {
  display: grid;
  gap: 0.8rem;
}

.hero-flow__lane {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero__panel:not(.page-hero__panel--dark) .hero-flow__lane {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(158, 175, 185, 0.34);
}

.hero-flow__title {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 700;
}

.hero-flow__items {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
}

.hero-flow__node,
.hero-flow__arrow {
  padding: 0.8rem;
  border-radius: 12px;
  text-align: center;
}

.hero-flow__node {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero__panel:not(.page-hero__panel--dark) .hero-flow__node {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(158, 175, 185, 0.34);
}

.hero-flow__arrow {
  color: rgba(220, 236, 243, 0.96);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.page-hero__panel:not(.page-hero__panel--dark) .hero-flow__arrow {
  color: var(--accent-dark);
}

.feature-list,
.card-list,
.metric-list,
.contact-list,
.footer-links,
.simple-list,
.inline-list,
.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.card-list li,
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.feature-list li::before,
.card-list li::before,
.benefit-list li::before {
  content: "";
  flex: 0 0 0.6rem;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.page-hero__panel--dark .feature-list li {
  color: #d5e4e7;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 0.98rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(158, 175, 185, 0.36);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(16, 32, 44, 0.03);
  font-weight: 600;
  color: var(--ink);
}

.chip::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

.choice-grid,
.product-route-grid,
.workflow-route-grid {
  display: grid;
  gap: 1rem;
}

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

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

.grid-2,
.grid-3,
.grid-4,
.product-grid,
.proof-grid,
.workflow-grid,
.audience-grid,
.footer-grid,
.contact-layout,
.link-grid,
.stat-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

.card,
.workflow-step,
.proof-card,
.contact-card,
.note-card,
.product-panel,
.aside-box {
  padding: 1.25rem;
}

.card,
.workflow-step,
.proof-card,
.contact-card,
.note-card,
.product-panel,
.aside-box {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.choice-card,
.product-route-card,
.workflow-route-card {
  border-radius: var(--radius);
  border: 1px solid rgba(158, 175, 185, 0.34);
  box-shadow: var(--shadow-soft);
}

.choice-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 248, 0.96)),
    var(--surface-alt);
}

.choice-card__label {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-card h3 {
  font-size: 1.28rem;
}

.choice-card p:last-of-type {
  margin-bottom: 0;
}

.choice-card .button {
  justify-self: start;
}

.product-route-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border-top-width: 6px;
  box-shadow: var(--shadow-strong);
}

.product-route-card--field {
  border-top-color: var(--accent);
}

.product-route-card--office {
  border-top-color: var(--accent);
}

.product-route-card--workflow {
  border-top-color: var(--accent);
}

.product-route-card__lede {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.45;
}

.product-route-card__meta {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.product-route-card__meta div {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(158, 175, 185, 0.28);
}

.product-route-card__meta div:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-route-card__meta dt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-route-card__meta dd {
  margin: 0.24rem 0 0;
  color: var(--ink);
}

.product-route-preview {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.1rem;
}

.product-route-preview__label {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-route-preview__canvas {
  min-height: 168px;
  padding: 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(131, 148, 163, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 240, 244, 0.95)),
    #eef3f6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  display: grid;
  gap: 0.6rem;
}

.product-route-preview__row,
.product-route-preview__split span,
.product-route-preview__grid span,
.product-route-preview__layers span,
.product-route-preview__chart span {
  border-radius: 8px;
}

.product-route-preview__row {
  height: 0.9rem;
  background: rgba(49, 84, 105, 0.16);
}

.product-route-preview__row--strong {
  height: 1.15rem;
  width: 72%;
  background: rgba(28, 83, 97, 0.25);
}

.product-route-preview__row--short {
  width: 54%;
}

.product-route-preview__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.product-route-preview__split span {
  min-height: 2.8rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(131, 148, 163, 0.28);
}

.product-route-preview__chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: end;
  min-height: 4.2rem;
}

.product-route-preview__chart span {
  background: linear-gradient(180deg, rgba(44, 113, 129, 0.28), rgba(44, 113, 129, 0.58));
}

.product-route-preview__chart span:nth-child(1) {
  height: 42%;
}

.product-route-preview__chart span:nth-child(2) {
  height: 78%;
}

.product-route-preview__chart span:nth-child(3) {
  height: 56%;
}

.product-route-preview__chart span:nth-child(4) {
  height: 88%;
}

.product-route-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.product-route-preview__grid span {
  min-height: 3rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(131, 148, 163, 0.28);
}

.product-route-preview__layers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.product-route-preview__layers span:nth-child(1) {
  min-height: 1.6rem;
  background: rgba(22, 109, 136, 0.18);
}

.product-route-preview__layers span:nth-child(2) {
  min-height: 1.6rem;
  background: rgba(22, 109, 136, 0.26);
}

.product-route-preview__layers span:nth-child(3) {
  min-height: 1.6rem;
  background: rgba(22, 109, 136, 0.34);
}

.product-route-preview__layers span:nth-child(4) {
  min-height: 1.6rem;
  background: rgba(22, 109, 136, 0.12);
}

.workflow-route-card {
  padding: 1.45rem;
  background:
    linear-gradient(180deg, rgba(250, 252, 253, 0.98), rgba(239, 245, 248, 0.96)),
    var(--surface-alt);
  border-left: 4px solid rgba(23, 108, 120, 0.24);
}

.workflow-route-card h3 {
  margin-bottom: 1rem;
}

.workflow-route-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.workflow-route-node {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(158, 175, 185, 0.34);
}

.workflow-route-node strong {
  font-size: 1.05rem;
}

.workflow-route-node__label {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-route-arrow {
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  font-size: 1.6rem;
  font-weight: 700;
}

.workflow-route-note {
  margin: 1rem 0 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(158, 175, 185, 0.36);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.94);
}

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

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(158, 175, 185, 0.26);
}

.comparison-table thead th {
  background: var(--accent-faint);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.comparison-table tbody th {
  width: 24%;
  font-size: 1rem;
  color: var(--ink);
}

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

.comparison-table td a + a {
  display: inline-block;
  margin-top: 0.35rem;
}

.card--muted,
.note-card {
  background:
    linear-gradient(180deg, rgba(251, 252, 253, 0.98), rgba(240, 245, 248, 0.96)),
    var(--surface-alt);
  box-shadow: none;
}

.card__tag {
  display: inline-flex;
  justify-self: start;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-faint);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card__actions,
.cta-band__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.workflow-step {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 252, 253, 0.98), rgba(239, 245, 248, 0.96)),
    var(--surface-alt);
  border-left: 4px solid rgba(23, 108, 120, 0.22);
}

.workflow-step::after {
  content: "";
  position: absolute;
  inset: auto 1.4rem 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(23, 108, 120, 0.6), rgba(23, 108, 120, 0.12));
}

.workflow-step:hover,
.workflow-step:focus-within {
  transform: translateY(-2px);
  border-color: rgba(23, 108, 120, 0.34);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.proof-card figure {
  margin: 0;
  display: grid;
  gap: 0.9rem;
  height: 100%;
}

.placeholder {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 3.3rem 1rem 1rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 239, 244, 0.96)),
    repeating-linear-gradient(135deg, rgba(16, 32, 44, 0.028) 0, rgba(16, 32, 44, 0.028) 12px, transparent 12px, transparent 24px),
    #edf3f6;
  border: 1px solid rgba(158, 175, 185, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px rgba(158, 175, 185, 0.12);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  color: var(--ink);
  font-weight: 700;
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2rem;
  background:
    radial-gradient(circle at 0.9rem 50%, rgba(88, 108, 120, 0.72) 0.28rem, transparent 0.3rem),
    radial-gradient(circle at 1.85rem 50%, rgba(109, 126, 137, 0.54) 0.28rem, transparent 0.3rem),
    radial-gradient(circle at 2.8rem 50%, rgba(158, 175, 185, 0.78) 0.28rem, transparent 0.3rem),
    linear-gradient(180deg, rgba(237, 243, 246, 0.98), rgba(228, 236, 240, 0.98));
  border-bottom: 1px solid rgba(158, 175, 185, 0.3);
}

.placeholder::after {
  content: "";
  position: absolute;
  inset: 3.25rem 1rem 1rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(158, 175, 185, 0.34);
  background:
    linear-gradient(180deg, rgba(24, 56, 69, 0.06), transparent 2.4rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 245, 248, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 28px rgba(16, 32, 44, 0.05);
}

.placeholder small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-weight: 500;
}

.placeholder > div {
  position: relative;
  z-index: 2;
  max-width: 18ch;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(158, 175, 185, 0.34);
  box-shadow: 0 12px 24px rgba(16, 32, 44, 0.08);
}

.proof-screenshot {
  display: block;
  width: 100%;
  height: auto;
  max-height: 34rem;
  margin-inline: auto;
  border-radius: 14px;
  border: 1px solid rgba(158, 175, 185, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 248, 0.96)),
    #edf3f6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 16px 28px rgba(16, 32, 44, 0.08);
  object-fit: contain;
}

.proof-card {
  padding: 0.95rem;
  background:
    linear-gradient(180deg, rgba(250, 252, 253, 0.98), rgba(238, 244, 248, 0.96)),
    var(--surface-alt);
  border-top: 4px solid rgba(23, 108, 120, 0.26);
  box-shadow: var(--shadow);
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.proof-card:nth-child(2) {
  border-top-color: rgba(22, 109, 136, 0.22);
}

.proof-card:nth-child(3) {
  border-top-color: rgba(22, 109, 136, 0.3);
}

.proof-card:nth-child(4) {
  border-top-color: rgba(22, 109, 136, 0.16);
}

.proof-card figcaption {
  font-size: 0.94rem;
  line-height: 1.45;
  padding: 0.2rem 0.2rem 0;
  border-top: 1px solid rgba(158, 175, 185, 0.22);
}

.proof-card:hover,
.proof-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(23, 108, 120, 0.32);
  box-shadow: var(--shadow-strong);
}

.stat-card {
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(251, 252, 253, 0.98), rgba(240, 245, 248, 0.96)),
    var(--surface-alt);
  box-shadow: none;
}

.stat-label {
  display: inline-block;
  min-width: 2.1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.stat-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.55rem;
}

.definition-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.definition-list div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(158, 175, 185, 0.28);
}

.definition-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.definition-list dt {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.definition-list dd {
  margin: 0.2rem 0 0;
}

.cta-band {
  padding: clamp(1.55rem, 2.8vw, 2rem);
  background:
    linear-gradient(135deg, rgba(22, 109, 136, 0.08), rgba(22, 109, 136, 0.03)),
    #fbfcfd;
  border-top: 4px solid rgba(22, 109, 136, 0.24);
}

.cta-band h2,
.cta-band h3 {
  margin-bottom: 0.7rem;
}

.cta-band p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  align-items: start;
  gap: 1.2rem;
}

.contact-stack {
  display: grid;
  gap: 1.05rem;
}

.contact-list li,
.simple-list li {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(158, 175, 185, 0.28);
}

.contact-list li:first-child,
.simple-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

.field-group {
  display: grid;
  gap: 0.4rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(158, 175, 185, 0.58);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.field-help,
.field-error,
.privacy-note,
.form-note,
.form-status {
  font-size: 0.92rem;
  color: var(--muted);
}

.field-help {
  margin: -0.1rem 0 0;
}

.field-error {
  color: #8e3f2f;
  font-weight: 600;
}

.field-error[hidden] {
  display: none;
}

.form-status {
  min-height: 1.4rem;
  font-weight: 600;
}

.site-footer {
  position: relative;
  margin-top: 2.4rem;
  padding: 2.25rem 0 2.4rem;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(215, 225, 231, 0.94), rgba(234, 240, 244, 0.98)),
    #eef3f6;
  border-top: 1px solid rgba(95, 115, 128, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 -16px 30px rgba(16, 32, 44, 0.03);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.35rem;
}

.footer-grid > div {
  padding-top: 0.15rem;
}

.footer-grid > div + div {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(158, 175, 185, 0.22);
}

.site-footer h2,
.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent-dark);
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer-copy {
  max-width: 34ch;
}

.subtle {
  color: var(--muted);
}

.page-note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(240, 245, 248, 0.92);
  border: 1px solid rgba(158, 175, 185, 0.28);
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.aside-box {
  padding: 1.3rem;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(249, 251, 252, 0.98), rgba(236, 243, 246, 0.97)),
    var(--surface-alt);
  border: 1px solid rgba(158, 175, 185, 0.34);
  border-top: 4px solid rgba(23, 108, 120, 0.22);
  box-shadow: var(--shadow-soft);
}

.aside-box h3 {
  margin-bottom: 0.7rem;
}

.aside-box p:last-child {
  margin-bottom: 0;
}

.aside-box:hover,
.aside-box:focus-within {
  transform: translateY(-2px);
  border-color: rgba(23, 108, 120, 0.28);
  box-shadow: var(--shadow);
}

.product-grid > .card {
  min-height: 100%;
  border-top: 5px solid rgba(23, 108, 120, 0.26);
  box-shadow: var(--shadow);
}

.product-grid > .card:nth-child(2) {
  border-top-color: rgba(22, 109, 136, 0.24);
}

.product-grid > .card:nth-child(3) {
  border-top-color: rgba(22, 109, 136, 0.34);
}

.product-grid > .card:hover,
.product-grid > .card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(23, 108, 120, 0.32);
  box-shadow: var(--shadow-strong);
}

.page-home .stat-card,
.page-about .grid-3 .card.card--muted,
.page-about .audience-grid .card,
.page-contact .contact-stack .contact-card {
  background:
    linear-gradient(180deg, rgba(251, 252, 253, 0.98), rgba(239, 244, 247, 0.98)),
    #f7f9fb;
}

.page-home .product-grid > .card,
.page-about .product-grid > .card {
  background: rgba(255, 255, 255, 0.98);
}

.page-home .aside-box {
  min-height: 100%;
}

.page-about {
  background:
    radial-gradient(circle at top right, rgba(22, 109, 136, 0.07), transparent 22rem),
    linear-gradient(180deg, #ebf0f3 0%, #f5f7f9 38%, #fbfcfd 100%);
}

.page-product .page-hero__copy,
.page-about .page-hero__copy,
.page-contact .page-hero__copy {
  box-shadow: var(--shadow);
}

.page-product .page-hero__panel,
.page-about .page-hero__panel,
.page-contact .page-hero__panel {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(238, 244, 247, 0.98)),
    #f5f9fb;
}

.page-product .card:not(.card--muted) {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.page-product .audience-grid .card {
  background:
    linear-gradient(180deg, rgba(252, 253, 254, 0.98), rgba(241, 246, 249, 0.98)),
    #f8fafb;
  box-shadow: var(--shadow-soft);
}

.page-product .proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.page-product .proof-grid:not(.proof-grid--reports) .proof-card:nth-child(3) {
  grid-column: 1 / -1;
}

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

.page-product .proof-grid--reports .proof-card:first-child {
  grid-column: 1 / -1;
}

.page-product .proof-card:nth-child(1) .placeholder::after {
  background:
    linear-gradient(180deg, rgba(22, 108, 120, 0.1), transparent 2.4rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 248, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 248, 0.98));
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

.page-product .proof-card:nth-child(2) .placeholder::after {
  background:
    linear-gradient(180deg, rgba(95, 115, 128, 0.08), transparent 2.6rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 248, 0.98));
}

.page-product .proof-card:nth-child(3) .placeholder::after {
  background:
    linear-gradient(180deg, rgba(22, 109, 136, 0.08), transparent 2.5rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 247, 0.98));
}

.page-about .grid-3 .card.card--muted,
.page-about .audience-grid .card,
.page-about .product-grid > .card {
  min-height: 100%;
}

.about-hero__grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
}

.about-hero__panel {
  display: grid;
  gap: 1rem;
  align-content: space-between;
}

.about-panel__links {
  display: grid;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(158, 175, 185, 0.28);
}

.about-panel__links .button {
  justify-self: start;
}

.about-section--why,
.about-section--products {
  padding-bottom: 2.8rem;
}

.about-section--why {
  background: linear-gradient(180deg, rgba(222, 231, 237, 0.28), rgba(244, 247, 249, 0.08));
  border-top: 1px solid rgba(131, 148, 163, 0.16);
  border-bottom: 1px solid rgba(131, 148, 163, 0.16);
}

.about-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 1rem;
  align-items: start;
}

.about-why-lead {
  padding: 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 249, 0.97)),
    #ffffff;
  border: 1px solid rgba(158, 175, 185, 0.34);
  border-top: 5px solid rgba(23, 108, 120, 0.32);
  box-shadow: var(--shadow);
}

.about-why-lead h3 {
  margin-top: 0.95rem;
  margin-bottom: 0.7rem;
}

.about-why-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.about-why-points li {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(158, 175, 185, 0.24);
  color: var(--muted);
}

.about-why-points li:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-principles {
  display: grid;
  gap: 0.85rem;
}

.page-about .about-principles .card.card--muted {
  border-left: 4px solid rgba(23, 108, 120, 0.18);
  box-shadow: none;
}

.page-about .grid-3 .card.card--muted {
  border-top: 4px solid rgba(23, 108, 120, 0.2);
}

.about-audience-grid .card {
  border-top: 4px solid rgba(95, 115, 128, 0.18);
}

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

.about-section--audience {
  padding-bottom: 2.4rem;
}

.about-products-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.about-products-note {
  min-height: 100%;
}

.about-products-note .simple-list {
  display: grid;
  gap: 0.75rem;
}

.about-products-note .simple-list li {
  color: var(--muted);
}

.about-section--products {
  background: linear-gradient(180deg, rgba(246, 249, 251, 0.24), rgba(233, 240, 244, 0.28));
  border-top: 1px solid rgba(131, 148, 163, 0.14);
  border-bottom: 1px solid rgba(131, 148, 163, 0.14);
}

.page-about .cta-band {
  background:
    linear-gradient(135deg, rgba(22, 109, 136, 0.09), rgba(22, 109, 136, 0.03)),
    #fbfcfd;
  border-top-color: rgba(22, 109, 136, 0.3);
  box-shadow: var(--shadow-strong);
}

.page-contact {
  background:
    radial-gradient(circle at top right, rgba(22, 109, 136, 0.08), transparent 24rem),
    linear-gradient(180deg, #ebf0f3 0%, #f5f7f9 38%, #fbfcfd 100%);
}

.page-contact .contact-layout {
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 1rem;
}

.contact-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
}

.contact-hero__panel {
  display: grid;
  gap: 1rem;
  align-content: space-between;
}

.contact-hero__live {
  padding: 1rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 248, 0.98)),
    #f7fafb;
  border: 1px solid rgba(158, 175, 185, 0.28);
  border-left: 4px solid rgba(23, 108, 120, 0.26);
}

.contact-hero__live p {
  margin-bottom: 0;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-dark);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-email-link:hover {
  color: var(--accent);
  text-decoration: none;
}

.contact-section {
  padding-bottom: 2.8rem;
  background: linear-gradient(180deg, rgba(222, 231, 237, 0.18), rgba(246, 249, 251, 0.04));
  border-top: 1px solid rgba(131, 148, 163, 0.14);
}

.contact-card--direct {
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(251, 252, 253, 0.98), rgba(241, 246, 249, 0.98)),
    #f7fafb;
  border-top: 4px solid rgba(22, 109, 136, 0.18);
  box-shadow: var(--shadow-soft);
}

.contact-actions {
  margin: 1rem 0 0.2rem;
}

.contact-enquiry {
  display: grid;
  gap: 0.9rem;
}

.contact-helper-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-helper-panel {
  margin-bottom: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(249, 251, 252, 0.98), rgba(240, 245, 248, 0.98)),
    #f8fafb;
  border: 1px solid rgba(158, 175, 185, 0.24);
  border-left: 4px solid rgba(23, 108, 120, 0.22);
}

.contact-helper-panel h3 {
  margin-bottom: 0.8rem;
}

.contact-helper-list li {
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(158, 175, 185, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
}

.contact-helper-list strong {
  color: var(--ink);
}

.contact-card--form {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.98);
  border-top: 5px solid rgba(23, 108, 120, 0.34);
  box-shadow: var(--shadow-strong);
}

.contact-form__intro {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.page-contact .contact-card--form:hover,
.page-contact .contact-card--form:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 26px 44px rgba(16, 32, 44, 0.12);
}

.page-contact .button-row {
  justify-content: space-between;
}

.page-contact .privacy-note {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(158, 175, 185, 0.22);
}

.page-contact .form-note {
  max-width: 24ch;
}

.page-contact .field-group label {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-contact input,
.page-contact select,
.page-contact textarea {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 252, 0.98));
}

.page-contact input:focus,
.page-contact select:focus,
.page-contact textarea:focus {
  outline: none;
  border-color: rgba(23, 108, 120, 0.48);
  box-shadow: 0 0 0 4px rgba(23, 108, 120, 0.1);
}

.page-contact input[aria-invalid="true"],
.page-contact select[aria-invalid="true"],
.page-contact textarea[aria-invalid="true"] {
  border-color: rgba(142, 63, 47, 0.72);
  box-shadow: 0 0 0 4px rgba(142, 63, 47, 0.12);
}

.page-about .site-footer,
.page-contact .site-footer {
  margin-top: 1.4rem;
}

.page-products {
  background:
    linear-gradient(180deg, #e9eef2 0%, #f4f7f9 34%, #fbfcfd 100%);
}

.page-products .products-section--quick {
  padding-bottom: 2.2rem;
}

.page-products .products-section--overview,
.page-products .products-section--comparison,
.page-products .products-section--market {
  padding-bottom: 3.4rem;
  background: linear-gradient(180deg, rgba(220, 230, 237, 0.26), rgba(244, 248, 250, 0.08));
  border-top: 1px solid rgba(131, 148, 163, 0.18);
  border-bottom: 1px solid rgba(131, 148, 163, 0.18);
}

.page-products .products-section--workflow,
.page-products .products-section--why {
  padding-bottom: 2.8rem;
}

.page-products .page-hero__copy,
.page-products .page-hero__panel,
.page-products .choice-card,
.page-products .product-route-card,
.page-products .workflow-route-card,
.page-products .comparison-table-wrap,
.page-products .market-position-card,
.page-products .market-keyword-panel,
.page-products .cta-band,
.page-products .card.card--muted {
  border-radius: 16px;
  border-color: rgba(131, 148, 163, 0.34);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.page-products .page-hero__copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 250, 0.98)),
    #ffffff;
}

.page-products .page-hero__panel {
  background:
    linear-gradient(180deg, rgba(244, 248, 250, 0.98), rgba(235, 241, 245, 0.98)),
    #f4f8fa;
}

.page-products .panel-intro,
.page-products .product-route-card__lede {
  color: #132534;
}

.page-products .choice-grid,
.page-products .product-route-grid,
.page-products .workflow-route-grid {
  gap: 1.1rem;
}

.page-products .choice-card,
.page-products .product-route-card {
  min-height: 100%;
}

.page-products .choice-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 248, 0.98)),
    #f7f9fb;
  border-left: 4px solid rgba(29, 105, 116, 0.55);
}

.page-products .choice-card__label,
.page-products .workflow-route-node__label {
  color: var(--accent-dark);
}

.page-products .choice-card,
.page-products .product-route-card,
.page-products .workflow-route-card,
.page-products .market-position-card,
.page-products .card.card--muted,
.page-products .comparison-table tbody tr {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.page-products .choice-card:hover,
.page-products .choice-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(44, 113, 129, 0.44);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
}

.page-products .choice-card .button,
.page-products .product-route-card .card__actions {
  margin-top: auto;
}

.page-products .product-route-card {
  background: rgba(255, 255, 255, 0.99);
}

.page-products .product-route-card:hover,
.page-products .product-route-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(44, 113, 129, 0.46);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
}

.page-products .product-route-card--field {
  border-top-color: var(--accent);
}

.page-products .product-route-card--office {
  border-top-color: rgba(22, 109, 136, 0.76);
}

.page-products .product-route-card--workflow {
  border-top-color: rgba(22, 109, 136, 0.5);
}

.page-products .product-route-card--field .product-route-preview__canvas {
  background:
    linear-gradient(180deg, rgba(248, 252, 253, 0.98), rgba(230, 241, 244, 0.96)),
    #eef5f7;
}

.page-products .product-route-card--office .product-route-preview__canvas {
  background:
    linear-gradient(180deg, rgba(248, 252, 253, 0.98), rgba(231, 240, 244, 0.96)),
    #eef4f7;
}

.page-products .product-route-card--workflow .product-route-preview__canvas {
  background:
    linear-gradient(180deg, rgba(248, 252, 253, 0.98), rgba(227, 239, 244, 0.96)),
    #edf5f8;
}

.page-products .product-route-card__meta div,
.page-products .definition-list div,
.page-products .comparison-table th,
.page-products .comparison-table td {
  border-color: rgba(131, 148, 163, 0.28);
}

.page-products .workflow-route-card {
  background:
    linear-gradient(180deg, rgba(252, 253, 254, 0.98), rgba(240, 244, 247, 0.98)),
    #f6f9fb;
}

.page-products .workflow-route-card:hover,
.page-products .workflow-route-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(60, 93, 113, 0.42);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.page-products .workflow-route-node {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(131, 148, 163, 0.32);
}

.page-products .workflow-route-arrow {
  color: var(--accent-dark);
}

.page-products .comparison-table-wrap {
  background: rgba(255, 255, 255, 0.98);
}

.page-products .comparison-table thead th {
  background: var(--accent-faint);
}

.page-products .comparison-table tbody tr:nth-child(even) td,
.page-products .comparison-table tbody tr:nth-child(even) th {
  background: rgba(232, 241, 246, 0.55);
}

.page-products .comparison-table tbody tr:hover td,
.page-products .comparison-table tbody tr:hover th {
  background: rgba(219, 235, 242, 0.72);
}

.page-products .card.card--muted {
  background:
    linear-gradient(180deg, rgba(251, 252, 253, 0.98), rgba(239, 244, 247, 0.98)),
    #f7f9fb;
}

.page-products .card.card--muted:hover,
.page-products .card.card--muted:focus-within {
  transform: translateY(-2px);
  border-color: rgba(131, 148, 163, 0.42);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.07);
}

.page-products .market-position-card {
  border-top: 4px solid rgba(44, 113, 129, 0.38);
}

.page-products .market-position-card:nth-child(2) {
  border-top-color: rgba(22, 109, 136, 0.28);
}

.page-products .market-position-card:nth-child(3) {
  border-top-color: rgba(22, 109, 136, 0.18);
}

.page-products .market-position-card:hover,
.page-products .market-position-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(49, 84, 105, 0.42);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.page-products .market-insight-grid {
  margin-top: 1.1rem;
  align-items: start;
}

.page-products .market-insight-panel,
.page-products .market-keyword-panel {
  min-height: 100%;
}

.page-products .market-keyword-panel {
  background:
    linear-gradient(180deg, rgba(252, 253, 254, 0.98), rgba(239, 244, 247, 0.98)),
    #f8fafb;
}

.page-products .market-chip-row {
  margin-top: 1rem;
}

.page-products .cta-band {
  background:
    linear-gradient(135deg, rgba(22, 109, 136, 0.06), rgba(22, 109, 136, 0.02)),
    #fbfcfd;
}

.page-products .button--secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(131, 148, 163, 0.5);
}

.page-products .button--primary:hover,
.page-products .button--primary:focus-visible {
  box-shadow: 0 18px 34px rgba(18, 67, 75, 0.28);
}

.page-products .button--secondary:hover,
.page-products .button--secondary:focus-visible,
.page-products .button--signal:hover,
.page-products .button--signal:focus-visible {
  border-color: rgba(15, 84, 105, 0.44);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.direct-answer {
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(251, 253, 254, 0.98), rgba(238, 244, 247, 0.98)),
    #f7fafb;
  border: 1px solid rgba(158, 175, 185, 0.28);
  border-left: 4px solid rgba(22, 109, 136, 0.42);
  box-shadow: var(--shadow-soft);
}

.direct-answer p:last-child,
.faq-list p:last-child,
.related-links p:last-child {
  margin-bottom: 0;
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-list .card {
  min-height: 100%;
}

.faq-list,
.related-links {
  display: grid;
  gap: 1rem;
}

.faq-list article,
.related-links article {
  min-height: 100%;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.simple-answer-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.1rem;
}

.simple-answer-list li {
  color: var(--muted);
}

body.cookie-modal-open {
  overflow: hidden;
}

.cookie-consent,
.cookie-modal__dialog,
.cookie-category {
  border-radius: 20px;
  border: 1px solid rgba(95, 115, 128, 0.2);
  box-shadow: var(--shadow-strong);
}

.cookie-consent[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 120;
  width: min(calc(100% - 2rem), 1080px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(236, 243, 246, 0.98)),
    #f7fafb;
}

.cookie-consent__content p:last-child,
.cookie-modal__description,
.cookie-modal__note {
  margin-bottom: 0;
}

.cookie-consent__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent__eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(22, 109, 136, 0.14);
}

.cookie-consent__content h2,
.cookie-modal__header h2 {
  margin-bottom: 0.6rem;
  max-width: 20ch;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.cookie-consent__content p,
.cookie-modal__description,
.cookie-category p,
.cookie-modal__note,
.cookie-category__status {
  color: var(--muted);
}

.cookie-consent__meta {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.cookie-consent__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
}

.cookie-consent__decision {
  min-width: 10rem;
  border-color: rgba(95, 115, 128, 0.42);
}

.cookie-consent__link {
  align-self: center;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 44, 0.48);
  backdrop-filter: blur(6px);
}

.cookie-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(88vh, 900px);
  overflow: auto;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 246, 249, 0.98)),
    #fbfcfd;
}

.cookie-modal__header,
.cookie-modal__footer,
.cookie-category,
.policy-grid {
  display: grid;
  gap: 1rem;
}

.cookie-modal__header,
.cookie-modal__footer {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.cookie-modal__close {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-modal__close:hover {
  color: var(--accent-dark);
}

.cookie-modal__categories {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.cookie-category {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 1rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 242, 246, 0.96)),
    #f7fafb;
  box-shadow: var(--shadow-soft);
}

.cookie-category__title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.45rem;
}

.cookie-category h3 {
  font-size: 1.05rem;
}

.cookie-category__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-faint);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-category__badge--muted {
  background: rgba(95, 115, 128, 0.12);
  color: var(--muted);
}

.cookie-category__badge--optional {
  background: rgba(22, 109, 136, 0.12);
  color: var(--accent-dark);
}

.cookie-category__helper {
  margin-bottom: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.cookie-category__status {
  font-size: 0.94rem;
  font-weight: 600;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.cookie-switch__slider {
  position: relative;
  width: 3.4rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(95, 115, 128, 0.28);
  box-shadow: inset 0 0 0 1px rgba(95, 115, 128, 0.18);
  transition: background-color 150ms ease;
}

.cookie-switch__slider::after {
  content: "";
  position: absolute;
  top: 0.22rem;
  left: 0.22rem;
  width: 1.56rem;
  height: 1.56rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(16, 32, 44, 0.16);
  transition: transform 150ms ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.cookie-switch input:checked + .cookie-switch__slider::after {
  transform: translateX(1.38rem);
}

.cookie-switch input:focus-visible + .cookie-switch__slider {
  outline: 3px solid rgba(29, 105, 116, 0.32);
  outline-offset: 3px;
}

.cookie-switch input:disabled + .cookie-switch__slider {
  background: rgba(22, 109, 136, 0.22);
}

.policy-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.policy-actions {
  align-items: stretch;
}

.policy-actions .button {
  min-width: 11.5rem;
}

.page-privacy .comparison-table tbody th {
  width: 18%;
}

.page-privacy .cta-band {
  margin-top: 0;
}

.page-privacy .site-footer {
  margin-top: 3rem;
}

@media (max-width: 1240px) {
  :root {
    --header-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(246, 249, 251, 0.98);
    border: 1px solid rgba(158, 175, 185, 0.42);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links,
  .site-nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links a {
    white-space: normal;
  }
}

@media (max-width: 1080px) {
  .grid-4,
  .proof-grid,
  .audience-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .page-hero__grid,
  .grid-2,
  .grid-3,
  .product-grid,
  .product-route-grid,
  .workflow-grid,
  .workflow-route-grid,
  .choice-grid,
  .link-grid,
  .contact-layout,
  .intro-grid,
  .footer-grid,
  .policy-grid,
  .cookie-consent,
  .cookie-category {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 3rem;
  }

  .about-why-layout,
  .about-products-head,
  .contact-hero__grid {
    grid-template-columns: 1fr;
  }

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

  .about-audience-grid,
  .contact-helper-list {
    grid-template-columns: 1fr;
  }

  .footer-grid > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .cookie-consent {
    align-items: stretch;
  }

  .cookie-modal__header,
  .cookie-modal__footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .section--spacious {
    padding-top: 3.35rem;
  }

  .chip-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
  }

  .chip {
    white-space: nowrap;
  }

  .grid-4,
  .proof-grid,
  .audience-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .page-contact .button-row {
    justify-content: flex-start;
  }

  .page-product .proof-grid:not(.proof-grid--reports) .proof-card:nth-child(3),
  .page-product .proof-grid--reports .proof-card:first-child {
    grid-column: auto;
  }

  .placeholder {
    min-height: 228px;
  }

  .workflow-route-track {
    grid-template-columns: 1fr;
  }

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

  .hero-flow__arrow {
    padding: 0.35rem;
  }

  .cookie-consent {
    width: calc(100% - 1rem);
    bottom: 0.5rem;
    padding: 1rem;
  }

  .cookie-consent__actions,
  .cookie-modal__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-consent__decision,
  .cookie-modal__actions .button {
    width: 100%;
  }

  .cookie-consent__link {
    width: 100%;
    justify-content: center;
  }

  .cookie-modal {
    padding: 0.5rem;
  }

  .cookie-modal__dialog {
    padding: 1rem;
  }
}
