:root {
  color-scheme: dark;
  --ink: #f7f8f2;
  --muted: #b7beb9;
  --soft: #d9ded7;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(13, 18, 19, 0.84);
  --panel-solid: #101617;
  --steel: #84929a;
  --orange: #ff6a21;
  --orange-deep: #c84717;
  --teal: #38d6bd;
  --green: #a9e85c;
  --blue: #75a7ff;
  --page: #080b0c;
  --band: #0d1112;
  --radius: 8px;
  --content-max: 2560px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

body::selection {
  background: rgba(255, 106, 33, 0.35);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 11, 12, 0.22), var(--page) 720px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 120px);
}

.page-pad {
  width: min(var(--content-max), calc(100% - 80px));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(var(--content-max), calc(100% - 80px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 12, 13, 0.68);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.topbar.is-elevated {
  background: rgba(8, 12, 13, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.04rem;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 4px;
  width: 31px;
  height: 31px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  inset: 50% auto auto 50%;
  width: 24px;
  height: 1px;
  background: rgba(56, 214, 189, 0.6);
  transform-origin: left center;
}

.brand-mark::before {
  transform: rotate(0deg) translate(-50%, -50%);
}

.brand-mark::after {
  transform: rotate(90deg) translate(-50%, -50%);
}

.brand-mark span {
  display: block;
  background: var(--orange);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a,
.nav-login {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-login:hover {
  color: var(--ink);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-login {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: #120806;
  border-color: rgba(255, 255, 255, 0.08);
}

.button-primary:hover {
  background: #ff7c3d;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.22);
}

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

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100svh - 58px);
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 124px 0 54px;
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.96) 0%, rgba(8, 11, 12, 0.9) 34%, rgba(8, 11, 12, 0.56) 64%, rgba(8, 11, 12, 0.36) 100%),
    linear-gradient(180deg, rgba(8, 11, 12, 0.18), rgba(8, 11, 12, 0.94) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(380px, 480px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(48px, 6vw, 120px);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.79rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 5vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.18;
}

.hero-lede,
.section-heading p,
.split-copy > p,
.reputation-copy p,
.contact-copy p {
  color: var(--soft);
  font-size: clamp(1.04rem, 1.7vw, 1.32rem);
  line-height: 1.55;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}

.proof-strip div {
  min-height: 92px;
  padding: 17px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 13, 0.62);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
}

.proof-strip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.28;
}

.match-console,
.search-panel,
.results-panel,
.booking-panel,
.profile-card,
.pricing-card,
.comparison-card,
.access-form {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.match-console {
  position: relative;
  overflow: hidden;
  padding: 18px;
  animation: consoleFloat 6s ease-in-out infinite;
}

.match-console::before {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  border-top: 3px solid rgba(255, 106, 33, 0.85);
}

.console-top,
.panel-header,
.profile-top,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.console-label,
.panel-header span {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.console-top h2 {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.12;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(56, 214, 189, 0.36);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(56, 214, 189, 0.09);
  font-size: 0.77rem;
  font-weight: 900;
  white-space: nowrap;
}

.request-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.request-meta span,
.credential-grid span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 700;
}

.match-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.match-meter span {
  display: block;
  height: 100%;
  width: 78%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--teal));
  animation: fillMeter 2.4s ease both;
}

.worker-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.worker-row,
.candidate-row {
  display: grid;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
}

.worker-row {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  min-height: 74px;
  padding: 11px;
  border-radius: var(--radius);
}

.worker-row.active {
  border-color: rgba(255, 106, 33, 0.46);
  background: rgba(255, 106, 33, 0.11);
}

.avatar,
.large-avatar {
  display: inline-grid;
  place-items: center;
  background: #1f2929;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 0.82rem;
}

.large-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  color: #06110f;
  background: var(--teal);
}

.worker-row h3,
.candidate-row h3,
.profile-top h3 {
  margin: 0 0 4px;
}

.worker-row p,
.candidate-row p,
.profile-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.worker-row strong,
.candidate-row span {
  color: var(--green);
  font-weight: 900;
}

.console-footer {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.86rem;
}

.console-footer strong {
  color: var(--ink);
  text-align: right;
}

.ticker-section {
  position: relative;
  height: 58px;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c1011;
  overflow: clip;
}

.ticker-track {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  width: max-content;
  gap: 52px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: ticker 35s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
}

.section {
  padding-block: clamp(78px, 9vw, 128px);
}

.anchor-target {
  display: block;
  position: relative;
  top: -92px;
  visibility: hidden;
}

