:root {
  --coal: #100e0c;
  --ink: #17140f;
  --slate: #3a352e;
  --stone: #565a60;
  --mute: #8a8378;
  --ash: #e6e0d5;
  --line: #ded7c9;
  --bone: #f3efe7;
  --paper: #fbf9f4;
  --ember: #d5552a;
  --ember-deep: #b8431f;
  --vein: #1e5e58;
  --topo: #dbd1be;
  --ridge: #ccc1a9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--slate);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

::selection {
  background: var(--ember);
  color: var(--bone);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ember);
  color: var(--bone);
  padding: 10px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  background: var(--coal);
  color: var(--bone);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 14, 12, 0.98) 0%, rgba(16, 14, 12, 0.9) 44%, rgba(16, 14, 12, 0.48) 100%),
    linear-gradient(180deg, rgba(16, 14, 12, 0.2) 0%, rgba(16, 14, 12, 0.92) 100%),
    url("assets/seam-hero-texture.png") center / cover no-repeat;
  transform: scale(1.02);
}

@supports (background-image: image-set(url("assets/seam-hero-texture.webp") type("image/webp"))) {
  .hero::before {
    background:
      linear-gradient(90deg, rgba(16, 14, 12, 0.98) 0%, rgba(16, 14, 12, 0.9) 44%, rgba(16, 14, 12, 0.48) 100%),
      linear-gradient(180deg, rgba(16, 14, 12, 0.2) 0%, rgba(16, 14, 12, 0.92) 100%),
      image-set(
        url("assets/seam-hero-texture.webp") type("image/webp"),
        url("assets/seam-hero-texture.png") type("image/png")
      ) center / cover no-repeat;
  }
}

.nav,
.hero-content,
.strata-lines,
.contact-inner,
.footer,
.section-inner,
.coal-band-inner {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
}

.wordmark-name {
  color: var(--bone);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.035em;
}

.wordmark-rule {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ember);
}

.wordmark-sub {
  color: #b9b2a6;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c9c2b6;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--bone);
}

.nav-cta {
  background: var(--ember);
  color: var(--bone) !important;
  padding: 0 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strata-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.strata-lines span {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
}

.strata-lines span:nth-child(1) {
  top: 64%;
  height: 1px;
  background: rgba(243, 239, 231, 0.16);
}

.strata-lines span:nth-child(2) {
  top: calc(64% + 15px);
  height: 2px;
  background: rgba(213, 85, 42, 0.9);
}

.strata-lines span:nth-child(3) {
  top: calc(64% + 31px);
  height: 1px;
  background: rgba(243, 239, 231, 0.12);
}

.hero > .strata-lines span:nth-child(1) {
  top: 79%;
}

.hero > .strata-lines span:nth-child(2) {
  top: calc(79% + 15px);
}

.hero > .strata-lines span:nth-child(3) {
  top: calc(79% + 31px);
}

.signal-hero > .strata-lines span:nth-child(1) {
  top: 92%;
}

.signal-hero > .strata-lines span:nth-child(2) {
  top: calc(92% + 15px);
}

.signal-hero > .strata-lines span:nth-child(3) {
  top: calc(92% + 31px);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 64px;
  align-items: end;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 72px;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  margin: 0;
  color: var(--bone);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 88px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--bone);
  font-size: 28px;
  line-height: 1.24;
  text-wrap: balance;
}

.hero-body {
  max-width: 610px;
  margin: 24px 0 0;
  color: #c9c2b6;
  font-size: 18px;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 20px;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.button-primary {
  background: var(--ember);
  color: var(--bone);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ember-deep);
}

.button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.button-ghost {
  border-color: rgba(243, 239, 231, 0.28);
  color: var(--bone);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--ember);
}

.hero-panel {
  align-self: stretch;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(243, 239, 231, 0.18);
  background: rgba(16, 14, 12, 0.72);
  padding: 28px;
}

.panel-label,
.section-label,
.card-index {
  margin: 0;
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-panel ol {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid rgba(243, 239, 231, 0.12);
  padding-top: 16px;
}

.hero-panel li span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.hero-panel strong {
  color: var(--bone);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.case-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--coal);
  color: var(--bone);
}

.case-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 14, 12, 0.98) 0%, rgba(16, 14, 12, 0.86) 56%, rgba(16, 14, 12, 0.54) 100%),
    url("assets/seam-hero-texture.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
}

@supports (background-image: image-set(url("assets/seam-hero-texture.webp") type("image/webp"))) {
  .case-page-hero::before {
    background:
      linear-gradient(90deg, rgba(16, 14, 12, 0.98) 0%, rgba(16, 14, 12, 0.86) 56%, rgba(16, 14, 12, 0.54) 100%),
      image-set(
        url("assets/seam-hero-texture.webp") type("image/webp"),
        url("assets/seam-hero-texture.png") type("image/png")
      ) center / cover no-repeat;
  }
}

.case-page-header {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 96px;
}

.case-page-header h1 {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--bone);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.case-page-header p:not(.section-label) {
  max-width: 740px;
  margin: 24px 0 0;
  color: #c9c2b6;
  font-size: 22px;
  line-height: 1.42;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.page-actions-light {
  margin-top: 22px;
}

.offer-link {
  margin-top: 22px;
}

.case-page-section {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.case-page-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.case-page-copy p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--slate);
  font-size: 19px;
}

.case-page-list {
  display: grid;
}

.case-page-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.case-page-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.case-page-list article > span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.case-page-list h3 {
  margin-bottom: 8px;
}

.case-page-list p {
  max-width: 620px;
  margin: 0;
}

.case-page-outcome {
  background: var(--paper);
}

/* split-heading bottom-aligns its two columns, which reads well when the right
   column is a short lede. In the outcome sections the right column is a long
   paragraph plus a CTA, so end-alignment shoved the heading to the bottom of a
   mostly empty column. Top-align this variant. */
.case-page-outcome .split-heading {
  align-items: start;
}

.section {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

.topo-field {
  position: relative;
  overflow: hidden;
}

.topo-field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Kept faint: the map's place/coordinate labels otherwise show through the
     section's body text and fight it for legibility. */
  opacity: 0.5;
  background: url("assets/regional-topo.svg?v=20260720") center / cover no-repeat;
  filter: brightness(0.72) contrast(1.16) saturate(0.92);
}

.topo-field::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(243, 239, 231, 0.62), rgba(243, 239, 231, 0.44) 52%, rgba(243, 239, 231, 0.6)),
    linear-gradient(180deg, rgba(243, 239, 231, 0.2), rgba(243, 239, 231, 0.44));
}

.topo-field > .section-inner {
  position: relative;
  z-index: 1;
}

.intro-band {
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: end;
  padding-top: 64px;
  padding-bottom: 64px;
}

h2,
h3 {
  color: var(--ink);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
}

h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.intro-grid p:last-child,
.split-heading > p {
  max-width: 600px;
  margin: 0;
  color: var(--slate);
  font-size: 19px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-top: 16px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 56px;
  align-items: end;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.offer-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 32px;
}

