:root {
  --bg: #0f2e67;
  --surface: rgba(21, 61, 134, 0.74);
  --surface-soft: rgba(19, 55, 120, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #eef4ff;
  --muted: #bfd0ef;
  --line: rgba(198, 219, 255, 0.16);
  --accent: #2156b8;
  --accent-strong: #18479c;
  --accent-soft: #4d7bd1;
  --sun: #ffe36a;
  --shadow: 0 24px 80px rgba(1, 9, 25, 0.45);
  --radius: 28px;
  --nav-height: 66px;
  --site-max-width: 1480px;
  --shell-edge-gap: 0px;
  --hero-content-max-width: 1380px;
  --search-max-width: 1280px;
  --section-content-max-width: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--nav-height);
  font-family: "Plus Jakarta Sans", "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(106, 150, 255, 0.28), transparent 22%),
    radial-gradient(circle at 82% 4%, rgba(255, 227, 106, 0.14), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(15, 46, 103, 0.8), transparent 32%),
    linear-gradient(180deg, #103d8f 0%, #0f2e67 48%, #071a3d 100%);
  min-height: 100vh;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 82%);
}

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

.page-shell {
  width: 100%;
  margin: 0 auto;
  padding: 8px 0 36px;
}

@media (min-width: 1440px) {
  .page-shell {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }

  .home-page .hero-grid {
    max-width: 1360px;
  }

  .home-page .marketplace-search {
    max-width: 1280px;
  }

  .home-page main > .section > *,
  .home-page .trust-ribbon-track,
  .home-page .footer-card > * {
    max-width: 1360px;
  }

  .topbar {
    padding-inline: 32px;
  }

  .subhero-card,
  .content-card,
  .dashboard-card,
  .auth-card,
  .table-card,
  .activity-card,
  .pricing-hero-card,
  .step-card,
  .legal-card,
  .footer-card {
    padding: 26px;
  }

  .feature-card,
  .proof-card,
  .category-card,
  .mission-card,
  .form-card,
  .model-card,
  .workflow-step,
  .price-card,
  .positioning-card,
  .faq-card,
  .featured-talent-body,
  .audience-card,
  .home-step-card {
    padding: 24px;
  }
}

.home-page .page-shell {
  position: relative;
  padding-top: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 6%, rgba(173, 203, 255, 0.12), transparent 14%),
    radial-gradient(circle at 28% 86%, rgba(255, 227, 106, 0.035), transparent 18%),
    radial-gradient(circle at 81% 18%, rgba(103, 149, 240, 0.11), transparent 22%),
    linear-gradient(90deg, #224993 0%, #173a7f 16%, #0d2b63 47%, #08214f 76%, #06173a 100%);
}

.home-page .page-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(190, 221, 255, 0.04) 0%, rgba(190, 221, 255, 0.008) 10%, transparent 18%),
    radial-gradient(circle at 86% 88%, rgba(2, 9, 30, 0.22), transparent 24%);
  opacity: 0.9;
  z-index: 0;
}

.home-page .page-shell > * {
  position: relative;
  z-index: 1;
}

.hero,
.section,
.cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section,
.cta-card {
  backdrop-filter: blur(14px);
}

.hero::before,
.section::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 86% 0%, rgba(77, 123, 209, 0.22), transparent 28%);
  opacity: 0.78;
}

.hero > *,
.section > * {
  position: relative;
  z-index: 1;
}

.hero {
  padding:
    clamp(92px, 9vw, 114px)
    clamp(22px, 3vw, 42px)
    clamp(24px, 2.6vw, 34px);
  overflow: visible;
  background:
    radial-gradient(circle at 78% 24%, rgba(91, 142, 255, 0.26), transparent 28%),
    radial-gradient(circle at 20% 84%, rgba(255, 227, 106, 0.08), transparent 22%),
    linear-gradient(145deg, rgba(21, 61, 134, 0.98), rgba(8, 27, 67, 0.98));
}

.home-page .hero {
  padding-top: clamp(38px, 3.7vw, 58px);
  padding-bottom: clamp(38px, 3.9vw, 58px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.home-page .hero > .hero-grid,
.home-page .hero > .marketplace-search {
  margin-inline: auto;
}

.home-page main > .section > *,
.home-page .trust-ribbon-track,
.home-page .footer-card > * {
  width: 100%;
  max-width: var(--section-content-max-width);
  margin-inline: auto;
}

.home-page .hero::before {
  background:
    radial-gradient(
      178% 186% at 54% -30%,
      rgba(234, 242, 255, 0.27) 0 12%,
      rgba(216, 232, 255, 0.235) 12% 24%,
      rgba(188, 214, 255, 0.19) 24% 36%,
      rgba(153, 189, 248, 0.14) 36% 45%,
      transparent 52%
    ),
    radial-gradient(
      150% 160% at 56% -32%,
      rgba(132, 182, 252, 0.25) 0 11%,
      rgba(104, 153, 239, 0.225) 11% 22%,
      rgba(79, 128, 217, 0.19) 22% 33%,
      rgba(52, 93, 179, 0.135) 33% 42%,
      transparent 48%
    ),
    radial-gradient(
      132% 138% at 48% -14%,
      rgba(126, 206, 255, 0.14) 0 12%,
      rgba(126, 206, 255, 0.065) 12% 22%,
      transparent 27%
    ),
    radial-gradient(circle at 34% 9%, rgba(255, 228, 132, 0.1), transparent 10%),
    radial-gradient(circle at 52% 7%, rgba(255, 255, 255, 0.13), transparent 8%),
    radial-gradient(circle at 73% 12%, rgba(155, 196, 255, 0.14), transparent 13%),
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(90deg, rgba(194, 221, 255, 0.035) 0%, rgba(194, 221, 255, 0.008) 16%, transparent 28%),
    radial-gradient(circle at 82% 84%, rgba(2, 9, 30, 0.2), transparent 24%);
  opacity: 0.95;
}

.home-page .hero::after {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 74% 64%, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(90deg, rgba(4, 17, 48, 0.05), transparent 32%, transparent 72%, rgba(3, 15, 42, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 14%, transparent 72%, rgba(0, 0, 0, 0.1));
  opacity: 1;
}

.home-page .hero::after {
  inset: 1px 1px 0;
}

.hero-showcase-decor {
  opacity: 0;
}

.hero-showcase-decor::before {
  inset: 28% 12% auto 8%;
  height: 1px;
  border: 0;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(210, 228, 255, 0.2) 0 6px, transparent 6px 16px);
  opacity: 0.5;
  transform: rotate(-10deg);
}

.hero-showcase-decor::after {
  inset: 48% 2% auto 34%;
  height: 1px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(210, 228, 255, 0.16), transparent);
  opacity: 0.42;
  transform: rotate(10deg);
}

@media (max-width: 1120px) {
  .hero-showcase-decor::before {
    inset: -10% -12% -26% 34%;
  }

  .hero-showcase-decor::after {
    inset: 2% -18% -30% 42%;
  }
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transform: none;
  padding: 8px clamp(14px, 2.1vw, 24px);
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid rgba(128, 177, 255, 0.14);
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(180deg, rgba(6, 21, 54, 0.88), rgba(10, 31, 76, 0.71));
  backdrop-filter: blur(18px);
  box-shadow:
    0 10px 22px rgba(1, 9, 25, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(198, 219, 255, 0.25);
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 227, 106, 0.72), transparent 18%),
    linear-gradient(135deg, #0f2e67, #2156b8 62%, #071a3d);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: lowercase;
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
  max-width: min(360px, 30vw);
}

.footer-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: 340px;
}

