/* ============================================================================
   wa-rc-hub.css -- Washington Business Legal Resource Center (flagship hub)
   Fully scoped under body.warc; never leaks to other pages. Fonts (Spectral +
   Libre Franklin) load from Google Fonts via <link> in the page head.
   Sergei Tokmakov, Esq. -- CA Bar #279869 -- Terms.Law
   ----------------------------------------------------------------------------
   TOKENS
   ========================================================================= */
body.warc {
  /* fog / cool light surfaces (the move off beige) */
  --fog-0:        #f4f7f5;   /* page base, cool mist */
  --fog-1:        #eaf0ed;   /* alt band */
  --surface:      #ffffff;
  --surface-2:    #f9fbfa;
  --line:         #dde5e1;
  --line-2:       #cbd6d0;

  /* evergreen — Douglas fir */
  --ever-950:     #0a201a;
  --ever-900:     #0d2b22;
  --ever-800:     #103a2d;
  --ever-700:     #15513d;   /* brand */
  --ever-600:     #1d6149;
  --ever-500:     #2f7458;

  /* Puget Sound slate-blue */
  --sound-900:    #122e39;
  --sound-800:    #183a48;
  --sound-600:    #2c5a6c;
  --sound-400:    #6f9aaa;
  --sound-200:    #aecbd4;

  /* ink + text on light */
  --ink:          #122019;
  --ink-2:        #38463f;
  --muted:        #61706a;
  --muted-2:      #80908a;

  /* warm cedar accent — used sparingly */
  --cedar:        #b06a22;
  --cedar-600:    #99591a;
  --cedar-soft:   #d49a55;
  --cedar-tint:   rgba(176,106,34,0.10);
  --cedar-line:   rgba(176,106,34,0.34);

  /* text on dark */
  --on-dark:      #eef3ef;
  --on-dark-mut:  rgba(238,243,239,0.66);
  --on-dark-line: rgba(238,243,239,0.14);

  /* risk gauge hues */
  --risk-low:     #4f8a63;
  --risk-med:     #b8862f;
  --risk-high:    #b1542b;
  --risk-urgent:  #a13526;

  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --maxw: 1240px;
  --radius: 8px;
  --radius-sm: 5px;
  --shadow-sm: 0 1px 2px rgba(12,36,28,0.05), 0 2px 8px -4px rgba(12,36,28,0.10);
  --shadow-md: 0 2px 6px rgba(12,36,28,0.06), 0 18px 40px -24px rgba(12,36,28,0.30);
  --shadow-dark: 0 30px 70px -34px rgba(0,0,0,0.55);
}

/* -------------------------------------------------------------------------- *
   BASE
 * -------------------------------------------------------------------------- */
body.warc {
  margin: 0;
  background: var(--fog-0);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.warc *, body.warc *::before, body.warc *::after { box-sizing: border-box; }
body.warc img, body.warc svg { max-width: 100%; display: block; }
body.warc a { color: inherit; text-decoration: none; }

body.warc ::selection { background: var(--ever-700); color: var(--fog-0); }

body.warc :focus-visible {
  outline: 2px solid var(--cedar);
  outline-offset: 3px;
  border-radius: 3px;
}

.warc h1, .warc h2, .warc h3, .warc h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ever-800);
  margin: 0;
  letter-spacing: -0.012em;
  line-height: 1.1;
  text-wrap: balance;
}

.warc .wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 3rem);
}

.warc .eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cedar-600);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}
.warc .eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--cedar);
}

/* section meta tag (small uppercase label) */
.warc .tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* -------------------------------------------------------------------------- *
   TOP BAR
 * -------------------------------------------------------------------------- */
.warc .topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244,247,245,0.86);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.warc .topbar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 60px;
}
.warc .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ever-800);
  letter-spacing: -0.01em;
}
.warc .brand .brand-dot { color: var(--cedar); }
.warc .brand small {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
  padding-left: 0.55rem;
  margin-left: 0.2rem;
  border-left: 1px solid var(--line-2);
}
.warc .topnav {
  display: flex;
  gap: 0.2rem;
  margin-left: auto;
}
.warc .topnav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.4rem 0.62rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.warc .topnav a:hover { background: var(--fog-1); color: var(--ever-700); }
.warc .topnav a.active { background: var(--ever-700); color: #fff; }
.warc .topnav a.active:hover { background: var(--ever-800); color: #fff; }
.warc .topbar .btn-mini {
  margin-left: 0.6rem;
}
.warc .lang {
  display: inline-flex;
  gap: 0.15rem;
  align-items: center;
  margin-left: 0.4rem;
}
.warc .lang a {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted-2);
  padding: 0.2rem 0.3rem;
  border-radius: 5px;
  letter-spacing: 0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.warc .lang a .flag { font-size: 1.2rem; line-height: 1; filter: saturate(0.7) opacity(0.6); transition: filter 0.16s; }
.warc .lang a.on { background: var(--fog-1); }
.warc .lang a.on .flag, .warc .lang a:hover .flag { filter: none; }

@media (max-width: 1080px) {
  .warc .topnav { display: none; }
}

/* -------------------------------------------------------------------------- *
   BUTTONS
 * -------------------------------------------------------------------------- */
.warc .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.12s ease, background 0.18s, box-shadow 0.18s, border-color 0.18s, color 0.18s;
  text-align: left;
}
.warc .btn .arw { transition: transform 0.18s ease; }
.warc .btn:hover .arw { transform: translateX(3px); }
.warc .btn:active { transform: translateY(1px); }

.warc .btn-primary {
  background: var(--cedar);
  color: #fff;
  border-color: var(--cedar);
  box-shadow: 0 10px 24px -14px rgba(176,106,34,0.7);
}
.warc .btn-primary:hover { background: var(--cedar-600); border-color: var(--cedar-600); }

.warc .btn-ever {
  background: var(--ever-700);
  color: var(--on-dark);
  border-color: var(--ever-700);
}
.warc .btn-ever:hover { background: var(--ever-800); }

.warc .btn-ghost {
  background: transparent;
  color: var(--ever-700);
  border-color: var(--line-2);
}
.warc .btn-ghost:hover { border-color: var(--ever-700); background: var(--surface); }

.warc .btn-on-dark {
  background: var(--on-dark);
  color: var(--ever-900);
  border-color: var(--on-dark);
}
.warc .btn-on-dark:hover { background: #fff; }

.warc .btn-mini {
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  border-radius: 999px;
}

/* -------------------------------------------------------------------------- *
   HERO
 * -------------------------------------------------------------------------- */
.warc .hero {
  position: relative;
  background:
    linear-gradient(106deg, rgba(9,28,21,0.54) 0%, rgba(10,32,24,0.58) 38%, rgba(11,36,28,0.78) 72%, rgba(12,38,30,0.88) 100%),
    linear-gradient(180deg, rgba(8,24,18,0.42) 0%, rgba(8,24,18,0.30) 46%, rgba(8,22,17,0.72) 100%),
    url("/assets/hero-bi-forest.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, 60% 80%;
  background-repeat: no-repeat;
  color: var(--on-dark);
  isolation: isolate;
  overflow: hidden;
}
.warc .hero .ridge { display: none; }
.warc .hero .grain { display: none; }
.warc .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-block: clamp(3rem, 6vw, 5.2rem) clamp(3.5rem, 7vw, 6rem);
}
.warc .hero .eyebrow { color: var(--cedar-soft); }
.warc .hero .eyebrow::before { background: var(--cedar-soft); }

.warc .hero h1 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 0;
  max-width: 17ch;
}
.warc .hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cedar-soft);
}
.warc .hero-lede {
  font-size: 1.12rem;
  line-height: 1.62;
  color: var(--on-dark-mut);
  max-width: 54ch;
  margin: 1.6rem 0 0;
}
.warc .hero-lede strong { color: var(--on-dark); font-weight: 600; }
.warc .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}
.warc .hero-credit {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--on-dark-line);
  max-width: 54ch;
}
.warc .hero-credit .seal {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--cedar-soft);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cedar-soft);
}
.warc .hero-credit p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--on-dark-mut);
}
.warc .hero-credit p strong { color: var(--on-dark); font-weight: 600; }

/* hero side: status card */
.warc .status-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.warc .status-card .sc-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.warc .status-pill {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ever-950);
  background: var(--cedar-soft);
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
}
.warc .status-card h2 {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 500;
}
.warc .status-card p {
  font-size: 0.86rem;
  line-height: 1.58;
  color: var(--on-dark-mut);
  margin: 0.7rem 0 0;
}
.warc .status-card .sc-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 1.05rem 0 0;
  border-top: 1px solid var(--on-dark-line);
  display: grid;
  gap: 0.55rem;
}
.warc .status-card .sc-list li {
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--on-dark);
  padding-left: 1.4rem;
  position: relative;
}
.warc .status-card .sc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ever-500);
}
.warc .status-card .sc-foot {
  margin-top: 1.05rem;
  font-size: 0.74rem;
  color: var(--on-dark-mut);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .warc .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* -------------------------------------------------------------------------- *
   PATH CHOOSER
 * -------------------------------------------------------------------------- */
.warc .paths {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.warc .paths-inner { padding-block: clamp(2.4rem, 4vw, 3.4rem); }
.warc .paths-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.warc .paths-head h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 500;
}
.warc .paths-head p { margin: 0; font-size: 0.92rem; color: var(--muted); max-width: 42ch; }
.warc .path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.warc .path-card {
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.3rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.warc .path-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent, var(--ever-600));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.24s ease;
}
.warc .path-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.warc .path-card:hover::before { transform: scaleY(1); }
.warc .path-card .pc-ico {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--accent-tint, rgba(29,97,73,0.1));
  color: var(--accent, var(--ever-600));
  margin-bottom: 0.95rem;
}
.warc .path-card .pc-ico svg { width: 20px; height: 20px; }
.warc .path-card h3 {
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--ever-800);
  margin-bottom: 0.4rem;
}
.warc .path-card p { margin: 0; font-size: 0.88rem; line-height: 1.5; color: var(--muted); }
.warc .path-card .pc-go {
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent, var(--ever-600));
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 820px) {
  .warc .path-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------- *
   LIFECYCLE SECTION
 * -------------------------------------------------------------------------- */
.warc .life {
  background: var(--fog-0);
  position: relative;
}
.warc .life-intro { padding-block: clamp(2.8rem, 5vw, 4rem) 0; }
.warc .life-intro .tag { color: var(--cedar-600); }
.warc .life-intro h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 400;
  margin: 0.7rem 0 0;
  max-width: 20ch;
}
.warc .life-intro h2 em { font-style: italic; color: var(--ever-600); }
.warc .life-intro p {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
}

