:root {
  --bg: #f6f7f7;
  --surface: #fff;
  --surface-2: #fafafa;
  --text: #14191f;
  --muted: #7b858e;
  --line: #e7eaec;
  --soft: #f0f1f2;
  --accent: #11171c;
  --green: #287c45;
  --green-bg: #dff1e3;
  --shadow: 0 1px 2px rgba(20, 25, 31, 0.04);
}
[data-theme="dark"] {
  --bg: #101316;
  --surface: #171b1f;
  --surface-2: #1d2227;
  --text: #f2f4f5;
  --muted: #98a1a9;
  --line: #2b3136;
  --soft: #252b30;
  --accent: #f3f4f5;
  --green: #77cf92;
  --green-bg: #193b25;
  --shadow: none;
}
* {
  box-sizing: border-box;
}
html {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  font-size: 12px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr);
  background: var(--bg);
}
.sidebar {
  height: 100vh;
  position: sticky;
  top: 0;
  background: var(--surface);
  border-right: 1px solid var(--line);
  padding: 15px 9px 12px;
  display: flex;
  flex-direction: column;
}
.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px 17px;
  font-weight: 800;
  letter-spacing: 2.5px;
  font-size: 11px;
}
.logo-mark {
  display: grid;
  grid-template-columns: repeat(2, 4px);
  gap: 2px;
  transform: rotate(45deg);
}
.logo-mark i {
  width: 4px;
  height: 4px;
  background: currentColor;
}
.side-nav {
  display: grid;
  gap: 3px;
}
.side-nav a {
  height: 31px;
  padding: 0 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #68737c;
  font-size: 10px;
  font-weight: 600;
}
.side-nav a:hover,
.side-nav a.active {
  color: var(--text);
  background: var(--soft);
  font-weight: 750;
}
.side-nav .count {
  margin-left: auto;
  background: var(--soft);
  border-radius: 9px;
  padding: 1px 5px;
  font-size: 8px;
}
.side-bottom {
  margin-top: auto;
}
.theme-row {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  color: var(--muted);
  font-size: 9px;
}
.theme-switch {
  width: 30px;
  height: 17px;
  border: 0;
  border-radius: 9px;
  background: #d9dddf;
  padding: 2px;
  cursor: pointer;
}
.theme-switch span {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #8f969b;
  transition: transform 0.18s;
}
[data-theme="dark"] .theme-switch {
  background: #58616a;
}
[data-theme="dark"] .theme-switch span {
  transform: translateX(13px);
}
.workspace {
  min-width: 0;
}
.topbar {
  height: 51px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.global-search {
  height: 30px;
  width: min(330px, 45vw);
  position: relative;
}
.global-search .icon {
  position: absolute;
  left: 10px;
  top: 8px;
  width: 13px;
  color: var(--muted);
}
.global-search input {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 5px;
  padding: 0 10px 0 30px;
  outline: none;
  font-size: 9px;
}
.top-spacer {
  flex: 1;
}
.button {
  height: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 5px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 700;
  cursor: pointer;
  font-size: 9px;
}
.button.dark {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}
.button.icon-only {
  width: 30px;
  padding: 0;
}
.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: url("../img/creator-contact-sheet.png") 0 0/400% 200%;
  border: 1px solid var(--line);
}
.content {
  padding: 17px 16px 28px;
  max-width: 1180px;
  margin: auto;
}
.heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 13px;
}
.heading h1 {
  font-size: 19px;
  letter-spacing: -0.55px;
  margin: 0 0 4px;
}
.heading p,
.breadcrumbs {
  color: var(--muted);
  margin: 0;
  font-size: 9px;
}
.filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 17px;
}
.select-button {
  height: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 5px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
}
.select-button .icon {
  width: 11px;
}
.filters .sort {
  margin-left: auto;
}
.view-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.view-tools b {
  font-size: 9px;
}
.segmented {
  display: flex;
  gap: 2px;
}
.segmented button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 5px 8px;
  font-size: 8px;
}
.segmented button.active {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
}
.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.creator-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.creator-photo {
  aspect-ratio: 1.18;
  background-image: url("../img/creator-contact-sheet.png");
  background-size: 400% 200%;
  background-position: 0 0;
}
.p2 {
  background-position: 33.333% 0;
}
.p3 {
  background-position: 66.666% 0;
}
.p4 {
  background-position: 100% 0;
}
.p5 {
  background-position: 0 100%;
}
.p6 {
  background-position: 33.333% 100%;
}
.p7 {
  background-position: 66.666% 100%;
}
.p8 {
  background-position: 100% 100%;
}
.creator-info {
  padding: 8px 9px 10px;
}
.creator-line {
  display: flex;
  align-items: flex-start;
}
.creator-name {
  font-weight: 750;
  font-size: 10px;
}
.creator-handle {
  display: block;
  color: var(--muted);
  font-size: 8px;
  margin-top: 2px;
}
.bookmark {
  margin-left: auto;
  color: var(--muted);
}
.networks {
  height: 14px;
  display: flex;
  gap: 3px;
  margin-top: -17px;
  margin-bottom: 5px;
  position: relative;
}
.net {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: #e63232;
  color: #fff;
  font-size: 7px;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.net.black {
  background: #15191c;
}
.net.blue {
  background: #368fd1;
}
.tags {
  display: flex;
  gap: 4px;
  margin: 7px 0;
}
.tag {
  background: var(--soft);
  color: var(--muted);
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 7px;
}
.creator-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 7px;
}
.creator-stats small {
  display: block;
  color: var(--muted);
  font-size: 7px;
}
.creator-stats b {
  font-size: 9px;
}
.price {
  border-top: 1px solid var(--line);
  margin-top: 7px;
  padding-top: 7px;
  font-size: 8px;
}
.price b {
  font-size: 10px;
}
.campaign-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.campaign-head h1 {
  margin: 2px 0 3px;
  font-size: 19px;
  letter-spacing: -0.5px;
}
.campaign-head .status {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  font-size: 8px;
  border-radius: 10px;
  padding: 3px 8px;
  vertical-align: 3px;
  margin-left: 5px;
}
.campaign-head p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}
.campaign-actions {
  margin-left: auto;
  display: flex;
  gap: 7px;
}
.tabs {
  height: 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  margin-bottom: 12px;
}
.tabs a {
  height: 32px;
  color: var(--muted);
  font-size: 8px;
  padding-top: 8px;
}
.tabs a.active {
  color: var(--text);
  border-bottom: 2px solid var(--text);
  font-weight: 750;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 9px;
}
.metric,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.metric {
  padding: 11px 12px;
  min-height: 77px;
}
.metric strong {
  display: block;
  font-size: 17px;
  margin: 2px 0;
}
.metric small {
  color: var(--muted);
  font-size: 7px;
}
.progress-bar {
  height: 4px;
  background: var(--soft);
  border-radius: 4px;
  margin-top: 7px;
}
.progress-bar i {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--text);
  border-radius: 4px;
}
.campaign-progress {
  padding: 10px 12px;
  margin-bottom: 9px;
}
.panel-title {
  font-size: 9px;
  font-weight: 750;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.stage-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
}
.stage-row:before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 6px;
  height: 1px;
  background: var(--line);
}
.stage {
  text-align: center;
  font-size: 7px;
  color: var(--muted);
  position: relative;
}
.stage i {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  margin: 0 auto 5px;
}
.stage.done i {
  background: var(--text);
  border-color: var(--text);
  box-shadow: inset 0 0 0 3px var(--text);
}
.stage b {
  display: block;
  color: var(--text);
  font-size: 8px;
}
.campaign-bottom {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.85fr;
  gap: 8px;
}
.panel {
  padding: 11px 12px;
}
.activity {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
}
.mini-avatar {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-image: url("../img/creator-contact-sheet.png");
  background-size: 400% 200%;
  flex: 0 0 auto;
}
.activity b {
  font-size: 7px;
}
.activity small {
  display: block;
  color: var(--muted);
  font-size: 6px;
}
.content-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.content-thumb {
  aspect-ratio: 0.82;
  border-radius: 5px;
  background-image: url("../img/creator-contact-sheet.png");
  background-size: 400% 200%;
}
.brief dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  margin: 0;
  font-size: 7px;
}
.brief dt {
  color: var(--muted);
}
.brief dd {
  margin: 0;
  text-align: right;
  font-weight: 650;
}
.landing {
  min-height: 100vh;
  min-height: 100svh;
  background: #0d1216;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 56px minmax(calc(100svh - 128px), auto) 72px;
}
.landing:before {
  content: "";
  position: absolute;
  inset: 56px 0 72px;
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 13, 17, 0.98) 0%,
      rgba(8, 13, 17, 0.88) 35%,
      rgba(8, 13, 17, 0.28) 65%,
      rgba(8, 13, 17, 0.14)
    ),
    url("../img/landing-hero.png");
  background-size: cover;
  background-position: center;
}
.landing-nav {
  height: 56px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #080c0f;
}
.landing-logo {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 800;
}
.landing-menu-button,
.landing-menu {
  display: none;
}
.landing-links {
  display: flex;
  gap: 25px;
  margin: auto;
  font-size: 8px;
  color: #d7dadd;
}
.landing-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.landing-actions a {
  font-size: 8px;
  padding: 8px 12px;
}
.landing-actions .light {
  background: #fff;
  color: #10151a;
  border-radius: 3px;
  font-weight: 700;
}
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  min-height: 0;
  margin: auto;
  padding: 62px 24px 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy {
  margin-top: -35px;
}
.hero-kicker {
  font-size: 8px;
  letter-spacing: 2.3px;
  color: #abb1b6;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 44px;
  line-height: 0.98;
  letter-spacing: -1.5px;
  font-weight: 400;
  margin: 0 0 18px;
  max-width: 420px;
}
.hero p {
  font-size: 11px;
  line-height: 1.6;
  color: #d2d5d7;
  width: 340px;
  max-width: 100%;
  margin: 0 0 25px;
}
.hero-buttons {
  display: flex;
  gap: 9px;
}
.hero-buttons a {
  border: 1px solid #50565a;
  border-radius: 4px;
  padding: 11px 16px;
  font-size: 8px;
}
.hero-buttons .primary {
  background: #fff;
  color: #151a1f;
  border-color: #fff;
  font-weight: 700;
}
.hero-features {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 16px;
}
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-right: 25px;
}
.hero-feature > span {
  color: #778088;
  font-size: 8px;
  padding-top: 2px;
}
.hero-feature b {
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-feature small {
  display: block;
  color: #abb1b6;
  font-size: 8px;
  line-height: 1.4;
}
.partner-bar {
  min-width: 0;
  height: 72px;
  position: relative;
  z-index: 2;
  background: #0b0f12;
  border-top: 1px solid #272c30;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
}
.partner-track {
  display: flex;
  flex: none;
  width: max-content;
  will-change: transform;
  animation: partner-marquee 42s linear infinite;
}
.partner-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 54px;
  padding-right: 54px;
}
.partner-group span {
  color: #c8cdd1;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.partner-group span:nth-child(3n + 2) {
  font-style: italic;
  font-weight: 650;
}
@keyframes partner-marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 850px) {
  .creator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .campaign-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .brief {
    grid-column: span 2;
  }
}
@media (max-width: 850px) {
  .app {
    grid-template-columns: 58px 1fr;
  }
  .sidebar {
    padding-inline: 7px;
  }
  .logo {
    padding-inline: 6px;
  }
  .logo-text,
  .side-nav a span,
  .theme-row span {
    display: none;
  }
  .side-nav a {
    justify-content: center;
  }
  .theme-row {
    justify-content: center;
  }
  .content {
    padding-inline: 10px;
  }
  .creator-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .campaign-actions {
    display: none;
  }
  .filters .sort {
    margin-left: 0;
  }
  .landing-nav {
    height: 64px;
    padding-inline: 20px;
    justify-content: space-between;
  }
  .landing-nav::after {
    content: "☰";
    position: absolute;
    z-index: 5;
    top: 17px;
    right: 28px;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
  }
  .landing-nav.menu-open::after {
    content: "×";
    top: 14px;
    right: 29px;
    font-size: 29px;
    font-weight: 300;
  }
  .landing-logo {
    font-size: 20px;
    letter-spacing: -0.7px;
    line-height: 1;
  }
  .landing-links,
  .landing-actions {
    display: none;
  }
  .landing-menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #343a3f;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 4;
    flex: 0 0 44px;
  }
  .landing .landing-nav .landing-menu-button {
    display: grid;
  }
  .landing-menu-button span {
    width: 18px;
    height: 1.5px;
    display: block;
    background: transparent;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }
  .menu-open .landing-menu-button span:first-child {
    transform: translateY(6.5px) rotate(45deg);
  }
  .menu-open .landing-menu-button span:nth-child(2) {
    opacity: 0;
  }
  .menu-open .landing-menu-button span:last-child {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .landing-menu {
    position: absolute;
    z-index: 3;
    top: 64px;
    left: 0;
    right: 0;
    min-height: calc(100svh - 64px);
    padding: 28px 20px 32px;
    background: rgba(8, 12, 15, 0.98);
    border-top: 1px solid #242a2f;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s;
  }
  .menu-open .landing-menu {
    display: grid;
    align-content: space-between;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .landing-menu nav {
    display: grid;
  }
  .landing-menu nav a {
    padding: 17px 0;
    border-bottom: 1px solid #242a2f;
    font-size: 25px;
    letter-spacing: -0.4px;
  }
  .landing-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
  }
  .landing-menu-actions a {
    min-height: 48px;
    border: 1px solid #3d4449;
    border-radius: 5px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 650;
  }
  .landing-menu-actions .light {
    border-color: #fff;
    background: #fff;
    color: #10151a;
  }
  .landing {
    grid-template-rows: 64px auto 78px;
  }
  .landing:before {
    inset: 64px 0 78px;
    background-image:
      linear-gradient(
        90deg,
        rgba(8, 13, 17, 0.96) 0%,
        rgba(8, 13, 17, 0.76) 54%,
        rgba(8, 13, 17, 0.22)
      ),
      url("../img/landing-hero.png");
    background-position: 61% center;
  }
  .hero {
    min-height: calc(100svh - 142px);
    padding: 58px 20px 36px;
    justify-content: flex-start;
  }
  .hero-copy {
    margin-top: 0;
  }
  .hero-kicker {
    font-size: 10px;
    letter-spacing: 2.2px;
    margin-bottom: 21px;
  }
  .hero h1 {
    font-size: clamp(48px, 14vw, 58px);
    line-height: 0.94;
    letter-spacing: -2px;
    margin-bottom: 25px;
  }
  .hero p {
    font-size: 15px;
    line-height: 1.6;
    width: min(360px, 100%);
    margin-bottom: 30px;
  }
  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 10px;
  }
  .hero-buttons a {
    min-height: 48px;
    padding: 0 12px;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 12px;
  }
  .hero-features {
    position: static;
    width: 100%;
    margin-top: 68px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 20px;
  }
  .hero-feature {
    gap: 12px;
  }
  .hero-feature b {
    font-size: 13px;
  }
  .hero-feature > span,
  .hero-feature small {
    font-size: 10px;
  }
  .partner-bar {
    height: 78px;
  }
  .partner-group {
    gap: 40px;
    padding-right: 40px;
  }
  .partner-group span {
    font-size: 18px;
  }
  .partner-track {
    animation-duration: 34s;
  }
}
@media (max-width: 420px) {
  .hero h1 {
    font-size: 45px;
  }
  .hero p {
    font-size: 14px;
  }
  .hero-buttons,
  .landing-menu-actions {
    grid-template-columns: 1fr;
  }
}
.segmented button {
  display: flex;
  align-items: center;
  gap: 4px;
}
.segmented button .icon {
  width: 11px;
  height: 11px;
}