.topbar-links {
  display: flex;
  min-width: 0;
  gap: 14px 22px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  color: var(--muted);
  align-items: center;
  font-size: 0.95rem;
  transform: translateY(-2px);
  overflow: hidden;
}

.topbar-links a {
  padding: 8px 0;
}

.topbar-cta {
  margin-left: auto;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transform: translateY(-2px);
}

.topbar-links a {
  opacity: 0.92;
  white-space: nowrap;
}

.topbar-links a:hover {
  color: var(--text);
  opacity: 1;
}

.topbar-actions a {
  white-space: nowrap;
}

.topbar-actions .button,
.topbar-actions .button-secondary {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.94rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.82fr);
  gap: clamp(20px, 2.8vw, 34px);
  align-items: center;
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 1fr) 590px;
  width: 100%;
  max-width: var(--hero-content-max-width);
  min-height: 540px;
}

.hero-copy {
  align-self: center;
  padding-top: 0;
  max-width: 880px;
}

.home-page .hero-copy {
  max-width: none;
}

.home-page .hero-copy h1 {
  line-height: 1.06;
}

.home-page .hero-copy .hero-title-line {
  display: block;
  color: inherit;
}

.home-page .hero-copy .hero-title-line + .hero-title-line {
  margin-top: 3px;
}

.hero-showcase {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  margin-top: 18px;
  padding-left: 0;
  margin-left: -72px;
}

.hero-showcase-stage {
  position: relative;
  flex: 0 0 590px;
  width: 590px;
  height: 364px;
  min-height: 364px;
  border-radius: 34px;
  background: transparent;
  border: 0;
  overflow: visible;
  --hero-showcase-scale: 0.82;
}

.hero-showcase-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.hero-showcase-decor::before,
.hero-showcase-decor::after {
  position: absolute;
  content: "";
}

.hero-showcase-decor::before {
  inset: -34% -6% -44% 38%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(199, 220, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  opacity: 0.34;
  transform: rotate(-33deg);
}

.hero-showcase-decor::after {
  inset: -24% -10% -44% 54%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(226, 237, 255, 0.12), rgba(184, 213, 255, 0.015)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  opacity: 0.22;
  transform: rotate(-33deg);
}

.hero-showcase-composition {
  position: absolute;
  top: 0;
  left: 30px;
  width: 590px;
  height: 364px;
  z-index: 1;
  transform: scale(var(--hero-showcase-scale));
  transform-origin: 73% 11%;
}

.hero-showcase-stage::before {
  content: none;
}

.hero-showcase-stage::after {
  position: absolute;
  top: 10px;
  right: 8px;
  bottom: 10px;
  left: 126px;
  content: "";
  border-radius: 34px;
  background: none;
}

.hero-search-wide {
  grid-column: 1 / -1;
  margin-top: -10px;
}

.home-page .hero-search-wide {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  margin-inline: 0;
  transform: none;
}

.hero-floating-search,
.hero-profile-card,
.hero-signal-card,
.hero-mini-stack {
  position: absolute;
  border: 1px solid rgba(198, 219, 255, 0.16);
  box-shadow: 0 28px 80px rgba(3, 11, 35, 0.38);
}

.hero-floating-search {
  top: 18px;
  right: -34px;
  display: grid;
  gap: 4px;
  padding: 10px 15px;
  border-radius: 20px;
  background: rgba(247, 251, 255, 0.96);
  color: #163466;
  transform: translateX(-44px);
}

.hero-floating-search span,
.hero-signal-card span,
.hero-profile-card-body p,
.hero-mini-stack p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-floating-search strong,
.hero-signal-card strong,
.hero-mini-stack strong {
  font-size: 0.94rem;
  line-height: 1.3;
}

.hero-profile-card {
  overflow: hidden;
  width: 220px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 26%),
    rgba(251, 252, 255, 0.96);
  color: #163466;
}

.hero-profile-card img {
  width: 100%;
  height: 188px;
  display: block;
  object-fit: cover;
}

.hero-profile-card-body {
  display: grid;
  gap: 4px;
  padding: 12px 12px 14px;
}

.hero-profile-card-body h3 {
  margin: 0;
  font-size: 1.14rem;
  letter-spacing: -0.04em;
}

.hero-profile-card-body span {
  color: rgba(22, 52, 102, 0.74);
  line-height: 1.35;
  font-size: 0.9rem;
}

.hero-profile-card-front {
  top: 88px;
  left: 140px;
  z-index: 3;
}

.hero-profile-card-front img {
  height: 204px;
  object-position: center top;
}

.hero-profile-card-back {
  top: 122px;
  right: 44px;
  z-index: 2;
  width: 178px;
  transform: rotate(3deg);
  border: 1px solid rgba(198, 219, 255, 0.16);
  box-shadow: 0 28px 80px rgba(3, 11, 35, 0.38);
}

.hero-profile-card-back img {
  height: 146px;
  object-position: center 18%;
  transform: translateY(-1px) scale(1.04);
  transform-origin: center top;
}

.hero-profile-card-back .hero-profile-card-body h3 {
  font-size: 0.98rem;
}

.hero-profile-card-back .hero-profile-card-body {
  padding: 11px;
}

.hero-signal-card {
  display: grid;
  gap: 7px;
  padding: 12px 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 40%),
    rgba(13, 44, 103, 0.94);
}

.hero-signal-card small,
.hero-mini-stack span {
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.9rem;
}

