: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 58s 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));
}

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

.pricing-matrix article {
  display: grid;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(13, 18, 22, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(13, 18, 22, 0.06);
}

.pricing-matrix span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-matrix h3 {
  margin: 20px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.pricing-matrix p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-matrix strong {
  align-self: end;
  margin-top: 24px;
  color: var(--ink);
}

.pricing-matrix a {
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 950;
  text-decoration: none;
}

.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 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(28px, 4vw, 46px);
  margin: clamp(30px, 5vw, 64px) 0 0;
  padding-block: clamp(54px, 7vw, 88px);
  padding-inline: max(clamp(24px, 6vw, 88px), calc((100vw - 1480px) / 2 + 24px));
  color: #ffffff;
  background: #05070a;
}

.footer-brand {
  display: grid;
  justify-items: center;
  text-align: center;
}

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

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

.footer-brand .footer-company {
  max-width: 560px;
  margin-top: 10px;
  color: rgba(217, 227, 234, 0.74);
  font-size: 0.9rem;
}

.site-footer nav {
  width: min(100%, 1120px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px clamp(34px, 4vw, 62px);
}

.site-footer nav > div {
  min-width: 112px;
}

.footer-account {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-top: 4px;
  color: rgba(217, 227, 234, 0.66);
  font-size: 0.92rem;
}

.footer-account a {
  display: inline-flex;
  margin-top: 0;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

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

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

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

.site-footer .footer-company a,
.site-footer .footer-account a {
  display: inline-flex;
  margin-top: 0;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

.site-footer .footer-company a:hover,
.site-footer .footer-account a:hover {
  color: var(--teal);
}

.policy-layout {
  width: min(100% - 32px, 1280px);
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  margin-inline: auto;
}

.policy-summary,
.policy-content {
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(11, 13, 16, 0.06);
}

.policy-summary {
  position: sticky;
  top: 104px;
  padding: clamp(22px, 2.6vw, 32px);
}

.policy-summary h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.policy-summary p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.policy-summary a,
.policy-content a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.policy-content {
  padding: clamp(26px, 4vw, 52px);
}

.policy-content h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.policy-content section {
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(107, 114, 128, 0.16);
}

.policy-content h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
}

.policy-content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.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);
}

.signup-main,
.login-main {
  width: min(100% - 32px, 1480px);
  margin: 16px auto 0;
  padding-inline: clamp(22px, 4vw, 58px);
}

.page-hero {
  position: relative;
  width: min(100% - 32px, 1480px);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 16px clamp(18px, 3vw, 34px);
  align-items: center;
  margin: 16px auto 0;
  padding: clamp(22px, 3vw, 34px) clamp(22px, 4vw, 46px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 250, 0.98)),
    #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(11, 13, 16, 0.065);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 7px;
  background: linear-gradient(180deg, var(--teal), rgba(0, 141, 132, 0.18));
}

.page-hero::after {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 64px;
  height: 64px;
  align-self: center;
  justify-self: center;
  background:
    radial-gradient(circle at 24% 50%, var(--teal) 0 6px, transparent 7px),
    radial-gradient(circle at 76% 50%, #ffffff 0 5px, transparent 6px),
    linear-gradient(90deg, transparent 20%, rgba(0, 212, 196, 0.88) 20% 80%, transparent 80%),
    #0b0d10;
  background-size: 100% 100%, 100% 100%, 100% 2px, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 212, 196, 0.26);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 212, 196, 0.14);
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  grid-column: 2;
}

.page-hero .eyebrow,
.page-hero p {
  margin: 0;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.03;
}

.page-hero p {
  max-width: 760px;
  color: #40505e;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.5;
}

.page-hero .button {
  grid-column: 3;
  grid-row: 1 / span 3;
  justify-self: end;
  width: max-content;
  min-height: 46px;
  margin-top: 0;
  padding-inline: 18px;
}

.page-hero + .page-section {
  padding-top: clamp(26px, 3.4vw, 44px);
}

.page-inline-cta {
  width: min(100% - 48px, 1280px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 auto clamp(72px, 8vw, 116px);
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(11, 13, 16, 0.07);
}

.page-inline-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.page-inline-cta strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.2;
}

.page-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.signup-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.signup-path {
  padding: clamp(18px, 2.4vw, 28px);
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(11, 13, 16, 0.07);
}

.signup-path--hire {
  background:
    linear-gradient(135deg, rgba(0, 212, 196, 0.11), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  border-color: rgba(0, 141, 132, 0.28);
}

.signup-path--got {
  background:
    linear-gradient(135deg, rgba(134, 232, 255, 0.18), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  border-color: rgba(57, 169, 220, 0.24);
}

.signup-path-head {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(107, 114, 128, 0.16);
}

.signup-path-head span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.signup-path-head h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.signup-path-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: #40505e;
  line-height: 1.5;
}

.signup-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.signup-products span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  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.76rem;
  font-weight: 950;
}

.signup-options--nested {
  grid-template-columns: 1fr;
}

.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;
}

.legacy-logo {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  padding: 9px 12px;
  color: #ffffff;
  background: #05070a;
  border: 1px solid rgba(0, 212, 196, 0.2);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(11, 13, 16, 0.12);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
}

.legacy-logo span {
  display: inline;
  color: var(--teal);
  font-size: inherit;
  font-weight: inherit;
}

.legacy-logo--pris {
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff, #e9fffb);
  border-color: rgba(0, 141, 132, 0.22);
}

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

.login-option .legacy-logo span {
  display: inline;
  color: var(--teal);
  font-size: inherit;
  font-weight: inherit;
}

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

.login-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.signup-option,
.login-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.signup-option p,
.login-option p {
  margin: 12px 0 0;
  color: #40505e;
  line-height: 1.5;
}

.signup-option .button,
.login-option .button {
  margin-top: auto;
}

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

  .page-hero {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .page-hero::after {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 52px;
    height: 52px;
  }

  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero p {
    grid-column: 2;
  }

  .page-hero .button {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
  }

  .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,
  .pricing-matrix,
  .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;
  }

  .signup-paths {
    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);
  }

  .page-hero {
    min-height: auto;
    margin-top: 14px;
    grid-template-columns: 1fr;
    padding: 22px 22px 24px 28px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .page-hero::after {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    margin-bottom: 4px;
    justify-self: start;
  }

  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero p,
  .page-hero .button {
    grid-column: 1;
  }

  .page-inline-cta {
    width: calc(100% - 36px);
    margin-bottom: 64px;
  }

  .page-inline-actions {
    justify-content: flex-start;
  }

  .audience-grid,
  .workflow-steps,
  .capability-grid,
  .pricing-grid,
  .pricing-matrix,
  .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;
  }
}

/* Lean launch structure */
.activity-bar {
  position: relative;
  z-index: 4;
  width: min(100% - 32px, 1480px);
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  margin: 10px auto 0;
  padding: 12px 18px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 212, 196, 0.12), transparent 36%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.2);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(11, 13, 16, 0.16);
}

.activity-bar .live-label {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--teal);
  border-radius: 999px;
  letter-spacing: 0;
}

.activity-bar .activity-track {
  color: #ffffff;
}

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

.home-hero {
  width: min(100% - 32px, 1480px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.68fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  margin: 18px auto 0;
  padding: clamp(48px, 6vw, 86px);
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 212, 196, 0.1), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4fbfa 100%);
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(11, 13, 16, 0.08);
}

.home-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  line-height: 0.92;
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 26px 0 0;
  color: #40505e;
  font-size: clamp(1.1rem, 1.45vw, 1.32rem);
  line-height: 1.58;
}

.home-market-stats {
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.home-market-stats span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #26313c;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 212, 196, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(11, 13, 16, 0.055);
  font-size: 0.88rem;
  font-weight: 850;
}

.home-market-stats strong {
  color: var(--teal-dark);
  font-weight: 950;
}

.home-hero .hero-actions {
  margin-top: 30px;
}

.hero-text-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  color: var(--teal-dark);
  font-weight: 950;
  text-decoration: none;
}

.home-intelligence-card {
  position: relative;
  min-height: 420px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 212, 196, 0.12), transparent 42%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.22);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(11, 13, 16, 0.28);
  isolation: isolate;
}

.home-intelligence-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  z-index: -1;
  width: 380px;
  height: 380px;
  border: 44px solid rgba(0, 212, 196, 0.18);
  border-radius: 999px;
}

.intelligence-person {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0.64)),
    url("assets/people/photos/interim-specialist-portrait.webp") right center / auto 100% no-repeat;
  opacity: 0.5;
}

