/* ============================================================
   Desk — Support / Careers / Blog
   Extends desk-landing.css (and desk-educators.css for forms)
   ============================================================ */

/* ---------- compact page hero ---------- */
.page-hero { padding: 132px 0 8px; position: relative; overflow: hidden; }
/* the landing's arcade is pinned to that hero's foot; on a short page hero it sits on the base */
.page-hero .hero-arches { bottom: 0; height: 200px; }
.page-hero .hero-inner { text-align: center; }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px); line-height: 1.03;
  letter-spacing: -0.035em; font-weight: 600; max-width: 18ch; margin: 0 auto;
  text-wrap: balance;
}
.page-hero h1 .g { color: var(--green); }
.page-hero .hero-sub { max-width: 56ch; }

/* small inline back / breadcrumb link */
.crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Geist Mono", monospace; font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--muted); margin-bottom: 18px; transition: color .15s; white-space: nowrap;
}
.crumb:hover { color: var(--green-ink); }
/* the arrow slides back toward the page it returns to */
.crumb svg { transition: transform .2s var(--ease); }
.crumb:hover svg { transform: translateX(-3px); }
.crumb svg { width: 14px; height: 14px; }

/* ============================================================
   SUPPORT
   ============================================================ */

/* quick-help cards row */
.help-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; max-width: 1040px; margin-left: auto; margin-right: auto; }
.help-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 28px;
  padding: 40px 34px 36px; box-shadow: none;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
}
.help-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #d4d4cd; }
.help-card .pic { width: 44px; height: 44px; border-radius: 12px; background: var(--green-tint); color: var(--green-deep); display: grid; place-items: center; margin-bottom: 18px; }
.help-card .pic svg { width: 22px; height: 22px; }
.help-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.help-card p { font-size: 14.5px; color: var(--muted); margin: 9px 0 0; line-height: 1.55; }
.help-card .link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 22px;
  font-size: 14px; font-weight: 500; color: var(--green-ink);
}
.help-card .link svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.help-card:hover .link svg { transform: translateX(3px); }

