:root {
  --bg: #000000;
  --bg-1: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);
  --fg: #ffffff;
  --fg-dim: rgba(255, 255, 255, 0.65);
  --fg-faint: rgba(255, 255, 255, 0.40);
  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.10);
  --accent-fg: #000000;
  --density: 1;
  --maxw: 1480px;
  --pad: clamp(20px, 4vw, 56px);
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', monospace;
}

[data-theme="light"] {
  --bg: #ffffff;
  --bg-1: #f7f7f5;
  --bg-2: #efefec;
  --bg-3: #e6e6e2;
  --line: rgba(0, 0, 0, 0.10);
  --line-strong: rgba(0, 0, 0, 0.22);
  --fg: #000000;
  --fg-dim: rgba(0, 0, 0, 0.62);
  --fg-faint: rgba(0, 0, 0, 0.42);
  --accent: #000000;
  --accent-soft: rgba(0, 0, 0, 0.08);
  --accent-fg: #ffffff;
}
[data-theme="light"] .logo img,
[data-theme="light"] .hero-logo,
[data-theme="light"] .footer-logo {
  filter: invert(1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--accent-fg); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ---- type ramp ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--fg);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 2px;
  box-shadow: 0 0 12px 2px rgba(255,255,255,0.25);
}
.h-display {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
  font-size: clamp(56px, 11vw, 196px);
  margin: 0;
}
.h-display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.h-section {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(40px, 6vw, 88px);
  margin: 0;
}
.h-section em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.h3 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 0;
}
.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--fg-dim);
  max-width: 60ch;
  text-wrap: pretty;
}
.body { font-size: 15px; line-height: 1.55; color: var(--fg-dim); }
.mono { font-family: var(--mono); }

/* ---- layout ---- */
.shell { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.full { width: 100%; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: calc(120px * var(--density)); padding-bottom: calc(120px * var(--density)); position: relative; }
.section--tight { padding-top: calc(72px * var(--density)); padding-bottom: calc(72px * var(--density)); }
.divider { height: 1px; background: var(--line); width: 100%; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  padding: 0 var(--pad);
}
.logo {
  display: flex; align-items: center;
  height: 36px;
  flex-shrink: 0;
}
.logo img {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--fg-dim);
  transition: color 160ms ease, background 160ms ease;
  font-weight: 450;
}
.nav-link:hover { color: var(--fg); background: var(--bg-2); }
.nav-link.is-active { color: var(--fg); background: var(--bg-2); }
.nav-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
@media (max-width: 1100px) {
  .nav-link { padding: 8px 10px; font-size: 13px; }
}
.nav-socials {
  display: flex; align-items: center; gap: 4px;
  padding-right: 6px;
  margin-right: 2px;
  border-right: 1px solid var(--line);
}
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  color: var(--fg-dim);
  transition: color 160ms ease, background 160ms ease;
}
.social-link:hover { color: var(--fg); background: var(--bg-2); }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  color: var(--fg-dim);
  transition: color 160ms ease, background 160ms ease;
  margin-right: 4px;
}
.theme-toggle:hover { color: var(--fg); background: var(--bg-2); }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-socials { display: none; }
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--accent-fg); }
.btn--primary:hover { transform: translateY(-1px); }
.btn--ghost { color: var(--fg); border-color: var(--line-strong); background: transparent; }
.btn--ghost:hover { background: var(--bg-2); border-color: var(--fg-faint); }
.btn--quiet { color: var(--fg-dim); padding: 8px 12px; }
.btn--quiet:hover { color: var(--fg); }
.btn .arrow { transition: transform 160ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- chips / tags ---- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--fg-dim);
  background: transparent;
  white-space: nowrap;
}
.chip--accent { color: var(--bg); border-color: var(--fg); background: var(--fg); }
.chip--solid { color: var(--fg); border-color: var(--line-strong); background: var(--bg-2); }

