/* meetingsheld.com v3 design system. Built from the approved mockup F.
   Light page, Archivo 400/500/600, green-700 as the single accent,
   faint zinc-50 / green-50 panels, soft white nodes and pills, no borders
   except the FAQ hairlines and the footer rule. */

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */

:root {
  --ink: #09090b;
  --ink-700: #3f3f46;
  --ink-600: #52525b;
  --ink-500: #71717a;
  --ink-400: #a1a1aa;
  --surface: #fafafa;
  --page: #ffffff;
  --green: #15803d;
  --green-700: #15803d;
  --green-50: #f0fdf4;
  --hair: rgba(9, 9, 11, 0.09);

  --z-dropdown: 40;
  --z-sticky: 60;
  --z-menu: 80;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: 1160px;
  --gutter: clamp(20px, 4vw, 40px);
  --sec: clamp(78px, 8.5vw, 128px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--page);
  color: var(--ink);
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
}
.skip:focus { left: 16px; top: 12px; }

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

.shell {
  max-width: var(--shell);
  margin: 0 auto;
}

/* ---------- nav ---------- */

.nav {
  position: relative;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}

.nav-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}

.wordmark {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links > a,
.drop-btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-700);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  transition: color 160ms var(--ease);
}
.nav-links > a:hover,
.drop-btn:hover { color: var(--ink); }

.drop { position: relative; }

.drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}
.chev {
  color: var(--ink-400);
  transition: transform 200ms var(--ease);
}
.drop-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }

.drop-menu {
  position: absolute;
  z-index: var(--z-dropdown);
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 216px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--page);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(9, 9, 11, 0.06),
    0 14px 34px -14px rgba(9, 9, 11, 0.28);
}
.drop-menu[hidden] { display: none; }
.drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink-700);
  text-decoration: none;
  white-space: nowrap;
  transition: background 140ms var(--ease), color 140ms var(--ease);
}
.drop-menu a:hover {
  background: var(--surface);
  color: var(--ink);
}
.drop-menu a:focus-visible { border-radius: 8px; }

.nav-cta { margin-left: 22px; }

/* mobile menu button, hidden on desktop */
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}
.menu-btn svg { display: block; }
.menu-btn .icon-close { display: none; }
.menu-btn[aria-expanded="true"] .icon-open { display: none; }
.menu-btn[aria-expanded="true"] .icon-close { display: block; }

.menu-panel {
  display: none;
  position: relative;
  z-index: var(--z-menu);
  padding: 4px var(--gutter) 26px;
  background: var(--page);
}
.menu-panel[hidden] { display: none; }

.menu-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--shell);
  display: grid;
  gap: 2px;
}
.menu-list a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.014em;
  color: var(--ink);
  text-decoration: none;
}
.menu-h {
  margin: 18px 0 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-500);
}
.menu-sub a {
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-700);
}
.menu-panel .btn {
  margin: 22px auto 0;
  max-width: var(--shell);
  display: flex;
  width: 100%;
}

/* ---------- buttons and links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 9px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  transition: background 170ms var(--ease), transform 170ms var(--ease), color 170ms var(--ease);
}

.btn-sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 15px;
  border-radius: 8px;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #26262b; }

.btn-quiet {
  background: rgba(9, 9, 11, 0.045);
  color: var(--ink);
}
.btn-quiet:hover { background: rgba(9, 9, 11, 0.08); }

.btn:active { transform: translateY(1px); }

.lnk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.008em;
  color: var(--ink);
  text-decoration: none;
  text-underline-offset: 4px;
}
.lnk:hover { text-decoration: underline; }
.lnk-lg { font-size: 18px; }

.arw {
  color: var(--ink-400);
  transition: transform 200ms var(--ease), color 200ms var(--ease);
}
.lnk:hover .arw {
  transform: translateX(3px);
  color: var(--ink-500);
}

/* ---------- type ---------- */

.h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.0;
  text-wrap: balance;
}

/* sub-pages: one tone, two lines at most */
.h1-page {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.04;
  text-wrap: balance;
}

.lead {
  margin: 26px auto 0;
  max-width: 60ch;
  font-size: clamp(19px, 1.35vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-700);
  text-wrap: pretty;
}

.h2 {
  margin: 0 auto;
  max-width: 26ch;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.12;
  text-wrap: balance;
}
.h2 span { color: var(--ink-500); }
.h2 em {
  font-style: normal;
  color: var(--green-700);
}

