
:root {
  --ink: #151515;
  --ink-soft: #262626;
  --paper: #f6f4ef;
  --white: #ffffff;
  --orange: #ef6b24;
  --orange-bright: #ff7a2c;
  --muted: #6c6b66;
  --line: #dedbd3;
  --dark-line: rgba(255, 255, 255, 0.13);
  --shadow: 0 26px 70px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 88px;
  color: var(--white);
  border-bottom: 1px solid var(--dark-line);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand {
  display: block;
  width: 194px;
  height: 56px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a,
.header-cta {
  color: #e8e8e5;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
  border-color: var(--orange);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px;
}

.header-cta span {
  color: var(--orange);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 170px 0 0;
  color: var(--white);
  background: #101110;
}

.hero::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -140px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(239, 107, 36, 0.26);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: 10px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-grid-mark {
  position: absolute;
  inset: 88px 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.06) 18%,
    rgba(255, 255, 255, 0.06) 82%,
    transparent
  );
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 84px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: #cfcec9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(52px, 6.5vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--orange-bright);
  font-style: normal;
  font-weight: 700;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #b9b9b5;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-bright);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.note-check {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(239, 107, 36, 0.52);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.hero-note p {
  margin: 0;
  color: #999994;
  font-size: 11px;
  line-height: 1.45;
}

.hero-note strong {
  color: #e9e9e5;
}

.match-panel {
  position: relative;
  padding: 28px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.match-panel::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border: 1px solid rgba(239, 107, 36, 0.3);
  border-radius: 18px;
}

.panel-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-kicker b {
  margin-left: auto;
  color: var(--ink);
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 18px;
}

.panel-heading small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.panel-heading h2 {
  max-width: 340px;
  margin: 5px 0 0;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.score {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--orange);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.fit-list {
  border-top: 1px solid var(--line);
}

.fit-list > div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.fit-list > div > span {
  color: #a8a59e;
  font-size: 9px;
  font-weight: 700;
}

.fit-list p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.fit-list strong {
  color: var(--ink);
  font-size: 12px;
}

.fit-list b {
  padding: 5px 8px;
  color: #8b3b11;
  background: #fff0e6;
  border-radius: 999px;
  font-size: 8px;
  text-transform: uppercase;
}

.panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 18px;
}

.panel-footer span {
  padding: 6px 9px;
  color: #5b5954;
  background: #efede8;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
}

.trust-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 46px;
  margin-top: 92px;
  min-height: 86px;
  border-top: 1px solid var(--dark-line);
}

.trust-row > span {
  color: #8c8c87;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-row p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
}

.trust-row b {
  color: #d9d8d4;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.audience-section {
  padding: 110px 0;
  background: var(--paper);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 30px 80px;
  align-items: end;
  margin-bottom: 42px;
}