.mini-panel-header span {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-panel-header strong {
  display: block;
  max-width: 12ch;
  margin-top: 9px;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.05;
}

.evergreen-chart {
  margin-top: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
}

.evergreen-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.match-flow {
  display: grid;
  grid-template-columns: 1fr 32px 0.9fr 32px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
}

.match-flow span,
.match-flow strong {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px;
  text-align: center;
  border-radius: 14px;
  font-weight: 950;
}

.match-flow span {
  color: #d9e3ea;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.match-flow strong {
  color: var(--ink);
  background: var(--teal);
}

.match-flow i {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.market-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.market-signals span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  color: #d9e3ea;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.market-signals strong {
  color: var(--teal);
}

.home-intelligence-card > p {
  margin: 18px 0 0;
  color: #d9e3ea;
  font-weight: 850;
}

.home-routing,
.home-why {
  width: min(100% - 32px, 1480px);
  margin-inline: auto;
  padding: clamp(42px, 5vw, 74px) 0;
}

.section-heading--tight {
  margin-bottom: 24px;
}

.section-heading--tight h2 {
  max-width: 780px;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
}

.home-routing .audience-grid article {
  min-height: 330px;
}

.home-routing .audience-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
}

.home-why {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr) auto;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(30px, 4vw, 48px);
  margin-bottom: clamp(42px, 5vw, 72px);
  color: #ffffff;
  background: #05070a;
  border-radius: 18px;
}

.home-why h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.home-why p:not(.eyebrow) {
  margin: 0;
  color: #d9e3ea;
  line-height: 1.65;
}

.header-actions .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 12px;
}

.page-hero {
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.44fr);
  min-height: 330px;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 4vw, 54px) clamp(30px, 5vw, 68px);
}

.page-hero::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 4;
  width: 100%;
  height: 240px;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.18)),
    url("assets/people/photos/customer-shortlist-review.webp") center / cover no-repeat;
  border: 1px solid rgba(11, 13, 16, 0.1);
  border-radius: 16px;
  box-shadow: 0 22px 52px rgba(11, 13, 16, 0.14);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.7vw, 4rem);
}

.page-hero p {
  max-width: 700px;
  font-size: clamp(1rem, 1.12vw, 1.14rem);
}

.page-hero .button {
  grid-column: 1;
  grid-row: auto;
  justify-self: start;
  margin-top: 6px;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  grid-column: 1;
}

.page-section {
  padding-top: clamp(28px, 4vw, 48px);
}

@media (max-width: 1180px) {
  .home-hero,
  .home-why,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .home-intelligence-card {
    min-height: 380px;
  }

  .page-hero::after {
    grid-column: 1;
    grid-row: auto;
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .activity-bar,
  .home-hero,
  .home-routing,
  .home-why {
    width: calc(100% - 24px);
  }

  .activity-bar {
    align-items: flex-start;
    border-radius: 14px;
  }

  .home-hero {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .home-intelligence-card {
    min-height: auto;
  }

  .match-flow {
    grid-template-columns: 1fr;
  }

  .match-flow i {
    display: none;
  }

  .home-routing,
  .home-why {
    padding-block: 34px;
  }

  .home-why {
    padding-inline: 22px;
  }

  .page-hero {
    min-height: auto;
    padding: 26px 22px;
  }

  .page-hero::after {
    width: 100%;
    height: 190px;
    margin: 4px 0 0;
  }
}

/* Compact homepage routing and proof */
.home-routing {
  padding: clamp(30px, 4vw, 52px) 0;
}

.home-routing .section-heading--tight h2 {
  max-width: 560px;
  font-size: clamp(1.9rem, 3.1vw, 3.2rem);
}

.home-routing .audience-grid article {
  min-height: 0;
  padding: clamp(18px, 2.1vw, 28px);
}

.audience-visual {
  width: 100%;
  height: 86px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #05070a;
  border-radius: 13px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.audience-visual::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.92;
  transform: scale(1.02);
}

.audience-visual--hire::before {
  background-image:
    linear-gradient(90deg, rgba(5, 7, 10, 0.58), rgba(5, 7, 10, 0.12)),
    url("assets/people/photos/customer-shortlist-review.webp");
}

.audience-visual--got::before {
  background-image:
    linear-gradient(90deg, rgba(5, 7, 10, 0.5), rgba(5, 7, 10, 0.1)),
    url("assets/people/photos/supplier-opportunity-review.webp");
}

.audience-visual--enterprise::before {
  background-image:
    linear-gradient(90deg, rgba(5, 7, 10, 0.56), rgba(5, 7, 10, 0.16)),
    url("assets/people/photos/industrial-project-review.webp");
}

.home-routing .audience-grid h3 {
  color: var(--teal-dark);
  font-size: clamp(0.92rem, 1.05vw, 1.1rem);
  text-transform: uppercase;
}

.home-routing .audience-grid h4 {
  max-width: 360px;
  margin: 7px 0 10px;
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
}

.home-routing .audience-grid p {
  margin: 0;
  font-size: 0.94rem;
}

.home-routing .audience-grid > article > a {
  margin-top: 16px;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: rgba(0, 212, 196, 0.1);
  border: 1px solid rgba(0, 212, 196, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.product-links a:hover {
  background: var(--teal);
}

.audience-card--got::after {
  display: none;
}

.home-proof {
  width: min(100% - 32px, 1480px);
  margin: 0 auto clamp(32px, 4vw, 56px);
  padding: clamp(30px, 4vw, 52px) 0;
  overflow: hidden;
}

.home-proof-heading {
  max-width: 980px;
  margin-bottom: 24px;
}

.home-proof-heading h2 {
  max-width: 900px;
  margin-top: 8px;
  font-size: clamp(1.55rem, 2.35vw, 2.55rem);
  line-height: 1.04;
}

.logo-marquee,
.quote-marquee {
  position: relative;
  overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after,
.quote-marquee::before,
.quote-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  pointer-events: none;
}

.logo-marquee::before,
.quote-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.logo-marquee::after,
.quote-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: proofTicker 92s linear infinite;
}

.logo-track span {
  min-width: 170px;
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 0 22px;
  color: #26313c;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.1);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(11, 13, 16, 0.055);
  font-size: 1.08rem;
  font-weight: 950;
  text-align: center;
}

.quote-marquee {
  display: grid;
  min-height: 146px;
  place-items: center;
  margin-top: 16px;
}

.quote-track {
  position: relative;
  width: min(100%, 720px);
  min-height: 132px;
}

.quote-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 212, 196, 0.12), transparent 44%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.14);
  border-radius: 16px;
}

.quote-track blockquote {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  width: 100%;
  min-height: 132px;
  padding: 24px clamp(24px, 4vw, 44px);
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: 0;
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
  line-height: 1.5;
  text-align: center;
  transform: scale(0.97);
  animation: quoteTextFade 15s ease-in-out infinite;
}

.quote-track--five blockquote {
  animation-name: quoteTextFadeFive;
  animation-duration: 25s;
}

.quote-track blockquote:nth-child(2) {
  animation-delay: 5s;
}

.quote-track blockquote:nth-child(3) {
  animation-delay: 10s;
}

.quote-track blockquote:nth-child(4) {
  animation-delay: 15s;
}

.quote-track blockquote:nth-child(5) {
  animation-delay: 20s;
}

.quote-track blockquote p {
  font-size: 1rem;
}

.quote-track cite {
  margin-top: 14px;
  color: var(--teal);
  font-size: 0.86rem;
}

.site-footer {
  padding-block: clamp(34px, 5vw, 58px);
  padding-inline: max(clamp(24px, 6vw, 88px), calc((100vw - 1480px) / 2 + 24px));
}

.site-footer nav {
  gap: 26px clamp(34px, 4vw, 62px);
}

.site-footer a {
  margin-top: 7px;
  font-size: 0.92rem;
}

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

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

@keyframes quoteTextFade {
  0%,
  8% {
    opacity: 0;
    transform: scale(0.97);
  }

  14%,
  30% {
    opacity: 1;
    transform: scale(1);
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

@keyframes quoteTextFadeFive {
  0%,
  4% {
    opacity: 0;
    transform: scale(0.97);
  }

  7%,
  15% {
    opacity: 1;
    transform: scale(1);
  }

  19%,
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

@media (max-width: 720px) {
  .home-routing {
    padding-block: 28px;
  }

  .home-proof {
    width: calc(100% - 24px);
    padding-block: 28px;
  }

  .logo-track span {
    min-width: 140px;
    min-height: 54px;
    font-size: 0.96rem;
  }

  .audience-visual {
    height: 76px;
  }
}

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

  .quote-track blockquote:first-child {
    opacity: 1;
    transform: none;
  }
}

/* Compact product pages */
.page-section--compact {
  width: min(100% - 32px, 1480px);
  margin-inline: auto;
  padding: clamp(34px, 5vw, 70px) 0;
}

.page-hero--how::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.82), rgba(5, 7, 10, 0.2)),
    url("assets/people/photos/customer-shortlist-review.webp") center / cover no-repeat;
}

.page-hero--insights::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.82), rgba(5, 7, 10, 0.22)),
    url("assets/people/photos/interim-specialist-portrait.webp") center / cover no-repeat;
}

.page-hero--livesearch::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.18)),
    url("assets/people/photos/supplier-opportunity-review.webp") center / cover no-repeat;
}

.page-hero--e-broker::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.18)),
    url("assets/people/photos/consulting-meeting.webp") center / cover no-repeat;
}