.h2-left {
  margin-inline: 0;
  max-width: 21ch;
  text-align: left;
}

.body {
  margin: 26px auto 0;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-700);
  text-wrap: pretty;
}

.split-note {
  margin: 0;
  max-width: 44ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-700);
  text-wrap: pretty;
}

/* ---------- section rhythm ---------- */

.sec {
  padding: var(--sec) var(--gutter) 0;
}
.sec .h2 {
  margin-inline: auto;
  text-align: center;
}
.sec .h2-left { text-align: left; margin-inline: 0; }

/* sub-page head: H1 + lead, left aligned */
.page-head {
  padding: clamp(48px, 6vw, 84px) var(--gutter) 0;
}
.page-head > .shell { max-width: var(--shell); }
.page-head .lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 62ch;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) var(--gutter) clamp(48px, 6vw, 76px);
  text-align: center;
}

.wash {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1580px, 100vw);
  height: 760px;
  background-image: radial-gradient(circle at 1px 1px, rgba(9, 9, 11, 0.12) 1px, transparent 0);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse min(916px, 76.5vw) 56% at 50% 32%, #000 0%, rgba(0, 0, 0, 0.5) 44%, transparent 78%);
  mask-image: radial-gradient(ellipse min(916px, 76.5vw) 56% at 50% 32%, #000 0%, rgba(0, 0, 0, 0.5) 44%, transparent 78%);
  pointer-events: none;
}

.hero-in { position: relative; }

.cta-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---------- timeline panel (the first six weeks) ---------- */

.panel {
  position: relative;
  margin-top: clamp(48px, 5.5vw, 72px);
  background: var(--surface);
  border-radius: 16px;
  padding: clamp(30px, 3.4vw, 46px) clamp(22px, 3.4vw, 48px) clamp(32px, 3.6vw, 48px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 1px rgba(9, 9, 11, 0.03),
    0 14px 40px -20px rgba(9, 9, 11, 0.18);
}

.track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 6px;
}

.rail {
  position: absolute;
  top: 11px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(9, 9, 11, 0) 0%,
    rgba(9, 9, 11, 0.16) 10%,
    rgba(9, 9, 11, 0.16) 90%,
    rgba(9, 9, 11, 0) 100%
  );
}

.stop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.dot {
  width: 11px;
  height: 11px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #b6b6bd;
  box-shadow: 0 0 0 5px var(--surface);
}

.dot-open {
  background: var(--green);
  box-shadow:
    0 0 0 5px var(--surface),
    0 0 0 9px rgba(21, 128, 61, 0.14);
}

.when {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-500);
}

.what {
  font-size: clamp(16px, 1.15vw, 17px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 20ch;
  text-wrap: balance;
}

/* the timeline panel reused outside the hero */
.sec .panel { margin-top: clamp(34px, 4.2vw, 56px); }

/* ---------- the other half ---------- */

.half {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) var(--gutter) 0;
  text-align: center;
}

/* ---------- signals tabs ---------- */

.split-head .split-note {
  margin-top: 22px;
  max-width: 48ch;
}

.held-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px 48px;
  flex-wrap: wrap;
}
.held-head .split-note { max-width: 36ch; }

.pane-wrap {
  margin-top: clamp(34px, 4.4vw, 60px);
  background: var(--surface);
  border-radius: 22px;
  padding: clamp(24px, 3.2vw, 44px);
}

.tabs {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: clamp(26px, 4.4vw, 64px);
}

.tabs-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tabs-list button {
  appearance: none;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.35;
  color: var(--ink-500);
  text-align: left;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: color 160ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}
.tabs-list button:hover { color: var(--ink); }
.tabs-list button[aria-selected="true"] {
  color: var(--ink);
  font-weight: 600;
  background: var(--page);
  box-shadow:
    0 1px 2px rgba(9, 9, 11, 0.05),
    0 8px 20px -12px rgba(9, 9, 11, 0.22);
}

.tabs-body {
  min-height: 232px;
  padding-top: 6px;
}

.pane { display: none; }
.pane.on {
  display: block;
  animation: paneIn 280ms var(--ease) both;
}

@keyframes paneIn {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}

.pane-label { display: none; }

.signal {
  margin: 0;
  max-width: 640px;
  font-size: clamp(21px, 2.05vw, 27px);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-wrap: pretty;
}