.intro-section,
.platform-section,
.pricing-section {
  background: var(--page);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.loop-step {
  min-height: 270px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.loop-step:last-child {
  border-right: 0;
}

.loop-step span {
  display: block;
  margin-bottom: 50px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.loop-step h3 {
  font-size: 1.45rem;
}

.loop-step p,
.feature-stack p,
.verification-rail p,
.pricing-card p,
.comparison-card li,
.profile-note,
.replacement-note {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 720px;
  padding-block: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--band);
}

.split-media {
  min-height: 720px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 90px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-stack {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.feature-stack article {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-stack h3 {
  font-size: 1.25rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.25fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.search-panel,
.results-panel,
.booking-panel,
.profile-card,
.pricing-card,
.comparison-card,
.access-form {
  padding: 22px;
}

.panel-header {
  min-height: 38px;
  margin-bottom: 18px;
}

.panel-header strong {
  color: var(--teal);
  font-size: 0.86rem;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  outline: 0;
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 106, 33, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 106, 33, 0.16);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 13px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 18px;
}

.chip {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.chip.is-active {
  color: #07110e;
  border-color: transparent;
  background: var(--teal);
}

.candidate-table {
  display: grid;
  gap: 10px;
}

.candidate-row {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 80px;
  padding: 16px;
  border-radius: var(--radius);
}

.candidate-row:first-child {
  background: rgba(56, 214, 189, 0.11);
  border-color: rgba(56, 214, 189, 0.32);
}

.booking-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 8px 0 22px;
}

.booking-timeline div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-weight: 800;
}

.booking-timeline span {
  width: 13px;
  height: 13px;
  border: 3px solid rgba(8, 11, 12, 0.9);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(169, 232, 92, 0.55);
}

.replacement-note,
.profile-note {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.92rem;
}

.verify-section {
  background:
    linear-gradient(180deg, rgba(13, 17, 18, 1), rgba(8, 11, 12, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.verification-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.verification-rail article {
  min-height: 270px;
  padding: 28px;
  background: #0e1314;
}

.verification-rail span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 106, 33, 0.48);
  color: var(--orange);
  font-weight: 900;
}

.verification-rail h3 {
  font-size: 1.28rem;
}

.reputation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 520px);
  align-items: center;
  gap: clamp(28px, 5vw, 86px);
}

.reputation-copy {
  max-width: 680px;
}

.profile-card {
  background:
    linear-gradient(180deg, rgba(56, 214, 189, 0.1), rgba(255, 255, 255, 0.035)),
    var(--panel-solid);
}

.profile-top {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.credential-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.reliability-score {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.reliability-score div {
  min-height: 96px;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.reliability-score strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 1.58rem;
  line-height: 1;
}

.reliability-score span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.24;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
}

.pricing-card,
.comparison-card {
  min-height: 345px;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(255, 106, 33, 0.13), rgba(255, 255, 255, 0.04)), var(--panel-solid);
}

.price {
  margin: 16px 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.comparison-card ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 24px;
}

.comparison-card li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.66em;
  width: 9px;
  height: 9px;
  background: var(--orange);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 540px);
  gap: clamp(26px, 5vw, 78px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c1011;
}

.access-form {
  box-shadow: none;
}

.bot-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 800;
}

.form-status.is-error {
  color: #ffb191;
}

.form-status a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.48);
  text-underline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 130px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 110ms;
}

.delay-2 {
  transition-delay: 190ms;
}

.delay-3 {
  transition-delay: 270ms;
}

.delay-4 {
  transition-delay: 350ms;
}