.offer-card h3 {
  margin-top: 18px;
}

.offer-meta {
  margin: 10px 0 0;
  color: var(--mute);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card > p:not(.card-index):not(.offer-meta) {
  margin: 16px 0 24px;
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--ink);
  font-size: 15px;
}

.fit-section {
  background: var(--paper);
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.fit-list {
  display: grid;
  gap: 26px;
}

.fit-list article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.fit-list ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}

.fit-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--ember);
}

.coal-band {
  position: relative;
  overflow: hidden;
  background: var(--coal);
  color: var(--bone);
}

.coal-band::before,
.coal-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.coal-band::before {
  top: 50%;
  height: 2px;
  background: var(--ember);
  opacity: 0.9;
}

.coal-band::after {
  top: calc(50% - 14px);
  height: 1px;
  background: rgba(243, 239, 231, 0.14);
  box-shadow: 0 28px 0 rgba(243, 239, 231, 0.11);
}

.coal-band-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
}

.coal-band p {
  margin: 0;
  color: var(--bone);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.12;
}

.coal-band span {
  max-width: 330px;
  color: #c9c2b6;
  font-size: 16px;
}

.case-stack {
  display: grid;
  gap: 28px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.case-study-alt {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
}

.case-copy {
  padding: 40px;
}

.case-copy h3 {
  margin-top: 18px;
  font-size: 31px;
  line-height: 1.12;
}

.case-copy > p:not(.card-index) {
  margin: 18px 0 28px;
  max-width: 640px;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
}

.fact-list dt {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.case-link {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  border-bottom: 1px solid var(--ember);
  color: var(--ember-deep);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.case-link:hover,
.case-link:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

.case-visual {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(251, 249, 244, 0.96), rgba(230, 224, 213, 0.7)),
    var(--ash);
  padding: 28px;
}

.visual-topbar,
.visual-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--mute);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 36px repeat(6, 1fr);
  gap: 8px;
  margin: 28px 0;
}

.time {
  color: var(--mute);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.bar {
  display: block;
  background: var(--vein);
  min-height: 24px;
}

.bar-a {
  grid-column: 1 / span 2;
  grid-row: 2;
  background: var(--ember);
}

.bar-b {
  grid-column: 2 / span 2;
  grid-row: 3;
}

.bar-c {
  grid-column: 1 / span 1;
  grid-row: 4;
  background: #2e6e68;
}

.bar-d {
  grid-column: 3 / span 2;
  grid-row: 5;
  background: var(--ember-deep);
}

.bar-e {
  grid-column: 1 / span 3;
  grid-row: 6;
}

.bar-f {
  grid-column: 2 / span 2;
  grid-row: 7;
  background: #2e6e68;
}

.lead-map {
  position: relative;
  flex: 1;
  margin: 30px 0 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(222, 215, 201, 0.64) 1px, transparent 1px),
    linear-gradient(0deg, rgba(222, 215, 201, 0.64) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  overflow: hidden;
}

.map-line,
.pin {
  position: absolute;
  display: block;
}

.map-line {
  height: 2px;
  background: var(--vein);
  transform-origin: left center;
}

.map-line.one {
  width: 70%;
  left: 8%;
  top: 36%;
  transform: rotate(-10deg);
}

.map-line.two {
  width: 56%;
  left: 20%;
  top: 58%;
  transform: rotate(14deg);
  background: var(--ember);
}

.map-line.three {
  width: 42%;
  left: 42%;
  top: 22%;
  transform: rotate(52deg);
  background: #2e6e68;
}

.pin {
  width: 18px;
  height: 18px;
  background: var(--ember);
}

.pin-one {
  left: 31%;
  top: 48%;
}

.pin-two {
  left: 69%;
  top: 24%;
  background: var(--vein);
}

.lead-rows {
  display: grid;
  gap: 10px;
}

.lead-rows span {
  height: 18px;
  background: linear-gradient(90deg, var(--coal) 0 22%, var(--line) 22% 100%);
}

.data-layer-map {
  position: relative;
  flex: 1;
  margin: 30px 0 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 26% 34%, rgba(213, 85, 42, 0.14) 0 11%, transparent 12%),
    radial-gradient(circle at 72% 54%, rgba(30, 94, 88, 0.16) 0 14%, transparent 15%),
    linear-gradient(90deg, rgba(222, 215, 201, 0.62) 1px, transparent 1px),
    linear-gradient(0deg, rgba(222, 215, 201, 0.62) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
  overflow: hidden;
}

.data-line,
.data-node,
.data-zone {
  position: absolute;
  display: block;
}

.data-line {
  left: 9%;
  right: 9%;
  height: 2px;
  background: var(--vein);
  transform-origin: left center;
}

.data-line-one {
  top: 28%;
  transform: rotate(7deg);
}

.data-line-two {
  top: 51%;
  transform: rotate(-13deg);
  background: var(--ember);
}

.data-line-three {
  top: 71%;
  transform: rotate(4deg);
  background: #2e6e68;
}

.data-node {
  width: 16px;
  height: 16px;
  border: 2px solid var(--paper);
  background: var(--ember);
}

.data-node-one {
  left: 22%;
  top: 24%;
}

.data-node-two {
  left: 63%;
  top: 47%;
  background: var(--vein);
}

.data-node-three {
  left: 43%;
  top: 67%;
  background: var(--ember-deep);
}

.data-zone {
  width: 34%;
  height: 26%;
  border: 1px solid rgba(30, 94, 88, 0.28);
}

.data-zone-one {
  left: 12%;
  top: 14%;
}

.data-zone-two {
  right: 13%;
  bottom: 15%;
  border-color: rgba(213, 85, 42, 0.34);
}

.api-endpoints {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18px;
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(16, 14, 12, 0.16);
  background: rgba(251, 249, 244, 0.88);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.api-endpoints span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.api-endpoints strong {
  color: var(--ember-deep);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.data-rows {
  display: grid;
  gap: 9px;
}

.data-rows span {
  height: 15px;
  background: linear-gradient(90deg, var(--vein) 0 18%, var(--line) 18% 68%, var(--ember) 68% 76%, var(--line) 76% 100%);
}

.data-rows span:nth-child(2) {
  background: linear-gradient(90deg, var(--ember) 0 12%, var(--line) 12% 58%, var(--vein) 58% 66%, var(--line) 66% 100%);
}

.data-rows span:nth-child(3) {
  background: linear-gradient(90deg, var(--coal) 0 22%, var(--line) 22% 74%, var(--ember-deep) 74% 82%, var(--line) 82% 100%);
}

.data-rows span:nth-child(4) {
  background: linear-gradient(90deg, #2e6e68 0 16%, var(--line) 16% 62%, var(--ember) 62% 70%, var(--line) 70% 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.sticky-heading {
  margin: 0;
  position: sticky;
  top: 32px;
}

.process-list {
  display: grid;
  gap: 0;
}

.process-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.process-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list article > span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  max-width: 580px;
  margin: 0;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 24px;
  color: var(--slate);
  font-size: 19px;
}

.about-copy > p {
  max-width: 680px;
  margin: 0;
}

.about-statement {
  color: var(--ink);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.14;
  text-wrap: balance;
}

.about-list {
  display: grid;
  gap: 0;
  margin-top: 8px;
  border-bottom: 1px solid var(--line);
}

.about-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.about-list span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.about-list p {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--coal);
  color: #c9c2b6;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 14, 12, 0.98), rgba(16, 14, 12, 0.72)),
    url("assets/seam-hero-texture.png") center / cover no-repeat;
  opacity: 0.72;
}

@supports (background-image: image-set(url("assets/seam-hero-texture.webp") type("image/webp"))) {
  .contact-section::before {
    background:
      linear-gradient(90deg, rgba(16, 14, 12, 0.98), rgba(16, 14, 12, 0.72)),
      image-set(
        url("assets/seam-hero-texture.webp") type("image/webp"),
        url("assets/seam-hero-texture.png") type("image/png")
      ) center / cover no-repeat;
  }
}

.contact-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: 72px;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 16px;
  color: var(--bone);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy p:not(.section-label) {
  max-width: 560px;
  margin: 22px 0 0;
  color: #c9c2b6;
  font-size: 18px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-options a {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(243, 239, 231, 0.16);
  background: rgba(16, 14, 12, 0.72);
  padding: 18px;
}

.contact-options a:hover,
.contact-options a:focus-visible {
  border-color: var(--ember);
}

.contact-options span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-options strong {
  color: var(--bone);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.25;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(243, 239, 231, 0.18);
  background: var(--coal);
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: #b9b2a6;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 239, 231, 0.18);
  border-radius: 0;
  background: rgba(251, 249, 244, 0.08);
  color: var(--bone);
  padding: 12px 13px;
  outline: none;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #b9b2a6 50%),
    linear-gradient(135deg, #b9b2a6 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.contact-form option {
  background: var(--paper);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-check {
  display: grid;
  gap: 8px;
}

.turnstile-check > span {
  color: #b9b2a6;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cf-turnstile {
  min-height: 65px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ember);
}

.form-note {
  margin: -2px 0 0;
  color: #b9b2a6;
  font-size: 14px;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #b9b2a6;
  font-size: 14px;
}

.footer {
  border-top: 1px solid rgba(243, 239, 231, 0.12);
  background: var(--coal);
  color: var(--mute);
}

.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.65fr) minmax(210px, 0.8fr);
  gap: 52px;
  align-items: start;
}

.footer-brand {
  display: block;
  color: var(--bone);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer p {
  max-width: 360px;
  margin: 12px 0 14px;
  color: #b9b2a6;
  font-size: 16px;
  line-height: 1.5;
}

.footer a {
  width: fit-content;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: #b9b2a6;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--bone);
}

.signal-brand {
  gap: 28px;
}

.signal-product-name {
  position: relative;
  color: #b9b2a6;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.signal-product-name::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 1px;
  height: 42px;
  transform: translateY(-50%);
  background: rgba(243, 239, 231, 0.28);
}

.signal-hero {
  min-height: 84svh;
}

.signal-hero::after,
.signal-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(16, 14, 12, 0.84));
}

.signal-hero-content {
  grid-template-columns: minmax(0, 0.98fr) minmax(500px, 1.02fr);
  align-items: center;
  gap: 48px;
  padding-top: 52px;
  padding-bottom: 64px;
}

.signal-hero h1 {
  max-width: 760px;
  font-size: 52px;
  line-height: 1.03;
}

.signal-hero .hero-lead {
  margin-top: 24px;
  font-size: 24px;
}

.signal-hero .hero-body {
  margin-top: 20px;
  font-size: 16px;
}

.signal-hero .hero-actions {
  margin-top: 26px;
}

.hero-proof-line {
  max-width: 640px;
  margin: 24px 0 0;
  color: #b9b2a6;
  font-size: 15px;
}

.workflow-preview,
.mini-product-preview,
.client-status-panel,
.pilot-cta-panel {
  border: 1px solid rgba(243, 239, 231, 0.18);
  background: rgba(16, 14, 12, 0.94);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.3);
}