.src {
  margin: clamp(24px, 2.8vw, 34px) 0 0;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-600);
}
.src-k { color: var(--ink-500); }

.close-row {
  margin-top: clamp(34px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px 40px;
  flex-wrap: wrap;
}
.close-line {
  margin: 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  text-wrap: pretty;
}

/* no JS: every industry reads as a plain stacked list */
html:not(.js) .tabs { grid-template-columns: minmax(0, 1fr); }
html:not(.js) .tabs-list { display: none; }
html:not(.js) .tabs-body { min-height: 0; padding-top: 0; }
html:not(.js) .pane { display: block; }
html:not(.js) .pane + .pane { margin-top: 40px; }
html:not(.js) .pane-label {
  display: block;
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-500);
}

/* one industry only: the pane reads on its own, no tab rail */
.pane-wrap-single .tabs { grid-template-columns: minmax(0, 1fr); }
.pane-wrap-single .tabs-list { display: none; }
.pane-wrap-single .tabs-body { min-height: 0; padding-top: 0; }
.pane-wrap-single .pane { display: block; }
.pane-wrap-single .pane-label {
  display: block;
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-500);
}

/* ---------- flow steps ---------- */

.flow-wrap {
  margin-top: clamp(38px, 4.6vw, 62px);
  background: var(--surface);
  border-radius: 24px;
  padding: clamp(24px, 3.2vw, 44px);
}

.flow {
  --gap: clamp(22px, 2.8vw, 38px);
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
  align-items: stretch;
}

/* six steps read as two rows of three */
.flow-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.node {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: clamp(20px, 1.9vw, 26px) clamp(18px, 1.7vw, 24px) clamp(18px, 1.7vw, 22px);
  box-shadow:
    0 1px 2px rgba(9, 9, 11, 0.04),
    0 14px 30px -20px rgba(9, 9, 11, 0.24);
}

.node:not(:last-child)::before,
.node:not(:last-child)::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* hairline connector */
.node:not(:last-child)::before {
  top: 50%;
  left: 100%;
  width: var(--gap);
  height: 1px;
  background: rgba(9, 9, 11, 0.2);
}

/* arrowhead */
.node:not(:last-child)::after {
  top: 50%;
  left: calc(100% + var(--gap));
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(9, 9, 11, 0.34);
  border-right: 1px solid rgba(9, 9, 11, 0.34);
  transform: translate(-5px, -50%) rotate(45deg);
}

/* the last node of each row of three has nothing to its right */
.flow-6 .node:nth-child(3)::before,
.flow-6 .node:nth-child(3)::after { content: none; }

.node-n {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}

.node-ok {
  position: absolute;
  top: clamp(16px, 1.6vw, 22px);
  right: clamp(16px, 1.5vw, 20px);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
}

.node-t {
  margin: 14px 0 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.28;
  min-height: 2.56em;
  text-wrap: balance;
}

.node-b {
  margin: 8px 0 18px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-700);
  text-wrap: pretty;
}

.chip {
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.after-steps {
  margin-top: clamp(42px, 5vw, 64px);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 40px;
  flex-wrap: wrap;
}
.tl {
  margin: 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  text-wrap: pretty;
}

/* ---------- gate sequence (what you pay for) ---------- */

.gate-wrap {
  margin-top: clamp(38px, 4.6vw, 62px);
  background: var(--surface);
  border-radius: 24px;
  padding: clamp(28px, 3.4vw, 46px) clamp(22px, 3.2vw, 44px) clamp(30px, 3.6vw, 48px);
}

.gate {
  --gap: clamp(18px, 2.4vw, 34px);
  --pillh: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.28fr 0.72fr;
  gap: var(--gap);
  align-items: start;
}

.gitem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: var(--pillh);
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  box-shadow:
    0 1px 2px rgba(9, 9, 11, 0.04),
    0 14px 30px -20px rgba(9, 9, 11, 0.24);
}

.pick {
  flex: none;
  color: var(--green-700);
}

.pill-held {
  background: var(--green-700);
  color: #fff;
  padding-inline: 26px;
  box-shadow:
    0 1px 2px rgba(9, 9, 11, 0.06),
    0 14px 30px -18px rgba(21, 128, 61, 0.55);
}