.eyebrow-dark {
  grid-column: 1 / -1;
  margin-bottom: -12px;
  color: var(--muted);
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.audience-card {
  min-height: 390px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.card-number {
  margin: 0 0 54px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.audience-card h3 {
  max-width: 510px;
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.audience-card > p:not(.card-number) {
  max-width: 520px;
  margin: 20px 0 34px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.audience-card a {
  display: inline-flex;
  gap: 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
}

.audience-card-dark {
  color: var(--white);
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.audience-card-dark > p:not(.card-number) {
  color: #b6b5b0;
}

.audience-card-dark a {
  color: var(--white);
}

.connect-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 16px;
  padding: 28px 34px;
  color: var(--white);
  background: var(--orange);
  border-radius: 12px;
}

.connect-strip small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.connect-strip p {
  margin: 2px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.connect-strip a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffad7e;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-lead {
    max-width: 720px;
  }

  .match-panel {
    max-width: 680px;
  }

  .trust-row {
    margin-top: 72px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    height: 76px;
  }

  .brand {
    width: 168px;
    height: 48px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 11px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .match-panel {
    padding: 20px;
  }

  .match-panel::before {
    display: none;
  }

  .panel-heading h2 {
    font-size: 20px;
  }

  .fit-list > div {
    grid-template-columns: 28px 1fr;
  }

  .fit-list b {
    display: none;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 0 32px;
  }

  .trust-row p {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .audience-section {
    padding: 78px 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro h2 {
    font-size: 40px;
  }

  .eyebrow-dark {
    grid-column: auto;
    margin-bottom: 0;
  }

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

  .audience-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .card-number {
    margin-bottom: 38px;
  }

  .audience-card h3 {
    font-size: 25px;
  }

  .connect-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 24px;
  }

  .connect-strip a {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .desktop-nav a {
    transition: none;
  }
}

/* Credential-based TA access */

.ta-credential-card {
  width: min(100%, 780px);
}

.credential-login-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.credential-login-form > label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.credential-login-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.credential-login-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(239, 107, 36, 0.12);
}

.credential-password {
  position: relative;
  display: block;
}

.credential-password input {
  padding-right: 72px;
}

.credential-password button {
  position: absolute;
  top: 50%;
  right: 9px;
  min-width: 54px;
  padding: 7px 9px;
  color: var(--muted);
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-50%);
  cursor: pointer;
}

.credential-password button:hover,
.credential-password button:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.credential-login-form .button {
  width: 100%;
}

.credential-login-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.55;
}

.credential-login-message.note {
  color: #6c3c1d;
  border: 1px solid #f0c8ae;
  background: #fff4ec;
}

.credential-login-message.error {
  color: #8f1f18;
  border: 1px solid #efc4c0;
  background: #fff2f1;
}

.hidden-response-frame {
  display: none;
}

/* Availability promotion */

.availability-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #ebe8e0;
}

.availability-promo {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 76px;
}

.availability-promo-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.availability-promo-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.availability-promo-cards {
  display: grid;
  gap: 10px;
}

.availability-promo-cards article {
  display: grid;
  grid-template-columns: 52px 0.7fr 1.3fr;
  align-items: center;
  gap: 18px;
  min-height: 106px;
  padding: 22px 24px;
  background: #f9f8f4;
  border: 1px solid #d9d5cc;
  border-radius: 12px;
}

.availability-promo-cards span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.availability-promo-cards strong {
  font-size: 13px;
}

.availability-promo-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

/* Shared portal system */

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

.portal-page {
  min-height: 100vh;
  background: var(--paper);
}

.portal-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.portal-header {
  min-height: 80px;
  color: var(--white);
  background: #111211;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.portal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 28px;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  text-decoration: none;
}

.portal-brand img {
  width: 166px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.portal-brand span {
  padding-left: 18px;
  color: #bdbcb7;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-header-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.portal-header-links a,
.portal-header-links > span {
  color: #c4c3bf;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.portal-header-links a:hover,
.portal-header-links a:focus-visible {
  color: var(--white);
}

.portal-header-links > span {
  max-width: 250px;
  padding: 8px 12px;
  overflow: hidden;
  color: #e5e4df;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-content,
.ta-content {
  padding: 64px 0 96px;
}

.portal-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portal-welcome,
.ta-welcome {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 76px;
  margin-bottom: 42px;
}

.portal-welcome h1,
.ta-welcome h1 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.portal-welcome > div:first-child > p:not(.portal-kicker),
.ta-welcome > div:first-child > p:not(.portal-kicker) {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.portal-identity {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.portal-identity small {
  color: #8b8880;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.portal-identity strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.portal-identity span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.portal-alert {
  margin: 0 0 22px;
  padding: 15px 18px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
}

.portal-alert.success {
  color: #255f40;
  background: #e5f3ea;
  border: 1px solid #bedfc9;
}

.portal-alert.error {
  color: #843d35;
  background: #faeae7;
  border: 1px solid #edc5bf;
}

.portal-loading {
  display: grid;
  min-height: 240px;
  place-items: center;
  color: var(--muted);
  font-size: 11px;
}

.portal-section {
  margin-top: 18px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.055);
}

.portal-section + .portal-section {
  margin-top: 24px;
}

.portal-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.portal-section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.portal-empty {
  padding: 62px 28px;
  text-align: center;
  background: #f5f3ed;
  border: 1px dashed #cbc7bd;
  border-radius: 12px;
}

.portal-empty > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(239, 107, 36, 0.35);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.portal-empty h2,
.portal-empty h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.portal-empty p {
  max-width: 600px;
  margin: 12px auto 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  white-space: nowrap;
}

.status-pill.review {
  color: #6b5117;
  background: #f8edcf;
}

.status-pill.active {
  color: #265170;
  background: #dfeef8;
}

.status-pill.positive {
  color: #21613e;
  background: #def1e5;
}

.status-pill.muted {
  color: #66635c;
  background: #e9e7e1;
}

.dashboard-application-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.status-card,
.timeline-card {
  padding: 28px;
  background: #f7f5ef;
  border: 1px solid #dedad1;
  border-radius: 12px;
}

.status-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.status-card-top small,
.timeline-card > small,
.recruiter-remark small,
.availability-guide > small,
.ta-profile-copy > small,
.ta-history > small {
  display: block;
  margin-bottom: 8px;
  color: #8b8880;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.status-card-top > strong {
  color: var(--orange);
  font-size: 10px;
}

.status-card h3,
.timeline-card h3 {
  margin: 24px 0 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.application-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 24px 0 0;
}

.application-facts div {
  padding-top: 13px;
  border-top: 1px solid #dfdcd3;
}

.application-facts dt,
.ta-profile-facts dt,
.ta-talent-card dt,
.talent-card dt {
  color: #8b8880;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.application-facts dd,
.ta-profile-facts dd,
.ta-talent-card dd,
.talent-card dd {
  margin: 5px 0 0;
  color: #373632;
  font-size: 10px;
  line-height: 1.5;
}

.recruiter-remark {
  margin-top: 24px;
  padding: 18px;
  background: var(--white);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
}

.recruiter-remark p {
  margin: 0;
  color: #4e4c47;
  font-size: 11px;
  line-height: 1.7;
}

.status-timeline {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.status-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  padding-bottom: 22px;
}

.status-timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 5px;
  width: 1px;
  height: calc(100% - 4px);
  background: #d4d0c7;
}

.status-timeline li > span {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: 4px;
  background: var(--orange);
  border: 3px solid #f7f5ef;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--orange);
}

.status-timeline strong {
  display: block;
  font-size: 11px;
}

.status-timeline time {
  display: block;
  margin-top: 2px;
  color: #8b8880;
  font-size: 8px;
}

.status-timeline p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}

.availability-workspace {
  scroll-margin-top: 24px;
}

.availability-layout {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  align-items: start;
  gap: 28px;
}

.portal-form {
  padding: 28px;
  background: #f7f5ef;
  border: 1px solid #dedad1;
  border-radius: 12px;
}

.portal-form h3 {
  margin: 0 0 22px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.portal-form-note {
  margin-bottom: 24px;
  padding: 17px 19px;
  background: #fff0e6;
  border-left: 3px solid var(--orange);
  border-radius: 8px;
}

.portal-form-note strong {
  font-size: 10px;
}

.portal-form-note p,
.portal-form > p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}

.portal-form-grid,
.ta-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 14px;
}

.portal-form label,
.ta-update-form label,
.ta-talent-card label {
  display: block;
  margin-bottom: 15px;
}

.portal-form label > span,
.ta-update-form label > span,
.ta-talent-card label > span {
  display: block;
  margin-bottom: 7px;
  color: #56534e;
  font-size: 8px;
  font-weight: 700;
}

.portal-form input,
.portal-form select,
.portal-form textarea,
.ta-update-form input,
.ta-update-form select,
.ta-update-form textarea,
.ta-toolbar input,
.ta-toolbar select,
.ta-talent-card textarea,
.talent-board-toolbar input,
.talent-board-toolbar select {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d5d1c8;
  border-radius: 7px;
  outline: none;
  font-size: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.portal-form input,
.portal-form select,
.ta-update-form input,
.ta-update-form select,
.ta-toolbar input,
.ta-toolbar select,
.talent-board-toolbar input,
.talent-board-toolbar select {
  height: 45px;
  padding: 0 12px;
}

.portal-form textarea,
.ta-update-form textarea,
.ta-talent-card textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.portal-form input:focus,
.portal-form select:focus,
.portal-form textarea:focus,
.ta-update-form input:focus,
.ta-update-form select:focus,
.ta-update-form textarea:focus,
.ta-toolbar input:focus,
.ta-toolbar select:focus,
.ta-talent-card textarea:focus,
.talent-board-toolbar input:focus,
.talent-board-toolbar select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239, 107, 36, 0.12);
}

.portal-form-actions,
.ta-moderation-actions,
.post-job-actions,
.talent-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.portal-form button,
.ta-update-form button,
.ta-moderation-actions button,
.team-form button {
  border: 0;
  cursor: pointer;
}

.portal-form button:disabled,
.ta-update-form button:disabled,
.ta-moderation-actions button:disabled,
.team-form button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.moderation-note {
  padding: 14px 16px;
  color: #6b5117 !important;
  background: #f8edcf;
  border-radius: 7px;
}

.availability-guide {
  position: sticky;
  top: 24px;
  padding: 28px;
  color: var(--white);
  background: #171817;
  border-radius: 12px;
}

.availability-guide > small {
  color: var(--orange);
}

.availability-guide h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.availability-guide ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.availability-guide li {
  padding: 12px 0;
  color: #d4d3ce;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.availability-guide li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--orange);
}

.availability-guide p {
  margin: 20px 0 0;
  color: #8f8e89;
  font-size: 9px;
  line-height: 1.7;
}

/* Login */

.portal-login,
.portal-access-blocked {
  position: relative;
  display: grid;
  min-height: calc(100vh - 80px);
  padding: 72px 24px;
  overflow: hidden;
  place-items: center;
  background: #101110;
}

.portal-login::before,
.portal-access-blocked::before {
  content: "";
  position: absolute;
  top: -420px;
  right: -240px;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(239, 107, 36, 0.22);
  border-radius: 50%;
}

.portal-login-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 52px;
  text-align: center;
  background: #fbfaf7;
  border: 1px solid #dedbd3;
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.portal-login-mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
}

.portal-login-card h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.portal-login-card > p:not(.portal-kicker):not(.portal-login-note) {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.portal-login-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 28px 0;
}

.portal-login-features span {
  padding: 12px;
  color: #4f4d47;
  background: #f0eee8;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 700;
}

.portal-login-card > .button {
  margin-top: 28px;
}

.portal-login-note {
  max-width: 520px;
  margin: 16px auto 0;
  color: #8b8880;
  font-size: 8px;
  line-height: 1.6;
}

/* TA workspace */

.ta-content {
  width: min(1460px, calc(100% - 48px));
}

.ta-welcome {
  grid-template-columns: 0.95fr 1.05fr;
}

.ta-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.ta-stat-grid article {
  min-height: 120px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.ta-stat-grid span {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.ta-stat-grid small {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.portal-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 18px;
  padding: 6px;
  background: #e8e5de;
  border-radius: 10px;
}

.portal-tabs button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: #6f6c65;
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.portal-tabs button.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 3px 10px rgba(17, 17, 17, 0.06);
}

.portal-tabs button span {
  display: grid;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  place-items: center;
  color: var(--orange);
  background: #f6eee8;
  border-radius: 999px;
  font-size: 7px;
}

.ta-workspace {
  display: grid;
  grid-template-columns: minmax(580px, 1.2fr) minmax(420px, 0.8fr);
  align-items: start;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.055);
}

.ta-list-panel {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.ta-toolbar {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 10px;
  padding: 18px;
  background: #f6f4ef;
  border-bottom: 1px solid var(--line);
}

.ta-table-wrap {
  max-height: 920px;
  overflow: auto;
}

.ta-table {
  width: 100%;
  border-collapse: collapse;
}

.ta-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 13px 16px;
  color: #8b8880;
  background: #fbfaf7;
  border-bottom: 1px solid var(--line);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.ta-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #ece9e2;
  color: #55524c;
  font-size: 9px;
  vertical-align: middle;
}

.ta-table tr {
  cursor: pointer;
}

.ta-table tr:hover,
.ta-table tr.selected {
  background: #fff7f1;
}

.ta-table td button {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.ta-table td strong,
.ta-table td span {
  display: block;
}

.ta-table td strong {
  color: var(--ink);
  font-size: 10px;
}

.ta-table td span:not(.status-pill) {
  margin-top: 3px;
  color: #8b8880;
  font-size: 8px;
}

.ta-no-results {
  padding: 46px 20px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.ta-detail-panel {
  min-width: 0;
  max-height: 1040px;
  padding: 28px;
  overflow: auto;
}

.ta-detail-panel.empty {
  display: grid;
  min-height: 400px;
  place-items: center;
  color: var(--muted);
  font-size: 10px;
}

.ta-detail-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.ta-detail-heading small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
}

.ta-detail-heading h2 {
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.ta-detail-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 8px;
  overflow-wrap: anywhere;
}

.ta-profile-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.ta-profile-facts div {
  padding: 12px;
  background: #f6f4ef;
  border-radius: 7px;
}

.ta-profile-copy {
  padding: 17px;
  background: #f6f4ef;
  border-left: 3px solid var(--orange);
  border-radius: 7px;
}

.ta-profile-copy p {
  margin: 0;
  color: #4e4c47;
  font-size: 9px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.ta-update-form {
  margin-top: 22px;
  padding: 20px;
  background: #f6f4ef;
  border: 1px solid #dedad1;
  border-radius: 9px;
}

.ta-update-form label > small {
  display: block;
  margin-top: 5px;
  color: #8b8880;
  font-size: 7px;
}

.ta-update-form textarea {
  min-height: 90px;
}

.ta-history {
  margin-top: 24px;
}

.ta-history article {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.ta-history article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ta-history article strong {
  font-size: 9px;
}

.ta-history article time,
.ta-history article > small {
  color: #8b8880;
  font-size: 7px;
}

.ta-history article p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}

.ta-talent-section,
.ta-team-section {
  margin-top: 0;
}

.ta-talent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ta-talent-card {
  padding: 24px;
  background: #f7f5ef;
  border: 1px solid #dedad1;
  border-radius: 11px;
}

.ta-talent-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ta-talent-card-top small {
  color: var(--orange);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ta-talent-card-top h3 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.15;
}

.ta-talent-card-top p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.ta-talent-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.ta-talent-card dl div {
  padding: 11px;
  background: var(--white);
  border-radius: 6px;
}

.ta-talent-summary {
  color: #4e4c47;
  font-size: 9px;
  line-height: 1.7;
}

.talent-skills {
  padding: 10px 12px;
  color: #725126;
  background: #fff0e6;
  border-radius: 6px;
  font-size: 8px;
}

.ta-talent-card textarea {
  min-height: 76px;
}

.text-button {
  padding: 6px 0;
  color: #8a4b28;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ta-team-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 24px;
}

.team-form {
  position: sticky;
  top: 24px;
}

.ta-team-list {
  display: grid;
  gap: 10px;
}

.ta-team-list article,
.ta-team-list article > div {
  display: flex;
  align-items: center;
}

.ta-team-list article {
  justify-content: space-between;
  gap: 18px;
  padding: 17px;
  background: #f7f5ef;
  border: 1px solid #dedad1;
  border-radius: 9px;
}

.ta-team-list article > div {
  gap: 12px;
}

.ta-team-list article > div:last-child {
  align-items: flex-end;
  flex-direction: column;
  gap: 4px;
}

.ta-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: #252625;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 700;
}

.ta-team-list strong {
  display: block;
  font-size: 10px;
}

.ta-team-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 8px;
}

/* Talent board and Post JOB */

.talent-page {
  background: #f2f0ea;
}

.talent-hero,
.post-job-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #111211;
}

.talent-hero::before,
.post-job-hero::before {
  content: "";
  position: absolute;
  top: -420px;
  right: -180px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(239, 107, 36, 0.24);
  border-radius: 50%;
}

.talent-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 72px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.talent-hero h1,
.post-job-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.01;
  letter-spacing: -0.058em;
}

.talent-hero p:not(.portal-kicker),
.post-job-hero p:not(.portal-kicker) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #aaa9a5;
  font-size: 13px;
  line-height: 1.8;
}

.talent-hero-actions {
  align-items: stretch;
  flex-direction: column;
  margin: 0;
}

.talent-board-section {
  padding-top: 48px;
  padding-bottom: 88px;
}

.talent-board-toolbar {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.talent-board-toolbar > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-align: right;
}

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

.talent-card {
  display: flex;
  min-height: 520px;
  padding: 26px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 15px 42px rgba(17, 17, 17, 0.055);
}

.talent-card-heading {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 14px;
}

.talent-card-heading > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: #1d1e1d;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 700;
}

.talent-card-heading small {
  color: var(--orange);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.talent-card-heading h2 {
  margin: 3px 0 0;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.talent-card-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.talent-card-summary {
  margin: 22px 0 0;
  color: #4f4d47;
  font-size: 9px;
  line-height: 1.75;
}

.talent-card dl {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
}

.talent-card dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid #ece9e2;
}

.talent-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 18px;
}

.talent-card-skills span {
  padding: 5px 8px;
  color: #6e4b1f;
  background: #fff0e6;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 700;
}

.talent-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.talent-card-footer small {
  color: #8b8880;
  font-size: 7px;
}

.talent-card-footer a {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  text-decoration: none;
}

.talent-board-privacy {
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  gap: 28px;
  margin-top: 28px;
  padding: 24px 26px;
  color: #d4d3ce;
  background: #181918;
  border-radius: 11px;
}

.talent-board-privacy strong {
  color: var(--orange);
  font-size: 11px;
}

.talent-board-privacy p {
  margin: 0;
  color: #9a9994;
  font-size: 9px;
  line-height: 1.7;
}

.post-job-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 88px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.post-job-steps {
  padding: 24px;
  color: var(--ink);
  background: #fbfaf7;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.post-job-steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.post-job-steps article:last-child {
  border-bottom: 0;
}

.post-job-steps span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--orange);
  background: #fff0e6;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.post-job-steps h2 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.post-job-steps p {
  margin: 5px 0 0 !important;
  color: var(--muted) !important;
  font-size: 9px !important;
  line-height: 1.6 !important;
}

