@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;600;700;800&family=Figtree:wght@400;500;600;700;800&display=swap");
:root {
  color-scheme: light;
  --ink: #102a2e;
  --deep: #0b2428;
  --brand: #f2c414;
  --brand-hover: #e0b20a;
  --muted: #5a6b6e;
  --accent: #1a7a6e;
  --accent-dark: #125e55;
  --accent-soft: #e4f3f0;
  --line: #d5e0dc;
  --soft: #e8f0ed;
  --canvas: #f2f6f4;
  --paper: #ffffff;
  --blue: #1a7a6e;
  --shadow: 0 22px 55px #102a2e12;
  --radius: 18px;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: Figtree, sans-serif;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.15rem);
  font-weight: 750;
}
h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 700;
}
h3 {
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  font-weight: 650;
}
p {
  line-height: 1.75;
  margin: 0 0 20px;
}
small,
.small {
  font-size: 0.8125rem;
  line-height: 1.6;
}
.muted {
  color: var(--muted);
}
.accent {
  color: var(--accent);
}
.container {
  width: min(1240px, calc(100% - 64px));
  margin: auto;
}
.section {
  padding: 80px 0;
}
.soft {
  background: var(--soft);
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
}
.section-head h2 {
  margin-bottom: 10px;
}
.text-link {
  font-size: 0.875rem;
  font-weight: 750;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--brand);
  color: var(--ink);
  font-weight: 750;
  font-size: 0.875rem;
  line-height: 1.5;
  transition:
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.btn:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px #102a2e18;
}
.btn.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn.secondary:hover {
  background: var(--soft);
  border-color: #abb6c7;
}
.btn.quiet {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}
.btn.danger {
  color: #b42318;
  background: #fff1ef;
  border-color: #fecdca;
}
.btn.small {
  padding: 8px 14px;
  min-height: 38px;
  font-size: 0.8125rem;
}
.btn.wide {
  width: 100%;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.spread {
  justify-content: space-between;
}
.stack {
  display: grid;
  gap: 20px;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.icon-btn {
  border: 1px solid var(--line);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}
.icon-btn:hover,
.icon-btn.saved {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: #c0cdf5;
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  background: white;
  padding: 16px;
  z-index: 200;
}
.skip:focus {
  top: 10px;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.market-header {
  position: sticky;
  top: 0;
  background: #fffffff5;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 40;
}
.header-inner {
  min-height: 76px;
  display: flex;
  gap: 36px;
  align-items: center;
}
.market-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.market-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.market-brand strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 750;
  letter-spacing: -0.045em;
}
.market-brand small {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.market-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.market-nav > a {
  font-size: 0.8125rem;
  font-weight: 650;
  color: #536074;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.market-nav > a:hover,
.market-nav > a[aria-current] {
  color: var(--accent);
}
.nav-account {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 12px;
}
.nav-account .btn {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.8125rem;
}
.menu-toggle {
  display: none;
}
.user-avatar {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}
.market-footer {
  background: #171b24;
  color: #e1e5ef;
  padding: 58px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 40px;
}
.market-footer .market-brand {
  color: white;
}
.market-footer p {
  font-size: 0.875rem;
  color: #a4adbd;
  margin-top: 20px;
  max-width: 320px;
}
.market-footer h3 {
  font-family: inherit;
  font-size: 0.875rem;
  letter-spacing: 0;
  color: white;
  margin: 0 0 18px;
}
.footer-links {
  display: grid;
  gap: 13px;
  font-size: 0.8125rem;
  color: #bcc4d2;
}
.footer-links a:hover {
  color: var(--brand);
}
.footer-base {
  border-top: 1px solid #323a49;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #a4adbd;
}
.footer-custom {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0 36px;
  border-top: 1px solid #323a49;
}
.footer-custom p {
  max-width: none;
  margin: 6px 0 0;
}
.footer-custom strong {
  color: white;
}
.footer-custom > a {
  margin-left: auto;
  color: var(--brand);
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 750;
}
.hero {
  background:
    radial-gradient(ellipse at 12% 15%, #fff4c4 0, transparent 55%),
    radial-gradient(ellipse at 92% 80%, #eef1fa 0, transparent 50%), #fcfcfd;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 70px;
  min-height: 580px;
  padding-top: 56px;
  padding-bottom: 64px;
}
.hero h1 {
  max-width: 640px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-copy > p {
  color: #626b79;
  max-width: 505px;
  font-size: 1rem;
  line-height: 1.85;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid #e0c669;
  background: #ffffffb3;
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 750;
  margin-bottom: 25px;
}
.hero .row {
  margin-top: 28px;
}
.hero-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.75rem;
  color: #626b79;
  margin-top: 27px;
}
.hero-foot span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-foot svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.hero-jobs {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 470px;
  width: 100%;
  padding: 28px 0;
}
.hero-job {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 15px;
  box-shadow: 0 16px 40px #181c2510;
  transition: transform 0.2s;
}
.hero-job:nth-child(2) {
  margin-left: 34px;
  margin-right: -18px;
}
.hero-job:hover {
  transform: translateY(-4px);
}
.hero-job h3 {
  font-family: inherit;
  letter-spacing: -0.02em;
  font-size: 0.9375rem;
  margin: 0 0 7px;
  line-height: 1.45;
}
.hero-job p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}
.hero-job .tag {
  margin-top: 10px;
}
.hero-count {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid #3b4352;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 0.8125rem;
}
.hero-count strong {
  color: var(--accent);
  font-size: 1rem;
}
.company-mark {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background: #fff4c9;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 800;
  overflow: hidden;
}
.company-mark.blue {
  background: #edf1ff;
  color: var(--accent);
}
.company-mark.purple {
  background: #f4eefa;
  color: #80489b;
}

.promos {
  padding: 48px 0;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.promo {
  border-radius: 14px;
  padding: 24px;
  background: #eef2ff;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.promo:nth-child(2) {
  background: #eff6ff;
}
.promo:nth-child(3) {
  background: #fff6e5;
}
.promo:nth-child(4) {
  background: #f5f1ff;
}
.promo h3 {
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  margin: 13px 0 8px;
}
.promo p {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--muted);
}
.promo .text-link {
  margin-top: auto;
  font-size: 0.75rem;
}
.stats-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 0;
}
.stat {
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border: 0;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 7px;
}
.stat span {
  font-size: 0.8125rem;
  color: var(--muted);
}
.pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 25px 0;
}
.pill {
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--muted);
  white-space: nowrap;
  min-height: 39px;
}
.pill:hover {
  border-color: #93a4e2;
  color: var(--accent);
}
.pill.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.job-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  min-width: 0;
}
.job-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-cover {
  height: 148px;
  position: relative;
  background: #f0f2f7;
  overflow: hidden;
}
.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.job-card:hover .card-cover img {
  transform: scale(1.04);
}
.card-cover:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #171b2499);
}
.cover-label {
  position: absolute;
  left: 16px;
  bottom: 13px;
  z-index: 1;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card-save {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  border: 0;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fffefb;
}
.job-card-body {
  padding: 21px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.75rem;
  color: var(--muted);
}
.card-topline .company-mark {
  height: 30px;
  width: 30px;
  border-radius: 8px;
  font-size: 0.625rem;
}
.job-card h3 {
  font-family: inherit;
  line-height: 1.5;
  font-size: 0.9375rem;
  font-weight: 750;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}
.job-card .place {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 15px;
}
.place svg {
  width: 14px;
  height: 14px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  padding: 4px 9px;
  border-radius: 5px;
  background: #eef2ff;
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.6;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.tag.neutral {
  background: #f0f2f5;
  color: #626b79;
}
.tag.amber {
  background: #fff4da;
  color: #91630b;
}
.tag.red {
  background: #fff0ed;
  color: #b42318;
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #e8ebf0;
  padding-top: 16px;
  margin-top: auto;
  font-size: 0.8125rem;
}
.card-bottom .text-link {
  font-size: 0.75rem;
}
.pay {
  font-weight: 750;
  color: var(--ink);
  margin: 18px 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.pay small {
  font-weight: 400;
  color: var(--muted);
}
.empty {
  border: 1px dashed #c5cddd;
  background: #fafbfe;
  border-radius: 16px;
  padding: 46px 28px;
  text-align: center;
}
.empty > svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 18px;
}
.empty h3 {
  font-size: 1.25rem;
}
.empty p {
  max-width: 520px;
  margin: 0 auto 23px;
  color: var(--muted);
  font-size: 0.875rem;
}
.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 200px;
  background: #171b24;
}
.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.3s;
}
.category-card:hover img {
  transform: scale(1.04);
}
.category-card > div {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: white;
}
.category-card h3 {
  margin-bottom: 8px;
}
.category-card small {
  color: #eceef5;
}
.step {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.step-number {
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  font-weight: 800;
  margin-bottom: 25px;
}
.step p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}
.feature {
  display: flex;
  gap: 18px;
  align-items: start;
}
.feature-icon {
  padding: 15px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
}
.feature h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}
.feature p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}
.cta {
  background: var(--accent);
  color: white;
  padding: 60px;
  border-radius: 22px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.cta h2 {
  max-width: 620px;
}
.cta p {
  color: #bfc7d7;
  margin-bottom: 0;
  max-width: 540px;
  font-size: 0.9375rem;
}
.cta .btn {
  background: #fff;
  color: var(--accent);
  flex-shrink: 0;
}
.page-hero {
  padding: 48px 0;
  background: linear-gradient(115deg, #f6f7fa, #edf1fb);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 14px;
}
.page-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: white;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 810px;
}
.search-bar input {
  border: 0;
  flex: 1;
  min-width: 0;
  background: transparent;
  padding: 10px;
}
.search-bar > svg {
  margin-left: 10px;
  color: var(--muted);
}
.directory {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 32px;
  padding: 40px 0 80px;
}
.filter-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  align-self: start;
  position: sticky;
  top: 96px;
}
.filter-panel h3 {
  font-size: 1rem;
  margin: 0;
}
.filter-panel label {
  font-size: 0.8125rem;
}
.filter-panel .field {
  margin-top: 24px;
}
.filter-panel .btn.quiet {
  padding: 0;
  font-size: 0.75rem;
  min-height: 30px;
}
.directory .grid {
  gap: 20px;
}
.directory .grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}
.results-toolbar select {
  width: auto;
  max-width: 200px;
  min-height: 40px;
  font-size: 0.8125rem;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 32px;
  font-size: 0.875rem;
}
.filter-mobile {
  display: none;
}
.worker-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 25px;
  background: white;
}
.worker-card .avatar {
  margin-bottom: 17px;
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff4c9;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 750;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar.large {
  width: 100px;
  height: 100px;
  font-size: 2rem;
}
.worker-card h3 {
  font-family: inherit;
  margin: 0 0 7px;
  font-size: 1rem;
}
.worker-card p {
  font-size: 0.8125rem;
  margin: 0 0 12px;
  color: var(--muted);
}
.worker-card .card-bottom {
  margin-top: 22px;
}
.panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  min-width: 0;
}
.panel h2 {
  font-size: 1.375rem;
}
.panel h3 {
  font-size: 1rem;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
  padding: 40px 0 75px;
}
.detail-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}
.detail-layout aside {
  align-self: start;
  position: sticky;
  top: 96px;
}
.prose {
  line-height: 1.85;
  color: #536074;
  font-size: 0.9375rem;
  overflow-wrap: anywhere;
}
.prose p {
  white-space: pre-line;
}
.prose ul {
  padding-left: 20px;
}
.prose li {
  margin-bottom: 10px;
}
.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 26px 0;
}
.fact small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}
.fact strong {
  font-size: 0.875rem;
  font-weight: 650;
}
.notice {
  padding: 16px 18px;
  border: 1px solid #ced7f3;
  border-radius: 10px;
  background: var(--accent-soft);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.notice.warn {
  background: #fff9ea;
  border-color: #f2dd9b;
  color: #785609;
}
.notice.error {
  background: #fff4f2;
  border-color: #fecdca;
  color: #9d261c;
}
.notice p {
  margin: 0;
}
.notice a {
  text-decoration: underline;
}
.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.field > label,
.field > span {
  font-size: 0.8125rem;
  font-weight: 700;
}
.field small {
  color: var(--muted);
}
input:not([type="checkbox"], [type="radio"], [type="file"]),
select,
textarea {
  width: 100%;
  border: 1px solid #dde2ec;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  min-height: 46px;
  font-size: 0.875rem;
  line-height: 1.55;
}
textarea {
  resize: vertical;
  min-height: 140px;
}
input[type="file"] {
  width: 100%;
  font-size: 0.8125rem;
  line-height: 1.7;
}
input[type="file"]::file-selector-button {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 12px;
  background: var(--soft);
  color: var(--ink);
  margin-right: 12px;
  cursor: pointer;
}
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin: 0;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
legend {
  font-weight: 700;
  font-size: 0.8125rem;
  margin-bottom: 12px;
}
.check {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-weight: 500;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-message:empty {
  display: none;
}
.form-message {
  border-radius: 9px;
  padding: 13px 16px;
  font-size: 0.8125rem;
  line-height: 1.7;
  background: #fff1ee;
  color: #a32b21;
}
.form-message.success {
  background: var(--accent-soft);
  color: var(--accent);
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 56px;
}
.password-field button {
  position: absolute;
  right: 7px;
  top: 6px;
  border: 0;
}
.divider {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  margin: 24px 0;
}
.divider:before,
.divider:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 76px);
}
.auth-story {
  background: linear-gradient(150deg, #f5f6fa, #f0f3fb);
  padding: 65px max(40px, calc((100vw - 1240px) / 2));
  padding-right: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.auth-story h1 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.2;
  max-width: 510px;
}
.auth-story > p {
  color: var(--muted);
  max-width: 450px;
}
.auth-story img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1.7;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 20px;
}
.auth-benefits {
  display: grid;
  gap: 18px;
  margin: 16px 0 32px;
}
.auth-benefits span {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.875rem;
}
.auth-benefits svg {
  color: var(--accent);
}
.auth-main {
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-box {
  max-width: 450px;
  width: 100%;
}
.auth-box h2 {
  font-size: 1.9rem;
}
.auth-box > p {
  font-size: 0.875rem;
  color: var(--muted);
}
.auth-box .btn.wide {
  min-height: 48px;
}
.role-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.role-option {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.8125rem;
  cursor: pointer;
}
.role-option:has(:checked) {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.role-option strong {
  display: block;
  margin-bottom: 3px;
}
.role-option small {
  font-size: 0.75rem;
  color: var(--muted);
}
.workspace {
  background: var(--soft);
  min-height: 70vh;
  padding: 38px 0 70px;
}
.workspace-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
}
.workspace-nav {
  align-self: start;
  position: sticky;
  top: 100px;
  display: grid;
  gap: 6px;
}
.workspace-nav a,
.workspace-nav button {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 9px;
  padding: 13px 15px;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--muted);
  text-align: left;
}
.workspace-nav a:hover,
.workspace-nav a[aria-current] {
  background: #edf1fd;
  color: var(--accent);
}
.workspace-nav .member-name {
  padding: 10px 15px 24px;
  font-size: 0.875rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}