.gitem:not(:last-child)::before,
.gitem:not(:last-child)::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gitem:not(:last-child)::before {
  top: calc(var(--pillh) / 2);
  left: 100%;
  width: var(--gap);
  height: 1px;
  background: rgba(9, 9, 11, 0.2);
}

.gitem:not(:last-child)::after {
  top: calc(var(--pillh) / 2);
  left: calc(100% + var(--gap));
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(9, 9, 11, 0.34);
  border-right: 1px solid rgba(9, 9, 11, 0.34);
  transform: translate(-5px, -50%) rotate(45deg);
}

.gcap {
  margin: 16px 0 0;
  max-width: 30ch;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-700);
  text-align: center;
  text-wrap: balance;
}

.bar {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: clamp(46px, 5.4vw, 74px) auto 0;
  padding: clamp(52px, 5.9vw, 80px) clamp(24px, 4vw, 48px);
  background: var(--green-50);
  border-radius: 20px;
  text-align: center;
}

.bar-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(21, 128, 61, 0.17) 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 62% 130% at 50% 50%, #000 0%, rgba(0, 0, 0, 0.35) 52%, transparent 80%);
  mask-image: radial-gradient(ellipse 62% 130% at 50% 50%, #000 0%, rgba(0, 0, 0, 0.35) 52%, transparent 80%);
  pointer-events: none;
}

.bar-t {
  position: relative;
  display: block;
  font-size: clamp(33px, 4.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.05;
}

.after-bar {
  margin-top: clamp(30px, 3.4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px 40px;
  flex-wrap: wrap;
}
.note {
  margin: 0;
  max-width: 50ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  text-wrap: pretty;
}
.note-acts {
  display: flex;
  align-items: center;
  gap: 12px 26px;
  flex-wrap: wrap;
}

/* ---------- pricing line ---------- */

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 32px;
  flex-wrap: wrap;
}
.price-t {
  margin: 0;
  font-size: clamp(21px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.024em;
}

/* ---------- price card (pricing page only) ---------- */

.price-card {
  margin-top: clamp(34px, 4.2vw, 56px);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(9, 9, 11, 0.05),
    0 24px 56px -30px rgba(9, 9, 11, 0.3);
}

.price-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(32px, 4vw, 56px) clamp(26px, 3.6vw, 52px) clamp(34px, 4vw, 56px);
}

.price-fig {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.034em;
  line-height: 1;
}
.price-unit {
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-500);
}
.price-b {
  margin: 16px 0 0;
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-700);
  text-wrap: pretty;
}

.price-foot {
  background: var(--surface);
  padding: clamp(26px, 3.2vw, 40px) clamp(26px, 3.6vw, 52px) clamp(28px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3.6vw, 56px);
}
.price-foot h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.008em;
}
.terms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.terms li {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-700);
}
.worked {
  margin: 0;
  max-width: 34ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
}

/* ---------- who it is for ---------- */

.fit-panel {
  margin-top: clamp(34px, 4.2vw, 56px);
  padding: clamp(30px, 3.8vw, 54px) clamp(26px, 3.8vw, 54px) clamp(34px, 4vw, 58px);
  background: var(--surface);
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
}
.fit-panel-single { grid-template-columns: minmax(0, 1fr); }

.fit-h {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.008em;
}
.fit-not .fit-h { color: var(--ink-600); }

.fit-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.fit-list li {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}
.tick {
  color: var(--green-700);
  margin-top: 6px;
}
.fit-not .fit-list li { color: var(--ink-600); }
.pip {
  width: 6px;
  height: 6px;
  margin-top: 10px;
  justify-self: center;
  border-radius: 50%;
  background: #b3b3bb;
}

/* ---------- paired statements (comparison pages, no tables) ---------- */

.pair {
  margin-top: clamp(34px, 4.2vw, 56px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}
.pair-col {
  background: var(--surface);
  border-radius: 22px;
  padding: clamp(26px, 3.2vw, 42px) clamp(24px, 3vw, 40px) clamp(30px, 3.4vw, 46px);
}
.pair-col-us { background: var(--green-50); }
.pair-h {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.018em;
}
.pair-col-us .pair-h { color: var(--green-700); }

.cite {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-600);
}
.cite a { color: var(--ink-600); }

.two-tone {
  margin: clamp(26px, 3vw, 38px) 0 0;
  max-width: 34ch;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.026em;
  line-height: 1.2;
  text-wrap: balance;
}
.two-tone span { color: var(--ink-500); }