.workflow-preview {
  padding: 18px;
  color: var(--bone);
}

.workflow-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #a9cfc9;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.18fr;
  gap: 10px;
}

.workflow-grid > section {
  border: 1px solid rgba(243, 239, 231, 0.16);
  background: rgba(251, 249, 244, 0.035);
  min-width: 0;
  padding: 16px;
}

.workflow-worklist {
  grid-row: span 2;
}

.workflow-profile {
  grid-column: 2;
}

.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.preview-topline h2,
.workflow-card h2,
.client-status-panel h2 {
  margin: 0;
  color: var(--bone);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.preview-topline span {
  color: #a9cfc9;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-queue {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-queue li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  border-top: 1px solid rgba(243, 239, 231, 0.11);
  padding: 13px 0;
}

.client-queue li.active {
  box-shadow: inset 3px 0 0 var(--vein);
  padding-left: 13px;
}

.client-queue strong,
.profile-person strong {
  display: block;
  color: var(--bone);
  font-size: 15px;
  line-height: 1.25;
}

.client-queue small,
.profile-person small {
  display: block;
  color: #b9b2a6;
  font-size: 13px;
}

.client-queue em {
  align-self: center;
  color: #c9c2b6;
  font-style: normal;
  font-size: 12px;
  white-space: nowrap;
}

.profile-person {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}

.profile-person > span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(169, 207, 201, 0.76);
  border-radius: 50%;
  background: rgba(30, 94, 88, 0.34);
  color: var(--bone);
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
}

.stage-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.stage-line span {
  position: relative;
  padding-top: 21px;
  color: #b9b2a6;
  font-size: 11px;
  text-align: center;
}

.stage-line span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 13px;
  height: 13px;
  transform: translateX(-50%);
  border: 1px solid rgba(243, 239, 231, 0.24);
  border-radius: 50%;
  background: #383734;
}

.stage-line span::after {
  content: "";
  position: absolute;
  left: calc(50% + 9px);
  right: calc(-50% + 9px);
  top: 6px;
  height: 1px;
  background: rgba(243, 239, 231, 0.2);
}

.stage-line span:last-child::after {
  display: none;
}

.stage-line .complete::before,
.stage-line .current::before {
  border-color: #a9cfc9;
  background: var(--vein);
}

.stage-line .complete::after,
.stage-line .current::after {
  background: #a9cfc9;
}

.workflow-card {
  min-height: 142px;
}

