:root {
  --paper: #f3f0e8;
  --paper-deep: #e8e2d6;
  --ink: #17201d;
  --ink-soft: #4d5752;
  --line: rgba(23, 32, 29, 0.16);
  --line-strong: rgba(23, 32, 29, 0.28);
  --white: #fffdf8;
  --accent: #b9573c;
  --accent-soft: #efd2c6;
  --green: #2f6a57;
  --green-soft: #dce9e2;
  --blue: #3d6680;
  --blue-soft: #dbe7ed;
  --gold: #a46c24;
  --gold-soft: #f1e3ca;
  --purple: #6b5a86;
  --purple-soft: #e8e1ef;
  --danger: #8e3d3d;
  --danger-soft: #f0d8d5;
  --shadow: 0 24px 70px rgba(26, 31, 28, 0.12);
  --shell: min(1240px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 11% 0%, rgba(255,255,255,.72), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img, svg { display: block; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 232, 0.92);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.025em;
}
.brand-mark { width: 34px; height: 34px; }
.brand-mark circle:first-child,
.brand-mark path { fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; }
.brand-mark circle:last-child { fill: var(--accent); stroke: none; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a {
  font-size: .91rem;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.text-button {
  border: 0;
  padding: 10px;
  background: transparent;
  cursor: pointer;
  font-weight: 650;
  font-size: .9rem;
}
.text-button span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 4px;
  border-radius: 99px;
  background: var(--paper-deep);
  font-size: .72rem;
}
.button {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 710;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-small { min-height: 38px; padding-inline: 15px; font-size: .88rem; }
.button-ink { background: var(--ink); color: var(--white); }
.button-ink:hover { background: #26312d; }
.button-outline { background: transparent; border-color: var(--line-strong); }
.button-outline:hover { background: var(--white); }
.button-full { width: 100%; }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 10px; }
.menu-button span { display: block; height: 1.5px; background: currentColor; margin: 6px 0; }
.mobile-nav { border-top: 1px solid var(--line); padding: 18px 20px 24px; }
.mobile-nav a, .mobile-nav button { display: block; width: 100%; padding: 12px 0; text-decoration: none; text-align: left; }

.hero { padding: 84px 0 74px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: clamp(48px, 8vw, 116px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}
h1, h2, h3, blockquote { font-family: Georgia, "Times New Roman", serif; }
h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.7rem, 7vw, 7.3rem);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 500;
}
.hero-intro {
  max-width: 700px;
  margin: 30px 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}
.hero-search {
  max-width: 720px;
  min-height: 62px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 7px 7px 7px 18px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 32px rgba(23, 32, 29, .07);
}
.hero-search svg { width: 21px; fill: none; stroke: var(--ink-soft); stroke-width: 1.6; }
.hero-search input { min-width: 0; border: 0; background: transparent; outline: none; color: var(--ink); }
.hero-search input::placeholder { color: #7a827e; }
.hero-search button {
  align-self: stretch;
  min-width: 112px;
  border: 0;
  padding-inline: 20px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 760;
}
.quick-fields { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.quick-fields button {
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 7px 2px 4px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: .82rem;
}
.quick-fields button:hover { color: var(--accent); border-color: var(--accent); }

.pulse-card {
  position: relative;
  padding: 26px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.pulse-card::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(23, 32, 29, .26);
  z-index: -1;
}
.pulse-card-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 720; }
.live-label { display: inline-flex; align-items: center; gap: 7px; color: #c9d3ce; font-size: .71rem; font-weight: 600; }
.live-label i { width: 7px; height: 7px; border-radius: 50%; background: #8ac0a3; box-shadow: 0 0 0 5px rgba(138, 192, 163, .12); }
.pulse-visual { height: 118px; display: flex; align-items: end; gap: 8px; margin: 34px 0 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.pulse-visual span { flex: 1; min-width: 4px; background: linear-gradient(to top, rgba(210,118,85,.36), #d68b70); }
.pulse-visual span:nth-child(1) { height: 31%; }
.pulse-visual span:nth-child(2) { height: 47%; }
.pulse-visual span:nth-child(3) { height: 39%; }
.pulse-visual span:nth-child(4) { height: 71%; }
.pulse-visual span:nth-child(5) { height: 58%; }
.pulse-visual span:nth-child(6) { height: 83%; }
.pulse-visual span:nth-child(7) { height: 66%; }
.pulse-visual span:nth-child(8) { height: 92%; }
.pulse-visual span:nth-child(9) { height: 74%; }
.pulse-visual span:nth-child(10) { height: 88%; }
.pulse-visual span:nth-child(11) { height: 62%; }
.pulse-visual span:nth-child(12) { height: 78%; }
.pulse-title { margin: 0 0 22px; font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.25; }
.pulse-items { display: grid; gap: 14px; }
.pulse-items > div { display: flex; gap: 12px; align-items: flex-start; }
.pulse-items p { margin: -2px 0 0; }
.pulse-items strong { display: block; font-size: .86rem; }
.pulse-items small { color: #b7c0bc; font-size: .73rem; }
.signal-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; margin-top: 5px; }
.signal-dot.interview { background: #e7bc72; }
.signal-dot.offer { background: #75b08f; }
.signal-dot.closed { background: #cd8275; }
.pulse-note { margin: 24px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); color: #aeb9b4; font-size: .69rem; }

.principles-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.18); }
.principles-inner { min-height: 92px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; align-items: center; }
.principles-inner p { margin: 0; color: var(--ink-soft); font-size: .83rem; }
.principles-inner span { display: block; margin-bottom: 3px; color: var(--ink); font-weight: 770; }

.opportunities { padding: 105px 0 118px; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.section-heading h2,
.explainer-copy h2,
.personal-search h2,
.source-callout h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 500;
}
.demo-notice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  padding: 13px 14px 13px 16px;
  background: #e9dfc7;
  border-left: 3px solid var(--gold);
  font-size: .8rem;
}
.demo-notice strong { white-space: nowrap; }
.demo-notice span { color: var(--ink-soft); }
.demo-notice button { border: 0; background: transparent; font-size: 1.15rem; cursor: pointer; }
.explorer { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 44px; align-items: start; }
.filters { position: sticky; top: 100px; }
.filter-mobile-head { display: none; }
.filter-group { padding: 20px 0; border-top: 1px solid var(--line); }
.filter-group:first-of-type { border-top: 0; padding-top: 0; }
.filter-group label:not(.check-row), .filter-label {
  display: block;
  margin-bottom: 9px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 760;
}
.filter-group input[type="search"], .filter-group select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(255,255,255,.45);
  padding: 0 12px;
  color: var(--ink);
  outline: none;
}
.filter-group input:focus, .filter-group select:focus, .modal input:focus, .signal-form textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 2px rgba(23,32,29,.08); }
.check-row { display: flex; align-items: center; gap: 9px; padding: 6px 0; font-size: .87rem; cursor: pointer; }
.check-row input { width: 15px; height: 15px; accent-color: var(--ink); }
.toggle-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; padding: 17px 0; border-top: 1px solid var(--line); cursor: pointer; }
.toggle-row strong { display: block; font-size: .84rem; }
.toggle-row small { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .7rem; line-height: 1.35; }
.toggle-row input { position: absolute; opacity: 0; }
.toggle-row i { position: relative; width: 38px; height: 22px; border-radius: 99px; background: #c9c7c0; transition: .2s; }
.toggle-row i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: white; transition: .2s; }
.toggle-row input:checked + i { background: var(--green); }
.toggle-row input:checked + i::after { transform: translateX(16px); }
.clear-filters { border: 0; padding: 14px 0; background: transparent; color: var(--accent); cursor: pointer; font-size: .82rem; font-weight: 720; }
.results-toolbar { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line-strong); }
.results-toolbar > div { display: flex; align-items: center; gap: 12px; }
.results-toolbar p { margin: 0; color: var(--ink-soft); font-size: .85rem; }
.results-toolbar strong { color: var(--ink); }
.results-toolbar label { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: .76rem; }
.results-toolbar select { border: 0; background: transparent; color: var(--ink); font-weight: 680; outline: none; }
.filter-trigger { display: none; border: 1px solid var(--line-strong); background: transparent; padding: 7px 10px; }
.active-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.active-filter { border: 1px solid var(--line); background: rgba(255,255,255,.35); padding: 6px 9px; font-size: .73rem; cursor: pointer; }
.job-list { display: grid; }
.job-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 32px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding .2s ease, background .2s ease;
}
.job-card:hover { background: rgba(255,255,255,.34); padding-inline: 18px; margin-inline: -18px; }
.job-card:focus-within { outline: 2px solid var(--ink); outline-offset: 3px; }
.job-card-main { min-width: 0; }
.job-meta-top { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; margin-bottom: 11px; color: var(--ink-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; }
.job-type-badge { padding: 4px 7px; background: var(--paper-deep); color: var(--ink); font-weight: 750; }
.availability-badge { padding: 4px 7px; border: 1px solid transparent; font-weight: 800; }
.availability-badge.open, .availability-badge.no-deadline { background: rgba(31, 107, 78, .1); border-color: rgba(31, 107, 78, .2); color: #185c43; }
.availability-badge.closing-soon { background: rgba(174, 112, 17, .1); border-color: rgba(174, 112, 17, .22); color: #8b570c; }
.availability-badge.closed { background: rgba(86, 94, 90, .1); border-color: rgba(86, 94, 90, .2); color: #56605b; }
.job-card.job-closed { background: rgba(255,255,255,.16); }
.job-card.job-closed h3, .job-card.job-closed .institution { color: #606964; }
.job-card h3 { margin: 0 0 7px; font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.16; font-weight: 500; }
.job-card h3 button { display: block; width: 100%; border: 0; padding: 0; background: none; color: inherit; text-align: left; cursor: pointer; font: inherit; }
.institution { margin: 0 0 13px; color: var(--ink-soft); font-size: .91rem; }
.job-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.job-tags span { border: 1px solid var(--line); padding: 4px 7px; color: var(--ink-soft); font-size: .69rem; }
.job-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 18px; }
.deadline { text-align: right; }
.deadline span { display: block; color: var(--ink-soft); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.deadline strong { font-family: Georgia, serif; font-size: 1.02rem; font-weight: 500; }
.deadline.soon strong { color: var(--danger); }
.deadline.closed strong { color: var(--ink-soft); }
.signal-summary { width: 100%; padding: 12px 13px; background: rgba(255,255,255,.48); border-left: 2px solid var(--green); }
.signal-summary.no-signals { border-left-color: var(--line-strong); }
.signal-summary p { margin: 0; font-size: .75rem; font-weight: 700; }
.signal-summary small { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .67rem; }
.save-job { position: absolute; top: 28px; right: 0; width: 30px; height: 30px; border: 0; background: transparent; cursor: pointer; opacity: 0; transition: opacity .2s; }
.job-card:hover .save-job, .save-job.saved { opacity: 1; }
.save-job svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.save-job.saved svg { fill: var(--accent); stroke: var(--accent); }
.empty-state { padding: 70px 20px; text-align: center; }
.empty-state h3 { margin: 0; font-size: 2rem; font-weight: 500; }
.empty-state p { color: var(--ink-soft); }

.signal-explainer { padding: 108px 0; background: var(--ink); color: var(--white); }
.explainer-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(480px,1.2fr); gap: 90px; }
.explainer-copy { position: sticky; top: 112px; align-self: start; }
.explainer-copy h2 { max-width: 600px; }
.explainer-copy > p:not(.eyebrow) { max-width: 580px; color: #bac4bf; line-height: 1.75; }
.inline-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 4px; }
.signal-rules { display: grid; }
.signal-rules article { display: grid; grid-template-columns: 42px 1fr; gap: 22px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.15); }
.signal-rules article:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.signal-rules h3 { margin: 0 0 8px; font-size: 1.42rem; font-weight: 500; }
.signal-rules p { margin: 0; color: #aeb9b4; font-size: .9rem; line-height: 1.65; }
.rule-mark { position: relative; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.rule-mark::before, .rule-mark::after { content: ""; position: absolute; background: #d58a6f; }
.source-mark::before { width: 14px; height: 1px; top: 16px; left: 9px; }
.source-mark::after { width: 1px; height: 14px; top: 9px; left: 16px; }
.privacy-mark::before { width: 10px; height: 8px; border: 1px solid #d58a6f; background: transparent; left: 11px; top: 15px; }
.privacy-mark::after { width: 8px; height: 8px; border: 1px solid #d58a6f; border-bottom: 0; border-radius: 8px 8px 0 0; background: transparent; left: 12px; top: 8px; }
.context-mark::before { width: 14px; height: 14px; border-radius: 50%; background: transparent; border: 1px solid #d58a6f; top: 8px; left: 8px; }
.context-mark::after { width: 8px; height: 1px; transform: rotate(45deg); top: 23px; left: 21px; }
.moderation-mark::before { width: 13px; height: 16px; background: transparent; border: 1px solid #d58a6f; border-radius: 8px 8px 10px 10px; top: 8px; left: 9px; }
.moderation-mark::after { width: 6px; height: 1px; top: 16px; left: 14px; }

.about-section { padding: 110px 0; }
.about-card {
  display: grid;
  grid-template-columns: 180px minmax(320px, .9fr) minmax(350px, 1.1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  padding: 62px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.34);
  box-shadow: 20px 20px 0 var(--paper-deep);
}
.about-kicker { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 800; }
.about-card blockquote { margin: 0; font-size: clamp(2rem, 3.3vw, 3.65rem); line-height: 1.08; letter-spacing: -.035em; }
.about-copy { color: var(--ink-soft); font-size: .98rem; line-height: 1.78; }
.about-copy p:first-child { margin-top: 0; }
.founder-line { margin-top: 28px; color: var(--ink); font-weight: 720; }

.personal-search { padding: 110px 0; border-block: 1px solid var(--line); background: #e7e0d3; }
.personal-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.personal-grid > div:first-child > p:not(.eyebrow) { color: var(--ink-soft); max-width: 520px; line-height: 1.7; }
.tracker-card { background: var(--white); padding: 26px; box-shadow: var(--shadow); transform: rotate(-.6deg); }
.tracker-head { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.tracker-head span { font-family: Georgia, serif; font-size: 1.35rem; }
.tracker-head small { padding: 5px 8px; background: var(--green-soft); color: var(--green); font-weight: 750; }
.tracker-row { display: grid; grid-template-columns: 34px 1fr auto; gap: 13px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); }
.tracker-row:last-child { border: 0; }
.tracker-icon { width: 32px; height: 32px; display: grid; place-items: center; background: var(--paper); border-radius: 50%; font-style: normal; font-family: Georgia, serif; }
.tracker-row p { margin: 0; }
.tracker-row strong { display: block; font-size: .82rem; }
.tracker-row span { color: var(--ink-soft); font-size: .72rem; }
.tracker-row time { color: var(--ink-soft); font-size: .74rem; }

.source-callout { min-height: 320px; padding-block: 74px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.source-callout > div { max-width: 780px; }
.source-callout p:not(.eyebrow) { color: var(--ink-soft); max-width: 650px; }
.site-footer { background: #101714; color: var(--white); padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .75fr 1.2fr; gap: 54px; }
.footer-brand { color: var(--white); }
.footer-grid > div:first-child > p { color: #9eaaa4; max-width: 310px; font-size: .84rem; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links strong, .footer-note strong { margin-bottom: 6px; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a, .footer-links button { border: 0; padding: 0; background: transparent; color: #aeb8b3; text-align: left; text-decoration: none; cursor: pointer; font-size: .82rem; }
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-note { border-left: 1px solid rgba(255,255,255,.18); padding-left: 28px; }
.footer-note p { margin: 10px 0 0; color: #9eaaa4; font-size: .78rem; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 66px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: #7f8b85; font-size: .72rem; }

.overlay { position: fixed; inset: 0; z-index: 90; background: rgba(9,14,12,.55); backdrop-filter: blur(3px); }
.job-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: min(720px, 100%);
  padding: 0;
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(0,0,0,.24);
  transform: translateX(103%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
}
.job-drawer.open { transform: translateX(0); }
.drawer-close { position: sticky; top: 18px; margin-left: calc(100% - 60px); z-index: 5; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; font-size: 1.45rem; }
.drawer-hero { margin-top: -42px; padding: 76px 48px 34px; background: var(--white); border-bottom: 1px solid var(--line); }
.drawer-hero .job-meta-top { margin-right: 45px; }
.drawer-hero h2 { margin: 14px 0 8px; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.045em; font-weight: 500; }
.drawer-institution { color: var(--ink-soft); font-size: 1rem; }
.drawer-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.drawer-body { padding: 38px 48px 70px; }
.official-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.official-grid > div { background: var(--paper); padding: 15px; }
.official-grid span { display: block; margin-bottom: 4px; color: var(--ink-soft); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; }
.official-grid strong { font-size: .82rem; }
.drawer-description { margin: 28px 0; color: var(--ink-soft); line-height: 1.7; }
.source-disclaimer { display: flex; gap: 12px; padding: 14px; background: var(--gold-soft); font-size: .74rem; }
.source-disclaimer strong { display: block; margin-bottom: 2px; }
.source-disclaimer svg { flex: 0 0 auto; width: 18px; fill: none; stroke: var(--gold); stroke-width: 1.7; }
.board-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 42px 0 17px; }
.board-head h3 { margin: 0; font-size: 2rem; font-weight: 500; }
.board-head p { margin: 2px 0 0; color: var(--ink-soft); font-size: .76rem; }
.board-head span { color: var(--ink-soft); font-size: .74rem; }
.signal-form { padding: 18px; background: var(--white); border: 1px solid var(--line); }
.status-picker { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 13px; }
.status-option { border: 1px solid var(--line); padding: 7px 9px; background: transparent; cursor: pointer; font-size: .7rem; font-weight: 700; }
.status-option.selected { color: #fff; border-color: transparent; }
.status-option[data-status="Applied"].selected { background: var(--blue); }
.status-option[data-status="Interview invited"].selected { background: var(--gold); }
.status-option[data-status="Interview completed"].selected { background: var(--purple); }
.status-option[data-status="Reference check"].selected { background: #34736e; }
.status-option[data-status="Offer reported"].selected { background: var(--green); }
.status-option[data-status="Role filled"].selected { background: var(--danger); }
.status-option[data-status="Rejected"].selected { background: #59615d; }
.status-option[data-status="Posting closed"].selected { background: var(--ink); }
.signal-form textarea { width: 100%; min-height: 88px; resize: vertical; border: 1px solid var(--line-strong); border-radius: 0; padding: 11px; background: var(--paper); outline: none; }
.form-lower { display: flex; justify-content: space-between; gap: 15px; align-items: center; margin-top: 8px; }
.char-count { color: var(--ink-soft); font-size: .68rem; }
.form-lower button { min-height: 38px; }
.signal-list { display: grid; margin-top: 18px; }
.signal-item { display: grid; grid-template-columns: 10px 1fr auto; gap: 12px; padding: 17px 2px; border-bottom: 1px solid var(--line); }
.signal-item > i { width: 8px; height: 8px; border-radius: 50%; margin-top: 7px; }
.signal-item[data-status="Applied"] > i { background: var(--blue); }
.signal-item[data-status="Interview invited"] > i { background: var(--gold); }
.signal-item[data-status="Interview completed"] > i { background: var(--purple); }
.signal-item[data-status="Reference check"] > i { background: #34736e; }
.signal-item[data-status="Offer reported"] > i { background: var(--green); }
.signal-item[data-status="Role filled"] > i { background: var(--danger); }
.signal-item[data-status="Rejected"] > i { background: #59615d; }
.signal-item[data-status="Posting closed"] > i { background: var(--ink); }
.signal-content strong { font-size: .76rem; }
.signal-content p { margin: 4px 0 0; color: var(--ink-soft); font-size: .8rem; }
.signal-item time { color: var(--ink-soft); font-size: .66rem; white-space: nowrap; }
.signal-meta { display: grid; justify-items: end; align-content: start; gap: 5px; }
.signal-meta button { border: 0; padding: 0; background: transparent; color: var(--ink-soft); cursor: pointer; font-size: .62rem; text-decoration: underline; text-underline-offset: 2px; }
.signal-meta button:hover { color: var(--danger); }
.no-signals-message { padding: 25px; background: rgba(255,255,255,.35); color: var(--ink-soft); text-align: center; font-size: .8rem; }
.drawer-private-tracker { margin-top: 26px; padding: 17px; border: 1px dashed var(--line-strong); }
.drawer-private-tracker strong { display: block; font-size: .8rem; }
.drawer-private-tracker p { margin: 4px 0 12px; color: var(--ink-soft); font-size: .72rem; }
.private-stages { display: flex; flex-wrap: wrap; gap: 6px; }
.private-stages button { border: 1px solid var(--line); background: transparent; padding: 6px 8px; font-size: .68rem; cursor: pointer; }
.private-stages button.active { background: var(--ink); color: #fff; }

.modal {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 110;
  width: min(520px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  overflow-y: auto;
  transform: translate(-50%, -50%);
  padding: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border: 0; background: transparent; cursor: pointer; font-size: 1.4rem; }
.modal-mark { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 50%; background: var(--ink); color: #fff; font-family: Georgia, serif; font-size: .82rem; }
.modal h2 { margin: 0 0 10px; font-size: 2.6rem; line-height: 1; font-weight: 500; letter-spacing: -.04em; }
.modal-intro { color: var(--ink-soft); font-size: .88rem; line-height: 1.6; }
.modal form { display: grid; gap: 9px; margin-top: 22px; }
.modal label { font-size: .74rem; font-weight: 700; }
.modal label span { color: var(--ink-soft); font-weight: 500; }
.modal input { width: 100%; height: 48px; border: 1px solid var(--line-strong); border-radius: 0; padding: 0 12px; background: var(--paper); outline: none; }
.form-note { margin: 14px 0 0; color: var(--ink-soft); font-size: .68rem; }
.saved-modal { width: min(640px, calc(100% - 30px)); }
.saved-list { display: grid; margin-top: 20px; }
.saved-row { display: grid; grid-template-columns: 1fr auto; gap: 15px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); }
.saved-row h3 { margin: 0 0 3px; font-family: inherit; font-size: .86rem; }
.saved-row p { margin: 0; color: var(--ink-soft); font-size: .72rem; }
.saved-row button { border: 0; background: transparent; color: var(--accent); cursor: pointer; font-size: .75rem; }
.saved-empty { padding: 35px 0; color: var(--ink-soft); text-align: center; }
.toast-region { position: fixed; right: 18px; bottom: 18px; z-index: 150; display: grid; gap: 8px; }
.toast { min-width: 250px; max-width: 360px; padding: 13px 15px; background: var(--ink); color: #fff; box-shadow: var(--shadow); font-size: .78rem; animation: toast-in .2s ease; }
@keyframes toast-in { from { transform: translateY(8px); opacity: 0; } }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .pulse-card { width: min(600px, 100%); }
  .principles-inner { gap: 20px; }
  .explainer-grid { grid-template-columns: 1fr; gap: 56px; }
  .explainer-copy { position: static; }
  .about-card { grid-template-columns: 130px 1fr; }
  .about-copy { grid-column: 2; }
  .personal-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding: 24px 0 0; }
}

@media (max-width: 800px) {
  :root { --shell: min(100% - 28px, 1240px); }
  .header-inner { min-height: 66px; }
  .header-actions > .text-button, .header-actions > .button { display: none; }
  .hero { padding-top: 58px; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.6rem); }
  .hero-search { grid-template-columns: 22px 1fr; }
  .hero-search button { grid-column: 1 / -1; min-height: 46px; }
  .principles-inner { grid-template-columns: 1fr; padding-block: 24px; }
  .section-heading { align-items: start; flex-direction: column; }
  .demo-notice { grid-template-columns: 1fr auto; }
  .demo-notice strong { grid-column: 1; }
  .demo-notice span { grid-column: 1; }
  .demo-notice button { grid-column: 2; grid-row: 1 / 3; }
  .explorer { grid-template-columns: 1fr; }
  .filters {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 120;
    width: min(360px, 92vw);
    padding: 20px;
    background: var(--paper);
    overflow-y: auto;
    transform: translateX(103%);
    transition: transform .25s ease;
  }
  .filters.open { transform: translateX(0); }
  .filter-mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
  .filter-mobile-head button { border: 0; background: transparent; font-size: 1.4rem; }
  .filter-trigger { display: inline-flex; }
  .job-card { grid-template-columns: 1fr; gap: 20px; padding-right: 38px; }
  .job-side { align-items: stretch; }
  .deadline { text-align: left; }
  .save-job { opacity: 1; right: 2px; }
  .about-card { grid-template-columns: 1fr; padding: 34px 26px; box-shadow: 10px 10px 0 var(--paper-deep); }
  .about-copy { grid-column: auto; }
  .personal-grid { grid-template-columns: 1fr; }
  .source-callout { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .drawer-hero { padding: 74px 24px 28px; }
  .drawer-body { padding: 30px 24px 60px; }
  .official-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { padding-bottom: 55px; }
  .pulse-card { padding: 21px; }
  .opportunities, .about-section { padding-block: 78px; }
  .section-heading h2, .explainer-copy h2, .personal-search h2, .source-callout h2 { font-size: 2.65rem; }
  .results-toolbar { align-items: flex-start; }
  .results-toolbar label { flex-direction: column; align-items: flex-end; }
  .job-card:hover { margin-inline: 0; padding-inline: 0 38px; }
  .explainer-grid { gap: 34px; }
  .signal-rules article { grid-template-columns: 34px 1fr; gap: 14px; }
  .tracker-card { padding: 17px; transform: none; }
  .tracker-row { grid-template-columns: 30px 1fr; }
  .tracker-row time { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-note { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .modal { padding: 34px 24px; }
  .modal h2 { font-size: 2.15rem; }
  .form-lower { align-items: stretch; flex-direction: column; }
  .form-lower button { width: 100%; }
  .signal-item { grid-template-columns: 8px 1fr; }
  .signal-meta { grid-column: 2; justify-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

.legal-page { padding: 76px 0 110px; }
.legal-page header { max-width: 800px; margin-bottom: 52px; }
.legal-page header h1 { font-size: clamp(3rem, 7vw, 6rem); }
.legal-page header p { max-width: 680px; color: var(--ink-soft); font-size: 1.05rem; }
.legal-content { max-width: 820px; }
.legal-content section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 12px; font-size: 1.8rem; letter-spacing: -.025em; }
.legal-content p, .legal-content li { color: var(--ink-soft); line-height: 1.75; }
.legal-content ul { padding-left: 20px; }
.legal-back { display: inline-flex; margin-top: 32px; text-decoration: none; border-bottom: 1px solid var(--line-strong); }