/* ---------- portrait row ---------- */

.who {
  margin-top: clamp(30px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}
.who-lg { grid-template-columns: 160px minmax(0, 1fr); }
.who-img {
  display: block;
  width: 96px;
  height: 96px;
  margin-top: 4px;
  border-radius: 50%;
  object-fit: cover;
  forced-color-adjust: none;
}
.who-lg .who-img { width: 160px; height: 160px; }
.who-n {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.who-b {
  margin: 11px 0 0;
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-700);
  text-wrap: pretty;
}
.who .lnk { margin-top: 10px; }

/* ---------- calculator ---------- */

.calc {
  margin-top: clamp(30px, 3.6vw, 48px);
  background: var(--surface);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 46px) clamp(24px, 3.2vw, 44px) clamp(30px, 3.6vw, 48px);
}
.calc-h {
  margin: 0;
  font-size: clamp(21px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.022em;
}
.calc-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
}
.calc-out {
  margin: clamp(24px, 2.8vw, 34px) 0 0;
  max-width: 52ch;
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.016em;
  color: var(--ink);
  text-wrap: pretty;
}
.calc-out.is-good { color: var(--green-700); }
.calc-caveat {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--ink-500);
}

/* ---------- forms ---------- */

.form-panel {
  max-width: 640px;
  margin-top: clamp(30px, 3.6vw, 48px);
  background: var(--surface);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 46px) clamp(24px, 3.2vw, 44px) clamp(30px, 3.6vw, 48px);
}

.field { display: grid; gap: 8px; }
.field + .field { margin-top: 20px; }

.field > label {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--page);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(9, 9, 11, 0.1);
  transition: box-shadow 160ms var(--ease);
}
.field select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2371717a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field input::placeholder { color: var(--ink-500); }
.field input:hover,
.field select:hover { box-shadow: 0 0 0 1px rgba(9, 9, 11, 0.2); }
.field input:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-radius: 10px;
}

.field-error {
  min-height: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #b42318;
}
.field-error:empty { display: none; }

.form-actions { margin-top: 26px; }
.form-actions .btn { min-width: 220px; }

.form-msg {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--page);
  box-shadow: 0 0 0 1px rgba(9, 9, 11, 0.1);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.form-msg[hidden] { display: none; }

.form-note {
  margin: 20px 0 0;
  font-size: 16px;
  color: var(--ink-700);
}

/* ---------- calendly stage ---------- */

.stage {
  max-width: 900px;
  margin-top: clamp(36px, 4.4vw, 60px);
}
.stage[hidden] { display: none; }
.stage-h {
  margin: 0 0 18px;
  font-size: clamp(21px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.022em;
}
.stage-frame {
  background: var(--surface);
  border-radius: 22px;
  overflow: hidden;
  min-height: 700px;
}
.stage-frame iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 780px;
  margin: clamp(30px, 3.6vw, 48px) auto 0;
  border-bottom: 1px solid var(--hair);
}

.qa + .qa { border-top: 1px solid var(--hair); }

.qa-q {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  appearance: none;
  background: none;
  border: 0;
  padding: 22px 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 1.4;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.pm {
  position: relative;
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  transition: transform 320ms var(--ease);
}
.pm i {
  position: absolute;
  background: var(--ink-500);
  transition: transform 300ms var(--ease), opacity 220ms var(--ease), background 220ms var(--ease);
}
.pm i:first-child { left: 0; right: 0; top: 6.25px; height: 1.5px; }
.pm i:last-child { top: 0; bottom: 0; left: 6.25px; width: 1.5px; }

.qa[data-open] .pm { transform: rotate(180deg); }
.qa[data-open] .pm i:last-child { transform: scaleY(0); opacity: 0; }
.qa[data-open] .pm i:first-child { background: var(--ink); }

.qa-a {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 340ms var(--ease);
}
.qa-a > div { overflow: hidden; }
.qa-a p {
  margin: 0;
  padding: 0 56px 24px 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  text-wrap: pretty;
}
html.js .qa:not([data-open]) .qa-a { grid-template-rows: 0fr; }

/* ---------- closing panel ---------- */

.book-panel {
  margin-top: clamp(6px, 1vw, 12px);
  padding: clamp(54px, 6.6vw, 90px) clamp(26px, 4vw, 56px) clamp(56px, 7vw, 94px);
  background: var(--surface);
  border-radius: 24px;
  text-align: center;
}
.book-b {
  margin: 20px auto 0;
  max-width: 54ch;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-700);
  text-wrap: pretty;
}
.book-panel .btn { margin-top: 30px; }