.page-hero--vms::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.82), rgba(5, 7, 10, 0.22)),
    url("assets/people/photos/industrial-project-review.webp") center / cover no-repeat;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 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;
}

.story-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 2.8vw, 34px);
  background:
    linear-gradient(145deg, rgba(0, 212, 196, 0.08), transparent 45%),
    #ffffff;
}

.story-card > span,
.metric-card > span {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 12ch;
  margin-top: 34px;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
}

.story-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.story-card .product-links {
  margin-top: auto;
  padding-top: 22px;
}

.flow-strip {
  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;
}

.flow-strip span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #ffffff;
  font-weight: 950;
  text-align: center;
}

.flow-strip--dark {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.12);
}

.flow-strip--dark span {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 212, 196, 0.12), transparent 44%),
    #05070a;
}

.page-testimonials {
  width: min(100% - 32px, 1480px);
  margin: 0 auto clamp(30px, 4vw, 52px);
  padding: clamp(8px, 2vw, 28px) 0;
}

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

.metric-card {
  min-height: 310px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 212, 196, 0.14), transparent 44%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.18);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(11, 13, 16, 0.16);
}

.metric-card > span {
  color: var(--teal);
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
}

.metric-card p {
  margin: 18px 0 0;
  color: #d9e3ea;
  line-height: 1.55;
}

.mini-bars {
  height: 88px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 26px;
}

.mini-bars i {
  flex: 1;
  min-height: 18px;
  background: linear-gradient(180deg, var(--teal), rgba(0, 212, 196, 0.18));
  border-radius: 999px 999px 4px 4px;
}

.mini-line {
  position: relative;
  height: 88px;
  margin-top: 26px;
}

.mini-line::before {
  content: "";
  position: absolute;
  inset: 42px 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 212, 196, 0.18), var(--teal), rgba(0, 212, 196, 0.26));
  border-radius: 999px;
  transform: rotate(-12deg);
}

.mini-line i,
.mini-dots i {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 3px solid var(--teal);
  border-radius: 999px;
}

.mini-line i:nth-child(1) { left: 8%; top: 58%; }
.mini-line i:nth-child(2) { left: 34%; top: 43%; }
.mini-line i:nth-child(3) { left: 64%; top: 31%; }
.mini-line i:nth-child(4) { left: 88%; top: 20%; }

.mini-dots {
  position: relative;
  height: 88px;
  margin-top: 26px;
}

.mini-dots i:nth-child(1) { left: 8%; top: 58%; }
.mini-dots i:nth-child(2) { left: 24%; top: 36%; }
.mini-dots i:nth-child(3) { left: 42%; top: 62%; }
.mini-dots i:nth-child(4) { left: 58%; top: 28%; }
.mini-dots i:nth-child(5) { left: 74%; top: 50%; }
.mini-dots i:nth-child(6) { left: 88%; top: 22%; }

@media (max-width: 1180px) {
  .story-grid,
  .insight-graphs {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .page-section--compact,
  .page-testimonials {
    width: calc(100% - 24px);
  }

  .story-card {
    min-height: 0;
  }

  .story-card h3 {
    max-width: none;
    margin-top: 22px;
  }

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

/* Marketplace visual refinements */
.page-hero--visual {
  align-items: stretch;
}

.page-hero--visual::after {
  display: none;
}

.page-hero--visual .page-visual {
  grid-column: 2;
  grid-row: 1 / span 5;
}

.page-hero--visual p + p {
  margin-top: 10px;
}

.marketplace-process,
.insight-data-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 212, 196, 0.14), transparent 44%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.18);
  border-radius: 18px;
  box-shadow: 0 24px 62px rgba(11, 13, 16, 0.18);
}

.marketplace-process::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(0, 212, 196, 0.24);
  border-radius: 999px;
}

.marketplace-process::after {
  content: "";
  position: absolute;
  inset: 76px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  animation: slowTurn 18s linear infinite;
}

.process-core {
  position: absolute;
  inset: 50%;
  z-index: 2;
  width: 138px;
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--ink);
  background: var(--teal);
  border-radius: 16px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.process-core strong,
.process-core span,
.process-node span,
.process-node strong {
  display: block;
}

.process-core strong {
  font-size: 1.28rem;
  line-height: 1;
}

.process-core span {
  font-size: 0.78rem;
  font-weight: 900;
}

.process-node {
  position: absolute;
  z-index: 2;
  width: 132px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.process-node span {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.process-node strong {
  margin-top: 4px;
  font-size: 0.92rem;
  line-height: 1.15;
}

.process-node--assignment { left: 8%; top: 12%; }
.process-node--scan { right: 8%; top: 16%; }
.process-node--data { right: 10%; bottom: 14%; }
.process-node--match { left: 10%; bottom: 16%; }
.process-node--book { left: 50%; top: 5%; transform: translateX(-50%); }
.process-node--manage { left: 50%; bottom: 6%; transform: translateX(-50%); }

.story-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(0, 212, 196, 0.1);
  border: 1px solid rgba(0, 212, 196, 0.2);
  border-radius: 14px;
}

.story-icon img {
  width: 28px;
  height: 28px;
}

.story-card .story-icon + span {
  margin-top: 0;
}

.story-card h3 {
  margin-top: 18px;
}

.workflow-map {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 28px minmax(120px, 1fr) 28px minmax(120px, 1fr) 28px minmax(120px, 1fr) 28px minmax(120px, 1fr) 28px minmax(120px, 1fr);
  gap: 0;
  align-items: center;
}

.workflow-map article {
  min-height: 178px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(11, 13, 16, 0.055);
}

.workflow-map article span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
}

.workflow-map article strong {
  display: block;
  margin-top: 28px;
  font-size: 1.18rem;
  line-height: 1.1;
}

.workflow-map article p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.workflow-map > i {
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(0, 212, 196, 0.2));
}

.workflow-map > i::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: -3px 0 0 auto;
  background: var(--teal);
  border-radius: 999px;
}

.workflow-note {
  max-width: 840px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.page-inline-cta--manual {
  margin-top: clamp(4px, 1vw, 12px);
  margin-bottom: clamp(20px, 3vw, 42px);
}

.insight-data-visual {
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 24px;
}

.data-pulse {
  position: absolute;
  border: 1px solid rgba(0, 212, 196, 0.26);
  border-radius: 999px;
  animation: dataPulse 4.8s ease-in-out infinite;
}

.data-pulse--one {
  inset: 34px auto auto 42px;
  width: 140px;
  height: 140px;
}

.data-pulse--two {
  right: -46px;
  top: -38px;
  width: 210px;
  height: 210px;
  animation-delay: 1.2s;
}

.data-panel-header {
  position: relative;
  z-index: 1;
}

.data-panel-header span {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.data-panel-header strong {
  display: block;
  max-width: 13ch;
  margin-top: 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.05;
}

.data-signal-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.data-signal-row span {
  padding: 8px 10px;
  color: #d9e3ea;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.data-chart {
  position: relative;
  z-index: 1;
  height: 98px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.data-chart i {
  flex: 1;
  min-height: 22px;
  background: linear-gradient(180deg, var(--teal), rgba(0, 212, 196, 0.12));
  border-radius: 999px 999px 4px 4px;
  animation: barBreathe 3.8s ease-in-out infinite;
}

.data-chart i:nth-child(2n) {
  animation-delay: 0.8s;
}

.data-feedback {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.data-feedback span {
  color: #d9e3ea;
  font-size: 0.9rem;
  line-height: 1.35;
}

.insight-management-visual {
  align-content: stretch;
  gap: 12px;
}

.insight-management-visual .data-panel-header strong {
  max-width: none;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
}

.management-chart {
  position: relative;
  z-index: 1;
  padding: 12px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 212, 196, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(0, 212, 196, 0.18);
  border-radius: 15px;
}

.management-chart svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 2px;
  overflow: visible;
}

.management-chart .chart-line {
  animation: chartPulse 3.4s ease-in-out infinite;
}

.management-chart circle {
  fill: #ffffff;
  stroke: var(--teal);
  stroke-width: 5;
  filter: drop-shadow(0 0 10px rgba(0, 212, 196, 0.8));
  animation: pointPulse 3.4s ease-in-out infinite;
}

.management-chart circle:nth-of-type(2n) {
  animation-delay: 0.6s;
}

.chart-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.chart-caption span {
  color: #c9d7dd;
  font-size: 0.78rem;
  font-weight: 900;
}

.chart-caption strong {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 950;
}

.management-kpis {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.management-kpis span {
  display: grid;
  gap: 3px;
  min-height: 56px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
}

.management-kpis strong {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.15;
}

.management-kpis small {
  color: #c9d7dd;
  font-size: 0.76rem;
  line-height: 1.35;
}

.insight-visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 10px;
}

.management-bars {
  height: 118px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.management-bars span {
  flex: 1;
  height: var(--bar);
  min-height: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--teal) 34%, rgba(0, 212, 196, 0.14) 100%);
  border-radius: 999px 999px 5px 5px;
  box-shadow: 0 0 18px rgba(0, 212, 196, 0.18);
  transform-origin: bottom;
  animation: barBreathe 3.2s ease-in-out infinite;
}

.management-bars span:nth-child(2n) {
  animation-delay: 0.45s;
}

.management-bars span:nth-child(3n) {
  animation-delay: 0.9s;
}

.capability-orbit {
  position: relative;
  min-height: 118px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(0, 212, 196, 0.14);
  border-radius: 14px;
  overflow: hidden;
}

.capability-orbit::before,
.capability-orbit::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(0, 212, 196, 0.2);
  border-radius: 999px;
}

.capability-orbit::after {
  inset: 38px;
  border-style: dashed;
  animation: slowTurn 14s linear infinite;
}

.capability-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(0, 212, 196, 0.16), 0 0 16px rgba(0, 212, 196, 0.8);
  animation: signalBlink 2.8s ease-in-out infinite;
}