.workflow-card strong {
  display: block;
  margin-top: 14px;
  color: #a9cfc9;
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.workflow-card p {
  margin: 14px 0 0;
  color: #c9c2b6;
  font-size: 13px;
  line-height: 1.45;
}

.progress-bar {
  height: 9px;
  margin-top: 14px;
  background: rgba(243, 239, 231, 0.14);
}

.progress-bar span {
  display: block;
  width: 58%;
  height: 100%;
  background: var(--vein);
}

.status-chip {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  border: 1px solid var(--ember);
  color: var(--ember);
  padding: 3px 7px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.responsibility-list {
  display: grid;
  gap: 9px;
  margin: 13px 0 0;
}

.responsibility-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}

.responsibility-list dt {
  color: #b9b2a6;
  font-size: 12px;
}

.responsibility-list dd {
  margin: 0;
  color: var(--bone);
  font-size: 12px;
}

.product-loop-section {
  background: var(--paper);
}

.loop-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 64px;
  align-items: start;
}

.loop-grid > div > p:last-child {
  max-width: 430px;
  margin: 20px 0 0;
  font-size: 18px;
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.loop-steps li {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  background: rgba(251, 249, 244, 0.66);
}

.loop-steps span,
.signal-card-grid article > span,
.secondary-products span,
.mini-product-preview > span,
.today-task > span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loop-steps strong {
  margin-top: 22px;
  color: var(--ink);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.18;
}

.loop-steps p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.48;
}

.signal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.signal-card-grid article {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 30px;
}

.signal-card-grid h3 {
  margin-top: 18px;
}

.signal-card-grid p {
  margin: 14px 0 0;
  color: var(--slate);
}

.product-pillars {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.two-column-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: 72px;
  align-items: center;
}

.reverse-feature {
  grid-template-columns: minmax(380px, 1fr) minmax(0, 0.9fr);
}

.two-column-feature > div > p:not(.section-label) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 19px;
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-list article {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.feature-list span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-list p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
}

.client-section {
  background: var(--paper);
}

.client-status-panel {
  color: var(--bone);
  padding: 28px;
}

.today-task {
  border-top: 1px solid rgba(243, 239, 231, 0.14);
  border-bottom: 1px solid rgba(243, 239, 231, 0.14);
  padding: 24px 0;
}

.today-task strong {
  display: block;
  margin-top: 10px;
  color: var(--bone);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 26px;
  line-height: 1.16;
}

.today-task p {
  margin: 12px 0 0;
  color: #c9c2b6;
}

.client-status-panel .responsibility-list {
  margin-top: 24px;
}

.secondary-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.secondary-products article {
  border: 1px solid var(--line);
  background: var(--bone);
  padding: 24px;
}

.secondary-products p {
  margin: 13px 0 0;
  color: var(--slate);
  font-size: 16px;
}

.secondary-products a {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--ember-deep);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.mini-product-preview {
  color: var(--bone);
  padding: 28px;
}

.mini-product-preview ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mini-product-preview li {
  border-top: 1px solid rgba(243, 239, 231, 0.14);
  padding-top: 12px;
  color: var(--bone);
  font-size: 18px;
}

.scope-list article > span {
  color: var(--ember);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.compact-contact .contact-inner,
.pilot-contact .contact-inner {
  align-items: center;
}

.pilot-cta-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.pilot-cta-panel .button {
  width: 100%;
}

.compact-hero .case-page-header {
  padding-bottom: 72px;
}

.pilot-contact::before {
  opacity: 0.92;
}

.local-guide-flow {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.local-guide-flow li {
  min-height: 240px;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    gap: 18px;
  }

  .hero-content,
  .signal-hero-content,
  .intro-grid,
  .split-heading,
  .loop-grid,
  .two-column-feature,
  .reverse-feature,
  .product-hero-grid,
  .case-page-grid,
  .fit-grid,
  .process-grid,
  .about-grid,
  .contact-inner,
  .coal-band-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 36px;
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .case-page-header h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 24px;
  }

  .hero-panel {
    min-height: auto;
  }

  .offer-grid,
  .signal-card-grid,
  .product-pillars,
  .loop-steps,
  .local-guide-flow,
  .case-study,
  .case-study-alt {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-worklist,
  .workflow-profile {
    grid-column: auto;
    grid-row: auto;
  }

  .case-visual {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .sticky-heading {
    position: static;
  }

  .coal-band span {
    max-width: none;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .nav,
  .hero-content,
  .case-page-header,
  .section-inner,
  .coal-band-inner,
  .contact-inner {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    align-items: flex-start;
    gap: 12px;
    padding-top: 22px;
  }

  .signal-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .signal-brand {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    font-size: 12px;
  }

  .signal-nav .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .nav-links a {
    border: 1px solid rgba(243, 239, 231, 0.14);
    justify-content: center;
    min-height: 34px;
    padding: 0 8px;
  }

  .nav-cta {
    font-size: 10px;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding: 42px 0 48px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .signal-hero h1 {
    font-size: 39px;
  }

  .signal-hero .hero-lead {
    font-size: 20px;
  }

  .case-page-header {
    padding: 56px 0 66px;
  }

  .case-page-header h1 {
    font-size: 42px;
  }

  .case-page-header p:not(.section-label) {
    font-size: 18px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-body {
    font-size: 16px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    padding: 0 14px;
  }

  .contact-form .button {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .workflow-preview {
    padding: 14px;
  }

  .workflow-grid > section {
    padding: 14px;
  }

  .stage-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .stage-line span::after {
    display: none;
  }

  .loop-steps li {
    min-height: auto;
  }

  .section-inner,
  .contact-inner {
    padding: 58px 0;
  }

  h2 {
    font-size: 34px;
  }

  h3,
  .case-copy h3 {
    font-size: 24px;
  }

  .offer-card,
  .case-copy,
  .signal-card-grid article,
  .contact-form {
    padding: 24px;
  }

  .secondary-products {
    grid-template-columns: 1fr;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .case-visual {
    min-height: 320px;
    padding: 22px;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .process-list article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .about-list article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .case-page-list article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .coal-band p {
    font-size: 27px;
  }

  .footer {
    padding: 0;
  }

  .footer-inner {
    width: min(100% - 32px, 1180px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}

/* Seam platform homepage -------------------------------------------------- */
.platform-home {
  --suite-max: 1320px;
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
}

.platform-home h1,
.platform-home h2,
.platform-home h3,
.platform-home p,
.platform-home figure {
  margin-top: 0;
}

.platform-home h1,
.platform-home h2,
.platform-home h3 {
  color: inherit;
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
}

.suite-hero {
  position: relative;
  min-height: 760px;
  /* .suite-contours (the topo texture) intentionally bleeds past both edges,
     which makes this container scrollable (scrollWidth > clientWidth) even
     though nothing should ever scroll here. overflow:hidden still lets the
     browser's focus-driven "scroll into view" nudge scrollLeft, which on
     mobile clipped the entire hero off-screen the moment a visitor tapped
     the menu button and it received focus. overflow:clip has no scroll
     position at all, so it can't drift; the overflow:hidden fallback covers
     browsers that don't understand clip (Safari < 16). */
  overflow: hidden;
  overflow: clip;
  background: var(--coal);
  color: var(--bone);
}

/* Regional elevation texture behind the hero, dimmed so the headline stays
   legible. */
.suite-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 14, 12, 0.97) 0%, rgba(16, 14, 12, 0.88) 46%, rgba(16, 14, 12, 0.5) 100%),
    linear-gradient(180deg, rgba(16, 14, 12, 0.22) 0%, rgba(16, 14, 12, 0.92) 100%),
    url("assets/seam-hero-texture.png") center / cover no-repeat;
  transform: scale(1.02);
}

@supports (background-image: image-set(url("assets/seam-hero-texture.webp") type("image/webp"))) {
  .suite-hero::before {
    background:
      linear-gradient(90deg, rgba(16, 14, 12, 0.97) 0%, rgba(16, 14, 12, 0.88) 46%, rgba(16, 14, 12, 0.5) 100%),
      linear-gradient(180deg, rgba(16, 14, 12, 0.22) 0%, rgba(16, 14, 12, 0.92) 100%),
      image-set(url("assets/seam-hero-texture.webp") type("image/webp"), url("assets/seam-hero-texture.png") type("image/png")) center / cover no-repeat;
  }
}

.suite-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(243, 239, 231, 0.2);
  content: "";
}

.suite-nav {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(var(--suite-max), calc(100% - 64px));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(243, 239, 231, 0.14);
}

.suite-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--bone);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 650;
  text-decoration: none;
}

/* Original Seam Datalab wordmark: stacked "Seam" over an ember rule over spaced
   "DATALAB" mono caps. Shared by every page's nav and footer. */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.wordmark-name {
  color: var(--bone);
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.01em;
}

.wordmark-rule {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ember);
}

.wordmark-sub {
  color: #b9b2a6;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.42em;
  line-height: 1;
}

/* Footer sits on the light paper background, so the wordmark flips to ink. */
.suite-footer .wordmark-name {
  color: var(--ink, #1a1712);
}

.suite-footer .wordmark-sub {
  color: #6a6459;
}

.suite-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #d3cdc2;
  font-size: 14px;
}

.suite-nav-links a {
  display: grid;
  min-height: 44px;
  place-items: center;
}

.suite-nav-links a:hover,
.suite-nav-links a:focus-visible {
  color: var(--bone);
}

.suite-menu,
.suite-mobile-menu {
  display: none;
}

.suite-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--suite-max), calc(100% - 64px));
  grid-template-columns: minmax(470px, 0.9fr) minmax(590px, 1.1fr);
  gap: 40px;
  align-items: center;
  margin: 0 auto;
  padding: 68px 0 82px;
}