.hero-signal-card-reference {
  left: -30px;
  top: 278px;
  width: 176px;
  z-index: 4;
  transform: rotate(-4deg);
}

.hero-signal-card-budget {
  right: -84px;
  top: 272px;
  width: 174px;
  z-index: 4;
}

.hero-mini-stack {
  left: -18px;
  top: -16px;
  z-index: 1;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 248px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(13, 40, 92, 0.92);
}

.hero-mini-stack img {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.hero-mini-stack div {
  display: grid;
  gap: 6px;
}

@media (max-width: 1480px) and (min-width: 1121px) {
  .home-page .hero-copy {
    max-width: 640px;
  }

  .home-page .hero-copy h1 {
    max-width: 560px;
    font-size: clamp(2.45rem, 4vw, 3.25rem);
    line-height: 1.02;
    text-wrap: pretty;
  }

  .hero-text {
    max-width: 500px;
    font-size: 0.95rem;
    line-height: 1.56;
  }
}

@media (min-width: 1481px) {
  .home-page .hero-copy h1 {
    font-size: clamp(3.25rem, 3.45vw, 3.5rem);
    line-height: 1.04;
  }
}

@media (max-width: 1420px) and (min-width: 1281px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1fr) 590px;
    gap: 20px;
    align-items: center;
  }

  .hero-showcase {
    justify-content: flex-start;
    margin-left: -72px;
    margin-bottom: 0;
  }

  .hero-showcase-stage {
    --hero-showcase-scale: 0.76;
    flex: 0 0 590px;
    width: 590px;
    height: 364px;
    min-height: 364px;
  }

  .hero-showcase-composition {
    left: 30px;
    transform-origin: 73% 11%;
  }
}

@media (max-width: 1280px) and (min-width: 1201px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 500px);
    gap: 18px;
    align-items: center;
  }

  .hero-showcase {
    justify-content: flex-start;
    margin-left: -72px;
    margin-bottom: 0;
  }

  .hero-showcase-stage {
    --hero-showcase-scale: 0.7;
    flex: none;
    width: calc(590px * var(--hero-showcase-scale));
    height: calc(430px * var(--hero-showcase-scale));
    min-height: 0;
  }

  .hero-showcase-composition {
    left: 30px;
    transform-origin: 0 0;
  }
}

@media (max-width: 1200px) and (min-width: 1121px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 16px;
    align-items: center;
  }

  .home-page .hero-copy {
    max-width: 500px;
  }

  .home-page .hero-copy h1 {
    max-width: 440px;
    font-size: clamp(2.8rem, 3.7vw, 2.95rem);
    line-height: 1;
    text-wrap: pretty;
  }

  .home-page .hero .hero-text {
    max-width: 380px;
    font-size: 0.9rem;
    line-height: 1.46;
  }

  .hero-showcase {
    justify-content: flex-start;
    margin-left: 0;
    margin-bottom: 34px;
  }

  .hero-showcase-stage {
    --hero-showcase-scale: 0.7;
    flex: none;
    width: calc(590px * var(--hero-showcase-scale));
    height: calc(430px * var(--hero-showcase-scale));
    min-height: 0;
  }

  .hero-showcase-composition {
    left: 0;
    transform-origin: 0 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-floating-search,
  .hero-profile-card,
  .hero-signal-card,
  .hero-mini-stack {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease;
    will-change: transform;
  }

  .hero-floating-search:hover,
  .hero-profile-card:hover,
  .hero-signal-card:hover,
  .hero-mini-stack:hover {
    border-color: rgba(238, 244, 255, 0.34);
    box-shadow: 0 34px 92px rgba(3, 11, 35, 0.46);
  }

  .hero-floating-search:hover {
    transform: translateX(-44px) scale(1.04);
  }

  .hero-profile-card-front:hover {
    transform: scale(1.04);
  }

  .hero-profile-card-back:hover {
    transform: rotate(3deg) scale(1.03);
    box-shadow: 0 28px 80px rgba(3, 11, 35, 0.38);
    border-color: rgba(198, 219, 255, 0.16);
  }

  .hero-signal-card-reference:hover {
    transform: rotate(-4deg) scale(1.04);
  }

  .hero-signal-card-budget:hover,
  .hero-mini-stack:hover {
    transform: scale(1.04);
  }
}

.text-link {
  color: #dce8ff;
  font-weight: 700;
}

.text-link:hover {
  color: #fff;
}

.subhero {
  min-height: auto;
}

.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 32px;
  align-items: start;
}

.subhero-card,
.content-card,
.dashboard-card,
.auth-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(17, 49, 110, 0.78);
  box-shadow: var(--shadow);
}

.subhero-card,
.content-card,
.dashboard-card,
.auth-card {
  padding: 26px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-soft);
}

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