/* support form pitch list reuses .interest-list/.il */
.support-pitch .badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.support-pitch .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 14px; font-size: 13.5px; color: var(--ink-2); box-shadow: var(--shadow-sm);
}
.support-pitch .pill svg { width: 15px; height: 15px; color: var(--green-deep); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 840px; margin: 8px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 26px 6px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 18.5px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-ink); }
.faq-chev {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2);
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s;
}
.faq-chev svg { width: 16px; height: 16px; }
.faq-item summary:hover .faq-chev { border-color: var(--green); color: var(--green-deep); background: var(--green-tint); }
.faq-item[open] .faq-chev { transform: rotate(180deg); background: var(--green-tint); color: var(--green-deep); border-color: transparent; }
.faq-body { overflow: hidden; }
.faq-body p { margin: 0 0 26px; padding-left: 34px; padding-right: 56px; color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 70ch; }
.faq-body p a { color: var(--green-ink); text-decoration: underline; text-underline-offset: 2px; }
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-body { animation: faqOpen .32s var(--ease); }
}
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.faq-foot { text-align: center; margin-top: 44px; }
.faq-foot .faq-foot-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--green-tint); border: 1px solid var(--green);
  font-size: 15px; color: var(--green-ink); font-weight: 500;
}
.faq-foot .faq-foot-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }
.faq-foot .faq-foot-badge a { color: var(--green-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   CAREERS
   ============================================================ */

/* values band reuses .pillars */
.values .pic svg { width: 23px; height: 23px; }

/* numbers / culture strip */
.culture-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px; }
.culture-strip .cs { border-top: 1px solid var(--line); padding-top: 20px; }
.culture-strip .cs b { display: block; font-size: clamp(26px, 3vw, 36px); font-weight: 600; letter-spacing: -0.03em; color: var(--ink); }
.culture-strip .cs span { display: block; font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* role groups */
.role-group + .role-group { margin-top: 56px; }
.role-group-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.role-group-head h2 { font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.03em; }
.role-group-head .count {
  font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: 0.06em;
  color: var(--green-deep); background: var(--green-tint); border-radius: 8px; padding: 4px 10px;
}
.role-group-head p { font-size: 15.5px; color: var(--muted); margin: 0; flex-basis: 100%; max-width: 60ch; line-height: 1.55; }
.roles { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.role {
  display: flex; align-items: center; gap: 24px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .2s;
}
.role:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #d4d4cd; }
.role-main { min-width: 0; }
.role-main h3 { font-size: 19.5px; font-weight: 600; letter-spacing: -0.022em; }
.role-main p { font-size: 14.5px; color: var(--muted); margin: 8px 0 0; line-height: 1.55; max-width: 56ch; }
.role-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag {
  font-family: "Geist Mono", monospace; font-size: 11.5px; letter-spacing: 0.03em;
  color: var(--ink-2); background: #f1f1ee; border: 1px solid var(--line-2);
  border-radius: 7px; padding: 4px 9px;
}
.tag.green { color: var(--green-deep); background: var(--green-tint); border-color: transparent; }
.role-cta {
  margin-left: auto; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  border: 1px solid var(--line); border-radius: 11px; padding: 11px 16px;
  transition: background .18s, border-color .18s, color .18s;
}
.role:hover .role-cta { background: var(--ink); color: #fff; border-color: var(--ink); }
.role-cta svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.role:hover .role-cta svg { transform: translateX(3px); }

/* advisory cards (a touch different — portrait of profile) */
.advisers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.adviser {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.adviser .ava {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  font-family: "Geist Mono", monospace; font-weight: 600; font-size: 16px; color: #fff;
  margin-bottom: 18px;
}
.adviser h3 { font-size: 17.5px; font-weight: 600; letter-spacing: -0.02em; }
.adviser .who { font-size: 13px; color: var(--green-ink); font-family: "Geist Mono", monospace; letter-spacing: 0.02em; margin-top: 5px; }
.adviser p { font-size: 14.5px; color: var(--muted); margin: 14px 0 0; line-height: 1.55; }

/* careers CTA reuses .cta-band */

/* ============================================================
   BLOG
   ============================================================ */

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.post-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4d4cd; }

/* arches cover (branded placeholder, no fake photo) */
.post-cover { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.post-cover .arch-art { position: absolute; inset: 0; }
.post-cover.ink { background: var(--dark); }
.post-cover.green { background: linear-gradient(150deg, #8ec64a, #6fa12c); }
.post-cover .kicker {
  position: absolute; left: 22px; top: 20px; z-index: 2;
  font-family: "Geist Mono", monospace; font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.22);
  padding: 6px 11px; border-radius: 100px; backdrop-filter: blur(4px);
}
.post-cover .cover-no {
  position: absolute; right: 22px; bottom: 18px; z-index: 2;
  font-family: "Geist Mono", monospace; font-size: 52px; font-weight: 600;
  color: rgba(255,255,255,.16); letter-spacing: -0.04em; line-height: 1;
}

.post-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: 0.04em; color: var(--muted-2); display: flex; gap: 10px; align-items: center; }
.post-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
.post-card h2 { font-size: 23px; font-weight: 600; letter-spacing: -0.028em; margin: 14px 0 0; line-height: 1.18; text-wrap: balance; }
.post-card .excerpt { font-size: 15.5px; color: var(--muted); margin: 12px 0 0; line-height: 1.6; }
.post-card .read {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 20px;
  font-size: 14.5px; font-weight: 500; color: var(--green-ink);
}
.post-card .read svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.post-card:hover .read svg { transform: translateX(3px); }

/* author chip */
.post-author { display: flex; align-items: center; gap: 11px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-2); }
.post-author .a-ava { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 600; color: #fff; flex: 0 0 auto; }
.post-author .a-name { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
.post-author .a-role { font-size: 12px; color: var(--muted-2); margin-top: 1px; }

/* ---------- Article reading view ---------- */
.article-hero { padding: 56px 0 0; }
.article-head { max-width: 760px; margin: 0 auto; text-align: center; }
.article-head .crumb { display: flex; width: fit-content; margin: 0 auto 18px; }
.article-head .kick { justify-content: center; }
.article-head h1 {
  font-size: clamp(32px, 4.6vw, 52px); line-height: 1.06; letter-spacing: -0.035em;
  font-weight: 600; margin: 18px auto 0; text-wrap: balance;
}
.article-head .standfirst { font-size: clamp(18px, 1.9vw, 21px); color: var(--muted); margin: 22px auto 0; max-width: 56ch; line-height: 1.55; text-wrap: pretty; }
.article-byline { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 30px 0 0; }
.article-byline .a-ava { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; font-weight: 600; color: #fff; }
.article-byline .b-name { font-size: 14.5px; font-weight: 600; }
.article-byline .b-meta { font-size: 12.5px; color: var(--muted-2); font-family: "Geist Mono", monospace; letter-spacing: 0.02em; margin-top: 2px; }
.article-byline .b-text { text-align: left; }

.article-figure { margin: 48px 0; position: relative; aspect-ratio: 16/8; border-radius: var(--radius-lg); overflow: hidden; }

.article-wrap { max-width: 700px; margin: 0 auto; }
.article-prose { margin-top: 8px; }
.article-prose > p { font-size: 18.5px; line-height: 1.72; color: var(--ink-2); margin: 0 0 24px; letter-spacing: -0.008em; }
.article-prose > p:first-of-type::first-letter {
  font-size: 58px; font-weight: 600; float: left; line-height: 0.86;
  margin: 6px 12px 0 0; color: var(--green-ink); font-family: "Geist", sans-serif;
}
.article-prose h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.03em; margin: 52px 0 6px; }
.article-prose h2 + p { margin-top: 34px; }
.article-prose h2 + div { margin-top: 34px; }
.article-prose h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 34px 0 0; }
.article-prose h3 + p { margin-top: 12px; }
.article-prose a { color: var(--green-ink); text-decoration: underline; text-underline-offset: 2px; }
/* pill CTAs inside prose keep their own dress — no prose link underline/colour */
.article-prose a.btn-cta, .legal-prose a.btn-cta { text-decoration: none; color: #fff; }
.article-prose a.btn-cta:hover, .legal-prose a.btn-cta:hover { color: #00312D; }
.callout .btn-cta { background: #242720; }
.callout .btn-cta:hover { background: #6EB704; }
.article-prose strong { font-weight: 600; color: var(--ink); }
.article-prose ul { margin: 0 0 24px; padding: 0; list-style: none; }
.article-prose ul li { position: relative; padding-left: 30px; font-size: 18px; line-height: 1.65; color: var(--ink-2); margin: 0 0 14px; }
.article-prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 11px; width: 9px; height: 9px;
  border-radius: 2px; background: var(--green); transform: rotate(45deg);
}
.article-prose .lead-tip { color: var(--ink); font-weight: 600; }

/* numbered tip blocks */
.tip-block { display: flex; gap: 22px; margin: 0 0 28px; padding: 26px; background: rgba(255,255,255,.75); border: 0; border-radius: 26px; box-shadow: 0 2px 6px rgba(20,24,12,.04), 0 16px 40px rgba(20,24,12,.1); }
.tip-block .tip-no { flex: 0 0 auto; font-family: "Geist Mono", monospace; font-size: 14px; font-weight: 600; color: var(--green-deep); background: var(--green-tint); width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; }
.tip-block .tip-c h3 { margin: 4px 0 0; font-size: 19px; }
.tip-block .tip-c p { margin: 10px 0 0; font-size: 16px; color: var(--muted); line-height: 1.62; }

/* pull quote: a soft band in the landing's stepped-paper grey, aligned to the column */
.pull-quote { margin: 64px -44px; padding: 48px 44px; text-align: center; background: #F1F0EA; border-radius: 22px; }
html[data-theme="dark"] .pull-quote { background: #191b16; }
.pull-quote p { max-width: 40ch; margin-left: auto; margin-right: auto; }
@media (max-width: 860px) { .pull-quote { margin-left: 0; margin-right: 0; } }
.pull-quote::before { content: "\201C"; display: block; font-family: var(--font-display, "Manrope", sans-serif); font-size: 58px; font-weight: 700; line-height: .55; color: var(--green); margin-bottom: 14px; }
.pull-quote::after { content: ""; display: block; width: 30px; height: 1px; background: var(--green); margin: 24px auto 0; }
.pull-quote p { font-size: clamp(21px, 2.6vw, 26px); font-weight: 600; letter-spacing: -0.024em; line-height: 1.38; color: var(--ink); text-wrap: balance; margin: 0; }

/* callout: the site's dark band in miniature */
.callout { background: var(--dark); color: #fff; border-radius: 26px; padding: 38px 42px 40px; margin: 52px 0; position: relative; overflow: hidden; box-shadow: 0 18px 48px rgba(20,24,12,.14); }
.callout::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 30px, rgba(132,188,57,.14) 30px 31px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0 18%, #000 70%); mask-image: linear-gradient(180deg, transparent 0 18%, #000 70%); }
.callout::after { content: ""; position: absolute; right: 32px; bottom: 26px; width: 62px; height: 19px;
  background: url("/assets/desk-wordmark-reversed.png") no-repeat center / contain; opacity: .6; }
.callout > * { position: relative; z-index: 1; }
.callout .btn-cta { margin-top: 24px; }
.callout .eyebrow { color: #aacb7e; }
.callout .eyebrow::before { background: #aacb7e; }
.callout h3 { color: #fff; font-size: 22px; letter-spacing: -0.025em; margin: 14px 0 0; }
.callout p { color: #c4c6bc; font-size: 16px; line-height: 1.6; margin: 12px 0 0; }
.callout .btn { margin-top: 22px; }

/* article footer / nav */
.article-end { max-width: 700px; margin: 56px auto 0; padding-top: 32px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.article-end .share { display: flex; gap: 10px; }
.next-read { margin-top: 8px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .help-cards { grid-template-columns: 1fr; }
  .culture-strip { grid-template-columns: 1fr 1fr; gap: 18px; }
  .advisers { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .role { flex-direction: column; align-items: flex-start; gap: 18px; }
  .role-cta { margin-left: 0; }
  .culture-strip { grid-template-columns: 1fr 1fr; }
  .article-prose > p:first-of-type::first-letter { font-size: 48px; }
  .tip-block { flex-direction: column; gap: 14px; }
}

/* ============================================================
   LEGAL PAGES (privacy / cookies / terms)
   ============================================================ */
.legal { display: grid; grid-template-columns: 248px 1fr; gap: 64px; align-items: start; max-width: 1000px; margin: 0 auto; }

/* the index is a rail, and it stops short of the page's foot rather than running into it */
.legal-toc { position: sticky; top: 96px; padding-bottom: 24px; }
.legal-toc .toc-label {
  font-family: "Geist Mono", monospace; font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin: 0 0 14px;
}
/* the index is a rail: one hairline track with a green marker that sits on whichever
   section the reader is in, so the page always says where you are */
.legal-toc nav { position: relative; display: flex; flex-direction: column; gap: 2px; }
.legal-toc nav::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--line);
}
.legal-toc .toc-thumb {
  position: absolute; left: 0; width: 2px; border-radius: 2px; background: var(--green); opacity: 0;
  transition: top .3s var(--ease), height .3s var(--ease), opacity .2s ease;
}
.legal-toc a {
  display: flex; align-items: baseline; gap: 11px;
  font-size: 14px; color: var(--muted); padding: 7px 10px 7px 15px;
  border-radius: 0 9px 9px 0; line-height: 1.4; text-decoration: none;
  transition: color .18s ease, background .18s ease;
}
.legal-toc a i {
  font-style: normal; flex: 0 0 17px; font-family: "Geist Mono", monospace;
  font-size: 10.5px; font-weight: 600; letter-spacing: .04em; color: var(--muted-2);
  transition: color .18s ease;
}
.legal-toc a:hover { color: var(--ink); background: rgba(26,26,26,.035); }
.legal-toc a.active { color: var(--green-deep); font-weight: 600; }
.legal-toc a.active i { color: var(--green); }
html[data-theme="dark"] .legal-toc a:hover { background: rgba(255,255,255,.055); }
html[data-theme="dark"] .legal-toc a.active { color: var(--green); }

/* the revision stamp: mono, set between two hairlines like a printed document line */
.legal-meta {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 26px;
  font-family: "Geist Mono", monospace; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.07em; color: var(--muted-2); font-variant-numeric: tabular-nums;
  background: none; border: 0; border-radius: 0; padding: 0; box-shadow: none;
}
.legal-meta::before, .legal-meta::after { content: ""; width: 28px; height: 1px; background: var(--line); }

.legal-prose { max-width: 680px; }
.legal-prose > section { scroll-margin-top: 92px; }
.legal-prose > section + section { margin-top: 48px; }
.legal-prose h2 {
  font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.028em; display: flex; align-items: baseline; gap: 12px;
}
.legal-prose h2 .s-no { font-family: "Geist Mono", monospace; font-size: 14px; font-weight: 600; color: var(--green-deep); flex: 0 0 auto; }
.legal-prose h3 { font-size: 17.5px; font-weight: 600; letter-spacing: -0.018em; margin: 26px 0 0; }
.legal-prose p { font-size: 16px; line-height: 1.68; color: var(--ink-2); margin: 14px 0 0; }
.legal-prose h2 + p { margin-top: 16px; }
.legal-prose a { color: var(--green-ink); text-decoration: underline; text-underline-offset: 2px; }
.legal-prose strong { font-weight: 600; color: var(--ink); }
.legal-prose ul { margin: 14px 0 0; padding: 0; list-style: none; }
.legal-prose ul li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0 0 11px; }
/* the bullet is the wordmark's full stop: a round green point, nothing else */
.legal-prose ul li::before { content: ""; position: absolute; left: 4px; top: 9.5px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.legal-prose ul li strong { color: var(--ink); }

/* highlight / note box */
.legal-note {
  background: var(--green-tint); border: 1px solid transparent; border-radius: var(--radius);
  padding: 20px 22px; margin: 22px 0 0;
}
.legal-note p { margin: 0; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.legal-note p strong { color: var(--green-deep); }

/* cookie table */
.legal-table { width: 100%; border-collapse: collapse; margin: 20px 0 0; font-size: 14.5px; }
.legal-table th, .legal-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-table thead th {
  font-family: "Geist Mono", monospace; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600; border-bottom: 1px solid var(--line);
}
.legal-table td { color: var(--ink-2); line-height: 1.5; }
.legal-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.legal-table .dur { font-family: "Geist Mono", monospace; font-size: 13px; color: var(--muted); white-space: nowrap; }

/* contact strip at end */
.legal-contact { margin-top: 52px; padding: 28px 30px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.legal-contact h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.legal-contact p { font-size: 15px; color: var(--muted); margin: 10px 0 0; line-height: 1.6; }
.legal-contact .btn { margin-top: 18px; }
/* the strip reads as one line when it carries a row: mark, message, action */
.legal-contact .lc-row { display: flex; align-items: center; gap: 22px; }
.legal-contact .lc-row h3 { margin: 0; }
.legal-contact .lc-row p { font-size: 14.5px; margin: 7px 0 0; }
.lc-mark {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px;
  background: var(--green-tint); color: var(--green-deep); display: grid; place-items: center;
}
.lc-mark svg { width: 22px; height: 22px; }
.lc-body { flex: 1 1 260px; min-width: 0; }
.legal-contact .lc-row h3 { text-wrap: balance; }
.legal-contact .lc-row .btn-cta { flex: 0 0 auto; margin-left: auto; }
/* the careers page's internal CTA: filled rather than flooded, settles on hover */
.legal-prose .legal-contact a.btn-cta-quiet {
  background: #F2F2ED; box-shadow: none; color: #00312D;
  transition: background .26s ease, color .26s ease, box-shadow .26s ease;
}
.legal-contact .btn-cta-quiet::before { display: none; }
.legal-contact .btn-cta-quiet .btn-cta-go { background: #E3EBD5; color: #3F6903; }
.legal-prose .legal-contact a.btn-cta-quiet:hover {
  background: #EAEFE0; color: #00312D;
  box-shadow: 0 1px 2px rgba(20,24,12,.05), 0 6px 16px rgba(20,24,12,.07);
}
.legal-contact .btn-cta-quiet:hover .btn-cta-go { background: #D6E4C0; color: #3F6903; }
html[data-theme="dark"] .legal-prose .legal-contact a.btn-cta-quiet { background: rgba(255,255,255,.07); color: #fff; }
html[data-theme="dark"] .legal-prose .legal-contact a.btn-cta-quiet:hover { background: rgba(255,255,255,.11); color: #fff; }
@media (max-width: 760px) {
  .legal-contact .lc-row { flex-wrap: wrap; gap: 18px; }
  .legal-contact .lc-row .btn-cta { margin-left: 62px; }
}

/* related legal links — the careers filter chip, reused */
.legal-related { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; margin-top: 22px; }
.legal-related a {
  display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 16px;
  border: 0; border-radius: 100px; background: #F2F2ED; text-decoration: none;
  font: 500 13.5px var(--font-sans); letter-spacing: -.004em; color: #00312D;
  transition: color .2s ease, background .2s ease;
}
.legal-related a:hover { background: #EAEAE3; color: #00312D; }
.legal-related a[aria-current="page"] { background: #E3EBD5; color: #00312D; }
html[data-theme="dark"] .legal-related a { background: rgba(255,255,255,.07); color: var(--ink); }
html[data-theme="dark"] .legal-related a:hover { background: rgba(255,255,255,.11); }
html[data-theme="dark"] .legal-related a[aria-current="page"] { background: rgba(110,183,4,.16); color: var(--ink); }

@media (max-width: 860px) {
  .legal { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; }
  .legal-toc nav { flex-flow: row wrap; gap: 8px; }
  .legal-toc nav::before, .legal-toc .toc-thumb { display: none; }
  .legal-toc a { border: 1px solid var(--line); border-radius: 100px; padding: 7px 13px; margin: 0; }
  .legal-toc a.active { border-color: transparent; background: var(--green-tint); }
}

/* ============================================================
   DARK THEME — page components
   ============================================================ */
html[data-theme="dark"] .role:hover .role-cta,
html[data-theme="dark"] .article-end .btn-ghost:hover { /* ensure contrast on hover */ }
html[data-theme="dark"] .role:hover .role-cta { background: #f1f2ec; color: #15170f; border-color: #f1f2ec; }
html[data-theme="dark"] .tag { background: rgba(255,255,255,.06); border-color: var(--line-2); color: var(--ink-2); }
html[data-theme="dark"] .tag.green { background: var(--green-tint); border-color: transparent; color: var(--green-deep); }
html[data-theme="dark"] .callout { background: #16170f; border: 1px solid rgba(255,255,255,.08); }
html[data-theme="dark"] .tip-block { background: rgba(255,255,255,.05); }
html[data-theme="dark"] .post-cover .kicker { background: rgba(0,0,0,.32); }
html[data-theme="dark"] .faq-item summary:hover .faq-chev { background: var(--green-tint); }
html[data-theme="dark"] .legal-note { border-color: rgba(132,188,57,.18); }
html[data-theme="dark"] .help-card:hover,
html[data-theme="dark"] .role:hover,
html[data-theme="dark"] .post-card:hover { border-color: rgba(255,255,255,.2); }

/* article eyebrows: reading-time only, no brand full stop */
.article-head .kick::after { content: none; }

/* the call-out's wordmark scales with the call-out, as the hero and band marks do */
.callout { container-type: inline-size; }
.callout::after {
  right: 5.19cqw; bottom: 4.22cqw; width: 10.06cqw; height: 3.08cqw;
}
