:root {
  color-scheme: dark;
  --ink: #f4fbf7;
  --muted: #a8b8b0;
  --line: rgba(222, 241, 230, 0.14);
  --paper: #0a100d;
  --panel: #121a16;
  --panel-soft: #16221c;
  --deep: #050806;
  --green: #3ee27e;
  --green-dark: #19b65d;
  --blue: #69a2ff;
  --gold: #f7c948;
  --rose: #ff6f9c;
  --gradient-primary: linear-gradient(135deg, #32e67d 0%, #22c8a0 48%, #5c8dff 100%);
  --gradient-secondary: linear-gradient(135deg, #192720 0%, #10243a 58%, #30244f 100%);
  --gradient-warm: linear-gradient(135deg, #f7c948 0%, #ff8f70 54%, #ff6f9c 100%);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% -6%, rgba(62, 226, 126, 0.18), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(105, 162, 255, 0.14), transparent 30%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 10, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 128px;
}

.brand img {
  width: 132px;
  height: auto;
  display: block;
}

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

.desktop-nav a,
.ghost-link,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.75em;
  color: var(--muted);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 230px;
  display: none;
  padding: 12px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 12, 18, 0.98);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--green);
}

.desktop-nav a:hover,
.ghost-link:hover,
.site-footer a:hover {
  color: var(--ink);
}

.account-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(62, 226, 126, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(62, 226, 126, 0.18), rgba(36, 99, 235, 0.12)),
    rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.account-icon-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-icon-link:hover {
  transform: translateY(-1px);
  border-color: rgba(62, 226, 126, 0.64);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(62, 226, 126, 0.64);
  border-radius: 7px;
  background: var(--gradient-primary);
  color: #06100b;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(34, 200, 160, 0.22);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(105, 162, 255, 0.76);
  filter: saturate(1.08) brightness(1.05);
  box-shadow: 0 16px 38px rgba(105, 162, 255, 0.28);
}

.button.secondary {
  border-color: rgba(244, 251, 247, 0.18);
  background: var(--gradient-secondary);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  min-height: calc(100vh - 73px);
  padding: clamp(52px, 7vw, 96px) clamp(20px, 4vw, 64px) 36px;
  background:
    linear-gradient(135deg, rgba(21, 153, 71, 0.12), transparent 36%),
    radial-gradient(circle at 86% 8%, rgba(245, 184, 50, 0.24), transparent 28%),
    var(--paper);
}

.creator-hero,
.brand-hero,
.jobs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  min-height: calc(100vh - 73px);
  padding: clamp(52px, 7vw, 96px) clamp(20px, 4vw, 64px) 44px;
  background:
    linear-gradient(135deg, rgba(36, 99, 235, 0.1), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(21, 153, 71, 0.24), transparent 28%),
    var(--paper);
}

.brand-hero {
  background:
    linear-gradient(135deg, rgba(21, 153, 71, 0.13), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(245, 184, 50, 0.24), transparent 28%),
    var(--paper);
}

.jobs-hero {
  background:
    linear-gradient(135deg, rgba(36, 99, 235, 0.1), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(245, 184, 50, 0.24), transparent 28%),
    var(--paper);
}