/* Desktop sizing calibrated for Chrome at 100%. */
@media (min-width: 851px) {
  .app {
    grid-template-columns: 216px minmax(0, 1fr);
  }
  .sidebar {
    padding: 23px 13px 17px;
  }
  .logo {
    font-size: 16px;
    padding: 0 8px 25px;
  }
  .logo-mark {
    grid-template-columns: repeat(2, 5px);
  }
  .logo-mark i {
    width: 5px;
    height: 5px;
  }
  .side-nav {
    gap: 4px;
  }
  .side-nav a {
    height: 43px;
    padding: 0 12px;
    gap: 12px;
    font-size: 14px;
  }
  .side-nav .icon {
    width: 19px;
    height: 19px;
  }
  .side-nav .count {
    font-size: 10px;
  }
  .theme-row {
    height: 46px;
    padding: 0 12px;
    font-size: 12px;
  }
  .theme-switch {
    width: 38px;
    height: 21px;
    border-radius: 12px;
  }
  .theme-switch span {
    width: 17px;
    height: 17px;
  }
  [data-theme="dark"] .theme-switch span {
    transform: translateX(17px);
  }
  .topbar {
    height: 70px;
    padding: 0 22px;
    gap: 13px;
  }
  .global-search {
    height: 39px;
    width: min(470px, 43vw);
  }
  .global-search input {
    font-size: 12px;
    padding-left: 39px;
  }
  .global-search .icon {
    left: 12px;
    top: 10px;
    width: 17px;
  }
  .button {
    height: 39px;
    padding: 0 15px;
    font-size: 12px;
    border-radius: 6px;
  }
  .button.icon-only {
    width: 39px;
  }
  .user-avatar {
    width: 36px;
    height: 36px;
  }
  .content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 26px 24px 38px;
  }
  .heading {
    margin-bottom: 19px;
  }
  .heading h1 {
    font-size: 28px;
    margin-bottom: 6px;
  }
  .heading p,
  .breadcrumbs {
    font-size: 12px;
  }
  .filters {
    gap: 9px;
    margin-bottom: 23px;
  }
  .select-button {
    height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }
  .select-button .icon {
    width: 14px;
  }
  .view-tools {
    margin-bottom: 13px;
  }
  .view-tools b {
    font-size: 12px;
  }
  .segmented button {
    padding: 7px 10px;
    font-size: 11px;
  }
  .segmented button .icon {
    width: 14px;
    height: 14px;
  }
  .creator-grid {
    gap: 12px;
  }
  .creator-card {
    border-radius: 9px;
  }
  .creator-info {
    padding: 11px 12px 14px;
  }
  .creator-name {
    font-size: 14px;
  }
  .creator-handle {
    font-size: 11px;
  }
  .networks {
    height: 18px;
    margin-top: -22px;
    margin-bottom: 8px;
  }
  .net {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }
  .tags {
    gap: 5px;
    margin: 10px 0;
  }
  .tag {
    font-size: 9px;
    padding: 3px 6px;
  }
  .creator-stats {
    padding-top: 10px;
  }
  .creator-stats small {
    font-size: 9px;
  }
  .creator-stats b {
    font-size: 12px;
  }
  .price {
    margin-top: 10px;
    padding-top: 9px;
    font-size: 10px;
  }
  .price b {
    font-size: 13px;
  }
  .campaign-head {
    margin-bottom: 14px;
  }
  .campaign-head h1 {
    font-size: 28px;
  }
  .campaign-head p {
    font-size: 12px;
  }
  .campaign-head .status {
    font-size: 10px;
    padding: 4px 10px;
  }
  .tabs {
    height: 44px;
    gap: 30px;
    margin-bottom: 17px;
  }
  .tabs a {
    height: 44px;
    font-size: 11px;
    padding-top: 12px;
  }
  .metrics {
    gap: 11px;
    margin-bottom: 12px;
  }
  .metric {
    padding: 15px 17px;
    min-height: 105px;
  }
  .metric strong {
    font-size: 24px;
    margin: 4px 0;
  }
  .metric small {
    font-size: 10px;
  }
  .campaign-progress {
    padding: 14px 17px;
    margin-bottom: 12px;
  }
  .panel-title {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .stage {
    font-size: 9px;
  }
  .stage i {
    width: 14px;
    height: 14px;
  }
  .stage-row:before {
    top: 7px;
  }
  .stage b {
    font-size: 11px;
  }
  .campaign-bottom {
    gap: 11px;
  }
  .panel {
    padding: 15px 17px;
  }
  .activity {
    gap: 9px;
    padding: 7px 0;
  }
  .mini-avatar {
    width: 29px;
    height: 29px;
  }
  .activity b {
    font-size: 10px;
  }
  .activity small {
    font-size: 8px;
  }
  .brief dl {
    gap: 10px;
    font-size: 10px;
  }
  .landing-nav {
    height: 72px;
    padding: 0 max(48px, calc((100vw - 1320px) / 2));
  }
  .landing {
    grid-template-rows: 72px minmax(calc(100vh - 164px), auto) 92px;
  }
  .landing-logo {
    font-size: 18px;
  }
  .landing-links {
    font-size: 13px;
    gap: 43px;
  }
  .landing-actions {
    gap: 13px;
  }
  .landing-actions a {
    font-size: 13px;
    padding: 13px 19px;
  }
  .landing:before {
    inset: 72px 0 92px;
  }
  .hero {
    max-width: 1320px;
    min-height: 0;
    margin: auto;
    padding: 82px 48px 188px;
  }
  .hero-copy {
    margin-top: -18px;
  }
  .hero-kicker {
    font-size: 12px;
    margin-bottom: 21px;
  }
  .hero h1 {
    font-size: 72px;
    line-height: 1;
    max-width: 650px;
    margin-bottom: 27px;
  }
  .hero p {
    font-size: 17px;
    width: 540px;
    margin-bottom: 37px;
  }
  .hero-buttons {
    gap: 14px;
  }
  .hero-buttons a {
    padding: 16px 23px;
    font-size: 13px;
  }
  .hero-features {
    bottom: 38px;
    left: 48px;
    right: 48px;
    width: auto;
    max-width: 920px;
    padding-top: 21px;
  }
  .hero-feature {
    gap: 14px;
  }
  .hero-feature > span {
    font-size: 11px;
  }
  .hero-feature b {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .hero-feature small {
    font-size: 11px;
  }
  .partner-bar {
    height: 92px;
  }
  .partner-group {
    gap: 78px;
    padding-right: 78px;
  }
  .partner-group span {
    font-size: 22px;
  }
}
@media (min-width: 851px) and (max-height: 820px) {
  .hero {
    padding-top: 45px;
    padding-bottom: 140px;
  }
  .hero-copy {
    margin-top: 0;
  }
  .hero-kicker {
    margin-bottom: 16px;
  }
  .hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 15px;
    margin-bottom: 26px;
  }
  .hero-buttons a {
    padding: 14px 21px;
  }
  .hero-features {
    bottom: 24px;
    padding-top: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation-duration: 120s;
  }
}
.page-shell {
  min-height: 100vh;
}
.page-shell > .workspace {
  display: flex;
  flex-direction: column;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.module-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  min-height: 110px;
}
.module-card small {
  color: var(--muted);
  font-size: 11px;
}
.module-card strong {
  display: block;
  font-size: 25px;
  margin-top: 8px;
}
.data-panel {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 13px 9px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.data-table th {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}
.status-pill {
  display: inline-block;
  border-radius: 12px;
  background: var(--green-bg);
  color: var(--green);
  padding: 4px 9px;
  font-size: 10px;
}
.message-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 600px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.conversation-list {
  border-right: 1px solid var(--line);
}
.conversation {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
}
.conversation.active {
  background: var(--soft);
}
.conversation .mini-avatar {
  width: 36px;
  height: 36px;
}
.conversation b {
  font-size: 12px;
}
.conversation small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.chat-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}
.chart-box {
  height: 260px;
  margin-top: 14px;
  background: linear-gradient(var(--line) 1px, transparent 1px) 0 0/100% 52px;
  position: relative;
}
.chart-box svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.settings-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  margin-top: 18px;
}
.settings-menu,
.settings-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
}
.settings-menu a {
  display: block;
  padding: 10px;
  border-radius: 5px;
  color: var(--muted);
}
.settings-menu a.active {
  background: var(--soft);
  color: var(--text);
  font-weight: 700;
}
.field {
  display: grid;
  gap: 6px;
  margin-bottom: 15px;
}
.field label {
  font-size: 11px;
  font-weight: 650;
}
.field input {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-2);
  color: var(--text);
  padding: 0 11px;
}
.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-top h1 {
  font-size: 28px;
  margin: 0;
}
.section-top p {
  color: var(--muted);
  margin: 5px 0 0;
}
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.media-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}
.media-card .content-thumb {
  display: block;
  aspect-ratio: 1;
}
.media-card div {
  padding: 10px;
  font-size: 11px;
}
.media-card small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 850px) {
  .module-grid {
    grid-template-columns: 1fr 1fr;
  }
  .message-layout,
  .settings-grid {
    grid-template-columns: 1fr;
  }
  .conversation-list {
    border-right: 0;
  }
  .thumb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