/* founder intro (integrated WA-roots story atop the lifecycle) */
.warc .founder-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.warc .founder-aside { display: grid; gap: 1rem; position: sticky; top: 84px; }
.warc .founder-aside .portrait { aspect-ratio: 4 / 5; margin: 0; }
.warc .founder-aside .cred-creds { grid-template-columns: 1fr; gap: 0.6rem; margin-top: 0; }
.warc .founder-aside .cred-card { padding: 0.8rem 0.9rem; }
.warc .founder-aside .cred-card .cc-top { font-size: 1.25rem; }
.warc .founder-aside .cred-card .cc-top.sm { font-size: 0.98rem; }
.warc .founder-main .tag { color: var(--cedar-600); }
.warc .founder-main h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 400;
  margin: 0.6rem 0 0;
  max-width: 20ch;
}
.warc .founder-main h2 em { font-style: italic; color: var(--ever-600); }
.warc .founder-story p {
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ink-2);
  margin: 1rem 0 0;
  max-width: 64ch;
}
.warc .founder-story p a { color: var(--cedar-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.warc .founder-story p a:hover { color: var(--ever-700); }

/* vertical story timeline */
.warc .story-tl { margin-top: 1.5rem; display: grid; gap: 0; max-width: 60ch; }
.warc .stl-item {
  position: relative;
  padding: 0 0 1.05rem 1.6rem;
  border-left: 1.5px solid var(--line-2);
}
.warc .stl-item:last-child { padding-bottom: 0; }
.warc .stl-item::before {
  content: "";
  position: absolute;
  left: -5.5px; top: 3px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cedar);
  box-shadow: 0 0 0 3px var(--fog-0);
}
.warc .stl-year {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cedar-600);
}
.warc .stl-h { font-size: 0.92rem; font-weight: 700; color: var(--ever-800); margin: 0.1rem 0 0.15rem; }
.warc .stl-p { font-size: 0.86rem; line-height: 1.5; color: var(--ink-2); margin: 0; }

/* lifecycle lead-in + at-a-glance stage jump */
.warc .leadin {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.warc .leadin-p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 60ch;
}
.warc .stage-jump { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.warc .stage-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ever-700);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  transition: border-color 0.16s, color 0.16s, background 0.16s;
}
.warc .stage-jump a .sj-n { font-family: var(--mono); font-size: 0.7rem; color: var(--cedar-600); }
.warc .stage-jump a:hover { border-color: var(--cedar); background: #fff; }

@media (max-width: 820px) {
  .warc .founder-grid { grid-template-columns: 1fr; }
  .warc .founder-aside { position: static; max-width: 320px; }
}

/* stacked resource groups within one stage column */
.warc .res-group + .res-group { margin-top: 1.3rem; }

/* sticky scrollspy nav (legacy block, no longer rendered) */
.warc .spine-nav {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: rgba(244,247,245,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.warc .spine-nav-inner {
  display: flex;
  gap: 0.2rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 0.55rem;
}
.warc .spine-nav-inner::-webkit-scrollbar { display: none; }
.warc .spine-nav a {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.16s, color 0.16s;
}
.warc .spine-nav a .num {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted-2);
}
.warc .spine-nav a:hover { color: var(--ever-700); background: var(--fog-1); }
.warc .spine-nav a.active {
  color: #fff;
  background: var(--ever-700);
}
.warc .spine-nav a.active .num { color: var(--cedar-soft); }

/* stages */
.warc .stages { padding-bottom: clamp(3rem, 5vw, 4.5rem); }
.warc .stage {
  scroll-margin-top: 130px;
  padding-block: clamp(2.4rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--line);
}
.warc .stage:last-child { border-bottom: none; }
.warc .stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

/* stage left rail */
.warc .stage-rail { position: relative; }
.warc .stage-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cedar);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.warc .stage-num::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--cedar-line);
}
.warc .stage-rail h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 400;
  margin: 0.7rem 0 0;
}
.warc .stage-situation {
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--ink-2);
  margin: 0.85rem 0 0;
}

/* involves chips */
.warc .involves {
  margin: 1.3rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.warc .involves .il-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}
.warc .chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.warc .chip {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
}
.warc .chip.rcw {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--cedar-600);
  background: var(--cedar-tint);
  border-color: var(--cedar-line);
}

/* risk gauge */
.warc .risk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.2rem 0 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.warc .risk .dots { display: inline-flex; gap: 3px; }
.warc .risk .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-2);
}
.warc .risk[data-level] .lvl { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; }
.warc .risk[data-level="low"]   { color: var(--risk-low); }
.warc .risk[data-level="med"]   { color: var(--risk-med); }
.warc .risk[data-level="high"]  { color: var(--risk-high); }
.warc .risk[data-level="urgent"]{ color: var(--risk-urgent); }
.warc .risk[data-level="low"]    .dot:nth-child(-n+1),
.warc .risk[data-level="med"]    .dot:nth-child(-n+2),
.warc .risk[data-level="high"]   .dot:nth-child(-n+3),
.warc .risk[data-level="urgent"] .dot:nth-child(-n+4) { background: currentColor; }

/* primary CTA box on stage */
.warc .stage-cta {
  margin: 1.5rem 0 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cedar);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.warc .stage-cta .sct-label {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}
.warc .stage-cta .sct-price {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ever-800);
  margin: 0.3rem 0 0;
}
.warc .stage-cta .sct-price span {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}
.warc .stage-cta p {
  margin: 0.45rem 0 0.9rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-2);
}

/* stage resources (right) */
.warc .res-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.warc .res-head .il-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}
.warc .res-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.warc .res-item {
  background: var(--surface);
  padding: 0.95rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.16s;
}
.warc .res-item:hover { background: var(--surface-2); }
.warc .res-item .ri-body { min-width: 0; }
.warc .res-item .ri-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ever-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.warc .res-item:hover .ri-title { color: var(--cedar-600); }
.warc .res-item .ri-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0.2rem 0 0;
}
.warc .res-item .ri-arw {
  flex: none;
  color: var(--line-2);
  transition: color 0.16s, transform 0.16s;
}
.warc .res-item:hover .ri-arw { color: var(--cedar); transform: translateX(2px); }

.warc .res-flag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.warc .res-flag.new { color: var(--ever-600); background: rgba(29,97,73,0.1); }
.warc .res-flag.soon { color: var(--muted); background: var(--fog-1); border: 1px dashed var(--line-2); }
.warc .res-flag.tool { color: var(--sound-600); background: rgba(44,90,108,0.1); }

/* sub-cluster groups (demand letters) */
.warc .clusters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.warc .cluster {
  background: var(--surface);
  padding: 1.1rem 1.2rem 1.2rem;
}
.warc .cluster h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--sound-600);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.warc .cluster ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.warc .cluster li a {
  font-size: 0.86rem;
  color: var(--ink-2);
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1.35;
  transition: color 0.14s;
}
.warc .cluster li a:hover { color: var(--cedar-600); }
.warc .cluster li a::before {
  content: "›";
  color: var(--line-2);
  font-weight: 700;
}
.warc .cluster .more {
  margin-top: 0.7rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ever-600);
}

@media (max-width: 920px) {
  .warc .stage-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .warc .clusters { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------- *
   PRICING LADDER
 * -------------------------------------------------------------------------- */
.warc .pricing {
  background: linear-gradient(180deg, var(--ever-900), var(--sound-900));
  color: var(--on-dark);
  padding-block: clamp(3rem, 5.5vw, 4.8rem);
  position: relative;
}
.warc .pricing .ph {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 1.5rem 3rem;
  align-items: end;
  margin-bottom: 2.2rem;
}
.warc .pricing .eyebrow { color: var(--cedar-soft); }
.warc .pricing .eyebrow::before { background: var(--cedar-soft); }
.warc .pricing h2 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  margin: 0.8rem 0 0;
  max-width: 16ch;
}
.warc .pricing .ph-note {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--on-dark-mut);
  margin: 0;
}
.warc .ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--on-dark-line);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.warc .rung {
  background: rgba(255,255,255,0.03);
  padding: 1.3rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: background 0.18s;
}
.warc .rung:hover { background: rgba(255,255,255,0.06); }
.warc .rung.feat { background: rgba(176,106,34,0.13); }
.warc .rung .r-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.warc .rung .r-price {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
}
.warc .rung .r-kind {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--cedar-soft);
}
.warc .rung h3 {
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0.7rem 0 0;
}
.warc .rung p {
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--on-dark-mut);
  margin: 0.4rem 0 0;
}
.warc .rung .r-cta {
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cedar-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.warc .rung .r-cta:hover { color: #fff; }
.warc .pricing .ladder-foot {
  margin-top: 1.3rem;
  font-size: 0.82rem;
  color: var(--on-dark-mut);
  line-height: 1.6;
}
.warc .pricing .ladder-foot strong { color: var(--on-dark); font-weight: 600; }

@media (max-width: 900px) {
  .warc .pricing .ph { grid-template-columns: 1fr; gap: 0.8rem; }
  .warc .ladder { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------- *
   THREE-ZONE TRUST BLOCK
 * -------------------------------------------------------------------------- */
.warc .zones { background: var(--surface); border-top: 1px solid var(--line); }
.warc .zones-inner { padding-block: clamp(3rem, 5vw, 4.4rem); }
.warc .zones-head { max-width: 60ch; margin-bottom: 2rem; }
.warc .zones-head .tag { color: var(--cedar-600); }
.warc .zones-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 400;
  margin: 0.7rem 0 0;
}
.warc .zones-head p { margin: 0.9rem 0 0; color: var(--ink-2); font-size: 0.98rem; line-height: 1.6; }
.warc .zone-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.warc .zone {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.5rem;
  background: var(--surface-2);
}
.warc .zone .z-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}
.warc .zone .z-status .led { width: 9px; height: 9px; border-radius: 50%; }
.warc .zone.now .z-status { color: var(--ever-600); }
.warc .zone.now .z-status .led { background: var(--ever-600); }
.warc .zone.scope .z-status { color: var(--cedar-600); }
.warc .zone.scope .z-status .led { background: var(--cedar); }
.warc .zone.not .z-status { color: var(--muted); }
.warc .zone.not .z-status .led { background: var(--muted-2); }
.warc .zone ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.warc .zone li {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--ink-2);
  padding-left: 1.3rem;
  position: relative;
}
.warc .zone li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--line-2);
}
.warc .zone.now li::before { background: var(--ever-500); }
.warc .zone.scope li::before { background: var(--cedar-soft); }