.creator-snapshot,
.brand-snapshot,
.job-bid-preview {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.creator-snapshot h2,
.brand-snapshot h2,
.job-bid-preview h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.creator-snapshot p {
  color: var(--muted);
}

.creator-job-board {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding: clamp(60px, 8vw, 112px) clamp(20px, 4vw, 64px);
  background: var(--panel);
}

.creator-job-board p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.creator-brief-stack {
  display: grid;
  gap: 12px;
}

.creator-brief-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.creator-brief-stack article div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.creator-brief-stack span {
  color: var(--muted);
}

.creator-brief-stack b {
  color: var(--green);
  white-space: nowrap;
}

.campaign-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.campaign-row span {
  color: var(--muted);
  font-weight: 750;
}

.campaign-row strong {
  text-align: right;
}

.jobs-board {
  padding: clamp(60px, 8vw, 112px) clamp(20px, 4vw, 64px);
  background: var(--panel);
}

.jobs-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.jobs-toolbar h2 {
  margin-bottom: 0;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  color: var(--muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.filter-button.active {
  border-color: var(--ink);
  background: var(--deep);
  color: #ffffff;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 0.72fr);
  gap: 20px;
  align-items: start;
}

.jobs-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.jobs-sidebar p {
  color: var(--muted);
}

.side-stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.side-stat strong,
.side-stat span {
  display: block;
}

.side-stat strong {
  font-size: 2rem;
  line-height: 1;
}

.side-stat span {
  color: var(--muted);
  font-weight: 750;
}

.job-list {
  display: grid;
  gap: 16px;
}

.job-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}

.job-card-header,
.job-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.job-type {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
}

.job-type.affiliate {
  background: var(--blue);
}

.job-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.job-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.job-brand {
  font-weight: 850;
}

.job-uuid {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.job-offer {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 7px;
  background: var(--panel-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.transparency-grid span {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.transparency-grid strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.job-deliverables {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

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

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 2px;
}

.share-actions span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.share-actions a,
.share-actions button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.share-actions a:hover,
.share-actions button:hover {
  border-color: var(--green);
  background: rgba(21, 153, 71, 0.14);
  color: var(--green-dark);
}

.share-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.job-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background:
    radial-gradient(circle at 18% 12%, rgba(43, 212, 138, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(21, 153, 71, 0.12), rgba(36, 99, 235, 0.08) 48%, transparent 72%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.job-detail-hero h1 {
  max-width: 900px;
  margin-top: 16px;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
}

.job-detail-summary,
.job-detail-side .jobs-sidebar {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.job-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 22px;
  align-items: start;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background: var(--bg);
}

.job-detail-main {
  display: grid;
  gap: 16px;
}

.job-detail-main section {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.job-detail-main h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
}

.job-detail-main p,
.question-list {
  color: var(--muted);
}

.question-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  font-weight: 650;
}

.job-detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.transparency-grid.detail {
  grid-template-columns: 1fr;
}

.rich-text {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.72;
}

.job-hero-brief {
  max-width: 820px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(43, 212, 138, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 1.02rem;
}

.rich-text ul,
.rich-text ol {
  margin: 0;
  padding-left: 22px;
}

.rich-text a,
.job-link-list a {
  color: var(--green);
  font-weight: 800;
}

.job-media-card {
  display: grid;
  gap: 10px;
}

.job-media-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(43, 212, 138, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(43, 212, 138, 0.16), rgba(36, 99, 235, 0.12)),
    rgba(255, 255, 255, 0.04);
  text-align: center;
}

.job-media-placeholder span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #06100b;
  font-weight: 950;
  font-size: 1.35rem;
}

.job-media-placeholder strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.job-media-placeholder small {
  color: var(--muted);
  font-weight: 800;
}

.campaign-row.highlight {
  border-color: rgba(43, 212, 138, 0.32);
  background: rgba(43, 212, 138, 0.08);
}

.job-hero-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.job-image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.job-image-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.job-link-list {
  display: grid;
  gap: 8px;
  word-break: break-word;
}

.workflow-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background:
    linear-gradient(135deg, rgba(36, 99, 235, 0.1), transparent 34%),
    var(--paper);
}

.workflow-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.workflow-card,
.workflow-panel,
.workflow-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}

.workflow-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 22px;
  align-items: start;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background: var(--panel);
}

.workflow-panel,
.workflow-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.muted-copy {
  color: var(--muted);
  line-height: 1.6;
}

.check-grid {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.check-grid label {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
}

.check-grid input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.messages-layout,
.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.3fr) minmax(0, 0.7fr);
  gap: 20px;
  align-items: start;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background: var(--panel);
}

.message-panel,
.message-thread-panel,
.message-composer-panel,
.dashboard-panel,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}

.message-panel,
.message-thread-panel,
.message-composer-panel,
.dashboard-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.message-composer-panel,
.dashboard-panel.wide {
  grid-column: 1 / -1;
}

.messages-toolbar,
.dashboard-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.messages-toolbar h2,
.dashboard-toolbar h2 {
  margin-bottom: 0;
}

.messages-toolbar span {
  color: var(--muted);
  font-weight: 850;
}

.message-thread {
  display: grid;
  gap: 12px;
  min-height: 280px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.empty-state {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.message-bubble {
  display: grid;
  gap: 8px;
  max-width: 760px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.message-bubble.creator {
  margin-left: auto;
  background: var(--panel-soft);
}

.message-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.message-meta strong {
  color: var(--ink);
}

.message-job {
  margin: 0;
  color: var(--green-dark);
  font-weight: 850;
}

.message-bubble p {
  margin: 0;
}

.message-bubble small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

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

.dashboard-card {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.dashboard-card strong {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.dashboard-card span,
.dashboard-card p {
  color: var(--muted);
  font-weight: 750;
}

.dashboard-list {
  display: grid;
  gap: 10px;
}

.dashboard-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.app-body {
  background:
    radial-gradient(circle at 12% 0%, rgba(62, 226, 126, 0.12), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(105, 162, 255, 0.1), transparent 30%),
    var(--paper);
}

.app-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.app-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
  height: 100vh;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #07110c 0%, #0d1712 58%, #060907 100%);
  color: var(--ink);
}

.app-brand img {
  width: 136px;
  max-height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.app-account {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.app-account span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #d7ff7b;
  color: #101713;
  font-weight: 950;
}

.app-account strong,
.app-account small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-account small {
  color: rgba(255, 255, 255, 0.68);
}

.app-nav {
  display: grid;
  gap: 6px;
  align-content: start;
}

.app-nav button {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.app-nav button.active,
.app-nav button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.app-nav span {
  text-align: center;
}

.app-sidebar-actions {
  display: grid;
  gap: 10px;
}

.app-main {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: 24px;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.07);
}

.app-topbar h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.app-topbar p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-weight: 750;
}

.app-topbar .eyebrow {
  margin-bottom: 8px;
  color: var(--green-dark);
}

.app-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.app-section {
  display: none;
  gap: 18px;
}

.app-section.active {
  display: grid;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.billing-status-grid {
  display: grid;
  gap: 12px;
}

.billing-status-grid article {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.billing-status-grid span {
  color: var(--muted);
  font-weight: 850;
}

.billing-status-grid strong {
  font-size: 1.2rem;
}

.billing-status-grid small {
  color: var(--muted);
  font-weight: 700;
}

.launch-checklist-panel {
  background:
    linear-gradient(135deg, rgba(215, 255, 123, 0.08), transparent 42%),
    var(--panel);
}

.launch-progress {
  display: grid;
  min-width: 116px;
  justify-items: end;
  gap: 2px;
}

.launch-progress strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.launch-progress span {
  color: var(--muted);
  font-weight: 850;
}

.progress-track {
  overflow: hidden;
  height: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d7ff7b, #3ee27e, #69a2ff);
  transition: width 220ms ease;
}

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

.launch-checklist article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.launch-checklist article > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: transparent;
  font-weight: 950;
}

.launch-checklist article.done > span {
  border-color: rgba(62, 226, 126, 0.72);
  background: rgba(62, 226, 126, 0.16);
  color: #d7ff7b;
}

.launch-checklist h3,
.launch-checklist p {
  margin: 0;
}

.launch-checklist p {
  color: var(--muted);
  font-weight: 720;
}

.launch-checklist .button {
  grid-column: 2;
  justify-self: start;
  margin-top: 4px;
}

.verification-box {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(215, 255, 123, 0.26);
  border-radius: 8px;
  background: rgba(215, 255, 123, 0.06);
}

.verification-box h3,
.verification-box p {
  margin: 0;
}

.verification-box p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 750;
}

.settings-form {
  align-content: start;
}

.code-block {
  overflow-x: auto;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101713;
  color: #d7ff7b;
  font-size: 0.88rem;
  line-height: 1.5;
}

.admin-layout {
  display: grid;
  gap: 20px;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background: var(--panel);
}

.admin-login-panel,
.admin-dashboard,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}

.admin-login-panel,
.admin-dashboard {
  display: grid;
  gap: 18px;
  padding: 24px;
}

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

.admin-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.admin-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
}

.admin-list article {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.admin-list strong,
.admin-list p,
.admin-list small {
  margin: 0;
}

.admin-list span,
.admin-list small {
  color: var(--muted);
}

.admin-stats {
  grid-template-columns: repeat(4, 1fr);
}

.auth-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background: var(--panel);
}

.auth-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}

.auth-form h2 {
  margin-bottom: 0;
}

.legal-hero {
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background: var(--paper);
}

.legal-hero h1 {
  max-width: 980px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  align-items: start;
  padding: clamp(44px, 6vw, 78px) clamp(20px, 4vw, 64px);
  background: var(--panel);
}

.legal-toc {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-toc h2 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.legal-toc a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 980px;
}

.legal-content section {
  display: grid;
  gap: 12px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.legal-content h3 {
  margin: 10px 0 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
  padding: 12px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.legal-table th {
  background: var(--deep);
  color: #ffffff;
}

.legal-table td {
  color: var(--muted);
}

.contract-summary {
  display: grid;
  gap: 10px;
}

.contract-summary div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contract-summary span {
  color: var(--muted);
  font-weight: 750;
}

.checkbox-line {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.checkbox-line input {
  width: auto;
  min-height: auto;
}

.directory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background:
    linear-gradient(135deg, rgba(21, 153, 71, 0.12), transparent 34%),
    var(--paper);
}

.directory-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 5.8vw, 5.5rem);
}

.directory-section {
  display: grid;
  gap: 20px;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background: var(--panel);
}

.directory-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(150px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.directory-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.directory-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.pagination-actions {
  display: flex;
  gap: 8px;
}

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

.creator-directory-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}

.creator-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.creator-card-head h3,
.creator-card-head p {
  margin-bottom: 0;
}

.creator-card-head p {
  color: var(--muted);
  font-weight: 750;
}

.creator-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.creator-metrics span {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.creator-metrics strong {
  color: var(--ink);
  font-size: 1rem;
}

.creator-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(50px, 7vw, 92px) clamp(20px, 4vw, 64px);
  background:
    linear-gradient(135deg, rgba(21, 153, 71, 0.12), transparent 34%),
    var(--paper);
}

.creator-card-head.large .preview-avatar {
  width: 96px;
  font-size: 1.6rem;
}

.creator-card-head.large h1 {
  margin-bottom: 10px;
}

.rating-display {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.rating-display strong {
  font-size: 3rem;
  line-height: 1;
}

.rating-display span {
  color: var(--muted);
  font-weight: 800;
}

.creator-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 20px;
}

.creator-metrics.profile {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.choice-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
}

.choice-card input {
  width: auto;
  min-height: auto;
}

.choice-card span {
  color: var(--muted);
}

.offer-choice-grid {
  margin-bottom: 6px;
}

.offer-choice {
  position: relative;
  padding: 18px 18px 18px 48px;
  background: linear-gradient(180deg, var(--panel), var(--panel-soft));
}

.offer-choice input {
  position: absolute;
  top: 20px;
  left: 18px;
  accent-color: var(--green);
}

.offer-choice:has(input:checked) {
  border-color: rgba(21, 153, 71, 0.55);
  box-shadow: 0 14px 34px rgba(21, 153, 71, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin: 30px 0 26px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.campaign-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
}

.card-kicker {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.campaign-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.04;
}

.budget {
  height: fit-content;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--deep);
  color: #ffffff;
  font-weight: 850;
}

.bid-list {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.bid {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.bid.active {
  border-color: rgba(21, 153, 71, 0.45);
  box-shadow: 0 12px 30px rgba(21, 153, 71, 0.12);
}

.avatar {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
}

.avatar.green {
  background: var(--green);
}

.avatar.gold {
  background: var(--gold);
  color: var(--ink);
}

.bid strong,
.bid span {
  display: block;
}

.bid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.featured-affiliate-offer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(21, 153, 71, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.16), rgba(255, 255, 255, 0.06));
}

.featured-affiliate-offer strong,
.featured-affiliate-offer span {
  display: block;
}

.featured-affiliate-offer span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.featured-affiliate-avatar {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  object-fit: cover;
  background: var(--panel);
}

.featured-affiliate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.featured-affiliate-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.escrow-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--deep);
  color: #ffffff;
}

