/* Seam Datalab public-site system, 2026 refresh. */
:root {
  --coal: #100e0c;
  --coal-deep: #090807;
  --coal-soft: #1c1815;
  --bone: #f3efe7;
  --paper: #fbf9f4;
  --ash: #e6e0d5;
  --ink: #17140f;
  --stone: #565a60;
  --line: #ded7c9;
  --ember: #d5552a;
  --ember-deep: #b8431f;
  --vein: #1e5e58;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --shadow: 0 24px 70px rgba(16, 14, 12, 0.14);
  --shadow-dark: 0 28px 70px rgba(0, 0, 0, 0.3);
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bone);
}

body.site-modern {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bone);
  color: var(--ink);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.site-modern *,
body.site-modern *::before,
body.site-modern *::after {
  box-sizing: border-box;
}

body.site-modern ::selection {
  background: var(--ember);
  color: var(--paper);
}

body.site-modern img,
body.site-modern picture,
body.site-modern video {
  display: block;
  max-width: 100%;
}

body.site-modern a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

body.site-modern button,
body.site-modern input,
body.site-modern select,
body.site-modern textarea {
  font: inherit;
}

body.site-modern button,
body.site-modern a {
  -webkit-tap-highlight-color: transparent;
}

body.site-modern :focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 4px;
}

body.site-modern [hidden] {
  display: none !important;
}

body.site-modern h1,
body.site-modern h2,
body.site-modern h3,
body.site-modern h4,
body.site-modern p,
body.site-modern ul,
body.site-modern ol,
body.site-modern dl,
body.site-modern figure {
  margin-top: 0;
}

body.site-modern h1,
body.site-modern h2,
body.site-modern h3,
body.site-modern h4 {
  color: inherit;
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

body.site-modern h1 {
  font-size: clamp(42px, 6vw, 78px);
}

body.site-modern h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

body.site-modern h3 {
  font-size: clamp(21px, 2vw, 30px);
}

body.site-modern p {
  color: var(--stone);
}

body.site-modern ul,
body.site-modern ol {
  padding-left: 1.25rem;
}

body.site-modern .skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-decoration: none;
  transition: transform 160ms var(--ease);
}

body.site-modern .skip-link:focus {
  transform: translateY(0);
}

/* Shared navigation ------------------------------------------------------ */
.site-nav {
  position: relative;
  z-index: 30;
  display: flex;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  color: var(--paper);
}

.site-brand {
  flex: 0 0 auto;
  color: var(--paper) !important;
  text-decoration: none;
}

.site-brand .wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.site-brand .wordmark-name {
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.site-brand .wordmark-rule {
  display: block;
  width: 38px;
  height: 2px;
  margin: 5px 0 4px;
  background: var(--ember);
}

.site-brand .wordmark-sub {
  color: #c8c1b7;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 34px);
  margin-left: auto;
}

.site-nav-links > a:not(.site-nav-cta),
.site-mobile-menu > a:not(.site-nav-cta) {
  position: relative;
  color: #d7d0c5;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav-links > a:not(.site-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--ember);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav-links > a:hover,
.site-nav-links > a:focus-visible,
.site-nav-links > a[aria-current="page"],
.site-mobile-menu > a:hover,
.site-mobile-menu > a:focus-visible,
.site-mobile-menu > a[aria-current="page"] {
  color: var(--paper);
}

.site-nav-links > a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 17px;
  background: var(--ember);
  color: var(--paper) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.site-nav-cta:hover,
.site-nav-cta:focus-visible {
  background: var(--ember-deep);
  transform: translateY(-1px);
}

.site-nav-cta span {
  font-size: 18px;
  line-height: 0.8;
}

.site-menu {
  display: none;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(251, 249, 244, 0.32);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-mobile-menu {
  display: none;
}

/* Dark hero bands -------------------------------------------------------- */
.suite-hero,
.case-page-hero,
.signal-hero,
.signal-page-hero,
.product-hero,
.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--coal);
  color: var(--paper);
}

.suite-hero::before,
.case-page-hero::before,
.signal-hero::before,
.signal-page-hero::before,
.product-hero::before,
.service-hero::before {
  position: absolute;
  inset: 0;
  background-image: url("/assets/regional-topo.svg");
  background-position: 70% 50%;
  background-size: 850px auto;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.suite-hero::after,
.case-page-hero::after,
.signal-hero::after,
.signal-page-hero::after,
.product-hero::after,
.service-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(9, 8, 7, 0.54));
  content: "";
  pointer-events: none;
}

.suite-hero > *,
.case-page-hero > *,
.signal-hero > *,
.signal-page-hero > *,
.product-hero > *,
.service-hero > * {
  position: relative;
  z-index: 1;
}