.capability-orbit span:nth-child(1) { left: 22px; top: 52px; }
.capability-orbit span:nth-child(2) { right: 28px; top: 30px; animation-delay: 0.55s; }
.capability-orbit span:nth-child(3) { right: 38px; bottom: 28px; animation-delay: 1.1s; }

.capability-orbit strong {
  position: relative;
  z-index: 1;
  color: var(--teal);
  font-size: 0.92rem;
}

@keyframes chartPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(0, 212, 196, 0.32));
  }

  50% {
    filter: drop-shadow(0 0 16px rgba(0, 212, 196, 0.76));
  }
}

@keyframes pointPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.quality-mark,
.shortlist-preview,
.live-radar {
  margin-top: 24px;
}

.quality-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(0, 212, 196, 0.26);
  border-radius: 999px;
}

.quality-mark i {
  width: 48px;
  height: 26px;
  border-left: 7px solid var(--teal);
  border-bottom: 7px solid var(--teal);
  transform: rotate(-45deg) translate(4px, -2px);
}

.shortlist-preview {
  display: grid;
  gap: 10px;
}

.shortlist-preview i {
  display: block;
  height: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.shortlist-preview b {
  display: block;
  height: 100%;
  width: 82%;
  background: linear-gradient(90deg, var(--teal), rgba(0, 212, 196, 0.2));
  border-radius: inherit;
}

.shortlist-preview i:nth-child(2) b {
  width: 67%;
}

.live-radar {
  position: relative;
  width: 120px;
  height: 96px;
}

.live-radar::before,
.live-radar::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0, 212, 196, 0.22);
  border-radius: 999px;
}

.live-radar::after {
  inset: 28px;
}

.live-radar i {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(0, 212, 196, 0.12);
  animation: signalBlink 2.8s ease-in-out infinite;
}

.live-radar i:nth-child(1) { left: 18px; top: 46px; }
.live-radar i:nth-child(2) { left: 54px; top: 18px; animation-delay: 0.4s; }
.live-radar i:nth-child(3) { right: 18px; top: 40px; animation-delay: 0.8s; }
.live-radar i:nth-child(4) { left: 58px; bottom: 14px; animation-delay: 1.2s; }

@keyframes slowTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dataPulse {
  0%, 100% {
    opacity: 0.32;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

@keyframes barBreathe {
  0%, 100% {
    opacity: 0.72;
    transform: scaleY(0.92);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes signalBlink {
  0%, 100% {
    opacity: 0.48;
    transform: scale(0.86);
  }

  45% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .page-hero--visual .page-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .workflow-map {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .workflow-map > i {
    width: 2px;
    height: 22px;
    margin-inline: auto;
  }

  .workflow-map > i::after {
    margin: auto 0 -4px -3px;
  }
}

@media (max-width: 720px) {
  .marketplace-process,
  .insight-data-visual {
    min-height: 340px;
  }

  .insight-visual-grid,
  .management-kpis {
    grid-template-columns: 1fr;
  }

  .capability-orbit {
    min-height: 96px;
  }

  .process-node {
    width: 116px;
    padding: 10px;
  }

  .process-node--assignment { left: 4%; top: 12%; }
  .process-node--scan { right: 4%; top: 14%; }
  .process-node--data { right: 4%; bottom: 12%; }
  .process-node--match { left: 4%; bottom: 14%; }
}

/* Current refinement: tighter first views and cleaner product cards */
.home-hero {
  min-height: clamp(560px, 72vh, 720px);
  padding: clamp(34px, 4.8vw, 68px) clamp(28px, 5vw, 76px);
}

.home-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.95rem, 5.1vw, 5.45rem);
  line-height: 0.96;
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.55;
}

.home-hero .hero-actions {
  margin-top: 24px;
}

.page-hero {
  min-height: 300px;
  padding: clamp(26px, 3.4vw, 46px) clamp(26px, 4vw, 58px);
}

.page-hero h1 {
  max-width: 720px;
  font-size: clamp(2rem, 3.25vw, 3.55rem);
  line-height: 1.02;
}

.page-hero p {
  max-width: 760px;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
}

.page-hero::after {
  height: 210px;
}

.story-icon,
.story-card > span,
.workflow-map article span {
  display: none;
}

.story-card {
  min-height: 250px;
  padding: clamp(24px, 2.7vw, 34px);
}

.story-card h3,
.story-card .story-icon + span + h3 {
  margin-top: 0;
}

.workflow-map article {
  min-height: 156px;
}

.workflow-map article strong {
  margin-top: 0;
}

.workflow-map--supplier article {
  background: linear-gradient(180deg, #ffffff, #f6fbfa);
}

.sourcing-engine-visual {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(220px, 0.65fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(20px, 3vw, 34px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 212, 196, 0.18), transparent 42%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.2);
  border-radius: 20px;
  box-shadow: 0 24px 68px rgba(11, 13, 16, 0.14);
}

.complex-stack,
.outcome-stack {
  display: grid;
  gap: 10px;
}

.complex-stack span {
  display: block;
  padding: 12px 14px;
  color: #d9e3ea;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  font-weight: 850;
}

.engine-core {
  display: grid;
  place-content: center;
  min-height: 260px;
  padding: 26px;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.44), transparent 48%),
    var(--teal);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(0, 212, 196, 0.3), 0 22px 56px rgba(0, 212, 196, 0.18);
}

.engine-core strong {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.engine-core span {
  margin-top: 10px;
  color: rgba(11, 13, 16, 0.72);
  font-weight: 950;
}

.outcome-stack article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.outcome-stack strong,
.outcome-stack span {
  display: block;
}

.outcome-stack strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.outcome-stack span {
  margin-top: 6px;
  color: #d9e3ea;
  line-height: 1.45;
}

.vms-control-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 212, 196, 0.13), transparent 44%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.18);
  border-radius: 20px;
}

.vms-control-panel article {
  min-height: 210px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.vms-control-panel span {
  display: inline-flex;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.vms-control-panel strong {
  display: block;
  margin-top: 26px;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.5vw, 1.45rem);
  line-height: 1.08;
}

.vms-control-panel p {
  margin: 12px 0 0;
  color: #d9e3ea;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .home-hero {
    min-height: auto;
  }

  .sourcing-engine-visual,
  .vms-control-panel {
    grid-template-columns: 1fr 1fr;
  }

  .engine-core {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .home-hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .sourcing-engine-visual,
  .vms-control-panel {
    grid-template-columns: 1fr;
  }

  .engine-core {
    min-height: 180px;
  }

.vms-control-panel article {
    min-height: 0;
  }
}

/* Single-page navigation, pricing table and assistant cue */
.main-nav > .nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 4px;
}

.pricing-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(11, 13, 16, 0.06);
}

.page-hero--pricing {
  min-height: 230px;
  margin-top: 22px;
  padding-block: clamp(24px, 3vw, 38px);
}