.escrow-strip span {
  color: rgba(255, 255, 255, 0.74);
}

.logo-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.logo-band span {
  padding: 24px 12px;
  background: var(--panel);
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.section,
.marketplace,
.tracking-proof,
.creator-profile-section,
.lead-section,
.site-footer {
  padding: clamp(60px, 8vw, 112px) clamp(20px, 4vw, 64px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 90px);
}

.workflow-stack {
  display: grid;
  gap: 16px;
}

.workflow-visual {
  overflow: hidden;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.workflow-visual img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
  background: var(--deep);
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article,
.feature-grid article,
.pricing-grid article,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.steps article {
  padding: 22px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 900;
}

.steps p,
.feature-grid p,
.pricing-grid p,
.marketplace p,
.lead-copy p,
.site-footer p {
  color: var(--muted);
}

.feature-grid,
.bidding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--panel);
}

.creator-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--panel);
}

.creator-value-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.creator-value-grid p {
  color: var(--muted);
}

.creator-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(60px, 8vw, 112px) clamp(20px, 4vw, 64px);
  background: var(--deep);
  color: #ffffff;
}

.creator-proof .eyebrow {
  color: #89dfa9;
}

.creator-proof h2 {
  max-width: 650px;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-list span {
  color: rgba(255, 255, 255, 0.74);
}

.bidding {
  background: var(--panel);
}

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

.feature-grid article,
.bidding-grid article {
  padding: 24px;
  background: var(--paper);
}

.boosted-home {
  background:
    linear-gradient(135deg, rgba(105, 162, 255, 0.1), transparent 36%),
    var(--panel);
}

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

.boosted-job-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.boosted-job-card h3 {
  font-size: 1.35rem;
}

.boosted-job-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.creator-offer-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.boosted-job-card p {
  color: var(--muted);
}

.boosted-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.boosted-job-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.sponsored-rate-post {
  background:
    linear-gradient(135deg, rgba(137, 223, 169, 0.1), transparent 38%),
    var(--deep);
  color: #ffffff;
}

.sponsored-rate-post .section-heading {
  max-width: 920px;
}

.sponsored-rate-post .eyebrow {
  color: #89dfa9;
}

.rate-post-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.rate-post-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #07100d;
}

