:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --line: #e4ebe8;
  --text: #084539;
  --muted: #3d6b61;
  --accent: #c5ddd4;
  --primary: #084539;
  --ink: #084539;
  --ink-foreground: #f4faf7;
  --ink-muted: #b7d0c7;
  --mint: #e8f3ee;
  --pill: #f3f6f5;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); }
a { color: inherit; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}
.landing-body { min-height: 100svh; display: flex; flex-direction: column; }
header.app-header {
  display: flex; align-items: center; gap: 22px 28px;
  padding: 22px 40px;
  background: #fff;
  color: var(--ink);
  border-bottom: 0;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.mark { width: 28px; height: 28px; }
.wordmark {
  font-size: 28px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  text-transform: lowercase;
  white-space: nowrap;
}
.brand p { display: none; }
.site-nav {
  margin-left: auto;
  display: flex; gap: 28px; align-items: center;
  font-size: 15px; font-weight: 600;
}
.site-nav a { text-decoration: none; }
.site-nav a:hover { text-decoration: underline; }
.auth-slot { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.header-user {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
#clerkUserButton { display: inline-flex; align-items: center; min-height: 32px; }
.auth-btn {
  border-radius: 0; border: 0;
  background: transparent; color: var(--ink);
  padding: 6px 0; font: inherit; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
}
.auth-btn.outline {
  border: 1px solid var(--ink); padding: 7px 14px; background: #fff;
}
.studio-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 12px 22px;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.studio-access:hover,
.studio-access:focus-visible {
  background: var(--ink);
  color: #f4faf7;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(8, 69, 57, 0.18);
}
.studio-access-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 8px;
  max-width: 28rem;
}
.header-user .studio-access,
.auth-slot .studio-access {
  font-size: 16px;
  padding: 8px 16px;
}
.careers, .landing { max-width: 1080px; width: 100%; margin: 0 auto; padding: 36px 40px 80px; }
.beta-banner {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid #c5d5d0;
  background: #f4faf7;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}
.crumb { font-size: 14px; color: var(--muted); margin: 0 0 18px; }
.crumb span { margin: 0 6px; color: var(--ink); }
.careers-head {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; align-items: start; margin-bottom: 0;
}
.careers-mark { display: none; }
.beta-promo-wrap {
  margin: 0 40px 18px;
  padding: 14px;
  background: #f4faf7;
  border: 2px solid #b7dcc8;
  border-radius: 18px;
  min-width: 0;
}
.beta-promo-wrap .beta-banner { margin: 0 0 12px; }
.public-offer { max-width: 720px; margin: 0 auto 28px; padding: 0 24px; }
.public-offer .job-listings { display: grid; gap: 12px; margin: 12px 0 18px; }
.public-offer .beta-promo-wrap { margin: 0; }
.auth-page .public-offer { padding: 0; margin: 24px 0 0; }
.beta-promo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 180px;
  max-height: min(70vh, 560px);
  background: #042c24;
  border: 2px solid #8fbfa6;
  border-radius: 12px;
  box-shadow: 0 0 0 4px #d7eee4;
  object-fit: contain;
  object-position: center top;
}
.home-landing {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "header"
    "promo"
    "main"
    "filter"
    "footer";
  min-height: 100svh;
  overflow-x: hidden;
}
.home-landing > .app-header { grid-area: header; }
.home-landing > .filter-panel { grid-area: filter; }
.home-landing > .beta-promo-wrap {
  grid-area: promo;
  width: min(720px, calc(100% - 48px));
  justify-self: center;
  margin: 12px auto 18px;
}
.home-landing > .careers { grid-area: main; }
.home-landing > .site-footer { grid-area: footer; }
.home-landing .beta-promo {
  max-height: min(48vh, 420px);
  object-fit: contain;
}
.kicker { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: none; letter-spacing: 0; }
.landing h1, .auth-page h1, .studio-head h1, .careers h1 {
  font-size: 32px; line-height: 1.15; letter-spacing: -0.03em; margin: 0 0 14px; font-weight: 800;
}
.lede { font-family: inherit; font-style: normal; font-size: 16px; line-height: 1.55; color: var(--text); margin: 0 0 12px; max-width: 46rem; }
.blog { max-width: 920px; width: 100%; margin: 0 auto; padding: 36px 40px 80px; }
.blog h1 { font-size: 32px; letter-spacing: -0.03em; margin: 0 0 14px; }
.blog h2 { font-size: 20px; margin: 28px 0 10px; }
.blog p, .blog li { line-height: 1.55; }
.blog-card {
  display: block;
  border: 2px solid #8fbfa6;
  border-radius: 12px;
  padding: 18px 20px;
  background: #f4faf7;
  box-shadow: 0 0 0 4px #d7eee4;
}
.blog-card time { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.blog-card h2 { margin: 0 0 8px; font-size: 22px; }
.blog-card h2 a { text-decoration: none; }
.blog-card h2 a:hover { text-decoration: underline; }
.arch-svg-wrap { width: 100%; overflow-x: auto; margin: 0 0 16px; background: #042c24; border: 2px solid #8fbfa6; border-radius: 12px; }
.arch-svg { display: block; width: 100%; height: auto; min-width: 280px; }
.blog-table { width: 100%; max-width: 100%; table-layout: fixed; border-collapse: collapse; background: #fff; font-size: 14px; margin: 0 0 16px; }
.blog-table th, .blog-table td {
  text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.blog-table th { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.blog a.docs, .svc a.docs {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.svc {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 12px;
  background: #fff;
}
.svc h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.svc p { margin: 0 0 8px; }
.svc p:last-child { margin-bottom: 0; }
.svc-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.svc-status.live { background: #e8f3ee; color: #084539; border-color: #8fbfa6; }
.svc-status.planned { background: #fff6e8; color: #7a4b00; border-color: #e4c48a; }
.svc-status.off { background: #f4f4f4; color: #5a5a5a; border-color: #d0d0d0; }
.blog-card + .blog-card { margin-top: 16px; }
.trend-wrap { margin: 22px 0 28px; }
.trend-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 0 0 8px; }
.trend-head h2 { margin: 0; }
.trend-toggle { display: flex; gap: 8px; }
.trend-toggle button {
  font: inherit; font-size: 13px; font-weight: 700; padding: 6px 10px;
  border: 1px solid var(--ink); background: #fff; color: var(--ink); cursor: pointer;
}
.trend-toggle button.on { background: var(--ink); color: #f4faf7; }
.trend-chart { width: 100%; height: auto; display: block; background: #f4faf7; border: 2px solid #b7dcc8; border-radius: 12px; }
.trend-note { font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.hist-head { margin-top: 22px; }
.hist-month {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
}
.hist-month select {
  font: inherit; font-size: 13px; font-weight: 700;
  padding: 6px 10px; border: 1px solid var(--ink); background: #fff; color: var(--ink);
}
.hist-chart .skill-bar { cursor: pointer; }
.hist-chart .skill-bar:hover { fill: #0b6b55; }
.hist-empty { position: relative; }
.hist-empty-msg {
  position: absolute; inset: 28px 24px auto; margin: 0;
  font-size: 14px; color: var(--muted); max-width: 36em;
}
pre.arch {
  overflow-x: auto;
  background: #042c24;
  color: #e8f3ee;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.28;
  border: 2px solid #8fbfa6;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.tag-row > span, .tag-row .badge {
  background: var(--pill); color: var(--ink); border-radius: 4px;
  padding: 5px 10px; font-size: 13px; font-weight: 500;
}
.more-row { display: flex; gap: 18px; font-size: 14px; font-weight: 600; margin: 8px 0 0; }
.more-row a { text-decoration: none; }
.more-row a:hover { text-decoration: underline; }
.filter-panel {
  background: var(--mint); padding: 28px 32px 20px; margin: 28px 0 18px;
}
.filter-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.filter-panel h2 { margin: 0; font-size: 22px; font-weight: 800; }
.filter-search input, .filter-grid input, .filter-grid select {
  font: inherit; width: 100%; border: 0; border-bottom: 1px solid var(--ink);
  background: transparent; padding: 8px 0; color: var(--ink); border-radius: 0;
}
.filter-search input { min-width: 220px; background: #fff; border: 1px solid #d5e3dd; padding: 10px 12px; }
.filter-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px 24px; margin: 22px 0 18px;
}
@media (min-width: 900px) {
  .filter-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.filter-grid label { display: grid; gap: 4px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.az-index {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 4px 0 16px;
  padding: 10px 10px 8px;
  background: #f4faf7;
  border: 2px solid #b7dcc8;
  border-radius: 12px;
}
.az-index button, .az-index a {
  width: 1.85em;
  height: 1.85em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #8fbfa6;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
}
.az-index button:hover, .az-index a:hover, .az-index button.on, .az-index a.on {
  background: var(--ink);
  color: #f4faf7;
  border-color: var(--ink);
}
.az-index button[data-letter="ALL"], .az-index a.az-all {
  width: auto;
  min-width: 2.8em;
  padding: 0 10px;
}
.az-index button:disabled {
  opacity: 0.35;
  cursor: default;
  background: #eef6f2;
}
body:not(.mode-list):not(.mode-table) .az-index { display: none; }
body.letter-sort .az-index {
  position: sticky;
  top: 0;
  z-index: 12;
  background: #f4faf7;
  padding: 8px 4px 10px;
  margin-bottom: 0;
}
.letter-break {
  position: sticky;
  top: 72px;
  z-index: 6;
  font-size: clamp(48px, 12vw, 92px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--ink);
  background: #f4faf7;
  padding: 10px 4px 8px;
  margin: 8px 0 4px;
}
.letter-rail {
  position: fixed;
  right: 18px;
  bottom: 28px;
  z-index: 20;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--ink);
  color: var(--ink-foreground);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 10px 28px rgba(8, 69, 57, 0.28);
}
.letter-rail[hidden] { display: none !important; }
@media (max-width: 860px) {
  .letter-rail { right: 12px; bottom: 16px; width: 56px; height: 56px; font-size: 30px; }
  .letter-break { top: 48px; }
}
.filter-foot { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--muted); }
.powered { opacity: 0.7; }
.job-count { text-align: right; font-size: 14px; font-weight: 600; margin: 8px 0 12px; }
.job-listings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 12px;
}
@media (min-width: 900px) {
  .job-listings { flex-direction: row; align-items: stretch; }
  .job-listing { flex: 1 1 0; min-width: 0; }
}
.job-listing {
  display: block; text-decoration: none; border: 1px solid var(--line);
  padding: 22px 24px 18px; margin: 0; background: #fff;
}
.job-listing[hidden] { display: none !important; }
.job-listing h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.job-meta { margin: 0 0 10px; font-size: 13px; color: var(--muted); }
.apply { display: inline-block; font-size: 14px; font-weight: 700; text-decoration: none; }
.apply:hover { text-decoration: underline; }
.landing-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.action {
  display: inline-flex; border-radius: 0; padding: 10px 16px; font-weight: 700; font-size: 14px; text-decoration: none;
  border: 1px solid var(--ink); color: var(--ink); background: #fff;
}
.action.primary { background: var(--ink); color: var(--ink-foreground); }
.grid-intro { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 48px; }
.grid-intro article { background: var(--panel); border: 1px solid var(--line); border-radius: 0; padding: 18px; }
.grid-intro h2 { margin: 0 0 8px; font-size: 16px; }
.grid-intro p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.site-footer {
  margin-top: auto; padding: 48px 40px 28px; background: var(--ink); color: var(--ink-foreground);
  display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 24px 48px; align-items: start;
}
.site-footer .wordmark { color: #fff; font-size: 32px; }
.foot-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.foot-cols a { display: block; color: #fff; text-decoration: none; font-weight: 600; margin: 0 0 10px; }
.foot-cols a:hover { text-decoration: underline; }
.foot-legal { grid-column: 1 / -1; font-size: 12px; color: var(--ink-muted); margin: 12px 0 0; }
.auth-page { max-width: 520px; margin: 0 auto; padding: 64px 22px; }
.auth-page p { color: var(--muted); }
.studio-head { max-width: 1080px; margin: 0 auto; padding: 28px 40px 8px; }
.studio-head.careers { padding-bottom: 0; }
body.mode-progress .studio-head,
body.mode-report .studio-head,
body.mode-pod .studio-head,
body.mode-table .studio-head {
  max-width: none;
  width: 100%;
}
.toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 8px; }
.toolbar input, .toolbar select {
  font: inherit; padding: 8px 10px; border: 1px solid var(--line); border-radius: 0; background: #fff;
}
.toolbar input[type=search] { flex: 1; min-width: 220px; }
.grid {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 1080px; margin: 0 auto 64px; padding: 16px;
  width: calc(100% - 80px);
  background: #f4faf7;
  border: 2px solid #b7dcc8;
  border-radius: 18px;
}
article.card {
  display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 0;
  border: 2px solid #8fbfa6; border-radius: 12px; overflow: hidden;
  background: #f7fcf9;
  box-shadow: 0 0 0 4px #d7eee4;
  position: relative; z-index: 1; content-visibility: auto;
}
article.card:hover, article.card:focus-within { z-index: 40; border-color: #084539; }
article.card picture, article.card .landing-ph { order: 2; }
article.card picture, article.card img, article.card .landing-ph { width: 100%; height: 100%; min-height: 160px; max-height: 240px; object-fit: cover; object-position: top center; background: var(--mint); display: block; border-radius: 0; }
.flash-anchor { outline: 2px solid var(--ink); outline-offset: 3px; }
.cap { padding: 22px 24px 18px; font-size: 14px; background: #f7fcf9; color: var(--ink); }
.cap strong { display: block; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.cap a { color: var(--primary); }
.meta { color: var(--muted); font-size: 14px; }
@media (max-width: 860px) {
  header.app-header, .careers, .landing, .studio-head, .grid, .table-wrap, .landings, .progress-wrap, .progress-report-wrap, .pod-wrap, .relevant-wrap, .blog { padding-left: 18px; padding-right: 18px; }
  .home-landing > .filter-panel { padding-left: 18px; padding-right: 18px; }
  .landings { width: calc(100% - 36px); margin-left: 18px; margin-right: 18px; }
  .grid { width: calc(100% - 36px); margin-left: 18px; margin-right: 18px; padding: 12px; }
  .site-nav { display: none; }
  .careers-head, .filter-grid { grid-template-columns: 1fr; }
  .job-listings { flex-direction: column; }
  .beta-promo-wrap { margin-left: 18px; margin-right: 18px; }
  article.card { grid-template-columns: 1fr; }
  article.card picture, article.card img, article.card .landing-ph { height: 110px; min-height: 0; max-height: 110px; }
  .site-footer { grid-template-columns: 1fr; padding: 36px 18px 24px; }
}
.disclaimer {
  margin: 14px 0 0;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.disclaimer a { color: var(--primary); font-weight: 650; }
body.mode-table .studio-head .disclaimer,
body.mode-progress .studio-head .disclaimer,
body.mode-report .studio-head .disclaimer,
body.mode-pod .studio-head .disclaimer,
body.mode-profiles .studio-head .disclaimer,
body.mode-landings .studio-head .disclaimer,
body.mode-relevant .studio-head .disclaimer,
body.mode-table .studio-head .csv-spec,
body.mode-progress .studio-head .csv-spec,
body.mode-report .studio-head .csv-spec,
body.mode-pod .studio-head .csv-spec {
  display: none;
}
.table-disclaimer {
  position: static;
  z-index: auto;
  margin: 0 0 12px;
  background: transparent;
  padding: 0;
}
.disclaimer-foot { display: inline-block; margin-top: 6px; font-size: 12px; color: var(--ink-muted); max-width: 42rem; }
.muted { color: var(--muted); }
.badge {
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  background: var(--pill);
  color: var(--ink);
}
.badge.on { background: #d7eee4; color: var(--ink); }
.filter-grid label:has(.view-toggle) { grid-column: 1 / -1; }
.view-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  border: 0;
}
.view-toggle button {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 12px 18px;
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  line-height: 1.25;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.view-toggle button:hover {
  background: #e8f3ee;
  transform: translateY(-1px);
}
.view-toggle button.on {
  background: var(--ink);
  color: #f4faf7;
  box-shadow: none;
}
.table-wrap { max-width: none; margin: 0; padding: 8px 40px 64px; overflow: visible; width: 100%; }
.table-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  padding: 10px 12px;
  background: #f4faf7;
  border: 2px solid #b7dcc8;
  border-radius: 12px;
}
.table-toolbar .auth-btn.on {
  background: var(--ink);
  color: #f4faf7;
}
.table-toolbar .auth-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.table-rec-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.table-wrap.is-hidden, .grid.is-hidden, .landings.is-hidden, .profiles-strip.is-hidden, .progress-wrap.is-hidden, .progress-report-wrap.is-hidden, .pod-wrap.is-hidden, .relevant-wrap.is-hidden { display: none !important; }
.table-scroller { overflow-x: auto; overflow-y: visible; width: 100%; -webkit-overflow-scrolling: touch; }
body.mode-table .grid, body.mode-table .landings, body.mode-table .profiles-strip, body.mode-table .progress-wrap, body.mode-table .progress-report-wrap, body.mode-table .pod-wrap, body.mode-table .relevant-wrap { display: none !important; }
body.mode-list .table-wrap, body.mode-list .landings, body.mode-list .profiles-strip, body.mode-list .progress-wrap, body.mode-list .progress-report-wrap, body.mode-list .pod-wrap, body.mode-list .relevant-wrap { display: none !important; }
body.mode-landings .grid, body.mode-landings .table-wrap, body.mode-landings .profiles-strip, body.mode-landings .progress-wrap, body.mode-landings .progress-report-wrap, body.mode-landings .pod-wrap, body.mode-landings .relevant-wrap { display: none !important; }
body.mode-profiles .grid, body.mode-profiles .table-wrap, body.mode-profiles .landings, body.mode-profiles .progress-wrap, body.mode-profiles .progress-report-wrap, body.mode-profiles .pod-wrap, body.mode-profiles .relevant-wrap { display: none !important; }
body.mode-progress .grid, body.mode-progress .table-wrap, body.mode-progress .landings, body.mode-progress .profiles-strip, body.mode-progress .progress-report-wrap, body.mode-progress .pod-wrap, body.mode-progress .relevant-wrap { display: none !important; }
body.mode-report .grid, body.mode-report .table-wrap, body.mode-report .landings, body.mode-report .profiles-strip, body.mode-report .progress-wrap, body.mode-report .pod-wrap, body.mode-report .relevant-wrap { display: none !important; }
body.mode-pod .grid, body.mode-pod .table-wrap, body.mode-pod .landings, body.mode-pod .profiles-strip, body.mode-pod .progress-wrap, body.mode-pod .progress-report-wrap, body.mode-pod .relevant-wrap { display: none !important; }
body.mode-relevant .grid, body.mode-relevant .table-wrap, body.mode-relevant .landings, body.mode-relevant .profiles-strip, body.mode-relevant .progress-wrap, body.mode-relevant .progress-report-wrap, body.mode-relevant .pod-wrap { display: none !important; }
.progress-wrap,
.progress-report-wrap {
  max-width: none;
  margin: 0;
  padding: 8px 40px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  box-sizing: border-box;
}
body.mode-report .studio-head.careers,
body.mode-report .progress-report-wrap {
  max-width: none;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}
body.mode-report .filter-panel {
  max-width: none;
}
.progress-wrap.progress-landscape {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.progress-toolbar,
.progress-summary,
.progress-uris,
.progress-pane[data-kind="applying"],
.progress-pane[data-kind="machines"],
.credit-money {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.credit-pay { margin-top: 10px; }
.progress-pane[data-kind="credits"] input[data-plan] {
  font: inherit;
  width: 5.5rem;
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.progress-pane[data-kind="credits"],
.progress-pane[data-kind="logs"],
.progress-pane[data-kind="proofs"],
.progress-pane[data-kind="admin"],
.progress-pane[data-kind="report"] {
  grid-column: 1 / -1;
}
.pr-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}
.pr-kpi {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.pr-kpi.on { border-color: #2a7a58; background: #e8f4ee; }
.pr-fav {
  border: 0; background: transparent; padding: 0; cursor: pointer;
  width: 48px; height: 48px; flex-shrink: 0;
}
.pr-fav img { width: 48px; height: 48px; display: block; border-radius: 8px; }
.pr-cards { display: flex; flex-direction: column; gap: 8px; }
.pr-card {
  border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; background: #fff;
}
.pr-card-top { display: flex; gap: 8px; align-items: flex-start; }
.pr-card-top p { margin: 2px 0 0; }
.pr-mail { padding: 8px 4px; }
.pr-mode { min-width: 2.2em; }
.pr-kpi .n { font-size: 22px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.pr-kpi .l { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: #5f746a; }
.pr-kpi.ok .n { color: #1b6b3a; }
.pr-kpi.fail .n { color: #9b2c2c; }
.pr-kpi.prog .n { color: #1d5f8a; }
.pr-kpi.queued .n { color: #5b4a8a; }
.pr-kpi.skip .n { color: #8a6a1d; }
.pr-bars { margin: 0 0 10px; }
.pr-bar {
  display: grid; grid-template-columns: max-content 1fr 3rem; gap: 8px; align-items: center;
  font: inherit; font-size: 12px; width: 100%; border: 0; background: transparent; padding: 2px 0; cursor: pointer; text-align: left;
}
.pr-bar-tip {
  margin: 8px 0 12px; padding: 10px 12px; border: 1px solid #b7dcc8; background: #f4faf7; border-radius: 10px;
  font-size: 13px; line-height: 1.45;
}
.pr-bar-tip code { font-size: 12px; }
.pr-pill.skipped { background: #f3ebd2; color: #8a6a1d; }
.pr-bar i { display: block; height: 7px; background: #2a7a58; border-radius: 4px; }
.pr-bar-l { color: #5f746a; overflow: visible; text-overflow: unset; white-space: nowrap; }
.pr-bar-n { text-align: right; font-variant-numeric: tabular-nums; }
.pr-tools { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pr-tools input[type=search] {
  flex: 1 1 160px; min-width: 140px; font: inherit; padding: 6px 8px;
  border: 1px solid var(--line); border-radius: 8px;
}
.pr-tabs { display: flex; flex-wrap: wrap; gap: 6px; width: 100%; }
.pr-tabs button {
  font: inherit; font-size: 13px; border: 1px solid var(--line); background: #fff;
  border-radius: 999px; padding: 4px 10px; cursor: pointer;
}
.pr-tabs button.on { background: #e8f4ee; border-color: #2a7a58; }
.pr-pill { display: inline-block; padding: 1px 8px; border-radius: 999px; font-size: 12px; background: #eef3f0; }
.pr-pill.success { background: #d9f3e4; color: #1b6b3a; }
.pr-pill.fail { background: #f8dede; color: #9b2c2c; }
.pr-pill.progress { background: #dcecf6; color: #1d5f8a; }
.pr-pill.queued { background: #ece6f6; color: #5b4a8a; }
.pr-pill.skip { background: #f3ebd2; color: #8a6a1d; }
.progress-pane[data-kind="report"] .table-scroller,
#prTableWrap {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
table.studio.pr-table,
.progress-pane[data-kind="report"] table.studio.pr-table {
  width: 100%;
  min-width: 100%;
  max-width: none;
  table-layout: auto;
}
table.studio.pr-table th,
table.studio.pr-table td {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  overflow-wrap: anywhere;
  max-width: none;
  padding: 8px 10px;
  vertical-align: top;
}
.pr-table { font-size: 13px; }
.machine-status { font-variant-numeric: tabular-nums; }
.machine-status.RUNNING { color: #1b6b3a; font-weight: 650; }
.vm-expand {
  font: inherit;
  font-weight: 800;
  border: 1px solid #8fbfa6;
  background: #fff;
  border-radius: 6px;
  width: 1.8em;
  padding: 2px 0;
  margin-right: 6px;
  cursor: pointer;
}
.vm-row.is-open { background: #eaf6f0; }
.vm-cost { font-variant-numeric: tabular-nums; white-space: nowrap; }
.vm-nested td { background: #f7fcf9; padding: 8px 10px 12px; }
.vm-shot-table { width: 100%; }
.vm-shot-thumb {
  width: 160px;
  max-width: 28vw;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}
.machine-toolbar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 10px; }
.machine-toolbar input[type="number"],
.machine-toolbar input[type="datetime-local"] {
  font: inherit; padding: 6px 8px; border: 1px solid var(--line); border-radius: 8px;
}
.apply-log-box {
  min-height: 16.5em;
  max-height: 16.5em;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--line);
  background: #0f2a24;
  color: #e8f3ee;
  padding: 8px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.5;
}
.apply-log-line { white-space: pre-wrap; word-break: break-word; }
.apply-log-line time { color: #9ec9bb; margin-right: 8px; }
.apply-log-line.log-error { color: #ffb4b4; }
.apply-log-line.log-event { color: #cfe8a9; }
.apply-log-line.log-info { color: #e8f3ee; }
.proof-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.proof-thumbs figure { margin: 0; }
.proof-thumbs img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}
.proof-thumbs figcaption { font-size: 12px; color: var(--muted); margin-top: 4px; }
.proof-card { margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.service-pick { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; font-size: 14px; }
.progress-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.progress-toolbar .auth-btn.on {
  background: var(--ink);
  color: #f4faf7;
}
.progress-pane {
  background: #f4faf7;
  border: 2px solid #8fbfa6;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 0 0 4px #d7eee4;
  min-width: 0;
}
.progress-pane table.studio {
  background: #f7fcf9;
  min-width: 0;
  width: 100%;
}
.progress-pane tbody tr.co {
  cursor: grab;
}
.progress-pane tbody tr.co.dragging {
  opacity: 0.55;
}
.progress-pane.is-drop {
  outline: 2px dashed var(--ink);
  outline-offset: 2px;
}
.progress-move {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}
.progress-move button {
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 3px 7px;
  border: 1px solid #8fbfa6;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.progress-wrap.progress-portrait .progress-move { display: none; }
.progress-wrap.progress-landscape .progress-pane tbody tr.co { cursor: default; }
@media (min-width: 1100px) {
  .progress-wrap:not(.progress-portrait) { grid-template-columns: 1fr 1fr; align-items: start; }
}
.progress-summary {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
}
.progress-uris {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.progress-uris a { color: var(--primary); font-weight: 650; text-decoration: none; }
.progress-uris a:hover { text-decoration: underline; }
.progress-wrap.progress-landscape .progress-pane[data-kind="applied"],
.progress-wrap.progress-landscape .progress-pane[data-kind="interview"] {
  min-height: 12rem;
}
.progress-pane h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}
.progress-pane h2 span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.progress-pane[data-kind="logs"] h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
}
.progress-pane[data-kind="logs"] h2 span { display: inline; margin: 0; flex: 1; }
.progress-pane[data-kind="logs"] .log-actions { display: flex; flex-wrap: wrap; gap: 6px; }
.progress-pane[data-kind="logs"] #clearApplyLogs,
.progress-pane[data-kind="logs"] .log-actions .auth-btn { font-size: 13px; padding: 6px 10px; }
.apply-log-box { user-select: text; -webkit-user-select: text; }
.apply-log-meta { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; }
.apply-log-msg { margin: 4px 0 0; white-space: pre-wrap; word-break: break-word; font: inherit; }
.log-copy { font: inherit; font-size: 11px; padding: 1px 6px; border: 1px solid #8fbfa6; background: #14352d; color: #e8f3ee; border-radius: 4px; cursor: pointer; }
.interview-row.day-break td { border-top: 4px solid #084539; }
.interview-row.meet-pending { background: #fde8e8; }
.interview-row.meet-pending td { color: #8a1f1f; }
.meet-nudge { display: inline-flex; flex-direction: column; margin-left: 4px; }
.meet-nudge button { font: inherit; font-size: 11px; line-height: 1; padding: 1px 5px; }
.interview-grid input, .interview-grid select {
  font: inherit; font-size: 12px; max-width: 9.5rem; padding: 3px 5px;
  border: 1px solid var(--line); border-radius: 6px;
}
.interview-grid .meet-url, .interview-grid .meet-emails { max-width: 12rem; }
.progress-pane[data-kind="logs"] #clearApplyLogs { font-size: 13px; padding: 6px 10px; }
.progress-pane th.num, .progress-pane td.num { text-align: right; width: 3.2em; font-variant-numeric: tabular-nums; }
.landings {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 16px;
  width: calc(100% - 80px);
  background: #e7f6ee;
  border: 3px solid #1b6b3a;
  border-radius: 18px;
}
.profiles-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  max-width: none;
  margin: 0 40px 64px;
  padding: 12px;
  background: #f4faf7;
  border: 2px solid #8fbfa6;
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
}
.profile-strip-tile {
  flex: 0 0 180px;
  margin: 0;
  padding: 0;
  border: 2px solid #8fbfa6;
  border-radius: 12px;
  background: #f4faf7;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.profile-strip-tile img, .profile-strip-tile picture, .profile-strip-tile .landing-ph {
  width: 100%; height: 120px; object-fit: cover; object-position: top center; display: block;
}
.shot-overlay-info {
  max-width: 42rem;
  margin: 8px auto 0;
  padding: 10px 12px;
  background: #f4faf7;
  border: 2px solid #8fbfa6;
  border-radius: 10px;
  color: var(--ink);
  text-align: left;
  font-size: 14px;
}
.landing-tile {
  margin: 0;
  padding: 0;
  border: 2px solid #1b6b3a;
  border-radius: 12px;
  background: #f4faf7;
  box-shadow: 0 0 0 4px #d7eee4;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 180px;
}
.landing-tile:hover, .landing-tile:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.landing-tile picture { display: block; width: 100%; }
.landing-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  background: var(--mint);
  display: block;
}
.landing-ph {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e7f6ee 0%, #d7eee4 100%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  min-height: 96px;
}
.landing-cap { padding: 10px 12px 12px; }
.landing-cap strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.landing-cap span, .landing-cap a { font-size: 12px; color: var(--muted); text-decoration: none; }
.landing-cap a:hover { text-decoration: underline; }
table.studio { width: 100%; min-width: 0; max-width: 100%; table-layout: fixed; border-collapse: collapse; background: #fff; font-size: 14px; }
table.studio > thead th {
  position: relative;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 10px 14px 10px 8px;
  overflow: hidden;
}
.col-resizer {
  position: absolute;
  top: 0;
  right: -4px;
  width: 9px;
  height: 100%;
  cursor: col-resize;
  z-index: 3;
  user-select: none;
  touch-action: none;
}
.col-resizer::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 3px;
  width: 2px;
  background: #8fbfa6;
  border-radius: 2px;
}
.col-resizer:hover::after, .col-resizer.is-drag::after { background: var(--ink); }
.status-cell { container-type: inline-size; }
.status-cell .st-short { display: none; font-size: 22px; font-weight: 800; line-height: 1; }
@container (max-width: 3.2em) {
  .status-cell[data-status="queued"] .st-full { display: none; }
  .status-cell[data-status="queued"] .st-short { display: inline; }
}
.graph-node { cursor: pointer; }
.admin-taskbar {
  position: sticky; top: 0; z-index: 30;
  display: grid; gap: 8px;
  padding: 10px 16px;
  background: rgba(8, 69, 57, 0.78);
  color: #f4faf7;
  font-size: 13px;
  backdrop-filter: blur(8px);
}
.admin-taskbar[hidden] { display: none !important; }
.admin-taskbar .task-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.admin-taskbar progress { width: 140px; height: 8px; }
.admin-taskbar table.studio { background: rgba(255,255,255,0.92); color: var(--ink); }
.admin-taskbar table.studio td, .admin-taskbar table.studio th {
  border-bottom: 1px solid #c5d5d0; padding: 8px 10px;
}
.shot-load { display: flex; gap: 8px; align-items: center; }
.skill-sheet { max-width: min(560px, calc(100vw - 24px)); }
.skill-sheet h2 { margin: 0 0 6px; font-size: 20px; }
.skill-sheet .lvl { margin-top: 12px; }
table.studio > tbody > tr.co > td { border-bottom: 1px solid var(--line); padding: 12px 8px; vertical-align: top; }
table.studio > tbody > tr.co td:first-child strong { font-size: 15px; }
table.studio a { color: var(--primary); }
.exp {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  width: 22px;
}
table.studio tr.nested td { background: var(--mint); padding: 8px 8px 16px 36px; }
table.studio, table.jobs, .blog-table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}
table.jobs { border-collapse: collapse; font-size: 13px; }
table.jobs th, table.jobs td { border-bottom: 1px solid var(--line); padding: 8px 6px; text-align: left; vertical-align: top; }
table.jobs th { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
table.studio th, table.studio td,
table.jobs th, table.jobs td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
table.jobs td:has(.skill-pills),
table.studio td.auto-cell,
table.studio tr.nested td {
  overflow: visible;
  white-space: normal;
  text-overflow: unset;
}
.skill-pills { display: flex; flex-wrap: wrap; gap: 6px; position: relative; }
.skill-pill {
  position: relative;
  display: inline-block;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 4px 10px;
  font: inherit;
  font-size: 12px;
  color: inherit;
  appearance: none;
}
.skill-pill b { font-weight: 650; }
.skill-pill { cursor: pointer; }
.skill-pill.open { background: var(--mint); }
.skill-float {
  position: fixed;
  z-index: 2147483000;
  width: min(320px, calc(100vw - 24px));
  max-height: min(70vh, 480px);
  overflow: auto;
  display: grid;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 12px 12px;
  box-shadow: 0 12px 28px rgba(12,34,38,.16);
  text-align: left;
}
.skill-float[hidden] { display: none !important; }
.skill-float-close {
  position: absolute;
  top: 6px;
  right: 8px;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
}
.skill-overlay strong, .skill-float strong { font-size: 13px; }
tr.nested td { overflow: visible; white-space: normal; }
.lvl { display: grid; gap: 4px; margin-bottom: 8px; }
.lvl b { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.lvl b.beginner { color: #0f7a3a; }
.lvl b.advanced { color: #9b2c2c; }
a.course { font-size: 12px; text-decoration: none; line-height: 1.35; }
a.course.beginner { color: #0f7a3a; }
a.course.advanced { color: #9b2c2c; }
a.course:hover { text-decoration: underline; }
button.auth-btn, label.auth-btn { cursor: pointer; }
.csv-spec { font-size: 12px; }
button.linkish {
  border: 0;
  background: none;
  color: var(--primary);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.auto-bubbles { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.auto-cell { width: 220px; text-align: right; }
.auto-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: default;
}
.auto-bubble b { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
.auto-bubble.ok { background: #d9f3e3; color: #0f7a3a; }
.auto-bubble.no { background: #fde0e0; color: #9b2c2c; }
.auto-bubble.maybe { background: #fff3c4; color: #8a6d00; }
.auto-tip {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 8;
  width: 280px;
  white-space: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 12px 28px rgba(12,34,38,.16);
}
.auto-bubble:hover .auto-tip, .auto-bubble:focus .auto-tip { display: none; }
.policy-toast {
  position: fixed;
  z-index: 2147483000;
  width: min(320px, calc(100vw - 24px));
  max-height: min(70vh, 420px);
  overflow: auto;
  white-space: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 24px 64px rgba(12,34,38,.28);
}
.policy-toast strong { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.policy-toast p { margin: 0 0 8px; }
.policy-toast.wide { width: min(520px, calc(100vw - 24px)); }
.policy-docs { display: grid; gap: 4px; margin: 8px 0; }
.policy-box { margin: 4px 0 16px; }
.policy-list { display: grid; gap: 6px; }
.policy-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.policy-row > summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(90px, auto) minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 10px 12px;
}
.policy-row > summary::-webkit-details-marker { display: none; }
.policy-row[open] > summary { border-bottom: 1px solid var(--line); }
.policy-row-name { font-weight: 700; }
.policy-row-url { font-size: 12px; color: var(--muted); word-break: break-all; }
.policy-verdicts { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.policy-v {
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.policy-v.ok { background: #d9f3e3; color: #0f7a3a; }
.policy-v.no { background: #fde0e0; color: #9b2c2c; }
.policy-v.maybe { background: #fff3c4; color: #8a6d00; }
.policy-row-body { padding: 10px 12px 12px; }
.policy-snip {
  margin: 0 0 8px;
  padding: 8px 10px;
  background: oklch(0.97 0.012 175);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
}
@media (max-width: 720px) {
  .policy-row > summary {
    grid-template-columns: 1fr;
  }
  .policy-verdicts { justify-content: flex-start; }
}
a.policy-doc, a.policy-disallow { color: var(--primary); font-size: 12px; font-weight: 650; word-break: break-all; text-decoration: none; }
a.policy-doc:hover, a.policy-disallow:hover { text-decoration: underline; }
.consulted { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.policy-excerpt {
  margin: 0 0 8px; padding: 8px 10px; background: #fde0e0; color: #9b2c2c;
  border-radius: 10px; font-size: 12px; font-weight: 500;
}
.policy-frame {
  width: 100%; height: 220px; border: 1px solid var(--line); border-radius: 10px; background: #fff; margin-top: 8px;
}
.th-career { min-width: 520px; width: 46%; }
.th-career input {
  display: block; margin-top: 6px; width: 100%; font: inherit; font-size: 12px; font-weight: 500;
  text-transform: none; letter-spacing: 0; color: var(--text);
  padding: 6px 8px; border: 1px solid var(--line); border-radius: 999px; background: #fff;
}
th[data-sort] { cursor: pointer; }
.career-cell {
  min-width: 520px;
  white-space: nowrap;
  overflow: hidden;
}
.career-cell a {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}
body.mode-list #expandAll, body.mode-landings #expandAll, body.mode-profiles #expandAll, body.mode-progress #expandAll, body.mode-report #expandAll, body.mode-pod #expandAll, body.mode-relevant #expandAll { display: none; }
.cv-chip {
  font-size: 12px;
  font-weight: 650;
  color: var(--ink-muted);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.relevant-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 40px 64px;
  width: 100%;
  display: grid;
  gap: 16px;
}
.cv-needed {
  background: #fff8d6;
  border: 1px solid #e8c547;
  border-radius: 14px;
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.5;
}
.cv-needed b { font-weight: 800; }
.relevant-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
}
.relevant-card h3 { margin: 0 0 6px; font-size: 18px; }
.relevant-score { font-size: 12px; font-weight: 700; color: var(--muted); margin: 0 0 8px; }
.relevant-jobs { margin: 0; padding-left: 1.1em; }
.relevant-jobs li { margin: 4px 0; font-size: 14px; }
.relevant-jobs a { color: var(--primary); font-weight: 650; }
.relevant-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.relevant-actions .auth-btn { font-size: 13px; }
#docsModal label { display: block; margin: 10px 0; font-weight: 650; }
#docsModal input[type=file] { display: block; margin-top: 6px; font-weight: 500; }
#docsModal .action { margin-top: 6px; }
#docsCvFile { font-weight: 700; }
.upload-progress {
  margin: 12px 0;
  padding: 10px 12px;
  border: 1px solid #b7dcc8;
  background: #f4faf7;
}
.upload-progress progress {
  display: block;
  width: 100%;
  height: 14px;
  margin-top: 6px;
  accent-color: #1b8f4a;
}
.upload-progress .meta { margin: 0; }
.exp-job {
  border: 0; background: transparent; cursor: pointer; font: inherit; width: 22px;
}
tr.job-line { cursor: pointer; }
tr.job-line:hover { background: var(--mint); }
tr.job-detail td { background: #fff; padding: 12px 12px 16px 36px; }
.skill-cloud { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 8px 0 12px; }
.cloud-col { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.cloud-lab { width: 100%; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.cloud-tag {
  display: inline-flex; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 650; text-decoration: none;
}
.cloud-tag.hard { background: #d9eef8; color: #0c4a6e; }
.cloud-tag.soft { background: #f3e8d9; color: #6b3f12; }
.job-warn {
  background: #fff3c4; color: #8a6d00; border-radius: 12px; padding: 10px 12px; margin-bottom: 10px; font-size: 13px;
}
.job-warn a { color: var(--primary); font-weight: 700; }
.stale-btn {
  font: inherit; font-weight: 650; font-size: 13px; border-radius: 999px; border: 1px solid #9b2c2c;
  background: #fff; color: #9b2c2c; padding: 8px 14px; cursor: pointer;
}
.stale-btn:disabled { opacity: 0.6; cursor: default; }
@media (max-width: 720px) {
  .skill-cloud { grid-template-columns: 1fr; }
}
.co-intel { margin: 0 0 8px; }
.co-brief {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.co-brief p { margin: 0 0 8px; font-size: 13px; line-height: 1.5; }
.co-desc { font-size: 14px; }
.src-lab {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-right: 8px;
  vertical-align: top;
}
.graph-legend { font-size: 16px; line-height: 1.55; color: var(--muted); max-width: none; margin: 0; padding: 0 24px 12px; }
.graph-add {
  margin: 0;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.graph-modal .graph-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 24px 10px;
  flex-shrink: 0;
}
.graph-modal .graph-bar h2 {
  margin: 0 0 6px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.graph-tools { display: flex; gap: 8px; flex-wrap: wrap; }
.graph-tools .action { min-width: 44px; justify-content: center; font-size: 16px; }
.shot-overlay[hidden] { display: none !important; }
.shot-overlay {
  position: fixed;
  z-index: 40;
  pointer-events: none;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(12,34,38,0.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12,34,38,.18);
}
.shot-overlay img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;
  background: transparent;
  opacity: 0.58;
}
.shot-overlay p {
  margin: 0;
  padding: 8px 12px 10px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,0.5);
}
.shot-overlay.is-lightbox {
  pointer-events: auto;
  inset: 0;
  width: auto !important;
  left: 0 !important;
  top: 0 !important;
  border-radius: 0;
  background: rgba(8, 69, 57, 0.86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  z-index: 80;
}
.shot-overlay.is-lightbox img {
  width: auto;
  height: auto;
  max-width: min(1100px, 94vw);
  max-height: 82vh;
  object-fit: contain;
  opacity: 1;
  background: #fff;
}
.shot-overlay.is-lightbox p {
  margin-top: 10px;
  background: transparent;
  color: #fff;
  font-weight: 650;
}
.shot-overlay.is-lightbox p a { color: #fff; text-decoration: underline; }
.auth-btn.bell, .auth-btn.mail-ico { position: relative; }
.mail-wrap { position: relative; display: inline-flex; align-items: center; }
.mail-pop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  z-index: 80;
  width: min(380px, calc(100vw - 24px));
  max-height: min(70vh, 440px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 2px solid #8fbfa6;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(8, 69, 57, 0.18);
  padding: 10px 0 8px;
}
@media (max-width: 640px) {
  .mail-pop {
    position: fixed;
    top: auto;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: min(60vh, 420px);
  }
}
.mail-pop-head { margin: 0 14px 8px; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.mail-pop-row {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 8px 14px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.mail-pop-row:hover { background: #e8f3ee; }
.mail-pop-row b { display: block; font-size: 13px; overflow-wrap: anywhere; white-space: normal; }
.mail-pop-row span { display: block; font-size: 12px; color: var(--muted); overflow-wrap: anywhere; white-space: normal; }
.mail-pop-row.unread b { font-weight: 800; }
.mail-open-all { display: block; margin: 8px 14px 4px; font-size: 13px; font-weight: 700; }
.bell-count {
  display: inline-flex;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
}
dialog.sheet {
  width: min(560px, calc(100vw - 24px));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 24px 64px rgba(12,34,38,.28);
}
dialog.sheet::backdrop { background: rgba(12,34,38,.45); }
dialog.sheet h2 { margin: 0 0 8px; font-size: 22px; }
dialog.sheet label { display: grid; gap: 4px; font-size: 13px; font-weight: 650; margin: 12px 0; }
dialog.sheet input {
  font: inherit;
  font-weight: 500;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
dialog.sheet menu { display: flex; gap: 8px; justify-content: flex-end; margin: 18px 0 0; padding: 0; }
dialog.sheet.pay-sheet { width: min(420px, calc(100vw - 24px)); }
dialog.sheet menu.pay-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  justify-content: flex-start;
}
dialog.sheet menu.pay-actions .action {
  width: 100%;
  justify-content: center;
  min-height: 44px;
  white-space: normal;
  text-align: center;
}
#payGocardless { display: none !important; }
dialog.sheet h3 { margin: 18px 0 6px; font-size: 15px; }
dialog#entityGraph.graph-modal {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  inset: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #fff;
  box-shadow: none;
}
dialog#entityGraph.graph-modal[open] { display: flex; flex-direction: column; }
dialog#entityGraph.graph-modal::backdrop { background: rgba(8, 69, 57, 0.72); }
#graphViewport {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
  touch-action: none;
  border-top: 1px solid var(--line);
  background: #fbfcfb;
  cursor: grab;
}
#graphViewport.is-panning { cursor: grabbing; }
#graphSvg { width: 100%; height: 100%; display: block; max-height: none; }
.template-links { margin: 8px 0 12px; font-size: 13px; }
.inbox-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  margin: 10px 0;
  background: #fff;
}
.inbox-item h3 { margin: 0 0 4px; font-size: 16px; }
.tick {
  border: 0;
  background: #0f7a3a;
  color: #fff;
  font: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}
.tick.reject { background: #9b2c2c; }
table.studio tr.co { cursor: pointer; }
table.studio tr.co:hover { background: var(--mint); }

#feature-request { display: grid; gap: 8px; min-width: min(20rem, 100%); margin: 8px 0 0; }
#feature-request input, #feature-request textarea, #feature-request button {
  font: inherit; padding: 8px 10px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: inherit;
}
#feature-request textarea { min-height: 4.2rem; resize: vertical; }
#feature-request button { cursor: pointer; font-weight: 650; background: #f4f7f6; color: #142428; border: 0; }

.footer-action-btn {
  font: inherit; cursor: pointer; background: transparent; color: inherit;
  border: 1px solid currentColor; border-radius: 999px; padding: 6px 12px;
  font-size: 13px; font-weight: 650;
}
.graphai-dialog {
  border: 0; border-radius: 16px; padding: 16px;
  max-width: min(520px, calc(100vw - 24px)); color: #142428; background: #fff;
}
.graphai-dialog::backdrop { background: rgba(12, 34, 38, .55); }
.graphai-dialog-close {
  float: right; border: 0; background: transparent; font-size: 22px; line-height: 1; cursor: pointer;
}
#feature-request { display: grid; gap: 8px; margin-top: 8px; }
#feature-request input, #feature-request textarea, #feature-request button {
  font: inherit; padding: 8px 10px; border-radius: 10px;
  border: 1px solid #d5e0dc; background: #fff; color: #142428;
}
#feature-request button[type="submit"] { cursor: pointer; font-weight: 650; background: #142428; color: #f4f7f6; border: 0; }

#feature-request-dialog.graphai-dialog {
  width: min(1560px, calc(100vw - 32px));
  max-width: min(1560px, calc(100vw - 32px));
  height: min(960px, calc(100vh - 32px));
  min-height: min(720px, calc(100vh - 32px));
  max-height: calc(100vh - 24px);
  padding: 28px 32px;
  box-sizing: border-box;
}
#feature-request-dialog #feature-request {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  height: calc(100% - 2.5rem);
  min-height: 0;
  min-width: 0;
  margin-top: 12px;
}
#feature-request-dialog #feature-request input,
#feature-request-dialog #feature-request textarea,
#feature-request-dialog #feature-request button {
  font-size: 1.05rem;
  padding: 12px 14px;
}
#feature-request-dialog #feature-request textarea {
  min-height: 24rem;
  height: 100%;
  resize: vertical;
}
.pod-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 40px 80px;
  width: 100%;
  box-sizing: border-box;
}
body.mode-pod .studio-head.careers,
body.mode-pod .pod-wrap {
  max-width: none;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
body.mode-pod .az-index { display: none; }
.pod-pane { max-width: 860px; margin: 0 auto; }
.pod-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.pod-pane h2 { margin: 0 0 8px; font-size: 28px; line-height: 1.2; }
.pod-pane h2 span { display: block; font-size: 15px; font-weight: 600; color: var(--muted); margin-top: 6px; }
.pod-note { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
.pod-match {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  background: #f4faf7;
  border: 2px solid #b7dcc8;
  border-radius: 14px;
  padding: 16px 18px;
  margin: 0 0 18px;
}
.pod-match-n { font-size: 42px; font-weight: 800; line-height: 1; }
.pod-match-n small { font-size: 18px; font-weight: 700; margin-left: 2px; }
.pod-match-l { margin: 0; font-weight: 800; }
.pod-meter {
  height: 8px;
  background: #d7eee4;
  border-radius: 99px;
  overflow: hidden;
  margin-top: 8px;
}
.pod-meter i { display: block; height: 100%; background: #084539; }
.pod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 0 0 14px;
}
.pod-card h3 { margin: 0 0 10px; font-size: 18px; }
.pod-card p { margin: 0 0 10px; font-size: 15px; line-height: 1.55; }
.pod-skills { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pod-skills li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: #fbfcfb;
}
.pod-skills li.hit { border-color: #8fbfa6; background: #f4faf7; }
.pod-skills li.miss { border-color: #e8d9a8; background: #fffdf6; }
.pod-skill-top { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; margin-bottom: 6px; }
.pod-skill-top span { font-size: 12px; font-weight: 700; color: var(--muted); }
.pod-skills p { margin: 0; font-size: 14px; line-height: 1.5; }
.pod-cover-card textarea {
  width: 100%;
  min-height: 22rem;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-sizing: border-box;
  resize: vertical;
}
.pod-cover-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 12px 0 0; }
@media (max-width: 860px) {
  body.mode-pod .pod-wrap { padding-left: 18px; padding-right: 18px; }
  .pod-match { grid-template-columns: 1fr; }
}
.cala-steps {
  padding: 10px 16px 14px;
  border-top: 1px solid var(--line);
  background: #fbfcfb;
}
.cala-panel {
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  line-height: 1.45;
}
.cala-panel p { margin: 0 0 8px; }
.intel-row { align-items: end; }
.intel-row label { display: grid; gap: 4px; font-size: 13px; font-weight: 650; }
.intel-row select, .intel-row input[type="url"] {
  font: inherit; min-width: 16rem; padding: 8px 10px; border: 1px solid var(--line); background: #fff;
}