.page-hero--pricing h1 {
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.page-hero--pricing p {
  max-width: 720px;
}

.page-hero-actions {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.home-proof-heading p:not(.eyebrow) {
  max-width: 880px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.62;
}

.pricing-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  vertical-align: top;
  padding: 18px;
  border-bottom: 1px solid rgba(107, 114, 128, 0.16);
}

.pricing-table thead th {
  color: #26313c;
  background: #f6fbfa;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-table thead th span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: none;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody th {
  width: 28%;
}

.pricing-table a {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
  text-decoration: none;
}

.pricing-table a:hover {
  color: var(--teal-dark);
}

.pricing-table span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-table td strong {
  display: inline-flex;
  min-width: 118px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(11, 13, 16, 0.05);
  font-size: 0.86rem;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pricing-table .price-link {
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}

.pricing-table .price-link:hover strong {
  transform: translateY(-1px);
  border-color: rgba(0, 212, 196, 0.46);
  box-shadow: 0 16px 34px rgba(0, 212, 196, 0.14);
}

.pricing-table .price-cell--free strong {
  color: #031211;
  background: linear-gradient(135deg, var(--teal), #baf7ef);
  border-color: rgba(0, 212, 196, 0.48);
  box-shadow: 0 14px 34px rgba(0, 212, 196, 0.22);
}

.pricing-table .price-cell--action strong {
  color: #ffffff;
  background: #05070a;
  border-color: rgba(5, 7, 10, 0.86);
}

.pricing-table .price-cell--muted strong {
  color: rgba(38, 49, 60, 0.72);
  background: #f4f7f7;
  border-color: rgba(107, 114, 128, 0.18);
  box-shadow: none;
}

.pricing-table .price-cell span {
  max-width: 160px;
}

.pricing-table .price-link span {
  color: var(--muted);
}

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

.investor-signal-grid article,
.about-timeline article {
  min-height: 230px;
  padding: clamp(24px, 2.6vw, 34px);
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(11, 13, 16, 0.055);
}

.investor-signal-grid span,
.about-timeline span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.investor-signal-grid strong,
.about-timeline strong {
  display: block;
  margin-top: 26px;
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  line-height: 1.08;
}

.investor-signal-grid p,
.about-timeline p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-timeline--deep article {
  min-height: 360px;
}

.about-timeline--deep p + p {
  margin-top: 12px;
}

.investor-snapshot,
.investor-product-stack {
  display: grid;
  gap: 14px;
}

.investor-reach-band {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.investor-reach-band article {
  min-height: 168px;
  padding: clamp(22px, 2.2vw, 30px);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 212, 196, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(0, 212, 196, 0.12), transparent 48%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(11, 13, 16, 0.1);
}

.investor-reach-band span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.investor-reach-band strong {
  display: block;
  margin-top: 20px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.9;
}

.investor-reach-band p {
  max-width: 32rem;
  margin: 18px 0 0;
  color: #d9e3ea;
  line-height: 1.45;
}

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

.investor-snapshot article {
  min-height: 260px;
  padding: clamp(22px, 2.4vw, 30px);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 212, 196, 0.12), transparent 44%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(11, 13, 16, 0.1);
}

.investor-snapshot span,
.investor-product-stack span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.investor-snapshot strong,
.investor-product-stack strong {
  display: block;
  margin-top: 32px;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  line-height: 1.08;
}

.investor-snapshot p,
.investor-product-stack p {
  margin: 12px 0 0;
  color: #d9e3ea;
  line-height: 1.52;
}

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

.investor-product-stack a {
  min-height: 230px;
  padding: clamp(22px, 2.4vw, 30px);
  color: #ffffff;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(0, 212, 196, 0.1), transparent 48%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.16);
  border-radius: 16px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.investor-product-stack a:hover {
  border-color: rgba(0, 212, 196, 0.42);
  box-shadow: 0 18px 44px rgba(0, 212, 196, 0.12);
  transform: translateY(-2px);
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 80;
  width: min(980px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 18px;
  align-items: center;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(5, 7, 10, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.cookie-consent__copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.cookie-consent__copy p:not(.eyebrow) {
  margin: 5px 0 0;
  font-size: 0.82rem;
  line-height: 1.42;
}

.cookie-consent__copy p:not(.eyebrow),
.cookie-option small {
  color: var(--muted);
}

.cookie-consent__copy a {
  display: inline-flex;
  margin-top: 5px;
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 0.8rem;
  text-decoration: none;
}

.cookie-consent__options {
  grid-column: 1 / -1;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.cookie-consent--preferences .cookie-consent__options {
  display: grid;
}

.cookie-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 9px 10px;
  background: #f8fafb;
  border: 1px solid rgba(11, 13, 16, 0.1);
  border-radius: 12px;
  cursor: pointer;
}

.cookie-option input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.cookie-option small {
  margin-top: 2px;
  font-size: 0.72rem;
  line-height: 1.3;
}

.cookie-option--locked {
  cursor: default;
  opacity: 0.76;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.cookie-consent__actions .button {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.86rem;
}

.cookie-save-button {
  display: none;
}

.cookie-consent--preferences .cookie-save-button {
  display: inline-flex;
}

@media (max-width: 1180px) {
  .investor-signal-grid,
  .about-timeline,
  .acquisition-timeline,
  .investor-reach-band,
  .policy-layout,
  .investor-snapshot,
  .investor-product-stack {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav > .nav-link {
    min-height: 42px;
    padding: 0;
    border-top: 1px solid rgba(107, 114, 128, 0.16);
  }

  .investor-signal-grid,
  .about-timeline,
  .acquisition-timeline,
  .investor-reach-band,
  .policy-layout,
  .investor-snapshot,
  .investor-product-stack {
    grid-template-columns: 1fr;
  }

  .acquisition-future {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }

  .pricing-table-wrap {
    border-radius: 14px;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    left: 50%;
    right: auto;
    bottom: 12px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    padding: 14px;
    overflow: auto;
  }

  .cookie-consent__options {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__actions .button {
    flex: 1 1 100%;
  }

}

/* Investor narrative */
.page-hero--investors::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.18)),
    url("assets/people/photos/office-corridor-consultants.webp") center / cover no-repeat;
}

.market-evolution {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(11, 13, 16, 0.06);
}

.acquisition-story {
  padding-bottom: clamp(18px, 3vw, 36px);
}

.acquisition-timeline {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px auto 0;
}

.acquisition-step {
  position: relative;
  min-height: 360px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(0, 212, 196, 0.08), transparent 48%),
    #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(11, 13, 16, 0.06);
}

.acquisition-step::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -24px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 212, 196, 0.2), var(--teal));
  box-shadow: 0 0 18px rgba(0, 212, 196, 0.38);
}

.acquisition-step:last-child::after {
  display: none;
}

.acquisition-step > span {
  display: block;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.acquisition-step .legacy-logo {
  width: 178px;
  margin-bottom: 24px;
}

.acquisition-step img {
  width: 164px;
  height: auto;
  margin-bottom: 28px;
  padding: 8px 12px;
  background: #05070a;
  border-radius: 6px;
}

.acquisition-step h3 {
  margin: 0;
  font-size: clamp(1.42rem, 2vw, 2rem);
}

.acquisition-step p,
.acquisition-future p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.product-chip-row a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: #031211;
  background: rgba(0, 212, 196, 0.13);
  border: 1px solid rgba(0, 212, 196, 0.28);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
}

.acquisition-step--skillriq {
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 212, 196, 0.22), transparent 22%),
    linear-gradient(135deg, #031211, #05070a);
  border-color: rgba(0, 212, 196, 0.28);
}

.acquisition-step--skillriq h3,
.acquisition-step--skillriq > span {
  color: #ffffff;
}

.acquisition-step--skillriq p {
  color: rgba(217, 227, 234, 0.82);
}

.acquisition-future {
  width: min(100%, 1120px);
  margin: 16px auto 0;
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 20%, rgba(0, 212, 196, 0.16), transparent 24%),
    linear-gradient(135deg, #031211, #05070a);
  border: 1px solid rgba(0, 212, 196, 0.22);
  border-radius: 18px;
}

.acquisition-future strong {
  display: block;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.12;
}

.acquisition-future p {
  color: rgba(217, 227, 234, 0.82);
}

.acquisition-future .button {
  margin-top: 22px;
}

.expansion-map {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(0, 212, 196, 0.2);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 44%, rgba(0, 212, 196, 0.2), transparent 14%),
    radial-gradient(circle at 65% 62%, rgba(255, 255, 255, 0.06), transparent 24%),
    rgba(255, 255, 255, 0.035);
}

.expansion-map::before,
.expansion-map::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(0, 212, 196, 0.22);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: ecosystemPulse 4.8s ease-in-out infinite;
}

.expansion-map::after {
  width: 320px;
  height: 320px;
  animation-delay: 1.1s;
}

.map-node,
.skill-orbit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.map-node {
  color: #031211;
  background: linear-gradient(135deg, var(--teal), #bcfff6);
  box-shadow: 0 0 28px rgba(0, 212, 196, 0.22);
}

.map-node--sweden {
  top: 42%;
  left: 36%;
}

.map-node--nordics {
  top: 24%;
  left: 56%;
}

.map-node--europe {
  top: 60%;
  left: 62%;
}

.skill-orbit {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: skillFloat 5.8s ease-in-out infinite;
}

.skill-orbit--tech {
  top: 14%;
  left: 14%;
}

.skill-orbit--eng {
  right: 10%;
  top: 38%;
  animation-delay: 0.7s;
}

.skill-orbit--hr {
  left: 15%;
  bottom: 18%;
  animation-delay: 1.4s;
}

.skill-orbit--finance {
  right: 18%;
  bottom: 13%;
  animation-delay: 2.1s;
}

@keyframes ecosystemPulse {
  0% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(0.82);
  }

  50% {
    opacity: 0.9;
  }

  100% {
    opacity: 0.12;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes skillFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .expansion-map::before,
  .expansion-map::after,
  .skill-orbit {
    animation: none;
  }
}

.market-evolution article {
  min-height: 280px;
  padding: clamp(24px, 2.6vw, 34px);
  border-right: 1px solid rgba(107, 114, 128, 0.16);
}

.market-evolution article:last-child {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 212, 196, 0.22), transparent 48%),
    #05070a;
  border-right: 0;
}

