:root {
  --bg: #f6f8fc;
  --panel: #ffffff;
  --ink: #1b2733;
  --muted: #5c6b7a;
  --faint: #8493a5;
  --line: #e4e9f0;
  --line-strong: #d8e0ea;
  --accent: #5b72f2;
  --accent-strong: #4456c4;
  --accent-soft: #eaeeff;
  --green: #3fb6a0;
  --green-dark: #2c8a78;
  --green-soft: #eaf6f2;
  --lilac: #9b6fd6;
  --lilac-soft: #f1eafb;
  --slate-soft: #eaf0f6;
  --shadow: 0 18px 44px -24px rgba(27, 39, 51, .32);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button, input, select { font: inherit; }
button, select { cursor: pointer; }
button { border: 0; background: transparent; color: inherit; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; }

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e7ecf3;
  background: rgba(246, 248, 252, .82);
  backdrop-filter: blur(12px);
}

.navwrap {
  width: min(100%, 1200px);
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
  padding: 16px 32px;
}

.navleft,
.navlinks,
.navactions {
  min-width: 0;
  display: flex;
  align-items: center;
}

.navleft { gap: 40px; }
.navlinks { gap: 28px; }
.navactions { gap: 20px; }

.brandButton {
  display: flex;
  align-items: center;
  padding: 0;
}

.brandLogo {
  width: 178px;
  height: auto;
  display: block;
}

.navlinks button,
.ghostAction {
  min-height: 36px;
  padding: 0;
  color: #6b7a8a;
  font-size: 15px;
  font-weight: 600;
}

.navlinks button:hover,
.ghostAction:hover,
.footer button:hover {
  color: var(--ink);
}

.darkPill,
.primaryPill,
.secondaryPill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 740;
  white-space: nowrap;
}

.darkPill {
  background: var(--ink);
  color: #fff;
}