.post-job-safety {
  padding: 32px 0;
  background: var(--orange);
}

.post-job-safety .portal-shell {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 34px;
}

.post-job-safety strong {
  color: var(--white);
  font-size: 13px;
}

.post-job-safety p {
  margin: 0;
  color: #ffe6d8;
  font-size: 10px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .availability-promo,
  .portal-welcome,
  .ta-welcome,
  .talent-hero-layout,
  .post-job-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .availability-layout {
    grid-template-columns: 1fr;
  }

  .availability-guide,
  .team-form {
    position: static;
  }

  .ta-stat-grid {
    max-width: 760px;
  }

  .ta-workspace {
    grid-template-columns: 1fr;
  }

  .ta-list-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ta-detail-panel {
    max-height: none;
  }

  .talent-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .portal-shell,
  .ta-content {
    width: min(100% - 28px, 1240px);
  }

  .availability-promo-cards article {
    grid-template-columns: 38px 1fr;
  }

  .availability-promo-cards p {
    grid-column: 2;
  }

  .portal-header-inner {
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-direction: column;
  }

  .portal-brand {
    width: 100%;
    justify-content: space-between;
  }

  .portal-brand img {
    width: 142px;
  }

  .portal-brand span {
    max-width: 150px;
    text-align: right;
  }

  .portal-header-links {
    width: 100%;
    padding-top: 10px;
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .portal-header-links > span {
    display: none;
  }

  .portal-content,
  .ta-content {
    padding-top: 42px;
    padding-bottom: 68px;
  }

  .portal-section {
    padding: 22px;
  }

  .portal-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-application-grid,
  .portal-form-grid,
  .ta-form-row,
  .ta-talent-grid,
  .ta-team-layout,
  .talent-card-grid,
  .post-job-safety .portal-shell {
    grid-template-columns: 1fr;
  }

  .application-facts {
    grid-template-columns: 1fr;
  }

  .portal-form {
    padding: 21px;
  }

  .portal-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .portal-form-actions .button,
  .portal-form-actions .text-link {
    width: 100%;
  }

  .portal-login-card {
    padding: 38px 22px;
  }

  .portal-login-features,
  .ta-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-tabs {
    align-items: stretch;
    overflow-x: auto;
  }

  .portal-tabs button {
    flex: 0 0 auto;
  }

  .ta-toolbar {
    grid-template-columns: 1fr;
  }

  .ta-table {
    min-width: 680px;
  }

  .ta-profile-facts,
  .ta-talent-card dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .ta-team-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .ta-team-list article > div:last-child {
    align-items: flex-start;
  }

  .talent-hero-layout,
  .post-job-layout {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .talent-board-toolbar {
    grid-template-columns: 1fr;
  }

  .talent-board-toolbar > span {
    text-align: left;
  }

  .talent-board-privacy {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .portal-brand span {
    display: none;
  }

  .portal-header-links {
    gap: 16px;
  }

  .portal-welcome h1,
  .ta-welcome h1 {
    font-size: 40px;
  }

  .portal-section {
    padding: 18px;
  }

  .status-card,
  .timeline-card {
    padding: 21px;
  }

  .portal-login-features,
  .ta-stat-grid,
  .ta-profile-facts,
  .ta-talent-card dl {
    grid-template-columns: 1fr;
  }

  .ta-stat-grid article {
    min-height: 96px;
  }
}

/* Complete HypeBPO experience */

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  background: rgba(16, 17, 16, 0.94);
  backdrop-filter: blur(14px);
}

.section {
  scroll-margin-top: 78px;
}

.mobile-social,
.menu-toggle {
  display: none;
}

.about-section {
  padding: 118px 0 110px;
  background: var(--paper);
}

.about-section .section-intro {
  margin-bottom: 56px;
}

.intro-copy {
  display: grid;
  gap: 14px;
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article {
  min-height: 260px;
  padding: 34px 34px 34px 0;
}

.principle-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.principle-grid small {
  display: block;
  margin-bottom: 44px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.principle-grid strong {
  display: block;
  max-width: 310px;
  font-size: 19px;
  line-height: 1.45;
}

.principle-grid p {
  max-width: 320px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.expertise-section {
  padding: 118px 0;
  color: var(--white);
  background: #151615;
}

.section-head {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 56px;
}

.section-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-head > p {
  margin: 0;
  color: #aaa9a5;
  font-size: 13px;
  line-height: 1.85;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.expertise-grid article {
  min-height: 370px;
  padding: 28px;
  background: #1d1e1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: transform 180ms ease, border-color 180ms ease,
    background 180ms ease;
}

.expertise-grid article:hover {
  transform: translateY(-4px);
  background: #202120;
  border-color: rgba(239, 107, 36, 0.45);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 118px;
}

.service-top span {
  color: #777772;
  font-size: 10px;
  font-weight: 700;
}

.service-top i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(239, 107, 36, 0.4);
  border-radius: 50%;
  font-style: normal;
}

.expertise-grid h3 {
  max-width: 310px;
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.expertise-grid p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #9b9a95;
  font-size: 11px;
  line-height: 1.75;
}

.opportunities-section {
  padding: 118px 0 96px;
  background: #f9f8f5;
}

.opportunities-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: 96px;
}

.opportunities-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.05em;
}

.opportunities-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4d4c48;
  font-size: 11px;
  font-weight: 700;
}

.check-list span {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--orange);
  background: #fff0e6;
  border-radius: 50%;
}

.opportunity-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #2b2b2b;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--orange);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.hiring-board {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
}