.market-evolution span,
.investor-quote-grid cite {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.market-evolution article:last-child span {
  color: var(--teal);
}

.market-evolution strong {
  display: block;
  margin-top: 42px;
  font-size: clamp(1.24rem, 1.7vw, 1.65rem);
  line-height: 1.08;
}

.market-evolution p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.market-evolution article:last-child p {
  color: #d9e3ea;
}

.investor-human-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.investor-human-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.9rem);
  line-height: 1.03;
}

.investor-human-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.investor-human-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(11, 13, 16, 0.09);
}

.investor-human-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.investor-human-card blockquote {
  margin: 0;
  padding: 24px;
  border: 0;
  box-shadow: none;
}

.investor-human-card blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  font-weight: 850;
  line-height: 1.35;
}

.investor-human-card cite {
  display: block;
  margin-top: 16px;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 950;
}

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

.investor-quote-grid blockquote {
  min-height: 250px;
  margin: 0;
  padding: clamp(24px, 2.6vw, 34px);
}

.investor-quote-grid p {
  margin: 0;
  font-size: clamp(1.02rem, 1.24vw, 1.18rem);
  font-weight: 800;
  line-height: 1.48;
}

.investor-quote-grid cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
}

@media (max-width: 1180px) {
  .market-evolution,
  .investor-quote-grid,
  .investor-human-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .market-evolution,
  .investor-quote-grid,
  .investor-human-section {
    grid-template-columns: 1fr;
  }

  .market-evolution article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(107, 114, 128, 0.16);
  }

  .market-evolution article:last-child {
    border-bottom: 0;
  }
}

/* Homepage live marketplace refinement */
.activity-bar {
  margin-top: 8px;
  padding-block: 10px;
}

.activity-bar .activity-track {
  gap: 24px;
  animation-duration: 60s;
}

.activity-item {
  --activity-color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.activity-track .activity-item::before {
  width: 8px;
  height: 8px;
  margin-right: 0;
  background: var(--activity-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--activity-color) 18%, transparent);
}

.activity-item--assignment {
  --activity-color: var(--teal);
}

.activity-item--talent {
  --activity-color: #86e8ff;
}

.activity-item--company {
  --activity-color: #ffbd5a;
}

.home-hero {
  min-height: clamp(500px, 64vh, 630px);
  padding: clamp(30px, 4.2vw, 58px) clamp(28px, 5vw, 70px);
}

.home-intelligence-card {
  min-height: 350px;
  padding: clamp(18px, 2.4vw, 28px);
}

.home-intelligence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 84% 20%, rgba(0, 212, 196, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.9), rgba(5, 7, 10, 0.64)),
    url("assets/people/photos/interim-specialist-portrait.webp") right center / auto 105% no-repeat;
  opacity: 0.42;
}

.home-intelligence-card::after {
  width: 300px;
  height: 300px;
  border-width: 34px;
}

.home-intelligence-card .mini-panel-header {
  position: relative;
  z-index: 2;
}

.home-intelligence-card .mini-panel-header strong {
  max-width: none;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.live-match-visual {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(130px, 0.62fr) minmax(220px, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.assignment-strip,
.candidate-window,
.match-verdict {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
}

.assignment-strip {
  display: grid;
  align-content: center;
  min-height: 214px;
  padding: 18px;
}

.assignment-strip span,
.assignment-strip small,
.match-verdict span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.assignment-strip strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.55vw, 1.36rem);
  line-height: 1.08;
}

.need-cycle {
  position: relative;
  min-height: 58px;
  margin-top: 10px;
  overflow: hidden;
}

.need-cycle strong {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: needCycle 16s ease-in-out infinite;
}

.need-cycle strong:nth-child(2) {
  animation-delay: 4s;
}

.need-cycle strong:nth-child(3) {
  animation-delay: 8s;
}

.need-cycle strong:nth-child(4) {
  animation-delay: 12s;
}

.assignment-strip small {
  margin-top: 22px;
  color: #d9e3ea;
  text-transform: none;
}

.candidate-window {
  height: 214px;
  overflow: hidden;
  padding: 10px;
}

.candidate-rail {
  display: grid;
  gap: 10px;
  animation: candidateScroll 13s ease-in-out infinite;
}

.candidate-card {
  min-height: 66px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.candidate-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background:
    linear-gradient(135deg, #ffffff, var(--teal));
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.candidate-card strong,
.candidate-card small {
  display: block;
}

.candidate-card strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.05;
}

.candidate-card small {
  margin-top: 4px;
  color: #c9d7dd;
  font-size: 0.82rem;
}

.candidate-card b {
  color: var(--teal);
  font-size: 1.08rem;
}

.match-lines {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 16px;
  align-items: center;
}

.match-lines span {
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.match-lines span::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: scanLine 3.2s ease-in-out infinite;
}

.match-lines span:nth-child(2)::after {
  animation-delay: 0.45s;
}

.match-lines span:nth-child(3)::after {
  animation-delay: 0.9s;
}

.match-verdict {
  grid-column: 1 / -1;
  padding: 14px 16px;
}

.match-verdict strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 1rem;
}

@keyframes candidateScroll {
  0%,
  18% {
    transform: translateY(0);
  }

  32%,
  48% {
    transform: translateY(-76px);
  }

  62%,
  78% {
    transform: translateY(-152px);
  }

  100% {
    transform: translateY(-228px);
  }
}

@keyframes scanLine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(260%);
  }
}

@keyframes needCycle {
  0%,
  6% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  12%,
  24% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  30%,
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .candidate-rail,
  .match-lines span::after,
  .need-cycle strong {
    animation: none;
  }

  .need-cycle strong:first-child {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .home-intelligence-card {
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .activity-bar {
    gap: 12px;
  }

  .activity-bar .activity-track {
    animation-duration: 47s;
  }

  .home-hero {
    padding: 26px 20px;
  }

  .live-match-visual {
    grid-template-columns: 1fr;
  }

  .assignment-strip {
    min-height: 128px;
  }

  .candidate-window {
    height: 210px;
  }
}

/* How it works hub refinement */
.marketplace-hub-visual {
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 212, 196, 0.22), transparent 25%),
    radial-gradient(circle at 26% 22%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(145deg, rgba(0, 212, 196, 0.1), transparent 48%),
    #05070a;
}

.marketplace-hub-visual::before {
  inset: 54px 58px;
  border-color: rgba(0, 212, 196, 0.2);
}

.marketplace-hub-visual::after {
  inset: 94px 112px;
  border-color: rgba(255, 255, 255, 0.16);
  animation-duration: 22s;
}

.marketplace-hub-visual .process-core {
  width: 154px;
  min-height: 104px;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff, #c9fffb);
  border: 1px solid rgba(0, 212, 196, 0.55);
  box-shadow:
    0 0 0 8px rgba(0, 212, 196, 0.08),
    0 18px 44px rgba(0, 212, 196, 0.24);
}

.marketplace-hub-visual .process-core img {
  width: 116px;
  height: auto;
}

.marketplace-hub-visual .process-core span {
  margin-top: 6px;
  color: rgba(5, 7, 10, 0.72);
}

.process-zone {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  color: var(--teal);
  background: rgba(0, 212, 196, 0.08);
  border: 1px solid rgba(0, 212, 196, 0.18);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.process-zone--demand {
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
}

.process-zone--supplier {
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
}

.marketplace-hub-visual .process-node {
  width: 126px;
  min-height: 66px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.marketplace-hub-visual .process-node strong {
  font-size: 0.88rem;
}

.marketplace-hub-visual .process-node--assignment { left: 7%; top: 23%; }
.marketplace-hub-visual .process-node--scan { left: 32%; top: 13%; }
.marketplace-hub-visual .process-node--data { right: 31%; top: 13%; }
.marketplace-hub-visual .process-node--quality { right: 7%; top: 23%; }
.marketplace-hub-visual .process-node--supplier { right: 7%; bottom: 23%; }
.marketplace-hub-visual .process-node--visibility { right: 30%; bottom: 12%; }
.marketplace-hub-visual .process-node--upskill { left: 30%; bottom: 12%; }
.marketplace-hub-visual .process-node--index { left: 7%; bottom: 23%; }
.marketplace-hub-visual .process-node--broker {
  left: 50%;
  top: 71%;
  width: 154px;
  transform: translateX(-50%);
}

.market-flow {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 196, 0.92), transparent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 212, 196, 0.36);
  opacity: 0.72;
}

.market-flow::after {
  content: "";
  position: absolute;
  right: 14%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 212, 196, 0.16), 0 0 16px rgba(0, 212, 196, 0.85);
  transform: translateY(-50%);
  animation: hubSignal 2.8s ease-in-out infinite;
}

.market-flow--demand-one {
  left: 20%;
  top: 36%;
  width: 34%;
  transform: rotate(12deg);
}

.market-flow--demand-two {
  right: 20%;
  top: 36%;
  width: 34%;
  transform: rotate(-12deg);
  animation-delay: 0.35s;
}