/* ---------- prose (legal, 404) ---------- */

.prose {
  max-width: 68ch;
  margin-top: clamp(30px, 3.4vw, 44px);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
}
.prose h2 {
  margin: 42px 0 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.prose p { margin: 0 0 18px; }
.prose ul { margin: 0 0 18px; padding-left: 20px; }
.prose li { margin: 0 0 8px; }
.prose a { color: var(--ink); }

/* ---------- footer ---------- */

.foot {
  margin-top: clamp(84px, 9vw, 132px);
  padding: 0 var(--gutter) clamp(48px, 5vw, 70px);
}
.foot > .shell {
  border-top: 1px solid var(--hair);
  padding-top: clamp(40px, 4.5vw, 60px);
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 40px);
}
.foot-h {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 3px;
}
.foot-col a {
  display: inline-block;
  padding: 7px 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-600);
  text-decoration: none;
  transition: color 150ms var(--ease);
}
.foot-col a:hover { color: var(--ink); }

.foot-legal {
  margin: clamp(38px, 4.4vw, 58px) 0 0;
  font-size: 15px;
  color: var(--ink-500);
}

/* ---------- motion ---------- */

.rise { animation: rise 620ms var(--ease) both; }
.rise-2 { animation-delay: 70ms; }
.rise-3 { animation-delay: 130ms; }
.rise-4 { animation-delay: 190ms; }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.reveal {
  transition:
    opacity 500ms var(--ease),
    transform 500ms var(--ease);
}
html.js .reveal {
  opacity: 0;
  transform: translateY(12px);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .rise { animation: fade 1ms linear both; }
  @keyframes fade { from { opacity: 1; } to { opacity: 1; } }
  * { transition-duration: 1ms !important; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .pane.on { animation: none; }
}

/* ---------- narrow ---------- */

@media (max-width: 960px) {
  .tabs { grid-template-columns: 232px minmax(0, 1fr); }

  /* the flow reads down the page once the columns get cramped */
  .flow,
  .flow-6 {
    --gap: 26px;
    grid-template-columns: minmax(0, 1fr);
  }
  .flow-6 .node:nth-child(3)::before,
  .flow-6 .node:nth-child(3)::after { content: ""; }
  .flow-6 .node:last-child::before,
  .flow-6 .node:last-child::after { content: none; }
  .node { padding: 22px 24px 20px; }
  .node-t { min-height: 0; }
  .node-b { margin-bottom: 14px; max-width: 62ch; }
  .node:not(:last-child)::before {
    top: 100%;
    left: 28px;
    width: 1px;
    height: var(--gap);
  }
  .node:not(:last-child)::after {
    top: calc(100% + var(--gap));
    left: 28px;
    transform: translate(-50%, -6px) rotate(135deg);
  }

  .gate { --gap: 20px; grid-template-columns: 1fr 1fr 1.34fr 0.7fr; }
  .pill { font-size: 16px; padding: 12px 16px; }
  .pill-held { padding-inline: 22px; }
  .gcap { font-size: 15px; }

  .price-main,
  .price-foot { grid-template-columns: minmax(0, 1fr); }
  .pair { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .menu-btn { display: inline-flex; }
  .menu-panel { display: block; }
  .menu-panel[hidden] { display: none; }
}

@media (max-width: 720px) {
  :root { --sec: clamp(72px, 12vw, 88px); }

  .wash { height: 620px; }

  .panel { padding: 30px 24px 32px; }

  .track {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 0;
  }

  .rail {
    top: 6px;
    bottom: 10px;
    left: 5px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      to bottom,
      rgba(9, 9, 11, 0) 0%,
      rgba(9, 9, 11, 0.16) 8%,
      rgba(9, 9, 11, 0.16) 92%,
      rgba(9, 9, 11, 0) 100%
    );
  }

  .stop {
    display: grid;
    grid-template-columns: 11px 1fr;
    column-gap: 18px;
    align-items: baseline;
    text-align: left;
  }

  .dot {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    transform: translateY(6px);
  }

  .what { max-width: none; }

  .held-head { gap: 14px; }
  .split-head .split-note { margin-top: 16px; }

  .h2-left { max-width: none; }
  .h1-page { max-width: none; }

  .pane-wrap { border-radius: 18px; padding: 22px 20px 26px; }

  .tabs { grid-template-columns: minmax(0, 1fr); gap: 22px; }

  .tabs-list {
    flex-direction: row;
    gap: 6px;
    margin: -4px calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .tabs-list::-webkit-scrollbar { display: none; }
  .tabs-list button {
    flex: none;
    padding: 9px 14px;
    font-size: 15px;
    white-space: nowrap;
  }

  .tabs-body { min-height: 210px; padding-top: 0; }
  .signal { max-width: none; }

  .close-row { gap: 24px; }
  .close-row .btn { width: 100%; }

  .flow-wrap { border-radius: 20px; padding: 20px 18px 22px; }
  .flow, .flow-6 { --gap: 22px; }
  .node { padding: 20px 20px 18px; }
  .node:not(:last-child)::before,
  .node:not(:last-child)::after { left: 24px; }

  .gate-wrap { border-radius: 20px; padding: 26px 18px 30px; }
  .gate {
    --gap: 22px;
    grid-template-columns: minmax(0, 1fr);
  }
  .pill { width: auto; font-size: 17px; padding: 12px 22px; }
  .gcap { font-size: 16px; max-width: 34ch; }
  .gitem:not(:last-child)::before {
    top: 100%;
    left: 50%;
    width: 1px;
    height: var(--gap);
  }
  .gitem:not(:last-child)::after {
    top: calc(100% + var(--gap));
    left: 50%;
    transform: translate(-50%, -6px) rotate(135deg);
  }

  .bar { border-radius: 18px; padding: 52px 22px; }

  .after-bar .note-acts { width: 100%; }
  .after-bar .btn { width: 100%; }

  .fit-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    border-radius: 18px;
    padding: 28px 22px 32px;
  }

  .price-card { border-radius: 20px; }
  .price-main { padding: 28px 22px 30px; gap: 30px; }
  .price-foot { padding: 26px 22px 30px; gap: 28px; }

  .pair-col { border-radius: 18px; padding: 24px 20px 28px; }

  .who { grid-template-columns: 72px minmax(0, 1fr); gap: 20px; }
  .who-img { width: 72px; height: 72px; }
  .who-lg { grid-template-columns: 104px minmax(0, 1fr); }
  .who-lg .who-img { width: 104px; height: 104px; }

  .calc,
  .form-panel { border-radius: 18px; padding: 24px 20px 28px; }
  .calc-grid { grid-template-columns: minmax(0, 1fr); }
  .form-actions .btn { width: 100%; }

  .stage-frame { border-radius: 18px; min-height: 780px; }
  .stage-frame iframe { height: 780px; }

  .qa-q { font-size: 17px; gap: 20px; padding: 20px 0; }
  .qa-a p { padding-right: 8px; }

  .book-panel { border-radius: 20px; padding: 46px 22px 52px; }
  .book-panel .btn { width: 100%; }

  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; }
}