.board-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.board-heading small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.board-heading h3 {
  margin: 5px 0 0;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.board-heading > span {
  padding: 6px 9px;
  color: #8b3b11;
  background: #fff0e6;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.focus-list article {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}

.focus-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--orange);
  background: #fff1e8;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
}

.focus-list strong {
  font-size: 12px;
}

.focus-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.focus-list i {
  color: var(--orange);
  font-style: normal;
}

.board-note {
  margin: 18px 0 0;
  color: #87857f;
  font-size: 8px;
  line-height: 1.6;
}

.location-strip {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: center;
  gap: 40px;
  margin-top: 70px;
  padding: 28px 32px;
  color: var(--white);
  background: var(--orange);
  border-radius: 12px;
}

.location-strip small {
  display: block;
  margin-bottom: 3px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.location-strip strong {
  font-size: 13px;
}

.location-strip p {
  margin: 0;
  text-align: right;
  font-size: 10px;
  font-weight: 700;
}

.location-strip p span {
  margin: 0 8px;
  opacity: 0.55;
}

.employer-section {
  padding: 118px 0;
  color: var(--white);
  background: #0f100f;
}

.employer-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 100px;
}

.employer-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.employer-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 34px;
  color: #aaa9a5;
  font-size: 14px;
  line-height: 1.85;
}

