:root {
  --orange: #e7472a;
  --cream: #f7f7f8;
  --white: #ffffff;
  --charcoal: #151515;
  --muted: #767676;
  --soft: #ffffff;
  --line: rgba(21, 21, 21, 0.14);
  --shadow: 0 12px 0 rgba(21, 21, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(21, 21, 21, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 72px 72px;
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

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

:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--charcoal);
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 28px));
  padding: 10px 12px 10px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(21, 21, 21, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand-mark {
  color: var(--orange);
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

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

.nav-links {
  justify-content: center;
}

.nav-links a,
.header-actions a {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a:hover,
.header-actions a:hover {
  color: var(--orange);
}

.nav-cta,
.button,
.creator-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button-orange,
.creator-card button {
  background: var(--orange);
  color: var(--white);
}

.button-dark {
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
}

.button-light {
  background: var(--cream);
  color: var(--orange);
}

.button-outline {
  background: transparent;
  color: var(--cream);
}

.button:hover,
.nav-cta:hover,
.creator-card button:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.hero-market {
  min-height: 100svh;
  padding-top: 116px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    var(--orange);
  background-size: 72px 72px;
  color: var(--cream);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto clamp(28px, 5vw, 58px);
  gap: clamp(28px, 6vw, 72px);
}

.role-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1180px, 100%);
  min-height: 360px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(232, 229, 223, 0.34);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(21, 21, 21, 0.18);
}

.partner-strip {
  width: min(1320px, 100%);
  margin: 0 auto clamp(34px, 5vw, 54px);
  overflow: hidden;
}

.partner-strip-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.partner-strip-heading .eyebrow {
  margin-bottom: 0;
  color: var(--cream);
}

.partner-strip-heading span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.partner-marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 32px;
  min-width: max-content;
  padding-right: 32px;
  animation: partner-scroll 50s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-track img {
  width: 280px;
  height: 168px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  box-shadow: 10px 10px 0 rgba(21, 21, 21, 0.18);
  object-fit: contain;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

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

.role-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: clamp(24px, 4vw, 48px);
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.role-card::before,
.role-card::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
}

.role-company::before {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.78), rgba(21, 21, 21, 0.42)),
    linear-gradient(rgba(231, 71, 42, 0.28), rgba(231, 71, 42, 0.28)),
    url("assets/services/street-discovery.jpeg") center 42% / cover;
}

.role-influencer::before {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.72), rgba(21, 21, 21, 0.46)),
    linear-gradient(rgba(231, 71, 42, 0.2), rgba(231, 71, 42, 0.2)),
    url("assets/services/payphone-creator.jpeg") center 32% / cover;
}

.role-card::after {
  background: rgba(231, 71, 42, 0.12);
  opacity: 0;
  transition: opacity 180ms ease;
}

.role-card:hover::after {
  opacity: 1;
}

.role-card span,
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-style: italic;
  font-weight: 950;
  text-transform: uppercase;
}

.role-card span {
  color: var(--cream);
}