@media (max-width: 400px) {
  .cta-row .btn { width: 100%; }
}

/* focus rings follow each component's own radius (the global rule flattens them to 4px) */
.btn:focus-visible { border-radius: 9px; }
.btn-sm:focus-visible { border-radius: 8px; }
.menu-btn:focus-visible { border-radius: 9px; }
.tabs-list button:focus-visible { border-radius: 10px; }
.qa-q:focus-visible { border-radius: 6px; outline-offset: 2px; }
.lnk:focus-visible { border-radius: 6px; outline-offset: 2px; }
.foot-col a:focus-visible { border-radius: 5px; outline-offset: 2px; }
.menu-list a:focus-visible { border-radius: 6px; outline-offset: 2px; }

/* Phase B central additions (2026-08-28) */
.h1-page-wide { max-width: 26ch; }
.fit-panel-single { max-width: 720px; }
.cite { max-width: 72ch; }
.pair-col:not(.pair-col-us) .fit-list li { color: var(--ink-600); }
.flow-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.flow > li { display: flex; }
.flow > li > .node { flex: 1; }
.page-pay-per-meeting .h1-page { max-width: 24ch; }

/* ---------- Phase C QA fixes (2026-08-28) ---------- */

/* one industry: signals read as a two-up grid so the panel is not half empty */
.pane-wrap-single .pane {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: clamp(34px, 4vw, 52px) clamp(40px, 5vw, 72px);
  align-items: start;
}
.pane-wrap-single .pane-label { grid-column: 1 / -1; }
.pane-wrap-single .signal,
.pane-wrap-single .src { max-width: none; }