.brief-panel {
  padding: 34px;
  background: #181918;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.brief-panel > small {
  display: block;
  padding-bottom: 20px;
  color: var(--orange);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brief-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-panel li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 22px 0;
  color: #cbc9c3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  line-height: 1.55;
}

.brief-panel li:last-child {
  border-bottom: 0;
}

.brief-panel li span {
  color: #6f6f6a;
  font-size: 9px;
  font-weight: 700;
}

.process-section {
  padding: 118px 0;
  background: var(--paper);
}

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

.center-head .eyebrow {
  justify-content: center;
}

.center-head h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.center-head > p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
}

.process-grid article {
  position: relative;
  z-index: 1;
  padding: 0 28px;
  text-align: center;
}

.process-grid article > span {
  color: #9a9891;
  font-size: 8px;
  font-weight: 700;
}

.process-grid article > i {
  display: block;
  width: 14px;
  height: 14px;
  margin: 28px auto 42px;
  background: var(--paper);
  border: 4px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--paper);
}

.process-grid h3 {
  margin: 0;
  font-size: 20px;
}

.process-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.faq-section {
  padding: 118px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.18fr;
  align-items: start;
  gap: 110px;
}

.faq-copy {
  position: sticky;
  top: 120px;
}

.faq-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.3vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.faq-copy > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--orange);
  background: #fff0e6;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: 0;
  padding: 0 56px 24px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.contact-section {
  padding: 108px 0;
  color: var(--white);
  background: #111211;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  background: #171817;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.contact-copy {
  padding: 58px 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.contact-copy > p:not(.eyebrow) {
  margin: 22px 0 38px;
  color: #a7a6a1;
  font-size: 13px;
  line-height: 1.8;
}

.contact-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.contact-list a > span {
  color: #666661;
  font-size: 8px;
  font-weight: 700;
}

.contact-list small {
  display: block;
  color: #777772;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-list strong {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.contact-list i {
  color: var(--orange);
  font-style: normal;
}

.contact-form {
  padding: 46px;
  color: var(--ink);
  background: #fbfaf7;
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.form-heading small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.form-heading h3 {
  margin: 5px 0 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.form-heading > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--orange);
  background: #fff0e6;
  border-radius: 50%;
}

.type-fieldset {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.type-fieldset legend,
.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #55534e;
  font-size: 9px;
  font-weight: 700;
}

.type-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  background: #eeece6;
  border-radius: 8px;
}

