:root {
  color-scheme: light;
  --ink: #0b0d10;
  --ink-2: #121820;
  --muted: #6b7280;
  --paper: #f8fafb;
  --surface: #ffffff;
  --teal: #00d4c4;
  --teal-dark: #008d84;
  --mint: #c8fff5;
  --line: rgba(107, 114, 128, 0.2);
  --shadow: 0 24px 70px rgba(11, 13, 16, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(100% - 32px, 1480px);
  min-height: 70px;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 10px 14px 10px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 222, 228, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(11, 13, 16, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 150px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav,
.header-actions,
.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
}

.main-nav {
  justify-content: center;
  flex-wrap: wrap;
  color: #26313c;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-item {
  position: relative;
}

.nav-item summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  cursor: pointer;
  list-style: none;
}

.nav-item summary::-webkit-details-marker {
  display: none;
}

.nav-item summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-item[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 220px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(216, 222, 228, 0.95);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(11, 13, 16, 0.14);
  transform: translateX(-50%);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  color: #26313c;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--ink);
  background: rgba(0, 212, 196, 0.12);
}

.main-nav a,
.text-link,
.account-note a,
.audience-grid a,
.pricing-grid a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.nav-item summary:hover,
.text-link:hover,
.account-note a:hover {
  color: var(--teal-dark);
}

.header-actions {
  justify-content: flex-end;
  font-weight: 900;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button--small {
  min-height: 44px;
  padding-inline: 18px;
}

.button--primary {
  color: var(--ink);
  background: var(--teal);
  border: 1px solid var(--teal);
  box-shadow: 0 14px 34px rgba(0, 212, 196, 0.24);
}

.button--secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.button--dark {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  line-height: 0.92;
}

h2 {
  max-width: 980px;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.12;
}

.hero {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-columns: minmax(320px, 0.7fr) minmax(260px, 0.3fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
  padding: clamp(76px, 10vw, 150px) clamp(24px, 7vw, 112px) clamp(32px, 4.8vw, 72px);
  color: #ffffff;
  background: #05070a;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("assets/people/photos/office-corridor-consultants.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.88) 0%, rgba(5, 7, 10, 0.68) 38%, rgba(5, 7, 10, 0.28) 72%, rgba(5, 7, 10, 0.58) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.86) 0%, rgba(5, 7, 10, 0.28) 48%, rgba(5, 7, 10, 0.64) 100%),
    radial-gradient(circle at 72% 25%, rgba(0, 212, 196, 0.2), transparent 34%);
}

.hero-copy,
.hero-market-layer,
.hero-activity {
  position: relative;
  z-index: 1;
}

.hero .eyebrow,
.final-cta .eyebrow,
.site-footer h2 {
  color: var(--teal);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.6vw, 6.25rem);
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: #d9e3ea;
  font-size: clamp(1.14rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

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

.account-note {
  margin: 18px 0 0;
  color: #d9e3ea;
  font-weight: 800;
}

.account-note a {
  color: var(--teal);
}

.hero-market-layer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: clamp(360px, 54vh, 620px);
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 68vh, 760px);
  overflow: hidden;
  background: #05070a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.78), rgba(11, 13, 16, 0.18) 58%),
    linear-gradient(0deg, rgba(11, 13, 16, 0.76), rgba(11, 13, 16, 0.1) 54%),
    radial-gradient(circle at 72% 20%, rgba(0, 212, 196, 0.18), transparent 32%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -124px;
  z-index: 1;
  width: 360px;
  height: 360px;
  border: 42px solid rgba(0, 212, 196, 0.2);
  border-radius: 999px;
}

.hero-activity {
  grid-column: 1 / -1;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  margin: 0 0 clamp(16px, 3vw, 42px);
  padding: 13px 16px;
  overflow: hidden;
  color: #ffffff;
  background: rgba(5, 7, 10, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.live-label {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.activity-window {
  min-width: 0;
  overflow: hidden;
}

.activity-track {
  display: flex;
  width: max-content;
  gap: 30px;
  color: #d9e3ea;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  animation: activityTicker 44s linear infinite;
}

.activity-track a {
  position: relative;
  color: #d9e3ea;
  text-decoration: none;
}

.activity-track a:hover {
  color: #ffffff;
}

.activity-track a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 212, 196, 0.12);
}

.market-intelligence-panel {
  width: min(100%, 520px);
  padding: clamp(20px, 2.6vw, 32px);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 212, 196, 0.16), transparent 38%),
    rgba(5, 7, 10, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.panel-heading span {
  display: block;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel-heading strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.14;
}

.panel-heading p {
  margin: 10px 0 0;
  color: #c9d7dd;
  line-height: 1.45;
}

.velocity-chart {
  margin-top: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.velocity-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.chart-fill {
  fill: url(#velocityFill);
}

.chart-line {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-width: 5;
  filter: drop-shadow(0 0 12px rgba(0, 212, 196, 0.42));
}

.velocity-chart circle {
  fill: #ffffff;
  stroke: var(--teal);
  stroke-width: 4;
}

.intelligence-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.intelligence-kpis span {
  padding: 10px 11px;
  color: #d9e3ea;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

@keyframes activityTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-marketplace {
  position: relative;
  min-height: 650px;
  isolation: isolate;
}

.hero-marketplace::before {
  content: "";
  position: absolute;
  inset: 54px 18px 46px 58px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(0, 212, 196, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.hero-marketplace::after {
  content: "";
  position: absolute;
  inset: 18% -12% auto auto;
  z-index: -2;
  width: 430px;
  height: 430px;
  border: 52px solid rgba(0, 212, 196, 0.15);
  border-radius: 999px;
}

.specialist-stage {
  position: absolute;
  inset: 28px 46px 52px 54px;
  margin: 0;
  overflow: hidden;
  background: #05070a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.specialist-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.specialist-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.62), rgba(11, 13, 16, 0.04) 58%),
    linear-gradient(0deg, rgba(11, 13, 16, 0.58), transparent 48%);
}

.specialist-stage figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(11, 13, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.specialist-stage span,
.need-card span,
.match-card span,
.market-signal-card span {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.specialist-stage strong {
  font-size: 1.08rem;
}

.need-card,
.match-card,
.market-signal-card {
  position: absolute;
  z-index: 2;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.need-card strong,
.match-card strong,
.market-signal-card strong {
  display: block;
}

.need-card {
  top: 0;
  left: 0;
  width: 270px;
  padding: 20px;
}

.need-card strong,
.match-card strong,
.market-signal-card strong {
  margin-top: 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.match-card {
  right: 0;
  bottom: 148px;
  width: 260px;
  padding: 20px;
}

.market-signal-card {
  left: 28px;
  bottom: 0;
  width: 280px;
  padding: 20px;
  background: rgba(11, 13, 16, 0.88);
  color: #ffffff;
  border-color: rgba(0, 212, 196, 0.34);
}

.hero-system {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-system::before {
  content: "";
  position: absolute;
  inset: 52px 12px 42px 56px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(0, 212, 196, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
}

.hero-system::after {
  content: "";
  position: absolute;
  inset: 14% -8% auto auto;
  z-index: -2;
  width: 430px;
  height: 430px;
  border: 48px solid rgba(0, 212, 196, 0.12);
  border-radius: 999px;
}

.system-human {
  position: absolute;
  inset: 34px 42px 64px 48px;
  margin: 0;
  overflow: hidden;
  background: #05070a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.system-human img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.system-human::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.68), rgba(11, 13, 16, 0.1) 58%),
    linear-gradient(0deg, rgba(11, 13, 16, 0.72), transparent 52%);
}

.system-panel {
  position: relative;
  z-index: 2;
  width: min(88%, 520px);
  margin-left: auto;
  margin-right: 0;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.system-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.system-top span,
.workflow-card span,
.system-rail span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.system-top strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.system-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 2px;
}

.system-flow span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0, 212, 196, 0.12);
}

.system-flow i {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), #d9e3e7);
  border-radius: 999px;
}

.system-stage {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.workflow-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 24px;
  opacity: 0;
  transform: translateY(18px);
  background:
    linear-gradient(135deg, #ffffff, #f4fbfa);
  border: 1px solid var(--line);
  border-radius: 18px;
  animation: workflowCycle 18s infinite;
}

.workflow-card--need {
  animation-delay: 0s;
}

.workflow-card--scan {
  animation-delay: 3s;
}

.workflow-card--market {
  animation-delay: 6s;
}

.workflow-card--rank {
  animation-delay: 9s;
}

.workflow-card--shortlist {
  animation-delay: 12s;
}

.workflow-card--manage {
  animation-delay: 15s;
}

.workflow-card strong {
  display: block;
  margin-top: 9px;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.workflow-card small {
  display: block;
  max-width: 34ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.system-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.system-rail div {
  min-width: 0;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.system-rail strong {
  display: block;
  margin-top: 5px;
  font-size: 0.92rem;
}

@keyframes workflowCycle {
  0%,
  13% {
    opacity: 1;
    transform: translateY(0);
  }

  18%,
  100% {
    opacity: 0;
    transform: translateY(-14px);
  }
}

.product-copy p,
.workflow-steps p,
.value-cards p,
.resource-grid p,
.platform-flow p {
  color: var(--muted);
  line-height: 1.6;
}

.routing-section,
.ecosystem-section,
.platform-flow-section,
.product-section,
.new-work-section,
.capabilities-section,
.proof-section,
.pricing-teaser,
.resources-teaser,
.final-cta {
  padding: clamp(72px, 9vw, 128px) clamp(24px, 6vw, 88px);
}

.platform-flow-section {
  background: #ffffff;
}

.platform-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(11, 13, 16, 0.12);
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 18px;
}

.platform-flow article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f7fbfa);
}

.platform-flow article::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 22px;
  width: 34px;
  height: 2px;
  background: var(--teal);
}

.platform-flow article:last-child::after {
  display: none;
}

.platform-flow span {
  display: block;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 950;
}

.platform-flow strong {
  display: block;
  margin-top: 56px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.platform-flow p {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.section-heading {
  max-width: 1080px;
  margin-bottom: 40px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.audience-grid article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3.2vw, 42px);
  background: #ffffff;
}

.audience-card--hire,
.audience-card--enterprise {
  background:
    linear-gradient(145deg, rgba(0, 212, 196, 0.1), rgba(255, 255, 255, 0) 44%),
    #ffffff;
}

.audience-card--got {
  position: relative;
}

.audience-card--got::after {
  content: "Suppliers · Freelancers · Rising stars";
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 11px;
  color: var(--teal-dark);
  background: rgba(0, 212, 196, 0.11);
  border: 1px solid rgba(0, 212, 196, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.audience-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
}

.audience-grid h4 {
  max-width: 420px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.audience-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.audience-grid a,
.pricing-grid a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 950;
}

.ecosystem-section {
  color: #ffffff;
  background: var(--ink);
}

.ecosystem-section .eyebrow {
  color: var(--teal);
}

.ecosystem-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.ecosystem-map > div {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  border-radius: 14px;
  font-weight: 950;
}

.ecosystem-node {
  color: var(--ink);
  background: #ffffff;
}

.ecosystem-step {
  color: #d9e3ea;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ecosystem-core {
  grid-column: span 2;
  color: var(--ink);
  background: var(--teal);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 92px);
  background: #ffffff;
}

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

.workflow-steps article,
.capability-grid article,
.pricing-grid article,
.resource-grid article {
  padding: clamp(24px, 3.2vw, 36px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(11, 13, 16, 0.06);
}

.workflow-steps span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--teal-dark);
  font-weight: 950;
}

.new-work-section {
  background: var(--paper);
}

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

.value-cards article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.value-cards img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.value-cards h3,
.value-cards p {
  margin: 24px 24px 0;
}

.value-cards p {
  margin-bottom: 28px;
}

.capabilities-section {
  background: #ffffff;
}

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

.capability-grid strong,
.capability-grid span {
  display: block;
}

.capability-grid strong {
  font-size: 1.04rem;
}

.capability-grid span {
  margin-top: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.proof-section {
  background: var(--mint);
}

.proof-layout {
  display: grid;
  gap: 20px;
}

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

.trust-cards article {
  min-height: 260px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.1);
  border-radius: 16px;
}

.trust-cards img {
  width: 42px;
  height: 42px;
}

.trust-cards strong,
.trust-cards span {
  display: block;
}

.trust-cards strong {
  margin-top: 56px;
  font-size: 1.18rem;
}

.trust-cards span {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

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

.proof-numbers article {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.1);
  border-radius: 16px;
}

.proof-numbers strong,
.proof-numbers span {
  display: block;
}

.proof-numbers strong {
  color: var(--teal-dark);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1;
}

.proof-numbers span {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(11, 13, 16, 0.12);
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 16px;
}

.logo-cloud span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 14px;
  text-align: center;
  background: #ffffff;
  font-weight: 950;
}

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

blockquote {
  margin: 0;
  padding: clamp(24px, 3.4vw, 40px);
  color: #ffffff;
  background: var(--ink);
  border-radius: 16px;
}

blockquote p {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.55;
}

blockquote cite {
  display: block;
  margin-top: 22px;
  color: var(--teal);
  font-style: normal;
  font-weight: 850;
}

.pricing-teaser,
.resources-teaser {
  background: #ffffff;
}

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

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

.resource-grid span {
  color: var(--teal-dark);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #ffffff;
  background: var(--ink);
}

.final-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 92px);
  padding: clamp(54px, 7vw, 88px) clamp(24px, 6vw, 88px);
  color: #ffffff;
  background: #05070a;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  max-width: 320px;
  color: #d9e3ea;
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 10px;
  color: #d9e3ea;
}

.password-page {
  min-height: 100vh;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.9), rgba(5, 7, 10, 0.54)),
    url("assets/people/photos/office-corridor-consultants.webp") center / cover no-repeat;
}

.password-main {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(24px, 5vw, 80px);
}

.password-panel {
  width: min(100%, 560px);
  padding: clamp(28px, 5vw, 54px);
  background: rgba(5, 7, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.password-panel img {
  width: 190px;
  margin-bottom: 34px;
}

.password-panel h1 {
  max-width: 520px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.password-panel p:not(.eyebrow):not(.password-message) {
  color: #d9e3ea;
  font-size: 1.1rem;
  line-height: 1.55;
}

.password-form {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.password-form label {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.password-row {
  display: flex;
  gap: 10px;
}

.password-row input {
  min-width: 0;
  flex: 1;
  min-height: 52px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  font: inherit;
}

.password-row input:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

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

.password-message {
  min-height: 24px;
  margin: 0;
  color: #ffb4b4;
  font-weight: 800;
}

.page-hero,
.page-section,
.signup-main,
.login-main {
  padding: clamp(72px, 9vw, 128px) clamp(24px, 6vw, 88px);
}

.page-hero {
  width: min(100% - 32px, 1480px);
  margin: 24px auto 0;
  color: #ffffff;
  background: linear-gradient(135deg, #0b0d10, #111820);
  border-radius: 18px;
}

.page-hero p {
  max-width: 760px;
  color: #d9e3ea;
  font-size: 1.18rem;
  line-height: 1.7;
}

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

.page-grid article,
.signup-option,
.login-option {
  padding: 28px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(11, 13, 16, 0.06);
}

.signup-option img,
.login-option img {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
}

.signup-option span,
.login-option span {
  display: block;
  font-size: 1.3rem;
  font-weight: 950;
}

.signup-option strong,
.login-option strong {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .site-header,
  .hero,
  .product-section,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .main-nav,
  .header-actions,
  .final-actions {
    justify-content: flex-start;
  }

  .main-nav {
    align-items: stretch;
  }

  .nav-item {
    flex: 1 1 180px;
  }

  .nav-item summary {
    justify-content: space-between;
  }

  .nav-dropdown {
    left: 0;
    width: min(280px, 90vw);
    transform: none;
  }

  .audience-grid,
  .capability-grid,
  .pricing-grid,
  .platform-flow,
  .trust-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-cards,
  .proof-numbers,
  .resource-grid,
  .page-grid,
  .signup-options,
  .login-options {
    grid-template-columns: 1fr;
  }

  .ecosystem-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-marketplace {
    min-height: 620px;
  }

  .hero-system {
    min-height: 620px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-market-layer {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .page-hero {
    width: calc(100% - 24px);
  }

  .hero {
    width: 100%;
  }

  .site-header {
    grid-template-columns: 1fr;
    align-items: stretch;
    top: 8px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .nav-item {
    border-top: 1px solid rgba(107, 114, 128, 0.16);
  }

  .nav-item summary {
    width: 100%;
    min-height: 42px;
    padding: 0;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0 0 8px;
    padding: 4px;
    background: rgba(248, 250, 251, 0.92);
    border-radius: 12px;
    box-shadow: none;
    transform: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .audience-grid,
  .workflow-steps,
  .capability-grid,
  .pricing-grid,
  .proof-numbers,
    .quote-grid,
    .logo-cloud,
    .ecosystem-map,
    .platform-flow,
    .trust-cards,
    .site-footer nav {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 72px 20px 24px;
  }

  .hero-market-layer {
    min-height: 190px;
    display: grid;
    align-content: end;
    gap: 12px;
  }

  .hero-visual {
    min-height: 420px;
    border-radius: 22px;
  }

  .hero-signal {
    position: relative;
    inset: auto;
    max-width: none;
    margin: 0;
  }

  .hero-signal--match {
    margin-top: 0;
  }

  .hero-signal--live {
    display: none;
  }

  .hero-activity {
    align-items: flex-start;
    border-radius: 18px;
  }

  .live-label {
    padding-top: 2px;
  }

  .hero-marketplace {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .hero-marketplace::before,
  .hero-marketplace::after {
    display: none;
  }

  .specialist-stage,
  .need-card,
  .match-card,
  .market-signal-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .specialist-stage {
    height: 360px;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-system {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .hero-system::before,
  .hero-system::after {
    display: none;
  }

  .system-human,
  .system-panel {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .system-human {
    height: 320px;
  }

  .system-panel {
    margin: 0;
  }

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

  .routing-section,
  .ecosystem-section,
  .platform-flow-section,
  .product-section,
  .new-work-section,
  .capabilities-section,
  .proof-section,
  .pricing-teaser,
  .resources-teaser,
  .final-cta,
  .site-footer,
  .page-section,
  .signup-main,
  .login-main {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .activity-track {
    animation: none;
  }

  .workflow-card {
    animation: none;
  }

  .workflow-card:not(.workflow-card--need) {
    display: none;
  }

  .workflow-card--need {
    opacity: 1;
    transform: none;
  }
}