h1 {
  margin-bottom: 38px;
  font-size: clamp(2.35rem, 3.3vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 620px;
  text-wrap: balance;
}

h1 span,
.section-heading h2,
.cta-card h2 {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.hero-text,
.section-heading p,
.feature-card p,
.proof-card p,
.cta-card p,
.mission-card p,
.category-card p,
.model-card p,
.workflow-step p,
.positioning-card p,
.faq-card p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.hero-actions .button,
.cta-actions .button {
  min-width: 220px;
}

.hero-text {
  max-width: 590px;
  font-size: 0.98rem;
  line-height: 1.76;
  margin-bottom: 0;
}

.marketplace-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 16px 0 2px;
  padding: 11px;
  border: 1px solid rgba(198, 219, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    rgba(7, 24, 63, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 70px rgba(0, 14, 46, 0.22);
}

.home-page .marketplace-search {
  max-width: var(--search-max-width);
  justify-self: center;
  transform: translateX(-8px);
}

.home-page .hero .hero-search-wide.marketplace-search {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  margin-inline: 0;
  transform: none;
}

.search-input-shell {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 11px 16px 10px;
  border: 1px solid rgba(198, 219, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -18px 40px rgba(5, 16, 44, 0.18);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.search-input-shell:focus-within {
  border-color: rgba(126, 169, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -18px 40px rgba(5, 16, 44, 0.14),
    0 0 0 4px rgba(89, 140, 255, 0.16);
}

.search-label {
  color: #dce8ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-field-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.search-field-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: rgba(214, 228, 255, 0.62);
}

.search-mode {
  display: flex;
  grid-column: 1 / -1;
  gap: 8px;
  flex-wrap: wrap;
}

.search-mode label {
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(198, 219, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.search-mode input {
  width: 16px !important;
  min-height: auto !important;
  height: 16px !important;
  accent-color: var(--sun);
}

.marketplace-search label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketplace-search input {
  min-height: 30px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  outline: none;
}

.marketplace-search input::placeholder {
  color: rgba(214, 228, 255, 0.48);
}

.marketplace-search select {
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  outline: none;
}

.marketplace-search > button {
  width: auto;
  min-width: 200px;
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 16px;
  font-size: 0.96rem;
  box-shadow: 0 20px 44px rgba(12, 62, 168, 0.28);
  transform: translateY(-3px);
}

.checkbox-field {
  align-self: stretch;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(198, 219, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.checkbox-field input {
  width: 18px;
  min-height: auto;
  height: 18px;
  accent-color: var(--sun);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11, 36, 84, 0.28);
}

.button-primary {
  border-color: rgba(170, 198, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, #2c5db8 0%, #2151aa 54%, #173f8f 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 44px rgba(7, 30, 84, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.hero-metrics,
.category-card ul,
.mission-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-metrics li,
.feature-card,
.category-card,
.mission-card,
.proof-card,
.model-card,
.workflow-step,
.price-card,
.form-card,
.positioning-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent),
    var(--surface-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-metrics li {
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
  max-width: 540px;
  justify-self: end;
  padding-top: 0;
}

.hero-product-card,
.signal-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    rgba(17, 49, 110, 0.84);
  box-shadow: var(--shadow);
}

.hero-product-card {
  padding: 20px;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  grid-template-rows: 108px 108px;
  gap: 8px;
  margin-bottom: 18px;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(198, 219, 255, 0.16);
  border-radius: 20px;
  filter: saturate(0.9) contrast(1.03);
}

.photo-strip img:first-child {
  grid-row: span 2;
}

.profile-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin-bottom: 16px;
  border: 1px solid rgba(198, 219, 255, 0.16);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.16);
}

.profile-photo-card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.profile-photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(6, 20, 52, 0.88));
}

.profile-photo-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-label {
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-soft);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dcebff;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card-text {
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-card-stack,
.signal-grid {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(208, 225, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-card span,
.signal-grid strong {
  color: #dbe9ff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-card strong {
  font-size: 1rem;
}

.mini-card small,
.signal-grid small {
  color: var(--muted);
  line-height: 1.5;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 227, 106, 0.12)),
    rgba(255, 255, 255, 0.04);
}

.mini-card.dark {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(16, 45, 100, 0.48));
}

.signal-card {
  padding: 18px;
}

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

.section {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 54px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(15, 46, 103, 0.72);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 740px;
}

.section-heading h2,
.cta-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.home-page .talent-section,
.home-page .positioning-section,
.home-page .ecosystem-section,
.home-page .split-section,
.home-page .model-section,
.home-page .proof-section,
.home-page .forms-section,
.home-page .monetization-section,
.home-page .workflow-section,
.home-page .faq-section {
  display: none;
}

.home-discovery-section,
.home-audience-section,
.home-process-section {
  background: transparent;
}

.home-page main {
  margin-top: 0;
}

.home-page main > .section {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .home-audience-section {
  padding-top: 8px;
}

.home-page main > .section::before,
.home-page main > .section::after {
  display: none;
}

.home-page main > .section + .section {
  margin-top: 0;
  padding-top: clamp(16px, 2vw, 28px);
}


.discovery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.discovery-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(198, 219, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #dce8ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.discovery-chip.active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(135deg, rgba(51, 109, 255, 0.98), rgba(26, 70, 156, 0.95));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.featured-talent-grid,
.audience-grid,
.home-steps-grid {
  display: grid;
  gap: 16px;
}

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

.featured-talent-card,
.audience-card,
.home-step-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(17, 49, 110, 0.78);
  box-shadow: var(--shadow);
}

.featured-talent-card {
  overflow: hidden;
}

.audience-card {
  display: grid;
  grid-template-rows: auto minmax(58px, auto) 1fr;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.featured-talent-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.featured-talent-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.featured-talent-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.featured-talent-header h3,
.audience-card h3,
.home-step-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.audience-card h3 {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: -0.055em;
  line-height: 1.02;
  color: var(--text);
}

.audience-card h3.audience-card-title {
  white-space: nowrap;
  max-width: 100%;
}

.audience-card .eyebrow {
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
}

.featured-talent-header p,
.audience-card p,
.home-step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f0f6ff;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.talent-facts,
.audience-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.talent-facts li,
.audience-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 12px 16px;
  border: 1px solid rgba(198, 219, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #dbe8ff;
  line-height: 1.34;
}

.audience-list li {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.audience-list li::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
}

.featured-talent-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.talent-price {
  font-weight: 800;
  color: #fff;
}

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

.audience-card {
  display: grid;
  grid-template-rows: auto minmax(2.8rem, auto) 1fr;
  align-content: start;
  gap: 8px;
  padding: 20px 18px 18px;
}

.audience-card-company {
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 227, 106, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(17, 49, 110, 0.78);
}

.audience-card-freelance {
  background:
    radial-gradient(circle at 84% 12%, rgba(77, 123, 209, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(17, 49, 110, 0.78);
}

.audience-carousel-shell {
  display: grid;
  gap: 18px;
  margin-top: 56px;
}

.audience-carousel-copy {
  display: grid;
  gap: 8px;
  max-width: 680px;
}

.audience-carousel-copy h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.audience-carousel-copy p:not(.eyebrow) {
  margin: 0 0 12px;
  color: var(--muted);
}

.audience-carousel {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(120, 170, 255, 0.16), transparent 48%),
    linear-gradient(90deg, rgba(22, 52, 112, 0.86), rgba(35, 73, 148, 0.5) 18%, rgba(35, 73, 148, 0.5) 82%, rgba(22, 52, 112, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(21, 56, 121, 0.84);
  box-shadow: var(--shadow);
  cursor: ew-resize;
}

.audience-carousel::before,
.audience-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16%;
  pointer-events: none;
  z-index: 2;
}

.audience-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(21, 56, 121, 0.95), rgba(21, 56, 121, 0));
}

.audience-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(21, 56, 121, 0.95), rgba(21, 56, 121, 0));
}

.audience-carousel-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.audience-profile-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 6px;
  width: 132px;
  min-width: 132px;
  height: 214px;
  padding: 8px;
  border: 1px solid rgba(198, 219, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(148, 189, 255, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(20, 46, 101, 0.94);
  box-shadow: 0 18px 40px rgba(6, 17, 42, 0.34);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.audience-profile-visual {
  position: relative;
  width: 116px;
  height: 116px;
  justify-self: center;
}

.audience-profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.audience-profile-meta {
  display: grid;
  grid-template-rows: 1.35rem 1.35rem 0.9rem;
  align-content: start;
  gap: 2px;
  padding: 0 1px 0;
}

.audience-profile-meta h4 {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.audience-profile-meta p,
.audience-profile-meta small {
  margin: 0;
}

.audience-profile-meta p {
  color: #dce8ff;
  font-size: 0.68rem;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.audience-profile-meta small {
  color: rgba(219, 232, 255, 0.72);
  font-size: 0.62rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audience-profile-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 6px;
  bottom: 6px;
  min-height: 24px;
  max-width: calc(100% - 12px);
  padding: 4px 8px;
  border-radius: 12px;
  background: rgba(28, 54, 105, 0.78);
  backdrop-filter: blur(10px);
  color: #f2f7ff;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  white-space: normal;
  overflow: hidden;
  text-align: left;
}

@media (hover: hover) and (pointer: fine) {
  .audience-profile-card:hover {
    transform: translateY(-3px);
    border-color: rgba(238, 244, 255, 0.28);
    box-shadow: 0 22px 46px rgba(6, 17, 42, 0.42);
  }
}

.home-process-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: center;
}

.home-process-figure {
  position: relative;
  margin: 0;
  align-self: center;
  min-height: 540px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(198, 219, 255, 0.14);
  box-shadow: var(--shadow);
}

.home-process-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 42, 95, 0.16), rgba(16, 42, 95, 0.04) 34%, rgba(16, 42, 95, 0.18) 100%);
}

.home-process-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-process-floaters {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 1;
}

.home-process-floater {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(248, 251, 255, 0.9);
  color: #163466;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(8, 19, 45, 0.16);
}

.home-process-content {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  min-height: 108px;
  padding: 14px 18px;
  border: 1px solid rgba(198, 219, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(22, 55, 120, 0.18);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.home-process-item:focus-visible,
.home-process-item:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 244, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(28, 65, 138, 0.24);
  box-shadow: 0 18px 36px rgba(6, 17, 42, 0.18);
  outline: none;
}

.home-process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a63ce, var(--accent-soft));
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}

.home-process-item h3 {
  margin: 0 0 6px;
  font-size: clamp(1.24rem, 1.6vw, 1.72rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.home-process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.34;
}

.search-page main {
  display: flex;
  flex-direction: column;
}

.search-page .mission-search-panel {
  order: 1;
}

.search-page .mission-categories {
  order: 2;
}

.trust-ribbon {
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(128, 177, 255, 0.12);
  background: rgba(19, 55, 120, 0.72);
  box-shadow: var(--shadow);
}

.trust-ribbon-track {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 22px;
  color: #d9e8ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 800;
}

.hero-trust-pills {
  justify-content: flex-start;
  gap: 18px 22px;
  padding: 54px 0 18px;
  color: #d9e8ff;
  font-size: 0.66rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero-trust-pills .trust-pill {
  padding: 0;
  opacity: 0.94;
}

.trust-pill svg {
  width: 24px;
  height: 24px;
  color: #a9c6ff;
  flex: 0 0 auto;
  stroke-width: 2;
}

.hero-trust-pills .trust-pill svg {
  width: 20px;
  height: 20px;
}

.workspace-nav {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(198, 219, 255, 0.14);
  border-radius: 20px;
  background: rgba(17, 49, 110, 0.64);
  box-shadow: var(--shadow);
  scrollbar-width: none;
}

.workspace-nav::-webkit-scrollbar {
  display: none;
}

.workspace-nav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.workspace-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.workspace-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.workspace-sidebar,
.workspace-main,
.table-card,
.activity-card,
.pricing-hero-card,
.step-card,
.legal-card,
.footer-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent),
    rgba(17, 49, 110, 0.74);
  box-shadow: var(--shadow);
}

.workspace-sidebar,
.workspace-main,
.table-card,
.activity-card,
.pricing-hero-card,
.step-card,
.legal-card,
.footer-card {
  padding: 22px;
}

.sidebar-title {
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-nav,
.sidebar-meta,
.activity-list,
.table-list,
.footer-links {
  display: grid;
  gap: 10px;
}

.sidebar-nav a,
.sidebar-meta div,
.activity-item,
.table-row {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(208, 225, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-nav a.active {
  background: linear-gradient(135deg, rgba(42, 99, 206, 0.32), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.14);
}

.sidebar-meta strong,
.table-row strong,
.activity-item strong {
  color: var(--text);
}

.sidebar-meta small,
.table-row small,
.activity-item small {
  color: var(--muted);
}

.workspace-main {
  display: grid;
  gap: 18px;
}

.stats-grid,
.steps-grid,
.pricing-pack-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.stat-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
}

.table-head {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.table-head p {
  margin: 0;
}

.table-row {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  align-items: center;
}

.table-row span {
  color: var(--text);
  font-weight: 700;
}

.activity-list {
  margin-top: 10px;
}

.activity-item {
  padding: 16px;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.pricing-pack {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.pricing-pack.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 227, 106, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.pricing-pack h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.pricing-pack .price {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 800;
}

.step-card h3,
.legal-card h3 {
  margin-bottom: 10px;
}

.site-footer {
  margin-top: 18px;
}

.footer-card {
  display: grid;
  gap: 18px;
}

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

.ecosystem-card {
  display: grid;
  min-height: 220px;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 227, 106, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(17, 49, 110, 0.7);
  box-shadow: var(--shadow);
}

.ecosystem-card:nth-child(1),
.ecosystem-card:nth-child(2) {
  grid-column: span 3;
}

.ecosystem-card:nth-child(n + 3) {
  grid-column: span 2;
}

.ecosystem-tag {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(198, 219, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dceaff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecosystem-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.ecosystem-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

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

.talent-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02)),
    rgba(17, 49, 110, 0.76);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.talent-card:hover {
  transform: translateY(-3px);
  border-color: rgba(238, 244, 255, 0.3);
}

.talent-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.talent-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.talent-card h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.talent-card p,
.talent-card small {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.hero,
.section,
.trust-ribbon,
.workspace-nav,
.footer-card {
  max-width: none;
}

.feature-card,
.proof-card,
.category-card,
.mission-card,
.form-card,
.model-card,
.workflow-step,
.price-card,
.positioning-card,
.faq-card,
.content-card,
.dashboard-card,
.auth-card,
.table-card,
.activity-card,
.pricing-pack,
.step-card,
.legal-card,
.subhero-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.feature-card:hover,
.proof-card:hover,
.category-card:hover,
.mission-card:hover,
.positioning-card:hover,
.ecosystem-card:hover,
.talent-card:hover,
.stack-item:hover,
.pricing-pack:hover,
.step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 244, 255, 0.28);
  background-color: rgba(255, 255, 255, 0.07);
}

@media (hover: hover) and (pointer: fine) {
  .audience-list li:hover {
    transform: translateY(-2px);
    border-color: rgba(238, 244, 255, 0.28);
    background-color: rgba(255, 255, 255, 0.07);
  }
}

input::placeholder,
textarea::placeholder {
  color: rgba(238, 244, 255, 0.48);
}

.form-status {
  margin: 4px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(198, 219, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  line-height: 1.5;
}

.form-status[data-type="success"] {
  border-color: rgba(94, 234, 212, 0.35);
  color: #d4fff8;
}

.form-status[data-type="error"] {
  border-color: rgba(255, 180, 180, 0.42);
  color: #ffd7d7;
}

select option {
  color: #0f2e67;
}

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

.footer-column h3,
.footer-brand h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-brand p,
.footer-column a,
.footer-bottom {
  color: var(--muted);
}

.footer-links a {
  display: block;
}

.footer-bottom {
  padding-top: 14px;
  border-top: 1px solid rgba(198, 219, 255, 0.12);
  font-size: 0.9rem;
}

.dashboard-grid,
.split-layout,
.form-two-columns,
.auth-shell {
  display: grid;
  gap: 16px;
}

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

.split-layout,
.auth-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-list,
.stack-list {
  display: grid;
  gap: 12px;
}

.dashboard-list div,
.stack-item {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(208, 225, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-list strong,
.stack-item strong {
  color: #eaf2ff;
}

.dashboard-list small,
.stack-item small {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  color: var(--text);
}

.check-list li {
  color: var(--text);
}

.large-form {
  max-width: 920px;
}

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

.auth-shell {
  align-items: start;
}

.dashboard-card,
.content-card,
.auth-card,
.form-card {
  min-height: 100%;
}

.path-grid,
.proof-grid,
.model-grid,
.workflow-grid,
.pricing-grid,
.forms-grid,
.positioning-grid,
.faq-grid,
.categories-grid,
.missions-grid {
  display: grid;
  gap: 16px;
}

.path-grid,
.proof-grid,
.model-grid,
.positioning-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pricing-grid,
.forms-grid,
.faq-grid,
.categories-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.search-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 20px;
  padding: 18px;
  border: 1px solid rgba(198, 219, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 0%, rgba(91, 142, 255, 0.24), transparent 32%),
    rgba(4, 18, 47, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.search-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.search-showcase-copy h3,
.results-heading h3,
.swipe-card h4,
.swipe-empty h4 {
  margin: 0;
  letter-spacing: -0.035em;
}

.search-showcase-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 0.98;
}

.search-showcase-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.swipe-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
  min-width: 0;
}

.swipe-card,
.swipe-empty {
  overflow: hidden;
  min-height: 290px;
  border: 1px solid rgba(198, 219, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    rgba(13, 42, 99, 0.88);
  box-shadow: 0 24px 70px rgba(0, 12, 42, 0.26);
}

.swipe-card {
  display: flex;
  flex-direction: column;
  transform-origin: center bottom;
}

.swipe-card-1 {
  transform: none;
}

.swipe-card-2 {
  transform: none;
}

.swipe-card-3 {
  transform: none;
}

.swipe-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  display: block;
}

.company-swipe-card {
  justify-content: space-between;
  padding-top: 18px;
  background:
    radial-gradient(circle at 76% 14%, rgba(255, 227, 106, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(28, 88, 216, 0.74), rgba(6, 22, 56, 0.92));
}

.company-logo {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 18px 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.swipe-card-content {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.swipe-card h4 {
  font-size: 1.45rem;
}

.swipe-card p,
.swipe-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.swipe-meta {
  display: grid;
  gap: 7px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  color: #dbe8ff;
  font-size: 0.86rem;
}

.swipe-meta li {
  padding: 8px 10px;
  border: 1px solid rgba(198, 219, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.swipe-empty {
  display: grid;
  place-content: center;
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
}

.results-heading {
  margin: 24px 0 16px;
}

.feature-card,
.proof-card,
.category-card,
.mission-card,
.form-card,
.model-card,
.workflow-step,
.price-card,
.positioning-card,
.faq-card {
  padding: 22px;
}

.feature-card h3,
.proof-card h3,
.category-card h3,
.mission-card h3,
.positioning-card h3,
.faq-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.positioning-index,
.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a63ce, var(--accent-soft));
  color: #fff;
  font-weight: 800;
}

.split-section.alt,
.proof-section {
  background: rgba(17, 49, 110, 0.76);
}

.category-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-card li,
.mission-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7e6ff;
  font-size: 0.86rem;
  font-weight: 700;
}

.mission-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mission-toolbar label {
  font-weight: 700;
}

.mission-toolbar select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(3, 18, 49, 0.2);
  color: var(--text);
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(77, 123, 209, 0.18);
}

.mission-toolbar select {
  min-width: 220px;
  min-height: 46px;
  padding: 0 14px;
}

.mission-card {
  display: grid;
  gap: 16px;
}

.mission-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mission-card footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 2.5rem;
  line-height: 1;
}

.price-label {
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-soft);
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 227, 106, 0.08)),
    rgba(12, 33, 80, 0.72);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
}

.lead-form input,
.lead-form select {
  min-height: 52px;
}

.lead-form textarea {
  resize: vertical;
}

.cta-section {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 227, 106, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(9, 30, 73, 0.98), rgba(24, 71, 156, 0.96)),
    var(--bg);
  color: #f7fbff;
}

.cta-card p {
  color: rgba(247, 251, 255, 0.8);
}

.cta-card .eyebrow {
  color: var(--sun);
}

@media (max-width: 1280px) {
  :root {
    --nav-height: 64px;
  }

  .topbar {
    padding: 6px 16px;
  }

  .brand-logo {
    height: 46px;
    max-width: min(290px, 27vw);
  }

  .topbar-links {
    gap: 12px 18px;
    font-size: 0.92rem;
  }

  .topbar-actions {
    gap: 10px;
    font-size: 0.91rem;
  }

  .topbar-actions .button,
  .topbar-actions .button-secondary {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.15rem, 3vw, 3rem);
    max-width: 560px;
  }

  .section-heading h2,
  .cta-card h2 {
    font-size: clamp(1.75rem, 3vw, 2.55rem);
  }

  .hero-text,
  .section-heading p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .marketplace-search {
    gap: 10px;
    padding: 12px;
  }

  .marketplace-search > button {
    min-width: 220px;
    min-height: 66px;
  }

  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 560px);
    gap: clamp(16px, 2vw, 24px);
  }

  .hero-showcase {
    margin-left: 0;
    margin-bottom: 34px;
  }

  .hero-showcase-stage {
    --hero-showcase-scale: 0.72;
    flex: none;
    width: calc(590px * var(--hero-showcase-scale));
    height: calc(430px * var(--hero-showcase-scale));
    min-height: 0;
  }

  .hero-showcase-composition {
    left: 0;
    transform-origin: 0 0;
  }
}

@media (max-width: 1120px) {
  :root {
    --nav-height: 64px;
  }

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

  .topbar {
    padding: 8px 14px;
  }

  .brand-logo {
    height: 42px;
    max-width: min(260px, 30vw);
  }

  .topbar-links {
    gap: 10px 16px;
    font-size: 0.88rem;
  }

  .topbar-actions {
    gap: 10px;
    font-size: 0.88rem;
  }

  .topbar-actions > a:first-child {
    display: none;
  }

  .topbar-actions .button,
  .topbar-actions .button-secondary {
    position: relative;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .topbar-actions .button-secondary {
    min-width: 108px;
    color: transparent;
  }

  .topbar-actions .button-secondary::after {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    content: "Se connecter";
    color: var(--text);
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(1.95rem, 4.1vw, 2.55rem);
    line-height: 1.08;
    max-width: 100%;
  }

  .section-heading h2,
  .cta-card h2 {
    font-size: clamp(1.62rem, 3.5vw, 2.2rem);
  }

  .marketplace-search {
    padding: 12px;
    grid-template-columns: 1fr;
  }

  .search-mode label {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .marketplace-search label {
    font-size: 0.76rem;
  }

  .marketplace-search input,
  .marketplace-search select {
    font-size: 0.95rem;
  }

  .search-input-shell {
    padding: 12px 14px 11px;
  }

  .marketplace-search > button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }

  .home-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-showcase {
    justify-content: center;
    margin-left: 0;
    margin-bottom: 48px;
  }

  .hero-showcase-stage {
    --hero-showcase-scale: 0.66;
    flex: none;
    width: calc(590px * var(--hero-showcase-scale));
    height: calc(450px * var(--hero-showcase-scale));
    min-height: 0;
  }

  .hero-showcase-composition {
    transform-origin: 0 0;
  }
}

@media (max-width: 980px) {
  :root {
    --nav-height: 66px;
  }

  .hero-grid,
  .subhero-grid,
  .ecosystem-grid,
  .talent-grid,
  .featured-talent-grid,
  .audience-grid,
  .home-steps-grid,
  .home-process-split,
  .workspace-shell,
  .pricing-hero-grid,
  .dashboard-grid,
  .split-layout,
  .form-two-columns,
  .auth-shell,
  .path-grid,
  .proof-grid,
  .model-grid,
  .workflow-grid,
  .pricing-grid,
  .forms-grid,
  .positioning-grid,
  .faq-grid,
  .missions-grid,
  .search-showcase,
  .categories-grid,
  .cta-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .swipe-deck {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    overflow-x: auto;
    padding: 6px 4px 18px;
    scroll-snap-type: x mandatory;
  }

  .swipe-card,
  .swipe-empty {
    min-width: 220px;
    scroll-snap-align: start;
  }

  .ecosystem-card:nth-child(n) {
    grid-column: auto;
  }

  .hero-metrics,
  .signal-grid,
  .marketplace-search,
  .stats-grid,
  .steps-grid,
  .pricing-pack-grid,
  .footer-grid,
  .table-row {
    grid-template-columns: 1fr;
  }

  .home-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 40px;
    max-width: 220px;
  }

  .topbar-links {
    gap: 8px 12px;
    font-size: 0.8rem;
  }

  .topbar-actions {
    font-size: 0.8rem;
  }

  .topbar-actions > a:first-child {
    display: none;
  }

  .topbar-actions .button,
  .topbar-actions .button-secondary {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .topbar-actions .button-secondary {
    min-width: 116px;
  }

  .topbar-actions .button-secondary::after {
    content: "Se connecter";
    font-size: 0.78rem;
  }

  .hero-showcase {
    justify-content: center;
    margin-left: 0;
    margin-bottom: 34px;
  }

  .hero-showcase-stage {
    flex: none;
    width: calc(590px * var(--hero-showcase-scale));
    height: calc(430px * var(--hero-showcase-scale));
    min-height: 0;
  }

  .hero-showcase-composition {
    position: absolute;
    transform: scale(var(--hero-showcase-scale));
    transform-origin: 0 0;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 62px;
  }

  .page-shell {
    padding: 8px 0 24px;
  }

  .hero,
  .section {
    padding: 20px;
  }

  .hero {
    padding-top: 112px;
  }

  .topbar {
    gap: 8px;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    padding: 8px 10px;
    border-radius: 0 0 18px 18px;
  }

  .topbar-links {
    gap: 6px 10px;
    justify-content: flex-start;
    font-size: 0.72rem;
  }

  .brand-logo {
    height: 36px;
    max-width: 140px;
  }

  .topbar-actions {
    font-size: 0.74rem;
  }

  .topbar-actions .button,
  .topbar-actions .button-secondary {
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.72rem;
  }

  .topbar-actions .button-secondary {
    min-width: 106px;
  }

  .topbar-actions .button-secondary::after {
    content: "Se connecter";
    font-size: 0.72rem;
  }

  .marketplace-search {
    gap: 10px;
    padding: 12px;
  }

  .search-input-shell {
    padding: 12px 14px 11px;
    border-radius: 18px;
  }

  .search-helper {
    font-size: 0.8rem;
  }

  .marketplace-search input {
    min-height: 32px;
    font-size: 1.02rem;
  }

  .marketplace-search > button {
    min-height: 52px;
    border-radius: 18px;
    font-size: 0.94rem;
  }

  .footer-logo {
    height: 42px;
  }

  h1 {
    font-size: 2.1rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-showcase-stage {
    --hero-showcase-scale: 0.62;
    height: calc(418px * var(--hero-showcase-scale));
  }

  .hero-showcase-composition {
    position: absolute;
  }

  .hero-mini-stack {
    display: grid;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
    min-width: 0;
  }

  .section-heading h2,
  .cta-card h2 {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .hero-text,
  .section-heading p {
    line-height: 1.58;
  }

  .mission-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .mission-toolbar select {
    width: 100%;
  }

  .search-showcase {
    padding: 12px;
  }

  .discovery-toolbar {
    gap: 8px;
  }

  .featured-talent-card img {
    height: 220px;
  }

  .home-process-figure {
    min-height: 380px;
  }

  .home-process-content {
    grid-template-rows: none;
    gap: 14px;
  }

  .home-process-item h3 {
    font-size: 1.46rem;
  }

  .featured-talent-body,
  .audience-card,
  .home-step-card {
    padding: 20px;
  }

  .featured-talent-header,
  .featured-talent-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .mission-card footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .subhero-card,
  .content-card,
  .dashboard-card,
  .auth-card,
  .form-card {
    padding: 20px;
    border-radius: 22px;
  }

  .search-showcase-copy {
    min-height: auto;
  }

  .swipe-deck {
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding: 0;
  }

  .swipe-card,
  .swipe-empty {
    min-width: 0;
    transform: none;
  }

  .photo-strip {
    grid-template-rows: 140px 140px;
  }
}

@media (max-width: 460px) {
  :root {
    --nav-height: 58px;
  }

  .topbar {
    padding: 7px 8px;
  }

  .brand-logo {
    height: 32px;
    max-width: 112px;
  }

  .topbar-links {
    gap: 4px 6px;
    font-size: 0.62rem;
  }

  .topbar-links a:last-child {
    position: relative;
    color: transparent;
    min-width: 18px;
  }

  .topbar-links a:last-child::after {
    position: absolute;
    inset: 0;
    content: "...";
    color: var(--muted);
  }

  .topbar-actions {
    font-size: 0.68rem;
  }

  .topbar-actions .button,
  .topbar-actions .button-secondary {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .topbar-actions .button-secondary {
    min-width: 94px;
  }

  .topbar-actions .button-secondary::after {
    content: "Se connecter";
    font-size: 0.68rem;
  }

  h1 {
    font-size: 1.85rem;
  }

  .hero-showcase {
    margin-bottom: 22px;
  }

  .hero-showcase-stage {
    --hero-showcase-scale: 0.5;
    height: calc(410px * var(--hero-showcase-scale));
  }
}

@media (max-width: 390px) {
  .topbar-links {
    gap: 3px 5px;
    font-size: 0.58rem;
  }

  .topbar-links a:first-child,
  .topbar-links a:nth-child(2) {
    position: relative;
    color: transparent;
  }

  .topbar-links a:first-child::after {
    position: absolute;
    inset: 0;
    content: "Free.";
    color: var(--muted);
  }

  .topbar-links a:nth-child(2)::after {
    position: absolute;
    inset: 0;
    content: "Ent.";
    color: var(--muted);
  }

  .topbar-actions .button-secondary {
    min-width: 88px;
  }

  .topbar-actions .button-secondary::after {
    font-size: 0.64rem;
  }
}

/* Final hero width audit fixes:
   keep the large layout untouched, but correct the two shrinking ranges
   where the composition drifts away from the right edge before stacking. */
@media (max-width: 1420px) and (min-width: 1281px) {
  .home-page .hero .hero-showcase {
    margin-left: -56px;
  }
}

@media (max-width: 1280px) and (min-width: 1201px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 560px);
    gap: clamp(16px, 2vw, 24px);
  }

  .home-page .hero .hero-showcase {
    justify-content: flex-start;
    margin-left: 74px;
    margin-bottom: 34px;
  }

  .home-page .hero .hero-showcase-stage {
    --hero-showcase-scale: 0.72;
    flex: none;
    width: calc(590px * var(--hero-showcase-scale));
    height: calc(430px * var(--hero-showcase-scale));
    min-height: 0;
  }

  .home-page .hero .hero-showcase-composition {
    left: 0;
    transform-origin: 0 0;
  }
}

@media (max-width: 1120px) and (min-width: 981px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 12px;
    align-items: center;
  }

  .home-page .hero-copy {
    max-width: 500px;
  }

  .home-page .hero-copy h1 {
    max-width: 460px;
    font-size: clamp(2.45rem, 3.7vw, 2.7rem);
    line-height: 1;
    margin-bottom: 24px;
    text-wrap: pretty;
  }

  .home-page .hero .hero-text {
    max-width: 390px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .home-page .hero .hero-showcase {
    width: auto;
    justify-content: flex-start;
    margin: 0 0 22px;
  }

  .home-page .hero .hero-showcase-stage {
    --hero-showcase-scale: 0.61;
    flex: none;
    width: calc(590px * var(--hero-showcase-scale));
    height: calc(430px * var(--hero-showcase-scale));
    min-height: 0;
  }

  .home-page .hero .hero-showcase-composition {
    left: 0;
    transform-origin: 0 0;
  }

  .home-page .hero-search-wide {
    margin-top: 2px;
  }
}

@media (max-width: 980px) and (min-width: 721px) {
  .home-page .hero-grid {
    gap: 10px;
  }

  .home-page .hero-copy {
    max-width: none;
    width: 100%;
  }

  .home-page .hero-copy h1 {
    max-width: none;
    margin-bottom: 24px;
  }

  .home-page .hero .hero-text {
    max-width: none;
  }

  .home-page .hero .hero-showcase {
    margin: 2px 0 18px;
  }

  .home-page .hero .hero-showcase-stage {
    --hero-showcase-scale: 0.68;
    width: calc(590px * var(--hero-showcase-scale));
    height: calc(430px * var(--hero-showcase-scale));
  }

  .home-page .hero .hero-showcase-composition {
    left: 0;
  }

  .home-page .hero-search-wide {
    margin-top: 2px;
  }
}

@media (max-width: 720px) {
  .home-page .hero-copy,
  .home-page .hero-copy h1,
  .home-page .hero .hero-text {
    max-width: none;
    width: 100%;
  }
}

/* Give very wide desktop screens a little more breathing room without
   changing the fixed-size hero card composition. */
@media (min-width: 1800px) {
  .home-page {
    --hero-content-max-width: 1600px;
    --section-content-max-width: 1600px;
  }

  .home-page .hero-showcase {
    margin-left: -182px;
  }
}