.role-card strong {
  max-width: 520px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.role-card small {
  max-width: 460px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 800;
}

.hero-copy {
  width: 100%;
  margin: 0;
  text-align: left;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-size: clamp(38px, 6.5vw, 84px);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-copy h1 span {
  display: block;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

.hero-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 820px;
  margin: 22px auto 0;
  color: rgba(21, 21, 21, 0.76);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 800;
}

.hero-copy .eyebrow {
  color: var(--cream);
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy .hero-actions {
  justify-content: flex-start;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 32px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.hero-stats dt {
  color: var(--white);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-product {
  position: relative;
}

.hero-product::before {
  position: absolute;
  inset: 28px -18px -18px 18px;
  background: rgba(21, 21, 21, 0.16);
  border-radius: 8px;
  content: "";
}

.product-window {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 12px 12px 0 rgba(21, 21, 21, 0.16);
  color: var(--charcoal);
  backdrop-filter: blur(18px);
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}

.window-bar span {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
}

.window-label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-window > strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.match-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 12px;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 6px;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.avatar-camera {
  background-image: url("assets/hero-camera.webp");
}

.avatar-influencer {
  background-image: url("assets/hero-influencer.webp");
}

.match-card b,
.match-card span,
.match-card em {
  display: block;
}

.match-card b {
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.match-card span {
  color: rgba(21, 21, 21, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.match-card em {
  color: var(--orange);
  font-style: normal;
  font-weight: 950;
}

.escrow-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  margin-top: 14px;
  background: var(--charcoal);
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
}

.escrow-pill span {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(231, 71, 42, 0.18);
}

.ai-search,
.management-section {
  background: var(--soft);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto clamp(32px, 6vw, 72px);
}

.section-heading h2 {
  max-width: 980px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
}

.search-console {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 42px);
  background: var(--charcoal);
  border-radius: 8px;
  color: var(--cream);
  box-shadow: 10px 10px 0 rgba(21, 21, 21, 0.18);
}

.console-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.console-top span {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
}

.search-console label {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 950;
}

.search-console textarea {
  width: 100%;
  min-height: 150px;
  padding: 22px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 229, 223, 0.2);
  border-radius: 6px;
  color: var(--white);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 850;
  line-height: 1.25;
}

.filter-row,
.console-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.filter-row button {
  min-height: 38px;
  padding: 0 14px;
  background: var(--cream);
  border: 0;
  border-radius: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.console-actions span {
  color: rgba(232, 229, 223, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.creator-market {
  background: var(--cream);
}

.market-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  width: min(1240px, 100%);
  margin: 0 auto;
  gap: 28px;
}

.filters {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(21, 21, 21, 0.08);
}

.filters h2 {
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 34px;
}

.filters div,
.mock-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.filters label,
.mock-form label {
  color: rgba(21, 21, 21, 0.7);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.filters input,
.filters select,
.mock-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--charcoal);
  font-weight: 800;
}

.market-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.market-header h2 {
  max-width: 720px;
  font-size: clamp(38px, 6vw, 80px);
}

.market-header a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.creator-card {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(21, 21, 21, 0.08);
}

.creator-card.premium {
  border-color: var(--orange);
}

.creator-photo {
  min-height: 250px;
  border-radius: 6px;
}

.creator-photo.fitness {
  background:
    linear-gradient(rgba(21, 21, 21, 0.08), rgba(231, 71, 42, 0.45)),
    url("assets/services/street-style-campaign.jpeg") center 35% / cover;
}

.creator-photo.food {
  background:
    linear-gradient(rgba(21, 21, 21, 0.05), rgba(231, 71, 42, 0.5)),
    url("assets/services/beauty-editorial.jpeg") center 45% / cover;
}

.creator-photo.fashion {
  background:
    linear-gradient(rgba(21, 21, 21, 0.08), rgba(231, 71, 42, 0.46)),
    url("assets/services/fashion-launch.jpeg") center 25% / cover;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.badge-row span {
  padding: 6px 9px;
  background: rgba(231, 71, 42, 0.1);
  border-radius: 4px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-card h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 26px;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-card p {
  margin: 4px 0 16px;
  color: rgba(21, 21, 21, 0.62);
  font-weight: 800;
}

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

.creator-card dl div {
  padding: 10px;
  background: var(--soft);
  border-radius: 4px;
}

.creator-card dt {
  color: rgba(21, 21, 21, 0.54);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-card dd {
  margin: 2px 0 0;
  color: var(--orange);
  font-weight: 950;
}

.creator-card button {
  width: 100%;
  border: 0;
}

.checkout-flow,
.dashboards {
  background: var(--charcoal);
  color: var(--cream);
}

.checkout-flow .section-heading p:not(.eyebrow),
.dashboards .section-heading p:not(.eyebrow) {
  color: rgba(232, 229, 223, 0.75);
}

.flow-grid,
.feature-grid,
.dashboard-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 14px;
}

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

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

.flow-grid article,
.feature-grid article,
.dashboard-card {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(232, 229, 223, 0.08);
  border: 1px solid rgba(232, 229, 223, 0.18);
  border-radius: 8px;
}

.flow-grid span {
  color: var(--orange);
  font-weight: 950;
}

.flow-grid h3,
.feature-grid h3,
.dashboard-card h3 {
  margin: 14px 0;
  color: inherit;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.flow-grid p,
.feature-grid p {
  margin: 0;
  color: rgba(232, 229, 223, 0.76);
  font-weight: 800;
}

.how-section,
.onboarding {
  background: var(--orange);
  color: var(--cream);
}

.how-section .eyebrow,
.onboarding .eyebrow,
.final-cta .eyebrow {
  color: var(--cream);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: clamp(30px, 6vw, 84px);
}

.section-grid p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(19px, 2.4vw, 30px);
  font-weight: 850;
}

.mock-form {
  padding: 24px;
  background: var(--cream);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(21, 21, 21, 0.16);
}

.dashboard-card {
  background: var(--cream);
  color: var(--charcoal);
}

.dashboard-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dashboard-card li {
  padding: 12px 14px;
  background: var(--white);
  border-radius: 4px;
  color: rgba(21, 21, 21, 0.72);
  font-weight: 850;
}

.final-cta {
  display: grid;
  min-height: 82svh;
  background:
    linear-gradient(rgba(21, 21, 21, 0.34), rgba(21, 21, 21, 0.78)),
    url("assets/services/payphone-creator.jpeg") center 34% / cover;
  color: var(--white);
  place-items: center;
  text-align: center;
}

.final-cta > div {
  width: min(980px, 100%);
}

.final-cta h2 {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  border-top: 1px solid rgba(232, 229, 223, 0.18);
  color: var(--cream);
}

.site-footer p,
.site-footer a:not(.brand-mark) {
  margin: 0;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-hero .hero-copy h1 {
  white-space: normal;
}

.product-hero .hero-copy h1 span {
  white-space: normal;
}

.command-window strong {
  max-width: 540px;
}

.pipeline-list,
.mini-feature-list,
.status-board {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pipeline-list span,
.mini-feature-list span,
.status-board span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.light-list span {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.product-section .section-heading p:not(.eyebrow) {
  margin-right: 0;
  margin-left: 0;
}

.platform-modules {
  background: var(--cream);
}

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

.module-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(21, 21, 21, 0.08);
}

.module-media {
  position: relative;
  height: clamp(260px, 26vw, 360px);
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
}

.module-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.08), rgba(21, 21, 21, 0.48)),
    linear-gradient(135deg, rgba(231, 71, 42, 0.42), rgba(231, 71, 42, 0.04) 58%);
  content: "";
}

.module-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  transform: scale(1.02);
}

.module-media-brand img {
  object-position: center 42%;
}

.module-media-creator img {
  object-position: center 32%;
}

.module-media-operations img {
  object-position: center 38%;
}

.module-media figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 6px 8px;
  background: rgba(21, 21, 21, 0.68);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.module-grid div {
  padding: 20px;
}

.module-grid span {
  color: var(--orange);
  font-size: 12px;
  font-style: italic;
  font-weight: 950;
  text-transform: uppercase;
}

.module-grid h3 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.module-grid p {
  margin: 0;
  color: rgba(21, 21, 21, 0.68);
  font-weight: 850;
}

.enhanced-console {
  display: grid;
  gap: 18px;
}

.free-search-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 229, 223, 0.2);
  border-radius: 6px;
}

.free-search-banner strong,
.free-search-banner span {
  color: var(--white);
  font-weight: 950;
}

.free-search-banner span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

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

.ai-result-card {
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(232, 229, 223, 0.2);
  border-radius: 8px;
  color: var(--charcoal);
}

.creator-topline {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
}

.initial-avatar {
  display: inline-grid;
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
  place-items: center;
}

.ai-result-card h3,
.ai-result-card p {
  margin: 0;
}

.ai-result-card h3 {
  font-size: 20px;
}

.ai-result-card p {
  margin-top: 8px;
  color: rgba(21, 21, 21, 0.66);
  font-weight: 800;
}

.score-row,
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.score-row span,
.metric-row span {
  padding: 7px 9px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.registration-section {
  background: var(--white);
}

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

.dense-form select,
.wizard-form select,
.wizard-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--charcoal);
  font-weight: 800;
}

.pricing-section {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.pricing-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(21, 21, 21, 0.08);
}

.pricing-grid article span,
.pricing-grid article a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-grid article h3 {
  margin-top: 18px;
}

.pricing-grid article p {
  color: rgba(21, 21, 21, 0.7);
  font-weight: 850;
}

.featured-plan {
  background: var(--charcoal) !important;
  color: var(--white);
}

.featured-plan p {
  color: rgba(255, 255, 255, 0.76) !important;
}

.wizard-form {
  display: grid;
  gap: 16px;
}

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

.wizard-tabs button {
  min-height: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.wizard-tabs button.active {
  background: var(--orange);
  color: var(--white);
}

.wizard-pane {
  display: none;
  gap: 12px;
}

.wizard-pane.active {
  display: grid;
}

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

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.checkout-card {
  align-self: start;
  padding: 24px;
  background: var(--cream);
  border: 1px solid rgba(232, 229, 223, 0.24);
  border-radius: 8px;
  color: var(--charcoal);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.18);
}

.checkout-card h3 {
  margin-bottom: 20px;
}

.checkout-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.checkout-card .total {
  color: var(--orange);
  font-size: 20px;
}

.dashboard-product-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.dashboard-preview-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(232, 229, 223, 0.18);
  border-radius: 8px;
}

.dashboard-preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.dashboard-board {
  display: grid;
  gap: 14px;
}

.dashboard-board .status-board span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 229, 223, 0.18);
  color: var(--cream);
}

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

.creator-card button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .role-split,
  .hero-shell,
  .market-layout,
  .section-grid,
  .checkout-layout,
  .dashboard-product-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p:not(.eyebrow),
  .hero-stats {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy .hero-actions {
    justify-content: center;
  }

  .filters {
    position: static;
  }

  .creator-grid,
  .flow-grid,
  .pricing-grid,
  .module-grid,
  .ai-results-grid,
  .compact-flow,
  .compact-dashboard {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding-left: 16px;
  }

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

  .brand-mark {
    font-size: 28px;
  }

  .role-card {
    min-height: 360px;
  }

  .hero-market {
    padding-top: 104px;
  }

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

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

  .partner-track {
    gap: 18px;
    padding-right: 18px;
  }

  .partner-track img {
    width: 190px;
    height: 116px;
    padding: 16px;
  }

  .match-card {
    grid-template-columns: 48px 1fr;
  }

  .match-card em {
    grid-column: 2;
  }

  .search-console textarea {
    font-size: 18px;
  }

  .market-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .creator-card dl {
    grid-template-columns: 1fr;
  }

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

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

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

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation-duration: 120s;
  }
}