/* ---- hero ---- */
.hero {
  position: relative;
  padding-top: calc(60px * var(--density));
  padding-bottom: calc(80px * var(--density));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 35%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 35%, black, transparent 70%);
  pointer-events: none;
}
.hero-meta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-display {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin: 0;
}
.hero-logo {
  display: block;
  width: clamp(280px, 56vw, 880px);
  height: auto;
  margin-left: -8px;
}
.hero-tag {
  font-family: var(--serif);
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--fg);
  font-style: normal;
  font-weight: 400;
  margin: 0;
}
.hero-tag em { font-style: italic; color: var(--fg-dim); }
.hero-bottom {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  margin-top: 64px;
  align-items: end;
}
@media (max-width: 880px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---- ticker ---- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  display: flex; gap: 56px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background: var(--bg-1);
}
.ticker-track {
  display: flex; gap: 56px;
  animation: ticker 60s linear infinite;
  flex-shrink: 0;
  padding-right: 56px;
}
.ticker-item {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  display: inline-flex; align-items: center; gap: 14px;
}
.ticker-item .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent);
  animation: pulse 1.8s ease-out infinite;
}
.ticker-item .salary { color: var(--fg); }
.ticker-item .sep { color: var(--fg-faint); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ---- stat block ---- */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
}
.stat-num em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.stat-num .unit { color: var(--fg-faint); margin-left: 4px; }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 14px;
}
@media (max-width: 880px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

/* ---- logo ledger ---- */
.ledger {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
}
.ledger-side {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.ledger-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.ledger-cell {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 110px;
  justify-content: center;
}
.ledger-cell:nth-child(6n) { border-right: 0; }
.ledger-cell:nth-last-child(-n+6) { border-bottom: 0; }
.ledger-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.ledger-name {
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--fg);
}
@media (max-width: 1100px) {
  .ledger { grid-template-columns: 1fr; }
  .ledger-side { border-right: 0; border-bottom: 1px solid var(--line); }
  .ledger-grid { grid-template-columns: repeat(3, 1fr); }
  .ledger-cell:nth-child(6n) { border-right: 1px solid var(--line); }
  .ledger-cell:nth-child(3n) { border-right: 0; }
  .ledger-cell:nth-last-child(-n+6) { border-bottom: 1px solid var(--line); }
  .ledger-cell:nth-last-child(-n+3) { border-bottom: 0; }
}

/* ---- "how" rail ---- */
.how-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-step {
  padding: 32px 24px 100px;
  border-right: 1px solid var(--line);
  position: relative;
  min-height: 280px;
}
.how-step:last-child { border-right: 0; }
.how-step .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg);
}
.how-step h4 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 18px 0 10px;
  line-height: 1.1;
}
.how-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-dim);
  margin: 0;
}
.how-step .timestamp {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.06em;
}
@media (max-width: 1024px) {
  .how-row { grid-template-columns: 1fr 1fr; }
  .how-step { border-bottom: 1px solid var(--line); min-height: 240px; }
  .how-step:nth-child(2n) { border-right: 0; }
  .how-step:last-child { grid-column: 1 / -1; border-right: 0; }
}

/* ---- role cards ---- */
.role-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.role-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 2.4fr) minmax(0, 1.2fr) minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 200ms ease, padding 200ms ease;
  position: relative;
}
.role-card:last-child { border-bottom: 0; }
.role-card:hover { background: var(--bg-1); padding-left: 40px; }
.role-card .rid {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
}
.role-card .rtitle {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.role-card .rcompany {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--fg-dim);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.role-card .rmeta {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.role-card .rcomp {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg);
}
.role-card .rcomp .ccy { color: var(--fg-faint); margin-right: 2px; }
.role-card .rarrow {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--fg-dim);
  transition: background 160ms, color 160ms, border-color 160ms;
}
.role-card:hover .rarrow { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
@media (max-width: 1024px) {
  .role-card {
    grid-template-columns: 1fr auto;
    grid-template-areas: "id arrow" "title title" "meta meta" "comp comp";
    gap: 8px;
    padding: 22px;
  }
  .role-card .rid { grid-area: id; }
  .role-card .rarrow { grid-area: arrow; }
  .role-card > :nth-child(2) { grid-area: title; }
  .role-card > :nth-child(3) { grid-area: meta; }
  .role-card > :nth-child(4) { grid-area: comp; }
  .role-card:hover { padding-left: 22px; }
}

/* ---- testimonials ---- */
.tcards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tcard {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 360px;
}
.tcard:last-child { border-right: 0; }
.tcard .quote {
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-wrap: pretty;
}
.tcard .who {
  margin-top: 36px;
  display: flex; align-items: center; gap: 12px;
}
.tcard .ava {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg);
  display: grid; place-items: center;
}
.tcard .who-meta { font-size: 13px; }
.tcard .who-meta .name { color: var(--fg); font-weight: 500; }
.tcard .who-meta .role { color: var(--fg-dim); font-family: var(--mono); font-size: 11px; }
@media (max-width: 1024px) {
  .tcards { grid-template-columns: 1fr; }
  .tcard { border-right: 0; border-bottom: 1px solid var(--line); }
  .tcard:last-child { border-bottom: 0; }
}