@keyframes consoleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes fillMeter {
  from {
    width: 22%;
  }
  to {
    width: 78%;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

/* Wide displays (>=1800px): one coherent type scale so the stretched layout
   fills the canvas instead of leaving small text marooned in whitespace.
   Two tiers — EDITORIAL copy (headlines/ledes) goes large; DASHBOARD/CARD/FORM
   UI gets a proportional, smaller bump so product mockups stay UI-scale but
   never look tiny next to the headlines. Laptop/tablet/mobile are unchanged. */
@media (min-width: 1800px) {
  /* --- Editorial: headings, ledes, section body --- */
  h1 {
    max-width: 16ch;
    font-size: clamp(9rem, 9.6vw, 12.9rem);
  }

  h2 {
    max-width: 22ch;
    font-size: clamp(6rem, 6.9vw, 9.3rem);
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 1.05rem;
  }

  .hero-lede,
  .section-heading p,
  .split-copy > p,
  .reputation-copy p,
  .contact-copy p {
    font-size: clamp(1.98rem, 2.25vw, 2.58rem);
  }

  .hero-copy {
    max-width: 1040px;
  }

  .hero-lede {
    max-width: 940px;
  }

  .section-heading {
    max-width: 1180px;
    margin-bottom: 52px;
  }

  .loop-step p,
  .feature-stack p,
  .verification-rail p {
    font-size: 1.7rem;
  }

  .loop-step h3 {
    font-size: 2.5rem;
  }

  .verification-rail h3 {
    font-size: 2.2rem;
  }

  .feature-stack h3 {
    font-size: 2.1rem;
  }

  .proof-strip {
    max-width: 1040px;
  }

  .proof-strip strong {
    font-size: clamp(3rem, 3.45vw, 3.75rem);
    white-space: nowrap;
  }

  .proof-strip span {
    font-size: 1.12rem;
  }

  /* --- Nav, ticker, footer --- */
  .brand {
    font-size: 1.28rem;
  }

  .nav-links,
  .nav-login {
    font-size: 1.14rem;
  }

  .topbar {
    min-height: 84px;
  }

  .ticker-section {
    height: 74px;
  }

  .ticker-track {
    font-size: 1.16rem;
  }

  .footer {
    font-size: 1.18rem;
  }

  .footer-links {
    font-size: 1.18rem;
  }

  /* --- Buttons --- */
  .button {
    min-height: 60px;
    font-size: 1.18rem;
  }

  .button-small {
    min-height: 52px;
    font-size: 1.05rem;
  }

  /* --- Dashboard / card UI: proportional medium bump --- */
  .console-label,
  .panel-header span {
    font-size: 1.02rem;
  }

  .panel-header strong {
    font-size: 1.12rem;
  }

  .console-top h2 {
    font-size: 1.95rem;
  }

  .status-pill {
    min-height: 40px;
    font-size: 1rem;
  }

  .request-meta span,
  .credential-grid span {
    font-size: 1.05rem;
  }

  .worker-row h3,
  .candidate-row h3,
  .profile-top h3 {
    font-size: 1.4rem;
  }

  .worker-row p,
  .candidate-row p,
  .profile-top p {
    font-size: 1.12rem;
  }

  .worker-row strong,
  .candidate-row span {
    font-size: 1.34rem;
  }

  .avatar {
    font-size: 1.05rem;
  }

  .booking-timeline div {
    font-size: 1.14rem;
  }

  .console-footer {
    font-size: 1.12rem;
  }

  .replacement-note,
  .profile-note {
    font-size: 1.14rem;
  }

  .reliability-score strong {
    font-size: 2.4rem;
  }

  .reliability-score span {
    font-size: 1.04rem;
  }

  /* --- Pricing cards --- */
  .pricing-card h3,
  .comparison-card h3 {
    font-size: 2.2rem;
  }

  .pricing-card p,
  .comparison-card li {
    font-size: 1.5rem;
  }

  .price {
    font-size: clamp(3.4rem, 5vw, 6rem);
  }

  /* --- Access form --- */
  label {
    font-size: 1.18rem;
  }

  input,
  select,
  textarea {
    min-height: 62px;
    font-size: 1.2rem;
  }

  textarea {
    min-height: 168px;
  }

  .chip {
    min-height: 46px;
    font-size: 1.06rem;
  }

  .form-status {
    font-size: 1.14rem;
  }
}

@media (max-width: 1050px) {
  .topbar {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-section,
  .product-grid,
  .reputation-section,
  .pricing-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: center;
  }

  .match-console {
    display: none;
  }

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

  .split-media {
    min-height: 520px;
  }

  .split-copy {
    border-left: 0;
  }

  .product-grid {
    align-items: stretch;
  }
}

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

  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding-left: 12px;
    gap: 8px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    grid-template-columns: repeat(2, 8px);
    grid-template-rows: repeat(2, 8px);
  }

  .nav-login {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: calc(100svh - 58px);
    padding: 104px 0 32px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 11, 12, 0.72) 0%, rgba(8, 11, 12, 0.86) 44%, rgba(8, 11, 12, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 11, 12, 0.75), rgba(8, 11, 12, 0.4));
  }

  h1 {
    font-size: clamp(2.4rem, 10.5vw, 3rem);
    line-height: 1.02;
    text-wrap: auto;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

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

  .proof-strip div {
    min-height: 78px;
    padding: 12px 10px;
  }

  .proof-strip strong {
    font-size: clamp(1.12rem, 5vw, 1.35rem);
  }

  .proof-strip span {
    font-size: 0.72rem;
  }

  .worker-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .worker-row strong {
    grid-column: 2;
  }

  .console-top,
  .console-footer,
  .panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .console-footer strong {
    text-align: left;
  }

  .loop-grid,
  .verification-rail,
  .reliability-score {
    grid-template-columns: 1fr;
  }

  .loop-step {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .loop-step:last-child {
    border-bottom: 0;
  }

  .split-media {
    min-height: 390px;
  }

  .split-copy {
    padding: 42px 20px;
  }

  .candidate-row {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 32px;
  }
}

@media (max-width: 360px) {
  .topbar {
    min-height: 58px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 9px;
    font-size: 0.74rem;
  }

  .hero {
    padding: 96px 0 26px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.12rem, 10vw, 2.35rem);
  }

  .hero-lede {
    margin-bottom: 22px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .proof-strip {
    display: none;
  }
}
