:root {
  --ink: #182522;
  --ink-soft: #40514b;
  --paper: #f5f0e5;
  --paper-light: #fffdf7;
  --paper-deep: #e6dcc8;
  --felt: #174d43;
  --felt-dark: #0d342d;
  --mint: #cbded1;
  --sage: #87a992;
  --amber: #e3a544;
  --coral: #d96f4d;
  --plum: #66506f;
  --line: #b9b9a9;
  --white: #fff;
  --shadow: 0 22px 58px rgba(18, 45, 38, .16);
  --surface-inset: max(20px, calc((100% - 1160px) / 2));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(227,165,68,.10), transparent 25rem),
    repeating-linear-gradient(0deg, rgba(24,37,34,.018) 0, rgba(24,37,34,.018) 1px, transparent 1px, transparent 5px),
    var(--paper);
  line-height: 1.55;
}

a { color: var(--felt-dark); text-underline-offset: 4px; text-decoration-thickness: 1px; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { min-height: 44px; }
img, svg { max-width: 100%; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(24,37,34,.22);
  background: rgba(255,253,247,.95);
}
.nav-shell {
  width: 100%;
  min-height: 64px;
  margin: 0 auto;
  padding: 7px var(--surface-inset);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-weight: 900;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand > span:last-child { white-space: nowrap; }
.brand-mark {
  position: relative;
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--felt);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
}
.brand-mark i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }
.brand-mark i:nth-child(1) { left: 9px; top: 9px; }
.brand-mark i:nth-child(2) { right: 8px; top: 14px; }
.brand-mark i:nth-child(3) { left: 14px; bottom: 7px; }
.brand-mark:empty::after { content: "•"; display: grid; place-items: center; height: 100%; color: var(--amber); font-size: 1.35rem; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 2px 8px; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 7px 8px;
  font-size: .9rem;
  font-weight: 760;
  text-decoration: none;
}
.nav-links a:hover { text-decoration: underline; }
.nav-links a[aria-current="page"] { color: var(--paper); background: var(--felt); text-decoration: none; }
.nav-links a[aria-current="location"] { box-shadow: inset 0 -3px 0 var(--amber); font-weight: 900; text-decoration: none; }
.page-return-nav { width: min(1160px,100%); margin: 52px auto 0; padding: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px; border-top: 2px solid var(--felt); }
.page-return-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 14px; border: 1px solid var(--felt); color: var(--felt); background: var(--paper); font-weight: 900; text-decoration: none; }
.page-return-nav a:first-child { color: var(--paper); background: var(--felt); }

main { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px 84px; }
.hero > *, .map-hero-copy > *, .tool-intro > *, .tool-shell > *,
.map-result-plane > *, .product-spread > *, .purchase-boundary > *,
.file-pages > *, .content-grid > * { min-width: 0; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--felt);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--ink); line-height: 1.08; letter-spacing: -.03em; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { max-width: 15ch; margin: 0; font-size: clamp(2.7rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.55rem); }
h3 { font-size: 1.25rem; }
.lede { max-width: 61ch; margin: 18px 0 0; color: var(--ink-soft); font-size: 1.1rem; }
.headline-line { display: block; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 19px;
  border: 2px solid var(--felt-dark);
  border-radius: 3px 18px 3px 18px;
  background: var(--felt-dark);
  color: var(--white);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--amber);
  cursor: pointer;
}
.button:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--amber); }
.button.secondary { background: var(--paper-light); color: var(--felt-dark); box-shadow: none; }
.button:disabled { opacity: .55; cursor: not-allowed; }