/* ---- two-up split ---- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.split > div {
  padding: 60px 40px;
  border-right: 1px solid var(--line);
  position: relative;
}
.split > div:last-child { border-right: 0; }
.split h3 {
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 18px 0 18px;
}
.split h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.split ul { list-style: none; padding: 0; margin: 24px 0 0; }
.split li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.split li .tick {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg);
  margin-top: 3px;
  flex-shrink: 0;
}
.split-cta { margin-top: 32px; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .split > div:last-child { border-bottom: 0; }
}

/* ---- footer ---- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-mark {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.85;
}
.footer-mark em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 6px 0; }
.footer-col a {
  font-size: 14px;
  color: var(--fg-dim);
  transition: color 160ms;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- jobs board ---- */
.jb-head {
  padding-top: 64px;
  padding-bottom: 40px;
}
.jb-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.jb-search {
  display: flex; align-items: center; gap: 12px;
  border: 0;
  background: transparent;
  padding: 8px 4px;
}
.jb-search input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  font-size: 15px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.jb-search input::placeholder { color: var(--fg-faint); }
.jb-count {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
  padding: 0 12px;
  white-space: nowrap;
}
.jb-sort {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  white-space: nowrap;
}
.jb-sort select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--fg);
  border-radius: 6px;
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 12px;
  outline: 0;
}
.jb-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  min-height: 700px;
}
.jb-filters {
  border-right: 1px solid var(--line);
  padding: 28px 24px;
  position: sticky;
  top: 64px;
  align-self: start;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.jb-filter-group { margin-bottom: 28px; }
.jb-filter-group h6 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 12px;
}
.jb-check {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--fg-dim);
  cursor: pointer;
  transition: color 140ms;
  user-select: none;
}
.jb-check:hover { color: var(--fg); }
.jb-check.is-on { color: var(--fg); }
.jb-check .box {
  width: 14px; height: 14px;
  border-radius: 3px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 140ms;
}
.jb-check.is-on .box {
  background: var(--accent);
  border-color: var(--accent);
}
.jb-check.is-on .box::after {
  content: "";
  width: 6px; height: 3px;
  border-left: 2px solid var(--accent-fg);
  border-bottom: 2px solid var(--accent-fg);
  transform: rotate(-45deg) translate(0px, -1px);
}
.jb-check .count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-faint);
}
.jb-range {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
}
.jb-range input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}
.jb-clear {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  cursor: pointer;
  margin-top: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jb-results { min-width: 0; }
.jb-empty {
  padding: 80px 40px;
  text-align: center;
  color: var(--fg-dim);
}
.jb-empty .h3 { color: var(--fg); margin-bottom: 8px; }
@media (max-width: 1024px) {
  .jb-layout { grid-template-columns: 1fr; }
  .jb-filters { position: relative; top: 0; max-height: none; border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ---- detail drawer for jobs ---- */
.jb-drawer-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.jb-drawer-bg.is-open { opacity: 1; pointer-events: auto; }
.jb-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(640px, 100%);
  background: var(--bg-1);
  z-index: 90;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.1, 1);
  overflow-y: auto;
}
.jb-drawer.is-open { transform: translateX(0); }
.jb-drawer-head {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.jb-drawer-body { padding: 28px 32px; }
.jb-drawer h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 8px 0 6px;
}
.jb-drawer .company {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
}
.jb-drawer-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.jb-meta-row .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 4px;
}
.jb-meta-row .value { font-size: 14px; color: var(--fg); }
.jb-drawer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 28px 0 12px;
}
.jb-drawer p { font-size: 14.5px; line-height: 1.6; color: var(--fg-dim); margin: 0 0 12px; }
.jb-drawer ul { padding-left: 18px; margin: 0; }
.jb-drawer li { font-size: 14.5px; line-height: 1.6; color: var(--fg-dim); padding: 4px 0; }
.jb-drawer-foot {
  position: sticky; bottom: 0;
  background: color-mix(in oklab, var(--bg-1) 90%, transparent);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 18px 32px;
  display: flex; gap: 12px; justify-content: space-between; align-items: center;
}