@media (max-width: 860px) { .warc .zone-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------- *
   CREDIBILITY (compressed)
 * -------------------------------------------------------------------------- */
.warc .cred { background: var(--fog-1); border-top: 1px solid var(--line); }
.warc .cred-inner {
  padding-block: clamp(3rem, 5vw, 4.4rem);
  display: grid;
  grid-template-columns: 200px minmax(0,1fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}
.warc .portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    repeating-linear-gradient(135deg, var(--fog-0) 0 11px, var(--surface-2) 11px 22px);
  display: grid;
  place-items: center;
}
.warc .portrait span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5rem;
}
.warc .cred-body .tag { color: var(--cedar-600); }
.warc .cred-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  margin: 0.6rem 0 0;
}
.warc .cred-body p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 1rem 0 0;
  max-width: 64ch;
}
.warc .timeline {
  display: flex;
  gap: 0;
  margin: 1.6rem 0 0;
  flex-wrap: wrap;
}
.warc .tl-item {
  flex: 1 1 0;
  min-width: 150px;
  padding: 0 1.2rem;
  border-left: 1px solid var(--line-2);
  position: relative;
}
.warc .tl-item:first-child { padding-left: 0; border-left: none; }
.warc .tl-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cedar);
}
.warc .tl-place {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ever-800);
  margin: 0.25rem 0 0.2rem;
}
.warc .tl-note { font-size: 0.8rem; line-height: 1.45; color: var(--muted); margin: 0; }

@media (max-width: 720px) {
  .warc .cred-inner { grid-template-columns: 1fr; }
  .warc .portrait { max-width: 200px; }
  .warc .tl-item { flex-basis: 100%; padding: 0.7rem 0; border-left: none; border-top: 1px solid var(--line-2); }
  .warc .tl-item:first-child { border-top: none; padding-top: 0; }
}

/* -------------------------------------------------------------------------- *
   FINAL CTA + FOOTER
 * -------------------------------------------------------------------------- */
.warc .closer {
  background: linear-gradient(168deg, var(--sound-900), var(--ever-900));
  color: var(--on-dark);
  padding-block: clamp(3rem, 5vw, 4.6rem);
}
.warc .closer-inner {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}
.warc .closer h2 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 18ch;
}
.warc .closer h2 em { font-style: italic; color: var(--cedar-soft); }
.warc .closer p { font-size: 0.95rem; line-height: 1.6; color: var(--on-dark-mut); margin: 1rem 0 0; max-width: 50ch; }
.warc .closer-actions { display: flex; flex-direction: column; gap: 0.8rem; }
.warc .closer-actions .btn { justify-content: space-between; }
.warc .closer-actions .micro { font-size: 0.76rem; color: var(--on-dark-mut); line-height: 1.5; margin: 0.3rem 0 0; }

@media (max-width: 820px) { .warc .closer-inner { grid-template-columns: 1fr; } }

.warc footer.foot {
  background: var(--ever-950);
  color: var(--on-dark-mut);
  padding-block: 2.4rem 2.8rem;
}
.warc .foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.warc .foot .brand { color: var(--on-dark); }
.warc .foot .brand small { color: var(--on-dark-mut); border-color: var(--on-dark-line); }
.warc .foot-disc { max-width: 64ch; font-size: 0.78rem; line-height: 1.6; }
.warc .foot-disc strong { color: var(--on-dark); font-weight: 600; }
.warc .foot-links { display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: 0.8rem; }
.warc .foot-links a:hover { color: var(--on-dark); }
.warc .foot-right { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.warc .foot-share { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--on-dark-mut); }
.warc .foot-share > span { letter-spacing: 0.04em; }
.warc .foot-share .fshare { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--on-dark-line); color: var(--on-dark-mut); transition: color 0.15s, background 0.15s, transform 0.15s; }
.warc .foot-share .fshare:hover { color: var(--on-dark); background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.warc .foot-share .fshare svg { width: 16px; height: 16px; fill: currentColor; display: block; }

/* -------------------------------------------------------------------------- *
   INTAKE MODAL
 * -------------------------------------------------------------------------- */
.warc .modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10,32,26,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 5vh, 4rem) 1rem;
  overflow-y: auto;
}
.warc .modal-scrim.open { display: flex; }
.warc .modal {
  width: 100%;
  max-width: 560px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  border-top: 4px solid var(--cedar);
  overflow: hidden;
  opacity: 1;
  animation: modal-in 0.22s ease both;
}
@keyframes modal-in { from { transform: translateY(14px); } to { transform: none; } }
.warc .modal-head {
  padding: 1.4rem 1.5rem 1.1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.warc .modal-head .tag { color: var(--cedar-600); }
.warc .modal-head h3 { font-size: 1.3rem; font-weight: 500; margin: 0.3rem 0 0; }
.warc .modal-head p { font-size: 0.85rem; color: var(--muted); margin: 0.35rem 0 0; line-height: 1.5; }
.warc .modal-close {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.warc .modal-close:hover { color: var(--ever-700); border-color: var(--line-2); }
.warc .modal-body { padding: 1.3rem 1.5rem 1.5rem; }
.warc .field { margin-bottom: 1rem; }
.warc .field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  margin-bottom: 0.4rem;
}
.warc .field input,
.warc .field select,
.warc .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  min-height: 46px;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
  -webkit-appearance: none;
  appearance: none;
}
.warc .field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.warc .field input:focus,
.warc .field select:focus,
.warc .field textarea:focus {
  outline: none;
  border-color: var(--ever-600);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29,97,73,0.12);
}
.warc .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.warc .modal-foot {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.4rem;
}
.warc .modal-foot .btn { justify-content: center; }
.warc .modal-note { font-size: 0.76rem; color: var(--muted); line-height: 1.5; text-align: center; }

@media (max-width: 520px) { .warc .field-row { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------- *
   TRUST STRIP (under hero)
 * -------------------------------------------------------------------------- */
.warc .trust {
  background: var(--ever-950);
  color: var(--on-dark);
  border-top: 1px solid var(--on-dark-line);
}
.warc .trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0;
  padding-block: 0.9rem;
}
.warc .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-inline: clamp(0.9rem, 2vw, 1.5rem);
  font-size: 0.82rem;
  color: var(--on-dark);
  white-space: nowrap;
}
.warc .trust-item + .trust-item { border-left: 1px solid var(--on-dark-line); }
.warc .trust-item .ti-strong { font-weight: 700; color: #fff; }
.warc .trust-item .ti-ico { color: var(--cedar-soft); display: inline-flex; }
.warc .trust-item .ti-ico svg { width: 15px; height: 15px; }
.warc a.trust-item:hover .ti-strong { color: var(--cedar-soft); }
@media (max-width: 760px) {
  .warc .trust-item { font-size: 0.76rem; padding-inline: 0.8rem; }
  .warc .trust-item:nth-child(n+4) { border-left: none; }
}

/* -------------------------------------------------------------------------- *
   PRESS STRIP (high trust signal, near top)
 * -------------------------------------------------------------------------- */
.warc .presstop { background: var(--fog-1); border-bottom: 1px solid var(--line); }
.warc .presstop-inner {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.4rem);
  padding-block: 0.95rem;
}
.warc .presstop-photo {
  flex: none;
  width: 58px; height: 58px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 16%;
  border: 1px solid var(--line-2);
  background: var(--sound-900);
}
.warc .presstop-main { min-width: 0; flex: 1; }
.warc .presstop-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cedar-600);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.warc .presstop-eyebrow::before { content: ""; width: 14px; height: 1.5px; background: var(--cedar); }
.warc .presstop-head {
  display: block;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ever-800);
  line-height: 1.22;
  margin-top: 0.18rem;
}
.warc a.presstop-head:hover { color: var(--cedar-600); }
.warc .presstop-meta { font-size: 0.8rem; color: var(--muted); margin: 0.15rem 0 0; }
.warc .presstop-meta em { font-style: italic; color: var(--ink-2); }
.warc .presstop-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ever-700);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  min-height: 40px;
  background: var(--surface);
  transition: border-color 0.16s, color 0.16s;
}
.warc .presstop-btn .arw { transition: transform 0.18s; }
.warc .presstop-btn:hover { border-color: var(--ever-700); color: var(--ever-800); }
.warc .presstop-btn:hover .arw { transform: translateX(3px); }
@media (max-width: 720px) {
  .warc .presstop-inner { flex-wrap: wrap; }
  .warc .presstop-btn { width: 100%; justify-content: center; }
}

/* -------------------------------------------------------------------------- *
   LEGAL SYSTEMS LAB (Analyst cockpit + product layer)
 * -------------------------------------------------------------------------- */
.warc .lab {
  background: linear-gradient(180deg, var(--surface) 0%, var(--fog-1) 100%);
  border-bottom: 1px solid var(--line);
}
.warc .lab-inner { padding-block: clamp(2.8rem, 5vw, 4.4rem); }
.warc .lab-head { max-width: 72ch; margin-bottom: 1.5rem; }
.warc .lab-head .tag { color: var(--cedar-600); }
.warc .lab-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 400;
  margin: 0.6rem 0 0;
}
.warc .lab-head h2 em { font-style: italic; color: var(--ever-600); }
.warc .lab-lede {
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--ink-2);
  margin: 0.9rem 0 0;
  max-width: 66ch;
}
.warc .lab-lede strong { color: var(--ever-800); font-weight: 600; }