/* Homepage --------------------------------------------------------------- */
.suite-hero {
  min-height: 760px;
}

.suite-hero-inner {
  display: grid;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: 670px;
  align-items: center;
  grid-template-columns: minmax(310px, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(30px, 6vw, 94px);
  margin: 0 auto;
  padding: 48px 0 92px;
}

.suite-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.suite-hero h1 {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(48px, 6.4vw, 82px);
}

.suite-hero-copy > p {
  max-width: 520px;
  margin-bottom: 34px;
  color: #c3bdb4;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.suite-actions,
.page-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.suite-button,
.button,
.product-action,
.case-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.suite-button-primary,
.button-primary,
.product-action-primary {
  background: var(--ember);
  color: var(--paper) !important;
}

.suite-button-primary:hover,
.suite-button-primary:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.product-action-primary:hover,
.product-action-primary:focus-visible {
  background: var(--ember-deep);
  transform: translateY(-1px);
}

.suite-button-quiet,
.button-ghost,
.product-action-secondary {
  border-color: rgba(251, 249, 244, 0.5);
  color: var(--paper) !important;
  background: transparent;
}

.suite-button-quiet:hover,
.suite-button-quiet:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.product-action-secondary:hover,
.product-action-secondary:focus-visible {
  border-color: var(--paper);
  background: rgba(251, 249, 244, 0.08);
}

.suite-button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink) !important;
}

.suite-button-outline:hover,
.suite-button-outline:focus-visible {
  border-color: var(--ember);
  color: var(--ember-deep) !important;
}

.suite-stage {
  position: relative;
  min-height: 500px;
}

.stage-window {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(251, 249, 244, 0.25);
  background: var(--paper);
  box-shadow: var(--shadow-dark);
  color: var(--ink);
}