.market-flow--supplier-one {
  left: 20%;
  bottom: 34%;
  width: 34%;
  transform: rotate(-12deg);
}

.market-flow--supplier-two {
  right: 20%;
  bottom: 34%;
  width: 34%;
  transform: rotate(12deg);
}

.market-flow--broker-one {
  left: 50%;
  top: 63%;
  width: 20%;
  transform: translateX(-50%) rotate(90deg);
}

.market-flow--supplier-one::after,
.market-flow--supplier-two::after {
  animation-delay: 0.7s;
}

.market-flow--broker-one::after {
  animation-delay: 1.05s;
}

.dual-workflow {
  display: grid;
  gap: 18px;
}

.workflow-lane {
  display: grid;
  gap: 12px;
}

.workflow-lane-label {
  width: fit-content;
  padding: 7px 11px;
  color: var(--teal-dark);
  background: rgba(0, 212, 196, 0.1);
  border: 1px solid rgba(0, 212, 196, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.workflow-lane-label::after {
  content: "left to right";
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding-left: 10px;
  color: var(--ink);
  border-left: 1px solid rgba(0, 141, 132, 0.22);
  font-size: 0.66rem;
  letter-spacing: 0;
  text-transform: none;
}

.workflow-lane--supplier .workflow-lane-label {
  margin-left: auto;
}

.workflow-lane--supplier .workflow-lane-label::after {
  content: "right to left";
}

.workflow-lane--supplier .workflow-map {
  direction: rtl;
}

.workflow-lane--supplier .workflow-map article {
  direction: ltr;
}

.workflow-lane--supplier .workflow-map > i {
  background: linear-gradient(270deg, var(--teal), rgba(0, 212, 196, 0.2));
}

.workflow-lane--supplier .workflow-map > i::after {
  margin: -3px auto 0 0;
}

.workflow-lane .workflow-map article:first-child,
.workflow-lane--supplier .workflow-map article:first-child {
  border-color: rgba(0, 212, 196, 0.42);
  box-shadow: 0 18px 40px rgba(0, 212, 196, 0.1);
}

@keyframes hubSignal {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(0.82);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.18);
  }
}

@media (max-width: 1180px) {
  .marketplace-hub-visual .process-node--assignment { left: 5%; top: 23%; }
  .marketplace-hub-visual .process-node--scan { left: 31%; top: 12%; }
  .marketplace-hub-visual .process-node--data { right: 31%; top: 12%; }
  .marketplace-hub-visual .process-node--quality { right: 5%; top: 23%; }
  .marketplace-hub-visual .process-node--supplier { right: 5%; bottom: 23%; }
  .marketplace-hub-visual .process-node--visibility { right: 29%; bottom: 12%; }
  .marketplace-hub-visual .process-node--upskill { left: 29%; bottom: 12%; }
  .marketplace-hub-visual .process-node--index { left: 5%; bottom: 23%; }
}

@media (max-width: 720px) {
  .marketplace-hub-visual {
    min-height: 430px;
  }

  .marketplace-hub-visual::before,
  .marketplace-hub-visual::after,
  .market-flow {
    opacity: 0.45;
  }

  .marketplace-hub-visual .process-core {
    width: 132px;
    min-height: 88px;
  }

  .marketplace-hub-visual .process-core img {
    width: 98px;
  }

  .marketplace-hub-visual .process-node {
    width: 112px;
    min-height: 58px;
    padding: 9px;
  }

  .marketplace-hub-visual .process-node strong {
    font-size: 0.78rem;
  }

  .marketplace-hub-visual .process-node--assignment { left: 3%; top: 22%; }
  .marketplace-hub-visual .process-node--scan { left: 35%; top: 11%; }
  .marketplace-hub-visual .process-node--data { right: 3%; top: 22%; }
  .marketplace-hub-visual .process-node--quality { display: none; }
  .marketplace-hub-visual .process-node--supplier { right: 3%; bottom: 22%; }
  .marketplace-hub-visual .process-node--visibility { left: 35%; bottom: 11%; }
  .marketplace-hub-visual .process-node--upskill { left: 3%; bottom: 22%; }
  .marketplace-hub-visual .process-node--index { display: none; }
  .marketplace-hub-visual .process-node--broker {
    top: 66%;
    width: 130px;
  }

  .workflow-lane--supplier .workflow-lane-label {
    margin-left: 0;
  }

  .workflow-lane-label::after,
  .workflow-lane--supplier .workflow-lane-label::after {
    content: "top to bottom";
  }

  .workflow-lane--supplier .workflow-map {
    direction: ltr;
  }
}

/* Cleaner SQ hub visual */
.page-hero--visual .marketplace-hub-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 5;
  min-height: 360px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 49% 50%, rgba(0, 212, 196, 0.2), transparent 18%),
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.07), transparent 19%),
    linear-gradient(145deg, rgba(0, 212, 196, 0.11), transparent 46%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 62px rgba(11, 13, 16, 0.18);
}

.page-hero--visual .marketplace-hub-visual::before,
.page-hero--visual .marketplace-hub-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.page-hero--visual .marketplace-hub-visual::before {
  right: -180px;
  bottom: -210px;
  width: 440px;
  height: 440px;
  border: 44px solid rgba(0, 212, 196, 0.17);
  box-shadow: inset 0 0 0 36px rgba(0, 212, 196, 0.08);
}

.page-hero--visual .marketplace-hub-visual::after {
  left: 50%;
  top: 50%;
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  transform: translate(-50%, -50%);
  animation: slowTurn 24s linear infinite;
}

.hub-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hub-path {
  fill: none;
  stroke: rgba(0, 212, 196, 0.82);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 10 14;
  filter: drop-shadow(0 0 7px rgba(0, 212, 196, 0.45));
  animation: hubFlow 4.8s linear infinite;
}

.hub-path--output {
  stroke: rgba(255, 255, 255, 0.46);
  animation-duration: 6.2s;
  animation-direction: reverse;
}

.hub-pulse {
  fill: none;
  stroke: rgba(0, 212, 196, 0.34);
  stroke-width: 1.5;
  transform-origin: center;
  animation: hubPulse 3.6s ease-in-out infinite;
}

.hub-pulse--two {
  animation-delay: 0.9s;
}

.hub-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
}

.hub-core img {
  width: 124px;
  height: 124px;
  object-fit: contain;
  border-radius: 26px;
  box-shadow:
    0 0 0 8px rgba(0, 212, 196, 0.09),
    0 20px 52px rgba(0, 212, 196, 0.22);
}

.hub-core span {
  color: #dffefb;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hub-input,
.hub-output {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hub-input {
  width: 148px;
  padding: 13px 14px;
}

.hub-input span {
  display: block;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hub-input strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.1;
}

.hub-input--demand {
  left: 7%;
  top: 15%;
}

.hub-input--supply {
  left: 7%;
  bottom: 15%;
}

.hub-input--broker {
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
}

.hub-output {
  right: 7%;
  width: 136px;
  padding: 10px 12px;
  color: #e9fbf9;
  font-size: 0.86rem;
  font-weight: 950;
}

.hub-output::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 212, 196, 0.13);
}

.hub-output--search { top: 9%; }
.hub-output--data { top: 27%; }
.hub-output--quality { top: 45%; }
.hub-output--visibility { top: 63%; }
.hub-output--workflow { top: 81%; }

@keyframes hubFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -48;
  }
}

@keyframes hubPulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hub-path,
  .hub-pulse,
  .page-hero--visual .marketplace-hub-visual::after {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .page-hero--visual .marketplace-hub-visual {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .page-hero--visual .marketplace-hub-visual {
    min-height: 430px;
  }

  .hub-core img {
    width: 96px;
    height: 96px;
    border-radius: 21px;
  }

  .hub-input {
    left: 5%;
    width: 124px;
    padding: 10px;
  }

  .hub-input--demand {
    top: 14%;
  }

  .hub-input--supply {
    bottom: 14%;
  }

  .hub-output {
    right: 5%;
    width: 116px;
    padding: 8px 9px;
    font-size: 0.74rem;
  }
}

/* Got Skills supply-side page */
.page-hero--got-skills {
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 212, 196, 0.11), transparent 24%),
    linear-gradient(180deg, #ffffff, #f7fbfa);
}

.got-skills-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 212, 196, 0.2), transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(0, 212, 196, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(0, 212, 196, 0.12), transparent 42%),
    #05070a;
  border: 1px solid rgba(0, 212, 196, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 62px rgba(11, 13, 16, 0.18);
}

.got-skills-visual::before,
.got-skills-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.got-skills-visual::before {
  inset: 48px 78px;
  border: 1px solid rgba(0, 212, 196, 0.2);
  animation: gotOrbitPulse 5.2s ease-in-out infinite;
}

.got-skills-visual::after {
  right: -170px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 42px solid rgba(0, 212, 196, 0.16);
  box-shadow: inset 0 0 0 34px rgba(0, 212, 196, 0.08);
}

.got-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
}