.darkPill:hover { background: #111b25; }

.primaryPill {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(91, 114, 242, .62);
}

.primaryPill:hover { background: #4e63dd; }

.primaryPill.small {
  min-height: 38px;
  padding-inline: 18px;
}

.secondaryPill {
  border: 1px solid var(--line);
  background: #fff;
  color: #3c4b5a;
}

.secondaryPill:hover { border-color: #ccd5e1; }

.full { width: 100%; }

.hero {
  max-width: 780px;
  margin: 0 auto;
  padding: 84px 32px 96px;
  text-align: center;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.heroBadge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.heroBadge strong {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 650;
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 60px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.heroCopy {
  max-width: 540px;
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.heroSearch {
  max-width: 600px;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 8px;
  margin: 0 auto 26px;
  padding: 8px 8px 8px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 34px -14px rgba(27, 39, 51, .20);
}

.searchIcon {
  width: 18px;
  height: 18px;
  border: 2px solid #b7c2d0;
  border-radius: 50%;
}

.heroSearch input {
  min-width: 0;
  min-height: 42px;
  border: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.heroSearch input::placeholder { color: #9aa7b5; }

.searchDivider {
  width: 1px;
  height: 26px;
  background: var(--line);
}

.remoteShortcut {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  color: #9aa7b5;
  font-size: 16px;
  font-weight: 500;
}

.remoteShortcut:hover,
.remoteShortcut.active {
  background: #f2f5fa;
  color: #3c4b5a;
}

.popularRow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}

.popularRow span {
  color: var(--faint);
  font-size: 14px;
  font-weight: 500;
}

.popularRow button {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #3c4b5a;
  font-size: 14px;
  font-weight: 650;
}

.popularRow button:hover,
.popularRow button.active {
  border-color: #d6dffe;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.socialProof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.socialProof strong {
  color: var(--ink);
  font-weight: 800;
}

.avatarStack {
  display: flex;
  align-items: center;
}

.avatarStack span {
  width: 34px;
  height: 34px;
  border: 2.5px solid var(--bg);
  border-radius: 50%;
}

.avatarStack span + span { margin-left: -10px; }
.avatarStack span:nth-child(1) { background: #c9d6e8; }
.avatarStack span:nth-child(2) { background: #b9c9de; }
.avatarStack span:nth-child(3) { background: #a7bbd4; }
.avatarStack span:nth-child(4) { background: #d8c4e2; }

.sectionWide,
.sectionNarrow {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 32px 80px;
}

.sectionNarrow {
  width: min(100%, 1000px);
  padding-bottom: 72px;
}

.eyebrow {
  color: var(--faint);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.center { text-align: center; }

.logoStrip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.logoStrip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #eaeef4;
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  padding: 0 18px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 650;
}

.sectionHeader,
.jobsIntro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.sectionHeader.compact { margin-bottom: 16px; }

.sectionHeader h2,
.jobsIntro h2,
.companiesHero h2,
.brandSection h2 {
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.sectionHeader p,
.jobsIntro p,
.companiesHero p {
  color: var(--muted);
  font-size: 16px;
}

.textLink {
  min-height: 38px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 780;
}

.textLink:hover { color: var(--accent-strong); }

.categoryGrid,
.featuredGrid,
.companyCards,
.stepsGrid {
  display: grid;
  gap: 16px;
}

.categoryGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.categoryCard,
.featuredCard,
.jobCard,
.companyCards article,
.filterPanel,
.watchlist,
.brandPanel,
.posterPanel,
.howPanel {
  min-width: 0;
  border: 1px solid #eaeef4;
  border-radius: 18px;
  background: #fff;
}

.categoryCard,
.featuredCard,
.jobCard,
.companyCards article {
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}

.categoryCard:hover,
.featuredCard:hover,
.jobCard:hover,
.companyCards article:hover {
  border-color: #d9e0ec;
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.categoryCard {
  padding: 22px;
  text-align: left;
}

.categoryIcon,
.companyAvatar,
.cardIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.categoryIcon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 800;
}

.categoryIcon.green { color: var(--green); background: var(--green-soft); }
.categoryIcon.lilac { color: var(--lilac); background: var(--lilac-soft); }
.categoryIcon.slate { color: #5c7a9a; background: var(--slate-soft); }

.categoryCard strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 760;
}

.categoryCard span:last-child {
  color: var(--faint);
  font-size: 14px;
}

.featuredGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featuredCard {
  display: block;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}

.featuredTop,
.jobTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.companyAvatar {
  width: 48px;
  height: 48px;
  flex: none;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
}

.companyAvatar.green { color: var(--green); background: var(--green-soft); }
.companyAvatar.lilac { color: var(--lilac); background: var(--lilac-soft); }
.companyAvatar.slate { color: #5c7a9a; background: var(--slate-soft); }

.posted {
  color: #9aa7b5;
  font-size: 13px;
}

.featuredCard h3,
.jobCard h3 {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 760;
}

.featuredCard p,
.jobCard p {
  color: var(--faint);
  font-size: 14px;
}

.pillRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag,
.targetBadge,
.countBadge,
.method {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  background: #f2f5fa;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.targetBadge {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.salary {
  margin-left: auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 780;
}

.howPanel {
  border-radius: 28px;
  padding: 56px 48px;
}

.howPanel h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 32px;
  line-height: 1.16;
  font-weight: 800;
}

.stepsGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.stepsGrid article {
  text-align: center;
}

.stepsGrid span {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
}

.stepsGrid article:nth-child(2) span {
  background: var(--green-soft);
  color: var(--green);
}

.stepsGrid article:nth-child(3) span {
  background: var(--lilac-soft);
  color: var(--lilac);
}

.stepsGrid h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 780;
}

.stepsGrid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.employerCta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1b2733, #27384a);
  padding: 56px;
}

.employerCta h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
}

.employerCta p {
  max-width: 520px;
  color: #aeb9c6;
  font-size: 17px;
  line-height: 1.55;
}

.jobsSection {
  padding-bottom: 88px;
}

.resulttools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

input, select {
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

input:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(91, 114, 242, .13);
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 660;
  white-space: nowrap;
}

.jobsLayout {
  display: grid;
  grid-template-columns: 258px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
}

.filterPanel {
  position: sticky;
  top: 88px;
  padding: 24px;
}

.filterTitle {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.filterBlock {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.filterLabel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.filterLabel strong {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 760;
}

.statechips,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f6f8fc;
  color: #3c4b5a;
  padding: 4px 7px 4px 11px;
  font-size: 13px;
  font-weight: 650;
}

.chip.state {
  border-color: #d6dffe;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.chip.locked {
  border-color: #f5dea5;
  background: #fff3d6;
  color: #94600b;
}

.chip button {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dde4ec;
  color: var(--muted);
  padding: 0;
}

.chip button:hover {
  background: #cbd5e1;
  color: var(--ink);
}

.segments {
  display: grid;
  gap: 9px;
}

.segments button {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 720;
}

.segments button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.sourceStats {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid #eef1f6;
}

.sourceStats span {
  color: var(--muted);
  font-size: 12px;
}

.jobListWrap {
  min-width: 0;
}

.companyToolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 16px;
}

.companyInput {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.companyInput div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.companyToolbar button,
.companyInput button {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 760;
}

.companyToolbar button:hover,
.companyInput button:hover {
  border-color: #c1cad8;
}

.jobList {
  display: grid;
  gap: 14px;
}

.jobCard {
  display: block;
  padding: 22px 24px;
  color: inherit;
  text-decoration: none;
}

.jobCardMain {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
}

.jobMeta {
  min-width: 0;
}

.jobMeta h3 {
  overflow-wrap: anywhere;
}

.jobTags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.jobAside {
  min-width: 120px;
  text-align: right;
}

.empty {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.watchlist {
  padding: 24px;
}

.status {
  min-height: 18px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.companiesSection {
  padding-bottom: 88px;
}

.companiesHero {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.companiesHero .eyebrow {
  margin-bottom: 22px;
  color: var(--green-dark);
}

.companiesHero h2 {
  max-width: 680px;
  margin: 0 auto 22px;
  font-size: 54px;
  line-height: 1.05;
}

.companiesHero p {
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 19px;
  line-height: 1.55;
}

.heroActions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.companyCards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.companyCards article {
  padding: 30px;
}

.cardIcon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.cardIcon::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: currentColor;
}

.cardIcon.blue {
  color: var(--accent);
  background: var(--accent-soft);
}

.cardIcon.green {
  color: var(--green);
  background: var(--green-soft);
}

.cardIcon.lilac {
  color: var(--lilac);
  background: var(--lilac-soft);
}

.companyCards h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 780;
}

.companyCards p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.posterPanel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-radius: 28px;
  padding: 48px;
}

.pricingCard h3 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 800;
}

.pricingCard p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.price strong {
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.price span {
  color: var(--faint);
  font-size: 16px;
}

.posterForm {
  display: grid;
  gap: 12px;
}

.posterForm label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.brandSection {
  padding-bottom: 80px;
}

.brandSection > .eyebrow {
  margin-bottom: 10px;
}

.brandSection > h2 {
  margin-bottom: 32px;
  font-size: 38px;
}

.brandGrid {
  display: grid;
  gap: 24px;
}

.brandPanel {
  border-radius: 24px;
  padding: 36px 40px;
}

.brandPanel h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
}

.brandPanel p {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.logoSamples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.logoSamples div {
  min-height: 150px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--bg);
  padding: 24px;
}

.logoSamples img {
  max-width: 100%;
  max-height: 78px;
}

.logoSamples .darkSample {
  background: var(--ink);
}

.logoSamples .darkSample img {
  filter: brightness(0) invert(1);
}

.palette {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.palette span {
  min-width: 0;
}

.palette span::before {
  content: "";
  display: block;
  height: 84px;
  margin-bottom: 10px;
  border: 1px solid rgba(27, 39, 51, .06);
  border-radius: 14px;
  background: var(--swatch);
}

.palette strong {
  display: block;
  font-size: 14px;
  font-weight: 780;
}

.palette em {
  color: var(--faint);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-style: normal;
}

.typeRows {
  display: grid;
  gap: 18px;
}

.typeRows div {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid #f0f3f7;
  padding-bottom: 18px;
}

.typeRows div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.typeRows span {
  width: 90px;
  flex: none;
  color: #aeb9c6;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
}

.typeRows strong {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.typeRows p {
  color: #46596b;
  font-size: 17px;
  line-height: 1.6;
}

.typeRows em {
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  font-style: normal;
  letter-spacing: .04em;
}

.footer {
  margin-top: auto;
  border-top: 1px solid #eaeef4;
  background: #fff;
}

.footerGrid {
  width: min(100%, 1200px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin: 0 auto;
  padding: 48px 32px 36px;
}

.footerLogo {
  width: 170px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.footer p {
  max-width: 240px;
  color: var(--faint);
  font-size: 14px;
  line-height: 1.6;
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
}

.footer button {
  min-height: 28px;
  display: block;
  color: #6b7a8a;
  padding: 0;
  font-size: 14px;
  text-align: left;
}

.footerBottom {
  width: min(100%, 1200px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  border-top: 1px solid #f0f3f7;
  padding: 24px 32px 36px;
  color: #aeb9c6;
  font-size: 13px;
}

@media (max-width: 980px) {
  .navwrap {
    align-items: flex-start;
  }

  .navleft {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .categoryGrid,
  .featuredGrid,
  .companyCards,
  .stepsGrid,
  .posterPanel,
  .logoSamples,
  .palette {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jobsLayout {
    grid-template-columns: 1fr;
  }

  .filterPanel {
    position: static;
  }

  .segments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .employerCta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footerGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .navwrap,
  .sectionWide,
  .sectionNarrow,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navwrap,
  .navactions,
  .sectionHeader,
  .jobsIntro,
  .companyToolbar,
  .jobCardMain,
  .posterPanel {
    grid-template-columns: 1fr;
  }

  .navwrap,
  .sectionHeader,
  .jobsIntro {
    align-items: stretch;
  }

  .navwrap {
    display: grid;
  }

  .navlinks {
    gap: 18px;
    flex-wrap: wrap;
  }

  .navactions {
    justify-content: space-between;
  }

  .brandLogo {
    width: 164px;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .hero h1,
  .companiesHero h2 {
    font-size: 42px;
  }

  .heroSearch {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 24px;
    padding: 12px;
  }

  .searchDivider {
    display: none;
  }

  .remoteShortcut,
  .heroSearch .primaryPill {
    grid-column: span 2;
    width: 100%;
  }

  .socialProof {
    align-items: flex-start;
    flex-direction: column;
  }

  .categoryGrid,
  .featuredGrid,
  .companyCards,
  .stepsGrid,
  .logoSamples,
  .palette,
  .footerGrid {
    grid-template-columns: 1fr;
  }

  .howPanel,
  .employerCta,
  .posterPanel,
  .brandPanel {
    padding: 30px 24px;
  }

  .companyToolbar {
    display: grid;
  }

  .companyToolbar > button {
    width: 100%;
  }

  .jobCardMain {
    display: grid;
  }

  .jobTags {
    justify-content: flex-start;
  }

  .jobAside {
    text-align: left;
  }

  .segments {
    grid-template-columns: 1fr;
  }

  .typeRows div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footerBottom {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 430px) {
  .hero h1,
  .companiesHero h2 {
    font-size: 36px;
  }

  .sectionHeader h2,
  .jobsIntro h2,
  .howPanel h2,
  .brandSection > h2 {
    font-size: 28px;
  }

  .popularRow {
    justify-content: flex-start;
  }
}