/* ---- network field for hero ---- */
.network-field {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

/* ---- generic page hero ---- */
.page-hero {
  padding-top: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(48px, 8vw, 132px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  font-weight: 500;
  margin: 24px 0 0;
}
.page-hero h1 em { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---- stub pages ---- */
.stub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stub-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 260px;
  position: relative;
}
.stub-cell:nth-child(2n) { border-right: 0; }
.stub-cell:nth-last-child(-n+2) { border-bottom: 0; }
.stub-cell .num { font-family: var(--mono); font-size: 11px; color: var(--fg); letter-spacing: 0.14em; }
.stub-cell h3 { margin: 14px 0 12px; }

/* ---- contact form-ish ---- */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.path-cell {
  padding: 56px 36px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background 220ms;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px;
  text-decoration: none;
  color: inherit;
}
.path-cell:last-child { border-right: 0; }
.path-cell:hover { background: var(--bg-1); }
.path-cell .top { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); }
.path-cell h3 { margin-top: auto; font-size: clamp(26px, 2.4vw, 36px); font-weight: 500; letter-spacing: -0.02em; }
.path-cell h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.path-cell .arrow-cta { margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--fg); letter-spacing: 0.06em; }
@media (max-width: 880px) {
  .path-grid { grid-template-columns: 1fr; }
  .path-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .path-cell:last-child { border-bottom: 0; }
}

/* ---- big closing cta ---- */
.bigcta {
  padding: clamp(80px, 12vw, 180px) var(--pad);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.bigcta h2 {
  font-size: clamp(56px, 11vw, 200px);
  letter-spacing: -0.045em;
  line-height: 0.88;
  font-weight: 500;
  margin: 0;
  max-width: 14ch;
}
.bigcta h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.bigcta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px;
}

/* ---- accessibility / focus ---- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* density scaling helper for jb */
[data-density="cozy"] { --density: 1.1; }
[data-density="default"] { --density: 1; }
[data-density="compact"] { --density: 0.85; }

/* ---- modal ---- */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  animation: fadeIn 200ms ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: min(440px, 100%);
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  max-height: calc(100vh - 48px);
  display: flex; flex-direction: column;
}
.modal--wide { width: min(720px, 100%); }
.modal-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--line);
}
.modal-head h3 { font-size: clamp(20px, 2vw, 26px); margin: 0; letter-spacing: -0.02em; }
.modal-head h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.modal-close {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  color: var(--fg-dim);
  transition: color 160ms, background 160ms;
  flex-shrink: 0;
}
.modal-close:hover { color: var(--fg); background: var(--bg-2); }
.modal-body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  overflow-y: auto;
}
.modal-switch {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 8px;
}
.modal-switch a, .modal-switch button {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent;
  cursor: pointer;
}

/* ---- forms ---- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.field-hint {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 14.5px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 160ms;
}
.field textarea { resize: vertical; min-height: 80px; font-family: var(--sans); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--fg-faint); }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.field-row.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .field-row, .field-row.three { grid-template-columns: 1fr; } }

.form-error {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg);
  background: var(--bg-2);
  border-left: 2px solid var(--fg);
  padding: 10px 12px;
  letter-spacing: 0.02em;
}
.form-msg {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}
.form-grid { display: flex; flex-direction: column; gap: 36px; }
.form-section {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.form-h {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 4px;
}
.form-actions {
  display: flex; align-items: center; gap: 16px;
  padding-top: 12px;
}

/* ---- dashboard ---- */
.dash-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.dash-body { padding-top: 24px; padding-bottom: 80px; }
.tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--fg-dim);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: flex; align-items: center; gap: 8px;
  transition: color 160ms, border-color 160ms;
}
.tab:hover { color: var(--fg); }
.tab.is-on { color: var(--fg); border-bottom-color: var(--fg); }
.tab-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-faint);
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.resume-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}

/* ---- admin ---- */
.toolbar-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.stat-row--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .stat-row--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .stat-row--4 { grid-template-columns: 1fr; } }