.got-core img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 24px;
  box-shadow:
    0 0 0 8px rgba(0, 212, 196, 0.09),
    0 20px 52px rgba(0, 212, 196, 0.22);
  animation: gotCorePulse 3.6s ease-in-out infinite;
}

.got-core span {
  color: #dffefb;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.got-profile,
.got-opportunities {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.got-profile {
  width: 178px;
  padding: 13px 14px;
  animation: gotPanelFloat 5.6s ease-in-out infinite;
}

.got-profile span,
.got-opportunities span {
  display: block;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.got-profile strong,
.got-profile small {
  display: block;
}

.got-profile strong {
  margin-top: 5px;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.12;
}

.got-profile small {
  margin-top: 7px;
  color: #c9d7dd;
  font-size: 0.78rem;
}

.got-profile--company {
  left: 7%;
  top: 13%;
}

.got-profile--freelance {
  left: 7%;
  bottom: 12%;
  animation-delay: 0.7s;
}

.got-profile--rising {
  right: 7%;
  top: 13%;
  animation-delay: 1.25s;
}

.got-opportunities {
  right: 7%;
  bottom: 12%;
  width: 180px;
  display: grid;
  gap: 8px;
  padding: 14px;
  animation: gotPanelFloat 5.6s ease-in-out infinite;
  animation-delay: 1.7s;
}

.got-opportunities strong {
  display: block;
  color: #ffffff;
  font-size: 0.86rem;
}

.got-opportunities strong::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 212, 196, 0.13);
}

.got-signal {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 196, 0.9), transparent);
  border-radius: 999px;
  filter: drop-shadow(0 0 7px rgba(0, 212, 196, 0.55));
  animation: gotSignalPulse 3.8s ease-in-out infinite;
}

.got-signal::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #dffefb;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 212, 196, 0.95);
  transform: translate(-50%, -50%);
  animation: gotSignalDot 3.8s ease-in-out infinite;
}

.got-signal--one {
  left: 22%;
  top: 33%;
  width: 34%;
  transform: rotate(12deg);
}

.got-signal--two {
  left: 22%;
  bottom: 34%;
  width: 34%;
  transform: rotate(-12deg);
  animation-delay: 0.55s;
}

.got-signal--three {
  right: 24%;
  top: 48%;
  width: 28%;
  transform: rotate(-6deg);
  animation-delay: 1.1s;
}

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

.got-path-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(11, 13, 16, 0.07);
}

.got-path-media {
  position: relative;
  height: 128px;
  overflow: hidden;
  background: #05070a;
}

.got-path-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.got-path-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.02), rgba(5, 7, 10, 0.36)),
    radial-gradient(circle at 82% 20%, rgba(0, 212, 196, 0.22), transparent 28%);
}

.got-path-card h3,
.got-path-card h4,
.got-path-card p,
.got-path-card .product-links {
  margin-inline: clamp(20px, 2.4vw, 30px);
}

.got-path-card h3 {
  margin-top: 26px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.got-path-card h4 {
  margin-top: 10px;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  line-height: 1.08;
}

.got-path-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.58;
}

.got-path-card .product-links {
  margin-top: auto;
  margin-bottom: 26px;
  padding-top: 22px;
}

@keyframes gotSignalPulse {
  0%,
  100% {
    opacity: 0.35;
    filter: drop-shadow(0 0 4px rgba(0, 212, 196, 0.28));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(0, 212, 196, 0.72));
  }
}

@keyframes gotSignalDot {
  0%,
  100% {
    left: 8%;
    opacity: 0;
  }

  18%,
  82% {
    opacity: 1;
  }

  50% {
    left: 92%;
  }
}

@keyframes gotCorePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(0, 212, 196, 0.09),
      0 20px 52px rgba(0, 212, 196, 0.22);
  }

  50% {
    box-shadow:
      0 0 0 18px rgba(0, 212, 196, 0.06),
      0 22px 68px rgba(0, 212, 196, 0.34);
  }
}

@keyframes gotOrbitPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes gotPanelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .got-signal,
  .got-signal::after,
  .got-core img,
  .got-skills-visual::before,
  .got-profile,
  .got-opportunities {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .got-path-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .got-skills-visual {
    min-height: 430px;
  }

  .got-core img {
    width: 92px;
    height: 92px;
    border-radius: 20px;
  }

  .got-profile,
  .got-opportunities {
    width: 134px;
    padding: 10px;
  }

  .got-profile strong,
  .got-opportunities strong {
    font-size: 0.76rem;
  }

  .got-profile--company,
  .got-profile--freelance {
    left: 5%;
  }

  .got-profile--rising,
  .got-opportunities {
    right: 5%;
  }
}

/* Mobile hardening */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
  }

  .brand {
    width: 122px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
    font-size: 0.88rem;
  }

  .nav-item,
  .main-nav > .nav-link {
    min-width: 0;
    border-top: 1px solid rgba(107, 114, 128, 0.12);
  }

  .nav-item summary,
  .main-nav > .nav-link {
    min-height: 40px;
    width: 100%;
    align-items: center;
    padding: 0;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0 0 8px;
    transform: none;
    box-shadow: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .header-actions .text-link,
  .header-actions .button {
    min-height: 42px;
    justify-content: center;
    padding-inline: 12px;
    border-radius: 10px;
  }

  .header-actions .text-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
  }

  .activity-bar,
  .home-hero,
  .home-routing,
  .home-proof,
  .page-hero,
  .page-section,
  .signup-main,
  .login-main,
  .page-inline-cta,
  .site-footer {
    width: calc(100% - 20px);
  }

  .activity-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .activity-track {
    gap: 20px;
    font-size: 0.84rem;
  }

  .home-hero,
  .page-hero,
  .page-hero--visual,
  .signup-main,
  .login-main {
    grid-template-columns: 1fr;
    margin-inline: auto;
    padding: 22px;
    border-radius: 16px;
  }

  .home-hero {
    min-height: auto;
    gap: 24px;
  }

  .home-hero-copy h1,
  .page-hero h1,
  .login-hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11vw, 3.35rem);
    line-height: 0.98;
  }

  .home-hero-copy p:not(.eyebrow),
  .page-hero p,
  .login-hero p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .page-hero-actions,
  .page-inline-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button,
  .page-hero-actions .button,
  .page-inline-actions .button,
  .home-hero .hero-text-action {
    width: 100%;
    justify-content: center;
  }

  .home-market-stats,
  .audience-grid,
  .got-path-grid,
  .signup-paths,
  .signup-options,
  .login-options,
  .page-grid,
  .value-cards,
  .investor-signal-grid,
  .investor-reach-band,
  .investor-product-stack,
  .about-timeline,
  .acquisition-timeline,
  .acquisition-future,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .acquisition-future {
    align-items: start;
  }

  .acquisition-future > div {
    min-width: 0;
  }

  .home-market-stats span {
    min-width: 0;
  }

  .home-intelligence-card,
  .page-hero--visual .page-visual,
  .page-hero--visual .marketplace-hub-visual,
  .got-skills-visual {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    min-height: 360px;
  }

  .live-match-visual {
    grid-template-columns: 1fr;
  }

  .candidate-window {
    min-height: 210px;
  }

  .workflow-map,
  .workflow-map--supplier {
    display: grid;
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .workflow-map > i {
    width: 2px;
    height: 22px;
    margin: 0 auto;
  }

  .workflow-map > i::after {
    margin: 14px 0 0 -3px;
  }

  .pricing-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table {
    min-width: 760px;
  }

  .site-footer {
    margin-inline: auto;
    padding: 42px 18px;
  }

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

@media (max-width: 520px) {
  .main-nav,
  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .main-nav,
  .header-actions {
    grid-template-columns: 1fr 1fr;
  }

  .nav-item summary,
  .main-nav > .nav-link {
    min-height: 38px;
    font-size: 0.84rem;
  }

  .header-actions .text-link,
  .header-actions .button {
    min-height: 40px;
  }

  .home-hero,
  .page-hero,
  .page-hero--visual,
  .signup-main,
  .login-main,
  .page-section {
    padding: 20px 16px;
  }

  .home-hero-copy h1,
  .page-hero h1,
  .login-hero h1 {
    font-size: clamp(1.9rem, 9.8vw, 2.55rem);
    line-height: 1.02;
  }

  .acquisition-future {
    display: grid;
    width: calc(100% - 20px);
    padding: 22px 18px;
    gap: 22px;
  }

  .acquisition-future strong {
    font-size: clamp(1.55rem, 9vw, 2.05rem);
    line-height: 1.08;
  }

  .acquisition-future p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .expansion-map {
    min-height: 240px;
  }

  .home-intelligence-card,
  .page-hero--visual .page-visual,
  .page-hero--visual .marketplace-hub-visual,
  .got-skills-visual {
    min-height: 320px;
  }

  .cookie-consent {
    width: calc(100% - 16px);
    bottom: 8px;
    padding: 12px;
    border-radius: 14px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__actions .button {
    width: 100%;
  }

  .cookie-consent__actions .button[data-cookie-accept] {
    grid-column: 1 / -1;
  }
}