.workspace-nav .member-name small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}
.workspace-head {
  margin: 5px 0 28px;
}
.workspace-head h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.workspace-head p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}
.metric {
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  padding: 24px;
}
.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 14px 0 6px;
  color: var(--accent);
}
.metric span {
  font-size: 0.8125rem;
  color: var(--muted);
}
.record {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  min-width: 0;
}
.record h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.record p {
  margin-bottom: 10px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.record .row {
  margin-top: 14px;
}
.record .row:first-child {
  margin-top: 0;
}
.record details {
  font-size: 0.8125rem;
  margin-top: 15px;
}
.record summary {
  cursor: pointer;
  font-weight: 650;
}
.record details > p {
  white-space: pre-line;
  margin-top: 12px;
}
.record time {
  font-size: 0.75rem;
  color: var(--muted);
}
.account-docs {
  margin-top: 28px;
}
.file-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.8125rem;
}
.file-row > div {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.file-row small {
  display: block;
  color: var(--muted);
}
.loading {
  padding: 50px;
  text-align: center;
  color: var(--muted);
}
.loading:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c2334;
  color: white;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 0.875rem;
  line-height: 1.6;
  box-shadow: var(--shadow);
  z-index: 150;
  max-width: calc(100% - 32px);
  width: max-content;
}
.toast:empty {
  display: none;
}
.market-dialog {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  width: min(600px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  color: var(--ink);
  box-shadow: 0 30px 90px #171b2440;
}
.market-dialog::backdrop {
  background: #151a2980;
  backdrop-filter: blur(5px);
}
.market-dialog h2 {
  font-size: 1.5rem;
  padding-right: 35px;
}
.dialog-close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.market-dialog > p {
  font-size: 0.875rem;
  color: var(--muted);
}
body:has(dialog[open]) {
  overflow: hidden;
}
.chat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: white;
  min-height: 520px;
}
.chat-threads {
  border-right: 1px solid var(--line);
  padding: 12px;
}
.thread {
  display: block;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.thread small {
  display: block;
  color: var(--muted);
}
.thread.active {
  background: var(--accent-soft);
  color: var(--accent);
}
.chat-pane {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.chat-title {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  font-size: 0.875rem;
}
.chat-log {
  padding: 24px;
  flex: 1;
  overflow: auto;
  height: 360px;
  max-height: 55vh;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: start;
}
.bubble {
  background: var(--soft);
  border-radius: 12px;
  padding: 12px 16px;
  max-width: 85%;
  font-size: 0.875rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.bubble.mine {
  align-self: end;
  background: #edf1ff;
}
.bubble time {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  margin-top: 6px;
}
.chat-form {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--line);
}
.chat-form textarea {
  min-height: 48px;
  height: 48px;
  max-height: 160px;
}
.chat-form .btn {
  align-self: end;
}
.tabs {
  display: flex;
  gap: 8px;
  overflow: auto;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.tabs .pill {
  border-radius: 8px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.7;
}
.faq p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 900px;
}
.contact-card {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.contact-card h3 {
  margin-top: 20px;
}
.contact-card p {
  font-size: 0.875rem;
  color: var(--muted);
}
.contact-card a {
  overflow-wrap: anywhere;
}
.hide {
  display: none !important;
}
@media (min-width: 1600px) {
  .hero-grid {
    min-height: 650px;
  }
}
@media (max-width: 1180px) {
  .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    gap: 20px;
  }
  .market-nav {
    gap: 20px;
  }
  .market-nav > a {
    font-size: 0.75rem;
  }
  .nav-account {
    margin-left: 0;
  }
  .market-brand strong {
    font-size: 1rem;
  }
  .directory .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-grid {
    gap: 35px;
  }
  .hero-jobs {
    padding-right: 18px;
  }
  .hero-job:nth-child(2) {
    margin-left: 20px;
    margin-right: 0;
  }
  .footer-grid {
    gap: 28px;
  }
  .auth-story {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 960px) {
  .market-header .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 68px;
    justify-content: space-between;
  }
  .menu-toggle {
    display: flex;
  }
  .market-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 20px;
    gap: 4px;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100dvh - 68px);
    overflow: auto;
  }
  .market-nav.open {
    display: flex;
  }
  .market-nav > a {
    font-size: 0.9375rem;
    padding: 10px 14px;
    min-height: 46px;
    border-radius: 8px;
  }
  .market-nav > a[aria-current] {
    background: var(--accent-soft);
  }
  .nav-account {
    padding: 12px 14px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    margin-top: 12px;
  }
  .nav-account .btn {
    min-height: 44px;
  }
  .hero-grid {
    gap: 20px;
    min-height: 540px;
  }
  .hero-job {
    padding: 20px 16px;
  }
  .hero-jobs {
    gap: 14px;
  }
  .hero-copy > p {
    font-size: 0.9375rem;
  }
  .hero-foot {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero .btn {
    padding: 12px 16px;
  }
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.three .step:last-child {
    grid-column: 1/-1;
  }
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
  }
  .directory {
    grid-template-columns: 210px 1fr;
    gap: 22px;
  }
  .filter-panel {
    padding: 20px;
  }
  .category-card img {
    height: 180px;
  }
  .category-card {
    min-height: 180px;
  }
  .category-card > div {
    left: 18px;
    bottom: 18px;
  }
  .category-card h3 {
    font-size: 1rem;
  }
  .workspace-grid {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
  }
  .workspace-nav a {
    padding: 12px 10px;
  }
  .workspace-nav .member-name {
    padding-left: 10px;
  }
  .auth-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .auth-story {
    padding: 35px;
  }
  .auth-story h1 {
    font-size: 2.5rem;
  }
  .auth-main {
    padding: 45px 30px;
  }
  .chat-layout {
    grid-template-columns: 180px 1fr;
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 36px);
  }
  .section {
    padding: 54px 0;
  }
  .section-head {
    align-items: start;
    gap: 18px;
  }
  .section-head p {
    font-size: 0.875rem;
  }
  .section-head > .text-link {
    font-size: 0.75rem;
    margin-top: 8px;
  }
  .section-head h2 {
    font-size: 1.6rem;
    line-height: 1.35;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 30px;
    gap: 15px;
  }
  .hero h1 {
    font-size: 2.65rem;
    max-width: 450px;
  }
  .hero-tag {
    margin-bottom: 20px;
    font-size: 0.6875rem;
  }
  .hero-copy > p {
    max-width: 480px;
    margin-bottom: 20px;
  }
  .hero .row {
    margin-top: 24px;
  }
  .hero .btn {
    flex: 1;
    max-width: 215px;
  }
  .hero-foot {
    font-size: 0.6875rem;
    gap: 18px;
    margin-top: 22px;
  }
  .hero-jobs {
    padding: 18px 12px 4px 0;
    max-width: 520px;
    gap: 12px;
  }
  .hero-job {
    padding: 16px 18px;
    gap: 13px;
  }
  .hero-job h3 {
    font-size: 0.8125rem;
    margin-bottom: 4px;
  }
  .hero-job:nth-child(2) {
    margin-left: 20px;
    margin-right: -12px;
  }
  .hero-job:nth-child(3) {
    display: none;
  }
  .hero-job .tag {
    margin-top: 7px;
    font-size: 0.625rem;
  }
  .hero-count {
    font-size: 0.75rem;
    padding: 10px 14px;
    margin-top: 3px;
  }
  .hero-count strong {
    font-size: 0.875rem;
  }
  .company-mark {
    width: 42px;
    height: 42px;
  }
  .promos {
    padding: 32px 0;
  }
  .promo-grid {
    gap: 12px;
  }
  .promo {
    padding: 20px 17px;
    min-height: 170px;
  }
  .promo h3 {
    font-size: 0.875rem;
  }
  .promo p {
    font-size: 0.75rem;
  }
  .promo .text-link {
    font-size: 0.6875rem;
    white-space: normal;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 25px 0;
  }
  .stat:nth-child(2) {
    border: 0;
  }
  .stat strong {
    font-size: 1.65rem;
  }
  .stat span {
    font-size: 0.75rem;
  }
  .pills {
    flex-wrap: nowrap;
    overflow: auto;
    margin-left: -18px;
    margin-right: -18px;
    padding: 2px 18px 10px;
    scrollbar-width: none;
    margin-top: 20px;
  }
  .pill {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
  .grid.four,
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }
  .home-jobs.grid.four {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .home-jobs .job-card-body {
    padding: 15px;
  }
  .home-jobs .card-cover {
    height: 110px;
  }
  .home-jobs .job-card h3 {
    font-size: 0.8125rem;
  }
  .home-jobs .card-topline {
    font-size: 0.6875rem;
    gap: 6px;
    align-items: start;
    line-height: 1.6;
  }
  .home-jobs .card-topline .company-mark {
    display: none;
  }
  .home-jobs .job-card .place {
    font-size: 0.6875rem;
    align-items: start;
  }
  .home-jobs .tag {
    font-size: 0.625rem;
    padding: 3px 6px;
  }
  .home-jobs .pay {
    font-size: 0.75rem;
    margin: 14px 0;
  }
  .home-jobs .card-bottom {
    font-size: 0.6875rem;
    align-items: start;
    flex-direction: column;
    gap: 7px;
    padding-top: 12px;
  }
  .home-jobs .cover-label {
    font-size: 0.5625rem;
    left: 12px;
    bottom: 10px;
  }
  .home-jobs .card-save {
    width: 30px;
    height: 30px;
    right: 9px;
    top: 9px;
  }
  .home-jobs .card-save svg {
    width: 16px;
    height: 16px;
  }
  .home-jobs .job-card:nth-child(n + 5) {
    display: none;
  }
  .category-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .category-card {
    min-height: 150px;
  }
  .category-card img {
    height: 180px;
  }
  .category-card > div {
    left: 24px;
    bottom: 24px;
  }
  .category-card h3 {
    font-size: 1.125rem;
  }
  .step {
    padding: 26px;
  }
  .step-number {
    margin-bottom: 20px;
  }
  .grid.three .step:last-child {
    grid-column: auto;
  }
  .feature {
    gap: 15px;
  }
  .cta {
    padding: 32px 25px;
    flex-direction: column;
    align-items: start;
    gap: 26px;
    border-radius: 16px;
  }
  .cta h2 {
    font-size: 1.85rem;
  }
  .cta p {
    font-size: 0.875rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .market-footer {
    padding: 40px 0 24px;
  }
  .market-footer p {
    margin-top: 16px;
    max-width: 100%;
  }
  .footer-custom {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .footer-custom > a {
    margin-left: 0;
  }
  .footer-base {
    font-size: 0.6875rem;
  }
  .page-hero {
    padding: 30px 0;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .page-hero p {
    font-size: 0.875rem;
  }
  .breadcrumb {
    margin-bottom: 20px;
  }
  .search-bar {
    margin-top: 24px;
    gap: 4px;
    padding: 6px;
  }
  .search-bar input {
    padding: 9px 6px;
    font-size: 0.8125rem;
  }
  .search-bar > svg {
    width: 17px;
    margin-left: 6px;
  }
  .search-bar .btn {
    padding: 10px 14px;
    min-height: 42px;
    font-size: 0.8125rem;
  }
  .directory {
    grid-template-columns: 1fr;
    padding-top: 24px;
    gap: 20px;
  }
  .filter-panel {
    position: static;
    display: none;
  }
  .filter-panel.open {
    display: block;
  }
  .filter-mobile {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .directory .grid.three {
    grid-template-columns: 1fr;
  }
  .directory .job-card {
    display: block;
  }
  .directory .card-cover {
    height: 170px;
  }
  .results-toolbar {
    flex-wrap: wrap;
    font-size: 0.8125rem;
    margin-bottom: 20px;
  }
  .results-toolbar select {
    max-width: 180px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
    padding-top: 25px;
  }
  .detail-layout aside {
    position: static;
  }
  .detail-layout .panel {
    padding: 24px;
  }
  .detail-title {
    font-size: 1.8rem;
  }
  .fact-grid {
    gap: 20px 15px;
  }
  .panel {
    padding: 23px;
  }
  .empty {
    padding: 34px 20px;
  }
  .empty h3 {
    font-size: 1.15rem;
  }
  .empty p {
    font-size: 0.8125rem;
  }
  .auth-layout {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .auth-story {
    padding: 32px 24px;
  }
  .auth-story h1 {
    font-size: 2.1rem;
    margin-bottom: 15px;
    max-width: 410px;
  }
  .auth-story > p {
    font-size: 0.875rem;
    margin: 0;
  }
  .auth-story img,
  .auth-benefits {
    display: none;
  }
  .auth-story .eyebrow {
    margin-bottom: 12px;
  }
  .auth-main {
    padding: 32px 24px 48px;
  }
  .auth-box h2 {
    font-size: 1.6rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .workspace {
    padding: 20px 0 50px;
  }
  .workspace-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .workspace-nav {
    position: static;
    display: flex;
    gap: 6px;
    overflow: auto;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 10px;
    scrollbar-width: none;
  }
  .workspace-nav .member-name {
    display: none;
  }
  .workspace-nav a,
  .workspace-nav button {
    white-space: nowrap;
    padding: 10px 13px;
    border: 1px solid var(--line);
    background: white;
    font-size: 0.75rem;
  }
  .workspace-nav a svg,
  .workspace-nav button svg {
    width: 17px;
  }
  .workspace-head {
    margin-top: 0;
    margin-bottom: 24px;
  }
  .workspace-head h1 {
    font-size: 1.8rem;
  }
  .metrics.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .metric {
    padding: 17px 12px;
  }
  .metric > svg {
    width: 18px;
  }
  .metric strong {
    font-size: 1.5rem;
  }
  .metric span {
    font-size: 0.6875rem;
    line-height: 1.6;
    display: block;
  }
  .record {
    padding: 20px;
  }
  .record > .row.spread {
    align-items: start;
  }
  .record h3 {
    font-size: 0.9375rem;
  }
  .record .btn {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
  .market-dialog {
    padding: 25px 20px;
    max-height: calc(100dvh - 24px);
  }
  .market-dialog h2 {
    font-size: 1.3rem;
  }
  .dialog-close {
    right: 15px;
    top: 15px;
  }
  .chat-layout {
    grid-template-columns: 1fr;
  }
  .chat-threads {
    display: flex;
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .thread {
    min-width: 180px;
    font-size: 0.75rem;
  }
  .chat-log {
    padding: 18px;
    height: 400px;
    max-height: 50vh;
  }
  .chat-form {
    padding: 12px;
    gap: 8px;
  }
  .chat-form .btn {
    padding: 10px 13px;
  }
  .chat-form .btn span {
    display: none;
  }
  .file-row {
    gap: 10px;
    flex-wrap: wrap;
  }
  .role-option {
    padding: 13px 10px;
    gap: 8px;
  }
  .role-option small {
    font-size: 0.6875rem;
  }
  .toast {
    bottom: 15px;
    font-size: 0.8125rem;
    padding: 12px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Editorial layout shared by the community pages. */
.hero h1 {
  font-size: clamp(2.65rem, 4.35vw, 3.9rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.15;
}
.hero-grid {
  grid-template-columns: 1.1fr 1fr;
  min-height: 625px;
}
.hero-board-label {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--accent);
  margin-bottom: 0;
}
.hero-board-label span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--muted);
}
.hero-jobs {
  max-width: 500px;
  gap: 15px;
}
.hero-job {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 26px #141c2c0d;
}
.hero-job h3 {
  font-size: 0.875rem;
}
.hero-job:nth-child(2) {
  margin-left: 24px;
  margin-right: -8px;
}
.hero-job:nth-child(3) {
  margin-left: 8px;
}
.hero-count {
  margin-top: 3px;
}
.refined-job .job-card-body {
  padding: 24px;
  min-height: 370px;
}
.job-card-heading {
  margin-bottom: 20px;
}
.refined-job .card-save {
  position: static;
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.refined-job .company-mark {
  width: 43px;
  height: 43px;
  border-radius: 11px;
  font-size: 0.8125rem;
}
.card-source {
  font-size: 0.6875rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.refined-job h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.5;
  margin-bottom: 8px;
}
.company-name {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.job-meta {
  margin-bottom: 10px;
}
.refined-job .place {
  font-size: 0.75rem;
  line-height: 1.7;
  align-items: start;
  margin-bottom: 8px;
}
.refined-job .place svg {
  margin-top: 3px;
}
.refined-job .pay {
  font-size: 0.8125rem;
  margin: 18px 0;
}
.refined-job .pay .muted {
  font-weight: 500;
}
.refined-job .card-bottom {
  font-size: 0.75rem;
  gap: 8px;
}
.refined-job .card-bottom .text-link {
  font-size: 0.75rem;
}
.refined-job .card-bottom svg {
  width: 16px;
}
.discovery-section {
  background: #fff;
  padding-bottom: 0;
}
.discovery-card {
  padding: 30px;
  border-top: 2px solid #e6b721;
  background: #fffbeb;
  border-radius: 0 0 14px 14px;
}
.discovery-card:nth-child(2) {
  background: #f0f6fc;
  border-color: #435dc5;
}
.discovery-card:nth-child(3) {
  background: #f5f6f8;
  border-color: #202838;
}
.discovery-number {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 25px;
}
.discovery-card h3 {
  font-size: 1.125rem;
  letter-spacing: -0.04em;
}
.discovery-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}
.discovery-card strong {
  font-size: 0.8125rem;
}
.discovery-card:hover svg {
  transform: translate(2px, -2px);
}
.discovery-card svg {
  transition: transform 0.2s;
}
.source-links {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.flip {
  transform: rotate(180deg);
}
.section-head .eyebrow {
  color: var(--accent);
  margin-bottom: 12px;
}
.market-footer .market-brand small {
  color: #a4adbd;
}
.nav-about-links {
  background: #111722;
}
.theme-light .nav-about-links {
  background: white;
}
@media (max-width: 1180px) {
  .hero-grid {
    gap: 35px;
    min-height: 580px;
  }
  .hero-job:nth-child(2) {
    margin-right: 0;
  }
  .hero-board-label span:last-child {
    display: none;
  }
}
@media (max-width: 700px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 24px;
  }
  .hero h1 {
    font-size: 2.7rem;
    line-height: 1.17;
    letter-spacing: -0.055em;
  }
  .hero-copy > p {
    font-size: 1rem;
    line-height: 1.75;
  }
  .hero-board-label {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
  }
  .hero-jobs {
    padding-top: 6px;
    gap: 12px;
  }
  .hero-board-label span:last-child {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
  .hero-job {
    padding: 18px;
  }
  .hero-job h3 {
    font-size: 0.875rem;
  }
  .hero-job p {
    font-size: 0.75rem;
  }
  .hero-job:nth-child(2) {
    margin-left: 16px;
    margin-right: -8px;
  }
  .hero-count {
    font-size: 0.75rem;
  }
  .home-jobs.grid.four {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-jobs .refined-job .job-card-body,
  .refined-job .job-card-body {
    padding: 24px;
    min-height: 0;
  }
  .home-jobs .job-card h3,
  .refined-job h3 {
    font-size: 1.0625rem;
  }
  .home-jobs .job-card .place,
  .refined-job .place {
    font-size: 0.8125rem;
  }
  .home-jobs .tag,
  .refined-job .tag {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  .home-jobs .card-bottom,
  .refined-job .card-bottom {
    font-size: 0.8125rem;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
  }
  .home-jobs .card-bottom .text-link,
  .refined-job .card-bottom .text-link {
    font-size: 0.8125rem;
  }
  .home-jobs .pay,
  .refined-job .pay {
    font-size: 0.875rem;
  }
  .company-name {
    font-size: 0.875rem;
  }
  .card-source {
    font-size: 0.6875rem;
  }
  .home-jobs .card-save {
    width: 40px;
    height: 40px;
  }
  .home-jobs .card-save svg {
    width: 18px;
    height: 18px;
  }
  .refined-job .company-mark {
    width: 44px;
    height: 44px;
  }
  .grid.three.discovery-grid {
    grid-template-columns: 1fr;
  }
  .discovery-card {
    padding: 26px;
  }
  .discovery-number {
    margin-bottom: 20px;
  }
  .discovery-card p {
    margin-bottom: 25px;
  }
  .auth-story h1 {
    font-weight: 650;
  }
  .field > label,
  .field > span,
  legend {
    font-size: 0.875rem;
  }
  input:not([type="checkbox"], [type="radio"], [type="file"]),
  select,
  textarea {
    font-size: 1rem;
  }
  .role-option {
    font-size: 0.875rem;
  }
  .role-option small {
    font-size: 0.75rem;
  }
  .market-brand small {
    font-size: 0.625rem;
  }
  .footer-links {
    font-size: 0.875rem;
    line-height: 1.65;
  }
  .promo h3 {
    font-size: 0.9375rem;
  }
  .promo p {
    font-size: 0.8125rem;
  }
  .promo .text-link {
    font-size: 0.75rem;
  }
  .section-head > .text-link {
    font-size: 0.8125rem;
  }
}
/* Keep the compact header and long contact addresses usable on smaller phones. */
.market-brand {
  min-width: 0;
}
.market-brand > span {
  min-width: 0;
}
.footer-grid > div {
  min-width: 0;
}
.footer-links a {
  overflow-wrap: anywhere;
}
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}
@media (max-width: 700px) {
  .market-header .market-brand strong,
  .market-header .market-brand small {
    display: block;
    max-width: calc(100vw - 150px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .menu-toggle {
    flex-shrink: 0;
  }
}

/* InfoparkDaily community: Kochi lagoon morning — teal ink, sun gold, living atmosphere. */
body {
  background:
    radial-gradient(ellipse 120% 80% at 100% -10%, #d9efe9 0%, transparent 42%),
    radial-gradient(ellipse 90% 60% at -10% 30%, #fff1b8 0%, transparent 38%),
    var(--canvas);
  min-height: 100vh;
}
.market-brand strong {
  font-family: var(--font-display);
}
.market-header {
  background: #f7faf8e8;
  border-bottom: 1px solid #c9d8d380;
  backdrop-filter: blur(18px) saturate(1.1);
}
.market-nav > a {
  color: #3f5458;
  font-weight: 650;
}
.market-nav > a:hover {
  color: var(--accent);
}
.market-nav > a[aria-current] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}
.btn {
  background: var(--brand);
  color: var(--ink);
  border-color: var(--brand);
  box-shadow: 0 1px 0 #102a2e0a;
}
.btn:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}
.btn.secondary:hover {
  background: #fff;
  border-color: #9bb8b2;
}
.btn.quiet:hover {
  background: var(--soft);
  border-color: transparent;
}
.btn.danger:hover {
  background: #ffe5df;
  border-color: #fecdca;
}
.icon-btn:hover,
.icon-btn.saved {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: #9dcec5;
}

/* Hero stage */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, #ffe8a0 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 12%, #9fd9cf 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 70% 95%, #fff4c4 0%, transparent 55%),
    linear-gradient(168deg, #f8fbf9 0%, #eef6f3 48%, #f4f8f6 100%);
  border-bottom: 0;
  min-height: min(92vh, 760px);
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(#102a2e0a 1px, transparent 1px),
    linear-gradient(90deg, #102a2e0a 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.55;
  animation: grid-drift 28s linear infinite;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-orb-a {
  width: 340px;
  height: 340px;
  top: -80px;
  right: 8%;
  background: radial-gradient(circle at 35% 35%, #fff6c8, #f2c41466 45%, transparent 70%);
  animation: orb-float 14s ease-in-out infinite;
}
.hero-orb-b {
  width: 280px;
  height: 280px;
  bottom: -40px;
  left: 4%;
  background: radial-gradient(circle at 40% 40%, #b8ebe1, #1a7a6e44 50%, transparent 72%);
  animation: orb-float 18s ease-in-out infinite reverse;
}
.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.12fr 0.98fr;
  align-items: center;
  gap: 64px;
  min-height: 640px;
  padding-top: 48px;
  padding-bottom: 72px;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  margin: 0 0 18px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-wordmark:after {
  content: "";
  width: 52px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.hero-copy {
  animation: rise-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero h1 {
  font-size: clamp(2.85rem, 5.2vw, 4.35rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.05;
  max-width: 11ch;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--ink);
  background: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #d4b84a66;
  background: #fff9e6cc;
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #6a560f;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-lede,
.hero-copy > p.hero-lede {
  color: #3f5458;
  max-width: 38ch;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 0;
}
.hero-actions {
  margin-top: 30px;
}
.hero-foot {
  margin-top: 26px;
  color: #4d6367;
}
.hero-foot svg {
  color: var(--accent);
}
.hero-jobs {
  position: relative;
  max-width: 480px;
  width: 100%;
  gap: 12px;
  background:
    linear-gradient(165deg, #14363c 0%, #0b2428 55%, #0e2f34 100%);
  border: 1px solid #2a5258;
  border-radius: 28px;
  padding: 28px;
  box-shadow:
    0 30px 70px #0b242840,
    inset 0 1px 0 #ffffff14;
  animation: rise-in 1s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-jobs:before {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, #f2c41433, transparent 68%);
  pointer-events: none;
}
.hero-board-label {
  color: var(--brand);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 8px;
}
.hero-board-label span:last-child {
  color: #9db5b8;
  font-size: 0.75rem;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: none;
}
.hero-jobs .hero-job {
  margin: 0;
  border: 1px solid #ffffff12;
  background: #ffffff0a;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: none;
  padding: 18px;
  color: #eef6f4;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  animation: card-in 0.7s calc(0.22s + var(--i, 0) * 0.08s) cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-jobs .hero-job:hover {
  transform: translateY(-3px) translateX(2px);
  background: #ffffff14;
  border-color: #f2c41455;
}
.hero-jobs .hero-job:nth-of-type(2),
.hero-jobs .hero-job:nth-child(2) {
  margin-left: 14px;
}
.hero-job h3 {
  color: #fff;
  font-family: var(--font-display);
}
.hero-job p {
  color: #a7bfc2;
}
.hero-jobs .hero-count {
  background: #ffffff0d;
  border-color: #3d646a;
  color: #e8f2f0;
  box-shadow: none;
  justify-self: stretch;
  justify-content: center;
  margin-top: 6px;
  border-radius: 14px;
}
.hero-count strong,
.hero-count > svg {
  color: var(--brand);
}
.company-mark:not(.blue):not(.purple) {
  background: #fff3c2;
  color: #6d5200;
}
.company-mark.blue {
  background: #d8f0eb;
  color: #125e55;
}
.company-mark.purple {
  background: #ffe8d4;
  color: #9a4d1c;
}
.avatar {
  background: var(--accent-soft);
  color: var(--accent);
}

/* Category ribbon */
.category-ribbon {
  background: var(--deep);
  color: #e8f2f0;
  border-bottom: 1px solid #1f4348;
  position: relative;
  overflow: hidden;
}
.category-ribbon:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--brand);
}
.category-ribbon > .container {
  display: flex;
  align-items: center;
  gap: 25px;
}
.ribbon-label {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-right: 25px;
  border-right: 1px solid #ffffff22;
  color: var(--brand);
}
.ribbon-links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #3d646a transparent;
  padding: 14px 0;
  min-width: 0;
}
.ribbon-links a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 650;
  border: 1px solid #ffffff18;
  background: #ffffff08;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.ribbon-links a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--ink);
}

/* Promos & stats */
.promos {
  padding: 64px 0 40px;
}
.promo-grid {
  gap: 18px;
}
.promo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  min-height: 190px;
  box-shadow: 0 10px 30px #102a2e08;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.promo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0.85;
}
.promo:nth-child(2):before {
  background: linear-gradient(90deg, var(--accent), #3aa896);
}
.promo:nth-child(3):before {
  background: linear-gradient(90deg, #f0a35a, var(--brand));
}
.promo:nth-child(4):before {
  background: linear-gradient(90deg, #5b8def, var(--accent));
}
.promo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #102a2e12;
  border-color: #b7cfc8;
}
.promo > svg {
  color: var(--accent);
  width: 24px;
  height: 24px;
}
.promo h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.stats-bar {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  padding: 28px 12px;
  margin: 12px 0 20px;
  box-shadow: 0 12px 36px #102a2e08;
}
.stat strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 2.15rem;
}
.stat:first-child strong {
  display: inline-block;
  box-shadow: inset 0 -10px color-mix(in srgb, var(--brand) 80%, transparent);
}

/* Jobs & pills */
.pill {
  border-radius: 999px;
  background: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.pill:hover {
  border-color: #7eb8ae;
  color: var(--accent);
  transform: translateY(-1px);
}
.pill.active {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}
.job-card {
  border-radius: 20px;
  background: #fff;
  border-color: var(--line);
}
.job-card:hover {
  border-color: #9fc4bc;
  box-shadow: 0 18px 40px #102a2e12;
  transform: translateY(-4px);
}
.refined-job .card-source {
  color: var(--accent);
}
.refined-job h3 {
  font-family: var(--font-display);
}
.refined-job .card-bottom .text-link {
  color: var(--ink);
  font-weight: 750;
}
.refined-job .card-bottom .text-link svg {
  padding: 4px;
  box-sizing: content-box;
  background: var(--brand);
  border-radius: 50%;
  color: var(--ink);
}
.soft {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, #d9efe966 0%, transparent 55%),
    var(--soft);
}
.feature-grid {
  gap: 38px;
}
.feature-icon {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 14px;
}
.category-card {
  background: var(--deep);
  border-radius: 22px;
  overflow: hidden;
}
.category-card img {
  opacity: 0.78;
  transition:
    opacity 0.35s ease,
    transform 0.5s ease;
}
.category-card:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}
.category-card:after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, #0b2428e8);
  pointer-events: none;
}
.category-card > div {
  z-index: 1;
}
.category-card small {
  color: #d5e8e4;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px #102a2e0e;
}
.step-number {
  background: var(--brand);
  color: var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
}
.discovery-card {
  border-top-width: 4px;
  border-radius: 0 0 20px 20px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.discovery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px #102a2e0e;
}
.discovery-card:nth-child(1) {
  background: #fff8df;
  border-color: #e0b20a;
}
.discovery-card:nth-child(2) {
  background: #e8f6f3;
  border-color: #1a7a6e;
}
.discovery-card:nth-child(3) {
  background: #eef2f1;
  border-color: #0b2428;
}
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, #1a7a6e55 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, #f2c41433 0%, transparent 50%),
    linear-gradient(135deg, #0e2f34, #0b2428 55%, #14363c);
  border: 1px solid #2a5258;
  border-top: 5px solid var(--brand);
  border-radius: 28px;
  box-shadow: 0 24px 50px #0b242824;
  padding: 48px;
}
.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  opacity: 0.5;
  pointer-events: none;
}
.cta > * {
  position: relative;
  z-index: 1;
}
.cta h2 {
  color: #fff;
  max-width: 16ch;
}
.cta p {
  color: #b7cdc9;
}
.cta-eyebrow,
.cta .eyebrow {
  color: var(--brand);
}
.cta .btn {
  background: var(--brand);
  color: var(--ink);
}
.cta .btn:hover {
  background: var(--brand-hover);
}
.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, #ffe9a666 0%, transparent 50%),
    linear-gradient(120deg, #f6faf8, #e8f3ef);
  border-top: 4px solid var(--brand);
}
.page-hero h1 {
  font-family: var(--font-display);
}
.auth-story {
  background:
    radial-gradient(ellipse at 10% 15%, #1a7a6e66 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, #f2c41422 0%, transparent 45%),
    linear-gradient(160deg, #14363c, #0b2428);
  color: white;
  border-right: 5px solid var(--brand);
}
.auth-story .eyebrow {
  color: var(--brand);
}
.auth-story > p {
  color: #b7cdc9;
}
.auth-benefits {
  color: #e7f2ef;
}
.auth-benefits svg {
  color: var(--brand);
}
.auth-story img {
  border: 1px solid #3d646a;
  filter: saturate(0.9);
}
.role-option:has(:checked) {
  background: #fff8df;
  border-color: #c9a00e;
}
.role-option input {
  accent-color: #8a7000;
}
.workspace-nav a[aria-current] {
  background: #fff2be;
  color: #3c3211;
}
.workspace-nav a:hover {
  background: #e8f0ed;
}
.market-footer {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, #1a7a6e33 0%, transparent 55%),
    var(--deep);
  border-top: 5px solid var(--brand);
  color: #dceae7;
}
.market-footer .text-link {
  color: var(--brand);
}
.footer-links a:hover {
  color: var(--brand);
}
.footer-custom > a {
  color: var(--brand);
}

/* Motion */
.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-section.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-18px, 22px) scale(1.06);
  }
}
@keyframes grid-drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(56px, 28px);
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    gap: 36px;
    min-height: 580px;
  }
  .hero-jobs {
    padding: 22px;
  }
  .hero-jobs .hero-job:nth-of-type(2),
  .hero-jobs .hero-job:nth-child(2) {
    margin-left: 8px;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
    padding-bottom: 40px;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.1rem);
    max-width: none;
    line-height: 1.08;
  }
  .hero-orb-a {
    width: 200px;
    height: 200px;
    right: -40px;
  }
  .hero-orb-b {
    width: 160px;
    height: 160px;
  }
  .hero-jobs {
    padding: 20px 16px;
    border-radius: 22px;
    max-width: none;
  }
  .hero-jobs .hero-job,
  .hero-jobs .hero-job:nth-of-type(2),
  .hero-jobs .hero-job:nth-child(2) {
    margin-left: 0;
  }
  .hero-board-label {
    flex-wrap: wrap;
    gap: 6px 10px;
  }
  .category-ribbon > .container {
    width: 100%;
    gap: 10px;
    padding-left: 18px;
  }
  .ribbon-label {
    font-size: 0.6875rem;
    padding-right: 12px;
  }
  .ribbon-links {
    padding: 10px 18px 10px 0;
  }
  .ribbon-links a {
    min-height: 42px;
  }
  .cta {
    padding: 32px 24px;
    border-radius: 22px;
  }
  .auth-story {
    border-right: 0;
    border-bottom: 5px solid var(--brand);
  }
  .market-nav > a[aria-current] {
    background: #fff6d2;
    text-decoration: none;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 18px 8px;
    padding: 22px 10px;
  }
  .stat {
    border-right: 0;
  }
  .promo {
    min-height: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-jobs,
  .hero-jobs .hero-job,
  .reveal-section {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-orb,
  .hero-grid-lines {
    animation: none !important;
  }
}