.stage-window figcaption,
.product-screen figcaption,
.product-window figcaption,
.media-caption {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-top: 1px solid var(--line);
  color: var(--stone);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stage-window figcaption img,
.product-name img,
.product-label img,
.flow-track img {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.stage-window figcaption span {
  margin-left: auto;
  color: var(--stone);
}

.stage-window picture,
.stage-window picture img {
  width: 100%;
}

.stage-window picture img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.stage-signal {
  top: 5%;
  right: 8%;
  z-index: 3;
  width: 72%;
}

.stage-crm {
  top: 22%;
  left: 0;
  z-index: 2;
  width: 72%;
}

.stage-journey {
  right: -1%;
  bottom: -3%;
  z-index: 4;
  width: 68%;
}

.suite-contours {
  position: absolute;
  right: -6%;
  bottom: -18%;
  width: 58%;
  height: 320px;
  border-top: 1px solid rgba(213, 85, 42, 0.3);
  border-radius: 50%;
  opacity: 0.6;
  transform: rotate(-12deg);
}

.suite-contours::before,
.suite-contours::after {
  position: absolute;
  inset: 22px 8% 0;
  border-top: 1px solid rgba(213, 85, 42, 0.26);
  border-radius: 50%;
  content: "";
}

.suite-contours::after {
  inset: 44px 18% 0;
  opacity: 0.7;
}

.suite-intro,
.suite-flow,
.suite-compare,
.suite-pricing,
.suite-guides,
.suite-faq,
.suite-final,
.media-showcase,
.services-teaser {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.suite-intro {
  padding: 114px 0 94px;
}

.suite-intro p,
.suite-section-heading > p,
.help-kicker,
.help-section-label,
.section-label,
.product-heading > p,
.product-label,
.service-label,
.media-eyebrow,
.eyebrow {
  margin-bottom: 17px;
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.suite-intro h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.product-showcase {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.product-band {
  display: grid;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 6vw, 92px);
  margin: 0 auto;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.product-band-crm .product-copy {
  order: 2;
}

.product-band-crm .product-screen {
  order: 1;
}

.product-name,
.product-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-name {
  margin-bottom: 26px;
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.2vw, 58px);
}

.product-copy > p {
  max-width: 550px;
  margin-bottom: 28px;
  color: var(--stone);
  font-size: 18px;
  line-height: 1.55;
}

.product-copy .feature-list {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.product-copy .feature-list li {
  display: grid;
  grid-template-columns: minmax(130px, 0.6fr) 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.product-copy .feature-list strong {
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 15px;
}

.product-copy .feature-list span {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.45;
}

.product-copy > a {
  color: var(--ember-deep);
  font-weight: 700;
  text-underline-offset: 6px;
}

.product-screen,
.product-window {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-screen picture,
.product-screen picture img,
.product-window picture,
.product-window picture img {
  width: 100%;
}

.product-screen picture img,
.product-window picture img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.product-screen figcaption,
.product-window figcaption {
  border-top: 1px solid var(--line);
}

/* Shared mid-page sections ---------------------------------------------- */
.suite-flow,
.suite-compare,
.suite-foundation,
.suite-pricing,
.suite-guides,
.suite-faq,
.suite-final,
.media-showcase,
.services-teaser {
  padding: 110px 0;
}

.suite-flow {
  position: relative;
}

.suite-flow::before,
.services-teaser::before,
.media-showcase::before {
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(30, 94, 88, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.suite-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}

.suite-section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.suite-section-heading > p:last-child {
  max-width: 360px;
  margin-bottom: 0;
  font-size: 17px;
}

.flow-track {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  padding: 34px 0 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-track > div {
  display: grid;
  gap: 8px;
}

.flow-track > div img {
  margin-bottom: 12px;
}

.flow-track strong {
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 22px;
}

.flow-track span {
  color: var(--stone);
  font-size: 14px;
}

.flow-track > i {
  align-self: center;
  color: var(--ember);
  font-size: 25px;
  font-style: normal;
}

.flow-return {
  margin: 26px 0 0;
  color: var(--vein) !important;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.suite-compare {
  max-width: none;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  background: var(--coal);
  color: var(--paper);
}

.suite-compare > * {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.suite-compare p,
.suite-compare .compare-row span {
  color: #bdb6ad;
}

.suite-compare .suite-section-heading > p,
.suite-compare .help-section-label {
  color: #e98764;
}

.compare-table {
  overflow: hidden;
  border: 1px solid rgba(251, 249, 244, 0.2);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 20px 22px;
  border-top: 1px solid rgba(251, 249, 244, 0.14);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-head {
  background: rgba(251, 249, 244, 0.08);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-row strong {
  font-family: "Schibsted Grotesk", Arial, sans-serif;
}

.compare-row span {
  font-size: 14px;
  line-height: 1.5;
}

.compare-note {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: 14px;
}

.suite-foundation {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.foundation-grid article {
  min-height: 250px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
}

.foundation-grid article + article {
  padding-left: 24px;
}

.foundation-grid article:last-child {
  border-right: 0;
}

.foundation-grid article > span {
  display: block;
  margin-bottom: 46px;
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.foundation-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.foundation-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Media and services modules -------------------------------------------- */
.media-showcase {
  position: relative;
  max-width: none;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.media-showcase > * {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.media-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.media-heading h2 {
  margin-bottom: 0;
}

.media-heading p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 17px;
}

.media-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--coal);
  box-shadow: var(--shadow);
}

.media-frame video,
.product-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--coal);
  object-fit: cover;
}

.media-caption {
  border-top: 1px solid rgba(251, 249, 244, 0.17);
  background: var(--coal-soft);
  color: #cfc8be;
}

.media-summary {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.6;
}

.media-summary strong {
  color: var(--ink);
  font-weight: 700;
}

.media-showcase .media-summary {
  margin-right: auto;
  margin-left: auto;
}

.product-media-section .media-summary {
  max-width: none;
}

.services-teaser {
  position: relative;
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  gap: 0;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.services-teaser-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(var(--max) * 0.86), 100%);
  margin-left: auto;
  padding: 10px clamp(0px, 4vw, 74px) 10px 0;
}

.services-teaser-copy h2 {
  max-width: 650px;
  margin-bottom: 20px;
}

.services-teaser-copy p {
  max-width: 530px;
  margin-bottom: 28px;
  font-size: 18px;
}

.services-teaser-media {
  min-height: 450px;
  background: var(--coal) url("/assets/seam-hero-texture.webp") center / cover no-repeat;
}

.services-teaser-media img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.72;
}

/* Pricing, guides, FAQ, and final CTA ----------------------------------- */
.suite-pricing {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 38px;
}

.pricing-heading h2 {
  margin-bottom: 16px;
}

.pricing-heading p {
  max-width: 740px;
  margin-bottom: 0;
}

.pricing-route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: -8px 0 32px;
}

.pricing-route-actions .suite-button {
  width: auto;
}

.live-pricing {
  min-width: 150px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.live-pricing span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--vein);
}

.live-pricing strong,
.live-pricing small {
  display: block;
}

.live-pricing strong {
  display: inline;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-pricing small {
  margin-top: 8px;
  color: var(--stone);
  font-size: 12px;
}

.pricing-switches {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.pricing-switch {
  display: inline-flex;
  border: 1px solid var(--line);
}

.pricing-switch button {
  min-height: 42px;
  padding: 9px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.pricing-switch button:last-child {
  border-right: 0;
}

.pricing-switch button[aria-pressed="true"] {
  background: var(--coal);
  color: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.pricing-grid-brokerage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-plan {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 24px;
  background: var(--paper);
}

.price-plan .product-name {
  margin-bottom: 22px;
}

.price-plan .price {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.price-plan .price small {
  color: var(--stone);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.price-plan > p:not(.price):not(.seat-total):not(.seat-note) {
  min-height: 65px;
  margin-bottom: 18px;
  color: var(--stone);
  font-size: 14px;
}

.price-plan ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--stone);
  font-size: 13px;
  list-style: none;
}

.price-plan li::before {
  margin-right: 8px;
  color: var(--ember);
  content: "—";
}

.price-plan form {
  margin-top: auto;
}

.price-plan form button {
  width: 100%;
}

.seat-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--stone);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seat-field input {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.seat-total,
.seat-note,
.pricing-note {
  color: var(--stone);
  font-size: 12px;
}

.pricing-note {
  max-width: 820px;
  margin: 22px 0 0;
}

.suite-guides {
  border-top: 1px solid var(--line);
}

.help-role-grid,
.help-task-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.help-role-card,
.help-task-directory article {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: background 160ms ease;
}

.help-role-card:hover,
.help-role-card:focus-visible {
  background: var(--bone);
}

.help-role-card span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.help-role-card h2 {
  margin: 32px 0 12px;
  font-size: 28px;
}

.help-role-card p {
  max-width: 480px;
  margin-bottom: 22px;
  font-size: 14px;
}

.help-role-card strong {
  margin-top: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.suite-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 64px;
  border-top: 1px solid var(--line);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.faq-list p {
  max-width: 700px;
  margin: 13px 0 0;
  font-size: 14px;
}

.suite-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: none;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  background: var(--vein);
  color: var(--paper);
}

.suite-final > * {
  width: auto;
}

.suite-final > div:first-child {
  max-width: 650px;
}

.suite-final > div:last-child {
  margin-left: auto;
}

.suite-final h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 56px);
}

.suite-final p {
  max-width: 560px;
  margin-bottom: 0;
  color: #d3e1dc;
}

/* Services page ---------------------------------------------------------- */
.service-hero-grid {
  display: grid;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: 580px;
  align-items: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 62px;
  margin: 0 auto;
  padding: 70px 0 92px;
}

.service-hero-copy {
  max-width: 590px;
}

.service-hero-copy h1 {
  margin-bottom: 24px;
  color: var(--paper);
}

.service-hero-copy > p {
  max-width: 520px;
  margin-bottom: 32px;
  color: #c3bdb4;
  font-size: 19px;
}

.service-hero-media {
  min-height: 420px;
  background: var(--coal-soft) url("/assets/seam-hero-texture.webp") center / cover no-repeat;
  border: 1px solid rgba(251, 249, 244, 0.22);
  box-shadow: var(--shadow-dark);
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.82;
}

.service-path,
.service-modes,
.service-process {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 110px 0;
}

.service-path {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
}

.service-path h2,
.service-modes h2,
.service-process h2 {
  margin-bottom: 0;
}

.service-path-copy > p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.55;
}

.service-line {
  position: relative;
  min-height: 150px;
  margin-top: 52px;
  border-bottom: 1px solid var(--vein);
}

.service-line::before,
.service-line::after {
  position: absolute;
  top: 38%;
  left: 4%;
  width: 92%;
  height: 48px;
  border: 1px solid var(--vein);
  border-top: 0;
  border-radius: 50%;
  content: "";
  opacity: 0.56;
  transform: rotate(-3deg);
}

.service-line::after {
  top: 52%;
  left: 30%;
  width: 56%;
  height: 22px;
  opacity: 0.32;
  transform: rotate(5deg);
}

.service-note {
  color: var(--vein) !important;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px !important;
  letter-spacing: 0.02em;
  line-height: 1.5 !important;
}

.service-modes {
  max-width: none;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  border-top: 1px solid var(--line);
}

.service-modes > h2,
.service-modes > .service-label {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.service-mode-list {
  width: min(var(--max), 100%);
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
}

.service-mode {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-mode > span {
  color: var(--vein);
  font-family: "JetBrains Mono", monospace;
  font-size: 30px;
  line-height: 1;
}

.service-mode-number {
  color: var(--vein);
  font-family: "JetBrains Mono", monospace;
  font-size: 30px;
}

.service-mode h3 {
  margin-bottom: 10px;
}

.service-mode p {
  max-width: 550px;
  margin-bottom: 0;
}

.service-mode-output {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.service-mode-output strong {
  display: block;
  margin-bottom: 8px;
  color: var(--vein);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-output {
  padding-left: 22px;
  border-left: 1px solid var(--line);
  color: var(--stone);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px !important;
  letter-spacing: 0.1em;
  line-height: 1.5 !important;
  text-transform: uppercase;
}

.service-output strong {
  display: block;
  margin-top: 8px;
  color: var(--vein);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.service-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: 70px;
}

.service-heading-row h2 {
  max-width: 640px;
  margin-bottom: 0;
}

.service-heading-row > p {
  max-width: 580px;
  margin-bottom: 0;
  font-size: 18px;
}

.service-process {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.process-step {
  min-height: 180px;
  padding: 22px 22px 0 0;
  border-right: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 22px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: block;
  margin-bottom: 32px;
  color: var(--vein);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.process-step h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.process-step p {
  margin-bottom: 0;
  font-size: 14px;
}

.service-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-process-list li {
  min-height: 210px;
  padding: 22px 22px 0 0;
  border-right: 1px solid var(--line);
}

.service-process-list li + li {
  padding-left: 22px;
}

.service-process-list li:last-child {
  border-right: 0;
}

.service-process-list li > span {
  display: block;
  margin-bottom: 32px;
  color: var(--vein);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.service-process-list h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.service-process-list p {
  margin-bottom: 0;
  font-size: 14px;
}

.service-boundaries {
  display: grid;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  margin: 0 auto;
  padding: 108px 0;
  border-top: 1px solid var(--line);
}

.service-boundaries h2 {
  max-width: 430px;
  margin-bottom: 0;
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.boundary-grid article {
  padding-top: 20px;
  border-top: 2px solid var(--vein);
}

.boundary-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.boundary-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
  gap: 54px;
  padding: 92px max(var(--gutter), calc((100vw - var(--max)) / 2));
  background: var(--coal);
  color: var(--paper);
}

.service-cta h2 {
  margin-bottom: 14px;
}

.service-cta p {
  max-width: 600px;
  margin-bottom: 24px;
  color: #c3bdb4;
}

.service-cta-side {
  padding-left: 26px;
  border-left: 1px solid rgba(251, 249, 244, 0.3);
}

.service-cta-side strong {
  display: block;
  margin-bottom: 8px;
  color: #9ec1b9;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-cta-side a {
  color: var(--paper);
}

/* Product pages ---------------------------------------------------------- */
.product-page {
  background: var(--bone);
}

.product-page > .site-nav {
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2));
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  background: var(--coal);
}

.product-hero {
  border-top: 1px solid rgba(251, 249, 244, 0.1);
}

.product-hero-grid {
  display: grid;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  align-items: center;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  margin: 0 auto;
  padding: 78px 0 100px;
}

.product-label {
  color: #e98764;
}

.product-hero h1 {
  margin-bottom: 23px;
  color: var(--paper);
  font-size: clamp(44px, 5.4vw, 70px);
}

.product-lede {
  max-width: 560px;
  margin-bottom: 30px;
  color: #c3bdb4 !important;
  font-size: 18px;
}

.product-window {
  box-shadow: var(--shadow-dark);
}

.product-window-bar {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--coal-soft);
  color: #cfc8be;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-dots {
  display: flex;
  gap: 5px;
}

.product-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b8175;
}

.product-section,
.product-cta {
  border-top: 1px solid var(--line);
}

.product-section .product-wrap,
.product-cta .product-wrap {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding-top: 105px;
  padding-bottom: 105px;
}

.product-heading {
  max-width: 810px;
  margin-bottom: 48px;
}

.product-heading h2 {
  margin-bottom: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.outcome {
  min-height: 220px;
  padding: 25px;
  background: var(--paper);
}

.outcome > span {
  display: block;
  margin-bottom: 48px;
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.outcome h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.outcome p {
  margin-bottom: 0;
  font-size: 14px;
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: 70px;
}

.details-intro h2 {
  margin-bottom: 18px;
}

.details-intro p {
  max-width: 430px;
  font-size: 17px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.detail {
  min-height: 220px;
  padding: 23px;
  background: var(--paper);
}

.detail b {
  display: block;
  margin-bottom: 38px;
  color: var(--vein);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.detail h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.detail p {
  margin-bottom: 0;
  font-size: 14px;
}

.product-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.product-compare-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
}

.product-compare-grid h3 {
  margin-bottom: 14px;
}

.product-compare-grid p,
.product-compare-note {
  margin-bottom: 0;
  font-size: 15px;
}

.product-compare-note {
  margin-top: 22px;
}

.task-sequence {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.task-sequence li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.task-sequence li > span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
}

.task-sequence h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.task-sequence p {
  margin-bottom: 0;
}

.trust-strip {
  background: var(--vein);
  color: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
}

.trust-grid h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.trust-grid p {
  color: #d3e1dc;
  font-size: 14px;
}

.trust-grid strong {
  display: block;
  margin-bottom: 9px;
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 20px;
}

.product-cta {
  background: var(--coal);
  color: var(--paper);
}

.product-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.product-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 50px);
}

.product-cta p {
  margin-bottom: 0;
  color: #c3bdb4;
}

.product-media-section {
  background: var(--paper);
}

.product-video {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Older content routes get the same visual shell ----------------------- */
.case-page-header,
.signal-page-header,
.help-header-content {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.case-page-header,
.signal-page-header {
  padding: 72px 0 108px;
}

.case-page-header h1,
.signal-page-header h1,
.help-header h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--paper);
}

.case-page-header > p:not(.section-label),
.signal-page-header > p:not(.section-label),
.help-header-content > p:not(.help-kicker) {
  max-width: 720px;
  margin-bottom: 28px;
  color: #c3bdb4;
  font-size: 18px;
}

.case-page-section,
.contact-section {
  border-top: 1px solid var(--line);
}

.case-page-section .section-inner,
.contact-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.case-page-grid,
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
}

.case-page-grid h2,
.split-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
}

.case-page-copy,
.contact-copy {
  min-width: 0;
}

.case-page-copy > p,
.contact-copy > p {
  max-width: 700px;
  font-size: 18px;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.fact-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  color: var(--vein);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--stone);
}

.case-page-list {
  border-top: 1px solid var(--line);
}

.case-page-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.case-page-list article > span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
}

.case-page-list h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.case-page-list p {
  margin-bottom: 0;
}

.topo-field {
  background: var(--paper) url("/assets/regional-topo.svg") 88% 50% / 720px auto no-repeat;
}

.case-page-outcome {
  background: var(--vein);
  color: var(--paper);
}

.case-page-outcome p,
.case-page-outcome .section-label {
  color: #d3e1dc;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: end;
  gap: 64px;
}

.contact-section {
  background: var(--paper);
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--bone);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .bot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.turnstile-check {
  padding-top: 5px;
  color: var(--stone);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.turnstile-check .cf-turnstile {
  margin-top: 8px;
}

.form-note,
.form-status {
  margin-bottom: 0;
  color: var(--stone);
  font-size: 12px;
}

/* Help center ------------------------------------------------------------ */
.help-header {
  position: relative;
  overflow: hidden;
  background: var(--coal);
  color: var(--paper);
}

.help-header::after {
  position: absolute;
  inset: 0;
  background: url("/assets/regional-topo.svg") 72% 50% / 900px auto no-repeat;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.help-header > * {
  position: relative;
  z-index: 1;
}

.help-header-content {
  padding: 70px 0 100px;
}

.help-shell {
  display: grid;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 70px;
  margin: 0 auto;
  padding: 86px 0 110px;
}

.help-sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.help-sidebar strong,
.help-sidebar a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.help-sidebar strong {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.help-sidebar a {
  color: var(--stone);
  font-size: 13px;
  text-decoration: none;
}

.help-sidebar a:hover,
.help-sidebar a:focus-visible {
  color: var(--ember-deep);
}

.help-section {
  padding: 0 0 76px;
}

.help-guide-start {
  padding: 28px 28px 30px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--vein);
  background: rgba(255, 255, 255, 0.32);
}

.help-guide-start .help-task-brief {
  margin-bottom: 0;
}

.help-section + .help-section {
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

.help-section h2,
.help-overview h2 {
  margin-bottom: 16px;
}

.help-section > p:not(.help-section-label),
.help-overview > p {
  max-width: 760px;
  font-size: 17px;
}

.help-task-brief {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
}

.help-task-brief > div {
  padding: 20px;
  background: var(--paper);
}

.help-task-brief strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.help-task-brief span {
  display: block;
  color: var(--stone);
  font-size: 14px;
}

.help-screen {
  overflow: hidden;
  margin: 30px 0 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.help-screen figcaption {
  padding: 13px 17px;
  border-top: 1px solid var(--line);
  color: var(--stone);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Footers --------------------------------------------------------------- */
.site-modern .footer,
.site-modern .suite-footer,
.site-modern .help-footer,
.site-modern .product-footer {
  margin: 0;
  padding: 64px max(var(--gutter), calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(251, 249, 244, 0.14);
  background: var(--coal);
  color: var(--paper);
}

.footer-inner,
.suite-footer-inner,
.help-footer-inner,
.product-footer-inner {
  display: grid;
  width: 100%;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
}

.footer p,
.suite-footer p,
.help-footer p,
.product-footer p {
  max-width: 300px;
  color: #aaa39a;
  font-size: 13px;
}

.footer a,
.suite-footer a,
.help-footer a,
.product-footer a {
  color: #d3ccc2;
  font-size: 13px;
}

.footer-brand,
.footer-links,
.suite-footer nav,
.product-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand {
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
}

/* Contrast corrections -------------------------------------------------- */
body.site-modern .suite-button-primary,
body.site-modern .site-nav-cta,
body.site-modern .product-action-primary {
  background: var(--ember-deep);
}

body.site-modern .suite-button-primary:hover,
body.site-modern .suite-button-primary:focus-visible,
body.site-modern .site-nav-cta:hover,
body.site-modern .site-nav-cta:focus-visible,
body.site-modern .product-action-primary:hover,
body.site-modern .product-action-primary:focus-visible {
  background: var(--ember);
}

body.site-modern .eyebrow,
body.site-modern .suite-intro p,
body.site-modern .suite-section-heading > p,
body.site-modern .help-section-label,
body.site-modern .section-label,
body.site-modern .product-heading > p,
body.site-modern .media-eyebrow,
body.site-modern .help-role-card > span,
body.site-modern .guide-grid > a > span,
body.site-modern .foundation-grid article > span,
body.site-modern .outcome > span,
body.site-modern .task-sequence li > span {
  color: var(--ember-deep);
}

body.site-modern .suite-hero .eyebrow,
body.site-modern .service-hero .eyebrow,
body.site-modern .case-page-hero .eyebrow,
body.site-modern .signal-page-hero .eyebrow,
body.site-modern .service-cta .eyebrow,
body.site-modern .suite-foundation .foundation-grid article > span {
  color: #f09b7d;
}

body.site-modern .suite-hero-copy > p,
body.site-modern .service-hero-copy > p,
body.site-modern .case-page-header > p:not(.section-label),
body.site-modern .signal-page-header > p:not(.section-label),
body.site-modern .help-header-content > p:not(.help-kicker),
body.site-modern .product-lede {
  color: #c3bdb4;
}

body.site-modern .suite-compare .compare-row strong {
  color: var(--paper);
}

body.site-modern .suite-compare .compare-row span:last-child {
  background: var(--paper);
  color: var(--ink);
}

body.site-modern .suite-compare .compare-head span:last-child {
  background: var(--ember-deep);
  color: var(--paper);
}

body.site-modern .suite-compare p,
body.site-modern .suite-compare .compare-row span,
body.site-modern .suite-foundation p,
body.site-modern .suite-final p,
body.site-modern .product-cta p,
body.site-modern .service-cta p,
body.site-modern .trust-strip p,
body.site-modern .footer p,
body.site-modern .suite-footer p,
body.site-modern .help-footer p,
body.site-modern .product-footer p {
  color: #c3bdb4;
}

body.site-modern .suite-final p,
body.site-modern .trust-strip p {
  color: #d3e1dc;
}

body.site-modern .suite-footer .wordmark-name,
body.site-modern .product-footer .wordmark-name {
  color: var(--paper);
}

body.site-modern .suite-footer .wordmark-sub,
body.site-modern .product-footer .wordmark-sub {
  color: #c8c1b7;
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1080px) {
  .site-nav-links {
    gap: 16px;
  }

  .site-nav-links > a:not(.site-nav-cta) {
    font-size: 12px;
  }

  .suite-hero-inner,
  .product-hero-grid,
  .service-hero-grid {
    gap: 42px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-plan {
    min-height: 430px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    min-height: 76px;
  }

  .site-nav-links {
    display: none;
  }

  .site-menu {
    display: inline-flex;
  }

  .site-mobile-menu:not([hidden]) {
    position: absolute;
    top: calc(100% - 4px);
    right: 0;
    display: grid;
    width: min(340px, calc(100vw - 32px));
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(251, 249, 244, 0.24);
    background: var(--coal-soft);
    box-shadow: var(--shadow-dark);
  }

  .site-mobile-menu > a {
    min-height: 44px;
    padding: 12px 10px;
  }

  .site-mobile-menu > a + a {
    border-top: 1px solid rgba(251, 249, 244, 0.12);
  }

  .site-mobile-menu > .site-nav-cta {
    margin-top: 9px;
    border-top: 0;
  }

  .suite-hero-inner,
  .service-hero-grid,
  .product-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 68px;
  }

  .suite-hero {
    min-height: 0;
  }

  .suite-hero-copy,
  .service-hero-copy {
    max-width: 720px;
  }

  .suite-stage {
    min-height: 430px;
    max-width: 760px;
    margin: 0 auto;
  }

  .product-band,
  .services-teaser,
  .service-path,
  .service-heading-row,
  .service-boundaries,
  .media-heading,
  .suite-faq,
  .details-layout,
  .split-heading,
  .case-page-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .product-band-crm .product-copy,
  .product-band-crm .product-screen {
    order: initial;
  }

  .services-teaser-copy {
    width: 100%;
    padding: 0 0 50px;
  }

  .services-teaser-media,
  .services-teaser-media img {
    min-height: 360px;
  }

  .suite-section-heading,
  .pricing-heading,
  .product-cta-inner {
    align-items: start;
    flex-direction: column;
  }

  .suite-section-heading {
    display: flex;
  }

  .pricing-heading {
    display: flex;
  }

  .pricing-route-actions .suite-button {
    width: 100%;
  }

  .live-pricing {
    padding: 0;
    border-left: 0;
  }

  .flow-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-track > i {
    display: none;
  }

  .flow-track > div {
    grid-template-columns: 30px 1fr;
    align-items: center;
  }

  .flow-track > div img {
    grid-row: span 2;
    margin: 0;
  }

  .foundation-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foundation-grid article:nth-child(2) {
    border-right: 0;
  }

  .foundation-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .trust-grid {
    gap: 40px 22px;
  }

  .service-mode {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .service-mode-output {
    grid-column: 2;
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-output {
    grid-column: 2;
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-process-list li:nth-child(2) {
    border-right: 0;
  }

  .service-process-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .help-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .help-sidebar {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0;
    gap: 0 16px;
  }

  .help-sidebar strong {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .footer-inner,
  .suite-footer-inner,
  .help-footer-inner,
  .product-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > :first-child,
  .suite-footer-inner > :first-child,
  .help-footer-inner > :first-child,
  .product-footer-inner > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body.site-modern {
    font-size: 15px;
  }

  .suite-flow::before,
  .media-showcase::before,
  .services-teaser::before {
    width: min(320px, 100%);
  }

  .site-nav {
    width: calc(100% - 32px);
  }

  .suite-hero-inner,
  .service-hero-grid,
  .product-hero-grid,
  .case-page-header,
  .signal-page-header,
  .help-header-content {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .suite-hero h1,
  .service-hero-copy h1,
  .product-hero h1,
  .case-page-header h1,
  .signal-page-header h1,
  .help-header h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .suite-hero-copy > p,
  .service-hero-copy > p,
  .product-lede,
  .case-page-header > p:not(.section-label),
  .signal-page-header > p:not(.section-label),
  .help-header-content > p:not(.help-kicker) {
    font-size: 17px;
  }

  .suite-stage {
    min-height: 340px;
  }

  .stage-window figcaption {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 8px;
  }

  .stage-window figcaption img {
    width: 16px;
    height: 16px;
  }

  .suite-intro,
  .suite-flow,
  .suite-compare,
  .suite-pricing,
  .suite-guides,
  .suite-faq,
  .suite-final,
  .media-showcase,
  .services-teaser,
  .service-path,
  .service-modes,
  .service-process,
  .product-section .product-wrap {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .product-band {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .product-copy .feature-list li,
  .task-sequence li,
  .fact-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-copy .feature-list span {
    font-size: 13px;
  }

  .media-heading {
    gap: 18px;
    margin-bottom: 24px;
  }

  .media-heading p:last-child {
    font-size: 15px;
  }

  .services-teaser-media,
  .services-teaser-media img,
  .service-hero-media,
  .service-hero-media img {
    min-height: 260px;
  }

  .service-mode {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
  }

  .service-output {
    grid-column: 2;
  }

  .service-process-list {
    grid-template-columns: 1fr;
  }

  .service-process-list li,
  .service-process-list li + li {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .service-process-list li + li {
    border-top: 1px solid var(--line);
  }

  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .compare-head {
    display: none;
  }

  .foundation-grid,
  .help-role-grid,
  .help-task-directory,
  .pricing-grid,
  .pricing-grid-brokerage,
  .outcome-grid,
  .details-grid,
  .product-compare-grid,
  .process-grid,
  .trust-grid,
  .help-task-brief {
    grid-template-columns: 1fr;
  }

  .foundation-grid article,
  .foundation-grid article + article,
  .process-step,
  .process-step + .process-step {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .foundation-grid article:first-child,
  .process-step:first-child {
    border-top: 0;
  }

  .foundation-grid article > span,
  .process-step span,
  .outcome > span,
  .detail b {
    margin-bottom: 22px;
  }

  .pricing-switches {
    display: grid;
  }

  .pricing-switch {
    width: 100%;
  }

  .pricing-switch button {
    flex: 1;
  }

  .price-plan {
    min-height: 0;
  }

  .service-mode {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-mode-output {
    grid-column: auto;
  }

  .help-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .help-guide-start {
    padding: 24px 20px;
  }

  .help-sidebar strong {
    grid-column: 1 / -1;
  }

  .help-shell,
  .case-page-section .section-inner,
  .contact-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .footer-inner,
  .suite-footer-inner,
  .help-footer-inner,
  .product-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner > :first-child,
  .suite-footer-inner > :first-child,
  .help-footer-inner > :first-child,
  .product-footer-inner > :first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.site-modern *,
  body.site-modern *::before,
  body.site-modern *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
