:root {
  --wm-blue: #5c78a6;
  --wm-blue-deep: #334f7c;
  --wm-blue-soft: #eef2f7;
  --wm-red: #bc3726;
  --wm-red-deep: #9f2e20;
  --wm-gold: #e1a521;
  --wm-ink: #1f2937;
  --wm-ink-strong: #111827;
  --wm-muted: #5f6b7a;
  --wm-line: #d9e0e8;
  --wm-line-dark: #3d4858;
  --wm-soft: #f6f8fa;
  --wm-white: #ffffff;
  --wm-dark: #17202d;
  --wm-success: #24755c;
  --wm-danger-soft: #fff2f0;
  --wm-shadow: 0 18px 52px rgba(31, 41, 55, .09);
  --wm-shadow-sm: 0 8px 24px rgba(31, 41, 55, .07);
  --wm-radius: 8px;
  --wm-radius-sm: 4px;
  --wm-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.wm-public {
  margin: 0;
  background: var(--wm-white);
  color: var(--wm-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: #dce6f3; color: var(--wm-ink-strong); }

.wm-container { width: min(calc(100% - 40px), var(--wm-container)); margin-inline: auto; }
.wm-skip { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--wm-ink); color: #fff; padding: 10px 14px; text-decoration: none; }
.wm-skip:focus { top: 16px; }

/* Header */
.wm-site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--wm-line); }
.wm-site-header__inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.wm-brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.wm-brand img { display: block; width: auto; height: 38px; object-fit: contain; }
.wm-brand__fallback { display: none; font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; }
.wm-primary-nav { display: flex; align-items: center; justify-content: center; gap: 5px; margin-left: auto; }
.wm-primary-nav a { position: relative; color: #344054; font-size: .92rem; font-weight: 650; padding: 10px 9px; text-decoration: none; white-space: nowrap; }
.wm-primary-nav a::after { content: ""; position: absolute; left: 9px; right: 9px; bottom: 4px; height: 2px; background: var(--wm-red); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.wm-primary-nav a:hover::after, .wm-primary-nav a:focus-visible::after, .wm-primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.wm-primary-nav a[aria-current="page"] { color: var(--wm-ink-strong); }
.wm-site-header__actions { display: flex; align-items: center; gap: 12px; }
.wm-link-button { color: var(--wm-ink); font-size: .92rem; font-weight: 700; text-decoration: none; padding: 9px 4px; }
.wm-link-button:hover, .wm-link-button:focus-visible { color: var(--wm-blue-deep); }
.wm-nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--wm-line); background: #fff; border-radius: var(--wm-radius-sm); }
.wm-nav-toggle span { display: block; height: 2px; background: var(--wm-ink); margin: 4px 0; }

/* Type and links */
h1, h2, h3 { margin-top: 0; color: var(--wm-ink-strong); font-weight: 760; letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(2.5rem, 4.2vw, 4rem); max-width: 18ch; margin-bottom: 20px; }
h2 { font-size: clamp(1.85rem, 2.8vw, 2.8rem); margin-bottom: 16px; }
h3 { font-size: 1.28rem; margin-bottom: 10px; }
p { margin-top: 0; }
.wm-eyebrow { margin: 0 0 14px; color: var(--wm-red); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.wm-lead { max-width: 66ch; color: #435067; font-size: clamp(1.12rem, 1.6vw, 1.35rem); line-height: 1.58; }
.wm-lead-sm { color: #4a586d; font-size: 1.12rem; line-height: 1.7; }
.wm-small { color: var(--wm-muted); font-size: .86rem; line-height: 1.55; }
.wm-arrow-link { display: inline-flex; align-items: center; gap: 8px; color: var(--wm-blue-deep); font-weight: 750; text-decoration: none; text-underline-offset: 4px; }
.wm-arrow-link span { transition: transform .18s ease; }
.wm-arrow-link:hover span, .wm-arrow-link:focus-visible span { transform: translateX(4px); }
.wm-arrow-link--light { color: #fff; }
.wm-callout { border-left: 3px solid var(--wm-gold); padding: 16px 0 16px 18px; font-weight: 650; color: #39465a; }

/* Buttons */
.wm-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.wm-button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border: 1px solid transparent; border-radius: var(--wm-radius-sm); font-size: .92rem; font-weight: 760; line-height: 1.2; text-decoration: none; cursor: pointer; transition: background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease; }
.wm-button--primary { background: var(--wm-red); border-color: var(--wm-red); color: #fff; }
.wm-button--primary:hover, .wm-button--primary:focus-visible { background: var(--wm-red-deep); border-color: var(--wm-red-deep); box-shadow: 0 5px 16px rgba(188,55,38,.16); }
.wm-button--secondary { background: #fff; border-color: #aeb9c7; color: var(--wm-ink); }
.wm-button--secondary:hover, .wm-button--secondary:focus-visible { border-color: var(--wm-blue); color: var(--wm-blue-deep); }
.wm-button--quiet { background: transparent; color: var(--wm-blue-deep); border-color: transparent; }
.wm-button--quiet:hover, .wm-button--quiet:focus-visible { background: var(--wm-blue-soft); }
.wm-button:focus-visible, .wm-link-button:focus-visible, .wm-primary-nav a:focus-visible, .wm-arrow-link:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible { outline: 3px solid rgba(92,120,166,.28); outline-offset: 2px; }

/* Hero */
.wm-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--wm-line); }
.wm-hero--home { padding: clamp(56px, 6vw, 88px) 0 clamp(52px, 6vw, 82px); background: #fff; }
.wm-hero--compact { padding: clamp(46px, 5vw, 72px) 0; background: var(--wm-soft); }
.wm-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: clamp(46px, 7vw, 92px); align-items: center; }
.wm-hero-note { display: flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--wm-muted); font-size: .9rem; }
.wm-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wm-success); box-shadow: 0 0 0 5px rgba(36,117,92,.10); }

/* Brand/product visual */
.wm-product-visual { position: relative; padding: 22px; background: #fff; border: 1px solid #cfd7e2; border-top: 4px solid var(--wm-blue); border-radius: var(--wm-radius); box-shadow: var(--wm-shadow); overflow: hidden; }
.wm-product-visual__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--wm-line); font-weight: 760; }
.wm-status { padding: 4px 7px; font-size: .72rem; font-weight: 800; border: 1px solid transparent; border-radius: 999px; }
.wm-status--ready { color: #17644d; background: #eaf6f1; border-color: #c8e6da; }
.wm-assurance-flow { display: flex; align-items: center; gap: 8px; padding: 22px 0; overflow: hidden; }
.wm-assurance-flow span { flex: 0 0 auto; padding: 7px 8px; background: var(--wm-blue-soft); border: 1px solid #d8e0eb; color: var(--wm-blue-deep); border-radius: var(--wm-radius-sm); font-size: .72rem; font-weight: 760; }
.wm-assurance-flow i { flex: 1 1 18px; min-width: 8px; height: 1px; background: #b6c0cc; }
.wm-product-visual__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--wm-line); border: 1px solid var(--wm-line); }
.wm-product-visual__grid > div { min-height: 130px; padding: 15px; background: #fff; }
.wm-product-visual__grid small, .wm-product-visual__grid span { display: block; color: var(--wm-muted); font-size: .76rem; }
.wm-product-visual__grid strong { display: block; margin: 6px 0 9px; font-size: .94rem; }
.wm-mesh-mark { display: grid; grid-template-columns: repeat(7, 7px); gap: 6px; justify-content: end; margin-top: 22px; opacity: .8; }
.wm-mesh-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wm-blue); }
.wm-mesh-dot--2 { background: var(--wm-blue); opacity: .68; }
.wm-mesh-dot--3 { background: var(--wm-red); }
.wm-mesh-dot--4 { background: var(--wm-gold); }

.wm-proof-strip { background: var(--wm-dark); color: #fff; border-bottom: 1px solid #283547; }
.wm-proof-strip .wm-container { min-height: 56px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.wm-proof-strip span { text-align: center; padding: 9px; color: #d8e0ea; font-size: .82rem; font-weight: 760; letter-spacing: .04em; text-transform: uppercase; border-right: 1px solid #39465a; }
.wm-proof-strip span:last-child { border-right: 0; }

/* Sections */
.wm-section { padding: clamp(68px, 8vw, 112px) 0; border-bottom: 1px solid var(--wm-line); }
.wm-section--soft { background: var(--wm-soft); }
.wm-section--ink { background: var(--wm-dark); color: #d8e0ea; border-color: #2c394a; }
.wm-section--ink h2, .wm-section--ink h3, .wm-section--ink strong { color: #fff; }
.wm-section--ink .wm-eyebrow { color: #f7bd45; }
.wm-section--ink .wm-lead-sm, .wm-section--ink p { color: #c7d0dc; }
.wm-section--trust { background: #fffaf0; }
.wm-section--boundary { padding-top: 0; border-bottom: 0; }
.wm-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 52px; margin-bottom: 44px; }
.wm-section-heading > div:first-child { max-width: 690px; }
.wm-section-heading > p { max-width: 540px; color: var(--wm-muted); }
.wm-section-heading--split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; }

/* Audience */
.wm-audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--wm-line); }
.wm-audience-card { position: relative; min-height: 510px; padding: clamp(30px, 4vw, 52px); background: #fff; }
.wm-audience-card + .wm-audience-card { border-left: 1px solid var(--wm-line); }
.wm-audience-card--enterprise { background: #f7f9fc; }
.wm-card-index, .wm-solution-num { color: var(--wm-red); font-size: .76rem; font-weight: 800; letter-spacing: .08em; }
.wm-card-label { margin: 42px 0 9px; color: var(--wm-blue-deep); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.wm-audience-card h3 { max-width: 17ch; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.wm-audience-card > p:not(.wm-card-label) { max-width: 52ch; color: var(--wm-muted); }
.wm-audience-card .wm-arrow-link { margin-top: 18px; }
.wm-check-list { list-style: none; padding: 0; margin: 24px 0; }
.wm-check-list li { position: relative; padding: 8px 0 8px 24px; border-bottom: 1px solid #e2e7ed; }
.wm-check-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 8px; height: 8px; background: var(--wm-gold); }

/* Story */
.wm-story-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(44px, 8vw, 100px); }
.wm-story-lines { border-top: 1px solid var(--wm-line-dark); }
.wm-story-lines > div { display: grid; grid-template-columns: 42px minmax(170px,.45fr) minmax(0,.55fr); gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--wm-line-dark); }
.wm-story-lines span { color: #f7bd45; font-size: .78rem; font-weight: 800; }
.wm-story-lines p { margin: 0; font-size: .92rem; }

/* Solutions */
.wm-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--wm-line); border-left: 1px solid var(--wm-line); }
.wm-solution-grid article { min-height: 285px; display: flex; flex-direction: column; padding: 28px; background: #fff; border-right: 1px solid var(--wm-line); border-bottom: 1px solid var(--wm-line); }
.wm-solution-grid h3 { margin-top: 22px; }
.wm-solution-grid p { color: var(--wm-muted); }
.wm-solution-grid .wm-arrow-link { margin-top: auto; }
.wm-solutions-overview { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--wm-line); border-left: 1px solid var(--wm-line); }
.wm-solution-card { min-height: 315px; display: flex; flex-direction: column; padding: clamp(28px, 4vw, 46px); background: #fff; border-right: 1px solid var(--wm-line); border-bottom: 1px solid var(--wm-line); }
.wm-solution-card h2 { margin: 26px 0 14px; font-size: clamp(1.7rem, 2.5vw, 2.4rem); }
.wm-solution-card p { color: var(--wm-muted); max-width: 48ch; }
.wm-solution-card .wm-arrow-link { margin-top: auto; }
.wm-solution-map { display: flex; flex-direction: column; align-items: flex-start; border-left: 4px solid var(--wm-red); background: #fff; box-shadow: var(--wm-shadow-sm); }
.wm-solution-map span { width: 100%; padding: 14px 20px; border: 1px solid var(--wm-line); border-left: 0; color: var(--wm-ink); font-weight: 760; }
.wm-solution-map i { width: 1px; height: 10px; margin-left: 42px; background: var(--wm-line); }
.wm-solution-hero-card { padding: 30px; background: #fff; border: 1px solid var(--wm-line); border-top: 4px solid var(--wm-red); box-shadow: var(--wm-shadow-sm); }
.wm-solution-hero-card > span { color: var(--wm-muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.wm-solution-hero-card > strong { display: block; margin: 20px 0 14px; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.1; letter-spacing: -.03em; }
.wm-solution-hero-card p { color: var(--wm-muted); }

/* Platform */
.wm-platform-feature { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,.8fr); gap: clamp(48px, 8vw, 100px); align-items: center; }
.wm-platform-stack { border-top: 4px solid var(--wm-blue); box-shadow: var(--wm-shadow-sm); }
.wm-platform-stack span { display: block; padding: 16px 18px; background: #fff; border: 1px solid var(--wm-line); border-top: 0; font-weight: 720; }
.wm-capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--wm-line); border-left: 1px solid var(--wm-line); }
.wm-capability-grid article { min-height: 220px; padding: 26px; border-right: 1px solid var(--wm-line); border-bottom: 1px solid var(--wm-line); background: #fff; }
.wm-capability-grid article p { color: var(--wm-muted); font-size: .93rem; }
.wm-capability-grid--six { grid-template-columns: repeat(3, 1fr); }
.wm-designer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(44px, 8vw, 100px); }
.wm-designer-options { border-top: 1px solid var(--wm-line-dark); }
.wm-designer-options > div { display: grid; grid-template-columns: 42px 190px 1fr; gap: 16px; padding: 21px 0; border-bottom: 1px solid var(--wm-line-dark); }
.wm-designer-options span { color: #f7bd45; font-size: .76rem; font-weight: 800; }
.wm-designer-options p { margin: 0; font-size: .92rem; }

/* Process / general cards */
.wm-process-grid, .wm-three-up, .wm-feature-columns, .wm-principles-grid { display: grid; border-top: 1px solid var(--wm-line); border-left: 1px solid var(--wm-line); }
.wm-process-grid { grid-template-columns: repeat(4, 1fr); }
.wm-process-grid article, .wm-three-up article, .wm-principles-grid article { padding: 28px; background: #fff; border-right: 1px solid var(--wm-line); border-bottom: 1px solid var(--wm-line); }
.wm-process-grid span, .wm-principles-grid span { color: var(--wm-red); font-size: .76rem; font-weight: 800; }
.wm-process-grid h3, .wm-principles-grid h3 { margin-top: 24px; }
.wm-process-grid p, .wm-three-up p, .wm-principles-grid p { color: var(--wm-muted); }
.wm-three-up { grid-template-columns: repeat(3, 1fr); }
.wm-feature-columns { grid-template-columns: repeat(4, 1fr); border-color: var(--wm-line-dark); }
.wm-feature-columns > div { padding: 25px; border-right: 1px solid var(--wm-line-dark); border-bottom: 1px solid var(--wm-line-dark); }
.wm-feature-columns p { margin: 9px 0 0; font-size: .92rem; }
.wm-principles-grid { grid-template-columns: repeat(4, 1fr); }

/* Executive / audience visuals */
.wm-executive-panel { background: #fff; border: 1px solid var(--wm-line); border-top: 4px solid var(--wm-blue); box-shadow: var(--wm-shadow-sm); }
.wm-panel-label { display: block; padding: 14px 18px; border-bottom: 1px solid var(--wm-line); color: var(--wm-muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.wm-executive-panel > div { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 15px 18px; border-bottom: 1px solid var(--wm-line); }
.wm-executive-panel > div:last-child { border-bottom: 0; }
.wm-executive-panel p { margin: 0; color: var(--wm-muted); font-size: .9rem; }
.wm-sme-panel { padding: 8px 26px; background: #fff; border: 1px solid var(--wm-line); border-left: 4px solid var(--wm-gold); box-shadow: var(--wm-shadow-sm); }
.wm-sme-panel div { padding: 20px 0; border-bottom: 1px solid var(--wm-line); }
.wm-sme-panel div:last-child { border-bottom: 0; }
.wm-sme-panel span { display: block; color: var(--wm-muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.wm-sme-panel strong { display: block; margin-top: 4px; font-size: 1.18rem; }

/* Commercial */
.wm-commercial-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(44px, 8vw, 100px); align-items: center; }
.wm-quote-panel { padding: 34px; background: var(--wm-blue-soft); border-left: 4px solid var(--wm-blue); }
.wm-quote-panel p { margin-bottom: 12px; color: var(--wm-ink-strong); font-size: clamp(1.45rem, 2.5vw, 2.25rem); line-height: 1.3; letter-spacing: -.025em; }
.wm-quote-panel span { color: var(--wm-muted); font-size: .84rem; }
.wm-pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--wm-line); }
.wm-pricing-card { min-height: 520px; display: flex; flex-direction: column; padding: clamp(30px, 4vw, 50px); }
.wm-pricing-card + .wm-pricing-card { border-left: 1px solid var(--wm-line); }
.wm-pricing-card--enterprise { background: var(--wm-soft); }
.wm-pricing-card .wm-card-label { margin-top: 0; }
.wm-pricing-card h2 { font-size: clamp(2rem, 3vw, 2.8rem); }
.wm-pricing-card > p:not(.wm-card-label) { color: var(--wm-muted); }
.wm-pricing-card .wm-button { margin-top: auto; align-self: flex-start; }
.wm-price-note { padding: 30px; background: #fff; border: 1px solid var(--wm-line); border-top: 4px solid var(--wm-gold); box-shadow: var(--wm-shadow-sm); }
.wm-price-note span { display: block; color: var(--wm-muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.wm-price-note strong { display: block; margin: 16px 0 8px; font-size: 1.45rem; }
.wm-price-note p { color: var(--wm-muted); }
.wm-factor-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--wm-line); border-left: 1px solid var(--wm-line); }
.wm-factor-grid div { padding: 24px; background: #fff; border-right: 1px solid var(--wm-line); border-bottom: 1px solid var(--wm-line); }
.wm-factor-grid strong, .wm-factor-grid span { display: block; }
.wm-factor-grid span { margin-top: 8px; color: var(--wm-muted); font-size: .9rem; }

/* Industries */
.wm-industry-signal { padding: 30px; background: #fff; border: 1px solid var(--wm-line); border-left: 4px solid var(--wm-red); box-shadow: var(--wm-shadow-sm); }
.wm-industry-signal strong { display: block; color: var(--wm-red); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.wm-industry-signal p { margin: 16px 0 0; font-size: 1.25rem; line-height: 1.45; }
.wm-industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--wm-line); border-left: 1px solid var(--wm-line); }
.wm-industry-grid article { min-height: 210px; padding: 30px; border-right: 1px solid var(--wm-line); border-bottom: 1px solid var(--wm-line); }
.wm-industry-grid p { color: var(--wm-muted); }

/* Why */
.wm-principle-panel { padding: 12px 28px; background: #fff; border: 1px solid var(--wm-line); border-left: 4px solid var(--wm-blue); box-shadow: var(--wm-shadow-sm); }
.wm-principle-panel span, .wm-principle-panel strong { display: block; padding: 9px 0; }
.wm-principle-panel span { color: var(--wm-muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.wm-principle-panel strong { font-size: 1.55rem; border-bottom: 1px solid var(--wm-line); }
.wm-principle-panel strong:last-child { border-bottom: 0; }
.wm-honesty-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(44px, 8vw, 100px); }
.wm-no-claim { border-top: 1px solid var(--wm-line-dark); }
.wm-no-claim > div { padding: 20px 0; border-bottom: 1px solid var(--wm-line-dark); }
.wm-no-claim p { margin: 6px 0 0; }
.wm-testing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 100px); }
.wm-testing-label { display: inline-flex; margin-bottom: 14px; padding: 5px 8px; background: #eaf6f1; color: #17644d; border: 1px solid #c8e6da; border-radius: var(--wm-radius-sm); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.wm-testing-list { border-top: 1px solid var(--wm-line); }
.wm-testing-list > div { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--wm-line); }
.wm-testing-list span { color: var(--wm-muted); }

/* Solution workflow and use cases */
.wm-workflow-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(44px, 8vw, 100px); }
.wm-workflow-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--wm-line); }
.wm-workflow-list li { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--wm-line); }
.wm-workflow-list li > span { color: var(--wm-red); font-size: .76rem; font-weight: 800; }
.wm-workflow-list strong { color: var(--wm-ink-strong); }
.wm-workflow-list p { margin: 3px 0 0; color: var(--wm-muted); font-size: .9rem; }
.wm-usecase-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--wm-line); border-left: 1px solid var(--wm-line); }
.wm-usecase-list > div { display: grid; grid-template-columns: 180px 1fr; gap: 18px; min-height: 115px; padding: 24px; border-right: 1px solid var(--wm-line); border-bottom: 1px solid var(--wm-line); }
.wm-usecase-list span { color: var(--wm-muted); }
.wm-boundary { padding: 26px 30px; border: 1px solid #f0c4bd; border-left: 4px solid var(--wm-red); background: #fff8f6; }
.wm-boundary strong { color: var(--wm-red-deep); }
.wm-boundary p { margin: 8px 0 0; }
.wm-regulatory-band { padding: clamp(52px, 7vw, 86px) 0; background: var(--wm-blue-deep); color: #fff; border-bottom: 1px solid #294367; }
.wm-regulatory-band h2 { color: #fff; }
.wm-regulatory-band p { color: #e2e9f2; }
.wm-regulatory-band .wm-small { color: #c7d4e3; }
.wm-regulatory-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(44px, 8vw, 100px); }
.wm-regulatory-label { display: inline-flex; margin-bottom: 14px; padding: 4px 7px; color: #fff; border: 1px solid rgba(255,255,255,.34); border-radius: var(--wm-radius-sm); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

/* Demo / forms */
.wm-demo-expect { padding: 26px 30px; background: #fff; border: 1px solid var(--wm-line); border-top: 4px solid var(--wm-blue); box-shadow: var(--wm-shadow-sm); }
.wm-demo-expect strong { display: block; padding-bottom: 12px; border-bottom: 1px solid var(--wm-line); }
.wm-demo-expect span { display: block; padding: 11px 0; color: var(--wm-muted); border-bottom: 1px solid var(--wm-line); }
.wm-demo-expect span:last-child { border-bottom: 0; }
.wm-demo-grid { display: grid; grid-template-columns: minmax(0,.78fr) minmax(520px,1.22fr); gap: clamp(44px, 7vw, 92px); align-items: start; }
.wm-sticky-copy { position: sticky; top: 112px; }
.wm-form-card { background: #fff; border: 1px solid var(--wm-line); border-top: 4px solid var(--wm-red); box-shadow: var(--wm-shadow-sm); }
.wm-form-heading { padding: 28px 30px 22px; border-bottom: 1px solid var(--wm-line); }
.wm-form-heading > span { color: var(--wm-red); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.wm-form-heading h2 { margin: 8px 0 4px; font-size: 2rem; }
.wm-form-heading p { margin: 0; color: var(--wm-muted); font-size: .88rem; }
.wm-form-card form { padding: 28px 30px 32px; }
.wm-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.wm-field, .wm-fieldset { min-width: 0; }
.wm-field--full { grid-column: 1 / -1; }
.wm-field label, .wm-fieldset legend { display: block; margin-bottom: 7px; color: #344054; font-size: .86rem; font-weight: 720; }
.wm-field input:not([type="checkbox"]), .wm-field select, .wm-field textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #b9c4d1; border-radius: var(--wm-radius-sm); background: #fff; color: var(--wm-ink); }
.wm-field textarea { min-height: 130px; resize: vertical; }
.wm-field input:hover, .wm-field select:hover, .wm-field textarea:hover { border-color: #8293a7; }
.wm-field input[aria-invalid="true"], .wm-field select[aria-invalid="true"], .wm-field textarea[aria-invalid="true"], .wm-fieldset.has-error { border-color: var(--wm-red); }
.wm-required { color: var(--wm-red); font-weight: 800; }
.wm-choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.wm-choice { display: flex; align-items: flex-start; gap: 10px; min-height: 48px; padding: 11px 12px; border: 1px solid var(--wm-line); border-radius: var(--wm-radius-sm); cursor: pointer; }
.wm-choice:hover { border-color: var(--wm-blue); background: #f8fafc; }
.wm-choice:has(input:checked) { border-color: var(--wm-blue); background: var(--wm-blue-soft); }
.wm-choice input { margin-top: 4px; accent-color: var(--wm-blue); }
.wm-choice span { font-size: .86rem; line-height: 1.35; }
.wm-consent { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 500 !important; }
.wm-consent input { margin-top: 5px; accent-color: var(--wm-blue); }
.wm-data-notice { margin: 22px 0 0; color: var(--wm-muted); font-size: .82rem; }
.wm-data-notice a { color: var(--wm-blue-deep); }
.wm-form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.wmp-field-error { min-height: 18px; margin-top: 4px; color: var(--wm-red-deep); font-size: .78rem; }
.wmp-fieldset { margin: 0; padding: 0; border: 0; }
.wmp-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.wmp-form-message:empty { display: none; }
.wmp-form-message { margin-bottom: 18px; }
.wmp-alert { padding: 12px 14px; border: 1px solid var(--wm-line); border-left-width: 4px; background: #fff; font-size: .88rem; }
.wmp-alert-error { border-color: #efc2bb; border-left-color: var(--wm-red); background: var(--wm-danger-soft); color: #7f251b; }
.wmp-alert-info { border-left-color: var(--wm-blue); background: var(--wm-blue-soft); }
.wmp-success-panel { padding: 38px 30px; text-align: left; }
.wmp-success-icon { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; background: #eaf6f1; color: var(--wm-success); border: 1px solid #c8e6da; border-radius: 50%; font-weight: 900; }
.wmp-success-panel h2 { font-size: 2.1rem; }
.wmp-success-panel p { color: var(--wm-muted); }
.wmp-success-panel .wmp-button, .wmp-success-panel .wm-button { margin-top: 10px; }
/* compatibility for success markup emitted by public_site.js */
.wmp-button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 11px 18px; border: 1px solid #aeb9c7; border-radius: var(--wm-radius-sm); background: #fff; color: var(--wm-ink); font-size: .92rem; font-weight: 760; text-decoration: none; }

/* CTA */
.wm-cta { padding: clamp(58px, 7vw, 90px) 0; background: #eef2f7; border-top: 4px solid var(--wm-red); }
.wm-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; }
.wm-cta h2 { margin-bottom: 12px; }
.wm-cta p { max-width: 720px; color: #4c596c; }
.wm-cta .wm-actions { margin-top: 0; flex-direction: column; align-items: stretch; min-width: 210px; }

/* Footer */
.wm-site-footer { padding: 64px 0 0; background: #111827; color: #d5dce6; }
.wm-footer-grid { display: grid; grid-template-columns: 1.55fr .85fr 1.2fr .85fr .72fr; gap: 34px; }
.wm-site-footer .wm-brand img { height: 34px; }
.wm-footer-brand p { max-width: 42ch; margin: 18px 0 0; color: #c2cbd7; font-size: .91rem; }
.wm-footer-brand .wm-small { color: #929eae; font-size: .78rem; }
.wm-footer-grid > div:not(.wm-footer-brand) { display: flex; flex-direction: column; gap: 7px; }
.wm-footer-grid strong { margin-bottom: 6px; color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.wm-footer-grid a, .wm-footer-button { color: #c8d1dc; font-size: .85rem; text-decoration: none; }
.wm-footer-grid a:hover, .wm-footer-grid a:focus-visible, .wm-footer-button:hover, .wm-footer-button:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.wm-footer-button { padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.wm-footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 48px; padding: 20px 0; border-top: 1px solid #344153; color: #94a0b1; font-size: .78rem; }

@media (max-width: 1120px) {
  .wm-site-header__inner { gap: 18px; }
  .wm-primary-nav { gap: 0; }
  .wm-primary-nav a { padding-inline: 7px; font-size: .86rem; }
  .wm-site-header__actions .wm-link-button { display: none; }
  .wm-footer-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
  .wm-footer-grid > div:nth-child(4), .wm-footer-grid > div:nth-child(5) { margin-top: 12px; }
  .wm-capability-grid { grid-template-columns: repeat(2, 1fr); }
  .wm-process-grid, .wm-principles-grid, .wm-feature-columns, .wm-factor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .wm-container { width: min(calc(100% - 32px), var(--wm-container)); }
  .wm-site-header__inner { min-height: 68px; }
  .wm-brand img { height: 34px; }
  .wm-nav-toggle { display: block; }
  .wm-primary-nav { position: fixed; inset: 68px 0 0; display: none; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 18px 20px 36px; background: #fff; border-top: 1px solid var(--wm-line); overflow-y: auto; }
  body.is-menu-open .wm-primary-nav { display: flex; }
  .wm-primary-nav a { padding: 15px 5px; border-bottom: 1px solid var(--wm-line); font-size: 1rem; }
  .wm-primary-nav a::after { display: none; }
  .wm-site-header__actions { margin-left: 0; }
  .wm-site-header__actions .wm-button { display: none; }
  .wm-hero-grid, .wm-section-heading--split, .wm-story-grid, .wm-platform-feature, .wm-designer-grid, .wm-commercial-grid, .wm-honesty-grid, .wm-testing-grid, .wm-workflow-grid, .wm-regulatory-grid, .wm-demo-grid { grid-template-columns: 1fr; }
  .wm-hero-grid { gap: 42px; }
  h1 { font-size: clamp(2.35rem, 6vw, 3.35rem); max-width: 20ch; }
  .wm-product-visual { max-width: 640px; }
  .wm-section-heading { display: block; }
  .wm-section-heading > p { max-width: 680px; }
  .wm-audience-grid, .wm-pricing-grid { grid-template-columns: 1fr; }
  .wm-audience-card + .wm-audience-card, .wm-pricing-card + .wm-pricing-card { border-left: 0; border-top: 1px solid var(--wm-line); }
  .wm-audience-card { min-height: auto; }
  .wm-solution-grid { grid-template-columns: repeat(2,1fr); }
  .wm-solutions-overview { grid-template-columns: 1fr; }
  .wm-story-lines > div { grid-template-columns: 38px 1fr; }
  .wm-story-lines p { grid-column: 2; }
  .wm-usecase-list > div { grid-template-columns: 150px 1fr; }
  .wm-cta-grid { grid-template-columns: 1fr; }
  .wm-cta .wm-actions { flex-direction: row; min-width: 0; }
  .wm-demo-grid { gap: 42px; }
  .wm-sticky-copy { position: static; }
  .wm-footer-grid { grid-template-columns: repeat(2,1fr); }
  .wm-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .wm-container { width: min(calc(100% - 24px), var(--wm-container)); }
  .wm-hero--home, .wm-hero--compact { padding: 44px 0; }
  .wm-section { padding: 58px 0; }
  h1 { font-size: clamp(2.05rem, 8.5vw, 2.75rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.25rem); }
  .wm-lead { font-size: 1.06rem; }
  .wm-actions { align-items: stretch; flex-direction: column; }
  .wm-button { width: 100%; }
  .wm-proof-strip .wm-container { grid-template-columns: repeat(2,1fr); }
  .wm-proof-strip span:nth-child(2) { border-right: 0; }
  .wm-proof-strip span:nth-child(-n+2) { border-bottom: 1px solid #39465a; }
  .wm-product-visual { padding: 16px; }
  .wm-assurance-flow { display: grid; grid-template-columns: 1fr 18px 1fr; }
  .wm-assurance-flow i:nth-of-type(2n) { display: none; }
  .wm-product-visual__grid { grid-template-columns: 1fr; }
  .wm-product-visual__grid > div { min-height: auto; }
  .wm-audience-card, .wm-pricing-card { padding: 28px 22px; }
  .wm-card-label { margin-top: 24px; }
  .wm-solution-grid, .wm-capability-grid, .wm-capability-grid--six, .wm-process-grid, .wm-three-up, .wm-feature-columns, .wm-principles-grid, .wm-factor-grid, .wm-industry-grid, .wm-usecase-list { grid-template-columns: 1fr; }
  .wm-solution-grid article, .wm-solution-card { min-height: auto; }
  .wm-designer-options > div { grid-template-columns: 36px 1fr; }
  .wm-designer-options p { grid-column: 2; }
  .wm-testing-list > div, .wm-usecase-list > div { grid-template-columns: 1fr; gap: 5px; }
  .wm-form-card form, .wm-form-heading { padding-inline: 20px; }
  .wm-form-grid { grid-template-columns: 1fr; }
  .wm-field--full { grid-column: auto; }
  .wm-choice-grid { grid-template-columns: 1fr; }
  .wm-form-actions { flex-direction: column; }
  .wm-cta .wm-actions { flex-direction: column; }
  .wm-footer-grid { grid-template-columns: 1fr; }
  .wm-footer-brand { grid-column: auto; }
  .wm-footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