/* Home: an image-led tabletop opening. */
.hero {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(520px,1.1fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0 42px;
}
.hero-copy h1 { max-width: none; font-size: clamp(2.75rem, 4.4vw, 4.4rem); }
.hero-boundary {
  max-width: 620px;
  margin-top: 24px;
  padding: 13px 0 4px 17px;
  border-left: 3px solid var(--amber);
  color: var(--ink-soft);
  font-size: .88rem;
}
.hero-boundary p { margin: 0 0 7px; }
.tabletop-map {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #0d382f;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.08) 0 1px, transparent 2px),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.022) 0 1px, transparent 1px 5px),
    linear-gradient(145deg, #1f6355, var(--felt-dark));
  box-shadow: var(--shadow);
  isolation: isolate;
}
.tabletop-map::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.19);
  pointer-events: none;
}
.felt-path {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 49%;
  height: 2px;
  background: rgba(255,255,255,.34);
  transform: rotate(-7deg);
}
.felt-path::before, .felt-path::after { content: ""; position: absolute; width: 12px; height: 12px; border: 3px solid var(--amber); border-width: 3px 3px 0 0; transform: rotate(45deg); top: -6px; }
.felt-path::before { left: 31%; }
.felt-path::after { right: 10%; }
.agreement-sheet {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 48%;
  width: 282px;
  min-height: 350px;
  padding: 22px 22px 20px;
  transform: translate(-50%,-50%) rotate(-2.5deg);
  background:
    linear-gradient(rgba(24,37,34,.035) 1px, transparent 1px),
    var(--paper-light);
  background-size: 100% 27px;
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
}
.agreement-sheet::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 54px;
  height: 18px;
  transform: translateX(-50%) rotate(3deg);
  background: rgba(241,221,166,.82);
  box-shadow: 0 1px 2px rgba(0,0,0,.14);
}
.sheet-top { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 9px; border-bottom: 3px solid var(--felt); font-size: .62rem; font-weight: 900; letter-spacing: .09em; }
.sheet-top b { color: var(--felt); }
.sheet-campaign { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 13px 0 10px; }
.sheet-campaign small, .sheet-review small { font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.sheet-campaign strong { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.sheet-row { display: grid; grid-template-columns: 10px 1fr auto; gap: 8px; align-items: center; min-height: 48px; border-top: 1px solid rgba(24,37,34,.18); font-size: .69rem; }
.sheet-row b { font-size: .62rem; color: var(--felt); }
.state-dot { width: 9px; height: 9px; border-radius: 50%; }
.state-dot.agreed { background: var(--felt); }
.state-dot.open { background: var(--amber); }
.state-dot.muted { border: 1px solid #87938e; background: transparent; }
.sheet-review { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 10px; padding: 11px 0 0; border-top: 3px double var(--felt); }
.sheet-review strong { font-size: .67rem; }
.topic-token {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 90px;
  aspect-ratio: 1;
  border: 3px solid var(--paper-light);
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0,0,0,.24);
  text-align: center;
}
.topic-token span { font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.topic-token strong { max-width: 75px; font-size: .74rem; line-height: 1.05; }
.token-one { left: 6%; top: 10%; background: var(--coral); transform: rotate(-8deg); }
.token-two { right: 5%; top: 14%; background: var(--amber); color: var(--ink); transform: rotate(7deg); }
.token-three { left: 5%; bottom: 18%; background: var(--plum); transform: rotate(5deg); }
.token-four { right: 4%; bottom: 14%; background: var(--sage); color: var(--ink); transform: rotate(-6deg); }
.start-note, .review-marker {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
  transform: rotate(-3deg);
}
.start-note { left: 7%; top: 46%; }
.review-marker { right: 6%; top: 52%; transform: rotate(4deg); }
.start-note span, .review-marker span { display: block; color: var(--amber); font-size: .56rem; font-weight: 900; letter-spacing: .15em; }
.start-note strong, .review-marker strong { font: 500 1rem/1.1 Georgia, serif; }
.tabletop-map figcaption {
  position: absolute;
  z-index: 5;
  left: 22px;
  right: 22px;
  bottom: 18px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(8,34,29,.87);
  color: var(--white);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.tabletop-map figcaption i { color: var(--amber); font-style: normal; }

.decision-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin: 0 0 28px;
  border-block: 2px solid var(--felt);
}
.decision-ribbon::after { content: ""; position: absolute; left: 5%; right: 5%; top: 29px; height: 1px; background: var(--line); z-index: -1; }
.decision-ribbon > div { display: grid; grid-template-columns: 42px 1fr; align-content: start; gap: 0 12px; padding: 20px 24px 20px 0; }
.decision-ribbon > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.decision-ribbon span { grid-row: 1 / span 2; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--paper); border: 2px solid var(--amber); font-size: .68rem; font-weight: 900; }
.decision-ribbon strong { align-self: end; }
.decision-ribbon p { margin: 3px 0 0; color: var(--ink-soft); font-size: .88rem; }

.section { padding: 50px 0; }
.section-head { max-width: 790px; margin-bottom: 30px; }
.section-head h2 { margin: 0; }
.section-head p:not(.eyebrow) { color: var(--ink-soft); }
.topic-field { position: relative; }
.topic-field::before { content: ""; position: absolute; inset: 0; background: rgba(255,253,247,.55); z-index: -1; }
.topic-route { display: grid; grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr; align-items: stretch; }
.topic-stop { min-width: 0; padding: 18px 16px 20px; border-top: 6px solid var(--coral); background: rgba(255,253,247,.8); }
.topic-stop:nth-of-type(2) { border-color: var(--amber); }
.topic-stop:nth-of-type(3) { border-color: var(--plum); }
.topic-stop:nth-of-type(4) { border-color: var(--sage); }
.topic-stop h3 { margin: 16px 0 8px; }
.topic-stop p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.number { font-size: .72rem; font-weight: 900; letter-spacing: .12em; color: var(--felt); }
.route-arrow { display: grid; place-items: center; color: var(--amber); font-size: 1.4rem; font-weight: 900; }

.product-spread {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(380px,.82fr);
  gap: 70px;
  align-items: center;
  margin-top: 24px;
  padding-block: 70px;
}
.product-copy h2 { max-width: 18ch; margin: 0; }
.disclosure {
  margin: 26px 0;
  padding: 16px 0 16px 18px;
  border: 0;
  border-left: 4px solid var(--amber);
  background: transparent;
}
.disclosure strong { display: block; }
.disclosure p { max-width: 68ch; margin: 5px 0 0; color: var(--ink-soft); }
.folio-stack { position: relative; min-height: 390px; }
.folio {
  position: absolute;
  width: 280px;
  min-height: 340px;
  padding: 25px;
  border: 1px solid #b7b0a0;
  background:
    linear-gradient(rgba(24,37,34,.035) 1px, transparent 1px),
    var(--paper-light);
  background-size: 100% 25px;
  box-shadow: var(--shadow);
}
.folio span { display: block; padding-bottom: 10px; border-bottom: 3px solid var(--felt); color: var(--felt); font-size: .65rem; font-weight: 900; letter-spacing: .13em; }
.folio strong { display: block; padding: 13px 0 6px; border-bottom: 1px solid var(--line); font: 500 1.1rem/1.1 Georgia, serif; }
.folio small { display: block; margin-top: 18px; color: var(--ink-soft); }
.folio-back { left: 0; top: 26px; transform: rotate(-8deg); }
.folio-mid { right: 4px; top: 14px; transform: rotate(7deg); }
.folio-front { left: 50%; top: 0; transform: translateX(-50%) rotate(-1deg); }

/* Tool: focused inputs beside a live paper result. */
.tool-intro {
  display: grid;
  grid-template-columns: minmax(0,1fr) 250px;
  gap: 28px;
  align-items: center;
  padding: 28px 0 22px;
}
.tool-intro h1 { max-width: 19ch; font-size: clamp(2.35rem,5.4vw,4.4rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 14px; color: var(--ink-soft); font-size: .86rem; }
.breadcrumbs a { display: inline-flex; align-items: center; min-width: 44px; padding: 2px 0; }
.breadcrumb-current { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; }
.topic-compass {
  position: relative;
  width: 230px;
  height: 180px;
  justify-self: end;
  border: 1px solid var(--felt);
  background: rgba(255,253,247,.7);
}
.topic-compass::before, .topic-compass::after { content: ""; position: absolute; background: var(--line); }
.topic-compass::before { left: 50%; top: 18px; bottom: 18px; width: 1px; }
.topic-compass::after { top: 50%; left: 18px; right: 18px; height: 1px; }
.compass-center { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; width: 86px; height: 86px; transform: translate(-50%,-50%) rotate(-3deg); border-radius: 50%; background: var(--felt); color: var(--white); font-size: .56rem; text-align: center; letter-spacing: .08em; }
.compass-center strong { font-size: .65rem; }
.compass-point { position: absolute; z-index: 2; padding: 2px 6px; background: var(--paper-light); font-size: .67rem; font-weight: 800; }
.compass-point.north { left: 50%; top: 8px; transform: translateX(-50%); }
.compass-point.east { right: 4px; top: 50%; transform: translateY(-50%); color: var(--coral); }
.compass-point.south { left: 50%; bottom: 8px; transform: translateX(-50%); }
.compass-point.west { left: 4px; top: 50%; transform: translateY(-50%); }
.tool-shell { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.82fr); gap: 28px; align-items: start; }
.tool-panel { padding: 26px 30px 30px; border-top: 8px solid var(--coral); background: var(--paper-light); box-shadow: 0 18px 40px rgba(24,37,34,.11); }
.tool-step { display: grid; grid-template-columns: 78px 1fr; gap: 1px 10px; margin: -4px 0 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.tool-step span { grid-row: 1 / span 2; align-self: center; color: var(--coral); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.tool-step strong { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; }
.tool-step small { color: var(--ink-soft); }
.field { margin: 16px 0; }
.field label, .field legend { display: block; margin-bottom: 7px; font-weight: 820; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #879a91;
  border-radius: 2px;
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
}
.field input:focus, .field textarea:focus { border-color: var(--felt); }
.field textarea { min-height: 102px; resize: vertical; }
.helper { margin: 6px 0 0; color: var(--ink-soft); font-size: .86rem; }
.choice-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.choice {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 64px;
  padding: 8px 10px;
  border: 1px solid #879a91;
  background: #fff;
  cursor: pointer;
}
.choice:has(input:checked) { border-color: var(--felt); box-shadow: inset 0 -4px 0 var(--amber); background: #f6faf7; }
.choice input { width: 20px; height: 20px; min-height: 20px; margin: 0; }
.choice span, .choice strong, .choice small { display: block; }
.choice strong { font-size: .88rem; }
.choice small { color: var(--ink-soft); font-size: .68rem; line-height: 1.2; }
.conditional[hidden] { display: none; }
.conditional:not([hidden]) { display: grid; grid-template-columns: 1fr 180px; gap: 12px; padding: 0 14px; border-left: 3px solid var(--amber); background: rgba(227,165,68,.08); }
.tool-submit { width: 100%; margin-top: 6px; }
.privacy-inline { display: flex; gap: 7px; align-items: center; }
.privacy-inline span { color: var(--felt); font-size: .6rem; }
.result-panel { position: sticky; top: 18px; }
.result-paper {
  min-height: 568px;
  padding: 28px 30px 24px;
  border: 1px solid #aaa898;
  background:
    linear-gradient(rgba(24,37,34,.035) 1px, transparent 1px),
    var(--paper-light);
  background-size: 100% 29px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.paper-clip { position: absolute; top: -8px; left: 50%; width: 78px; height: 24px; transform: translateX(-50%) rotate(1deg); background: rgba(231,209,157,.78); }
.result-mast { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0 12px; border-bottom: 4px solid var(--felt); color: var(--felt); font-size: .64rem; font-weight: 900; letter-spacing: .1em; }
.result-paper .eyebrow { margin-top: 18px; }
.result-paper h2 { margin: 0 0 12px; font-size: 2rem; }
.result-route { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 8px; align-items: center; margin: 14px 0 8px; font-size: .65rem; color: var(--ink-soft); }
.result-route i { height: 2px; background: var(--line); }
.result-route strong { color: var(--coral); text-align: center; }
.result-line { display: grid; grid-template-columns: 118px 1fr; gap: 12px; min-height: 58px; padding: 13px 0 10px; border-top: 1px solid var(--line); }
.result-line > span { color: var(--felt); font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.result-line > strong { overflow-wrap: anywhere; }
.result-wording { min-height: 100px; }
.empty { color: #69766f; font-weight: 500 !important; }
.status-message { min-height: 44px; display: flex; align-items: center; margin: 8px 0 0; color: #704718; font-weight: 700; }
.preview-boundary { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }

/* Comparison: connected topic lanes, not repeated cards. */
.page-hero { max-width: 900px; padding: 50px 0 30px; }
.page-hero h1 { font-size: clamp(2.55rem,6vw,4.9rem); }
.map-hero { max-width: none; }
.map-hero-copy { display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 56px; align-items: center; }
.state-orbit { position: relative; width: 250px; height: 250px; border: 1px solid var(--line); border-radius: 50%; }
.state-orbit::before { content: ""; position: absolute; inset: 38px; border: 1px dashed var(--sage); border-radius: 50%; }
.orbit-center { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 100px; height: 100px; transform: translate(-50%,-50%); border-radius: 50%; background: var(--felt); color: var(--white); font-size: .6rem; text-align: center; letter-spacing: .1em; }
.orbit-state { position: absolute; display: grid; place-items: center; min-height: 44px; padding: 7px 11px; border: 2px solid var(--paper-light); border-radius: 999px; color: var(--white); font-size: .73rem; font-weight: 900; box-shadow: 0 6px 15px rgba(24,37,34,.18); }
.orbit-agreed { left: -8px; top: 33px; background: var(--felt); }
.orbit-open { right: -9px; top: 83px; background: var(--coral); }
.orbit-na { left: 54px; bottom: -8px; background: var(--plum); }
.map-section { position: relative; }
.map-section::before { content: ""; position: absolute; inset: 0; background: rgba(255,253,247,.62); z-index: -1; }
.decision-map { border-top: 1px solid var(--felt); }
.map-legend { display: grid; grid-template-columns: 1fr 1fr 1fr; margin-left: 220px; color: var(--ink-soft); font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
.map-legend span { padding: 10px 14px; border-left: 1px solid var(--line); }
.map-lane { display: grid; grid-template-columns: 220px 1fr; min-height: 155px; border-top: 1px solid var(--line); }
.map-lane > header { padding: 22px 22px 18px 0; border-top: 7px solid var(--coral); }
.map-lane:nth-of-type(2) > header { border-color: var(--amber); }
.map-lane:nth-of-type(3) > header { border-color: var(--plum); }
.map-lane:nth-of-type(4) > header { border-color: var(--sage); }
.map-lane header span { color: var(--felt); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.map-lane h3 { margin: 13px 0 0; }
.lane-path { display: grid; grid-template-columns: 1fr 26px 1fr 26px 1fr; align-items: stretch; }
.lane-path section { padding: 18px 14px; border-left: 1px solid var(--line); }
.lane-path small { color: var(--felt); font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
.lane-path p { margin: 7px 0 0; color: var(--ink-soft); font-size: .88rem; }
.lane-path > i { display: grid; place-items: center; color: var(--amber); font-style: normal; font-weight: 900; }
.lane-path .private-zone { background: rgba(102,80,111,.07); }
.map-result-plane {
  display: grid;
  grid-template-columns: minmax(0,1fr) 380px;
  gap: 60px;
  align-items: center;
  padding-block: 68px;
}
.map-result-plane h2 { max-width: 16ch; margin: 0; }
.result-sheet-mini {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 36px 30px;
  min-height: 360px;
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.result-sheet-mini::before { content: "TABLE AGREEMENT"; padding-bottom: 12px; border-bottom: 4px solid var(--felt); color: var(--felt); font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.result-sheet-mini span { display: flex; align-items: center; min-height: 54px; padding-left: 14px; border-left: 5px solid var(--coral); border-bottom: 1px solid var(--line); font-family: Georgia,serif; }
.result-sheet-mini span:nth-child(3) { border-color: var(--amber); }
.result-sheet-mini span:nth-child(4) { border-color: var(--plum); }
.result-sheet-mini span:nth-child(5) { border-color: var(--sage); }

/* Product detail: an open file spread. */
.product-hero { max-width: 820px; }
.file-spread { position: relative; padding: 58px 36px 34px; background: var(--felt-dark); color: var(--white); }
.file-spread::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.file-spread h2, .file-spread .eyebrow { color: inherit; }
.file-spread-copy { position: relative; z-index: 2; max-width: 670px; margin-bottom: 34px; }
.file-spread-copy > h2 { margin: 0; }
.file-pages { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .85fr .85fr; gap: 20px; align-items: end; }
.file-page { min-height: 310px; padding: 24px; background: var(--paper-light); color: var(--ink); box-shadow: 0 16px 32px rgba(0,0,0,.22); }
.file-page h2 { color: var(--ink); font-size: 1.65rem; }
.file-main { min-height: 365px; transform: rotate(-1deg); }
.file-print { transform: rotate(1.5deg); }
.file-example { transform: rotate(-1deg); }
.file-page li { margin: 8px 0; }
.badge { display: inline-flex; align-items: center; min-height: 30px; padding: 3px 9px; border-radius: 999px; background: var(--mint); font-size: .75rem; font-weight: 850; }
.delivery-band { position: relative; z-index: 2; display: grid; grid-template-columns: 190px 1fr; gap: 16px; margin-top: 28px; padding: 16px 0; border-block: 1px solid rgba(255,255,255,.3); }
.delivery-band span { color: var(--amber); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.purchase-boundary { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: center; }
.purchase-plane { padding: 35px 32px; border-left: 8px solid var(--amber); background: rgba(255,253,247,.72); }
.purchase-plane h2 { max-width: 18ch; margin: 0; }
.purchase-plane p:not(.eyebrow) { max-width: 65ch; }
.purchase-plane .button + .button { margin-left: 10px; }

/* Editorial and supporting pages. */
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 290px; gap: 42px; align-items: start; }
.prose { min-width: 0; }
.prose h2 { margin-top: 42px; font-size: 2.15rem; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { max-width: 72ch; }
.prose li { margin: 8px 0; }
.prose a, .section > p a, .panel a { display: inline-flex; align-items: center; padding: 5px 2px; }
.side-nav { position: sticky; top: 18px; padding: 8px 0 8px 19px; border-left: 4px solid var(--amber); }
.side-nav a { display: flex; align-items: center; padding: 6px 0; }
.callout { margin: 26px 0; padding: 20px 22px; border-left: 5px solid var(--felt); background: rgba(203,222,209,.45); }
.callout strong { display: block; margin-bottom: 4px; }
.topic-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.topic, .panel { padding: 23px; border-top: 5px solid var(--felt); background: var(--paper-light); box-shadow: 0 12px 28px rgba(24,37,34,.08); }
.topic h2, .topic h3, .panel h2, .panel h3 { margin-top: 0; }
.topic p, .panel p { color: var(--ink-soft); }
.topic .button { margin-top: 8px; }
.editorial-note { padding: 28px 0; border-block: 2px solid var(--felt); }
.editorial-note h2 { margin-top: 0; }
.source-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px 34px; padding-left: 20px; }
.source-list a { display: inline-flex; align-items: center; min-height: 44px; }
.source-titles { list-style: none; padding: 0; }
.source-titles li { min-height: 90px; padding: 14px 0; border-top: 1px solid var(--line); }
.source-titles strong, .source-titles span { display: block; }
.source-titles span { margin-top: 5px; color: var(--ink-soft); font-size: .88rem; }
.comparison { width: 100%; border-collapse: collapse; background: var(--paper-light); }
.comparison th, .comparison td { border: 1px solid var(--line); padding: 14px; text-align: left; vertical-align: top; overflow-wrap: anywhere; }
.comparison th { background: rgba(203,222,209,.45); }
.small { color: var(--ink-soft); font-size: .87rem; }

.footer { border-top: 1px solid var(--line); background: #e7e1d4; }
.footer-shell { width: min(1160px,100%); margin: 0 auto; padding: 30px 22px 38px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 2px 5px; }
.footer-links a { display: inline-flex; align-items: center; padding: 7px 9px; }
.operator-contact { display: grid; gap: .2rem; margin: .7rem 0 0; color: #d7e2dc; font-size: .84rem; line-height: 1.35; }
.public-identity { margin: 9px 0 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.55; }
.public-identity span { color: var(--ink); overflow-wrap: anywhere; }

.error-page { max-width: none; padding: 0 0 70px; }
.error-stage {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(300px,.72fr) minmax(420px,1fr);
  align-items: center;
  gap: clamp(42px,8vw,120px);
  padding: clamp(56px,8vw,100px) max(24px,calc((100vw - 1160px) / 2));
  color: #fff;
  background: linear-gradient(115deg,rgba(7,24,20,.96),rgba(17,56,46,.88)), url("assets/table-workspace-v1.png") center / cover no-repeat;
}
.error-code { display: grid; grid-template-columns: 1fr 70px 1fr; align-items: center; color: #fff6e9; font-family: Georgia,"Times New Roman",serif; font-size: clamp(6rem,16vw,13rem); line-height: .8; }
.error-code i { color: var(--amber); font-family: inherit; font-size: clamp(2rem,5vw,4.5rem); font-style: normal; text-align: center; }
.error-copy { max-width: 650px; padding-left: clamp(22px,4vw,52px); border-left: 2px solid var(--amber); }
.error-copy .eyebrow { color: #ffd07b; }
.error-copy h1 { margin: 12px 0 20px; max-width: 620px; color: #fffaf0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(3rem,6vw,5.6rem); font-weight: 500; line-height: .96; letter-spacing: -.045em; }
.error-copy .lede { color: #eee4d6; }
.error-copy .actions { margin-top: 28px; }
.error-copy .button.secondary { background: #fffaf0; }

@media (max-width: 820px) {
  .nav-shell { min-height: 60px; padding: 6px 14px; align-items: flex-start; }
  .brand { font-size: .88rem; }
  .brand-mark { width: 30px; min-width: 30px; height: 30px; }
  .nav-links { max-width: 176px; gap: 0 2px; }
  .nav-links a { padding: 5px 6px; font-size: .76rem; }
  main { padding: 0 16px 64px; }
  h1 { font-size: 2.45rem; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding: 32px 0 30px; }
  .hero-copy h1 { font-size: 2.28rem; }
  .hero-copy .lede { margin-top: 13px; font-size: 1rem; }
  .hero-copy .actions { margin-top: 18px; }
  .hero-boundary { margin-top: 18px; font-size: .81rem; }
  .tabletop-map { min-height: 455px; width: 100%; }
  .agreement-sheet { width: 238px; min-height: 315px; padding: 18px; }
  .sheet-row { min-height: 41px; font-size: .62rem; }
  .sheet-row b { font-size: .55rem; }
  .topic-token { width: 68px; }
  .topic-token strong { font-size: .62rem; }
  .token-one { left: 3%; top: 8%; }
  .token-two { right: 2%; top: 10%; }
  .token-three { left: 2%; bottom: 17%; }
  .token-four { right: 2%; bottom: 15%; }
  .start-note { left: 2%; top: 40%; }
  .review-marker { right: 2%; top: 43%; }
  .tabletop-map figcaption { left: 14px; right: 14px; bottom: 12px; gap: 6px; font-size: .63rem; }
  .decision-ribbon { grid-template-columns: 1fr; }
  .decision-ribbon::after { display: none; }
  .decision-ribbon > div { padding: 14px 0; }
  .decision-ribbon > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .topic-route { grid-template-columns: 1fr; }
  .topic-stop { min-height: auto; padding: 16px; }
  .route-arrow { min-height: 30px; transform: rotate(90deg); }
  .product-spread { grid-template-columns: 1fr; gap: 34px; padding-block: 50px; }
  .folio-stack { min-height: 360px; width: min(100%,350px); margin: 0 auto; }
  .folio { width: 235px; min-height: 320px; }
  .folio-back { left: 18px; transform: rotate(-5deg); }
  .folio-mid { right: 18px; transform: rotate(5deg); }
  .tool-intro { grid-template-columns: minmax(0,1fr) 106px; gap: 12px; padding: 18px 0 14px; align-items: end; }
  .tool-intro .breadcrumbs { grid-column: 1 / -1; margin-bottom: 0; }
  .tool-intro h1 { font-size: 2.05rem; }
  .tool-intro .lede { margin-top: 8px; font-size: .88rem; }
  .topic-compass { width: 104px; height: 104px; }
  .topic-compass::before { top: 8px; bottom: 8px; }
  .topic-compass::after { left: 8px; right: 8px; }
  .compass-center { width: 54px; height: 54px; font-size: .42rem; }
  .compass-center strong { font-size: .46rem; }
  .compass-point { padding: 1px 3px; font-size: .48rem; }
  .compass-point.north { top: 1px; }
  .compass-point.east { right: 0; }
  .compass-point.south { bottom: 0; }
  .compass-point.west { left: 0; }
  .tool-shell { grid-template-columns: 1fr; gap: 24px; }
  .tool-panel { padding: 18px 16px 22px; }
  .tool-step { margin-bottom: 8px; padding-bottom: 10px; }
  .field { margin: 12px 0; }
  .field textarea { min-height: 84px; }
  .choice-row { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 5px; }
  .choice { grid-template-columns: 17px 1fr; gap: 5px; min-height: 58px; padding: 5px; }
  .choice input { width: 17px; height: 17px; min-height: 17px; }
  .choice strong { font-size: .73rem; }
  .choice small { display: none; }
  .conditional:not([hidden]) { grid-template-columns: 1fr; gap: 0; }
  .result-panel { position: static; }
  .result-paper { min-height: 0; padding: 24px 20px; }
  .preview-boundary { grid-template-columns: 1fr; }
  .page-hero { padding: 34px 0 24px; }
  .page-hero h1 { font-size: 2.5rem; }
  .map-hero-copy { grid-template-columns: 1fr; gap: 24px; }
  .state-orbit { width: 230px; height: 230px; margin: 0 auto; }
  .map-legend { display: none; }
  .map-lane { grid-template-columns: 1fr; }
  .map-lane > header { padding-right: 0; }
  .lane-path { grid-template-columns: 1fr; }
  .lane-path section { border-left: 3px solid var(--line); }
  .lane-path > i { min-height: 28px; transform: rotate(90deg); }
  .lane-path > i:nth-of-type(2) { transform: none; }
  .map-result-plane { grid-template-columns: 1fr; gap: 38px; }
  .result-sheet-mini { width: min(100%,350px); margin: 0 auto; transform: none; }
  .file-spread { margin-inline: -16px; padding: 48px 24px 28px; }
  .file-pages { grid-template-columns: 1fr; gap: 14px; }
  .file-page, .file-main { min-height: 0; transform: none; }
  .delivery-band { grid-template-columns: 1fr; }
  .purchase-boundary { grid-template-columns: 1fr; gap: 22px; }
  .purchase-plane .button { width: 100%; justify-content: center; }
  .purchase-plane .button + .button { margin: 10px 0 0; }
  .content-grid, .topic-grid, .footer-shell { grid-template-columns: 1fr; }
  .side-nav { position: static; }
  .source-list { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .comparison, .comparison tbody, .comparison tr, .comparison th, .comparison td { display: block; width: 100%; }
  .comparison thead { display: none; }
  .comparison tr { margin-bottom: 16px; border: 1px solid var(--line); }
  .comparison th, .comparison td { border: 0; border-bottom: 1px solid var(--line); }
  .comparison tr > :last-child { border-bottom: 0; }
  .comparison tbody td::before { content: attr(data-label); display: block; margin-bottom: 5px; color: var(--felt); font-size: .7rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
}

@media (max-width: 420px) {
  .nav-shell { gap: 7px; }
  .brand { gap: 6px; font-size: .82rem; }
  .nav-links { max-width: 164px; }
  .nav-links a { font-size: .71rem; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-copy h1 { font-size: 2.16rem; }
  .tabletop-map { min-height: 430px; }
  .agreement-sheet { width: 220px; }
  .topic-token { width: 62px; }
  .start-note, .review-marker { display: none; }
  .tabletop-map figcaption { padding: 8px 5px; font-size: .58rem; }
  .tool-intro { grid-template-columns: 1fr 88px; }
  .tool-intro h1 { font-size: 1.9rem; }
  .topic-compass { width: 86px; height: 86px; }
  .compass-point { font-size: .42rem; }
  .tool-step { grid-template-columns: 62px 1fr; }
  .tool-step small { font-size: .73rem; }
  .result-line { grid-template-columns: 92px 1fr; }
}

@media (min-width: 821px) {
  .headline-line { white-space: nowrap; }
}

@media print {
  .site-header, .footer, .actions, .side-nav, .topic-compass { display: none; }
  body { background: #fff; }
  main { width: 100%; max-width: none; padding: 0; }
  .tool-shell, .map-result-plane, .product-spread { grid-template-columns: 1fr; }
  .result-panel { position: static; }
}

/* System-Neutral Launch Edition: tabletop workspace visual system */
.launch-page { max-width: none; padding: 0; }
.launch-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(390px, .68fr);
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(44px, 5vw, 72px) var(--surface-inset);
  overflow: hidden;
  color: var(--white);
  background: var(--felt-dark) url("assets/table-workspace-v1.png") center / cover no-repeat;
}
.launch-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,20,17,.94) 0%, rgba(7,20,17,.78) 42%, rgba(7,20,17,.46) 68%, rgba(7,20,17,.72) 100%); }
.launch-copy, .launch-sheet { position: relative; z-index: 1; }
.launch-copy { max-width: 700px; }
.launch-copy .eyebrow { color: #ffd07b; }
.launch-copy h1 { margin: 13px 0 20px; max-width: 720px; color: #fffaf0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.1rem, 4.2vw, 4rem); font-weight: 500; line-height: 1.02; letter-spacing: -.045em; }
.launch-copy .headline-line { display: block; }
.launch-copy .lede { max-width: 630px; color: #eee4d6; font-size: 1.12rem; }
.launch-copy .actions { margin-top: 28px; }
.launch-copy .button.ghost { border-color: rgba(255,255,255,.64); color: #fff; background: rgba(9,30,25,.46); }
.launch-trust { max-width: 650px; margin: 24px 0 0; padding-left: 17px; border-left: 2px solid var(--amber); color: #dcd2c4; font-size: .85rem; }
.launch-sheet { margin: 0; padding: 33px 34px 27px; color: var(--ink); background: #fffaf0; background-image: repeating-linear-gradient(0deg, transparent 0 32px, rgba(40,75,65,.09) 33px); box-shadow: 0 38px 100px rgba(0,0,0,.52); transform: rotate(1.2deg); }
.sheet-pin { position: absolute; top: -11px; left: 40%; width: 115px; height: 28px; background: rgba(226,198,120,.68); transform: rotate(-4deg); }
.launch-sheet-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 12px; border-bottom: 3px double var(--felt); color: var(--felt); font-size: .68rem; letter-spacing: .12em; }
.launch-route { display: flex; align-items: center; justify-content: space-between; gap: 5px; margin: 20px 0 16px; color: var(--ink-soft); font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.launch-route i { color: var(--coral); font-size: 1.1rem; font-style: normal; }
.launch-topic { display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 10px; min-height: 55px; border-top: 1px solid #b8aa91; font-size: .78rem; }
.launch-topic b { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid currentColor; border-radius: 50%; font-size: .62rem; }
.launch-topic strong { font-size: .66rem; text-transform: uppercase; }
.launch-topic.agreed strong { color: var(--felt); }
.launch-topic.open strong { color: var(--coral); }
.launch-topic.empty strong { max-width: 100px; color: var(--ink-soft); text-align: right; }
.launch-sheet figcaption { padding-top: 14px; border-top: 3px double #8c806c; color: var(--ink-soft); font-size: .74rem; }

.route-band { display: grid; grid-template-columns: 1fr 46px 1fr 46px 1fr; align-items: center; padding: 0 var(--surface-inset); background: #eadfca; border-block: 1px solid #aa9d87; }
.route-band article { min-height: 190px; padding: 28px 22px; }
.route-band article > span { color: var(--felt); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.route-band h2 { margin: 22px 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.route-band p { margin: 0; color: var(--ink-soft); font-size: .87rem; }
.route-band > i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: #fff; background: var(--felt); font-style: normal; }

.table-preview-plane { padding: clamp(64px, 8vw, 110px) var(--surface-inset); background: #f7f0e3; }
.preview-heading { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; align-items: start; margin-bottom: 38px; }
.preview-heading .eyebrow { grid-column: 1; grid-row: auto; align-self: start; }
.preview-heading h2 { margin: 0; max-width: 950px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.45rem, 3.7vw, 3.75rem); font-weight: 500; line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
.preview-heading p, .preview-heading .text-link { grid-column: 1; }
.preview-heading p { margin: 0; max-width: 650px; color: var(--ink-soft); }
.text-link { min-height: 44px; display: inline-flex; align-items: center; width: fit-content; font-weight: 900; }
.preview-workspace { display: grid; grid-template-columns: 210px minmax(420px, 1fr) 260px; box-shadow: 0 28px 70px rgba(25,41,36,.22); }
.preview-rail { margin: 0; padding: 20px 0; list-style: none; color: #fff; background: var(--felt-dark); }
.preview-rail li { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 10px; min-height: 77px; padding: 13px 18px; border-top: 1px solid rgba(255,255,255,.13); font-size: .78rem; }
.preview-rail li.active { color: var(--ink); background: var(--paper); }
.preview-rail b { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; font-size: .64rem; }
.preview-paper { position: relative; min-height: 500px; padding: 44px clamp(26px, 4vw, 58px); background: var(--paper-light); background-image: repeating-linear-gradient(0deg, transparent 0 35px, rgba(45,77,68,.09) 36px); }
.preview-paper::before { content: ""; position: absolute; top: -9px; left: 42%; width: 105px; height: 26px; background: rgba(223,199,133,.62); transform: rotate(-2deg); }
.preview-paper > small { color: var(--felt); font-weight: 900; letter-spacing: .14em; }
.preview-paper h3 { margin: 22px 0 11px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.4vw, 3.4rem); font-weight: 500; }
.preview-paper > p { max-width: 630px; color: var(--ink-soft); font-size: 1.02rem; }
.paper-rule { display: grid; grid-template-columns: 135px 1fr; gap: 18px; padding: 17px 0; border-top: 1px solid #9d927f; font-size: .78rem; }
.paper-rule span { font-size: .65rem; font-weight: 900; letter-spacing: .09em; }
.preview-paper .button { margin-top: 24px; }
.preview-summary { padding: 29px 24px; background: #ddd0b7; }
.preview-summary > small { color: var(--felt); font-weight: 900; letter-spacing: .12em; }
.summary-orbit, .agreement-orbit { position: relative; width: 150px; height: 150px; display: grid; place-items: center; margin: 27px auto; border: 1px dashed #73867e; border-radius: 50%; }
.summary-orbit span, .agreement-orbit span { position: relative; z-index: 2; width: 76px; height: 76px; display: grid; place-items: center; background: var(--paper-light); box-shadow: 0 6px 16px rgba(24,37,34,.15); color: var(--felt-dark); font-family: Georgia, "Times New Roman", serif; font-size: .7rem; line-height: 1.05; text-align: center; transform: rotate(-2deg); }
.summary-orbit i, .agreement-orbit i { position: absolute; width: 25px; height: 25px; border-radius: 50%; background: var(--coral); }
.summary-orbit i:nth-of-type(1), .agreement-orbit i:nth-of-type(1) { top: -5px; }
.summary-orbit i:nth-of-type(2), .agreement-orbit i:nth-of-type(2) { right: -4px; background: var(--amber); }
.summary-orbit i:nth-of-type(3), .agreement-orbit i:nth-of-type(3) { bottom: -5px; background: var(--plum); }
.summary-orbit i:nth-of-type(4), .agreement-orbit i:nth-of-type(4) { left: -4px; background: var(--sage); }
.preview-summary p { padding: 11px 0; border-top: 1px solid #a99c84; color: var(--ink-soft); font-size: .78rem; }
.product-stage { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 70px); padding: clamp(64px, 8vw, 110px) var(--surface-inset); color: #fff; background: var(--felt-dark); }
.product-stage h2 { margin: 10px 0 22px; max-width: 650px; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 3.2vw, 3.2rem); font-weight: 500; line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
.product-stage .eyebrow { color: #ffd07b; }
.product-stage .disclosure { color: #d4e2dc; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); }
.product-stage .disclosure p { color: #d4e2dc; }
.product-stage .button.secondary { color: var(--felt-dark); border-color: #b5c9c1; }

.workbench-page { max-width: none; padding: 0 0 70px; }
.workbench-intro { min-height: 340px; display: grid; grid-template-columns: minmax(0, 1fr) 280px; align-items: end; gap: 50px; padding: 58px var(--surface-inset) 46px; color: #fff; background: linear-gradient(90deg, rgba(7,24,20,.94), rgba(7,24,20,.58)), url("assets/table-workspace-v1.png") center 40% / cover no-repeat; }
.workbench-intro h1 { margin: 12px 0 15px; max-width: 850px; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 500; line-height: .95; letter-spacing: -.045em; }
.workbench-intro .lede { max-width: 800px; color: #e8dfd3; }
.workbench-intro .breadcrumbs, .workbench-intro .breadcrumbs a { color: #f8f0e4; }
.workbench-intro .eyebrow { color: #ffd07b; }
.intro-actions { padding: 19px 0 3px; border-top: 2px solid var(--amber); }
.intro-actions .button { width: 100%; color: #fff; border-color: #fff; text-align: center; }
.intro-actions .button.secondary { color: var(--felt-dark); }
.intro-actions p { margin: 7px 0 0; color: #d9cfc0; font-size: .75rem; }
.agreement-workbench { width: min(1260px, calc(100% - 32px)); display: grid; grid-template-columns: 220px minmax(470px, 1fr) 290px; margin: 44px auto 0; box-shadow: 0 32px 78px rgba(20,42,35,.23); }
.workbench-rail { color: #fff; background: var(--felt-dark); }
.rail-title { min-height: 94px; padding: 23px 21px 17px; border-bottom: 1px solid rgba(255,255,255,.18); }
.rail-title small { display: block; color: #aac6bc; font-weight: 900; letter-spacing: .13em; }
.rail-title strong { display: block; margin-top: 4px; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; }
.workbench-topic { width: 100%; min-height: 90px; display: grid; grid-template-columns: 34px 1fr; gap: 9px; align-items: center; padding: 13px 17px; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); color: #fff; background: transparent; text-align: left; cursor: pointer; }
.workbench-topic > span { grid-row: 1 / span 2; display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid currentColor; border-radius: 50%; font-size: .63rem; font-weight: 900; }
.workbench-topic b { align-self: end; font-size: .82rem; }
.workbench-topic small { align-self: start; color: inherit; opacity: .68; font-size: .67rem; }
.workbench-topic.active, .workbench-topic:hover { color: var(--ink); background: var(--paper); }
.workbench-sheet { position: relative; padding: 34px clamp(25px, 4vw, 54px) 42px; background: var(--paper-light); background-image: repeating-linear-gradient(0deg, transparent 0 35px, rgba(42,77,67,.09) 36px); }
.sheet-tape { position: absolute; top: -10px; left: 40%; width: 116px; height: 28px; background: rgba(222,196,124,.64); transform: rotate(-3deg); }
.workbench-mast { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 13px; border-bottom: 3px double var(--felt); color: var(--felt); font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.focus-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin: 27px 0 12px; }
.focus-heading small { color: var(--felt); font-weight: 900; letter-spacing: .1em; }
.focus-heading h2 { margin: 5px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3vw, 3.1rem); font-weight: 500; line-height: 1; }
.topic-stamp { padding: 6px 10px; border: 2px solid var(--coral); color: #a8482d; font-size: .72rem; letter-spacing: .08em; transform: rotate(-3deg); }
.focus-question { margin: 0 0 18px; color: var(--ink-soft); font-size: .96rem; }
.workbench-sheet .field { margin: 14px 0; }
.workbench-sheet .field label, .workbench-sheet legend { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.workbench-sheet input[type="text"], .workbench-sheet input[type="date"], .workbench-sheet textarea { background: rgba(255,255,255,.72); }
.workbench-sheet textarea { min-height: 80px; }
.workbench-sheet .choice { min-height: 56px; padding: 7px; }
.workbench-sheet .conditional:not([hidden]) { margin: 0; }
.review-field { border-top: 1px solid #9f9583; padding-top: 13px; }
.sheet-command { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; margin-top: 19px; }
.sheet-command .status-message { margin: 0; font-size: .76rem; }
.live-agreement { padding: 28px 23px; background: #ded2bb; border-left: 1px solid #aa9e87; }
.live-head { display: flex; justify-content: space-between; gap: 8px; color: var(--felt); font-size: .6rem; font-weight: 900; letter-spacing: .1em; }
.live-agreement .agreement-orbit { width: 135px; height: 135px; margin: 22px auto; }
.live-agreement h2 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; }
.live-campaign { display: grid; grid-template-columns: 65px 1fr; gap: 10px; margin: 0; padding: 12px 0; border-block: 3px double #8f846f; font-size: .75rem; }
.live-campaign span, .live-next span { color: var(--ink-soft); font-size: .62rem; font-weight: 900; letter-spacing: .08em; }
.live-topic-list { margin: 0; padding: 0; list-style: none; }
.live-topic-list li { display: grid; grid-template-columns: 10px 1fr; gap: 8px; padding: 11px 0; border-bottom: 1px solid #aaa08c; }
.live-topic-list li > i { width: 9px; height: 9px; margin-top: 5px; border-radius: 50%; background: #9b9a91; }
.live-topic-list li.agreed > i { background: var(--felt); }
.live-topic-list li.open > i { background: var(--coral); }
.live-topic-list li.not-relevant > i { background: var(--plum); }
.live-topic-list b { display: block; font-size: .72rem; }
.live-topic-list small { display: block; margin-top: 2px; color: var(--ink-soft); font-size: .65rem; }
.live-next { padding: 13px 0; border-bottom: 3px double #8f846f; }
.live-next strong { display: block; margin-top: 3px; font-size: .75rem; }
.privacy-note { margin: 17px 0 0; color: var(--ink-soft); font-size: .68rem; }
.review-path { width: min(1180px, calc(100% - 40px)); display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; margin: 76px auto; }
.review-path h2 { margin: 8px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 4.4vw, 4.4rem); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.review-path ol { margin: 0; padding: 0; list-style: none; border-block: 1px solid var(--felt); }
.review-path li { display: grid; grid-template-columns: 45px 1fr; gap: 16px; align-items: start; padding: 20px 0; border-top: 1px solid #a9aa9d; }
.review-path li:first-child { border-top: 0; }
.review-path li > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: #fff; background: var(--felt); font-weight: 900; }
.review-path p { margin: 0; color: var(--ink-soft); }
.workbench-page > .preview-boundary { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

@media (max-width: 980px) {
  .launch-hero { min-height: 0; grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 40px; background-position: 55% center; }
  .launch-shade { background: linear-gradient(rgba(6,20,17,.92), rgba(6,20,17,.7)); }
  .launch-copy h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .launch-sheet { width: min(100%, 550px); justify-self: center; transform: none; }
  .route-band { grid-template-columns: 1fr; padding: 0 20px; }
  .route-band article { min-height: auto; padding: 24px 0; border-top: 1px solid #aa9d87; }
  .route-band > i { margin: -8px auto; transform: rotate(90deg); }
  .preview-heading { grid-template-columns: 1fr; gap: 13px; }
  .preview-heading .eyebrow, .preview-heading p, .preview-heading .text-link { grid-column: 1; grid-row: auto; }
  .preview-workspace { grid-template-columns: 1fr; }
  .preview-rail { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; }
  .preview-rail li { display: block; min-height: 74px; padding: 10px 4px; text-align: center; }
  .preview-rail b { margin: 0 auto 5px; }
  .preview-rail span { display: none; }
  .preview-paper { min-height: 0; }
  .preview-summary .summary-orbit { display: none; }
  .preview-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .preview-summary > small { grid-column: 1 / -1; }
  .product-stage { grid-template-columns: 1fr; }
  .workbench-intro { grid-template-columns: 1fr; gap: 22px; padding: 42px 20px 32px; }
  .workbench-intro h1 { font-size: clamp(2.7rem, 11vw, 4.5rem); }
  .intro-actions { max-width: 360px; }
  .agreement-workbench { grid-template-columns: 1fr; width: calc(100% - 24px); margin-top: 24px; }
  .workbench-rail { display: grid; grid-template-columns: repeat(4, 1fr); }
  .rail-title { grid-column: 1 / -1; min-height: 70px; padding: 15px 17px 10px; }
  .workbench-topic { display: block; min-height: 74px; padding: 8px 4px; text-align: center; }
  .workbench-topic > span { margin: 0 auto; }
  .workbench-topic b, .workbench-topic small { display: none; }
  .workbench-sheet { padding: 28px 18px 32px; }
  .live-agreement { border-left: 0; border-top: 1px solid #aa9e87; }
  .live-agreement .agreement-orbit { display: none; }
  .review-path { grid-template-columns: 1fr; gap: 30px; margin-block: 58px; }
  .error-stage { min-height: 0; grid-template-columns: 1fr; gap: 38px; padding: 54px 20px 48px; }
  .error-code { width: min(100%,520px); }
  .error-copy { padding-left: 20px; }
}

@media (max-width: 520px) {
  .launch-hero { padding-top: 38px; }
  .launch-copy h1 { font-size: 2.66rem; max-width: 350px; }
  .launch-copy .headline-line { white-space: normal; }
  .launch-copy .actions { display: grid; grid-template-columns: 1fr; }
  .launch-sheet { padding: 28px 17px 20px; }
  .launch-topic { grid-template-columns: 29px 1fr auto; gap: 7px; }
  .launch-topic span { font-size: .7rem; }
  .launch-topic strong { max-width: 82px; text-align: right; }
  .table-preview-plane { padding-inline: 20px; }
  .preview-paper { padding-inline: 18px; }
  .paper-rule { grid-template-columns: 1fr; gap: 4px; }
  .preview-summary { grid-template-columns: 1fr; }
  .product-stage { padding-inline: 20px; }
  .workbench-intro h1 { font-size: 2.48rem; max-width: 350px; }
  .focus-heading { align-items: start; }
  .focus-heading h2 { font-size: 2.16rem; }
  .workbench-sheet .choice-row { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 5px; }
  .workbench-sheet .choice { min-height: 58px; padding: 6px 4px; }
  .workbench-sheet .choice small { display: none; }
  .sheet-command { grid-template-columns: 1fr; }
  .sheet-command .button { width: 100%; }
  .review-path { width: calc(100% - 32px); }
  .error-stage { gap: 30px; padding-top: 42px; }
  .error-code { grid-template-columns: 1fr 52px 1fr; font-size: 7.3rem; }
  .error-code i { font-size: 2.4rem; }
  .error-copy h1 { max-width: 340px; font-size: 2.62rem; }
  .error-copy .actions { display: grid; grid-template-columns: 1fr; }
}
