/* Account Maps — public research series (/research/account-maps/*)
   ----------------------------------------------------------------
   Responsive web edition of the account-map document design system
   (docs/design-account-map.html in the account-map-design worktree),
   converted from fixed 8.5×11 print pages to fluid long-form sections.
   Loaded per-page via {% block page_styles %} in _map_base.html, on top of
   landing-shared.css (nav, footer, .btn-*, .rp-lock-svg). Everything below
   is namespaced under .am-page / .am-doc so nothing leaks into other
   landing surfaces.

   Redaction language (mirrors the research-page contract): locked people
   render a NEUTRAL GRAY lock pill (.am-lock) — purple is reserved for the
   page's conversion CTA (.am-cta), so every locked row reads as "in the
   full map", not as page decoration. Locked data is ABSENT from the HTML,
   not blurred over. */

.am-page { max-width: 1100px; margin: 0 auto; padding: 7rem 1.25rem 4rem; }  /* top clears fixed body>nav (same as .rp-page) */

.am-page { --am-ink: #1A1814; --am-body: #374151; --am-mut: #6b7280; --am-line: #e5e7eb;
  --am-blue: #2563EB; --am-green: #10B981; --am-amber: #d97706; --am-wash: #f3f4f6;
  color: var(--am-body); font-size: 15px; line-height: 1.55; }

/* ── breadcrumb + hero ── */
.am-crumb { font-size: 0.8125rem; color: var(--am-mut); margin-bottom: 1.6rem; }
.am-crumb a { color: var(--am-mut); text-decoration: none; }
.am-crumb a:hover { color: var(--am-ink); }
.am-hero { margin-bottom: 2.2rem; }
.am-kicker { text-transform: uppercase; letter-spacing: 0.28em; color: var(--am-blue);
  font-weight: 700; font-size: 0.8125rem; margin-bottom: 0.6rem; }
.am-title { font-size: clamp(2rem, 5vw, 3.1rem); color: var(--am-ink); letter-spacing: -0.02em;
  font-weight: 800; line-height: 1.08; margin-bottom: 0.9rem; }
/* Keyword sub-line inside the H1 — visually a caption, semantically part of the heading. */
.am-title-sub { display: block; font-size: 0.42em; font-weight: 700; color: var(--am-mut);
  letter-spacing: -0.01em; margin-top: 6px; }
.am-tag { font-size: 1.0625rem; color: var(--am-body); max-width: 620px; line-height: 1.55;
  margin-bottom: 1.6rem; }
.am-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 1.4rem; }
.am-stat { border: 1px solid var(--am-line); border-left: 3px solid var(--am-blue); background: #fff;
  padding: 12px 14px; border-radius: 6px; }
.am-stat-n { font-size: 1.55rem; font-weight: 800; color: var(--am-ink); letter-spacing: -0.02em; }
.am-stat-l { color: var(--am-mut); font-size: 0.78rem; margin-top: 2px; line-height: 1.4; }
.am-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--am-mut); font-size: 0.8125rem;
  border-top: 1px solid var(--am-line); padding-top: 0.7rem; }

/* ── hero capture callout (high-contrast ink card beside the title) ── */
.am-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 16px 28px;
  align-items: start; }
.am-hero-wide { grid-column: 1 / -1; }
.am-hero-cta { background: var(--am-ink); color: #E8E6E1; border-radius: 14px;
  padding: 1.25rem 1.3rem 1.35rem; box-shadow: 0 10px 30px rgba(26,24,20,.22); }