/* architecture pipeline */
.warc .lab-arch { margin-top: 1.6rem; }
.warc .il-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.warc .lab-arch > .il-label { margin-bottom: 0.7rem; }
.warc .pipe {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.3rem;
}
.warc .pipe::-webkit-scrollbar { display: none; }
.warc .pipe-step {
  flex: 1 0 auto;
  min-width: 116px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.warc .pipe-step .ps-n { font-family: var(--mono); font-size: 0.6rem; color: var(--muted-2); }
.warc .pipe-step .ps-t { font-size: 0.8rem; font-weight: 600; color: var(--ever-800); line-height: 1.2; }
.warc .pipe-step.final { border-color: var(--cedar); background: var(--cedar-tint); }
.warc .pipe-step.final .ps-t { color: var(--cedar-600); }
.warc .pipe-arrow { align-self: center; color: var(--line-2); flex: none; font-weight: 700; font-size: 0.9rem; }

/* maintained-by + methodology row */
.warc .lab-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  margin-top: 1.2rem;
}
@media (max-width: 820px) { .warc .lab-cols { grid-template-columns: 1fr; } }
.warc .maint {
  background: linear-gradient(160deg, var(--ever-900), var(--sound-900));
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.warc .maint img {
  flex: none;
  width: 60px; height: 60px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 16%;
  border: 1px solid var(--on-dark-line);
  background: var(--sound-900);
}
.warc .maint .m-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: #fff; }
.warc .maint .m-role { font-size: 0.76rem; color: var(--cedar-soft); margin-top: 0.15rem; font-weight: 600; }
.warc .maint p { font-size: 0.83rem; line-height: 1.55; color: var(--on-dark-mut); margin: 0.65rem 0 0; }
.warc .lab-acc { display: grid; gap: 0.5rem; align-content: start; }
.warc .acc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.warc .acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ever-800);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.warc .acc > summary::-webkit-details-marker { display: none; }
.warc .acc > summary::before {
  content: "+";
  width: 1.2rem; height: 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--cedar);
  font-size: 0.85rem;
}
.warc .acc[open] > summary::before { content: "\2212"; }
.warc .acc .acc-body { padding: 0 1rem 1rem; font-size: 0.84rem; line-height: 1.55; color: var(--ink-2); }
.warc .acc .acc-body ul { margin: 0; padding-left: 1.1rem; }
.warc .acc .acc-body li { margin-bottom: 0.3rem; }

/* workflow library */
.warc .wlib-head { margin-top: 1.9rem; margin-bottom: 0.9rem; }
.warc .wlib-head .tag { color: var(--cedar-600); }
.warc .wlib-head h3 { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 500; margin: 0.4rem 0 0; }
.warc .wlib {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 820px) { .warc .wlib { grid-template-columns: 1fr; } }
.warc .wcard { background: var(--surface); padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.warc .wcard-top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.warc .wstatus { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 999px; }
.warc .wstatus.live { color: var(--ever-600); background: rgba(29,97,73,0.1); }
.warc .wstatus.beta { color: var(--cedar-600); background: var(--cedar-tint); }
.warc .wstatus.soon { color: var(--muted); background: var(--fog-1); border: 1px dashed var(--line-2); }
.warc .wcard .wver { font-family: var(--mono); font-size: 0.64rem; color: var(--muted-2); }
.warc .wcard h4 { font-family: var(--sans); font-size: 0.96rem; font-weight: 700; color: var(--ever-800); margin: 0.2rem 0 0; }
.warc .wcard .wdesc { font-size: 0.81rem; line-height: 1.45; color: var(--muted); margin: 0; }
.warc .wcard .wout { font-size: 0.76rem; color: var(--ink-2); margin-top: 0.2rem; }
.warc .wcard .wout strong { color: var(--ever-700); font-weight: 600; }
.warc .wcard .wcta {
  margin-top: auto;
  padding-top: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cedar-600);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sans);
}
.warc .wcard .wcta:hover { color: var(--ever-700); }
.warc .wcard.is-soon { opacity: 0.82; }

/* changelog */
.warc .changelog {
  margin-top: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.warc .changelog .cl-head { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.85rem; }
.warc .changelog .cl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ever-500); }
.warc .clog { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.warc .clog li { display: flex; gap: 0.85rem; font-size: 0.85rem; color: var(--ink-2); align-items: baseline; flex-wrap: wrap; }
.warc .clog li .cl-date { font-family: var(--mono); font-size: 0.72rem; color: var(--muted-2); flex: none; width: 4.8rem; }
.warc .clog li .cl-tag { font-size: 0.56rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ever-600); background: rgba(29,97,73,0.1); border-radius: 4px; padding: 0.12rem 0.4rem; flex: none; }

/* -------------------------------------------------------------------------- *
   AI LEGAL ANALYST (Diagnose stage centerpiece)
 * -------------------------------------------------------------------------- */
.warc .analyst {
  background:
    radial-gradient(900px 360px at 90% -20%, rgba(47,116,88,0.26), transparent 58%),
    linear-gradient(165deg, var(--ever-900), var(--sound-900));
  color: var(--on-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.warc .analyst-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--on-dark-line);
  background: rgba(0,0,0,0.14);
}
.warc .analyst-id { display: flex; align-items: center; gap: 0.85rem; }
.warc .analyst-glyph {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--ever-600), var(--sound-600));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.warc .analyst-glyph svg { width: 22px; height: 22px; color: #fff; }
.warc .analyst-name {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.warc .analyst-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ever-950);
  background: var(--cedar-soft);
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
}
.warc .analyst-sub {
  font-size: 0.78rem;
  color: var(--on-dark-mut);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.warc .analyst-sub .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--sound-400); }
.warc .analyst-speed {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  color: var(--on-dark);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--on-dark-line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
}
.warc .analyst-speed .live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5fd39a;
  box-shadow: 0 0 0 0 rgba(95,211,154,0.6);
  animation: warc-pulse 2.2s infinite;
}
@keyframes warc-pulse {
  0% { box-shadow: 0 0 0 0 rgba(95,211,154,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(95,211,154,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,211,154,0); }
}
.warc .analyst-body { padding: 1.3rem 1.4rem 1.4rem; }
.warc .analyst-lede {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--on-dark);
  margin: 0 0 1rem;
  max-width: 70ch;
}
.warc .analyst-lede strong { color: #fff; }

/* curated chips */
.warc .analyst-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.warc .a-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--on-dark);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--on-dark-line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s, transform 0.1s;
  text-align: left;
}
.warc .a-chip .a-chip-ico { color: var(--cedar-soft); display: inline-flex; }
.warc .a-chip .a-chip-ico svg { width: 15px; height: 15px; }
.warc .a-chip:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.28); }
.warc .a-chip:active { transform: translateY(1px); }
.warc .a-chip.active {
  background: var(--cedar);
  border-color: var(--cedar);
  color: #fff;
}
.warc .a-chip.active .a-chip-ico { color: #fff; }

/* answer panel */
.warc .analyst-answer {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}
.warc .aa-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.warc .aa-bar .dots { display: inline-flex; gap: 4px; }
.warc .aa-bar .dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.warc .aa-bar .dots i:nth-child(1) { background: #e0796b; }
.warc .aa-bar .dots i:nth-child(2) { background: #e8c267; }
.warc .aa-bar .dots i:nth-child(3) { background: #6fc28d; }
.warc .aa-bar .aa-route { margin-left: auto; color: var(--ever-600); font-weight: 600; }
.warc .aa-body { padding: 1.15rem 1.25rem 1.25rem; }
.warc .aa-q {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ever-800);
  margin: 0 0 0.85rem;
  padding-left: 1.6rem;
  position: relative;
}
.warc .aa-q::before {
  content: "?";
  position: absolute;
  left: 0; top: -0.05em;
  width: 1.2rem; height: 1.2rem;
  border-radius: 50%;
  background: var(--ever-700);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.warc .aa-read {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 1rem;
}
.warc .aa-read .aa-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cedar-600);
  display: block;
  margin-bottom: 0.25rem;
}
.warc .aa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.warc .aa-cell .aa-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: block;
  margin-bottom: 0.45rem;
}
.warc .aa-cell .chips { gap: 0.35rem; }
.warc .aa-cell ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.3rem; }
.warc .aa-cell li {
  font-size: 0.84rem;
  color: var(--ink-2);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.warc .aa-cell li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--ever-500);
}
.warc .aa-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.warc .aa-next {
  font-size: 0.84rem;
  color: var(--ink-2);
}
.warc .aa-next strong { color: var(--ever-800); font-weight: 700; }
.warc .aa-disclaim {
  flex-basis: 100%;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
  font-style: italic;
}

/* mock input */
.warc .analyst-input {
  margin-top: 1.1rem;
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.7rem 0.7rem 1rem;
}
.warc .analyst-input textarea {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.5;
  resize: none;
  min-height: 24px;
  max-height: 120px;
  padding: 0.3rem 0;
}
.warc .analyst-input textarea::placeholder { color: var(--on-dark-mut); }
.warc .analyst-input textarea:focus { outline: none; }
.warc .analyst-upload {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--on-dark-line);
  background: rgba(255,255,255,0.04);
  color: var(--on-dark-mut);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.warc .analyst-upload:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.warc .analyst-upload svg { width: 18px; height: 18px; }
.warc .analyst-send {
  flex: none;
  min-height: 40px;
}
.warc .analyst-foot {
  padding: 0.95rem 1.4rem;
  border-top: 1px solid var(--on-dark-line);
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--on-dark-mut);
  background: rgba(0,0,0,0.14);
}
.warc .analyst-foot strong { color: var(--on-dark); font-weight: 600; }

@media (max-width: 720px) {
  .warc .aa-grid { grid-template-columns: 1fr; }
  .warc .analyst-head { padding: 1rem; }
}

/* Diagnose stage becomes single-column to host the analyst full width */
.warc #diagnose .stage-grid { grid-template-columns: 1fr; gap: 1.6rem; }
.warc #diagnose .diag-top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 920px) { .warc #diagnose .diag-top { grid-template-columns: 1fr; gap: 1.6rem; } }

/* -------------------------------------------------------------------------- *
   CREDIBILITY: real photo + credential cards
 * -------------------------------------------------------------------------- */