/* market-context and cost math: two balanced columns, never one half-width stack */
.math {
  margin-top: clamp(26px, 3vw, 38px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3.4vw, 56px);
  align-items: start;
}
.math .two-tone { margin-top: 0; max-width: none; }
.math .cite { max-width: none; }
.math .two-tone + .cite { margin-top: 16px; }
.math-premise { margin-top: clamp(20px, 2.2vw, 26px); max-width: 72ch; }

/* exclusion cards: wrap and centre so the last row has no empty cell */
.flow-loose {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.flow-loose > li { flex: 0 1 calc((100% - var(--gap) * 2) / 3); }
.flow-loose > li > .node { justify-content: center; }

/* single-column fit panel: full width, list in two columns */
.fit-panel-single { max-width: none; }
.fit-panel-single .fit-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px clamp(30px, 5vw, 80px);
}

/* the calculator fields sit on one baseline (the stacked-form margin does not apply here) */
.calc-grid { align-items: start; }
.calc-grid .field + .field { margin-top: 0; }

/* /apply/: the form follows the lead, it does not float a section away from it */
.page-apply #book { padding-top: clamp(40px, 4.4vw, 64px); }
.page-apply #book .form-panel { margin-top: 0; }

@media (max-width: 960px) {
  .math { grid-template-columns: minmax(0, 1fr); }
  .flow-loose > li { flex: 1 1 100%; }
  .fit-panel-single .fit-list { grid-template-columns: minmax(0, 1fr); }
  .pane-wrap-single .pane { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- how it works: sources, tools, rules, reporting (2026-08-28) ---------- */

/* the eight public sources: name over what it gives, two columns inside the panel */
.srcs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 32px) clamp(34px, 5vw, 76px);
}
.srci { margin: 0; }
.srci-n {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.35;
  color: var(--ink);
}
.srci-b {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-600);
  text-wrap: pretty;
}

/* the tools: the same soft white nodes, no numbers and no connectors */
.flow-plain .node::before,
.flow-plain .node::after { content: none; }
.flow-plain .node-t { min-height: 0; }
.flow-plain .node-b { margin-bottom: 0; max-width: 46ch; }

/* sending discipline: one white row per rule, two columns */
.rules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px clamp(16px, 2vw, 24px);
}
.rule {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
  box-shadow:
    0 1px 2px rgba(9, 9, 11, 0.04),
    0 14px 30px -22px rgba(9, 9, 11, 0.24);
}
.rule .pip { margin-top: 9px; justify-self: start; }

/* what you see: the green panel, same tone as the no-show bar */
.see {
  position: relative;
  overflow: hidden;
  margin-top: clamp(34px, 4.2vw, 56px);
  background: var(--green-50);
  border-radius: 20px;
  padding: clamp(32px, 3.8vw, 50px) clamp(24px, 3.8vw, 50px);
}
.see-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(21, 128, 61, 0.17) 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 130% at 50% 50%, #000 0%, rgba(0, 0, 0, 0.3) 55%, transparent 82%);
  mask-image: radial-gradient(ellipse 70% 130% at 50% 50%, #000 0%, rgba(0, 0, 0, 0.3) 55%, transparent 82%);
  pointer-events: none;
}
.see-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px clamp(30px, 5vw, 72px);
}
.see-list li {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}

@media (max-width: 860px) {
  .srcs,
  .rules,
  .see-list { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  .rule { padding: 16px 18px; }
  .see { border-radius: 18px; padding: 26px 20px 30px; }
}

/* the tools grid stacks with every other flow once the columns get cramped
   (.flow-3 is declared after the breakpoints, so it needs its own) */
@media (max-width: 960px) {
  .flow-3 { grid-template-columns: minmax(0, 1fr); }
}

/* five signals on one panel: the odd one out runs the full width, so the grid
   never ends on an empty cell */
.page-for-ma-advisors .pane-wrap-single .sig:last-child { grid-column: 1 / -1; }
/* my audit fixes (2026-08-28) */
.nowrap { white-space: nowrap; }
@media (max-width: 420px) {
  .h1 { font-size: 44px; }
  .h1-page { font-size: clamp(38px, 11vw, 44px); }
}