.suite-hero-copy {
  align-self: start;
  padding-top: 26px;
}

.suite-hero h1 {
  margin-bottom: 30px;
  color: var(--bone);
  font-size: clamp(54px, 5vw, 72px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.suite-hero-copy > p {
  max-width: 540px;
  margin-bottom: 0;
  color: #c9c2b6;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
}

.suite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.suite-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.suite-button-primary {
  background: var(--ember);
  color: var(--bone);
}

.suite-button-primary:hover,
.suite-button-primary:focus-visible {
  background: var(--ember-deep);
}

.suite-button-quiet {
  border-color: rgba(243, 239, 231, 0.45);
  color: var(--bone);
}

.suite-button-quiet:hover,
.suite-button-quiet:focus-visible {
  border-color: var(--ember);
}

.suite-button-outline {
  width: 100%;
  border-color: var(--slate);
  background: transparent;
  color: var(--ink);
}

.suite-button-outline:hover,
.suite-button-outline:focus-visible {
  border-color: var(--ember);
  background: var(--ember);
  color: var(--bone);
}

.suite-stage {
  position: relative;
  height: 535px;
}

.stage-window {
  position: absolute;
  overflow: hidden;
  border: 1px solid #5a554e;
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.stage-window figcaption {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid #4e4942;
  background: #171513;
  color: var(--bone);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.stage-window figcaption img {
  width: 20px;
  height: 20px;
}

.stage-window figcaption span {
  margin-left: auto;
  color: #aaa399;
}

.stage-window picture,
.stage-window > picture > img {
  display: block;
  width: 100%;
}

.stage-window > picture > img {
  height: auto;
}

.stage-signal {
  z-index: 1;
  top: 0;
  right: 0;
  width: 76%;
}

.stage-crm {
  z-index: 2;
  top: 145px;
  left: 0;
  width: 78%;
}

.stage-journey {
  z-index: 3;
  right: 4%;
  bottom: -4px;
  width: 68%;
}

.stage-signal img,
.stage-crm img,
.stage-journey img {
  object-fit: cover;
  object-position: top left;
}

.stage-signal > picture > img { height: 242px; }
.stage-crm > picture > img { height: 252px; }
.stage-journey > picture > img { height: 216px; }

/* Blacksburg contour lines across the WHOLE hero. This was a fixed 560x360
   patch pinned to the bottom-left corner, which read as an abruptly cropped
   rectangle on wide screens instead of a background. Cover keeps the map
   edge-to-edge at any viewport; the hero copy sits above at z-index 2. */
.suite-contours {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.16;
  background: url("assets/regional-topo.svg?v=20260720") center / cover no-repeat;
  filter: sepia(1) saturate(0.5);
  pointer-events: none;
}

.suite-intro,
.suite-flow,
.suite-compare,
.suite-pricing,
.suite-guides,
.suite-faq {
  width: min(var(--suite-max), calc(100% - 64px));
  margin: 0 auto;
}

.suite-intro {
  padding: 106px 0 84px;
  text-align: center;
}

.suite-intro p,
.suite-section-heading p,
.pricing-heading > div > p,
.suite-faq > div:first-child p {
  color: var(--stone);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.suite-intro h2 {
  max-width: 900px;
  margin: 18px auto 0;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.product-showcase {
  border-top: 1px solid var(--line);
}

.product-band {
  display: grid;
  width: min(var(--suite-max), calc(100% - 64px));
  grid-template-columns: minmax(300px, 0.72fr) minmax(600px, 1.28fr);
  gap: 64px;
  align-items: center;
  margin: 0 auto;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.product-band-crm {
  grid-template-columns: minmax(600px, 1.28fr) minmax(300px, 0.72fr);
}

.product-band-crm .product-copy { order: 2; }
.product-band-crm .product-screen { order: 1; }

.product-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 650;
}

.product-name img {
  width: 32px;
  height: 32px;
}

.product-copy h2 {
  margin: 22px 0 24px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.product-copy > p {
  max-width: 470px;
  color: var(--stone);
  font-size: 18px;
  line-height: 1.62;
}

.product-copy ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.product-copy .feature-list { gap: 0; border-top: 1px solid var(--line); }

.product-copy .feature-list li {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0 14px 20px;
}

.product-copy .feature-list strong { color: var(--ink); font-size: 15px; }
.product-copy .feature-list span { max-width: 500px; color: var(--stone); font-size: 13px; line-height: 1.48; }

.product-copy li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.product-copy li::before {
  position: absolute;
  left: 0;
  color: var(--ember);
  content: "✓";
}

.product-copy > a {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-screen {
  overflow: hidden;
  border: 1px solid #bdb5a8;
  background: var(--paper);
  box-shadow: 0 22px 46px rgba(43, 37, 31, 0.12);
}

.product-screen picture,
.product-screen img {
  display: block;
  width: 100%;
  /* Without this the HTML height="900" attribute wins and the 1440x900
     captures render vertically stretched at narrower column widths. */
  height: auto;
}

.product-screen figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--stone);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.suite-flow {
  padding: 100px 0 84px;
}

.suite-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}

.suite-section-heading h2,
.pricing-heading h2,
.suite-faq h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.suite-section-heading p {
  max-width: 430px;
  margin-bottom: 5px;
  text-align: right;
}

.flow-track {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: center;
}

.flow-track div {
  display: grid;
  min-height: 162px;
  grid-template-columns: 36px 1fr;
  align-content: center;
  gap: 4px 12px;
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--paper);
}

.flow-track img {
  width: 36px;
  height: 36px;
  grid-row: 1 / 3;
}

.flow-track strong {
  align-self: end;
  font-size: 20px;
}

.flow-track span {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.35;
}

.flow-track > i {
  color: var(--stone);
  font-size: 30px;
  font-style: normal;
  text-align: center;
}

.flow-return {
  width: calc(66.66% + 20px);
  margin: 20px auto 0;
  border-top: 1px dashed var(--stone);
  padding-top: 12px;
  color: var(--stone);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.suite-compare {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.compare-heading > div { max-width: 720px; }
.compare-heading > div > p { margin: 0 0 14px; text-align: left; }
.compare-heading > p { max-width: 500px; font-family: "Hanken Grotesk", system-ui, sans-serif; font-size: 17px; letter-spacing: 0; line-height: 1.62; text-align: left; text-transform: none; }

.compare-table { border-top: 1px solid var(--slate); }

.compare-row {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compare-row > * { min-width: 0; padding: 24px 28px; border-right: 1px solid var(--line); }
.compare-row > *:last-child { border-right: 0; }
.compare-row strong { color: var(--ink); font-family: "Schibsted Grotesk", system-ui, sans-serif; font-size: 18px; line-height: 1.35; }
.compare-row span { color: var(--stone); font-size: 15px; line-height: 1.55; }
.compare-row span:last-child { background: var(--paper); color: var(--ink); }
.compare-head { background: var(--coal); }
.compare-head span { color: var(--bone); font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.compare-head span:last-child { background: var(--ember); color: var(--bone); }
.compare-note { max-width: 820px; margin: 26px 0 0; color: var(--stone); font-size: 14px; }

.suite-foundation {
  padding: 94px max(32px, calc((100vw - var(--suite-max)) / 2));
  background: var(--coal);
  color: var(--bone);
}

.suite-foundation .suite-section-heading {
  width: min(var(--suite-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.suite-foundation .suite-section-heading p,
.suite-foundation article p {
  color: #aaa399;
}

.foundation-grid {
  display: grid;
  width: min(var(--suite-max), 100%);
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-top: 1px solid #403c37;
  border-bottom: 1px solid #403c37;
}

.foundation-grid article {
  min-height: 230px;
  border-right: 1px solid #403c37;
  padding: 32px 28px;
}

.foundation-grid article:last-child { border-right: 0; }
.foundation-grid span { color: #4b968e; font-family: "JetBrains Mono", monospace; font-size: 11px; }
.foundation-grid h3 { margin: 34px 0 12px; font-size: 21px; }
.foundation-grid p { margin-bottom: 0; font-size: 14px; line-height: 1.55; }

.suite-pricing {
  padding: 110px 0 88px;
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.pricing-heading > div > p {
  max-width: 580px;
  margin-top: 16px;
  margin-bottom: 0;
}

.live-pricing {
  display: grid;
  grid-template-columns: 9px auto;
  gap: 0 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.live-pricing > span {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--vein);
}

.live-pricing small {
  grid-column: 2;
  color: var(--stone);
}

.pricing-switches {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -28px 0 34px;
}

.pricing-switch {
  display: inline-flex;
  border: 1px solid var(--slate);
  background: var(--paper);
}

.pricing-switch button {
  min-height: 42px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 18px;
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-switch button:last-child { border-right: 0; }
.pricing-switch button[aria-pressed="true"] { background: var(--ink); color: var(--bone); }
.pricing-switch button:focus-visible { outline: 2px solid var(--vein); outline-offset: 3px; }
[data-pricing-panel][hidden] { display: none !important; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--slate);
  border-bottom: 1px solid var(--slate);
}

.price-plan {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 36px;
}

.price-plan:last-child { border-right: 0; }
.price-plan > p:not(.price) { min-height: 52px; color: var(--stone); }
.price-plan ul { flex: 1; }
.price-plan form { margin-top: auto; }
.price-plan > a.suite-button { margin-top: auto; }

.price {
  margin: 32px 0 14px;
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-size: 54px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price::before { content: "$"; font-size: 30px; vertical-align: top; }
.price small { color: var(--stone); font-family: "Hanken Grotesk", sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0; }
.price-platform { background: var(--paper); }
.pricing-grid-brokerage { grid-template-columns: repeat(2, 1fr); }
.pricing-grid-brokerage .price-plan { min-height: 490px; }
.pricing-grid-brokerage .price-plan:nth-child(2n) { border-right: 0; }
.seat-field { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 650; font-size: 14px; }
.seat-field input { width: 84px; padding: 8px 10px; border: 1px solid var(--line); background: var(--paper); font: inherit; font-weight: 650; }
.seat-total { margin: 0 0 14px; min-height: 20px; color: var(--ink); font-weight: 650; font-size: 15px; }
.seat-note { margin: 12px 0 0; color: var(--stone); font-size: 13px; }
.seat-note a { color: var(--ember); font-weight: 650; }
.price-from::after { content: " from"; color: var(--stone); font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.pricing-expansion { margin: 24px auto 0; max-width: 760px; color: var(--stone); font-size: 14px; text-align: center; }
.pricing-note { margin: 22px 0 0; color: var(--stone); font-size: 13px; text-align: center; }
.pricing-card-availability {
  margin: 0.75rem 0;
  color: var(--mute);
  font-size: 0.82rem;
  line-height: 1.4;
}
.price-plan[hidden] { display: none; }

.suite-guides {
  padding: 110px 0 88px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--slate);
  border-bottom: 1px solid var(--slate);
}

.guide-grid > a {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 36px;
  background: transparent;
  transition: background 160ms ease, transform 160ms ease;
}

.guide-grid > a:last-child { border-right: 0; }
.guide-grid > a:hover { background: var(--paper); transform: translateY(-3px); }
.guide-grid > a:focus-visible { outline: 3px solid var(--vein); outline-offset: 4px; }
.guide-grid span { color: var(--ember); font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.08em; }
.guide-grid h3 { margin: 34px 0 14px; font-size: 23px; line-height: 1.16; }
.guide-grid p { margin: 0 0 30px; color: var(--stone); font-size: 15px; line-height: 1.55; }
.guide-grid strong { margin-top: auto; font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.guide-center-link { display: flex; justify-content: center; margin-top: 34px; }

.suite-faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  padding: 92px 0 110px;
  border-top: 1px solid var(--line);
}

.suite-faq > div:first-child p { margin-top: 18px; }
.faq-list { border-top: 1px solid var(--slate); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-list summary { cursor: pointer; font-family: "Schibsted Grotesk", sans-serif; font-size: 19px; font-weight: 600; }
.faq-list details p { max-width: 680px; margin: 16px 0 4px; color: var(--stone); }

.suite-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 72px max(32px, calc((100vw - var(--suite-max)) / 2));
  background: var(--coal);
  color: var(--bone);
}

.suite-final h2 { margin-bottom: 8px; font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.04em; }
.suite-final p { margin-bottom: 0; color: #aaa399; }
.suite-final .suite-actions { flex-shrink: 0; margin-top: 0; }

.suite-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
  min-height: 96px;
  padding: 0 max(32px, calc((100vw - var(--suite-max)) / 2));
  border-top: 1px solid #3d3934;
  background: var(--coal);
  color: #aaa399;
  font-size: 11px;
}

.suite-footer .suite-brand { font-size: 15px; }
.suite-footer nav { display: flex; gap: 24px; }
.suite-footer p { margin: 0; text-align: right; }

@media (max-width: 1120px) {
  .suite-hero { min-height: auto; }
  .suite-hero-inner { grid-template-columns: 1fr; padding: 68px 0 110px; }
  .suite-hero-copy { padding-top: 0; }
  .suite-stage { width: min(780px, 100%); margin: 20px auto 0; }
  .product-band,
  .product-band-crm { grid-template-columns: 1fr; gap: 42px; }
  .product-band-crm .product-copy,
  .product-band-crm .product-screen { order: initial; }
  .product-copy > p { max-width: 700px; }
  .foundation-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid > a:nth-child(2) { border-right: 0; }
  .guide-grid > a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .foundation-grid article:nth-child(2) { border-right: 0; }
  .foundation-grid article:nth-child(-n+2) { border-bottom: 1px solid #403c37; }
  .suite-final { align-items: flex-start; flex-direction: column; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-brokerage .price-plan:nth-child(3n) { border-right: 1px solid var(--line); }
  .pricing-grid-brokerage .price-plan:nth-child(2n) { border-right: 0; }
  .pricing-grid-brokerage .price-plan:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .pricing-grid-brokerage .price-plan:nth-last-child(-n + 2) { border-bottom: 0; }
  .price-plan:nth-child(2) { border-right: 0; }
  .price-plan:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .foundation-grid article:nth-child(2) { border-right: 0; }
}

@media (max-width: 800px) {
  .suite-nav,
  .suite-hero-inner,
  .suite-intro,
  .product-band,
  .suite-flow,
  .suite-compare,
  .suite-guides,
  .suite-faq { width: min(calc(100% - 32px), var(--suite-max)); }
  .suite-nav-links { display: none; }
  .suite-menu { display: inline-grid; min-height: 44px; place-items: center; border: 1px solid #635e57; padding: 0 14px; background: transparent; color: var(--bone); font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; }
  .suite-mobile-menu { position: relative; z-index: 9; width: calc(100% - 32px); margin: 0 auto; border: 1px solid #514c46; background: var(--coal); }
  .suite-mobile-menu:not([hidden]) { display: grid; }
  .suite-mobile-menu a { padding: 14px; border-bottom: 1px solid #393530; color: var(--bone); }
  .suite-hero-inner { padding-top: 54px; }
  .suite-stage { height: 460px; }
  .stage-signal { width: 90%; }
  .stage-crm { top: 125px; width: 90%; }
  .stage-journey { width: 86%; }
  .stage-signal > picture > img { height: 190px; }
  .stage-crm > picture > img { height: 200px; }
  .stage-journey > picture > img { height: 174px; }
  .suite-intro { padding: 76px 0 64px; }
  .product-band { padding: 64px 0; }
  .suite-section-heading { align-items: flex-start; flex-direction: column; }
  .suite-section-heading p { text-align: left; }
  .flow-track { grid-template-columns: 1fr; gap: 12px; }
  .flow-track > i { transform: rotate(90deg); }
  .flow-return { width: 80%; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > * { border-right: 0; border-bottom: 1px solid var(--line); }
  .compare-row > *:last-child { border-bottom: 0; }
  .compare-head { display: none; }
  .compare-row strong { padding-bottom: 12px; }
  .compare-row span { padding-top: 14px; }
  .compare-row span::before { display: block; margin-bottom: 6px; color: var(--ember); font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
  .compare-row span:nth-child(2)::before { content: "A conventional CRM"; }
  .compare-row span:nth-child(3)::before { content: "Seam"; }
  .foundation-grid,
  .guide-grid { grid-template-columns: 1fr; }
  .guide-grid > a,
  .guide-grid > a:nth-child(2) { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .guide-grid > a:last-child { border-bottom: 0; }
  .foundation-grid article,
  .foundation-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .foundation-grid article:last-child { border-bottom: 0; }
  .suite-faq { grid-template-columns: 1fr; gap: 44px; }
  .suite-footer { grid-template-columns: 1fr; padding-top: 30px; padding-bottom: 30px; }
  .suite-footer nav { flex-wrap: wrap; }
  .suite-footer p { text-align: left; }
  .pricing-heading { align-items: flex-start; flex-direction: column; }
  .pricing-switches { align-items: stretch; flex-direction: column; }
  .pricing-switch { display: grid; grid-template-columns: 1fr 1fr; }
  .suite-section-heading p { text-align: left; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-brokerage .price-plan,
  .pricing-grid-brokerage .price-plan:nth-child(2n),
  .pricing-grid-brokerage .price-plan:nth-child(3n),
  .pricing-grid-brokerage .price-plan:nth-last-child(-n + 2),
  .pricing-grid-brokerage .price-plan:nth-last-child(-n + 3) { border-right: 0; border-bottom: 1px solid var(--line); }
  .pricing-grid-brokerage .price-plan:last-child { border-bottom: 0; }
  .foundation-grid article,
}

@media (max-width: 520px) {
  .suite-hero h1 { font-size: 48px; }
  .suite-stage { height: 360px; }
  .stage-window figcaption { height: 30px; }
  .stage-signal > picture > img { height: 140px; }
  .stage-crm { top: 90px; }
  .stage-crm > picture > img { height: 150px; }
  .stage-journey > picture > img { height: 130px; }
  .product-copy h2 { font-size: 38px; }
  .product-screen { margin-right: -16px; margin-left: -16px; }
  .foundation-grid article { min-height: 190px; }
  .suite-foundation { padding-right: 16px; padding-left: 16px; }
  .suite-final { padding-right: 16px; padding-left: 16px; }
  .suite-final .suite-actions,
  .suite-final .suite-button { width: 100%; }
}

/* Public help center */
.help-page {
  --suite-max: 1320px;
  background: var(--bone);
  color: var(--ink);
}

.help-header {
  position: relative;
  overflow: hidden;
  padding-bottom: 78px;
  background: var(--coal);
  color: var(--bone);
}

.help-header::after {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url("assets/regional-topo.svg?v=20260720") center / cover no-repeat;
  content: "";
  filter: sepia(1) saturate(0.45);
  pointer-events: none;
}

.help-header .suite-nav,
.help-header-content {
  position: relative;
  z-index: 1;
}

.help-header-content {
  width: min(900px, calc(100% - 64px));
  margin: 76px auto 0;
  text-align: center;
}

.help-kicker,
.help-section-label {
  color: #e65a35;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.help-header h1 {
  max-width: 900px;
  margin: 20px auto;
  color: var(--bone);
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.help-header-content > p:not(.help-kicker) {
  max-width: 710px;
  margin: 0 auto;
  color: #b8b1a7;
  font-size: 19px;
  line-height: 1.6;
}

.help-header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.help-header-actions .suite-button-quiet {
  border-color: #5a554e;
  color: var(--bone);
}

.help-role-grid {
  display: grid;
  width: min(var(--suite-max), calc(100% - 64px));
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 92px auto;
  background: var(--line);
}

.help-role-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 42px;
  background: var(--bone);
  transition: background 160ms ease;
}

.help-role-card:hover { background: var(--paper); }
.help-role-card:focus-visible { outline: 3px solid var(--vein); outline-offset: -6px; }
.help-role-card span { color: var(--ember); font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.12em; }
.help-role-card h2 { margin: 34px 0 14px; font-size: 31px; letter-spacing: -0.025em; }
.help-role-card p { max-width: 530px; margin: 0 0 28px; color: var(--stone); font-size: 16px; line-height: 1.6; }
.help-role-card strong { margin-top: auto; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }

.help-overview {
  padding: 92px max(32px, calc((100vw - var(--suite-max)) / 2));
  background: var(--paper);
}

.help-overview-inner {
  display: grid;
  width: min(var(--suite-max), 100%);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  margin: 0 auto;
}

.help-overview h2,
.help-section h2 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.help-checklist,
.help-link-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.help-checklist li,
.help-link-list a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}

.help-checklist li::before {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--ember);
  border-radius: 50%;
  color: var(--ember);
  content: "✓";
  font-size: 12px;
}

.help-link-list a::before { color: var(--ember); content: "→"; }
.help-link-list a:hover strong { color: var(--ember); }
.help-link-list span { display: block; color: var(--stone); font-size: 14px; }

.help-task-directory { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.help-task-directory article { padding: 24px; background: var(--bone); }
.help-task-directory h3 { margin: 0 0 16px; font-size: 19px; }
.help-task-directory a { display: block; border-top: 1px solid var(--line); padding: 10px 0; color: var(--stone); font-size: 14px; }
.help-task-directory a::after { float: right; color: var(--ember); content: "→"; }
.help-task-directory a:hover { color: var(--ink); }
.help-crm-note { background: var(--bone); }
.help-crm-note p { max-width: 720px; color: var(--stone); font-size: 17px; line-height: 1.65; }
.help-crm-note .suite-button { margin-top: 12px; }

.help-shell {
  display: grid;
  width: min(var(--suite-max), calc(100% - 64px));
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 82px;
  margin: 0 auto;
  padding: 88px 0 112px;
}

.help-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
  border-top: 1px solid var(--slate);
}

.help-sidebar strong {
  display: block;
  padding: 18px 0 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.help-sidebar a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--stone);
  font-size: 14px;
}

.help-sidebar a:hover { color: var(--ember); }
.help-content { min-width: 0; }

.help-section {
  scroll-margin-top: 24px;
  padding: 0 0 78px;
}

.help-section + .help-section {
  border-top: 1px solid var(--line);
  padding-top: 78px;
}

.help-section > p {
  max-width: 760px;
  color: var(--stone);
  font-size: 17px;
  line-height: 1.7;
}

.help-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--slate);
  list-style: none;
  counter-reset: help-step;
}

.help-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: help-step;
}

.help-steps li::before {
  color: var(--ember);
  content: counter(help-step, decimal-leading-zero);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.help-steps h3 { margin: 0 0 8px; font-size: 21px; }
.help-steps p { max-width: 720px; margin: 0; color: var(--stone); line-height: 1.6; }

.help-task-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 28px 0 0;
  background: var(--line);
}

.help-task-brief div { padding: 20px 22px; 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.08em; text-transform: uppercase; }
.help-task-brief span { display: block; color: var(--stone); font-size: 14px; line-height: 1.5; }

.help-screen {
  overflow: hidden;
  margin: 38px 0 0;
  border: 1px solid #bdb5a8;
  background: var(--paper);
  box-shadow: 0 22px 46px rgba(43, 37, 31, 0.1);
}

.help-screen img,
.help-screen picture { display: block; width: 100%; height: auto; }
.help-screen figcaption { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--stone); font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }

.help-note {
  margin-top: 30px;
  border-left: 3px solid var(--ember);
  padding: 22px 24px;
  background: var(--paper);
}

.help-note strong { display: block; margin-bottom: 6px; }
.help-note p { margin: 0; color: var(--stone); line-height: 1.55; }
.help-note-help { border-left-color: var(--vein); }

.help-term-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
}

.help-term-grid article { min-height: 170px; padding: 28px; background: var(--paper); }
.help-term-grid h3 { margin: 0 0 10px; font-size: 20px; }
.help-term-grid p { margin: 0; color: var(--stone); line-height: 1.55; }

.help-footer {
  padding: 62px max(32px, calc((100vw - var(--suite-max)) / 2));
  background: var(--coal);
  color: var(--bone);
}

.help-footer-inner { display: flex; width: min(var(--suite-max), 100%); align-items: center; justify-content: space-between; gap: 36px; margin: 0 auto; }
.help-footer h2 { margin: 0 0 8px; color: var(--bone); font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.035em; }
.help-footer p { margin: 0; color: #aaa399; }

@media (max-width: 900px) {
  .help-role-grid { grid-template-columns: 1fr; }
  .help-role-card { min-height: 240px; }
  .help-overview-inner { grid-template-columns: 1fr; gap: 44px; }
  .help-shell { grid-template-columns: 1fr; gap: 48px; }
  .help-sidebar { position: static; }
  .help-task-directory { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .help-header-content,
  .help-role-grid,
  .help-shell { width: min(calc(100% - 32px), var(--suite-max)); }
  .help-header-content { margin-top: 58px; }
  .help-role-card { padding: 30px 24px; }
  .help-role-grid { margin-top: 64px; margin-bottom: 64px; }
  .help-term-grid { grid-template-columns: 1fr; }
  .help-task-brief { grid-template-columns: 1fr; }
  .help-footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .help-header h1 { font-size: 46px; }
  .help-header-actions,
  .help-header-actions .suite-button { width: 100%; }
  .help-steps li { grid-template-columns: 42px 1fr; gap: 10px; }
  .help-screen { margin-right: -16px; margin-left: -16px; }
}