.warc .portrait.has-photo {
  background: var(--sound-900);
}
.warc .portrait.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.warc .cred-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.warc .cred-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  display: block;
  transition: border-color 0.16s, transform 0.16s, box-shadow 0.16s;
}
.warc a.cred-card:hover { border-color: var(--line-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.warc .cred-card .cc-top {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ever-700);
  line-height: 1;
}
.warc .cred-card .cc-top.sm { font-size: 1.05rem; }
.warc .cred-card .cc-label {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}
.warc a.cred-card .cc-label .cc-link { color: var(--cedar-600); font-weight: 600; }
@media (max-width: 720px) {
  .warc .cred-creds { grid-template-columns: 1fr; }
}

/* progressive-disclosure story */
.warc .cred-more { margin-top: 1.4rem; }
.warc .cred-more > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cedar-600);
  padding: 0.5rem 0;
}
.warc .cred-more > summary::-webkit-details-marker { display: none; }
.warc .cred-more > summary::before {
  content: "+";
  width: 1.3rem; height: 1.3rem;
  border-radius: 50%;
  border: 1px solid var(--cedar-line);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--cedar);
}
.warc .cred-more[open] > summary::before { content: "\2212"; }
.warc .cred-more > summary:hover { color: var(--ever-700); }
.warc .cred-more-body { padding-top: 0.6rem; }
.warc .cred-more-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 0.85rem;
  max-width: 64ch;
}

/* -------------------------------------------------------------------------- *
   CLICKABLE CHIPS (reveal attorney-written explanations inline)
 * -------------------------------------------------------------------------- */
.warc .chip.is-clickable {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--sans);
  position: relative;
  padding-right: 1.5rem;
  transition: border-color 0.16s, color 0.16s, background 0.16s;
}
.warc .chip.is-clickable::after {
  content: "+";
  position: absolute;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  line-height: 1;
  color: var(--muted-2);
  transition: transform 0.18s, color 0.16s;
}
.warc .chip.is-clickable:hover { border-color: var(--cedar); color: var(--cedar-600); }
.warc .chip.is-clickable:hover::after { color: var(--cedar); }
.warc .chip.rcw.is-clickable:hover { color: var(--cedar-600); }
.warc .chip.is-clickable.active {
  background: var(--cedar);
  border-color: var(--cedar);
  color: #fff;
}
.warc .chip.is-clickable.active::after { content: "\2212"; color: #fff; }

.warc .chip-pop {
  margin-top: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cedar);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem 0.9rem;
  box-shadow: var(--shadow-sm);
}
.warc .chip-pop[hidden] { display: none; }
.warc .chip-pop .cp-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}
.warc .chip-pop .cp-kind {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cedar-600);
  background: var(--cedar-tint);
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
}
.warc .chip-pop .cp-term {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ever-800);
}
.warc .chip-pop .cp-body {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.warc .chip-pop .cp-body a { color: var(--cedar-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* analyst answer cells sit on white; keep pop readable there too */
.warc .aa-cell .chip-pop { border-left-color: var(--sound-600); }
.warc .aa-cell .chip-pop .cp-kind { color: var(--sound-600); background: rgba(44,90,108,0.1); }

/* follow-up chips (in analyst answers + chip pops) */
.warc .aa-followups { flex-basis: 100%; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.2rem; }
.warc .followup {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ever-700);
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-align: left;
  transition: border-color 0.16s, color 0.16s, background 0.16s;
}
.warc .followup::before { content: "\2192"; color: var(--cedar); font-weight: 700; }
.warc .followup:hover { border-color: var(--cedar); color: var(--cedar-600); background: #fff; }

/* chip-pop as a mini AI exchange */
.warc .chip-pop .cp-followups { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.warc .chip-pop .cp-asklabel {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0.85rem 0 0.4rem;
}
.warc .chip-pop .cp-ask { display: flex; gap: 0.5rem; align-items: center; }
.warc .chip-pop .cp-ask input {
  flex: 1;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  min-height: 40px;
}
.warc .chip-pop .cp-ask input:focus { outline: none; border-color: var(--ever-600); box-shadow: 0 0 0 3px rgba(29,97,73,0.12); }
.warc .chip-pop .cp-ask .btn { flex: none; min-height: 40px; padding: 0.5rem 0.95rem; }
.warc .chip-pop .cp-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--muted);
}
.warc .chip-pop .cp-ai .live { width: 7px; height: 7px; border-radius: 50%; background: #5fb98a; }

/* -------------------------------------------------------------------------- *
   PRESS CLIPPING CARD
 * -------------------------------------------------------------------------- */
.warc .press {
  margin-top: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.3rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.warc .press::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--cedar);
  border-radius: var(--radius) 0 0 var(--radius);
}
.warc .press-eyebrow {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cedar-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.warc .press-masthead {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ever-800);
  letter-spacing: 0.01em;
  margin: 0.7rem 0 0;
  padding-bottom: 0.55rem;
  border-bottom: 1.5px solid var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}
.warc .press-masthead .pm-est { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.warc .press-head {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
  margin: 0.7rem 0 0;
  display: inline-block;
}
.warc a.press-head:hover { color: var(--cedar-600); }
.warc .press-meta {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
  letter-spacing: 0.02em;
}
.warc .press-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ever-700);
  margin: 0.85rem 0 0;
  padding-left: 0.9rem;
  border-left: 2px solid var(--cedar-soft);
}
.warc .press-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cedar-600);
}
.warc .press-link:hover { color: var(--ever-700); }
.warc .press-link .arw { transition: transform 0.18s; }
.warc .press-link:hover .arw { transform: translateX(3px); }

/* -------------------------------------------------------------------------- *
   MOTION
   Content is ALWAYS visible. No opacity:0 / transition / frame-driven entrance
   is used, because content visibility must never depend on a transition or
   animation advancing. [data-reveal] is kept only as a styling hook.
 * -------------------------------------------------------------------------- */
