:root {
  --paper: #faf9f5;
  --white: #fff;
  --ink: #243d34;
  --green: #173b32;
  --green-dark: #102c25;
  --sage: #e8edda;
  --lime: #e6edae;
  --peach: #ed9a78;
  --muted: #727d75;
  --line: #e3e6dc;
  --radius: 18px;
  --shadow: 0 20px 70px #20392c10;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #c58150;
  outline-offset: 4px;
}
button svg,
a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  letter-spacing: -0.055em;
  font-weight: 500;
}
h1 {
  font-size: clamp(40px, 5.1vw, 76px);
  line-height: 1.06;
}
h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.16;
}
h3 {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
p {
  line-height: 1.75;
  color: var(--muted);
}
small {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.button {
  border: 1px solid transparent;
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 9px;
  line-height: 1.2;
  font-weight: 600;
  font-size: 14px;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.button.secondary {
  background: transparent;
  border-color: #cbd3c7;
  color: var(--green);
}
.button.secondary:hover {
  background: var(--sage);
}
.button.small {
  padding: 12px 17px;
  font-size: 13px;
}
.button.large {
  padding: 19px 26px;
}
.button.pale {
  background: var(--lime);
  color: var(--green);
}
.button.full {
  width: 100%;
}
.button.danger {
  background: #873e36;
}
.text-button {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 5px 0;
}
.text-button:hover {
  color: #61804e;
}
.icon-button {
  padding: 7px;
  background: none;
  border: 0;
  color: inherit;
  display: grid;
  place-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--green);
  white-space: nowrap;
}
.brand-dot {
  color: #b67752;
  margin-left: -10px;
}
.brand img {
  width: 32px;
  height: 32px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  display: block;
  line-height: 1.6;
  margin-bottom: 15px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #70864a;
  margin-right: 7px;
}
.prototype-strip {
  background: var(--green);
  color: var(--lime);
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 9px 16px;
}
.prototype-strip span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15px;
  color: #e0e8dc;
  margin-left: 16px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: auto;
  padding: 26px 54px;
}
.site-header nav {
  display: flex;
  gap: 29px;
  font-size: 13px;
}
.site-header nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}
.hero {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  padding: 68px 54px 100px;
  gap: 35px;
  align-items: center;
  overflow: hidden;
}
.hero h1 {
  margin: 22px 0;
}
.hero h1 span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: #778365;
  letter-spacing: -0.05em;
}
.hero-description {
  max-width: 410px;
  font-size: 16px;
  margin-bottom: 30px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-cta > .text-button {
  font-size: 11px;
}
.microcopy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  margin-top: 20px;
}
.microcopy svg {
  width: 14px;
  height: 14px;
  margin-left: 14px;
}
.microcopy svg:first-child {
  margin-left: 0;
}
.hero-art {
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid #dfe4d4;
  border-radius: 50%;
  background: radial-gradient(circle, #f0f0de, #f4f4e900 68%);
}
.art-small-orbit {
  position: absolute;
  width: 375px;
  height: 375px;
  border: 1px dashed #d8ddc9;
  border-radius: 50%;
}
.floating-note {
  position: absolute;
  top: 5px;
  right: 12px;
  font:
    italic 17px Georgia,
    serif;
  transform: rotate(5deg);
  z-index: 2;
}
.tiny-spark {
  font-size: 32px;
  color: #c78b5c;
  margin-right: 7px;
}
.preview-window {
  position: relative;
  width: 410px;
  background: #fff;
  border: 1px solid #dde1d6;
  box-shadow: 20px 30px 60px #273c2117;
  border-radius: 14px;
  transform: rotate(-3deg);
  z-index: 1;
}
.preview-toolbar {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7f877b;
  font-size: 8px;
  letter-spacing: 1.4px;
}
.window-dots {
  display: flex;
  gap: 4px;
}
.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d5dace;
}
.preview-toolbar > svg {
  width: 14px;
  height: 14px;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 25px 6px;
  gap: 10px;
}
.preview-heading .eyebrow {
  font-size: 7px;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.preview-heading h2 {
  font-size: 27px;
  margin-bottom: 15px;
}
.round-spark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.preview-heading .round-spark {
  background: var(--lime);
  width: 40px;
  height: 40px;
}
.preview-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 5px 25px 15px;
  background: #f6f7f1;
  border: 1px solid #ebeee4;
  border-radius: 8px;
  padding: 16px 20px;
}
.preview-summary div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.preview-summary strong {
  font:
    30px Georgia,
    serif;
}
.preview-summary span {
  font-size: 9px;
  color: var(--muted);
}
.preview-role {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 25px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.preview-role .company-mark {
  width: 32px;
  height: 32px;
  font-size: 10px;
}
.preview-role > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.preview-role strong {
  font-size: 11px;
  max-width: 270px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-role span:not(.company-mark) {
  font-size: 9px;
  color: var(--muted);
}
.preview-footer {
  padding: 16px 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  color: var(--muted);
}
.preview-footer svg {
  width: 12px;
  height: 12px;
}
.floating-approved {
  position: absolute;
  bottom: -5px;
  right: 0;
  background: #fff;
  padding: 16px 22px;
  box-shadow: 0 8px 35px #24382410;
  border: 1px solid var(--line);
  border-radius: 10px;
  transform: rotate(4deg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
}
.floating-approved > svg {
  padding: 6px;
  background: var(--sage);
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.floating-approved div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.floating-approved strong {
  font-size: 11px;
}
.floating-approved span {
  font-size: 10px;
  color: var(--muted);
}
.art-flower {
  position: absolute;
  font-size: 105px;
  line-height: 1;
  color: var(--peach);
  left: -10px;
  bottom: -10px;
  z-index: 2;
  transform: rotate(14deg);
}
.source-band {
  max-width: 1172px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 20px;
  position: relative;
}
.source-band > span {
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
}
.source-band strong {
  font-weight: 400;
}
.source-band > div {
  font-size: 25px;
  font-weight: 600;
  color: #697564;
  letter-spacing: -1px;
}
.source-band > div:nth-of-type(2) {
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
}
.source-band > div:nth-of-type(4) {
  font-family: Georgia, serif;
  font-size: 31px;
}
.lever-dot {
  color: #99a383;
}
.source-band small {
  max-width: 75px;
  font-size: 8px;
}
.section {
  max-width: 1280px;
  margin: auto;
  padding: 100px 54px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;
  margin-bottom: 40px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  font-size: 13px;
  margin-bottom: 4px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 12px;
}
.steps article {
  position: relative;
}
.step-icon {
  background: #eceddf;
  border-radius: 12px;
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  margin-bottom: 24px;
}
.step-number {
  position: absolute;
  top: 7px;
  right: 20px;
  color: #bdc5b3;
  font:
    italic 30px Georgia,
    serif;
}
.steps h3 {
  margin-bottom: 12px;
}
.steps p {
  font-size: 13px;
}
.opportunities {
  background: #f0f1e8;
  max-width: none;
}
.opportunities > .section-heading,
.opportunities > .job-grid,
.opportunities > .source-note {
  max-width: 1172px;
  margin-left: auto;
  margin-right: auto;
}
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.job-card {
  padding: 23px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.job-card:hover {
  border-color: #b1be9e;
  box-shadow: 0 6px 25px #34412209;
}
.job-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  min-width: 0;
}
.company-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e8ebf4;
  color: #536891;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.tone-greenhouse {
  background: #e8efdf;
  color: #3e694a;
}
.tone-lever {
  background: #f6e7df;
  color: #a0633e;
}
.tone-workday {
  background: #e5ecfa;
  color: #3c67ab;
}
.tone-smartrecruiters {
  background: #e9e5f3;
  color: #76648e;
}
.tone-ashby {
  background: #ece7f2;
  color: #715194;
}
.company-name {
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
.tag {
  font-size: 9px;
  padding: 5px 8px;
  background: #f1f3e9;
  border-radius: 5px;
  white-space: nowrap;
  color: #68765e;
  letter-spacing: 0.2px;
}
.job-card h3 {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 46px;
}
.job-meta {
  font-size: 11px;
  margin-bottom: 17px;
}
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 23px;
}
.job-tags span {
  font-size: 9px;
  background: #f6f6f1;
  padding: 6px 8px;
  border-radius: 5px;
  color: #7c8176;
}
.job-bottom {
  border-top: 1px solid #eceee6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  margin-top: auto;
  gap: 8px;
}
.job-bottom > span {
  font-size: 9px;
  color: var(--muted);
}
.job-bottom .text-button {
  font-size: 11px;
}
.source-note {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 20px;
  color: var(--muted);
}
.answer-feature {
  max-width: 1280px;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  margin: auto;
  align-items: center;
}
.answer-feature > div > p {
  font-size: 14px;
}
.answer-illustration {
  padding: 50px 15px;
  background: radial-gradient(ellipse, #e9ead8, #faf9f500 75%);
}
.answer-bubble {
  background: var(--green);
  color: white;
  border-radius: 18px 18px 18px 0;
  padding: 30px 25px;
  transform: rotate(-3deg);
}
.answer-bubble span {
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #b9c9a5;
}
.answer-bubble p {
  font:
    23px / 1.5 Georgia,
    serif;
  color: #f1f0df;
  margin: 15px 0 0;
}
.answer-response {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11px;
  padding: 20px 18px;
  margin: 16px -20px 0 28px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.answer-response svg {
  color: #69864f;
  width: 18px;
  height: 18px;
}
.answer-evidence {
  font-size: 9px;
  color: var(--muted);
  text-align: center;
  margin-top: 20px;
}
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  padding-top: 40px;
  align-items: center;
}
.pricing > div > p {
  max-width: 340px;
  font-size: 14px;
}
.pricing .pricing-aside {
  font-size: 12px;
  margin-top: 30px;
}
.price-card {
  background: #fff;
  border: 1px solid #cfd7be;
  border-radius: 15px;
  padding: 35px;
  box-shadow: var(--shadow);
}
.price-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.price-top .tag {
  font-size: 8px;
}
.price {
  font-size: 65px;
  letter-spacing: -4px;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  margin: 30px 0 18px;
}
.price > span {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 10px;
}
.price-card > p:not(.price) {
  font-size: 12px;
}
.price-card ul {
  padding: 22px 0;
  margin: 22px 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-card li {
  font-size: 12px;
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-card li svg {
  width: 16px;
  height: 16px;
  color: #718553;
}
.price-card > small {
  display: block;
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
  margin-top: 16px;
}
.closing {
  background: var(--green);
  text-align: center;
  padding: 64px 30px;
  color: #f3f2e5;
}
.closing .eyebrow {
  color: #c2cca9;
}
.closing h2 {
  font-family: Georgia, serif;
  max-width: 650px;
  margin: 20px auto 30px;
  font-weight: 400;
  letter-spacing: -1.5px;
}
.site-footer {
  max-width: 1280px;
  padding: 35px 54px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}
.site-footer .brand {
  font-size: 20px;
}
.site-footer .brand img {
  width: 26px;
  height: 26px;
}
.site-footer p {
  font-size: 10px;
  margin: 0;
  flex: 1;
}
.site-footer > a:not(.brand),
.site-footer > span {
  font-size: 9px;
  color: var(--muted);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 35px;
  width: 520px;
  max-width: calc(100vw - 32px);
  max-height: 90vh;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 20px 100px #0004;
}
dialog::backdrop {
  background: #142b2477;
  backdrop-filter: blur(3px);
}
dialog h2 {
  font-size: 34px;
  margin: 24px 0 15px;
}
dialog > .brand {
  margin-bottom: 35px;
}
dialog > p {
  font-size: 13px;
}
dialog > .eyebrow {
  margin-top: 20px;
}
dialog > .company-mark {
  width: 50px;
  height: 50px;
}
dialog > .button {
  margin: 7px 0;
}
.close-dialog {
  position: absolute;
  top: 15px;
  right: 15px;
}
.auth-switch {
  font-size: 12px;
  text-align: center;
  margin-top: 25px;
}
.auth-switch button {
  margin-left: 5px;
  font-size: 12px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 20px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6ddce;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  min-height: 46px;
  font-size: 13px;
}
input::placeholder,
textarea::placeholder {
  color: #92998d;
}
textarea {
  resize: vertical;
  line-height: 1.6;
}
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 16px;
  flex-shrink: 0;
  accent-color: var(--green);
  margin: 2px 0 0;
}
.checkbox-label {
  flex-direction: row;
  align-items: flex-start;
  font-size: 11px;
  line-height: 1.7;
  gap: 9px;
}
.checkbox-label a {
  text-decoration: underline;
}
.form-error {
  color: #934339;
  font-size: 12px;
  min-height: 4px;
}
.form-error:empty {
  margin: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
}
.span-two {
  grid-column: 1 / -1;
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.form-actions p {
  margin: 0;
  max-width: 65%;
}
.form-section-title {
  margin: 35px 0 25px;
  font-size: 27px;
}
.onboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 25px 7%;
  gap: 20px;
}
.onboard-header > span {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
}
.onboard-main {
  max-width: 860px;
  margin: 40px auto 80px;
  padding: 0 30px;
}
.onboard-main h1 {
  font-size: 48px;
  margin: 12px 0 15px;
}
.page-lead {
  font-size: 14px;
  margin-bottom: 30px;
}
.source-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f0f2e6;
  padding: 28px;
  margin: 28px 0 38px;
}
.source-card h2,
.profile-review h2 {
  font-size: 28px;
}
.source-card > p,
.ai-disclosure p {
  font-size: 14px;
}
.document-dropzone {
  border: 2px dashed #819570;
  border-radius: 12px;
  padding: 26px;
  background: #fffefa;
  margin: 22px 0;
}
.document-dropzone:focus-within,
.document-dropzone.drag-active {
  border-color: var(--green);
  background: #e7eddb;
}
.document-dropzone label {
  font-size: 14px;
  line-height: 1.6;
}
.document-dropzone label strong {
  font-size: 21px;
}
.document-dropzone input[type="file"] {
  padding: 12px;
  min-height: 56px;
  max-width: 100%;
}
.document-dropzone input::file-selector-button {
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: white;
  padding: 10px 14px;
  margin-right: 12px;
  cursor: pointer;
}
.source-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}
.source-choices [aria-pressed="true"] {
  border: 2px solid var(--green);
  background: #dce6cd;
}
.source-card[data-variant="source-choice"] .source-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.source-card[data-variant="source-choice"] .source-choices button {
  min-height: 90px;
  white-space: normal;
}
.field-hint {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: #52634d;
}
.selected-sources {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.selected-sources li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.selected-sources li > div {
  min-width: 0;
}
.selected-sources strong,
.selected-sources span {
  display: block;
  overflow-wrap: anywhere;
  font-size: 13px;
}
.source-card .text-button,
.review-section .text-button {
  min-height: 44px;
}
.ai-disclosure {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 24px;
}
.ai-disclosure .checkbox-label {
  font-size: 14px;
}
.ingestion-result {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  overflow-wrap: anywhere;
}
.ingestion-result h3 {
  font-size: 17px;
}
.ingestion-result li {
  font-size: 14px;
  line-height: 1.7;
}
.profile-review {
  scroll-margin-top: 24px;
}
.review-section {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffefa;
  margin: 20px 0;
  padding: 0 20px;
}
.review-section > summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 15px;
  line-height: 1.6;
}
.review-section[open] {
  padding-bottom: 20px;
}
.section-count {
  color: #52634d;
  font-size: 12px;
  margin-left: 8px;
}
.history-entry {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 12px 0 20px;
  padding: 18px;
}
.history-entry legend {
  padding: 0 8px;
  font-size: 14px;
  text-transform: capitalize;
}
.draft-preview {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 13px;
  max-height: 420px;
  overflow: auto;
}
[aria-invalid="true"] {
  border: 2px solid #873e36;
}
.review-conflict {
  display: block;
}
@media (max-width: 580px) {
  .source-card {
    padding: 20px 15px;
  }
  .document-dropzone {
    padding: 18px 12px;
  }
  .source-card[data-variant="source-choice"] .source-choices {
    grid-template-columns: 1fr;
  }
  .source-card[data-variant="source-choice"] .source-choices button {
    min-height: 52px;
  }
  .source-choices > button {
    width: 100%;
  }
  .review-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .history-entry {
    padding: 12px;
  }
  .source-card input,
  .source-card textarea,
  .profile-review input,
  .profile-review textarea,
  #profile-form input,
  #profile-form textarea {
    font-size: 16px;
  }
}
.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #eef1e5;
  border: 1px solid #dce3cd;
  border-radius: 9px;
  padding: 18px 20px;
  font-size: 11px;
  line-height: 1.75;
  color: #647354;
  margin: 24px 0;
}
.notice svg {
  width: 18px;
  height: 18px;
}
.question-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.question-field {
  padding: 23px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 0;
}
.question-category {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #859377;
  margin-bottom: 5px;
  gap: 8px;
}
.question-category small {
  font-size: 8px;
  letter-spacing: 0;
  text-transform: none;
}
.question-field > strong {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  min-height: 40px;
}
.question-field select,
.question-field input {
  margin-top: auto;
  font-size: 11px;
}
.workspace {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 238px;
  position: fixed;
  inset: 0 auto 0 0;
  background: #f0f2e9;
  border-right: 1px solid #e0e4d8;
  padding: 30px 20px 18px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.sidebar > .brand {
  font-size: 25px;
  margin: 0 9px 48px;
}
.sidebar > .brand img {
  width: 29px;
  height: 29px;
}
.sidebar-label {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #8a947e;
  font-weight: 600;
  padding: 0 13px;
  margin-bottom: 14px;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  text-align: left;
  color: #727e69;
  font-size: 12px;
  min-height: 45px;
}
.nav-item svg {
  width: 18px;
  height: 18px;
}
.nav-item.selected {
  background: #dfe7d4;
  color: var(--green);
  font-weight: 600;
}
.nav-item:hover {
  background: #e6ebdf;
}
.nav-count {
  margin-left: auto;
  background: #c4d1b4;
  border-radius: 5px;
  font-size: 9px;
  padding: 3px 6px;
}
.sidebar-bottom {
  margin-top: auto;
}
.member-card {
  border: 1px solid #d9dfcd;
  background: #e9eddf;
  border-radius: 12px;
  padding: 17px;
  margin-top: 30px;
}
.member-card .eyebrow {
  font-size: 7px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.member-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}
.member-card p {
  font-size: 10px;
  margin-bottom: 13px;
}
.member-card .text-button {
  font-size: 10px;
}
.account-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #dbe1d1;
  margin-top: 24px;
  padding-top: 22px;
}
.account-chip > span {
  background: #d4ddc6;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  font:
    17px Georgia,
    serif;
  flex-shrink: 0;
}
.account-chip > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.account-chip strong {
  font-size: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.account-chip small {
  font-size: 9px;
}
.account-chip .icon-button svg {
  width: 16px;
  height: 16px;
}
.workspace-body {
  margin-left: 238px;
  width: calc(100% - 238px);
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.workspace-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.workspace-header > div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.workspace-header a {
  font-size: 10px;
  color: var(--muted);
}
.prototype-pill {
  font-size: 8px;
  letter-spacing: 0.6px;
  color: #788964;
  border: 1px solid #d8e0ca;
  background: #f0f2e6;
  border-radius: 20px;
  padding: 7px 10px;
}
.workspace-main {
  padding: 40px;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}
.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.page-heading .eyebrow {
  font-size: 8px;
  letter-spacing: 1.25px;
  margin-bottom: 13px;
}
.page-heading h1 {
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.15;
  margin-bottom: 13px;
}
.page-heading p {
  font-size: 12px;
  margin-bottom: 0;
}
.page-heading > .button {
  flex-shrink: 0;
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 32px 0;
  padding: 24px 0;
}
.dashboard-stats > div {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0 22px;
}
.dashboard-stats > div:last-child {
  border: 0;
}
.dashboard-stats span {
  font-size: 10px;
  color: var(--muted);
}
.dashboard-stats strong {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
}
.dashboard-stats small {
  font-size: 8px;
}
.autopilot-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #e8eddb;
  border: 1px solid #dbe3ca;
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 40px;
}
.autopilot-panel > div:nth-child(2) {
  flex: 1;
}
.autopilot-panel .round-spark {
  background: #d7e1c5;
}
.autopilot-panel h2 {
  font-size: 24px;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.autopilot-panel p {
  font-size: 11px;
  margin: 0;
  max-width: 540px;
}
.autopilot-panel .eyebrow {
  font-size: 8px;
  margin-bottom: 8px;
}
.autopilot-panel .button {
  font-size: 11px;
  padding: 13px 17px;
  flex-shrink: 0;
}
.section-heading.tight {
  margin: 25px 0 23px;
}
.section-heading.tight h2 {
  font-size: 26px;
  letter-spacing: -1px;
}
.section-heading.tight p {
  font-size: 11px;
  margin: 8px 0 0;
}
.workspace-main .job-card {
  padding: 18px;
}
.workspace-main .job-card h3 {
  font-size: 15px;
}
.workspace-main .job-top {
  gap: 8px;
  margin-bottom: 18px;
}
.workspace-main .company-name {
  font-size: 10px;
}
.workspace-main .tag {
  font-size: 8px;
  padding: 4px 6px;
}
.workspace-main .job-tags span {
  font-size: 8px;
}
.workspace-main .job-bottom > span {
  font-size: 8px;
}
.quiet-notice {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 24px 10px;
}
.quiet-notice > svg {
  color: #8a9b77;
}
.quiet-notice p {
  font-size: 10px;
  margin: 0;
}
.quiet-notice strong {
  color: #536448;
}
.workspace-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 40px;
  font-size: 9px;
  color: #9aa090;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid #d9dece;
  padding: 9px 10px 9px 18px;
  border-radius: 10px;
}
.search-bar input {
  border: 0;
  padding: 6px;
  min-height: 35px;
  flex: 1;
}
.search-bar > svg {
  width: 18px;
  color: #8a927f;
}
.results-label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  margin: 26px 0 17px;
}
.empty-state {
  grid-column: 1 / -1;
  background: #f3f4ec;
  border: 1px dashed #d7dfcb;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}
.empty-state h2 {
  font-size: 26px;
  margin: 20px 0 13px;
  letter-spacing: -0.8px;
}
.empty-state p {
  font-size: 13px;
  max-width: 470px;
  margin: 0 auto 24px;
}
.application-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.application-list article {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 21px;
  border-bottom: 1px solid var(--line);
}
.application-list article:last-child {
  border: 0;
}
.application-list article > div {
  flex: 1;
}
.application-list h3 {
  font-size: 14px;
  margin: 0 0 7px;
}
.application-list p {
  font-size: 10px;
  margin: 0;
}
.application-list .tag {
  padding: 7px 9px;
}
.tag.reviewed {
  background: #dcebd3;
  color: #52723e;
}
.application-list .button {
  font-size: 10px;
}
.billing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 980px;
}
.billing-explainer {
  padding: 20px 0;
}
.billing-explainer h2 {
  font-size: 30px;
  margin-top: 24px;
}
.billing-explainer p {
  font-size: 12px;
}
.billing-explainer .notice {
  font-size: 11px;
}
.billing-explainer h3 {
  margin-top: 30px;
  font-size: 16px;
}
.packet-contact {
  background: #eef1e6;
  padding: 18px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  margin: 25px 0;
}
.packet-contact span {
  color: var(--muted);
  font-size: 10px;
}
.resume-preview {
  font:
    11px / 1.7 Arial,
    sans-serif;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 9px;
  max-height: 200px;
  overflow: auto;
}
.packet-answers dt {
  font-size: 11px;
  font-weight: 600;
  margin-top: 16px;
  line-height: 1.7;
}
.packet-answers dd {
  font-size: 11px;
  line-height: 1.6;
  margin: 6px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.unanswered {
  color: #a27044;
  font-style: italic;
}
.packet-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  gap: 20px;
}
.packet-actions a {
  font-size: 10px;
}
.delete-account {
  margin: 45px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  color: #8b4e42;
  font-size: 11px;
}
.delete-account p {
  font-size: 11px;
  margin-top: 20px;
}
.delete-account form {
  max-width: 380px;
}
.privacy-page {
  max-width: 800px;
  margin: 50px auto 80px;
  padding: 0 30px;
}
.privacy-page h1 {
  font-size: 52px;
}
.privacy-page h2 {
  font-size: 25px;
  letter-spacing: -1px;
  margin-top: 35px;
}
.privacy-page p {
  font-size: 14px;
}
.privacy-page > .button {
  margin-top: 20px;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--green);
  color: white;
  border: 1px solid #42674a;
  padding: 17px 24px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.6;
  box-shadow: 0 8px 45px #0002;
  max-width: 650px;
  width: max-content;
  max-inline-size: calc(100vw - 35px);
}
.loading {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
}
.brand-mark {
  font:
    bold 48px Georgia,
    serif;
  border-radius: 18px;
  background: var(--green);
  color: var(--lime);
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px 20px;
  z-index: 999;
  background: white;
  border: 2px solid var(--green);
}
.skip-link:focus {
  top: 15px;
}
@media (min-width: 1450px) {
  .workspace-main {
    padding: 55px;
  }
  .workspace-header {
    padding: 0 55px;
  }
}
@media (max-width: 1150px) {
  .site-header {
    padding: 23px 35px;
  }
  .hero {
    padding: 55px 35px 80px;
    gap: 10px;
  }
  .hero-art {
    transform: scale(0.86);
    transform-origin: right center;
  }
  .hero-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .source-band {
    margin: 0 35px;
  }
  .section {
    padding: 75px 35px;
  }
  .answer-feature {
    padding: 85px 45px;
    gap: 55px;
  }
  .pricing {
    gap: 65px;
  }
  .workspace-main {
    padding: 30px;
  }
  .workspace-header {
    padding: 0 30px;
  }
  .autopilot-panel {
    flex-wrap: wrap;
  }
  .autopilot-panel .button {
    margin-left: 68px;
  }
  .dashboard-stats > div {
    padding: 0 15px;
  }
  .workspace-main .job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sidebar {
    width: 220px;
    padding: 25px 15px;
  }
  .workspace-body {
    margin-left: 220px;
    width: calc(100% - 220px);
  }
  .application-list article {
    flex-wrap: wrap;
  }
  .application-list .button {
    margin-left: auto;
  }
  .billing-layout {
    gap: 25px;
  }
  .price-card {
    padding: 27px;
  }
  .header-actions {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .site-header nav {
    gap: 17px;
    font-size: 11px;
  }
  .site-header {
    padding: 20px 25px;
  }
  .brand {
    font-size: 22px;
  }
  .header-actions .text-button {
    display: none;
  }
  .hero {
    padding: 50px 30px 80px;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .hero h1 {
    font-size: 66px;
  }
  .hero h1 br:nth-child(2) {
    display: none;
  }
  .hero-description {
    max-width: 490px;
  }
  .hero-cta {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .hero-art {
    transform: none;
    height: 480px;
    margin-top: 45px;
    width: min(100%, 520px);
    justify-self: center;
  }
  .source-band {
    flex-wrap: wrap;
    padding: 26px 0;
    gap: 24px;
    margin: 0 30px;
  }
  .source-band > span {
    width: 100%;
  }
  .source-band > div {
    font-size: 22px;
  }
  .section {
    padding: 65px 30px;
  }
  .section-heading {
    gap: 25px;
  }
  .section-heading > p {
    max-width: 220px;
    font-size: 11px;
  }
  .steps {
    gap: 25px;
  }
  .steps p {
    font-size: 12px;
  }
  .job-grid {
    grid-template-columns: 1fr 1fr;
  }
  .job-grid > .job-card:last-child:nth-child(3) {
    display: none;
  }
  .workspace-main .job-grid > .job-card:last-child:nth-child(3) {
    display: flex;
  }
  .answer-feature {
    gap: 40px;
    padding: 65px 35px;
  }
  .answer-bubble p {
    font-size: 19px;
  }
  .answer-response {
    font-size: 9px;
    padding: 15px;
  }
  .pricing {
    gap: 35px;
  }
  .price-card {
    padding: 25px;
  }
  .site-footer {
    flex-wrap: wrap;
    padding: 30px;
  }
  .site-footer p {
    flex: none;
  }
  .site-footer > span {
    margin-left: auto;
  }
  .sidebar {
    width: 78px;
    padding: 23px 10px;
  }
  .sidebar > .brand {
    font-size: 0;
    margin: 0 12px 40px;
    gap: 0;
  }
  .sidebar .brand-dot {
    display: none;
  }
  .sidebar-label,
  .nav-item > span,
  .member-card,
  .account-chip > div {
    display: none;
  }
  .sidebar nav {
    gap: 12px;
  }
  .nav-item {
    padding: 14px;
    justify-content: center;
  }
  .nav-item svg {
    width: 21px;
    height: 21px;
  }
  .account-chip {
    flex-direction: column;
  }
  .workspace-body {
    margin-left: 78px;
    width: calc(100% - 78px);
  }
  .workspace-main {
    padding: 30px 25px;
  }
  .workspace-header {
    padding: 0 25px;
  }
  .workspace-footer {
    padding: 25px;
  }
  .page-heading h1 {
    font-size: 34px;
  }
  .page-heading > .button {
    font-size: 11px;
    padding: 13px;
  }
  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
  }
  .dashboard-stats > div:nth-child(2) {
    border: 0;
  }
  .billing-layout {
    grid-template-columns: 1fr;
  }
  .billing-layout .price-card {
    max-width: 450px;
  }
  .onboard-header > span {
    display: none;
  }
  .question-grid {
    gap: 13px;
  }
  .question-field {
    padding: 17px;
  }
  .application-list h3 {
    font-size: 13px;
  }
}
@media (max-width: 580px) {
  .prototype-strip {
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .prototype-strip span {
    font-size: 9px;
    margin-left: 6px;
  }
  .site-header {
    padding: 20px;
  }
  .site-header nav {
    display: none;
  }
  .brand {
    font-size: 23px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .header-actions .button {
    font-size: 11px;
    padding: 11px 13px;
    gap: 9px;
  }
  .hero {
    padding: 35px 24px 70px;
  }
  .hero h1 {
    font-size: 53px;
    margin: 23px 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .hero-cta .button {
    width: 100%;
    padding: 18px 24px;
  }
  .hero-cta .text-button {
    align-self: center;
  }
  .microcopy {
    justify-content: center;
    font-size: 9px;
    margin-top: 23px;
  }
  .hero-art {
    height: 375px;
    margin-top: 38px;
    max-width: 340px;
  }
  .art-orbit {
    width: 340px;
    height: 340px;
  }
  .art-small-orbit {
    width: 280px;
    height: 280px;
  }
  .preview-window {
    width: 310px;
    transform: rotate(-2deg);
  }
  .preview-toolbar {
    padding: 11px 13px;
    font-size: 7px;
  }
  .preview-heading {
    padding: 22px 19px 2px;
  }
  .preview-heading h2 {
    font-size: 22px;
  }
  .preview-heading .eyebrow {
    font-size: 6px;
  }
  .preview-summary {
    margin: 3px 18px 10px;
    padding: 13px 15px;
  }
  .preview-summary strong {
    font-size: 25px;
  }
  .preview-summary span {
    font-size: 8px;
  }
  .preview-role {
    margin: 0 18px;
    padding: 12px 0;
  }
  .preview-role strong {
    font-size: 9px;
    max-width: 220px;
  }
  .preview-role .company-mark {
    width: 26px;
    height: 26px;
    font-size: 8px;
  }
  .preview-role span:not(.company-mark) {
    font-size: 8px;
  }
  .preview-footer {
    padding: 12px 18px;
    font-size: 7px;
  }
  .floating-note {
    font-size: 12px;
    top: -20px;
    right: 0;
  }
  .tiny-spark {
    font-size: 25px;
  }
  .floating-approved {
    bottom: -26px;
    right: -5px;
    padding: 13px 15px;
    gap: 10px;
  }
  .floating-approved strong {
    font-size: 9px;
  }
  .floating-approved span {
    font-size: 8px;
  }
  .art-flower {
    font-size: 75px;
    bottom: -27px;
    left: -6px;
  }
  .source-band {
    margin: 0 24px;
    gap: 18px;
    justify-content: flex-start;
  }
  .source-band > span {
    font-size: 9px;
  }
  .source-band > div {
    font-size: 19px;
  }
  .source-band > div:nth-of-type(2) {
    font-size: 24px;
  }
  .source-band > div:nth-of-type(4) {
    font-size: 24px;
  }
  .source-band small {
    max-width: none;
    flex-basis: 100%;
    font-size: 8px;
  }
  .section {
    padding: 55px 24px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .section-heading > p {
    max-width: none;
    font-size: 12px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .steps article {
    padding-left: 68px;
  }
  .step-icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 43px;
    height: 43px;
  }
  .steps h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .steps p {
    font-size: 12px;
    max-width: 320px;
  }
  .step-number {
    right: 0;
    top: -5px;
    font-size: 23px;
  }
  .job-grid {
    grid-template-columns: 1fr;
  }
  .job-card {
    padding: 22px;
  }
  .job-card.compact h3 {
    min-height: 0;
  }
  .job-grid > .job-card:last-child:nth-child(3) {
    display: flex;
  }
  .answer-feature {
    grid-template-columns: 1fr;
    padding: 30px 30px 55px;
    gap: 35px;
  }
  .answer-illustration {
    max-width: 340px;
    width: 100%;
    margin: auto;
  }
  .answer-feature > div > h2 {
    font-size: 36px;
  }
  .pricing {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
  }
  .pricing h2 {
    font-size: 38px;
  }
  .pricing > div > p {
    max-width: none;
    font-size: 13px;
  }
  .pricing .pricing-aside {
    font-size: 11px;
    margin-top: 20px;
  }
  .price-card {
    padding: 26px;
  }
  .closing {
    padding: 55px 25px;
  }
  .closing h2 {
    font-size: 34px;
  }
  .closing .eyebrow {
    font-size: 8px;
  }
  .site-footer {
    gap: 18px;
    padding: 26px 24px;
  }
  .site-footer p {
    font-size: 9px;
  }
  .site-footer > a:not(.brand) {
    font-size: 9px;
    flex-basis: 60%;
  }
  .site-footer > span {
    font-size: 8px;
  }
  .sidebar {
    width: 60px;
    padding: 23px 7px;
  }
  .sidebar > .brand {
    margin-left: 8px;
    margin-bottom: 29px;
  }
  .sidebar > .brand img {
    width: 28px;
    height: 28px;
  }
  .nav-item {
    padding: 12px;
  }
  .nav-item svg {
    width: 19px;
    height: 19px;
  }
  .workspace-body {
    margin-left: 60px;
    width: calc(100% - 60px);
  }
  .workspace-header {
    height: 63px;
    padding: 0 17px;
    font-size: 10px;
  }
  .workspace-header a {
    display: none;
  }
  .workspace-header > div {
    gap: 8px;
  }
  .prototype-pill {
    font-size: 6px;
    padding: 6px 7px;
    letter-spacing: 0.3px;
  }
  .workspace-main {
    padding: 27px 17px;
  }
  .page-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }
  .page-heading h1 {
    font-size: 30px;
  }
  .page-heading .eyebrow {
    font-size: 7px;
    letter-spacing: 0.9px;
  }
  .page-heading p {
    font-size: 11px;
  }
  .dashboard-stats {
    margin: 24px 0;
    padding: 20px 0;
    row-gap: 20px;
  }
  .dashboard-stats > div {
    padding: 0 12px;
    gap: 9px;
  }
  .dashboard-stats span {
    font-size: 8px;
    line-height: 1.5;
  }
  .dashboard-stats strong {
    font-size: 30px;
  }
  .dashboard-stats small {
    font-size: 7px;
    line-height: 1.6;
  }
  .autopilot-panel {
    padding: 20px 16px;
    gap: 12px;
    margin-bottom: 25px;
  }
  .autopilot-panel > .round-spark {
    width: 35px;
    height: 35px;
  }
  .autopilot-panel > div:nth-child(2) {
    flex-basis: 100%;
  }
  .autopilot-panel h2 {
    font-size: 23px;
  }
  .autopilot-panel p {
    font-size: 10px;
  }
  .autopilot-panel .button {
    margin: 6px 0 0;
    width: 100%;
  }
  .workspace-main .job-grid {
    grid-template-columns: 1fr;
  }
  .section-heading.tight {
    gap: 13px;
  }
  .section-heading.tight h2 {
    font-size: 24px;
  }
  .workspace-main .job-card {
    padding: 20px;
  }
  .workspace-main .job-card h3 {
    font-size: 16px;
    min-height: 0;
  }
  .quiet-notice {
    padding: 20px 0;
    align-items: flex-start;
  }
  .quiet-notice p {
    font-size: 9px;
  }
  .workspace-footer {
    flex-direction: column;
    padding: 20px 17px;
    gap: 10px;
    font-size: 8px;
  }
  .search-bar {
    gap: 5px;
    padding: 7px 8px;
  }
  .search-bar input {
    font-size: 10px;
    width: 100px;
  }
  .search-bar .button {
    font-size: 9px;
    padding: 10px;
    gap: 5px;
  }
  .results-label {
    font-size: 8px;
    gap: 10px;
    line-height: 1.6;
  }
  .application-list article {
    padding: 17px;
    gap: 12px;
  }
  .application-list .company-mark {
    width: 29px;
    height: 29px;
    font-size: 9px;
  }
  .application-list article > div {
    flex-basis: 70%;
    min-width: 0;
  }
  .application-list h3 {
    font-size: 12px;
  }
  .application-list .tag {
    font-size: 7px;
  }
  .application-list .button {
    font-size: 9px;
    padding: 10px;
  }
  .question-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .question-field {
    padding: 19px;
  }
  .question-field > strong {
    min-height: 0;
  }
  .question-category {
    font-size: 8px;
  }
  .form-grid {
    gap: 0;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-actions .button {
    width: 100%;
  }
  .form-actions p {
    max-width: none;
  }
  .form-section-title {
    font-size: 24px;
  }
  .billing-layout {
    gap: 15px;
  }
  .workspace-main .price-card {
    padding: 19px;
  }
  .price-top {
    font-size: 8px;
    letter-spacing: 0.8px;
    flex-wrap: wrap;
  }
  .price {
    font-size: 56px;
  }
  .price-card li {
    font-size: 11px;
  }
  .price-card > small {
    font-size: 8px;
  }
  .notice {
    font-size: 10px;
    padding: 15px 13px;
    gap: 9px;
  }
  .onboard-header {
    padding: 20px;
  }
  .onboard-main {
    margin: 28px auto 60px;
    padding: 0 22px;
  }
  .onboard-main h1 {
    font-size: 37px;
  }
  .onboard-main .page-lead {
    font-size: 12px;
  }
  dialog {
    padding: 28px 23px;
    max-height: 88vh;
  }
  dialog h2 {
    font-size: 30px;
  }
  dialog > .brand {
    margin-bottom: 30px;
  }
  .packet-actions {
    flex-direction: column;
    gap: 10px;
  }
  .privacy-page {
    margin: 30px auto 50px;
    padding: 0 24px;
  }
  .privacy-page h1 {
    font-size: 40px;
  }
  .privacy-page p {
    font-size: 12px;
  }
  .empty-state {
    padding: 35px 18px;
  }
  .empty-state h2 {
    font-size: 23px;
  }
  .empty-state p {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
[hidden] {
  display: none !important;
}