.am-hero-cta-eyebrow { display: flex; align-items: center; gap: 6px; font-size: 0.71rem;
  font-weight: 700; color: #b7b2a8; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 8px; }
.am-hero-cta-eyebrow .rp-lock-svg { width: 12px; height: 12px; color: inherit; }
.am-hero-cta-title { font-size: 1.125rem; font-weight: 750; color: #fff; line-height: 1.3;
  letter-spacing: -0.01em; margin-bottom: 5px; }
.am-hero-cta-sub { font-size: 0.8125rem; color: #cfcac1; line-height: 1.5; margin-bottom: 0.9rem; }

/* ── email-capture form (shared by hero callout + CTA band) ── */
.am-capture { position: relative; }
.am-capture-row { display: flex; gap: 8px; flex-wrap: wrap; }
/* .am-capture-row sets display:flex, which OVERRIDES the UA [hidden] rule — restate it
   explicitly or the success swap leaves the input and a stuck "Sending…" button on
   screen (same footgun as .rp-signin-backdrop in landing-shared.css). */
.am-capture-row[hidden] { display: none; }
.am-capture-input { flex: 1 1 180px; min-width: 0; font-size: 0.875rem; color: var(--am-ink);
  background: #fff; border: 1px solid var(--am-line); border-radius: 100px;
  padding: 0.55rem 1rem; outline: none; }
.am-capture-input:focus { border-color: var(--am-blue); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
.am-capture-btn { flex: none; white-space: nowrap; }
/* Flat blue submit — overrides .btn-primary's watercolor-image fill (landing-shared.css).
   A form control next to an input reads better as a solid button than as a textured one;
   the blue is the page's own --am-blue accent. Shorthand drops the inherited image. */
.am-page .am-capture-btn { background: var(--am-blue); box-shadow: none; color: #fff; }
.am-page .am-capture-btn:hover { background: #1D4FD8; transform: none; filter: none; }
.am-capture-btn:disabled { opacity: .7; cursor: default; transform: none; }
.am-capture-note { font-size: 0.68rem; color: var(--am-mut); margin-top: 7px; line-height: 1.45; }
.am-capture-note a { color: inherit; text-decoration: underline; }
.am-capture-msg { font-size: 0.78rem; color: var(--am-amber); margin-top: 8px; }
.am-capture-msg.ok { color: #047857; font-size: 0.875rem; font-weight: 600; }
/* Dark (hero) variant: success/base text must stay readable on ink. */
.am-capture-dark .am-capture-input { border-color: transparent; }
.am-capture-dark .am-capture-note { color: #9b968c; }
.am-capture-dark .am-capture-msg { color: #fcd34d; }
.am-capture-dark .am-capture-msg.ok { color: #6ee7b7; }
/* Tailwind v2 base blocks all <svg>; a naked lock glyph in running text needs re-inlining
   (the .am-lock / .am-cta-eyebrow locks are flex items, so they're unaffected). */
.am-page .rp-lock-svg { display: inline-block; vertical-align: -2px; }

/* ── on-page TOC ── */
.am-toc { display: flex; flex-wrap: wrap; gap: 6px 8px; align-items: center;
  margin: 0 0 1.4rem; font-size: 0.78rem; }
.am-toc-label { color: var(--am-mut); font-weight: 600; margin-right: 2px; }
.am-toc a { background: #fff; border: 1px solid var(--am-line); border-radius: 9999px;
  padding: 3px 11px; color: var(--am-body); text-decoration: none; white-space: nowrap; }
.am-toc a:hover { border-color: #c7d2fe; color: var(--am-ink); }
/* Anchored sections land below the fixed body>nav. */
.am-page section[id] { scroll-margin-top: 92px; }

/* ── document sections ── */
.am-doc section.am-card { background: #fff; border: 1px solid var(--am-line); border-radius: 12px;
  padding: 1.6rem 1.75rem 1.75rem; margin-bottom: 1.5rem; box-shadow: 0 1px 6px rgba(17,24,39,.05); }
/* Section titles are real <h2>s (SEO outline); Tailwind preflight resets heading font/margins,
   this pins it explicitly so the styled spans stay the only visual voice. */
.am-card-head h2 { margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; }
/* Key-facts bullet list (Tailwind preflight strips list styling). */
.am-doc ul.am-facts { list-style: disc; padding-left: 1.25rem; margin: 6px 0 2px; }
.am-doc ul.am-facts li { margin-bottom: 7px; }
.am-doc ul.am-facts b { color: var(--am-ink); }
.am-card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  border-bottom: 2px solid var(--am-ink); padding-bottom: 9px; margin-bottom: 16px; }
.am-card-co { font-weight: 800; color: var(--am-ink); font-size: 1rem; white-space: nowrap; }
.am-card-sep { color: var(--am-mut); margin: 0 8px; }
.am-card-title { color: var(--am-body); font-size: 0.9375rem; }
.am-doc h3 { color: var(--am-ink); font-size: 0.9375rem; font-weight: 700; margin: 16px 0 7px; }
.am-doc h3:first-child { margin-top: 0; }
.am-doc p { margin-bottom: 9px; }
.am-doc .small { font-size: 0.8125rem; color: var(--am-mut); }
.am-doc .lede { color: var(--am-mut); font-size: 0.875rem; margin-bottom: 14px; max-width: 860px; }
.am-doc .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }

/* highlights + callouts */
.am-doc .hlt { border-left: 3px solid var(--am-green); padding: 7px 11px; margin-bottom: 10px;
  background: #f0fdf9; border-radius: 0 6px 6px 0; }
.am-doc .hlt-name { font-weight: 700; color: var(--am-ink); font-size: 0.875rem; }
.am-doc .hlt-note { font-size: 0.8125rem; color: var(--am-body); }
.am-doc .callout { background: var(--am-wash); border-radius: 8px; padding: 11px 13px;
  font-size: 0.8125rem; color: var(--am-body); }

/* horizontal-scroll shells for wide content (tables, org charts) */
.am-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.am-scroll > .main-table { min-width: 700px; }
.am-scroll > .oc { min-width: 860px; }

/* main ranked table */
.am-doc .main-table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
.am-doc .main-table th { text-align: left; color: var(--am-mut); font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: .06em; border-bottom: 1.5px solid var(--am-ink);
  padding: 5px 8px; }
.am-doc .main-table td { border-bottom: 1px solid var(--am-line); padding: 7px 8px; vertical-align: top; }
.am-doc .main-table th.num, .am-doc .main-table td.num { text-align: right; }
.am-doc .u-name { font-weight: 600; color: var(--am-ink); }
.am-doc .sen { color: var(--am-mut); font-size: 0.75rem; }
.am-doc .loc { color: var(--am-mut); font-size: 0.75rem; }
.am-doc .u-note { color: var(--am-mut); font-size: 0.71rem; font-weight: 400; margin-top: 2px;
  max-width: 300px; }
.am-doc .within-chip { font-size: 0.67rem; color: #9ca3af; font-weight: 400; font-style: italic;
  margin-left: 6px; white-space: nowrap; }
.am-doc .srcdot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; }
.am-doc .s2 { background: var(--am-blue); }
.am-doc .s1 { background: #c7d2fe; }

/* momentum */
.am-doc .mom { font-weight: 700; font-size: 0.78rem; white-space: nowrap; }
.am-doc .mom-up { color: #047857; }
.am-doc .mom-down { color: var(--am-amber); }
.am-doc .mom-flat { color: var(--am-mut); font-weight: 500; }
.am-doc .mom-none { color: #c4c9d1; }
.am-doc .grow-h { color: #047857; }
.am-doc .cool-h { color: var(--am-amber); }
.am-doc .mrow { margin-bottom: 11px; }
.am-doc .mrow-name { font-weight: 600; color: var(--am-ink); font-size: 0.84rem; }
.am-doc .bar { height: 8px; background: var(--am-wash); border-radius: 4px; margin: 4px 0 3px; }
.am-doc .bar-fill { height: 100%; border-radius: 4px; }
.am-doc .mrow-val { color: var(--am-mut); font-size: 0.75rem; }

/* geo chips */
.am-doc .chips { display: flex; flex-wrap: wrap; gap: 7px; }
.am-doc .chip { background: var(--am-wash); border-radius: 12px; padding: 4px 11px;
  font-size: 0.78rem; color: var(--am-body); }
.am-doc .chip b { color: var(--am-ink); }

/* who-to-call stakeholder cards */
.am-doc .stake-card { border: 1px solid var(--am-line); border-radius: 8px; margin-bottom: 16px;
  overflow: hidden; }
.am-doc .stake-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  background: var(--am-wash); padding: 8px 14px; border-bottom: 1px solid var(--am-line); }
.am-doc .stake-name { font-weight: 800; color: var(--am-ink); font-size: 0.9375rem; margin: 0; }
.am-doc .stake-meta { color: var(--am-mut); font-size: 0.75rem; white-space: nowrap; }
.am-doc .stake-note { color: var(--am-mut); font-size: 0.75rem; padding: 6px 14px;
  border-bottom: 1px solid var(--am-line); background: #FCFBF9; }
.am-doc .stake-table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
.am-doc .stake-table td { padding: 6px 14px; border-bottom: 1px solid #f3f4f6; vertical-align: top; }
.am-doc .stake-table tr:last-child td { border-bottom: none; }
.am-doc .sen-cell { white-space: nowrap; width: 92px; font-size: 0.75rem; }
.am-doc .side-row td { background: var(--am-wash); color: var(--am-mut); font-size: 0.6875rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 14px; }
.am-doc .p-name { font-weight: 600; color: var(--am-ink); }
.am-doc .p-title { color: var(--am-body); font-size: 0.75rem; }
.am-doc .more-note { color: var(--am-mut); font-size: 0.75rem; padding: 6px 14px; background: #fafafa; }
.am-doc .p-id { display: inline-flex; align-items: center; gap: 7px; }
.am-doc .avatar { width: 24px; height: 24px; border-radius: 50%; flex: none;
  border: 1px solid var(--am-line); display: inline-flex; align-items: center; justify-content: center;
  background: var(--am-wash); color: var(--am-mut); font-size: 0.6875rem; font-weight: 700; }

/* seniority pills — sequential cool→warm ramp (blue → gold); ordered color encodes rank */
.am-doc .sen-pill { display: inline-block; padding: 2px 8px; border-radius: 10px;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: .01em; }
.am-doc .sp-associate_director, .am-doc .sp-na { background: #F2F3F5; color: #74808D; }
.am-doc .sp-director { background: #EFF1F3; color: #64748B; }
.am-doc .sp-senior_director { background: #E4EBF4; color: #4A6B92; }
.am-doc .sp-executive_director { background: #E2E8F1; color: #45688F; }
.am-doc .sp-head { background: #E2E7EC; color: #4C6377; }
.am-doc .sp-vp { background: #E9E9E2; color: #5F6A4E; }
.am-doc .sp-svp { background: #F0EAD8; color: #7E6A2E; }
.am-doc .sp-evp, .am-doc .sp-president { background: #F4E8CC; color: #86601A; }
.am-doc .sp-c_suite { background: #F6E3B8; color: #7D5310; }

/* currency flags */
.am-doc .cur { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 2px 7px; border-radius: 8px; white-space: nowrap; }
.am-doc .cur.ok { background: #ecfdf5; color: #047857; }
.am-doc .cur.warn { background: #fffbeb; color: var(--am-amber); }

/* ── the lock (redacted person) — neutral gray, per the research-page language ── */
.am-lock { display: inline-flex; align-items: center; gap: 5px; background: var(--am-wash);
  border: 1px solid var(--am-line); color: var(--am-mut); border-radius: 9999px;
  font-size: 0.71rem; font-weight: 600; padding: 2px 10px 2px 7px; white-space: nowrap; }
.am-lock .rp-lock-svg { width: 11px; height: 11px; }
.am-lock-av { color: #9ca3af; }
.am-lock-av .rp-lock-svg { width: 11px; height: 11px; }

/* ── org charts (Workday-style boxes + right-angle connectors, from the doc) ── */
.am-doc .oc { margin-top: 12px; --oc-line: #c3c9d2; }
.am-doc .oc-root-row { display: flex; justify-content: center; }
.am-doc .oc-stem { width: 0; border-left: 1.5px solid var(--oc-line); height: 16px; margin: 0 auto; }
.am-doc .oc-children { position: relative; }
.am-doc .oc-children.two-rows::before { content: ''; position: absolute; left: calc(50% - 0.75px);
  top: 0; height: calc(var(--oc-r1-card) + 34px); border-left: 1.5px solid var(--oc-line); }
.am-doc .oc-row { display: flex; justify-content: center; align-items: stretch; }
.am-doc .oc-row.second { margin-top: 18px; }
.am-doc .oc-cell { position: relative; flex: 1 1 0; min-width: 0; max-width: var(--oc-cell-max, none);
  padding: 14px 5px 0; display: flex; flex-direction: column; align-items: center; }
.am-doc .oc-cell::before, .am-doc .oc-cell::after { content: ''; position: absolute; top: 0; height: 0; width: 50%; }
.am-doc .oc-cell::before { right: 50%; border-top: 1.5px solid var(--oc-line); }
.am-doc .oc-cell::after { left: 50%; border-top: 1.5px solid var(--oc-line); }
.am-doc .oc-cell:first-child::before, .am-doc .oc-cell:last-child::after,
.am-doc .oc-cell:only-child::before, .am-doc .oc-cell:only-child::after { border-top: none; }
.am-doc .oc-drop { position: absolute; top: 0; left: calc(50% - 0.75px); width: 0; height: 14px;
  border-left: 1.5px solid var(--oc-line); }
.am-doc .oc-card { background: #fff; border: 1px solid var(--am-line); border-top: 3px solid var(--am-blue);
  border-radius: 8px; box-shadow: 0 1px 4px rgba(17,24,39,.08); padding: 12px 9px 10px;
  text-align: center; width: 100%; display: flex; flex-direction: column; align-items: center; }
.am-doc .oc-row.first .oc-card, .am-doc .oc-row.first .oc-unit { height: var(--oc-r1-card); }
.am-doc .oc-cell > .oc-card, .am-doc .oc-cell > .oc-unit { flex: 1 1 auto; }
.am-doc .oc-row.first .oc-card, .am-doc .oc-row.first .oc-unit { flex: none; }
.am-doc .oc-avatar-wrap { position: relative; width: 44px; height: 44px; margin: 0 auto 7px; flex: none; }
.am-doc .oc-avatar { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--am-line);
  display: flex; align-items: center; justify-content: center; background: var(--am-wash);
  color: var(--am-mut); font-size: 0.9375rem; font-weight: 700; }
.am-doc .oc-count { position: absolute; right: -7px; bottom: -2px; background: var(--am-blue); color: #fff;
  font-size: 0.625rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px; border: 1.5px solid #fff; }
.am-doc .oc-name { font-weight: 700; font-size: 0.8125rem; color: var(--am-ink); line-height: 1.25; }
.am-doc .oc-title { font-size: 0.6875rem; color: var(--am-body); line-height: 1.35; margin-top: 3px; }
.am-doc .oc-org { font-size: 0.6875rem; color: var(--am-body); font-weight: 700; margin-top: auto;
  padding-top: 4px; line-height: 1.35; }
.am-doc .oc-org sup.src, .am-doc .oc-org sup.src a { font-weight: 400; }
.am-doc .oc-desc { font-size: 0.65rem; color: var(--am-mut); line-height: 1.4; margin-top: 5px;
  text-align: left; }
.am-doc .oc-ceo { width: 250px; flex: none; }
.am-doc .oc-ceo .oc-org { margin-top: 3px; padding-top: 0; }
.am-doc .oc-root { width: 340px; flex: none; flex-direction: row; gap: 10px; align-items: center;
  text-align: left; padding: 10px 12px; }
.am-doc .oc-root .oc-avatar-wrap { margin: 0; width: 36px; height: 36px; }
.am-doc .oc-root .oc-avatar { width: 36px; height: 36px; }
.am-doc .oc-root .oc-org { margin-top: 3px; padding-top: 0; font-size: 0.71rem; color: var(--am-ink); }
.am-doc .oc-root-desc { font-size: 0.65rem; color: var(--am-mut); line-height: 1.4; margin-top: 3px; }
.am-doc .oc-unit { background: #fff; border: 1px solid var(--am-line); border-top: 2.5px solid #9DB3DE;
  border-radius: 6px; padding: 7px 9px 6px; width: 100%; font-size: 0.71rem; text-align: left;
  display: flex; flex-direction: column; }
.am-doc .oc-unit.slim { padding: 6px 8px 5px; }
.am-doc .oc-unit.slim .ocu-name { font-size: 0.69rem; font-weight: 600; }
.am-doc .ocu-name { font-weight: 700; color: var(--am-ink); font-size: 0.73rem; line-height: 1.35; }
.am-doc .ocu-lead { font-size: 0.67rem; color: var(--am-body); margin-top: 3px; display: flex;
  align-items: center; gap: 5px; }
.am-doc .ocu-lead > span { min-width: 0; }
.am-doc .ocu-av { width: 15px; height: 15px; flex: none; font-size: 0.53rem; }
.am-doc .ocu-desc { font-size: 0.64rem; color: var(--am-mut); line-height: 1.35; margin-top: 3px; }
.am-doc .seg-badge { display: inline-block; font-size: 0.6rem; font-weight: 700; color: #4C5FA8;
  background: #EEF2FF; border-radius: 8px; padding: 0 6px; margin-left: 5px; vertical-align: 1px;
  white-space: nowrap; }
.am-doc .hire-chip { font-size: 0.64rem; color: #9ca3af; margin-left: 5px; white-space: nowrap; font-weight: 400; }
.am-doc sup.src { font-size: 0.55rem; color: var(--am-mut); margin-left: 1px; }
.am-doc sup.src a { color: var(--am-mut); text-decoration: none; border-bottom: 1px dotted #c4c9d1; }
.am-doc sup.src a:hover { color: var(--am-blue); }
.am-doc .sup-sep { font-size: 0.55rem; color: var(--am-mut); vertical-align: super; margin: 0 1px; }
.am-doc .oc-note { font-size: 0.67rem; color: var(--am-mut); margin-top: 12px; }
.am-doc .oc-block { margin-bottom: 16px; }

/* observed-team chips (mined provenance: wash chip, ◦ glyph, never a source sup) */
.am-doc .obs-chips { display: block; line-height: 1.9; padding-top: 4px; margin-top: auto;
  border-top: 1px dashed var(--am-line); }
.am-doc .oc-unit .ocu-name ~ .obs-chips { margin-top: 4px; }
.am-doc .obs-chip { display: inline-block; margin-right: 3px; line-height: 1.5; background: var(--am-wash);
  border-radius: 8px; padding: 1px 7px; font-size: 0.71rem; color: var(--am-body); white-space: nowrap; }
.am-doc .obs-chip .oc-roles, .am-doc .obs-group .oc-roles { color: #9ca3af; margin-left: 3px; }
.am-doc .obs-chip.obs-more { background: none; color: #9ca3af; font-style: italic; }
.am-doc .obs-group { display: inline; background: var(--am-wash); border-radius: 8px; padding: 1px 7px;
  font-size: 0.71rem; color: var(--am-body); margin-right: 3px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.am-doc .obs-group .og-parent { font-weight: 600; white-space: nowrap; }
.am-doc .obs-group .og-kids { color: var(--am-mut); }
.am-doc .og-sep { color: #9ca3af; margin: 0 3px; }
.am-doc .obs-panel { background: #FCFBF9; border: 1px dashed var(--am-line); border-radius: 8px;
  padding: 8px 12px 9px; margin-top: 16px; }
.am-doc .obs-panel-h { font-size: 0.73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--am-ink); margin-bottom: 2px; }
.am-doc .obs-panel-sub { font-size: 0.71rem; color: var(--am-mut); margin: 1px 0 5px; }
.am-doc .obs-panel .obs-chips { border-top: none; margin-top: 0; padding-top: 3px; }
.am-doc .oc-row.obsrow { position: relative; margin-top: 16px; }
.am-doc .oc-row.obsrow::before { content: ''; position: absolute; left: calc(50% - 0.75px);
  bottom: 100%; height: var(--obs-spine, 200px); border-left: 1.5px solid var(--oc-line); }
.am-doc .oc-row.obsrow .oc-cell { max-width: none; }
.am-doc .oc-row.obsrow .obs-panel { margin-top: 0; width: 100%; }

/* segment cards (operating segments) */
.am-doc .ex-h { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--am-mut); margin: 14px 0 7px; font-weight: 600; }
.am-doc .ex-explain { font-size: 0.71rem; color: var(--am-mut); margin: -2px 0 7px; }
.am-doc .ex-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.am-doc .ex-card { border: 1px solid var(--am-line); border-radius: 8px; padding: 9px 12px;
  background: #FDFCFA; }
.am-doc .ex-unit { font-weight: 800; font-size: 0.8125rem; color: var(--am-ink); margin: 1px 0 4px; }
.am-doc .ex-desc { font-size: 0.6875rem; font-weight: 400; color: var(--am-mut); margin-top: 1px; }
.am-doc .tn { font-size: 0.71rem; color: var(--am-body); padding: 2px 0 2px 8px;
  border-left: 2px solid var(--am-line); margin-top: 5px; }
.am-doc .tn .tn-name { font-weight: 600; color: var(--am-ink); }

/* ── conversion CTA band (purple = the ONE prominent conversion accent) ── */
.am-cta { background: #faf5ff; border: 1px solid #e9d5ff; border-radius: 14px;
  padding: 1.5rem 1.6rem; margin: 2rem 0; }
.am-cta-eyebrow { display: flex; align-items: center; gap: 6px; font-size: 0.71rem; font-weight: 700;
  color: #6d28d9; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 7px; }
.am-cta-eyebrow .rp-lock-svg { width: 13px; height: 13px; color: inherit; }
.am-cta-title { font-size: 1.25rem; font-weight: 750; color: var(--am-ink); line-height: 1.3;
  margin-bottom: 5px; letter-spacing: -0.01em; }
.am-cta-sub { font-size: 0.875rem; color: var(--am-body); line-height: 1.5; max-width: 560px;
  margin-bottom: 1rem; }
.am-cta .am-capture { max-width: 560px; margin-bottom: 0.8rem; }
.am-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
/* Secondary CTA is a text link, not a button — one button per band keeps the
   email submit the single obvious action. */
.am-cta-link { font-size: 0.875rem; color: #6d28d9; text-decoration: underline; }
.am-cta-link:hover { color: #5b21b6; }

/* method / corrections note */
.am-foot-note { font-size: 0.78rem; color: var(--am-mut); line-height: 1.6;
  border-top: 1px solid var(--am-line); padding-top: 1rem; margin-top: 2rem; }
.am-foot-note a { color: var(--am-mut); }

/* ── hub (index) ── */
.am-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px; margin-top: 1.8rem; }
.am-hub-card { display: block; padding: 1.25rem 1.35rem; background: #fff; border: 1px solid var(--am-line);
  border-radius: 0.9rem; text-decoration: none; color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s; }
.am-hub-card:hover { border-color: #c7d2fe; box-shadow: 0 4px 14px rgba(37,99,235,.08); }
.am-hub-kicker { text-transform: uppercase; letter-spacing: .18em; color: var(--am-blue);
  font-weight: 700; font-size: 0.6875rem; margin-bottom: 4px; }
.am-hub-title { font-weight: 800; color: var(--am-ink); font-size: 1.25rem; margin-bottom: 6px; }
.am-hub-desc { font-size: 0.84rem; color: var(--am-body); line-height: 1.5; margin-bottom: 8px; }
.am-hub-meta { font-size: 0.75rem; color: var(--am-mut); }

/* ── responsive ── */
@media (max-width: 860px) {
  .am-stat-grid { grid-template-columns: 1fr 1fr; }
  .am-doc .two-col { grid-template-columns: 1fr; gap: 18px; }
  .am-doc .ex-grid { grid-template-columns: 1fr; }
  .am-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .am-page { padding: 6rem 0.9rem 3rem; }
  .am-doc section.am-card { padding: 1.1rem 1rem 1.2rem; border-radius: 10px; }
  .am-card-head { flex-direction: column; align-items: flex-start; gap: 2px; }
  .am-card-sep { display: none; }
  .am-doc .stake-head { flex-direction: column; gap: 2px; }
}