.type-choice button {
  min-height: 40px;
  color: #6f6d67;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.type-choice button.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 3px 12px rgba(17, 17, 17, 0.08);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #dcd9d2;
  border-radius: 7px;
  outline: none;
  font-size: 11px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 44px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239, 107, 36, 0.12);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.submit-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 7px;
  font-size: 10px;
  line-height: 1.6;
}

.form-status.success {
  color: #376234;
  background: #edf6eb;
}

.form-status.error {
  color: #8b3b11;
  background: #fff0e6;
}

.form-status a {
  font-weight: 700;
}

.form-privacy {
  margin: 14px 0 0;
  color: #77756f;
  font-size: 8px;
  line-height: 1.6;
}

.form-privacy a {
  color: #9b4010;
  font-weight: 700;
}

.consent-field {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 18px 0 !important;
  padding: 14px;
  background: #f1efe9;
  border-radius: 8px;
}

.consent-field input {
  width: 16px !important;
  height: 16px !important;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.consent-field > span {
  margin: 0 !important;
  color: #5d5b55 !important;
  font-size: 9px !important;
  font-weight: 400 !important;
  line-height: 1.65;
}

.consent-field a {
  color: #9b4010;
  font-weight: 700;
}

.site-footer {
  padding: 74px 0 28px;
  color: var(--white);
  background: #090a09;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 0.75fr);
  gap: 64px;
}

.footer-brand img {
  width: 200px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 340px;
  margin: 17px 0 0;
  color: #777772;
  font-size: 10px;
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 10px 0 18px;
  color: #7f7e79;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a {
  margin: 0 0 9px;
  color: #bbb9b3;
  font-size: 10px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-disclaimer {
  margin-top: 54px;
  padding-top: 20px;
  color: #666661;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 8px;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  color: #60605b;
  font-size: 8px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.legal-main {
  min-height: 100vh;
  padding: 150px 0 90px;
  background: var(--paper);
}

.legal-header-inner {
  grid-template-columns: 1fr auto;
}

.legal-shell {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.legal-shell h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-meta {
  margin: 16px 0 40px;
  color: var(--muted);
  font-size: 10px;
}

.legal-card {
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-card h2 {
  margin: 34px 0 10px;
  font-size: 20px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a {
  color: #a54410;
  font-weight: 700;
}

/* Applicant profile */

.application-page {
  min-height: 100vh;
  color: var(--white);
  background: #101110;
}

.application-header {
  height: 88px;
  border-bottom: 1px solid var(--dark-line);
  background: #101110;
}

.application-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.application-home-link {
  color: #d6d5d0;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.application-home-link span {
  margin-left: 8px;
  color: var(--orange);
}

.application-main {
  position: relative;
  overflow: hidden;
  padding: 76px 0 90px;
}

.application-main::before {
  content: "";
  position: absolute;
  top: -310px;
  right: -250px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(239, 107, 36, 0.2);
  border-radius: 50%;
}

.application-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 76px;
}

.application-intro {
  position: sticky;
  top: 38px;
}

.application-intro h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(44px, 5.4vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.application-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 25px 0 0;
  color: #aaa9a5;
  font-size: 14px;
  line-height: 1.85;
}

.application-assurance {
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid rgba(239, 107, 36, 0.35);
  border-radius: 10px;
}

.application-assurance strong {
  color: var(--orange-bright);
  font-size: 12px;
}

.application-assurance p {
  margin: 6px 0 0;
  color: #9c9b96;
  font-size: 10px;
  line-height: 1.7;
}

.application-help {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-top: 34px;
}

.application-help small {
  margin-bottom: 3px;
  color: #6f6f69;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.application-help a {
  color: #c9c8c3;
  font-size: 10px;
  text-decoration: none;
}

.application-help a:hover {
  color: var(--white);
}

.application-card {
  overflow: hidden;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.application-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 30px;
  background: #f0eee8;
  border-bottom: 1px solid var(--line);
}

.application-progress > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.application-progress > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 10px;
  width: calc(100% - 74px);
  height: 1px;
  background: #d5d2cb;
}

.application-progress span {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #85827b;
  background: var(--white);
  border: 1px solid #d5d2cb;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.application-progress small {
  color: #8b8881;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.application-progress .current span,
.application-progress .complete span {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.application-progress .current small,
.application-progress .complete small {
  color: var(--ink);
}

.application-card form {
  padding: 40px 42px 34px;
}

.apply-step[hidden] {
  display: none;
}

.apply-step-heading {
  margin-bottom: 30px;
}

.apply-step-heading small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.apply-step-heading h2 {
  margin: 5px 0 0;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.apply-step-heading p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.application-card label {
  display: block;
  margin-bottom: 16px;
}

.application-card label > span {
  display: block;
  margin-bottom: 7px;
  color: #55534e;
  font-size: 9px;
  font-weight: 700;
}

.application-card input,
.application-card select,
.application-card textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d8d5ce;
  border-radius: 7px;
  outline: none;
  font-size: 11px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.application-card input,
.application-card select {
  height: 48px;
  padding: 0 13px;
}

.application-card textarea {
  min-height: 132px;
  padding: 13px;
  resize: vertical;
}

.application-card input:focus,
.application-card select:focus,
.application-card textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239, 107, 36, 0.12);
}

.application-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.application-summary article {
  min-height: 150px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.application-summary small {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.application-summary strong {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  line-height: 1.55;
}

.application-summary p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.candidate-safety-note {
  margin: 18px 0;
  padding: 16px 18px;
  color: #4f4d47;
  background: #fff0e6;
  border-left: 3px solid var(--orange);
  border-radius: 7px;
}

.candidate-safety-note strong {
  font-size: 10px;
}

.candidate-safety-note p {
  margin: 5px 0 0;
  font-size: 9px;
  line-height: 1.65;
}

.apply-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.apply-actions .button {
  min-width: 142px;
  border: 0;
  cursor: pointer;
}

.button-outline-dark {
  color: var(--ink);
  background: transparent;
  border: 1px solid #cbc8c0 !important;
}

.button-outline-dark:hover {
  border-color: var(--ink) !important;
}

.application-success {
  display: grid;
  min-height: calc(100vh - 88px);
  padding: 70px 24px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
}

.application-success-card {
  width: min(680px, 100%);
  padding: 54px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.1);
}

.application-success-card .eyebrow {
  justify-content: center;
  margin-top: 20px;
}

.success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
}

.application-success-card h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.application-success-card > p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.confirmation-id {
  margin: 26px auto 0;
  padding: 16px;
  background: #f3f1eb;
  border-radius: 9px;
}

.confirmation-id small {
  display: block;
  color: #8c8982;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.confirmation-id strong {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.success-expectation {
  max-width: 540px;
  font-size: 9px !important;
}

.application-success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .menu-toggle {
    position: relative;
    z-index: 35;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 12px 9px;
    place-content: center;
    gap: 6px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .desktop-nav {
    position: fixed;
    inset: 88px 0 0;
    z-index: 30;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 42px 34px;
    background: #101110;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .desktop-nav.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .desktop-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
  }

  .mobile-social {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    color: var(--orange) !important;
  }

  .principle-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    min-height: auto;
    padding: 30px 0;
  }

  .principle-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle-grid small {
    margin-bottom: 24px;
  }

  .section-head,
  .opportunities-layout,
  .employer-layout,
  .faq-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .section-head,
  .opportunities-layout,
  .employer-layout,
  .faq-layout {
    gap: 54px;
  }

  .expertise-grid article {
    min-height: 280px;
  }

  .service-top {
    margin-bottom: 70px;
  }

  .opportunities-copy {
    max-width: 720px;
  }

  .hiring-board {
    max-width: 760px;
  }

  .location-strip {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .location-strip p {
    text-align: left;
    line-height: 1.8;
  }

  .brief-panel {
    max-width: 720px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 20px;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid article > i {
    margin-bottom: 26px;
  }

  .faq-copy {
    position: static;
    max-width: 720px;
  }

  .contact-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .application-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .application-intro {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 76px;
  }

  .desktop-nav {
    inset: 76px 0 0;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    padding-top: 126px;
  }

  .about-section,
  .expertise-section,
  .opportunities-section,
  .employer-section,
  .process-section,
  .faq-section,
  .contact-section {
    padding: 80px 0;
  }

  .section-intro,
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro h2,
  .section-head h2,
  .opportunities-copy h2,
  .employer-copy h2,
  .center-head h2,
  .faq-copy h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .expertise-grid article {
    min-height: 270px;
    padding: 24px;
  }

  .service-top {
    margin-bottom: 64px;
  }

  .opportunity-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hiring-board,
  .brief-panel {
    padding: 24px;
  }

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

  .focus-list article {
    grid-template-columns: 38px 1fr;
  }

  .focus-list i {
    display: none;
  }

  .location-strip {
    margin-top: 42px;
    padding: 24px;
  }

  .location-strip p span {
    margin: 0 4px;
  }

  .employer-layout {
    gap: 48px;
  }

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

  .process-grid article {
    padding: 0 20px;
  }

  .faq-layout {
    gap: 44px;
  }

  .faq-list summary {
    font-size: 12px;
  }

  .contact-copy,
  .contact-form {
    padding: 34px 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

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

  .legal-main {
    padding-top: 120px;
  }

  .legal-shell {
    width: min(100% - 28px, 820px);
  }

  .legal-card {
    padding: 28px 22px;
  }

  .application-header {
    height: 76px;
  }

  .application-home-link {
    font-size: 9px;
  }

  .application-main {
    padding: 52px 0 70px;
  }

  .application-intro h1 {
    font-size: 44px;
  }

  .application-progress {
    padding: 17px 15px;
  }

  .application-progress > div {
    justify-content: center;
  }

  .application-progress > div:not(:last-child)::after {
    display: none;
  }

  .application-progress small {
    display: none;
  }

  .application-card form {
    padding: 32px 22px 26px;
  }

  .apply-step-heading h2 {
    font-size: 27px;
  }

  .application-summary {
    grid-template-columns: 1fr;
  }

  .application-summary article {
    min-height: auto;
  }

  .apply-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .apply-actions .button {
    width: 100%;
  }

  .application-success {
    min-height: calc(100vh - 76px);
    padding: 44px 14px;
  }

  .application-success-card {
    padding: 38px 22px;
  }

  .application-success-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link,
  .expertise-grid article,
  .menu-toggle span,
  .desktop-nav,
  .faq-list summary span,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    transition: none;
  }
}

/* Employer job-posting form */

.post-job-form-section {
  padding: 88px 0;
  background: #f2f0ea;
}

.post-job-form-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 64px;
}

.post-job-form-copy {
  position: sticky;
  top: 28px;
}

.post-job-form-copy h2 {
  max-width: 560px;
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.post-job-form-copy > p:not(.portal-kicker) {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.post-job-assurance {
  margin-top: 28px;
  padding: 24px;
  color: #deddd8;
  background: #171817;
  border-radius: 12px;
}

.post-job-assurance strong {
  color: var(--orange);
  font-size: 11px;
}

.post-job-assurance ol {
  margin: 18px 0 0;
  padding-left: 20px;
}

.post-job-assurance li {
  margin: 10px 0;
  font-size: 9px;
  line-height: 1.65;
}

.post-job-form {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.post-job-form .button {
  width: 100%;
  justify-content: center;
}

.post-job-form .form-status {
  margin-top: 16px;
  font-size: 10px;
}

@media (max-width: 900px) {
  .post-job-form-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .post-job-form-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .post-job-form-section {
    padding: 56px 0;
  }

  .post-job-form {
    padding: 22px;
  }

  .post-job-form .portal-form-grid {
    grid-template-columns: 1fr;
  }
}


/* Growth upgrade: public jobs, trust pages, and analytics consent */
.jobs-preview-section,.jobs-page-main,.trust-page-main,.location-page-main,.resource-page-main{background:#f7f4f1}
.jobs-preview-head,.jobs-page-head{display:flex;justify-content:space-between;gap:32px;align-items:end;margin-bottom:30px}
.jobs-preview-head h2,.jobs-page-head h1{max-width:760px;margin:8px 0 0}
.job-results{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.job-card{background:#fff;border:1px solid #ded8d2;border-radius:20px;padding:24px;display:flex;flex-direction:column;min-height:350px;box-shadow:0 8px 26px rgba(20,20,20,.04)}
.job-card-top{display:flex;justify-content:space-between;gap:12px;text-transform:uppercase;font-size:11px;font-weight:800;letter-spacing:.08em;color:#d85616}
.job-card-top small{color:#6e6862}
.job-card h3{font-size:23px;line-height:1.16;margin:18px 0 14px}.job-card h3 a{color:#161616;text-decoration:none}.job-card h3 a:hover{text-decoration:underline}
.job-meta{display:flex;gap:8px;flex-wrap:wrap}.job-meta span{font-size:12px;background:#f3efeb;border-radius:999px;padding:7px 10px;color:#4f4b47}
.job-salary{font-weight:800;color:#181818;margin:18px 0 8px}.job-summary{color:#65605b;line-height:1.6;margin:0 0 22px;flex:1}
.job-card-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap}.job-card-actions .button{padding:12px 16px;font-size:13px}
.jobs-empty{grid-column:1/-1;background:#fff;border:1px dashed #cfc6bd;border-radius:20px;padding:34px;text-align:center}.jobs-empty strong{font-size:22px}.jobs-empty p{max-width:620px;margin:10px auto 20px;color:#69635d}
.jobs-filters{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:12px;background:#fff;border:1px solid #ded8d2;padding:16px;border-radius:18px;margin-bottom:20px}.jobs-filters input,.jobs-filters select{width:100%;border:1px solid #d7d0ca;border-radius:12px;padding:13px;background:#fff;font:inherit}.job-count{font-size:13px;color:#6d6761;margin:0 0 15px}
.job-context{display:none;background:#fff7f0;border:1px solid #f0c4a6;border-radius:14px;padding:14px 16px;margin-bottom:18px}.job-context.visible{display:block}.job-context strong{display:block}.job-context span{color:#6b5a4f;font-size:13px}
.content-shell{width:min(1120px,calc(100% - 40px));margin:auto}.content-hero{padding:86px 0 44px;background:#161616;color:#fff}.content-hero h1{font-size:clamp(38px,6vw,70px);line-height:1;margin:14px 0}.content-hero p{max-width:760px;color:#d5d0cb;line-height:1.7}
.content-section{padding:56px 0}.content-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.content-card{background:#fff;border:1px solid #ded8d2;border-radius:18px;padding:24px}.content-card h2,.content-card h3{margin-top:0}.content-card p,.content-card li{color:#615c57;line-height:1.65}.official-channel{display:flex;justify-content:space-between;gap:20px;align-items:center;border-bottom:1px solid #e4ded8;padding:15px 0}.official-channel:last-child{border-bottom:0}.official-channel a{font-weight:800;color:#d85616}
.location-links{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px;margin-top:22px}.location-links a{background:#fff;border:1px solid #ded8d2;border-radius:14px;padding:18px;text-decoration:none;color:#171717;font-weight:800}.location-links a:hover{border-color:#d85616}
.analytics-consent{position:fixed;z-index:9999;left:18px;right:18px;bottom:18px;max-width:900px;margin:auto;background:#171717;color:#fff;border:1px solid #393939;border-radius:16px;padding:16px 18px;display:flex;align-items:center;justify-content:space-between;gap:20px;box-shadow:0 18px 50px rgba(0,0,0,.3)}.analytics-consent p{margin:0;line-height:1.45}.analytics-consent div{display:flex;gap:8px;flex-shrink:0}.analytics-consent button{border:1px solid #666;background:#222;color:#fff;padding:10px 13px;border-radius:9px;font-weight:700}.analytics-consent button:last-child{background:#f36b21;border-color:#f36b21;color:#111}
@media(max-width:980px){.job-results{grid-template-columns:1fr 1fr}.jobs-filters{grid-template-columns:1fr 1fr}.location-links{grid-template-columns:1fr 1fr 1fr}}
@media(max-width:680px){.jobs-preview-head,.jobs-page-head{display:block}.job-results,.content-grid{grid-template-columns:1fr}.jobs-filters{grid-template-columns:1fr}.location-links{grid-template-columns:1fr 1fr}.analytics-consent{display:block}.analytics-consent div{margin-top:12px}.job-card{min-height:0}}