.kv-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.kv {
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kv-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 6px;
}
.kv-val { font-size: 22px; color: var(--fg); font-weight: 500; }

.admin-table {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.admin-tr {
  display: grid;
  grid-template-columns: 120px 1.8fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.admin-tr:first-child { border-top: 0; }
.admin-tr--head {
  background: var(--bg-1);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-faint);
}
.admin-tr--clickable { cursor: pointer; transition: background 160ms; }
.admin-tr--clickable:hover { background: var(--bg-1); }
.admin-tr .small { font-size: 12px; color: var(--fg-dim); }
.jb-select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--fg);
  border-radius: 6px;
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 12px;
  outline: 0;
}
details.cover-note summary {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  cursor: pointer;
}
details.cover-note p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .admin-tr { grid-template-columns: 1fr; gap: 4px; }
  .admin-tr--head { display: none; }
}

/* ---- user menu ---- */
.user-menu { position: relative; flex-shrink: 0; }
.user-trigger {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  color: var(--fg);
  display: grid; place-items: center;
  transition: background 160ms, border-color 160ms;
}
.user-trigger:hover { background: var(--bg-3); border-color: var(--fg-faint); }
.user-ava {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.user-pop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  z-index: 60;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.user-pop-head {
  padding: 12px 12px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.user-pop-email {
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
  word-break: break-all;
}
.user-pop-role {
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.user-pop-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--fg-dim);
  transition: background 140ms, color 140ms;
}
.user-pop-item:hover { background: var(--bg-2); color: var(--fg); }

/* ---- in-drawer application form ---- */
.apply-form {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 14px;
}
.form-warn {
  font-size: 13px;
  color: var(--fg-dim);
  background: var(--bg-2);
  border-left: 2px solid var(--fg-faint);
  padding: 10px 12px;
}
.form-warn a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- google sign-in button ---- */
.google-btn-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 24px;
}
.auth-divider {
  width: 100%;
  text-align: center;
  margin: 24px 0 0;
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 24px);
  height: 1px;
  background: var(--line);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-divider span { background: var(--bg); padding: 0 8px; }

/* ---- expanded application detail in admin ---- */
.app-detail {
  grid-column: 1 / -1;
  padding: 20px 24px 24px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.app-detail-long .form-h { margin-bottom: 4px; }
.app-detail a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }

/* ---- application form: resume picker + custom questions ---- */
.resume-options {
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px 14px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.resume-opt {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--fg-dim);
  cursor: pointer;
}
.resume-opt input[type="radio"] { accent-color: var(--fg); }
.resume-upload {
  display: flex; align-items: center; gap: 12px;
  margin-left: 24px;
  font-size: 13px;
}
.resume-upload .small { color: var(--fg-faint); }
.custom-q-block {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}

/* ---- recruiter questions builder ---- */
.qb {
  margin-top: 8px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}
.qb-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.qb-empty {
  font-size: 13px;
  color: var(--fg-faint);
  font-style: italic;
  margin-top: 8px;
}
.qb-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.qb-row:last-child { border-bottom: 0; }
.qb-label {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 14px;
  padding: 8px 10px;
  outline: none;
}
.qb-req {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-dim); letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.qb-req input[type="checkbox"] { accent-color: var(--fg); }
@media (max-width: 720px) {
  .qb-row { grid-template-columns: 1fr; }
}

/* ---- link-style button ---- */
.link-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  background: none; border: 0; padding: 0;
  cursor: pointer; margin-top: 4px;
  text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { color: var(--fg); }

/* ---- role detail page layout ---- */
.role-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.role-aside {
  position: sticky;
  top: 88px;
  padding: 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.bullets {
  list-style: none; padding: 0; margin: 16px 0 0;
}
.bullets li {
  padding: 12px 0 12px 28px;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--fg-dim);
  line-height: 1.55;
}
.bullets li::before {
  content: "→";
  position: absolute; left: 0; top: 12px;
  font-family: var(--mono); color: var(--fg);
  font-size: 13px;
}
@media (max-width: 1024px) {
  .role-detail-grid { grid-template-columns: 1fr; }
  .role-aside { position: relative; top: 0; }
}

/* ---- parsed-resume preview ---- */
.parsed-preview {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}