.rate-post-media img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}

.rate-post-copy {
  display: grid;
  gap: 18px;
}

.rate-post-topline,
.rate-post-meta,
.rate-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.rate-post-topline span,
.rate-post-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 850;
}

.rate-post-topline strong {
  color: #89dfa9;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.rate-post-copy h3 {
  max-width: 720px;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1;
}

.rate-post-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.rate-post-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rate-post-pricing div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.rate-post-pricing span,
.rate-post-pricing small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.rate-post-pricing strong {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.marketplace {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  background: var(--deep);
  color: #ffffff;
}

.tracking-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  background: var(--panel);
}

.tracking-proof-copy {
  max-width: 690px;
}

.tracking-proof-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.tracking-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tracking-proof-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(13, 31, 25, 0.12);
}

.tracking-proof-image {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
}

.tracking-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.tracking-card-header div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.tracking-card-header span,
.tracking-assets span,
.tracking-tag-preview span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.tracking-card-header strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.tracking-card-header b {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.tracking-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tracking-metrics div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.tracking-metrics strong {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
}

.tracking-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.tracking-assets {
  display: grid;
  gap: 10px;
}

.tracking-assets article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.tracking-assets article div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.tracking-assets b {
  color: var(--green);
  white-space: nowrap;
}

.tracking-tag-preview {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(13, 31, 25, 0.12);
  border-radius: 8px;
  background: var(--deep);
  color: #ffffff;
}

.tracking-tag-preview span {
  color: rgba(255, 255, 255, 0.68);
}

.tracking-tag-preview code {
  overflow-wrap: anywhere;
  color: #b7f3ca;
  font-size: 0.9rem;
}

.marketplace .eyebrow {
  color: #89dfa9;
}

.marketplace p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.marketplace-proof-stack {
  display: grid;
  gap: 16px;
}

.marketplace-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.marketplace-visual img {
  display: block;
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  object-position: center;
  background: var(--deep);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stats-grid div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

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

.stats-grid strong {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

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

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

.creator-profile-section {
  background: var(--panel);
}

.creator-intro {
  max-width: 930px;
  margin-bottom: 32px;
}

.creator-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.profile-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 20px;
  align-items: start;
}

.creator-profile-form,
.profile-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.creator-profile-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.form-section {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.field-grid,
.handle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.profile-preview {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.preview-avatar {
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 900;
}

.profile-preview h3 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.profile-preview p {
  margin-bottom: 0;
  color: var(--muted);
}

.preview-niche {
  color: var(--green-dark);
  font-weight: 850;
}

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

.preview-metrics span,
.preview-proof {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

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

.preview-handles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-handles span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--deep);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.inline-link {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wizard-shell[hidden] {
  display: none;
}

.wizard-shell {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.wizard-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.wizard-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.wizard-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
}

.wizard-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px 24px 0;
}

.wizard-progress span {
  height: 7px;
  border-radius: 999px;
  background: var(--line);
}

.wizard-progress span.active {
  background: var(--green);
}

.wizard-progress span.skipped {
  background: repeating-linear-gradient(45deg, var(--line), var(--line) 4px, var(--panel) 4px, var(--panel) 8px);
}

.job-progress {
  padding-top: 18px;
}

.creator-wizard-form,
.brand-wizard-form,
.job-wizard-form,
.bid-wizard-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.job-wizard-form {
  gap: 20px;
  background:
    linear-gradient(90deg, rgba(21, 153, 71, 0.07), transparent 32%),
    var(--panel);
}

.job-wizard-form .wizard-step {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.wizard-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.wizard-step legend {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.step-note {
  max-width: 680px;
  margin-top: -6px;
  color: var(--muted);
  font-weight: 650;
}

.post-offer-review {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.post-offer-review div {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  color: #ffffff;
}

.post-offer-review span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.post-offer-review strong {
  font-size: 1.05rem;
}

.job-recommendations-panel {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(21, 153, 71, 0.24);
  border-radius: 8px;
  background: var(--panel-soft);
}

.job-recommendations-panel[hidden] {
  display: none;
}

.job-recommendations-panel h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.recommendation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.post-success-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(62, 226, 126, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(62, 226, 126, 0.14), transparent 48%),
    var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.post-success-panel[hidden] {
  display: none;
}

.post-success-panel h3,
.post-success-panel p {
  margin: 0;
}

.post-success-panel h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.recommendation-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.recommendation-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.recommendation-head .avatar {
  width: 44px;
}

.recommendation-head h4,
.recommendation-head p {
  margin: 0;
}

.recommendation-head p {
  color: var(--muted);
  font-weight: 750;
}

.recommendation-head > strong {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.9rem;
}

.recommendation-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.recommendation-metrics span {
  display: grid;
  gap: 3px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.recommendation-metrics strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.match-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.match-reasons span {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(36, 99, 235, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.bid-modal {
  width: min(980px, 100%);
}

.bid-flow-form {
  background:
    linear-gradient(135deg, rgba(36, 99, 235, 0.08), transparent 34%),
    var(--panel);
}

.bid-brief-panel {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(36, 99, 235, 0.2);
  border-radius: 8px;
  background: var(--deep);
  color: #ffffff;
}

.bid-brief-panel .card-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.bid-brief-panel h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.bid-tip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bid-tip-grid span {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
}

.bid-tip-grid strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.bid-form-section {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.wizard-actions [hidden] {
  display: none;
}

.pricing-grid article {
  padding: 24px;
}

.price {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(62, 226, 126, 0.08), transparent 38%),
    var(--panel);
}

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

.forms.brand-only {
  grid-template-columns: minmax(0, 620px);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(222, 241, 230, 0.22);
  border-radius: 7px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-weight: 550;
}

input,
select {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 11px 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(21, 153, 71, 0.18);
  border-color: var(--green);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 750;
}

.form-status.error {
  color: #b42318;
}

.form-status.success {
  color: var(--green-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer small {
  grid-column: 1 / -1;
  color: var(--muted);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .creator-hero,
  .brand-hero,
  .jobs-hero,
  .creator-job-board,
  .job-detail-hero,
  .job-detail-body,
  .workflow-hero,
  .workflow-layout,
  .messages-layout,
  .dashboard-layout,
  .admin-grid,
  .legal-layout,
  .auth-layout,
  .directory-hero,
  .creator-profile-hero,
  .creator-profile-layout,
  .two-column,
  .marketplace,
  .tracking-proof,
  .rate-post-card,
  .creator-proof,
  .profile-workspace,
  .jobs-layout,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .bidding-grid,
  .boosted-job-grid,
  .rate-post-pricing,
  .tracking-metrics,
  .creator-value-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-preview {
    position: static;
  }

  .jobs-sidebar {
    position: static;
  }

  .legal-toc {
    position: static;
  }

  .job-detail-side {
    position: static;
  }

  .message-composer-panel,
  .dashboard-panel.wide {
    grid-column: auto;
  }

  .app-shell,
  .app-grid,
  .launch-checklist {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: relative;
    height: auto;
  }

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

  .app-topbar {
    display: grid;
  }

  .verification-box {
    display: grid;
  }

  .app-topbar-actions {
    justify-content: flex-start;
  }

  .directory-filters,
  .creator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .header-actions {
    display: none;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.6rem);
  }

  .hero {
    padding-top: 36px;
  }

  .hero-panel {
    min-width: 0;
  }

  .campaign-card,
  .escrow-strip,
  .bid {
    grid-template-columns: 1fr;
  }

  .bid {
    align-items: start;
  }

  .logo-band,
  .feature-grid,
  .bidding-grid,
  .boosted-job-grid,
  .rate-post-pricing,
  .creator-value-grid,
  .pricing-grid,
  .field-grid,
  .handle-grid,
  .choice-grid,
  .transparency-grid,
  .directory-filters,
  .creator-grid,
  .forms,
  .stats-grid,
  .tracking-assets article,
  .tracking-metrics,
  .post-offer-review,
  .recommendation-list,
  .post-success-panel,
  .recommendation-metrics,
  .dashboard-grid,
  .dashboard-list article,
  .admin-stats,
  .bid-tip-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .creator-brief-stack article {
    grid-template-columns: 1fr;
  }

  .logo-band span {
    padding: 16px 12px;
  }

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

  .wizard-shell {
    padding: 10px;
  }

  .wizard-header,
  .creator-wizard-form,
  .brand-wizard-form,
  .job-wizard-form,
  .bid-wizard-form {
    padding-inline: 16px;
  }

  .wizard-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .jobs-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .app-main {
    padding: 14px;
  }

  .app-sidebar {
    padding: 16px;
  }

  .app-nav {
    grid-template-columns: 1fr;
  }

  .app-topbar,
  .dashboard-panel {
    padding: 18px;
  }
}