.warc [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .warc * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
html { scroll-behavior: smooth; }

/* ============================================================================
   HUB ADDITIONS -- real-photo founder hero, text language toggle.
   Appended on top of the ported standalone design. Still fully .warc-scoped.
   ========================================================================= */

/* HERO: founder card (photo + "who is behind this" story) replaces status-card.
   Does double duty: the left column pitches the full lifecycle, this card
   answers who will actually handle it. No oversized CA-bar card. */
.warc .hero-founder {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem 1.2rem;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; gap: 0.85rem;
}
.warc .hero-founder__photo {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 22%;
  border-radius: 10px; border: 1px solid var(--on-dark-line);
}
.warc .hero-founder__pill {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ever-950); background: var(--cedar-soft);
  padding: 0.3rem 0.58rem; border-radius: 999px;
}
.warc .hero-founder__name { color: #fff; font-family: var(--serif); font-size: 1.08rem; font-weight: 500; margin-top: 0.55rem; }
.warc .hero-founder p { font-size: 0.85rem; line-height: 1.56; color: var(--on-dark-mut); margin: 0.55rem 0 0; }
.warc .hero-founder p strong { color: var(--on-dark); font-weight: 600; }
.warc .hero-founder__creds {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.7rem; align-items: center;
  margin-top: 1rem; padding-top: 0.85rem; border-top: 1px solid var(--on-dark-line);
  font-size: 0.72rem; color: var(--on-dark-mut); line-height: 1.4;
}
.warc .hero-founder__creds a { color: var(--cedar-soft); text-decoration: none; }
.warc .hero-founder__creds a:hover { text-decoration: underline; }
.warc .hero-founder__creds b { color: var(--on-dark); font-weight: 600; }

/* presstop photo + maint photo: use the real PNW portrait crop nicely */
.warc .presstop-photo { object-position: center 20%; }
.warc .maint img { object-position: center 18%; }

/* ============================================================================
   V7 ADDITIONS -- two-row sticky header, Dispute Fast Track rail, credibility.
   ========================================================================= */

/* two-row sticky header: brand bar + pathway nav */
.warc .hub-header { position: sticky; top: 0; z-index: 60; }
.warc .hub-bar1 { background: var(--ever-900); border-bottom: 1px solid rgba(255,255,255,0.08); }
.warc .hub-bar1-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 54px; padding-block: 0.45rem; }
.warc .hub-bar1 .brand { color: #fff; }
.warc .hub-bar1 .brand small { color: var(--cedar-soft); border-left-color: rgba(255,255,255,0.2); }
.warc .hub-bar1-right { display: flex; align-items: center; gap: 0.9rem; }
.warc .hub-status { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.74rem; font-weight: 600; color: var(--on-dark-mut); }
.warc .hub-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cedar-soft); box-shadow: 0 0 0 3px rgba(212,154,85,0.18); }
.warc .hub-bar1 .lang a { color: var(--on-dark-mut); }
.warc .hub-bar1 .lang a.on { background: rgba(255,255,255,0.12); }
.warc .hub-bar2 { background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.warc .hub-bar2-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 50px; }
.warc .hub-bar2 .topnav { display: flex; gap: 0.2rem; flex-wrap: wrap; }
.warc .hub-fasttrack-pill { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: #fff; background: var(--cedar); border: 1px solid var(--cedar); border-radius: 999px; padding: 0.46rem 0.9rem; text-decoration: none; white-space: nowrap; box-shadow: 0 8px 20px -12px rgba(176,106,34,0.7); transition: background 0.16s, transform 0.12s; }
.warc .hub-fasttrack-pill:hover { background: var(--cedar-600); transform: translateY(-1px); }
.warc .hub-fasttrack-pill.active { background: var(--cedar-600); }
.warc .hub-fasttrack-pill .bolt { font-size: 0.9rem; line-height: 1; }
@media (max-width: 1080px) { .warc .hub-bar2 .topnav { display: none; } }
@media (max-width: 600px) { .warc .hub-status { display: none; } }

/* offset anchors for the two-row sticky header */
.warc [id] { scroll-margin-top: 122px; }

/* Dispute Fast Track rail */
.warc .dft { background: linear-gradient(178deg, var(--ever-950) 0%, var(--sound-900) 100%); color: var(--on-dark); }
.warc .dft-head { max-width: 780px; }
.warc .dft-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 3.6vw, 2.55rem); color: #fff; margin-top: 0.5rem; line-height: 1.06; }
.warc .dft-head h2 em { font-style: italic; color: var(--cedar-soft); }
.warc .dft-head p { color: var(--on-dark-mut); font-size: 1rem; line-height: 1.62; margin-top: 0.85rem; }
.warc .dft-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(282px, 1fr)); gap: 1rem; margin-top: 1.8rem; }
.warc .dft-card { background: rgba(255,255,255,0.05); border: 1px solid var(--on-dark-line); border-radius: var(--radius); padding: 1.15rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: 0.55rem; text-align: left; cursor: pointer; -webkit-appearance: none; appearance: none; font: inherit; transition: border-color 0.16s, background 0.16s, transform 0.12s; }
.warc .dft-card:hover { border-color: var(--cedar-soft); background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.warc .dft-card__ico { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: var(--cedar-tint); color: var(--cedar-soft); border: 1px solid var(--cedar-line); }
.warc .dft-card__ico svg { width: 19px; height: 19px; }
.warc .dft-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.06rem; color: #fff; }
.warc .dft-card p { font-size: 0.85rem; line-height: 1.5; color: var(--on-dark-mut); margin: 0; flex: 1 1 auto; }
.warc .dft-card__route { font-size: 0.72rem; color: var(--cedar-soft); font-weight: 600; letter-spacing: 0.01em; }
.warc .dft-card__go { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; font-weight: 700; color: #fff; margin-top: 0.2rem; }
.warc .dft-card__go .arw { transition: transform 0.18s; }
.warc .dft-card:hover .dft-card__go .arw { transform: translateX(3px); }
.warc .dft-foot { margin-top: 1.5rem; font-size: 0.82rem; color: var(--on-dark-mut); line-height: 1.55; }

/* Credibility (Bainbridge / Washington) */
.warc .cred2 { background: var(--ever-900); color: var(--on-dark); }
.warc .cred2-grid { display: grid; grid-template-columns: clamp(220px, 30%, 340px) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 880px) { .warc .cred2-grid { grid-template-columns: 1fr; } }
.warc .cred2-photo { width: 100%; border-radius: var(--radius); border: 1px solid var(--on-dark-line); object-fit: cover; object-position: center 18%; aspect-ratio: 4 / 5; }
.warc .cred2 h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3.2vw, 2.3rem); color: #fff; margin-top: 0.5rem; line-height: 1.08; }
.warc .cred2 h2 em { font-style: italic; color: var(--cedar-soft); }
.warc .cred2 > .wrap > .cred2-grid p.cred2-lede { color: var(--on-dark-mut); font-size: 0.96rem; line-height: 1.65; margin-top: 0.85rem; }
.warc .cred2-timeline { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.warc .cred2-timeline li { display: grid; grid-template-columns: 92px 1fr; gap: 0.9rem; align-items: baseline; }
.warc .cred2-timeline .yr { font-family: var(--serif); font-style: italic; color: var(--cedar-soft); font-size: 1rem; }
.warc .cred2-timeline .ev { font-size: 0.86rem; line-height: 1.5; color: var(--on-dark-mut); }
.warc .cred2-timeline .ev b { color: #fff; font-weight: 600; }
.warc .cred2-press { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--on-dark-line); font-size: 0.84rem; color: var(--on-dark-mut); }
.warc .cred2-press a { color: var(--cedar-soft); text-decoration: none; font-weight: 600; }
.warc .cred2-press a:hover { text-decoration: underline; }

/* standalone workflow-library + human-attorney as their own sections */
.warc .section-wlib { background: var(--fog-0); }
.warc .section-human { background: var(--surface); }
.warc .pathways-intro .tag { color: var(--cedar-600); }

/* hero ghost button readable on the dark hero */
.warc .hero .btn-ghost { background: transparent; border-color: var(--on-dark-line); color: var(--on-dark); }
.warc .hero .btn-ghost:hover { border-color: var(--cedar-soft); background: rgba(255,255,255,0.06); color: #fff; }

/* vertical padding for the V7 sections */
.warc .dft, .warc .cred2, .warc .section-wlib, .warc .section-human { padding-block: clamp(2.6rem, 5vw, 4.2rem); }
.warc .section-wlib .wlib { margin-top: 1.6rem; }
.warc .section-wlib .wlib-head h3, .warc .section-human .lab-cols { margin-top: 0.4rem; }

/* ============================================================================
   CONTEXTUAL AI LEGAL ANALYST -- WA evergreen theme + floating launcher.
   The hub uses the contextual CLAB panel (page-aware, WA matter-type, WA chips),
   not the generic universal chatbox. These overrides repaint it evergreen/cedar.
   ========================================================================= */
/* ask-bar cards (they theme via --c-accent) */
body.warc .clab-card, body.warc .clab--teal { --c-accent: #15513d; --c-accent-soft: rgba(21,81,61,0.10); }
/* contextual chat panel: indigo #4f46e5 -> evergreen; CTA -> cedar */
body.warc .clab-panel__chip--primary,
body.warc .clab-panel__send { background: #15513d !important; border-color: #15513d !important; }
body.warc .clab-panel__chip--primary:hover,
body.warc .clab-panel__send:hover,
body.warc .clab-panel__send:focus-visible { background: #103a2d !important; }
body.warc .clab-panel__cta { border-left-color: #b06a22 !important; }
body.warc .clab-panel__cta-btn { background: #b06a22 !important; }
body.warc .clab-panel__cta-btn:hover { background: #99591a !important; }
body.warc .clab-panel__chip:hover { border-color: #2f7458 !important; color: #15513d !important; }

/* evergreen floating launcher -> opens the contextual analyst */
.warc .wa-ask-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ever-700); color: #fff; border: 1px solid var(--ever-600);
  border-radius: 999px; padding: 0.72rem 1.1rem;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 14px 30px -12px rgba(10,32,26,0.6); transition: background 0.16s, transform 0.12s;
}
.warc .wa-ask-fab:hover { background: var(--ever-800); transform: translateY(-1px); }
.warc .wa-ask-fab svg { width: 20px; height: 20px; }
.warc .wa-ask-fab .live { width: 8px; height: 8px; border-radius: 50%; background: #7fd1a8; box-shadow: 0 0 0 3px rgba(127,209,168,0.25); }
@media (max-width: 520px) { .warc .wa-ask-fab span.lbl { display: none; } .warc .wa-ask-fab { padding: 0.85rem; } }

/* interactive authority chips in the analyst answer panels (every chip acts) */
.warc .chip-act { cursor: pointer; -webkit-appearance: none; appearance: none; font-family: var(--sans); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; transition: border-color .16s, color .16s, background .16s; }
.warc a.chip-act:hover, .warc button.chip-act:hover { border-color: var(--cedar); color: var(--cedar-600); background: #fff; }
.warc .chip-act .chip-ext { opacity: .55; font-size: .82em; }
.warc button.chip-act.is-on { background: var(--cedar); border-color: var(--cedar); color: #fff; }
.warc .chip-note { margin: .55rem 0 0; font-size: .82rem; line-height: 1.5; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); border-left: 3px solid var(--cedar); border-radius: 6px; padding: .55rem .7rem; }

/* ============================================================================
   CONSULTATION pathway -- simple consult ladder (free analyst + 2 paid cards)
   ========================================================================= */
.warc .consult-intro { max-width: 720px; margin-bottom: 1.4rem; }
.warc .consult-ladder { display: grid; gap: 1rem; }
.warc .consult-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 720px) { .warc .consult-row { grid-template-columns: 1fr; } }
.warc .consult-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; box-shadow: var(--shadow-sm); }
.warc .consult-card h4 { font-family: var(--serif); font-weight: 540; font-size: 1.2rem; color: var(--ever-800); }
.warc .consult-card p { font-size: 0.9rem; line-height: 1.58; color: var(--ink-2); margin: 0; flex: 1 1 auto; }
.warc .consult-card .btn { align-self: flex-start; margin-top: 0.5rem; }
.warc .consult-card__price { font-family: var(--serif); font-size: 1.7rem; color: var(--cedar-600); line-height: 1; margin: 0; }
.warc .consult-card--free { border-color: var(--ever-600); border-left: 4px solid var(--ever-600); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.3rem; background: linear-gradient(135deg, rgba(47,116,88,0.07), var(--surface) 62%); }
.warc .consult-card--free .consult-card__main { display: flex; flex-direction: column; gap: 0.45rem; }
.warc .consult-card--free h4 { font-size: 1.3rem; }
.warc .consult-card__tag { align-self: flex-start; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: #fff; background: var(--ever-600); padding: 0.24rem 0.55rem; border-radius: 999px; }
@media (max-width: 560px) { .warc .consult-card--free { grid-template-columns: 1fr; } }

/* BI Review press card with square face thumbnail (hero trust signal) */
.warc .bi-presscard { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1.1rem; text-decoration: none; background: rgba(255,255,255,0.05); border: 1px solid var(--on-dark-line); border-radius: 10px; padding: 0.5rem 0.9rem 0.5rem 0.5rem; transition: border-color .16s, background .16s; }
.warc .bi-presscard:hover { border-color: var(--cedar-soft); background: rgba(255,255,255,0.09); }
.warc .bi-presscard__thumb { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; object-position: center top; flex: none; border: 1px solid var(--on-dark-line); }
.warc .bi-presscard__ey { display: block; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cedar-soft); }
.warc .bi-presscard__hd { display: block; font-size: 0.86rem; font-weight: 600; color: var(--on-dark); margin-top: 0.12rem; }

/* #about: business-value takeaway under the biography timeline */
.warc .cred2-biz { margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--on-dark-line); color: var(--on-dark-mut); font-size: 0.96rem; line-height: 1.62; }
.warc .cred2-biz b { color: #fff; font-weight: 600; }

/* shortened hero bio (full story lives in #about) */
.warc .herofx-bio { color: var(--on-dark-mut); font-size: 0.92rem; line-height: 1.58; margin: 1.15rem 0 0; max-width: 60ch; }
.warc .herofx-bio { padding-top: 0.9rem; border-top: 1px solid var(--on-dark-line); }

/* ============================================================================
   HERO COMPACTION -- fit nav + CTAs + BI Review press card above the fold.
   Overrides the inline .herofx rules (parallel-session) with !important.
   ========================================================================= */
.warc .herofx { grid-template-columns: minmax(240px, 330px) 1fr !important; align-items: center !important; gap: clamp(1.1rem, 3vw, 2.3rem) !important; padding: 0 !important; }
.warc .herofx-photo img { max-height: 420px !important; }
.warc .herofx-name { margin-top: .6rem !important; font-size: 1.1rem !important; }
.warc .herofx-creds { margin-top: .35rem !important; font-size: .78rem !important; }
.warc .herofx-body h1 { font-size: clamp(1.5rem, 3vw, 2.3rem) !important; margin: .25rem 0 .5rem !important; line-height: 1.07 !important; }
.warc .herofx-body .hero-lede { font-size: clamp(.93rem, 1.25vw, 1.02rem) !important; line-height: 1.5 !important; }
.warc .herofx-bio { margin-top: .65rem !important; padding-top: .55rem !important; font-size: .84rem !important; line-height: 1.48 !important; }
.warc .herofx .hero-cta { margin-top: .8rem !important; gap: .5rem !important; }
.warc .herofx .hero-cta .btn { min-height: 42px !important; padding: .55rem 1rem !important; }
.warc .bi-presscard { margin-top: .75rem !important; padding: .45rem .8rem .45rem .45rem !important; }

/* About link in the brand bar (secondary, not a pathway tab) */
.warc .hub-about { color: var(--on-dark-mut); text-decoration: none; font-size: 0.8rem; font-weight: 600; }
.warc .hub-about:hover { color: var(--cedar-soft); }
@media (max-width: 640px) { .warc .hub-about { display: none; } }

/* language code (EN/ES/RU) beside each flag */
.warc .lang a { gap: 0.28rem; }
.warc .lang .lcode { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em; color: var(--on-dark-mut); }
.warc .lang a.on .lcode, .warc .lang a:hover .lcode { color: var(--on-dark); }

/* hero: spend the unused right-side width so the H1 is fewer lines (shorter
   hero, so the BI Review card shows without a full-screen window) */
.warc .herofx { grid-template-columns: minmax(220px, 300px) 1fr !important; }
.warc .herofx-body h1 { font-size: clamp(1.5rem, 2.5vw, 2.05rem) !important; max-width: 46ch !important; }
.warc .herofx-body .hero-lede { max-width: 78ch !important; }
.warc .herofx-bio { max-width: 78ch !important; }

/* ============================================================================
   SINGLE STICKY NAV BAR (consolidated from two rows; status text removed)
   ========================================================================= */
.warc .hub-onebar-wrap { background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.warc .hub-onebar { display: flex; align-items: center; gap: 1rem; min-height: 58px; }
.warc .hub-onebar .brand { color: var(--ever-800); flex: 0 0 auto; }
.warc .hub-onebar .brand small { color: var(--cedar-600); border-left: 1px solid var(--line-2); }
.warc .hub-onebar .topnav { flex: 1 1 auto; display: flex; justify-content: center; gap: 0.1rem; flex-wrap: nowrap; }
.warc .hub-onebar-right { display: flex; align-items: center; gap: 0.65rem; flex: 0 0 auto; }
.warc .hub-onebar .lang a { color: var(--muted-2); }
.warc .hub-onebar .lang a.on { background: var(--fog-1); }
.warc .hub-onebar .lcode { color: var(--muted); }
.warc .hub-onebar .lang a.on .lcode { color: var(--ink); }
.warc .hub-onebar .hub-about { color: var(--muted); }
.warc .hub-onebar .hub-about:hover { color: var(--cedar-600); }
@media (max-width: 1180px) { .warc .hub-onebar .topnav { display: none; } }
@media (max-width: 760px) { .warc .hub-onebar .hub-about { display: none; } }
@media (max-width: 560px) { .warc .hub-onebar .lang { display: none; } }

/* one bar is ~58px tall; tighten the anchor offset */
.warc [id] { scroll-margin-top: 78px !important; }

/* hero: top-align under the single bar (use the green space), slightly larger,
   airier type; BI Review card still visible without a full screen */
.warc .herofx { align-items: start !important; padding-top: clamp(0.6rem, 1.8vw, 1.4rem) !important; }
.warc .herofx-body h1 { font-size: clamp(1.7rem, 3vw, 2.45rem) !important; line-height: 1.16 !important; margin: 0.2rem 0 0.75rem !important; max-width: 44ch !important; }
.warc .herofx-body .hero-lede { font-size: clamp(1rem, 1.45vw, 1.12rem) !important; line-height: 1.62 !important; }
.warc .herofx-bio { font-size: 0.9rem !important; line-height: 1.56 !important; margin-top: 0.95rem !important; padding-top: 0.85rem !important; }
.warc .herofx .hero-cta { margin-top: 1.05rem !important; }
.warc .bi-presscard { margin-top: 0.9rem !important; }

/* follow-up chips unfold a short answer inline (accordion) */
.warc .fu-answer { margin: 0.6rem 0 0; background: var(--surface-2); border: 1px solid var(--line); border-left: 3px solid var(--ever-600); border-radius: var(--radius-sm); padding: 0.7rem 0.9rem; }
.warc .fu-answer p { margin: 0; font-size: 0.86rem; line-height: 1.55; color: var(--ink-2); }
.warc .fu-answer .fu-ai { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.55rem; font-size: 0.68rem; color: var(--muted); }
.warc .fu-answer .fu-ai .live { width: 7px; height: 7px; border-radius: 50%; background: #5fb98a; }
.warc .followup.is-open { background: var(--cedar); border-color: var(--cedar); color: #fff; }
.warc .followup.is-open::before { color: #fff; }

/* text-only language codes (EN / ES / RU) */
.warc .hub-onebar .lang { display: inline-flex; gap: 0.1rem; }
.warc .hub-onebar .lang a { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.28rem 0.42rem; }
/* SVG language flags (reliable cross-platform; emoji flags do not render on Windows) */
.warc .lang .flagsvg { display: block; width: 22px; height: 15px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.16); }
.warc .hub-onebar .lang { gap: 0.2rem; }
.warc .hub-onebar .lang a { padding: 0.22rem 0.3rem; opacity: 0.5; transition: opacity 0.16s, background 0.16s; }
.warc .hub-onebar .lang a.on, .warc .hub-onebar .lang a:hover { opacity: 1; }

/* === hero credibility chips + detailed press card (2026-06-02) === */
.warc .hero-creds { display:flex; flex-wrap:wrap; gap:.55rem 1.7rem; margin:1.6rem 0 0; padding-top:1.15rem; border-top:1px solid rgba(255,255,255,0.13); position:relative; z-index:1; }
.warc .hcred { display:inline-flex; align-items:center; gap:.5rem; font-size:.92rem; line-height:1.3; color:var(--on-dark-mut); }
.warc .hcred svg { width:18px; height:18px; color:var(--cedar-soft); flex:none; }
.warc .hcred b { color:var(--on-dark); font-weight:600; }
.warc .hero-press { margin-top:1.15rem; position:relative; z-index:1; }
.warc .hero-press .bi-presscard { display:flex; align-items:center; gap:1rem; width:100%; margin:0; text-decoration:none; background:rgba(255,255,255,0.06); border:1px solid var(--on-dark-line); border-radius:12px; padding:.85rem 1.1rem; transition:border-color .16s, background .16s; }
.warc .hero-press .bi-presscard:hover { border-color:var(--cedar-soft); background:rgba(255,255,255,0.10); }
.warc .hero-press .bi-presscard__thumb { width:62px; height:62px; border-radius:10px; object-fit:cover; object-position:center top; flex:none; border:1px solid var(--on-dark-line); }
.warc .hero-press .bi-presscard__body { flex:1 1 auto; min-width:0; }
.warc .hero-press .bi-presscard__ey { display:block; font-size:.66rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--cedar-soft); }
.warc .hero-press .bi-presscard__hd { display:block; font-family:var(--serif); font-size:1.04rem; font-weight:600; color:var(--on-dark); margin:.12rem 0; line-height:1.25; }
.warc .hero-press .bi-presscard__meta { display:block; font-size:.82rem; color:var(--on-dark-mut); line-height:1.45; }
.warc .hero-press .bi-presscard__meta i { color:var(--cedar-soft); font-style:italic; }
.warc .hero-press .bi-presscard__cta { flex:none; align-self:center; font-size:.84rem; font-weight:600; color:var(--on-dark); border:1px solid var(--cedar-soft); border-radius:999px; padding:.5rem .95rem; white-space:nowrap; transition:background .16s, color .16s; }
.warc .hero-press .bi-presscard:hover .bi-presscard__cta { background:var(--cedar-soft); color:#0b2218; }
@media (max-width:760px){ .warc .hero-press .bi-presscard { flex-wrap:wrap; } .warc .hero-press .bi-presscard__cta { width:100%; text-align:center; } }

.warc .herofx-photo .herofx-admit { display:block; font-size:.82rem; color:var(--cedar-soft); margin-top:.34rem; }

.warc a.hcred { text-decoration: none; }
.warc a.hcred:hover { color: var(--on-dark); }
.warc a.hcred:hover b { color: var(--cedar-soft); }

/* ===== cockpit: inline help tooltips + process / forum / tiers (2026-06-02) ===== */
.warc .tip { position: relative; border-bottom: 1px dotted currentColor; cursor: help; }
.warc .tip:focus-visible { outline: 2px solid var(--cedar-soft); outline-offset: 2px; border-radius: 2px; }
.warc .tip::after { content: attr(data-tip); position: absolute; left: 50%; bottom: calc(100% + 10px); transform: translateX(-50%); width: max-content; max-width: 270px; background: #071a13; color: #eef3ef; border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; padding: 0.6rem 0.75rem; font-size: 0.8rem; line-height: 1.5; font-weight: 400; font-style: normal; letter-spacing: normal; text-transform: none; white-space: normal; text-align: left; opacity: 0; visibility: hidden; transition: opacity 0.14s; z-index: 60; box-shadow: 0 12px 34px rgba(0,0,0,0.5); pointer-events: none; }
.warc .tip::before { content: ""; position: absolute; left: 50%; bottom: calc(100% + 4px); transform: translateX(-50%); border: 6px solid transparent; border-top-color: #071a13; opacity: 0; visibility: hidden; transition: opacity 0.14s; z-index: 60; }
.warc .tip:hover::after, .warc .tip:focus::after, .warc .tip:hover::before, .warc .tip:focus::before { opacity: 1; visibility: visible; }
.warc .aa-block { margin-top: 1.15rem; }
.warc .aa-process { list-style: none; counter-reset: step; margin: 0.45rem 0 0; padding: 0; display: grid; gap: 0.55rem; }
.warc .aa-process li { counter-increment: step; position: relative; padding-left: 2rem; font-size: 0.92rem; line-height: 1.55; color: var(--on-dark-mut); }
.warc .aa-process li::before { content: counter(step); position: absolute; left: 0; top: 0.05rem; width: 1.45rem; height: 1.45rem; border-radius: 50%; background: rgba(231,185,105,0.16); color: var(--cedar-soft); font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.warc .aa-forum { background: rgba(255,255,255,0.04); border: 1px solid var(--on-dark-line); border-radius: 12px; padding: 0.85rem 1rem; }
.warc .aa-ftext { font-size: 0.92rem; line-height: 1.55; color: var(--on-dark-mut); margin: 0.35rem 0 0; }
.warc .aa-ftable { margin-top: 0.7rem; display: grid; gap: 0.4rem; }
.warc .aa-frow { display: grid; grid-template-columns: 160px 1fr; gap: 0.6rem; font-size: 0.86rem; align-items: baseline; }
.warc .aa-frow b { color: var(--on-dark); font-weight: 600; }
.warc .aa-frow span { color: var(--on-dark-mut); }
.warc .aa-fnote { font-size: 0.82rem; color: var(--on-dark-mut); margin-top: 0.7rem; padding-top: 0.6rem; border-top: 1px solid var(--on-dark-line); }
.warc .aa-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin-top: 0.5rem; }
.warc .tier { position: relative; background: rgba(255,255,255,0.04); border: 1px solid var(--on-dark-line); border-radius: 12px; padding: 0.95rem 0.85rem; display: flex; flex-direction: column; }
.warc .tier.is-best { border-color: var(--cedar-soft); background: rgba(231,185,105,0.09); }
.warc .tier-flag { position: absolute; top: -0.62rem; left: 0.85rem; background: var(--cedar-soft); color: #0b2218; font-size: 0.63rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.18rem 0.5rem; border-radius: 999px; }
.warc .tier-top { display: flex; align-items: baseline; gap: 0.45rem; flex-wrap: wrap; }
.warc .tier-price { font-family: var(--serif); font-size: 1.34rem; font-weight: 600; color: var(--on-dark); }
.warc .tier-name { font-size: 0.8rem; font-weight: 600; color: var(--cedar-soft); }
.warc .tier-fit { font-size: 0.8rem; color: var(--on-dark); font-weight: 600; margin: 0.55rem 0 0; }
.warc .tier-what { font-size: 0.83rem; line-height: 1.5; color: var(--on-dark-mut); margin: 0.32rem 0 0.85rem; flex: 1 1 auto; }
.warc .tier-cta { display: inline-flex; align-items: center; gap: 0.3rem; justify-content: center; font-size: 0.85rem; font-weight: 700; border-radius: 8px; padding: 0.52rem 0.7rem; text-decoration: none; transition: filter 0.15s, background 0.15s; }
.warc .tier-pay { background: var(--cedar-soft); color: #0b2218; }
.warc .tier-pay:hover { filter: brightness(1.08); }
.warc .tier-req { background: rgba(255,255,255,0.08); color: var(--on-dark); border: 1px solid var(--on-dark-line); cursor: pointer; }
.warc .tier-req:hover { background: rgba(255,255,255,0.14); }
.warc .aa-tnote { font-size: 0.82rem; color: var(--on-dark-mut); margin-top: 0.72rem; }
@media (max-width: 760px) { .warc .aa-tiers { grid-template-columns: 1fr; } .warc .aa-frow { grid-template-columns: 120px 1fr; } }

/* fix: cockpit answer panel is LIGHT (var(--surface)); recolor the new sections */
.warc .analyst-answer .aa-block > .aa-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cedar-600); display: block; margin-bottom: 0.45rem; }
.warc .analyst-answer .aa-process li { color: var(--ink-2); }
.warc .analyst-answer .aa-process li::before { background: rgba(176,106,34,0.13); color: var(--cedar-600); }
.warc .analyst-answer .aa-forum { background: var(--surface-2); border-color: var(--line); }
.warc .analyst-answer .aa-ftext { color: var(--ink-2); }
.warc .analyst-answer .aa-frow b { color: var(--ever-800); }
.warc .analyst-answer .aa-frow span { color: var(--ink-2); }
.warc .analyst-answer .aa-fnote { color: var(--muted); border-top-color: var(--line); }
.warc .analyst-answer .tier { background: var(--surface-2); border-color: var(--line); }
.warc .analyst-answer .tier.is-best { border-color: var(--cedar-600); background: rgba(176,106,34,0.06); }
.warc .analyst-answer .tier-flag { background: var(--cedar-600); color: #fff; }
.warc .analyst-answer .tier-price { color: var(--ever-800); }
.warc .analyst-answer .tier-name { color: var(--cedar-600); }
.warc .analyst-answer .tier-fit { color: var(--ink); }
.warc .analyst-answer .tier-what { color: var(--ink-2); }
.warc .analyst-answer .tier-pay { background: var(--ever-700); color: #fff; }
.warc .analyst-answer .tier-pay:hover { filter: brightness(1.09); }
.warc .analyst-answer .tier-req { background: #fff; color: var(--ever-800); border: 1px solid var(--line); }
.warc .analyst-answer .tier-req:hover { background: var(--surface-2); }
.warc .analyst-answer .aa-tnote { color: var(--muted); }

/* ============================================================================
   MOBILE LAYOUT (2026-06-03): kill horizontal overflow, wrap the nav, stack the
   hero content-first with a COMPACT FOUNDER BADGE instead of a full-bleed
   portrait. CSS-only, scoped to body.warc; desktop unchanged. (~767px)
   ========================================================================= */
body.warc { max-width: 100vw; overflow-x: clip; }
.warc img, .warc svg, .warc video { max-width: 100%; }
@media (max-width: 767px) {
  /* B. header: wrap so brand + actions never slide off-screen */
  .warc .hub-onebar { flex-wrap: wrap; justify-content: center; gap: 0.4rem 0.65rem; min-height: 0; padding: 0.5rem 0; }
  .warc .hub-onebar .brand { flex: 1 1 100%; justify-content: center; text-align: center; }
  .warc .hub-onebar .brand small { white-space: normal; }
  .warc .hub-onebar-right { flex: 1 1 100%; justify-content: center; flex-wrap: wrap; gap: 0.45rem; }
  .warc .hub-fasttrack-pill { font-size: 0.8rem; padding: 0.4rem 0.85rem; }
  .warc .hub-onebar .btn-mini { font-size: 0.8rem; }
  /* C + D. hero: one column, compact founder badge, value prop first, CTAs full-width */
  .warc .hero { padding-bottom: 1.4rem; }
  .warc .herofx { grid-template-columns: 1fr !important; gap: 0.85rem !important; align-items: start !important; padding-top: 0.8rem !important; }
  .warc .herofx-photo { flex-direction: row !important; flex-wrap: wrap; align-items: center; gap: 0.7rem; max-width: none !important; padding: 0.5rem 0.7rem; background: rgba(255,255,255,0.06); border: 1px solid var(--on-dark-line); border-radius: 14px; }
  .warc .herofx-photo picture { flex: 0 0 auto; line-height: 0; }
  .warc .herofx-photo img { width: 58px !important; height: 70px !important; max-height: 70px !important; aspect-ratio: auto !important; border-radius: 10px !important; object-position: center 12% !important; box-shadow: none !important; }
  .warc .herofx-name { margin-top: 0 !important; flex: 1 1 150px; font-size: 1.02rem !important; }
  .warc .herofx-admit { flex: 1 1 100%; font-size: 0.78rem; }
  .warc .herofx-body .eyebrow { letter-spacing: 0.07em !important; font-size: 0.66rem !important; }
  .warc .herofx-body h1 { font-size: clamp(1.55rem, 6.2vw, 2.05rem) !important; max-width: none !important; line-height: 1.13 !important; margin: 0.3rem 0 0.55rem !important; overflow-wrap: break-word !important; }
  .warc .herofx-body .hero-lede { max-width: none !important; font-size: 0.97rem !important; line-height: 1.5 !important; }
  .warc .herofx-bio { display: none !important; }
  .warc .herofx .hero-cta { flex-direction: column; align-items: stretch; gap: 0.55rem; margin-top: 0.95rem !important; }
  .warc .herofx .hero-cta .btn { width: 100%; justify-content: center; }
  .warc .hero-creds { gap: 0.4rem 1rem !important; }
  .warc .hero-press .bi-presscard { flex-wrap: wrap; gap: 0.6rem; }
  .warc .hero-press .bi-presscard__cta { width: 100%; text-align: center; justify-content: center; }
}

/* AI Legal Analyst (cockpit) mobile: nothing forces the page wide; chips + pipeline + answer fit */
@media (max-width: 767px) {
  .warc .lab, .warc .lab-arch, .warc .analyst, .warc .analyst-cockpit, .warc .pipe, .warc .aa-body, .warc .aa-grid, .warc .aa-tiers, .warc .aa-ftable { min-width: 0; max-width: 100%; }
  .warc .pipe { width: 100%; }
  .warc .pipe-step { min-width: 86px; }
  .warc .aa-grid { grid-template-columns: 1fr !important; }
  .warc .a-chips, .warc .analyst .chips, .warc .aa-followups, .warc .chips { flex-wrap: wrap; }
  .warc .a-chip, .warc .chip, .warc .chip-act, .warc .followup { white-space: normal; max-width: 100%; text-align: left; }
  .warc .analyst-head { flex-wrap: wrap; gap: 0.5rem; }
  .warc .analyst-speed { margin-left: 0; }
  .warc .hpc-ask, .warc .clab-panel__input, .warc .analyst textarea { min-width: 0; max-width: 100%; }
}
