:root {
  color-scheme: light;
  --bg: #f4f1ea;
  --bg-2: #ece7dc;
  --ink: #2a1f3d;
  --ink-dim: #6b5f7a;
  --ink-faint: #a89fb3;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-solid: #ffffff;
  --panel-soft: rgba(42, 31, 61, 0.06);
  --line: rgba(42, 31, 61, 0.12);
  --line-strong: rgba(42, 31, 61, 0.22);
  --text: var(--ink);
  --muted: var(--ink-dim);
  --faint: var(--ink-faint);
  --accent: #6b3fa0;
  --accent-2: #a8d5ba;
  --accent-3: #ffd4a3;
  --shadow: 0 24px 70px rgba(42, 31, 61, 0.14);
  --radius: 8px;
  --font-sans: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", ui-serif, Georgia, serif;
  font-family:
    var(--font-sans);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

.app-shell {
  position: fixed;
  inset: 0;
  display: block;
  width: 100%;
  height: 100svh;
  padding: 14px;
}

.home-stage {
  display: none;
}

.app-shell[data-screen="home"] {
  overflow: hidden;
  padding: 0;
}

.app-shell[data-screen="home"] .home-stage {
  display: grid;
}

/* New Clipeo editorial theme */
html:has(.app-shell[data-screen="home"]),
body:has(.app-shell[data-screen="home"]) {
  overflow: auto;
}

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.app-shell {
  background:
    linear-gradient(120deg, rgba(168, 213, 186, 0.18), transparent 34%),
    linear-gradient(300deg, rgba(255, 212, 163, 0.22), transparent 36%),
    var(--bg);
  color: var(--text);
}

.app-shell[data-screen="home"] {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100svh;
  overflow: visible;
  padding: 0;
}

.app-shell[data-screen="home"] .home-stage {
  display: block;
}

.home-stage {
  min-height: 100svh;
  padding: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.62), transparent 48%),
    linear-gradient(290deg, rgba(168, 213, 186, 0.22), transparent 44%),
    var(--bg);
}

.landing-container {
  width: min(1216px, calc(100% - 64px));
  margin: 0 auto;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 0 max(32px, calc((100vw - 1216px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.84);
  backdrop-filter: blur(16px);
}

.landing-logo,
.landing-nav-actions,
.landing-nav-links,
.landing-cta-row {
  display: flex;
  align-items: center;
}

.landing-logo {
  gap: 9px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
}

.landing-logo-mark,
.brand-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--accent);
  color: transparent;
  font-size: 0;
}

.landing-logo-mark::after,
.brand-mark::after {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--bg);
  content: "";
}

.landing-nav-links {
  justify-content: center;
  gap: 26px;
}

.landing-nav-links a {
  color: var(--ink-dim);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.landing-nav-links a:hover {
  color: var(--accent);
}

.landing-nav-actions {
  gap: 10px;
}

.landing-nav-btn,
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.landing-nav-btn {
  min-width: 120px;
  padding: 0 19px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.84rem;
}

.landing-nav-btn.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.landing-nav-btn:hover,
.landing-btn:hover {
  transform: translateY(-1px);
}

.landing-nav-btn:not(.secondary):hover,
.landing-btn-primary:hover {
  background: #5a3289;
  box-shadow: 0 14px 30px rgba(107, 63, 160, 0.22);
}

.landing-hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  padding: 98px 0 110px;
  background: var(--bg);
}

.landing-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--bg));
  content: "";
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.landing-eyebrow {
  margin: 0 0 18px;
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-hero h1,
.landing-section-head h2,
.landing-final h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.92;
}

.landing-hero h1 {
  max-width: 760px;
  font-size: 5.7rem;
}

.landing-hero em,
.landing-section-head em,
.landing-final em,
.landing-platforms em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.landing-hero em {
  text-decoration: underline;
  text-decoration-color: rgba(107, 63, 160, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

.landing-subcopy {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--ink-dim);
  font-size: 1.08rem;
  line-height: 1.52;
}

.landing-cta-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.landing-btn {
  min-width: 210px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid var(--accent);
  font-size: 0.98rem;
}

.landing-btn svg {
  width: 18px;
  height: 18px;
}

.landing-btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.landing-btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
}

.landing-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(650px, 100%);
  margin-top: 44px;
}

.landing-proof span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink-dim);
  font-size: 0.78rem;
  font-weight: 700;
}

.landing-proof strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1;
}

.landing-creators,
.landing-benefits,
.landing-how,
.landing-final {
  padding: 96px 0;
}

.landing-creators {
  overflow: hidden;
  padding-top: 72px;
}

.landing-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.landing-section-head h2 {
  max-width: 760px;
  font-size: 3.5rem;
}

.landing-marquee {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.landing-marquee-row {
  display: grid;
  grid-template-columns: repeat(6, 220px);
  gap: 18px;
  justify-content: center;
}

.landing-marquee-row.reverse {
  transform: translateX(-70px);
}

.landing-creator-card {
  position: relative;
  display: grid;
  align-content: end;
  height: 320px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(42, 31, 61, 0.14);
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(42, 31, 61, 0.02) 0%, rgba(42, 31, 61, 0.08) 38%, rgba(42, 31, 61, 0.9) 100%),
    var(--landing-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 40px rgba(42, 31, 61, 0.12);
}

.landing-creator-card strong,
.landing-creator-card span {
  position: relative;
  z-index: 1;
}

.landing-creator-card strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1;
}

.landing-creator-card div span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.landing-play,
.landing-price {
  position: absolute;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.landing-play {
  left: 14px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.landing-play svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.landing-price {
  right: 14px;
  min-height: 32px;
  padding: 0 11px;
  background: rgba(42, 31, 61, 0.58);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.landing-benefit-grid,
.landing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.landing-benefit,
.landing-steps article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(42, 31, 61, 0.08);
}

.landing-benefit:nth-child(2),
.landing-steps article:nth-child(2) {
  background: rgba(168, 213, 186, 0.34);
}

.landing-benefit:nth-child(3),
.landing-steps article:nth-child(3) {
  background: rgba(255, 212, 163, 0.34);
}

.landing-benefit > span,
.landing-steps span {
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.landing-benefit svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  stroke-width: 1.8;
}

.landing-benefit h3,
.landing-steps h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 550;
  line-height: 1.05;
}

.landing-benefit p,
.landing-steps p,
.landing-final p {
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.5;
}

.landing-how {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 34%),
    var(--bg-2);
}

.landing-platforms {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 82px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.landing-platforms p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.05;
}

.landing-platforms div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.landing-platforms span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-solid);
  color: var(--ink-dim);
  font-size: 0.78rem;
  font-weight: 800;
}

.landing-how-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.landing-how-tabs button {
  min-height: 42px;
  min-width: 132px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-dim);
  font-weight: 800;
}

.landing-how-tabs button.is-active {
  background: var(--accent);
  color: #ffffff;
}

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

.landing-steps.is-active {
  display: grid;
}

.landing-steps span {
  color: var(--accent);
  font-size: 0.95rem;
}

.landing-final {
  text-align: center;
}

.landing-final-inner {
  display: grid;
  justify-items: center;
  padding: 68px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(130deg, rgba(168, 213, 186, 0.34), transparent 52%),
    linear-gradient(310deg, rgba(255, 212, 163, 0.38), transparent 54%),
    #ffffff;
  box-shadow: 0 22px 55px rgba(42, 31, 61, 0.12);
}

.landing-final h2 {
  font-size: 4rem;
}

.landing-final p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.05rem;
}

.landing-footer {
  padding: 28px 0 42px;
  color: var(--ink-faint);
  font-size: 0.82rem;
  text-align: center;
}

.brand-lockup {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 700;
}

.web-topbar {
  padding: 0 4px;
}

.web-top-actions,
.role-switch,
.web-sidebar,
.web-panel,
.creator-card-panel,
.creator-main-head,
.creator-upload-strip,
.creator-upload-form,
.creator-video-card,
.creator-request-row,
.creator-portfolio-toolbar,
.client-filter-section,
.onboarding-topic-panel,
.onboarding-profile-photo,
.profile-drawer,
.access-card,
.desk-section {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(42, 31, 61, 0.07);
  backdrop-filter: blur(18px);
}

.web-panel,
.web-sidebar,
.creator-card-panel,
.creator-main-head,
.creator-upload-strip,
.creator-upload-form,
.creator-video-card,
.creator-request-row,
.creator-portfolio-toolbar,
.desk-section {
  border-radius: var(--radius);
}

.web-section-label,
.web-kicker,
.client-filter-head,
.client-filter-head strong,
.creator-profile-top span,
.creator-panel-head span,
.creator-main-head span,
.creator-mini-stats span,
.creator-status-stack span,
.creator-brief-grid span,
.portfolio-metrics-bar span,
.creator-portfolio-toolbar span,
.creator-upload-form label span,
.section-label,
.desk-title {
  color: var(--ink-faint);
}

.web-panel-head,
.web-panel-head strong,
.web-profile-row h2,
.web-video-empty strong,
.web-panel-empty strong,
.web-list-empty strong,
.web-creator-copy strong,
.web-category-button span strong,
.web-saved-row,
.web-saved-row strong,
.creator-profile-top h2,
.creator-main-head h1,
.creator-video-body h3,
.creator-video-body strong,
.creator-panel-head strong,
.creator-mini-stats strong,
.creator-status-stack strong,
.creator-brief-grid strong,
.portfolio-metrics-bar strong,
.creator-dropzone strong,
.creator-onboarding-card h2,
.onboarding-price-card strong,
.onboarding-category-grid strong,
.profile-video-card h3,
.profile-detail-copy h2,
.profile-detail-copy p,
.desktop-status strong {
  color: var(--ink);
}

.web-profile-row p,
.web-detail-bio,
.web-category-button span small,
.web-creator-copy span,
.web-creator-copy small,
.web-saved-row small,
.creator-profile-top p,
.creator-profile-card > p,
.creator-main-head p,
.creator-video-body p,
.creator-video-meta,
.creator-upload-strip small,
.creator-dropzone,
.creator-onboarding-card p,
.creator-onboarding-preview,
.onboarding-price-card p,
.onboarding-category-grid span,
.profile-video-card p,
.desktop-status,
.summary-sub,
.profile-bio,
.access-card p,
.access-price span,
.web-video-empty span,
.web-panel-empty span,
.web-list-empty span {
  color: var(--ink-dim);
}

.web-filter-button,
.role-switch button,
.web-category-button,
.web-creator-row,
.web-saved-row,
.filter-chip,
.topic-chip,
.main-video-button,
.web-save-wide,
.onboarding-steps button,
.onboarding-category-grid button,
.creator-mini-stats div,
.creator-status-stack div,
.creator-brief-grid div,
.onboarding-price-card,
.portfolio-metrics-bar div,
.web-mini-timeline span,
.creator-pipeline span,
.metric,
.deal-section,
.deal-hero,
.profile-video-card,
.profile-brief-row {
  border-color: var(--line);
  background: rgba(42, 31, 61, 0.045);
  color: var(--ink-dim);
}

.web-filter-button.is-active,
.role-switch button.is-active,
.web-category-button.is-active,
.filter-chip.is-active,
.topic-chip.is-active,
.web-mode-row.is-active,
.thread-item.is-active,
.creator-request-row.is-active,
.onboarding-steps button.is-active,
.onboarding-category-grid button.is-active,
.web-stage[data-focus="inbox"] #webChatPanel,
.web-stage[data-focus="deal"] #webDealPanel {
  border-color: rgba(107, 63, 160, 0.34);
  background: rgba(107, 63, 160, 0.11);
  color: var(--ink);
}

.web-filter-button.is-active,
.role-switch button.is-active,
.category-tab.is-active,
.nav-button.is-active {
  background: var(--accent);
  color: #ffffff;
}

.web-search,
.web-composer input,
.composer input,
.creator-upload-form input,
.creator-upload-form textarea,
.creator-upload-form select,
.video-category-select {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.web-search input {
  color: var(--ink);
}

.web-search input::placeholder,
.web-composer input::placeholder,
.composer input::placeholder {
  color: rgba(107, 95, 122, 0.58);
}

.creator-upload-form select,
.video-category-select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%),
    linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%);
}

.deal-action,
.send-button,
.message-cta,
.web-round-action.primary,
.web-round-action.is-saved {
  background: var(--accent);
  color: #ffffff;
}

.deal-action.secondary,
.web-save-wide,
.main-video-button {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.main-video-button.is-active,
.web-save-wide.is-saved {
  border-color: rgba(107, 63, 160, 0.32);
  background: rgba(255, 212, 163, 0.42);
  color: var(--ink);
}

.main-video-button.is-active svg,
.web-rating-pill svg,
.creator-video-thumb span svg,
.creator-main-video-preview span svg {
  fill: var(--accent-3);
  stroke: var(--accent-3);
}

.web-video-media,
.creator-video-thumb,
.creator-main-video-preview,
.profile-detail-hero,
.profile-video-thumb,
.web-detail-sample,
.clip-media {
  box-shadow: 0 18px 44px rgba(42, 31, 61, 0.12);
}

.web-video-media {
  border-color: rgba(42, 31, 61, 0.16);
  border-radius: var(--radius);
}

.web-row-price,
.summary-price,
.price-pill,
.creator-request-row em,
.bubble.is-client {
  background: var(--accent);
  color: #ffffff;
}

.web-detail-tags span,
.profile-tags span,
.clip-tag,
.brief-list span,
.thread-preview,
.thread-meta,
.timeline-date {
  color: var(--ink-dim);
}

.web-detail-tags span,
.profile-tags span,
.clip-tag {
  background: rgba(107, 63, 160, 0.1);
}

.conversation,
.inbox-view,
.deal-view,
.screen-heading {
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.conversation,
.thread-item {
  border-color: var(--line);
}

.bubble {
  background: rgba(42, 31, 61, 0.08);
  color: var(--ink);
}

.attachment-chip,
.access-perks svg,
.timeline-step.is-done .timeline-dot,
.timeline-step.is-current .timeline-dot {
  color: var(--accent);
}

.timeline-step.is-done .timeline-dot,
.timeline-step.is-current .timeline-dot {
  background: rgba(107, 63, 160, 0.14);
}

.access-modal {
  background: rgba(42, 31, 61, 0.28);
}

.access-price,
.portfolio-metrics-bar div,
.onboarding-price-card {
  background: rgba(168, 213, 186, 0.28);
}

.phone-stage {
  border-color: rgba(42, 31, 61, 0.18);
  background: #0b0a0d;
}

.top-bar {
  background: linear-gradient(180deg, rgba(42, 31, 61, 0.74), transparent);
}

.phone-role-switch,
.category-tabs,
.bottom-nav {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(42, 31, 61, 0.52);
}

.action-button.is-saved,
.unread-badge {
  background: var(--accent);
  color: #ffffff;
}

.profile-sheet {
  border-color: rgba(42, 31, 61, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.profile-sheet .profile-bio,
.profile-sheet .profile-hero p,
.profile-sheet .metric span,
.profile-sheet .profile-tags span {
  color: var(--ink-dim);
}

.profile-sheet .profile-hero h2,
.profile-sheet .metric strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .landing-nav {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .landing-nav-links {
    display: none;
  }

  .landing-hero h1 {
    font-size: 4.2rem;
  }

  .landing-section-head h2,
  .landing-final h2 {
    font-size: 3rem;
  }

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

  .landing-steps {
    grid-template-columns: 1fr;
  }

  .landing-platforms {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-platforms div {
    justify-content: flex-start;
  }

  .landing-marquee-row {
    justify-content: start;
    overflow-x: auto;
    padding: 0 22px 8px;
  }

  .landing-marquee-row.reverse {
    transform: none;
  }
}

@media (max-width: 640px) {
  html:has(.app-shell[data-screen="home"]),
  body:has(.app-shell[data-screen="home"]) {
    background: var(--bg);
  }

  .landing-container {
    width: min(100% - 36px, 1216px);
  }

  .landing-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    padding: 14px 18px;
  }

  .landing-nav-actions,
  .landing-cta-row,
  .landing-proof {
    width: 100%;
  }

  .landing-nav-btn,
  .landing-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .landing-hero {
    min-height: 620px;
    padding: 78px 0 84px;
  }

  .landing-hero h1 {
    font-size: 3.2rem;
  }

  .landing-subcopy {
    font-size: 0.98rem;
  }

  .landing-proof,
  .landing-benefit-grid {
    grid-template-columns: 1fr;
  }

  .landing-creators,
  .landing-benefits,
  .landing-how,
  .landing-final {
    padding: 68px 0;
  }

  .landing-section-head h2,
  .landing-final h2 {
    font-size: 2.35rem;
  }

  .landing-section-head {
    margin-bottom: 30px;
  }

  .landing-marquee-row {
    grid-template-columns: repeat(6, 174px);
  }

  .landing-creator-card {
    height: 260px;
  }

  .landing-platforms p {
    font-size: 1.35rem;
  }

  .landing-how-tabs {
    width: 100%;
  }

  .landing-how-tabs button {
    flex: 1;
    min-width: 0;
  }
}

.app-shell[data-screen="home"] {
  overflow: hidden;
  padding: 0;
}

.app-shell[data-screen="home"] .web-stage,
.app-shell[data-screen="home"] .phone-stage,
.app-shell[data-screen="home"] .desk-panel {
  display: none;
}

.home-stage {
  min-height: 100svh;
  align-content: center;
  justify-items: center;
  gap: 26px;
  padding: 32px;
  background: var(--bg);
  background-position: center;
  background-size: cover;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
}

.home-hero-card {
  display: grid;
  gap: 18px;
  width: min(720px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.78);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(22px);
}

.home-hero-card h1 {
  max-width: 640px;
  margin: 0;
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 0.98;
}

.home-hero-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

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

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

.home-proof span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-proof strong {
  color: #ffffff;
  font-size: 1.15rem;
}

.web-stage {
  display: grid;
  grid-template-columns: 280px minmax(380px, 1fr) minmax(320px, 420px);
  grid-template-rows: 66px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  height: 100%;
  min-width: 0;
}

.phone-stage,
.desk-panel {
  display: none;
}

.web-topbar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0 2px;
}

.web-brand {
  justify-self: start;
  margin-bottom: 0;
}

.web-top-actions {
  justify-self: center;
  display: inline-flex;
  gap: 4px;
  width: auto;
  max-width: min(100%, 430px);
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.web-filter-button,
.web-category-button,
.web-creator-row,
.web-icon-button,
.web-round-action {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.web-filter-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.web-filter-button svg {
  width: 18px;
  height: 18px;
}

.web-filter-button.is-active {
  background: #d8ebff;
  color: #050505;
}

.role-switch {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: 172px;
  min-width: 0;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.role-switch button {
  min-width: 0;
  min-height: 34px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.role-switch button.is-active {
  background: #ffffff;
  color: #050505;
}

.web-account-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.app-logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-dim);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(42, 31, 61, 0.07);
}

.app-logout-button:hover {
  border-color: rgba(107, 63, 160, 0.34);
  color: var(--ink);
}

.app-logout-button svg {
  width: 17px;
  height: 17px;
}

.web-sidebar,
.web-discovery,
.web-workspace {
  min-width: 0;
  min-height: 0;
}

.web-stage[data-focus="inbox"],
.web-stage[data-focus="deal"] {
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
}

.web-stage[data-focus="inbox"] .web-sidebar,
.web-stage[data-focus="inbox"] .web-discovery,
.web-stage[data-focus="deal"] .web-sidebar,
.web-stage[data-focus="deal"] .web-discovery {
  display: none;
}

.creator-stage {
  display: none;
}

.app-shell[data-role="creator"] .web-stage {
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr) minmax(300px, 380px);
}

.app-shell[data-role="creator"] .web-sidebar,
.app-shell[data-role="creator"] .web-discovery,
.app-shell[data-role="creator"] .web-workspace {
  display: none;
}

.app-shell[data-role="creator"] .creator-stage {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr) minmax(300px, 380px);
  gap: 12px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.app-shell[data-role="creator"] .creator-stage[data-mode="onboarding"] {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.creator-stage[data-mode="onboarding"] .creator-sidebar,
.creator-stage[data-mode="onboarding"] .creator-aside {
  display: none;
}

.web-sidebar {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, auto) auto minmax(0, 1fr);
  gap: 10px;
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.web-section-label,
.web-kicker {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.web-category-list,
.web-saved-list,
.web-creator-list {
  display: grid;
  gap: 8px;
}

.web-category-list {
  align-content: start;
  max-height: min(52vh, 520px);
  overflow: auto;
  padding-right: 2px;
}

.web-category-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: left;
}

.web-category-button > strong {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.72rem;
}

.web-category-button span,
.web-category-button span strong,
.web-category-button span small {
  display: block;
  min-width: 0;
}

.web-category-button span strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-category-button span small {
  display: -webkit-box;
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.web-category-button.is-active {
  border-color: rgba(0, 224, 184, 0.65);
  background: rgba(0, 224, 184, 0.13);
  color: #ffffff;
}

.client-filter-section {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.client-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-filter-head strong {
  max-width: 56%;
  overflow: hidden;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-chip-grid.compact {
  max-height: 132px;
  overflow: auto;
  padding-right: 2px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  min-width: 0;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: left;
}

.filter-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-chip strong {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.64rem;
}

.filter-chip.is-active {
  border-color: rgba(0, 224, 184, 0.65);
  background: rgba(0, 224, 184, 0.16);
  color: #ffffff;
}

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

.web-saved-row,
.web-saved-empty {
  min-width: 0;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.web-saved-row {
  display: grid;
  grid-template-columns: 18px 32px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 8px;
  color: #ffffff;
  text-align: left;
}

.web-saved-row > svg {
  width: 16px;
  height: 16px;
  color: #ffd166;
}

.web-saved-row img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.web-saved-row strong,
.web-saved-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-saved-row strong {
  font-size: 0.74rem;
}

.web-saved-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
}

.web-saved-empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.web-saved-empty svg {
  width: 16px;
  height: 16px;
}

.web-creator-list {
  align-content: start;
  overflow: auto;
  padding-right: 2px;
}

.web-creator-row {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 142px;
  overflow: hidden;
  padding: 10px;
  border-radius: 8px;
  color: #ffffff;
  text-align: left;
}

.web-creator-row.is-active {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.13);
}

.web-creator-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.web-creator-top img {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.web-creator-copy {
  min-width: 0;
}

.web-creator-copy strong,
.web-creator-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-creator-copy strong {
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.15;
}

.web-creator-copy span {
  display: -webkit-box;
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.22;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.web-creator-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.web-row-price {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 8px;
  background: #ffffff;
  color: #050505;
  font-size: 0.74rem;
  font-weight: 900;
}

.web-discovery {
  display: grid;
  position: relative;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
}

.web-feed-controls {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 3;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.web-search {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.web-search svg {
  width: 18px;
  height: 18px;
}

.web-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.web-icon-button,
.web-round-action {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
}

.web-icon-button svg,
.web-round-action svg {
  width: 19px;
  height: 19px;
}

.web-icon-button {
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(14px);
}

.web-video-pane {
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.web-video-empty,
.web-panel-empty,
.web-list-empty {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 180px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.web-video-empty,
.web-panel-empty {
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.web-video-empty svg,
.web-panel-empty svg {
  width: 28px;
  height: 28px;
}

.web-video-empty strong,
.web-panel-empty strong,
.web-list-empty strong {
  color: #ffffff;
  font-size: 0.9rem;
}

.web-video-empty span,
.web-panel-empty span,
.web-list-empty span {
  max-width: 260px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.web-video-media {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.78)),
    var(--clip-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.38);
  cursor: grab;
}

.web-video-media:active {
  cursor: grabbing;
}

.web-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 24px;
}

.app-shell[data-screen="app"] .profile-library-thumb > span,
.app-shell[data-screen="app"] .profile-library-thumb > strong {
  z-index: 1;
}

.web-video-overlay h2 {
  max-width: 360px;
  margin: 10px 0 8px;
  font-size: 1.62rem;
  line-height: 1.02;
}

.web-video-overlay p {
  display: -webkit-box;
  max-width: 390px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.web-video-actions {
  display: grid;
  gap: 10px;
}

.web-round-action {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(14px);
}

.web-round-action.primary,
.web-round-action.is-saved {
  background: #ffffff;
  color: #050505;
}

.web-workspace {
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto;
  gap: 12px;
  overflow: hidden;
}

.web-stage[data-focus="discover"] #webChatPanel,
.web-stage[data-focus="discover"] #webDealPanel,
.web-stage[data-focus="inbox"] #webDealPanel,
.web-stage[data-focus="deal"] #webChatPanel {
  display: none;
}

.web-stage[data-focus="discover"] .web-workspace {
  grid-template-rows: auto;
}

.web-stage[data-focus="inbox"] .web-workspace,
.web-stage[data-focus="deal"] .web-workspace {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
}

.web-stage[data-focus="inbox"] #webChatPanel,
.web-stage[data-focus="deal"] #webDealPanel {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-height: 0;
}

.web-stage[data-focus="inbox"] #webCreatorDetail,
.web-stage[data-focus="deal"] #webCreatorDetail {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
}

.web-panel {
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

#webCreatorDetail {
  overflow: auto;
}

.web-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.web-panel-head strong {
  color: #ffffff;
}

.web-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.web-rating-pill svg {
  width: 15px;
  height: 15px;
  fill: #ffd166;
  stroke: #ffd166;
}

.web-profile-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.web-profile-link {
  width: 100%;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.web-profile-link:hover h2 {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.web-profile-row.compact {
  grid-template-columns: 44px minmax(0, 1fr);
  margin-bottom: 14px;
}

.web-profile-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.web-profile-row.compact img {
  width: 44px;
  height: 44px;
}

.web-profile-row h2 {
  margin: 0;
  overflow: hidden;
  font-size: 1.12rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-profile-row p {
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.web-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.web-detail-bio {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.42;
}

.web-detail-tags,
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.web-detail-tags {
  margin-top: 12px;
}

.web-detail-tags span,
.profile-tags span {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
}

.web-detail-samples {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.web-detail-sample {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 86px;
  overflow: hidden;
  padding: 10px;
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82)),
    var(--sample-image);
  background-position: center;
  background-size: cover;
}

.web-detail-sample span,
.web-detail-sample strong {
  position: relative;
  z-index: 1;
}

.web-detail-sample span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.web-detail-sample strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 0.86rem;
}

.web-save-wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.web-save-wide.is-saved {
  border-color: rgba(0, 224, 184, 0.6);
  background: rgba(0, 224, 184, 0.14);
}

.web-save-wide svg {
  width: 18px;
  height: 18px;
}

.web-thread-stack {
  display: grid;
  gap: 8px;
  max-height: 100%;
  overflow: auto;
  padding-right: 2px;
}

.web-mode-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  text-align: left;
}

.web-mode-row.is-active {
  border-color: rgba(0, 224, 184, 0.65);
  background: rgba(0, 224, 184, 0.12);
}

.web-mode-row img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.web-mode-row span,
.web-mode-row strong,
.web-mode-row small {
  min-width: 0;
}

.web-mode-row strong,
.web-mode-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-mode-row strong {
  font-size: 0.9rem;
}

.web-mode-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.web-mode-row em {
  display: grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  max-width: 92px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.web-chat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  max-height: min(30vh, 250px);
  overflow: auto;
  padding-right: 2px;
}

.web-stage[data-focus="inbox"] .web-chat-list {
  max-height: none;
}

.web-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 12px;
}

.web-composer input {
  min-width: 0;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  outline: 0;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.web-composer input:focus {
  border-color: rgba(0, 224, 184, 0.72);
}

.web-deal-summary {
  display: grid;
  gap: 9px;
}

.web-deal-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.web-deal-summary strong {
  color: #ffffff;
  text-align: right;
}

.web-mini-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.web-mini-timeline span {
  min-width: 0;
  padding: 7px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  text-align: center;
}

.web-mini-timeline span.is-done,
.web-mini-timeline span.is-current {
  background: rgba(0, 224, 184, 0.18);
  color: #ffffff;
}

.web-stage[data-focus="inbox"] #webChatPanel,
.web-stage[data-focus="deal"] #webDealPanel {
  border-color: rgba(0, 224, 184, 0.5);
}

.creator-sidebar,
.creator-main,
.creator-aside {
  min-width: 0;
  min-height: 0;
}

.creator-sidebar,
.creator-aside {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.creator-main {
  display: grid;
  grid-template-rows: auto;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.creator-stage[data-mode="workspace"][data-focus="portfolio"] .creator-main {
  grid-template-rows: auto auto auto minmax(0, 1fr);
  align-content: stretch;
  overflow: hidden;
}

.creator-stage[data-mode="workspace"][data-focus="portfolio"] .creator-video-grid {
  min-height: 0;
  overflow: auto;
  align-content: start;
  padding-right: 4px;
}

.creator-card-panel,
.creator-main-head,
.creator-upload-strip,
.creator-upload-form,
.creator-video-card,
.creator-request-row {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.creator-card-panel {
  padding: 14px;
}

.creator-profile-top {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.creator-profile-top img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.creator-profile-top span,
.creator-panel-head span,
.creator-main-head span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-profile-top h2,
.creator-main-head h1,
.creator-video-body h3,
.creator-brief-card h2,
.creator-active-mini h3 {
  margin: 0;
  color: #ffffff;
}

.creator-profile-top h2 {
  overflow: hidden;
  font-size: 1.1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-profile-top p,
.creator-profile-card > p,
.creator-main-head p,
.creator-video-body p,
.creator-brief-card p,
.creator-active-mini p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.creator-mini-stats,
.creator-brief-grid {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

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

.creator-mini-stats div,
.creator-status-stack div,
.creator-brief-grid div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.creator-mini-stats span,
.creator-status-stack span,
.creator-brief-grid span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-mini-stats strong,
.creator-status-stack strong,
.creator-brief-grid strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-panel-head,
.creator-video-body,
.creator-video-meta,
.creator-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.creator-panel-head {
  margin-bottom: 12px;
}

.creator-panel-head strong {
  color: #ffffff;
  font-size: 0.8rem;
}

.creator-status-stack {
  display: grid;
  gap: 8px;
}

.creator-active-mini .deal-action {
  margin-top: 12px;
  width: 100%;
}

.creator-main-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.creator-main-head h1 {
  margin-top: 4px;
  font-size: 1.5rem;
  line-height: 1;
}

.creator-upload-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.creator-upload-strip > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.creator-upload-strip svg,
.creator-dropzone svg {
  width: 24px;
  height: 24px;
}

.creator-upload-strip strong,
.creator-upload-strip small {
  display: block;
}

.creator-upload-strip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}

.creator-video-grid,
.creator-request-list {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding-right: 2px;
}

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

.creator-video-card {
  overflow: hidden;
}

.creator-video-thumb {
  position: relative;
  aspect-ratio: 9 / 13;
  background-image:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.75)),
    var(--creator-image);
  background-position: center;
  background-size: cover;
}

.creator-video-thumb span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
}

.creator-video-thumb span svg {
  width: 14px;
  height: 14px;
  fill: #ffd166;
  stroke: #ffd166;
}

.creator-video-body,
.creator-video-meta {
  padding: 10px;
}

.creator-video-body h3 {
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-video-body strong {
  color: #ffffff;
}

.creator-video-meta {
  padding-top: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.creator-video-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.creator-video-meta svg {
  width: 14px;
  height: 14px;
}

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

.portfolio-metrics-bar div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 224, 184, 0.1);
}

.portfolio-metrics-bar span,
.creator-portfolio-toolbar span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-metrics-bar strong {
  color: #ffffff;
  font-size: 1.35rem;
}

.creator-portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.creator-video-controls {
  display: grid;
  grid-template-columns: minmax(110px, auto) minmax(0, 1fr);
  gap: 8px;
  padding: 0 10px 10px;
}

.main-video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
}

.main-video-button svg {
  width: 16px;
  height: 16px;
}

.main-video-button.is-active {
  border-color: rgba(255, 209, 102, 0.7);
  background: rgba(255, 209, 102, 0.16);
  color: #ffffff;
}

.main-video-button.is-active svg {
  fill: #ffd166;
  stroke: #ffd166;
}

.video-category-select {
  min-width: 0;
  min-height: 38px;
  font-size: 0.72rem;
  font-weight: 900;
}

.creator-main-video-preview {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 220px;
  overflow: hidden;
  padding: 12px;
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.82)),
    var(--creator-image);
  background-position: center;
  background-size: cover;
}

.creator-main-video-preview span,
.creator-main-video-preview strong {
  position: relative;
  z-index: 1;
}

.creator-main-video-preview span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.18);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
}

.creator-main-video-preview span svg {
  width: 15px;
  height: 15px;
  fill: #ffd166;
  stroke: #ffd166;
}

.creator-main-video-preview strong {
  color: #ffffff;
  font-size: 1rem;
}

.creator-request-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 12px;
  text-align: left;
}

.creator-request-row.is-active {
  border-color: rgba(0, 224, 184, 0.65);
  background: rgba(0, 224, 184, 0.11);
}

.creator-request-row strong,
.creator-request-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-request-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.creator-request-row em,
.creator-request-row b {
  border-radius: 999px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.creator-request-row em {
  padding: 7px 9px;
  background: #ffffff;
  color: #050505;
}

.creator-request-row b {
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.84);
}

.creator-brief-card h2 {
  font-size: 1.18rem;
}

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

.creator-action-row {
  margin-top: 14px;
}

.creator-pipeline {
  display: grid;
  gap: 7px;
}

.creator-pipeline span {
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.creator-pipeline span.is-current {
  background: rgba(0, 224, 184, 0.18);
  color: #ffffff;
}

.creator-upload-form {
  display: grid;
  gap: 12px;
  align-content: start;
  overflow: auto;
  padding: 14px;
}

.creator-upload-form label {
  display: grid;
  gap: 6px;
}

.creator-upload-form label span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-upload-form input,
.creator-upload-form textarea,
.creator-upload-form select,
.video-category-select {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  outline: 0;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.creator-upload-form select,
.video-category-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 18px,
    calc(100% - 11px) 18px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.creator-upload-form textarea {
  min-height: 120px;
  resize: vertical;
  padding: 12px;
  font: inherit;
  line-height: 1.35;
}

.creator-dropzone {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 180px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.creator-dropzone strong {
  color: #ffffff;
}

.creator-dropzone span {
  max-width: 260px;
  font-size: 0.76rem;
  line-height: 1.35;
}

.creator-onboarding-card {
  display: grid;
  gap: 12px;
}

.creator-onboarding-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.05;
}

.creator-onboarding-card p,
.creator-onboarding-preview {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.onboarding-steps {
  display: grid;
  gap: 8px;
}

.onboarding-steps button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: left;
}

.onboarding-steps button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.72rem;
}

.onboarding-steps button.is-active {
  background: rgba(0, 224, 184, 0.16);
  color: #ffffff;
}

.onboarding-steps button.is-done span {
  background: var(--accent);
  color: #031010;
}

.onboarding-steps.compact {
  display: inline-flex;
  justify-content: flex-end;
  gap: 6px;
}

.onboarding-steps.compact button {
  grid-template-columns: 1fr;
  width: 42px;
  min-height: 42px;
  padding: 7px;
  text-align: center;
}

.onboarding-steps.compact button span {
  width: 28px;
  height: 28px;
}

.onboarding-form {
  min-height: 0;
}

.onboarding-profile-photo {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.onboarding-profile-photo img,
.onboarding-avatar-placeholder {
  width: 76px;
  height: 76px;
  border-radius: 50%;
}

.onboarding-profile-photo img {
  object-fit: cover;
}

.onboarding-avatar-placeholder {
  display: grid;
  place-items: center;
  background: rgba(112, 64, 170, 0.1);
  color: var(--accent);
  border: 1px dashed rgba(112, 64, 170, 0.28);
}

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

.onboarding-price-row {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px) 44px;
  align-items: end;
}

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

.onboarding-price-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(0, 224, 184, 0.12);
}

.onboarding-price-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.onboarding-price-card strong {
  color: #ffffff;
  font-size: 1.8rem;
}

.onboarding-price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

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

.onboarding-category-grid button {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-align: left;
}

.onboarding-category-grid button.is-active {
  border-color: rgba(0, 224, 184, 0.65);
  background: rgba(0, 224, 184, 0.14);
}

.onboarding-category-grid strong {
  font-size: 1rem;
}

.onboarding-category-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.onboarding-topic-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.topic-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  max-width: 100%;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
}

.topic-chip svg {
  width: 16px;
  height: 16px;
}

.topic-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topic-chip.is-active {
  border-color: rgba(0, 224, 184, 0.68);
  background: rgba(0, 224, 184, 0.15);
  color: #ffffff;
}

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

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

.onboarding-error {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 106, 106, 0.45);
  border-radius: 8px;
  background: rgba(255, 106, 106, 0.12);
  color: #ffd0d0;
  font-size: 0.82rem;
  font-weight: 800;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.phone-stage {
  position: relative;
  overflow: hidden;
  width: min(100%, 430px);
  height: min(900px, calc(100svh - 48px));
  min-height: min(680px, calc(100svh - 48px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: #000000;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 18px 16px 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.phone-stage[data-mode="inbox"] .top-bar,
.phone-stage[data-mode="deal"] .top-bar {
  visibility: hidden;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0;
  margin-bottom: 12px;
  background: transparent;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #050505;
  font-size: 0.78rem;
  font-weight: 900;
}

.category-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.phone-role-switch {
  width: 100%;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.phone-logout-button {
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 2;
  width: 38px;
  min-height: 38px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.category-tab {
  flex: 0 0 auto;
  min-width: 70px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.category-tab.is-active {
  background: #ffffff;
  color: #050505;
}

.view {
  position: absolute;
  inset: 0;
  visibility: hidden;
  transform: translateX(10px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.view.is-active {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.feed-view {
  background: #000000;
}

.feed-stack {
  position: absolute;
  inset: 0;
}

.clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  background: #111111;
  transform: translateY(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.clip.is-active {
  transform: translateY(0);
  z-index: 3;
}

.clip.is-prev {
  transform: translateY(-100%);
}

.clip-media {
  position: absolute;
  inset: 0;
  background-image: var(--clip-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.clip-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent 48%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 44%);
}

.clip-media::after {
  position: absolute;
  right: 18px;
  bottom: 168px;
  width: 3px;
  height: 96px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  content: "";
  animation: pulseBar 1.8s ease-in-out infinite;
}

@keyframes pulseBar {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.52;
  }

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

.clip-body {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  padding: 0 14px 92px 18px;
}

.clip-copy {
  align-self: end;
  min-width: 0;
}

.clip-kind {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.7rem;
  font-weight: 800;
}

.clip-title {
  margin: 10px 0 8px;
  font-size: 1.35rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.clip-description {
  display: -webkit-box;
  max-width: 270px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.clip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.clip-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
}

.creator-rail {
  align-self: end;
  display: grid;
  gap: 10px;
}

.creator-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  max-width: 100%;
  margin-top: 14px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(16px);
}

.creator-card-meta {
  min-width: 0;
}

.creator-card-meta strong,
.creator-card-meta span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-card-meta strong {
  font-size: 0.86rem;
  font-weight: 900;
}

.creator-card-meta span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.avatar-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.avatar-button img,
.avatar-small,
.profile-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-button img {
  border: 2px solid #000000;
  border-radius: 50%;
}

.action-button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.action-button svg,
.icon-button svg,
.nav-button svg,
.deal-action svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.action-button.is-saved {
  background: var(--accent-2);
  color: #ffffff;
}

.price-pill {
  min-width: 60px;
  padding: 7px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.price-pill strong,
.price-pill span {
  display: block;
}

.price-pill strong {
  font-size: 0.82rem;
}

.price-pill span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.message-cta {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #050505;
}

.sound-chip {
  position: absolute;
  top: 132px;
  right: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.sound-chip svg {
  width: 16px;
  height: 16px;
}

.feed-progress {
  position: absolute;
  right: 8px;
  top: 150px;
  z-index: 8;
  display: grid;
  gap: 6px;
}

.progress-dot {
  width: 4px;
  height: 18px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}

.progress-dot.is-active {
  background: #ffffff;
}

.bottom-nav {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(18px);
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 46px;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-button.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.screen-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 18px 16px 8px;
  background: #080808;
  font-size: 1.26rem;
  font-weight: 900;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.inbox-view,
.deal-view {
  background: #080808;
}

.inbox-layout {
  display: grid;
  grid-template-rows: minmax(174px, 34%) minmax(0, 1fr);
  gap: 10px;
  height: calc(100% - 148px);
  padding: 0 12px 10px;
}

.thread-list {
  display: grid;
  gap: 8px;
  overflow: auto;
  padding-right: 2px;
}

.thread-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
}

.thread-item.is-active {
  border-color: rgba(0, 224, 184, 0.7);
  background: rgba(0, 224, 184, 0.11);
}

.avatar-small {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.thread-main,
.thread-meta {
  min-width: 0;
}

.thread-name {
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-preview {
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 700;
}

.unread-badge {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #ffffff;
  font-size: 0.66rem;
}

.conversation {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #101010;
}

.conversation-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.conversation-head strong,
.conversation-head span {
  display: block;
}

.conversation-head strong {
  font-size: 0.9rem;
}

.conversation-head span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.bubble-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
  padding: 12px;
}

.bubble {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 16px 16px 16px 4px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  line-height: 1.35;
}

.bubble.is-client {
  align-self: flex-end;
  border-radius: 16px 16px 4px 16px;
  background: #ffffff;
  color: #060606;
}

.attachment-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(0, 224, 184, 0.14);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.composer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.composer input {
  min-width: 0;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  outline: 0;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.composer input:focus {
  border-color: rgba(0, 224, 184, 0.7);
}

.send-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #031010;
}

.deal-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  height: calc(100% - 148px);
  overflow: auto;
  padding: 0 14px 14px;
}

.deal-hero,
.deal-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.deal-hero {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.deal-person {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.deal-person strong,
.deal-person span {
  display: block;
}

.deal-person strong {
  font-size: 1rem;
}

.deal-person span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

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

.metric {
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

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

.metric span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric strong {
  margin-top: 4px;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

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

.deal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 44px;
  border-radius: 8px;
  background: #ffffff;
  color: #050505;
  font-size: 0.8rem;
  font-weight: 900;
}

.deal-action.secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.deal-section {
  padding: 14px;
}

.section-label {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.timeline-dot {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: transparent;
}

.timeline-step.is-done .timeline-dot,
.timeline-step.is-current .timeline-dot {
  border-color: transparent;
  background: var(--accent);
  color: #031010;
}

.timeline-step.is-current {
  color: #ffffff;
  font-weight: 900;
}

.timeline-date {
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 800;
}

.brief-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
  min-height: 34px;
  align-items: start;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
}

.brief-list span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-sheet {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 82px;
  z-index: 35;
  display: block;
  max-height: 72%;
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(12, 12, 12, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(20px);
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.profile-sheet.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sheet-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.profile-hero {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-right: 48px;
}

.profile-hero img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.profile-hero h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.05;
}

.profile-hero p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.profile-bio {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

.profile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.profile-drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 80;
  width: min(920px, calc(100% - 44px));
  max-height: calc(100svh - 44px);
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(13, 13, 13, 0.96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.98);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.profile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.access-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.access-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(460px, 100%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(14, 14, 14, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(24px);
}

.access-card h2 {
  max-width: 360px;
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.05;
}

.access-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.access-price {
  display: flex;
  align-items: end;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(0, 224, 184, 0.13);
}

.access-price strong {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.access-price span {
  color: var(--muted);
  font-weight: 900;
}

.access-perks {
  display: grid;
  gap: 8px;
}

.access-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
}

.access-perks svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
}

.profile-detail {
  display: grid;
  gap: 14px;
}

.profile-detail-hero {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  min-height: 240px;
  overflow: hidden;
  padding: 18px;
  border-radius: 10px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82)),
    var(--profile-image);
  background-position: center;
  background-size: cover;
}

.profile-detail-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.14);
  content: "";
}

.profile-detail-copy,
.profile-detail-hero > .web-rating-pill {
  position: relative;
  z-index: 1;
}

.profile-detail-copy {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.profile-detail-copy img {
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  object-fit: cover;
}

.profile-detail-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-detail-copy h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
}

.profile-detail-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.profile-detail-actions,
.profile-detail-grid,
.profile-video-grid {
  display: grid;
  gap: 10px;
}

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

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

.profile-section {
  min-width: 0;
}

.profile-tags {
  margin-top: 10px;
}

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

.profile-video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.profile-video-thumb {
  position: relative;
  aspect-ratio: 9 / 12;
  background-image:
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.82)),
    var(--sample-image);
  background-position: center;
  background-size: cover;
}

.profile-video-thumb span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 900;
}

.profile-video-card > div:last-child {
  padding: 10px;
}

.profile-video-card h3 {
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-video-card p {
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-brief-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.profile-brief-row span,
.profile-brief-row strong,
.profile-brief-row em {
  min-width: 0;
  font-size: 0.82rem;
}

.profile-brief-row span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-brief-row strong {
  color: #ffffff;
}

.profile-brief-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.desk-panel {
  display: grid;
  gap: 14px;
  align-content: center;
  min-width: 0;
}

.desk-section {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

.desk-title {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-summary,
.desktop-chat,
.desktop-deal {
  padding: 14px;
}

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

.summary-top img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.summary-name {
  font-size: 1.1rem;
  font-weight: 900;
}

.summary-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.summary-price {
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
  color: #050505;
  font-weight: 900;
}

.summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.desktop-chat {
  display: grid;
  gap: 10px;
}

.desktop-chat-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
}

.desktop-chat-row.is-client {
  grid-template-columns: minmax(0, 1fr) 36px;
}

.desktop-chat-row img,
.desktop-chat-row .client-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.client-dot {
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #031010;
  font-size: 0.72rem;
  font-weight: 900;
}

.desktop-chat-bubble {
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  line-height: 1.35;
}

.desktop-chat-row.is-client .desktop-chat-bubble {
  background: #ffffff;
  color: #050505;
}

.desktop-deal {
  display: grid;
  gap: 10px;
}

.desktop-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.desktop-status strong {
  color: #ffffff;
}

@media (max-width: 1180px) {
  .web-stage {
    grid-template-columns: 220px minmax(300px, 1fr) minmax(280px, 340px);
  }

  .app-shell[data-role="creator"] .creator-stage {
    grid-template-columns: 240px minmax(0, 1fr) 300px;
  }

  .web-stage[data-focus="inbox"],
  .web-stage[data-focus="deal"] {
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  }

  .web-sidebar,
  .web-panel {
    padding: 10px;
  }

  .web-video-overlay {
    padding: 18px;
  }

  .web-mini-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .app-shell {
    display: block;
    overflow: auto;
    padding: 10px;
  }

  .web-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    height: auto;
    min-height: calc(100svh - 20px);
  }

  .web-topbar {
    align-items: start;
  }

  .web-topbar {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .web-brand {
    justify-self: center;
  }

  .web-top-actions {
    width: 100%;
    justify-self: stretch;
  }

  .web-filter-button {
    flex: 1;
    min-width: 0;
  }

  .web-sidebar {
    grid-template-rows: auto auto auto auto auto;
    overflow: visible;
  }

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

  .web-category-button {
    display: grid;
    justify-items: center;
    min-height: 58px;
    padding: 8px 4px;
    text-align: center;
  }

  .web-creator-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-right: 0;
  }

  .web-creator-row {
    grid-template-columns: 1fr;
  }

  .web-row-price {
    grid-column: auto;
    justify-self: auto;
  }

  .web-video-pane {
    min-height: 620px;
  }

  .web-video-media {
    width: min(100%, 430px);
    height: auto;
  }

  .app-shell[data-role="creator"] .creator-stage {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .creator-sidebar,
  .creator-aside,
  .creator-main,
  .creator-video-grid,
  .creator-request-list {
    overflow: visible;
  }

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

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

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

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

  .web-workspace {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    overflow: visible;
  }

  .web-stage[data-focus="inbox"] .web-workspace,
  .web-stage[data-focus="deal"] .web-workspace {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .web-chat-list {
    max-height: none;
  }
}

@media (max-width: 560px) {
  html,
  body {
    background: #000000;
  }

  .app-shell {
    overflow: hidden;
    padding: 0;
  }

  .home-stage {
    padding: 18px;
  }

  .home-hero-card {
    padding: 18px;
  }

  .home-hero-card h1 {
    font-size: 2rem;
  }

  .home-actions,
  .home-proof,
  .onboarding-actions,
  .onboarding-sample-grid,
  .onboarding-category-grid,
  .onboarding-field-grid,
  .onboarding-price-row,
  .portfolio-metrics-bar,
  .creator-video-controls {
    grid-template-columns: 1fr;
  }

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

  .web-stage {
    display: none;
  }

  .app-shell[data-role="creator"] {
    overflow: auto;
    padding: 10px;
  }

  .app-shell[data-role="creator"] .web-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    height: auto;
    min-height: calc(100svh - 20px);
  }

  .app-shell[data-role="creator"] .phone-stage {
    display: none;
  }

  .phone-stage {
    display: block;
    width: 100%;
    height: 100svh;
    min-height: 0;
    border: 0;
    border-radius: 0;
  }

  .desk-panel {
    display: none;
  }

  .role-switch {
    width: 100%;
  }

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

  .profile-drawer {
    display: none;
  }

  .profile-detail-hero {
    min-height: 180px;
  }

  .profile-detail-copy {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .profile-detail-copy img {
    width: 58px;
    height: 58px;
  }

  .profile-detail-copy h2 {
    font-size: 1.25rem;
  }

  .profile-detail-grid,
  .profile-video-grid,
  .profile-detail-actions {
    grid-template-columns: 1fr;
  }

  .creator-request-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .creator-request-row b {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 380px) {
  .category-tab {
    font-size: 0.68rem;
  }

  .clip-body {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    padding-left: 14px;
  }

  .avatar-button {
    width: 52px;
    height: 52px;
  }

  .action-button,
  .message-cta {
    width: 48px;
    height: 48px;
  }

  .price-pill {
    width: 58px;
    font-size: 0.74rem;
  }
}

.app-shell[data-screen="home"] .home-stage {
  display: grid;
}

.app-shell[data-screen="home"] .web-stage,
.app-shell[data-screen="home"] .phone-stage,
.app-shell[data-screen="home"] .desk-panel {
  display: none;
}

/* Final editorial theme overrides: keep these after every legacy rule. */
html:has(.app-shell[data-screen="home"]),
body:has(.app-shell[data-screen="home"]) {
  overflow: auto;
  background: var(--bg);
}

.app-shell {
  background:
    linear-gradient(120deg, rgba(168, 213, 186, 0.18), transparent 34%),
    linear-gradient(300deg, rgba(255, 212, 163, 0.22), transparent 36%),
    var(--bg);
  color: var(--text);
}

.app-shell[data-screen="home"] {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100svh;
  overflow: visible;
  padding: 0;
}

.app-shell[data-screen="home"] .home-stage {
  display: block;
}

.home-stage {
  min-height: 100svh;
  align-content: normal;
  justify-items: normal;
  gap: 0;
  padding: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.62), transparent 48%),
    linear-gradient(290deg, rgba(168, 213, 186, 0.22), transparent 44%),
    var(--bg);
  background-position: center;
  background-size: cover;
}

.brand-lockup {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--accent);
  color: transparent;
  font-size: 0;
}

.brand-mark::after {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--bg);
  content: "";
}

.web-top-actions,
.role-switch,
.web-sidebar,
.web-panel,
.creator-card-panel,
.creator-main-head,
.creator-upload-strip,
.creator-upload-form,
.creator-video-card,
.creator-request-row,
.creator-portfolio-toolbar,
.client-filter-section,
.onboarding-topic-panel,
.onboarding-profile-photo,
.profile-drawer,
.access-card,
.desk-section {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(42, 31, 61, 0.07);
  backdrop-filter: blur(18px);
}

.web-panel,
.web-sidebar,
.creator-card-panel,
.creator-main-head,
.creator-upload-strip,
.creator-upload-form,
.creator-video-card,
.creator-request-row,
.creator-portfolio-toolbar,
.desk-section,
.web-video-media {
  border-radius: var(--radius);
}

.web-section-label,
.web-kicker,
.client-filter-head,
.client-filter-head strong,
.creator-profile-top span,
.creator-panel-head span,
.creator-main-head span,
.creator-mini-stats span,
.creator-status-stack span,
.creator-brief-grid span,
.portfolio-metrics-bar span,
.creator-portfolio-toolbar span,
.creator-upload-form label span,
.section-label,
.desk-title {
  color: var(--ink-faint);
}

.web-panel-head,
.web-panel-head strong,
.web-profile-row h2,
.web-video-empty strong,
.web-panel-empty strong,
.web-list-empty strong,
.web-creator-copy strong,
.web-category-button span strong,
.web-saved-row,
.web-saved-row strong,
.creator-profile-top h2,
.creator-main-head h1,
.creator-video-body h3,
.creator-video-body strong,
.creator-panel-head strong,
.creator-mini-stats strong,
.creator-status-stack strong,
.creator-brief-grid strong,
.portfolio-metrics-bar strong,
.creator-dropzone strong,
.creator-onboarding-card h2,
.onboarding-price-card strong,
.onboarding-category-grid strong,
.profile-video-card h3,
.profile-detail-copy h2,
.profile-detail-copy p,
.desktop-status strong,
.access-card h2,
.profile-hero h2,
.profile-hero strong,
.metric strong,
.deal-person strong,
.thread-name,
.conversation-head strong,
.timeline-step.is-current,
.brief-list li {
  color: var(--ink);
}

.web-profile-row p,
.web-detail-bio,
.web-category-button span small,
.web-creator-copy span,
.web-creator-copy small,
.web-saved-row small,
.creator-profile-top p,
.creator-profile-card > p,
.creator-main-head p,
.creator-video-body p,
.creator-video-meta,
.creator-upload-strip small,
.creator-dropzone,
.creator-onboarding-card p,
.creator-onboarding-preview,
.onboarding-price-card p,
.onboarding-category-grid span,
.profile-video-card p,
.desktop-status,
.summary-sub,
.profile-bio,
.access-card p,
.access-price span,
.web-video-empty span,
.web-panel-empty span,
.web-list-empty span,
.thread-preview,
.thread-meta,
.timeline-date,
.deal-person span,
.metric span,
.profile-hero p {
  color: var(--ink-dim);
}

.web-filter-button,
.role-switch button,
.web-category-button,
.web-creator-row,
.web-saved-row,
.filter-chip,
.topic-chip,
.main-video-button,
.web-save-wide,
.onboarding-steps button,
.onboarding-category-grid button,
.creator-mini-stats div,
.creator-status-stack div,
.creator-brief-grid div,
.onboarding-price-card,
.portfolio-metrics-bar div,
.web-mini-timeline span,
.creator-pipeline span,
.metric,
.deal-section,
.deal-hero,
.profile-video-card,
.profile-brief-row,
.thread-item,
.web-mode-row {
  border-color: var(--line);
  background: rgba(42, 31, 61, 0.045);
  color: var(--ink-dim);
}

.web-filter-button.is-active,
.role-switch button.is-active,
.web-category-button.is-active,
.filter-chip.is-active,
.topic-chip.is-active,
.web-mode-row.is-active,
.thread-item.is-active,
.creator-request-row.is-active,
.onboarding-steps button.is-active,
.onboarding-category-grid button.is-active,
.web-stage[data-focus="inbox"] #webChatPanel,
.web-stage[data-focus="deal"] #webDealPanel {
  border-color: rgba(107, 63, 160, 0.34);
  background: rgba(107, 63, 160, 0.11);
  color: var(--ink);
}

.web-filter-button.is-active,
.role-switch button.is-active,
.category-tab.is-active,
.nav-button.is-active {
  background: var(--accent);
  color: #ffffff;
}

.web-search,
.web-composer input,
.composer input,
.creator-upload-form input,
.creator-upload-form textarea,
.creator-upload-form select,
.video-category-select {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.web-search input {
  color: var(--ink);
}

.web-search input::placeholder,
.web-composer input::placeholder,
.composer input::placeholder {
  color: rgba(107, 95, 122, 0.58);
}

.creator-upload-form select,
.video-category-select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%),
    linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%);
}

.deal-action,
.send-button,
.message-cta,
.web-round-action.primary,
.web-round-action.is-saved {
  background: var(--accent);
  color: #ffffff;
}

.deal-action.secondary,
.web-save-wide,
.main-video-button {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.main-video-button.is-active,
.web-save-wide.is-saved {
  border-color: rgba(107, 63, 160, 0.32);
  background: rgba(255, 212, 163, 0.42);
  color: var(--ink);
}

.main-video-button.is-active svg,
.web-rating-pill svg,
.creator-video-thumb span svg,
.creator-main-video-preview span svg {
  fill: var(--accent-3);
  stroke: var(--accent-3);
}

.web-video-media {
  border-color: rgba(42, 31, 61, 0.16);
  box-shadow: 0 18px 44px rgba(42, 31, 61, 0.12);
}

.web-row-price,
.summary-price,
.price-pill,
.creator-request-row em,
.bubble.is-client {
  background: var(--accent);
  color: #ffffff;
}

.web-detail-tags span,
.profile-tags span,
.clip-tag {
  background: rgba(107, 63, 160, 0.1);
  color: var(--ink-dim);
}

.conversation,
.inbox-view,
.deal-view,
.screen-heading {
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.conversation {
  border-color: var(--line);
}

.bubble {
  background: rgba(42, 31, 61, 0.08);
  color: var(--ink);
}

.attachment-chip {
  background: rgba(107, 63, 160, 0.1);
  color: var(--accent);
}

.timeline-step.is-done .timeline-dot,
.timeline-step.is-current .timeline-dot {
  background: rgba(107, 63, 160, 0.14);
  color: var(--accent);
}

.access-modal {
  background: rgba(42, 31, 61, 0.28);
}

.access-price,
.portfolio-metrics-bar div,
.onboarding-price-card {
  background: rgba(168, 213, 186, 0.28);
}

.phone-stage {
  border-color: rgba(42, 31, 61, 0.18);
  background: #0b0a0d;
}

.top-bar {
  background: linear-gradient(180deg, rgba(42, 31, 61, 0.74), transparent);
}

.phone-role-switch,
.category-tabs,
.bottom-nav {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(42, 31, 61, 0.52);
}

.action-button.is-saved,
.unread-badge {
  background: var(--accent);
  color: #ffffff;
}

.profile-sheet {
  border-color: rgba(42, 31, 61, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

@media (max-width: 980px) {
  .landing-nav {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .landing-nav-links {
    display: none;
  }

  .landing-hero h1 {
    font-size: 4.2rem;
  }

  .landing-section-head h2,
  .landing-final h2 {
    font-size: 3rem;
  }

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

  .landing-steps {
    grid-template-columns: 1fr;
  }

  .landing-platforms {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-platforms div {
    justify-content: flex-start;
  }

  .landing-marquee-row {
    justify-content: start;
    overflow-x: auto;
    padding: 0 22px 8px;
  }

  .landing-marquee-row.reverse {
    transform: none;
  }
}

@media (max-width: 640px) {
  html:has(.app-shell[data-screen="home"]),
  body:has(.app-shell[data-screen="home"]) {
    background: var(--bg);
  }

  .landing-container {
    width: min(100% - 36px, 1216px);
  }

  .landing-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    padding: 14px 18px;
  }

  .landing-nav-actions,
  .landing-cta-row,
  .landing-proof {
    width: 100%;
  }

  .landing-nav-btn,
  .landing-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .landing-hero {
    min-height: 620px;
    padding: 78px 0 84px;
  }

  .landing-hero h1 {
    font-size: 3.2rem;
  }

  .landing-subcopy {
    font-size: 0.98rem;
  }

  .landing-proof,
  .landing-benefit-grid {
    grid-template-columns: 1fr;
  }

  .landing-creators,
  .landing-benefits,
  .landing-how,
  .landing-final {
    padding: 68px 0;
  }

  .landing-section-head h2,
  .landing-final h2 {
    font-size: 2.35rem;
  }

  .landing-section-head {
    margin-bottom: 30px;
  }

  .landing-marquee-row {
    grid-template-columns: repeat(6, 174px);
  }

  .landing-creator-card {
    height: 260px;
  }

  .landing-platforms p {
    font-size: 1.35rem;
  }

  .landing-how-tabs {
    width: 100%;
  }

  .landing-how-tabs button {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  html:has(.app-shell[data-screen="home"]),
  body:has(.app-shell[data-screen="home"]),
  .app-shell[data-screen="home"],
  .home-stage {
    max-width: 100%;
    overflow-x: hidden;
  }

  .landing-nav {
    width: 100%;
    max-width: 100%;
  }

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

  .landing-nav-btn {
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .landing-hero {
    overflow: hidden;
  }

  .landing-hero h1 {
    max-width: 340px;
    font-size: 2.72rem;
    line-height: 0.96;
  }

  .landing-hero em {
    text-underline-offset: 6px;
  }

  .landing-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .landing-btn {
    width: 100%;
  }

  .landing-marquee {
    width: 100%;
    overflow: hidden;
  }

  .landing-marquee-row,
  .landing-marquee-row.reverse {
    display: flex;
    width: 100%;
    transform: none;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 18px 8px;
  }

  .landing-creator-card {
    flex: 0 0 174px;
  }
}

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

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

@keyframes landingMarqueeReverse {
  from {
    transform: translateX(calc(-50% - 9px));
  }

  to {
    transform: translateX(0);
  }
}

.landing-hero {
  background: var(--bg);
}

.landing-marquee {
  overflow: hidden;
}

.landing-marquee-row,
.landing-marquee-row.reverse {
  display: flex;
  width: max-content;
  grid-template-columns: none;
  justify-content: flex-start;
  transform: none;
  will-change: transform;
}

.landing-marquee-row {
  animation: landingMarquee 34s linear infinite;
}

.landing-marquee-row.reverse {
  animation: landingMarqueeReverse 38s linear infinite;
}

.landing-marquee:hover .landing-marquee-row {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .landing-marquee-row,
  .landing-marquee-row.reverse {
    animation: none;
  }
}

@media (max-width: 640px) {
  .landing-marquee-row,
  .landing-marquee-row.reverse {
    width: 100%;
    animation: none;
  }
}

@media (max-width: 640px) {
  .landing-nav,
  .landing-container,
  .landing-hero-inner,
  .landing-cta-row,
  .landing-proof {
    max-width: 100%;
    min-width: 0;
  }

  .landing-nav-actions,
  .landing-cta-row {
    width: min(100%, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin-right: auto;
    margin-left: auto;
  }

  .landing-nav-btn,
  .landing-btn {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .landing-hero h1 {
    width: min(100%, 326px);
    max-width: 326px;
    font-size: 2.42rem;
  }

  .landing-hero h1 em {
    display: block;
  }
}

@media (max-width: 640px) {
  html,
  body,
  .app-shell[data-screen="home"],
  .home-stage {
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .landing-nav-actions,
  .landing-cta-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(280px, 100%) !important;
    max-width: 280px !important;
  }

  .landing-nav-btn,
  .landing-btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .landing-subcopy,
  .landing-proof {
    width: min(280px, 100%);
    max-width: 280px;
  }
}

.web-video-overlay,
.web-video-overlay h2,
.web-video-overlay p,
.clip-body,
.clip-title,
.clip-description {
  color: #ffffff;
}

.web-video-overlay .clip-kind,
.clip-kind {
  color: rgba(255, 255, 255, 0.88);
}

/* Landing 1:1 alignment with the provided source export. */
.landing-nav {
  grid-template-columns: auto 1fr;
  min-height: 78px;
}

.landing-nav-links,
.landing-proof {
  display: none;
}

.landing-nav-actions {
  justify-self: end;
}

.landing-hero {
  min-height: auto;
  padding: 80px 0 60px;
  background: var(--bg);
}

.landing-hero h1 {
  font-size: 5.7rem;
}

.landing-creators {
  padding-top: 90px;
}

@media (max-width: 768px) {
  .landing-nav {
    min-height: auto;
  }

  .landing-hero {
    padding: 50px 0 40px;
  }

  .landing-hero h1 {
    font-size: 3.25rem;
  }
}

@media (max-width: 640px) {
  .landing-nav {
    grid-template-columns: 1fr;
  }

  .landing-hero h1 {
    font-size: 2.42rem;
  }
}

/* Source landing from the provided Claude export, scoped to the home page. */
@keyframes sourceLandingPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

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

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

@keyframes sourceScrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes sourceReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@scope (.home-stage) {
  :scope {
    min-height: 100svh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.5;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .source-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    border-bottom: 1px solid var(--line);
    background: rgba(244, 241, 234, 0.72);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    box-shadow: 0 10px 28px rgba(42, 31, 61, 0.05);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0;
  }

  .logo-mark {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
  }

  .logo-mark::after {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--bg);
    content: "";
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    transition:
      color 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
    white-space: nowrap;
  }

  .nav-btn:focus,
  .btn:focus,
  .how-tab:focus,
  .platform-icon:focus {
    outline: none;
  }

  .nav-btn:focus-visible,
  .btn:focus-visible,
  .how-tab:focus-visible,
  .platform-icon:focus-visible {
    box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.18);
  }

  .nav-btn-secondary {
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--ink);
  }

  .nav-btn-secondary:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--bg);
  }

  .nav-btn-primary {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #ffffff;
  }

  .nav-btn-primary:hover {
    border-color: #5a3289;
    background: #5a3289;
    box-shadow: 0 8px 24px rgba(107, 63, 160, 0.28);
  }

  .hero {
    position: relative;
    overflow: hidden;
    padding: 156px 0 60px;
  }

  .hero-blob,
  .hero-blob-2 {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  h1.headline {
    margin: 0 0 32px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: clamp(52px, 9vw, 124px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.92;
  }

  .headline em {
    position: relative;
    display: inline-block;
    color: var(--accent);
    font-style: italic;
    font-weight: 300;
  }

  .headline em::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    opacity: 0.4;
  }

  .sub {
    max-width: 580px;
    margin: 0 auto 48px;
    color: var(--ink-dim);
    font-size: 19px;
    line-height: 1.5;
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 999px;
    padding: 18px 36px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    transition:
      color 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.25s ease;
  }

  .btn-primary {
    border: 1.5px solid var(--accent);
    background: var(--accent);
    color: #ffffff;
  }

  .btn-primary:hover {
    background: #5a3289;
    box-shadow: 0 12px 40px rgba(107, 63, 160, 0.32);
    transform: translateY(-2px);
  }

  .btn-secondary {
    border: 1.5px solid var(--ink);
    background: transparent;
    color: var(--ink);
  }

  .btn-secondary:hover {
    background: var(--ink);
    box-shadow: 0 12px 40px rgba(42, 31, 61, 0.18);
    color: var(--bg);
    transform: translateY(-2px);
  }

  .btn-arrow {
    transition: transform 0.25s ease;
  }

  .btn:hover .btn-arrow {
    transform: translateX(4px);
  }

  .creators-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  .section-eyebrow {
    color: var(--ink-faint);
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .section-title {
    max-width: 600px;
    margin: 12px 0 0;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
  }

  .section-title em {
    color: var(--ink-dim);
    font-style: italic;
  }

  .marquee-wrap {
    position: relative;
    overflow: hidden;
  }

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

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

  .marquee-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
  }

  .marquee-row {
    display: flex;
    width: max-content;
    gap: 18px;
    margin-bottom: 18px;
    animation: sourceScrollLeft 50s linear infinite;
    will-change: transform;
  }

  .marquee-row.reverse {
    animation: sourceScrollRight 55s linear infinite;
  }

  .marquee-wrap:hover .marquee-row {
    animation-play-state: paused;
  }

  .creator-card {
    position: relative;
    flex-shrink: 0;
    width: 220px;
    height: 320px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--bg-2);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .creator-card:hover {
    transform: translateY(-6px) scale(1.02);
  }

  .creator-card::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    content: "";
  }

  .creator-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .creator-preview-media {
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 32%),
      linear-gradient(145deg, rgba(107, 63, 160, 0.2), rgba(168, 213, 186, 0.22)),
      var(--bg-2);
  }

  .creator-meta {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 3;
    color: #ffffff;
  }

  .creator-name {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
  }

  .creator-tag {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .creator-price {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
  }

  .creator-play {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
  }

  .creator-play svg {
    width: 12px;
    height: 12px;
    margin-left: 2px;
    fill: #ffffff;
  }

  .benefits {
    position: relative;
    padding: 120px 0;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .benefit {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px 36px;
    background: #ffffff;
    transition:
      border-color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.3s ease;
  }

  .benefit:hover {
    border-color: var(--line-strong);
    box-shadow: 0 16px 40px rgba(42, 31, 61, 0.06);
    transform: translateY(-4px);
  }

  .benefit-num {
    display: block;
    margin-bottom: 32px;
    color: var(--ink-faint);
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    letter-spacing: 0;
  }

  .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    border-radius: 16px;
  }

  .benefit:nth-child(1) .benefit-icon {
    background: var(--accent);
    color: #ffffff;
  }

  .benefit:nth-child(2) .benefit-icon {
    background: var(--accent-2);
    color: var(--ink);
  }

  .benefit:nth-child(3) .benefit-icon {
    background: var(--accent-3);
    color: var(--ink);
  }

  .benefit:nth-child(4) .benefit-icon {
    background: var(--ink);
    color: #ffffff;
  }

  .benefit-icon svg {
    width: 26px;
    height: 26px;
  }

  .benefit-title {
    margin: 0 0 14px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
  }

  .benefit-desc {
    margin: 0;
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.6;
  }

  .benefit-decor {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(20px);
    pointer-events: none;
  }

  .benefit:nth-child(1) .benefit-decor {
    background: var(--accent);
  }

  .benefit:nth-child(2) .benefit-decor {
    background: var(--accent-2);
  }

  .benefit:nth-child(3) .benefit-decor {
    background: var(--accent-3);
  }

  .benefit:nth-child(4) .benefit-decor {
    background: var(--ink);
  }

  .types {
    padding: 100px 0 40px;
  }

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

  .type-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 28px;
    background: #ffffff;
    cursor: default;
    transition: all 0.25s ease;
  }

  .type-card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 12px 32px rgba(42, 31, 61, 0.06);
    transform: translateY(-3px);
  }

  .type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 12px;
    background: var(--bg-2);
    color: var(--accent);
    transition: all 0.25s ease;
  }

  .type-card:hover .type-icon {
    background: var(--accent);
    color: #ffffff;
  }

  .type-icon svg {
    width: 22px;
    height: 22px;
  }

  .type-name {
    margin: 0 0 10px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15;
  }

  .type-desc {
    margin: 0;
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.55;
  }

  .type-tag {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--ink-faint);
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .how {
    position: relative;
    padding: 40px 0 60px;
  }

  .platforms {
    margin-bottom: 80px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 56px 24px;
    text-align: center;
  }

  .platforms-label {
    margin: 0 0 40px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.05;
  }

  .platforms-label em {
    color: var(--accent);
    font-style: italic;
  }

  .platforms-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
  }

  .platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-dim);
    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }

  .platform-icon:hover {
    color: var(--ink);
    transform: translateY(-2px);
  }

  .platform-icon svg {
    width: 36px;
    height: 36px;
  }

  .how-tabs {
    display: inline-flex;
    margin-top: 40px;
    margin-bottom: 56px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px;
    background: #ffffff;
  }

  .how-tab {
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    background: transparent;
    color: var(--ink-dim);
    cursor: pointer;
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
    transition:
      color 0.25s ease,
      background 0.25s ease;
  }

  .how-tab.active {
    background: var(--accent);
    color: #ffffff;
  }

  .how-tab:not(.active):hover {
    color: var(--ink);
  }

  .how-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .how-steps::before {
    position: absolute;
    top: 44px;
    right: 8%;
    left: 8%;
    z-index: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
    content: "";
  }

  .how-step {
    position: relative;
    z-index: 1;
    text-align: left;
  }

  .how-num {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 38px;
    font-style: italic;
    font-weight: 400;
  }

  .how-step:nth-child(2) .how-num {
    color: #4a8268;
  }

  .how-step:nth-child(3) .how-num {
    color: #c97b3d;
  }

  .how-step-title {
    margin: 0 0 14px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15;
  }

  .how-step-desc {
    max-width: 320px;
    margin: 0;
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.6;
  }

  .final-cta {
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
  }

  .final-cta-inner {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 100px 60px;
    background: linear-gradient(135deg, #2a1f3d 0%, #1a1228 100%);
    color: #f5efe0;
    text-align: center;
  }

  .final-cta-inner::before {
    display: none;
  }

  .final-cta h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    color: #f5efe0;
    font-family: var(--font-serif);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.95;
  }

  .final-cta h2 em {
    color: var(--accent-3);
    font-style: italic;
  }

  .final-cta p {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto 48px;
    color: rgba(245, 239, 224, 0.7);
    font-size: 18px;
  }

  .final-cta .cta-row {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
  }

  .final-cta .btn-primary {
    border-color: var(--accent-3);
    background: var(--accent-3);
    color: var(--ink);
  }

  .final-cta .btn-primary:hover {
    border-color: #ffe5c4;
    background: #ffe5c4;
    box-shadow: 0 12px 40px rgba(255, 212, 163, 0.3);
  }

  .final-cta .btn-secondary {
    border-color: #f5efe0;
    background: transparent;
    color: #f5efe0;
  }

  .final-cta .btn-secondary:hover {
    background: #f5efe0;
    box-shadow: 0 12px 40px rgba(245, 239, 224, 0.18);
    color: var(--ink);
  }

  footer {
    border-top: 1px solid var(--line);
    padding: 48px 0;
    text-align: center;
  }

  .footer-text {
    margin: 0;
    color: var(--ink-faint);
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    letter-spacing: 0;
  }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: sourceReveal 0.8s ease forwards;
  }

  .reveal-1 {
    animation-delay: 0.1s;
  }

  .reveal-2 {
    animation-delay: 0.2s;
  }

  .reveal-3 {
    animation-delay: 0.35s;
  }

  .reveal-4 {
    animation-delay: 0.5s;
  }

  .reveal-5 {
    animation-delay: 0.65s;
  }
}

@media (max-width: 900px) {
  @scope (.home-stage) {
    .types-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  @scope (.home-stage) {
    .marquee-row,
    .marquee-row.reverse,
    .reveal {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }
}

@media (max-width: 768px) {
  @scope (.home-stage) {
    .container {
      padding: 0 20px;
    }

    .nav-inner {
      padding: 14px 20px;
    }

    .nav-btn-secondary {
      display: none;
    }

    .nav-btn {
      padding: 9px 14px;
      font-size: 12px;
    }

    .hero {
      padding: 118px 0 40px;
    }

    .creator-card {
      width: 170px;
      height: 250px;
    }

    .benefits-grid,
    .how-steps {
      grid-template-columns: 1fr;
    }

    .benefit {
      padding: 32px 28px;
    }

    .platforms {
      margin-bottom: 56px;
      padding: 36px 16px;
    }

    .platforms-label {
      margin-bottom: 28px;
    }

    .platforms-row {
      gap: 32px;
    }

    .platform-icon svg {
      width: 28px;
      height: 28px;
    }

    .how-steps {
      gap: 36px;
    }

    .how-steps::before {
      display: none;
    }

    .how-tabs {
      width: 100%;
      justify-content: center;
    }

    .how-tab {
      padding: 10px 18px;
      font-size: 11px;
    }

    .final-cta-inner {
      padding: 60px 28px;
    }
  }
}

@media (max-width: 540px) {
  @scope (.home-stage) {
    .types-grid {
      grid-template-columns: 1fr;
    }

    .type-card {
      padding: 26px 24px;
    }
  }
}

.app-shell[data-screen="home"] .home-stage > .source-nav {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid rgba(42, 31, 61, 0.12);
  background: rgba(244, 241, 234, 0.72);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: 0 10px 28px rgba(42, 31, 61, 0.05);
}

.app-shell[data-screen="home"] .home-stage > .hero {
  padding-top: 156px;
}

@media (max-width: 768px) {
  .app-shell[data-screen="home"] .home-stage > .hero {
    padding-top: 236px;
  }
}

/* App-wide editorial theme: extend the landing visual language into the product and creator setup. */
.app-shell[data-screen="app"] {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 42%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
}

.app-shell[data-screen="boot"] {
  position: fixed;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 44%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
}

.app-shell[data-screen="boot"] > :not(.app-boot-loader) {
  display: none !important;
}

.app-boot-loader {
  display: none;
}

.app-shell[data-screen="boot"] .app-boot-loader {
  display: grid;
  min-height: 100%;
  place-items: center;
}

.app-boot-card {
  display: grid;
  min-width: min(360px, calc(100vw - 48px));
  justify-items: center;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(42, 31, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(42, 31, 61, 0.08);
}

.app-boot-logo {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}

.app-boot-logo span {
  color: var(--accent);
}

.app-boot-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(42, 31, 61, 0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: appBootSpin 0.8s linear infinite;
}

.app-boot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.app-shell[data-screen="app"] * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.app-shell[data-screen="app"] .home-stage,
.app-shell[data-screen="app"] .desk-panel {
  display: none;
}

.app-shell[data-screen="app"] .web-stage {
  gap: 16px;
  grid-template-rows: 72px minmax(0, 1fr);
}

.app-shell[data-screen="app"] .web-topbar {
  position: relative;
  z-index: 30;
  margin: -18px -18px 0;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.74);
  backdrop-filter: blur(18px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
  box-shadow: 0 10px 28px rgba(42, 31, 61, 0.05);
}

.app-shell[data-screen="app"] .brand-lockup {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
}

.app-shell[data-screen="app"] .brand-mark {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  overflow: visible;
  border-radius: 50%;
  background: var(--accent);
  color: transparent;
  font-size: 0;
}

.app-shell[data-screen="app"] .brand-mark::after {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--bg);
  content: "";
}

.app-shell[data-screen="app"] .web-top-actions,
.app-shell[data-screen="app"] .role-switch,
.app-shell[data-screen="app"] .app-logout-button,
.app-shell[data-screen="app"] .category-tabs,
.app-shell[data-screen="app"] .bottom-nav,
.app-shell[data-screen="app"] .phone-role-switch {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px rgba(42, 31, 61, 0.07);
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.app-shell[data-screen="app"] .web-filter-button,
.app-shell[data-screen="app"] .role-switch button,
.app-shell[data-screen="app"] .app-logout-button,
.app-shell[data-screen="app"] .category-tab,
.app-shell[data-screen="app"] .nav-button {
  color: var(--ink-dim);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
}

.app-shell[data-screen="app"] .web-filter-button:focus,
.app-shell[data-screen="app"] .role-switch button:focus,
.app-shell[data-screen="app"] .app-logout-button:focus,
.app-shell[data-screen="app"] .category-tab:focus,
.app-shell[data-screen="app"] .nav-button:focus,
.app-shell[data-screen="app"] .deal-action:focus,
.app-shell[data-screen="app"] .onboarding-category-grid button:focus,
.app-shell[data-screen="app"] .topic-chip:focus {
  outline: none;
}

.app-shell[data-screen="app"] .web-filter-button:focus-visible,
.app-shell[data-screen="app"] .role-switch button:focus-visible,
.app-shell[data-screen="app"] .app-logout-button:focus-visible,
.app-shell[data-screen="app"] .category-tab:focus-visible,
.app-shell[data-screen="app"] .nav-button:focus-visible,
.app-shell[data-screen="app"] .deal-action:focus-visible,
.app-shell[data-screen="app"] .onboarding-category-grid button:focus-visible,
.app-shell[data-screen="app"] .topic-chip:focus-visible {
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.18);
}

.app-shell[data-screen="app"] .web-filter-button.is-active,
.app-shell[data-screen="app"] .role-switch button.is-active,
.app-shell[data-screen="app"] .category-tab.is-active,
.app-shell[data-screen="app"] .nav-button.is-active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(107, 63, 160, 0.22);
}

.app-shell[data-screen="app"] .web-sidebar,
.app-shell[data-screen="app"] .web-panel,
.app-shell[data-screen="app"] .creator-sidebar,
.app-shell[data-screen="app"] .creator-main,
.app-shell[data-screen="app"] .creator-aside,
.app-shell[data-screen="app"] .creator-card-panel,
.app-shell[data-screen="app"] .creator-main-head,
.app-shell[data-screen="app"] .creator-upload-strip,
.app-shell[data-screen="app"] .creator-upload-form,
.app-shell[data-screen="app"] .creator-video-card,
.app-shell[data-screen="app"] .creator-request-row,
.app-shell[data-screen="app"] .creator-portfolio-toolbar,
.app-shell[data-screen="app"] .client-filter-section,
.app-shell[data-screen="app"] .onboarding-topic-panel,
.app-shell[data-screen="app"] .onboarding-profile-photo,
.app-shell[data-screen="app"] .profile-drawer,
.app-shell[data-screen="app"] .profile-sheet,
.app-shell[data-screen="app"] .access-card,
.app-shell[data-screen="app"] .conversation,
.app-shell[data-screen="app"] .inbox-view,
.app-shell[data-screen="app"] .deal-view,
.app-shell[data-screen="app"] .screen-heading {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 40px rgba(42, 31, 61, 0.07);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--ink);
}

.app-shell[data-screen="app"] .web-sidebar,
.app-shell[data-screen="app"] .creator-sidebar,
.app-shell[data-screen="app"] .creator-aside {
  padding: 16px;
}

.app-shell[data-screen="app"] .web-panel,
.app-shell[data-screen="app"] .creator-card-panel,
.app-shell[data-screen="app"] .creator-main-head,
.app-shell[data-screen="app"] .creator-upload-form,
.app-shell[data-screen="app"] .creator-video-card,
.app-shell[data-screen="app"] .creator-portfolio-toolbar {
  padding: 18px;
}

.app-shell[data-screen="app"] .web-section-label,
.app-shell[data-screen="app"] .web-kicker,
.app-shell[data-screen="app"] .client-filter-head,
.app-shell[data-screen="app"] .creator-profile-top span,
.app-shell[data-screen="app"] .creator-panel-head span,
.app-shell[data-screen="app"] .creator-main-head span,
.app-shell[data-screen="app"] .creator-mini-stats span,
.app-shell[data-screen="app"] .creator-status-stack span,
.app-shell[data-screen="app"] .creator-brief-grid span,
.app-shell[data-screen="app"] .portfolio-metrics-bar span,
.app-shell[data-screen="app"] .creator-portfolio-toolbar span,
.app-shell[data-screen="app"] .creator-upload-form label span,
.app-shell[data-screen="app"] .section-label,
.app-shell[data-screen="app"] .desk-title {
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.app-shell[data-screen="app"] .web-panel-head strong,
.app-shell[data-screen="app"] .web-profile-row h2,
.app-shell[data-screen="app"] .web-video-empty strong,
.app-shell[data-screen="app"] .web-panel-empty strong,
.app-shell[data-screen="app"] .web-list-empty strong,
.app-shell[data-screen="app"] .web-creator-copy strong,
.app-shell[data-screen="app"] .web-category-button span strong,
.app-shell[data-screen="app"] .web-saved-row,
.app-shell[data-screen="app"] .web-saved-row strong,
.app-shell[data-screen="app"] .creator-profile-top h2,
.app-shell[data-screen="app"] .creator-main-head h1,
.app-shell[data-screen="app"] .creator-video-body h3,
.app-shell[data-screen="app"] .creator-video-body strong,
.app-shell[data-screen="app"] .creator-panel-head strong,
.app-shell[data-screen="app"] .creator-mini-stats strong,
.app-shell[data-screen="app"] .creator-status-stack strong,
.app-shell[data-screen="app"] .creator-brief-grid strong,
.app-shell[data-screen="app"] .portfolio-metrics-bar strong,
.app-shell[data-screen="app"] .creator-dropzone strong,
.app-shell[data-screen="app"] .creator-onboarding-card h2,
.app-shell[data-screen="app"] .onboarding-price-card strong,
.app-shell[data-screen="app"] .onboarding-category-grid strong,
.app-shell[data-screen="app"] .profile-video-card h3,
.app-shell[data-screen="app"] .profile-detail-copy h2,
.app-shell[data-screen="app"] .profile-detail-copy p,
.app-shell[data-screen="app"] .desktop-status strong,
.app-shell[data-screen="app"] .access-card h2,
.app-shell[data-screen="app"] .profile-hero h2,
.app-shell[data-screen="app"] .profile-hero strong,
.app-shell[data-screen="app"] .metric strong,
.app-shell[data-screen="app"] .deal-person strong,
.app-shell[data-screen="app"] .thread-name,
.app-shell[data-screen="app"] .conversation-head strong,
.app-shell[data-screen="app"] .timeline-step.is-current,
.app-shell[data-screen="app"] .brief-list li {
  color: var(--ink);
}

.app-shell[data-screen="app"] .creator-main-head h1,
.app-shell[data-screen="app"] .web-profile-row h2,
.app-shell[data-screen="app"] .profile-detail-copy h2,
.app-shell[data-screen="app"] .access-card h2,
.app-shell[data-screen="app"] .creator-onboarding-card h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.app-shell[data-screen="app"] .creator-main-head h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}

.app-shell[data-screen="app"] .web-profile-row p,
.app-shell[data-screen="app"] .web-detail-bio,
.app-shell[data-screen="app"] .web-category-button span small,
.app-shell[data-screen="app"] .web-creator-copy span,
.app-shell[data-screen="app"] .web-creator-copy small,
.app-shell[data-screen="app"] .web-saved-row small,
.app-shell[data-screen="app"] .creator-profile-top p,
.app-shell[data-screen="app"] .creator-profile-card > p,
.app-shell[data-screen="app"] .creator-main-head p,
.app-shell[data-screen="app"] .creator-video-body p,
.app-shell[data-screen="app"] .creator-video-meta,
.app-shell[data-screen="app"] .creator-upload-strip small,
.app-shell[data-screen="app"] .creator-dropzone,
.app-shell[data-screen="app"] .creator-onboarding-card p,
.app-shell[data-screen="app"] .creator-onboarding-preview,
.app-shell[data-screen="app"] .onboarding-price-card p,
.app-shell[data-screen="app"] .onboarding-category-grid span,
.app-shell[data-screen="app"] .profile-video-card p,
.app-shell[data-screen="app"] .desktop-status,
.app-shell[data-screen="app"] .summary-sub,
.app-shell[data-screen="app"] .profile-bio,
.app-shell[data-screen="app"] .access-card p,
.app-shell[data-screen="app"] .access-price span,
.app-shell[data-screen="app"] .web-video-empty span,
.app-shell[data-screen="app"] .web-panel-empty span,
.app-shell[data-screen="app"] .web-list-empty span,
.app-shell[data-screen="app"] .thread-preview,
.app-shell[data-screen="app"] .thread-meta,
.app-shell[data-screen="app"] .timeline-date,
.app-shell[data-screen="app"] .deal-person span,
.app-shell[data-screen="app"] .metric span,
.app-shell[data-screen="app"] .profile-hero p {
  color: var(--ink-dim);
}

.app-shell[data-screen="app"] .web-search,
.app-shell[data-screen="app"] .web-composer input,
.app-shell[data-screen="app"] .composer input,
.app-shell[data-screen="app"] .creator-upload-form input,
.app-shell[data-screen="app"] .creator-upload-form textarea,
.app-shell[data-screen="app"] .creator-upload-form select,
.app-shell[data-screen="app"] .video-category-select {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.app-shell[data-screen="app"] .creator-upload-form textarea {
  border-radius: 18px;
}

.app-shell[data-screen="app"] .money-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.app-shell[data-screen="app"] .money-input-symbol {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 38px;
  border-right: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 900;
}

.app-shell[data-screen="app"] .creator-upload-form .money-input input,
.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form .money-input input {
  min-height: 0;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 14px;
}

.app-shell[data-screen="app"] .web-search input,
.app-shell[data-screen="app"] .web-composer input,
.app-shell[data-screen="app"] .composer input,
.app-shell[data-screen="app"] .creator-upload-form input,
.app-shell[data-screen="app"] .creator-upload-form textarea,
.app-shell[data-screen="app"] .creator-upload-form select,
.app-shell[data-screen="app"] .video-category-select {
  color: var(--ink);
}

.app-shell[data-screen="app"] .web-search input::placeholder,
.app-shell[data-screen="app"] .web-composer input::placeholder,
.app-shell[data-screen="app"] .composer input::placeholder {
  color: rgba(107, 95, 122, 0.58);
}

.app-shell[data-screen="app"] .web-category-button,
.app-shell[data-screen="app"] .web-creator-row,
.app-shell[data-screen="app"] .web-saved-row,
.app-shell[data-screen="app"] .filter-chip,
.app-shell[data-screen="app"] .topic-chip,
.app-shell[data-screen="app"] .main-video-button,
.app-shell[data-screen="app"] .web-save-wide,
.app-shell[data-screen="app"] .onboarding-steps button,
.app-shell[data-screen="app"] .onboarding-category-grid button,
.app-shell[data-screen="app"] .creator-mini-stats div,
.app-shell[data-screen="app"] .creator-status-stack div,
.app-shell[data-screen="app"] .creator-brief-grid div,
.app-shell[data-screen="app"] .onboarding-price-card,
.app-shell[data-screen="app"] .portfolio-metrics-bar div,
.app-shell[data-screen="app"] .web-mini-timeline span,
.app-shell[data-screen="app"] .creator-pipeline span,
.app-shell[data-screen="app"] .metric,
.app-shell[data-screen="app"] .deal-section,
.app-shell[data-screen="app"] .deal-hero,
.app-shell[data-screen="app"] .profile-video-card,
.app-shell[data-screen="app"] .profile-brief-row,
.app-shell[data-screen="app"] .thread-item,
.app-shell[data-screen="app"] .web-mode-row {
  border: 1px solid var(--line);
  background: rgba(42, 31, 61, 0.045);
  color: var(--ink-dim);
}

.app-shell[data-screen="app"] .web-saved-list {
  grid-template-columns: 1fr;
}

.app-shell[data-screen="app"] .web-saved-row {
  grid-template-columns: 18px 36px minmax(0, 1fr);
}

.app-shell[data-screen="app"] .web-category-button.is-active,
.app-shell[data-screen="app"] .web-creator-row.is-active,
.app-shell[data-screen="app"] .filter-chip.is-active,
.app-shell[data-screen="app"] .topic-chip.is-active,
.app-shell[data-screen="app"] .web-mode-row.is-active,
.app-shell[data-screen="app"] .thread-item.is-active,
.app-shell[data-screen="app"] .creator-request-row.is-active,
.app-shell[data-screen="app"] .onboarding-steps button.is-active,
.app-shell[data-screen="app"] .onboarding-category-grid button.is-active,
.app-shell[data-screen="app"] .main-video-button.is-active,
.app-shell[data-screen="app"] .web-save-wide.is-saved {
  border-color: rgba(107, 63, 160, 0.34);
  background: rgba(107, 63, 160, 0.11);
  color: var(--ink);
}

.app-shell[data-screen="app"] .filter-chip.is-active,
.app-shell[data-screen="app"] .topic-chip.is-active,
.app-shell[data-screen="app"] .main-video-button.is-active,
.app-shell[data-screen="app"] .web-save-wide.is-saved {
  background: rgba(255, 212, 163, 0.42);
}

.app-shell[data-screen="app"] .deal-action,
.app-shell[data-screen="app"] .send-button,
.app-shell[data-screen="app"] .message-cta,
.app-shell[data-screen="app"] .web-round-action.primary,
.app-shell[data-screen="app"] .web-round-action.is-saved {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(107, 63, 160, 0.2);
}

.app-shell[data-screen="app"] .deal-action.secondary,
.app-shell[data-screen="app"] .web-save-wide,
.app-shell[data-screen="app"] .main-video-button {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  box-shadow: none;
}

.app-shell[data-screen="app"] .web-row-price,
.app-shell[data-screen="app"] .summary-price,
.app-shell[data-screen="app"] .price-pill,
.app-shell[data-screen="app"] .creator-request-row em,
.app-shell[data-screen="app"] .bubble.is-client,
.app-shell[data-screen="app"] .unread-badge {
  background: var(--accent);
  color: #ffffff;
}

.app-shell[data-screen="app"] .web-detail-tags span,
.app-shell[data-screen="app"] .profile-tags span,
.app-shell[data-screen="app"] .clip-tag,
.app-shell[data-screen="app"] .attachment-chip {
  background: rgba(107, 63, 160, 0.1);
  color: var(--ink-dim);
}

.app-shell[data-screen="app"] .web-video-media {
  border-color: rgba(42, 31, 61, 0.16);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(42, 31, 61, 0.16);
}

.app-shell[data-screen="app"] .web-video-overlay h2,
.app-shell[data-screen="app"] .clip-title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.app-shell[data-screen="app"] .web-icon-button,
.app-shell[data-screen="app"] .web-round-action,
.app-shell[data-screen="app"] .action-button {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] {
  align-content: center;
  padding: 24px 0 42px;
  overflow: auto;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main {
  display: grid;
  gap: 16px;
  width: min(100%, 920px);
  margin: 0 auto;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main-head {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main-head > * {
  position: relative;
  z-index: 1;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main-head p {
  max-width: 560px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-form,
.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-topic-panel {
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-form .onboarding-topic-panel {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.app-shell[data-screen="app"] .onboarding-profile-photo {
  grid-template-columns: 92px minmax(0, 1fr);
  padding: 16px;
  border-radius: 20px;
}

.app-shell[data-screen="app"] .onboarding-profile-photo img,
.app-shell[data-screen="app"] .onboarding-avatar-placeholder {
  width: 92px;
  height: 92px;
  border: 4px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(42, 31, 61, 0.12);
}

.app-shell[data-screen="app"] .onboarding-steps.compact {
  align-self: start;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.app-shell[data-screen="app"] .onboarding-steps.compact button {
  width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.app-shell[data-screen="app"] .onboarding-steps.compact button span {
  width: 30px;
  height: 30px;
  background: rgba(42, 31, 61, 0.08);
  color: var(--ink-dim);
}

.app-shell[data-screen="app"] .onboarding-steps.compact button.is-active {
  background: var(--accent);
}

.app-shell[data-screen="app"] .onboarding-steps.compact button.is-active span {
  background: transparent;
  color: #ffffff;
}

.app-shell[data-screen="app"] .onboarding-steps.compact button.is-done span {
  background: var(--accent-2);
  color: var(--ink);
}

.app-shell[data-screen="app"] .onboarding-category-grid button {
  min-height: 106px;
  border-radius: 20px;
  padding: 18px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.app-shell[data-screen="app"] .onboarding-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-shell[data-screen="app"] .onboarding-category-grid button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(42, 31, 61, 0.08);
}

.app-shell[data-screen="app"] .onboarding-category-grid button.is-active {
  border-color: rgba(107, 63, 160, 0.42);
  background: rgba(107, 63, 160, 0.11);
}

.app-shell[data-screen="app"] .onboarding-category-grid strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
}

.app-shell[data-screen="app"] .topic-chip {
  min-height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.app-shell[data-screen="app"] .topic-chip.is-active {
  background: rgba(255, 212, 163, 0.5);
  color: var(--ink);
}

.app-shell[data-screen="app"] .onboarding-price-card {
  border-radius: 20px;
  background: rgba(168, 213, 186, 0.28);
}

.app-shell[data-screen="app"] .onboarding-price-card strong {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.app-shell[data-screen="app"] .creator-dropzone {
  border: 1px dashed rgba(107, 63, 160, 0.34);
  border-radius: 20px;
  background: rgba(107, 63, 160, 0.06);
  color: var(--ink-dim);
}

.app-shell[data-screen="app"] .creator-video-card {
  overflow: hidden;
  border-radius: 20px;
}

.app-shell[data-screen="app"] .creator-video-thumb,
.app-shell[data-screen="app"] .creator-main-video-preview,
.app-shell[data-screen="app"] .web-detail-sample {
  border-radius: 16px;
}

.app-shell[data-screen="app"] .portfolio-metrics-bar div,
.app-shell[data-screen="app"] .creator-mini-stats div,
.app-shell[data-screen="app"] .creator-status-stack div {
  border-radius: 16px;
  background: rgba(168, 213, 186, 0.22);
}

.app-shell[data-screen="app"] .portfolio-metrics-bar strong,
.app-shell[data-screen="app"] .creator-mini-stats strong,
.app-shell[data-screen="app"] .creator-status-stack strong {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}

.app-shell[data-screen="app"] .phone-stage {
  border-color: rgba(42, 31, 61, 0.18);
  background: #0b0a0d;
  box-shadow: 0 24px 70px rgba(42, 31, 61, 0.18);
}

.app-shell[data-screen="app"] .top-bar {
  background: linear-gradient(180deg, rgba(244, 241, 234, 0.84), rgba(244, 241, 234, 0));
  color: var(--ink);
}

.app-shell[data-screen="app"] .top-bar .brand-lockup {
  color: var(--ink);
}

.app-shell[data-screen="app"] .phone-role-switch,
.app-shell[data-screen="app"] .category-tabs {
  background: rgba(255, 255, 255, 0.72);
}

.app-shell[data-screen="app"] .profile-sheet,
.app-shell[data-screen="app"] .profile-drawer,
.app-shell[data-screen="app"] .access-card {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .app-shell[data-screen="app"] {
    position: relative;
    min-height: 100svh;
    height: auto;
    overflow: auto;
    padding: 12px;
  }

  .app-shell[data-screen="app"] .web-topbar {
    margin: -12px -12px 0;
    padding: 12px;
  }

  .app-shell[data-screen="app"] .web-stage {
    min-height: calc(100svh - 24px);
  }

  .app-shell[data-screen="app"] .onboarding-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  html:has(.app-shell[data-screen="app"]),
  body:has(.app-shell[data-screen="app"]) {
    background: var(--bg);
  }

  .app-shell[data-screen="app"] {
    padding: 0;
    background: var(--bg);
  }

  .app-shell[data-screen="app"] .phone-stage {
    width: 100%;
    height: 100svh;
    border: 0;
    border-radius: 0;
  }

  .app-shell[data-screen="app"][data-role="creator"] {
    padding: 10px;
  }

  .app-shell[data-screen="app"][data-role="creator"] .web-stage {
    display: grid;
  }

  .app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main-head,
  .app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-form,
  .app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-topic-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .app-shell[data-screen="app"] .creator-main-head {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

/* Creator density pass: keep the new editorial styling, but stop workspace/setup views from wasting the viewport. */
.app-shell[data-screen="app"][data-role="creator"] .web-stage {
  gap: 12px;
  grid-template-rows: 68px minmax(0, 1fr);
}

.app-shell[data-screen="app"][data-role="creator"] .creator-stage {
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr) minmax(210px, 280px);
  gap: 12px;
  height: 100%;
}

.app-shell[data-screen="app"] .creator-sidebar,
.app-shell[data-screen="app"] .creator-aside {
  gap: 10px;
  padding: 0;
  overflow: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.app-shell[data-screen="app"] .creator-card-panel,
.app-shell[data-screen="app"] .creator-main-head,
.app-shell[data-screen="app"] .creator-upload-form {
  padding: 14px;
  border-radius: 18px;
}

.app-shell[data-screen="app"] .creator-profile-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 14px;
}

.app-shell[data-screen="app"] .creator-profile-top {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
}

.app-shell[data-screen="app"] .creator-profile-top img {
  width: 48px;
  height: 48px;
}

.app-shell[data-screen="app"] .creator-profile-top h2 {
  font-size: 18px;
  line-height: 1.05;
}

.app-shell[data-screen="app"] .creator-profile-top p,
.app-shell[data-screen="app"] .creator-profile-card > p {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.28;
}

.app-shell[data-screen="app"] .creator-profile-card > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.app-shell[data-screen="app"] .creator-mini-stats {
  gap: 6px;
  margin-top: 0;
}

.app-shell[data-screen="app"] .creator-mini-stats div,
.app-shell[data-screen="app"] .creator-status-stack div {
  gap: 2px;
  padding: 8px;
  border-radius: 14px;
}

.app-shell[data-screen="app"] .creator-mini-stats span,
.app-shell[data-screen="app"] .creator-status-stack span {
  font-size: 10px;
}

.app-shell[data-screen="app"] .creator-mini-stats strong,
.app-shell[data-screen="app"] .creator-status-stack strong {
  font-size: 21px;
  line-height: 1;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"][data-focus="portfolio"] .creator-main {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 10px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"] .creator-main-head {
  min-height: 0;
  padding: 16px 18px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"] .creator-main-head h1 {
  font-size: clamp(36px, 4.2vw, 50px);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"] .creator-main-head p {
  max-width: 560px;
  margin-top: 4px;
  font-size: 14px;
}

.app-shell[data-screen="app"] .creator-portfolio-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.app-shell[data-screen="app"] .creator-head-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.app-shell[data-screen="app"] .creator-head-actions > span {
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.app-shell[data-screen="app"] .creator-head-actions .deal-action {
  min-height: 40px;
  padding: 0 16px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"][data-focus="portfolio"] .creator-video-grid {
  grid-template-columns: repeat(auto-fill, minmax(168px, 176px));
  gap: 16px;
  min-height: 0;
  padding: 6px 8px 18px 6px;
  overflow: auto;
  align-content: start;
  justify-content: start;
}

.app-shell[data-screen="app"] .creator-video-card {
  position: relative;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #19151f;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"] .creator-video-card {
  aspect-ratio: 9 / 14;
}

.app-shell[data-screen="app"] .creator-video-thumb {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border-radius: 0;
  background-image:
    linear-gradient(180deg, rgba(42, 31, 61, 0.02) 0%, rgba(42, 31, 61, 0.14) 46%, rgba(13, 10, 18, 0.92) 100%),
    var(--creator-image);
}

.app-shell[data-screen="app"] .creator-video-preview-media,
.app-shell[data-screen="app"] .profile-library-preview-media,
.app-shell[data-screen="app"] .web-video-preview-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-shell[data-screen="app"] .creator-video-preview-media,
.app-shell[data-screen="app"] .profile-library-preview-media {
  z-index: 0;
}

.app-shell[data-screen="app"] .web-video-preview-media {
  z-index: 0;
}

.app-shell[data-screen="app"] .creator-video-thumb span {
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(42, 31, 61, 0.58);
  color: #ffffff;
}

.app-shell[data-screen="app"] .creator-video-body,
.app-shell[data-screen="app"] .creator-video-meta,
.app-shell[data-screen="app"] .creator-video-controls {
  position: absolute;
  z-index: 2;
}

.app-shell[data-screen="app"] .creator-video-body {
  left: 12px;
  right: 12px;
  bottom: 78px;
  display: grid;
  gap: 4px;
  padding: 0;
  color: #ffffff;
}

.app-shell[data-screen="app"] .creator-video-body h3 {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.05;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.app-shell[data-screen="app"] .creator-video-body p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.app-shell[data-screen="app"] .creator-video-body strong {
  color: #ffffff;
  font-size: 13px;
}

.app-shell[data-screen="app"] .creator-video-meta {
  left: 12px;
  right: 12px;
  bottom: 48px;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.app-shell[data-screen="app"] .creator-video-meta span {
  min-width: 0;
}

.app-shell[data-screen="app"] .creator-video-meta svg {
  width: 12px;
  height: 12px;
}

.app-shell[data-screen="app"] .creator-video-controls {
  left: 10px;
  right: 10px;
  bottom: 10px;
  grid-template-columns: minmax(0, 1fr) 42px auto;
  gap: 8px;
  padding: 0;
}

.app-shell[data-screen="app"] .creator-video-controls .main-video-button {
  min-height: 36px;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.app-shell[data-screen="app"] .creator-video-controls .main-video-button.is-active {
  border-color: rgba(255, 212, 163, 0.72);
  background: rgba(255, 212, 163, 0.22);
}

.app-shell[data-screen="app"] .creator-video-controls .video-category-select {
  width: 42px;
  min-width: 42px;
  min-height: 36px;
  padding: 0 8px;
  overflow: hidden;
  color: transparent;
  background-color: rgba(255, 255, 255, 0.18);
  background-position: center;
}

.app-shell[data-screen="app"] .creator-video-controls .video-category-select option {
  color: var(--ink);
}

.app-shell[data-screen="app"] .creator-video-delete-button {
  display: inline-grid;
  grid-auto-flow: column;
  place-items: center;
  min-width: 42px;
  min-height: 36px;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.app-shell[data-screen="app"] .creator-video-delete-button:hover {
  border-color: rgba(255, 122, 122, 0.72);
  background: rgba(255, 122, 122, 0.26);
}

.app-shell[data-screen="app"] .creator-video-delete-button svg {
  width: 17px;
  height: 17px;
}

.app-shell[data-screen="app"] .onboarding-sample-grid .creator-video-delete-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(108, 35, 35, 0.72);
}

.app-shell[data-screen="app"] .creator-empty-state {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 220px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink-dim);
  text-align: center;
}

.app-shell[data-screen="app"] .creator-empty-state strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.app-shell[data-screen="app"] .creator-portfolio-empty {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 6px;
  min-height: 0;
  padding: 28px 16px 0;
  color: var(--ink-dim);
  text-align: center;
}

.app-shell[data-screen="app"] .creator-portfolio-empty strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.05;
}

.app-shell[data-screen="app"] .creator-portfolio-empty span {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.35;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"] .creator-aside .creator-card-panel {
  padding: 14px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"] .creator-aside .creator-status-stack {
  gap: 8px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] {
  align-content: start;
  padding: 12px 0 18px;
  overflow: hidden;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main {
  gap: 10px;
  width: min(100%, 920px);
  max-height: 100%;
  overflow: auto;
  padding-bottom: 2px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 22px 28px;
  border-radius: 22px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main-head h1 {
  font-size: clamp(34px, 4.6vw, 52px);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main-head p {
  margin-top: 4px;
  font-size: 14px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-form,
.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-topic-panel {
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-profile-photo {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-profile-photo img,
.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-width: 3px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-photo-button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-photo-button:hover {
  border-color: rgba(107, 63, 160, 0.34);
  background: rgba(255, 255, 255, 0.9);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-photo-button-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(107, 63, 160, 0.1);
  color: var(--accent);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-photo-button-icon svg {
  width: 20px;
  height: 20px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-photo-button-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-photo-button-copy strong,
.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-photo-button-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-photo-button-copy strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-photo-button-copy small {
  color: var(--ink-dim);
  font-size: 12px;
  font-weight: 700;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-upload-form label {
  gap: 5px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-upload-form input,
.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-upload-form select {
  min-height: 40px;
  padding: 0 14px;
  font-size: 15px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-upload-form textarea {
  min-height: 76px;
  padding: 12px 14px;
  font-size: 15px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-field-grid {
  gap: 8px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-rate-list {
  gap: 8px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-price-row {
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(42, 31, 61, 0.045);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-price-row .icon-button {
  justify-self: end;
  width: 38px;
  min-height: 38px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .pricing-add-button {
  justify-self: start;
  min-height: 40px;
  padding: 0 16px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-price-summary {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px 14px;
  padding: 12px 14px;
  border-radius: 18px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-price-summary strong {
  font-size: clamp(30px, 4vw, 40px);
  text-align: right;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-price-summary p {
  grid-column: 1 / -1;
  font-size: 13px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .compact-dropzone {
  min-height: 98px;
  padding: 14px;
}

.app-shell[data-screen="app"] .video-dropzone {
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.app-shell[data-screen="app"] .video-dropzone.is-clickable {
  cursor: pointer;
}

.app-shell[data-screen="app"] .video-dropzone.is-dragging {
  border-color: rgba(107, 63, 160, 0.58);
  background: rgba(107, 63, 160, 0.12);
  box-shadow: inset 0 0 0 1px rgba(107, 63, 160, 0.16), 0 16px 34px rgba(107, 63, 160, 0.12);
  transform: translateY(-1px);
}

.app-shell[data-screen="app"] .video-dropzone.is-disabled {
  opacity: 0.72;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .compact-dropzone svg {
  width: 20px;
  height: 20px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .compact-dropzone strong {
  font-size: 18px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .compact-dropzone span {
  max-width: 320px;
  font-size: 13px;
}

.app-shell[data-screen="app"] .dropzone-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  margin-top: 2px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.app-shell[data-screen="app"] .dropzone-action svg {
  width: 17px;
  height: 17px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-sample-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-sample-grid .creator-video-card {
  min-height: 220px;
  aspect-ratio: 9 / 13;
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-actions {
  position: sticky;
  bottom: 0;
  z-index: 4;
  gap: 10px;
  padding-top: 4px;
  background: linear-gradient(180deg, rgba(244, 241, 234, 0), var(--bg) 42%);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-actions .deal-action {
  min-height: 46px;
}

.app-shell[data-screen="app"] .onboarding-error,
.app-shell[data-screen="app"] .creator-portfolio-error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(190, 44, 44, 0.28);
  border-radius: 14px;
  background: #fff1ee;
  color: #8f2525;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .app-shell[data-screen="app"][data-role="creator"] .creator-stage {
    grid-template-columns: 210px minmax(0, 1fr) 250px;
  }

  .app-shell[data-screen="app"] .creator-stage[data-mode="workspace"][data-focus="portfolio"] .creator-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 900px) {
  .app-shell[data-screen="app"][data-role="creator"] .creator-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-shell[data-screen="app"] .creator-sidebar,
  .app-shell[data-screen="app"] .creator-aside {
    display: none;
  }

  .app-shell[data-screen="app"] .creator-portfolio-head,
  .app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main-head {
    grid-template-columns: 1fr;
  }

  .app-shell[data-screen="app"] .creator-head-actions {
    justify-content: space-between;
  }
}

.app-shell[data-screen="app"][data-role="creator"] .creator-stage[data-mode="onboarding"] {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

/* Client feed density pass: make discovery filters feel like the landing page, not a stack of admin panels. */
.app-shell[data-screen="app"][data-role="client"] .web-stage {
  grid-template-columns: minmax(200px, 240px) minmax(420px, 1fr) minmax(300px, 380px);
  gap: 12px;
}

.app-shell[data-screen="app"][data-role="client"] .web-sidebar {
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 252px) auto minmax(0, 1fr);
  gap: 8px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.app-shell[data-screen="app"][data-role="client"] .web-search {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 24px rgba(42, 31, 61, 0.05);
}

.app-shell[data-screen="app"][data-role="client"] .web-search svg {
  width: 18px;
  height: 18px;
}

.app-shell[data-screen="app"][data-role="client"] .web-search input {
  font-size: 14px;
}

.app-shell[data-screen="app"][data-role="client"] .web-section-label {
  margin: 2px 0 -2px;
  color: rgba(107, 95, 122, 0.64);
  font-size: 10px;
  line-height: 1;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  max-height: 52px;
  overflow: auto;
  padding: 0 2px 0 0;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-row,
.app-shell[data-screen="app"][data-role="client"] .web-saved-empty {
  min-height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-row {
  grid-template-columns: 16px 30px minmax(0, 1fr);
  gap: 7px;
  padding: 7px 9px;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-row img {
  width: 30px;
  height: 30px;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-row strong {
  font-size: 12px;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-row small {
  font-size: 11px;
}

.app-shell[data-screen="app"][data-role="client"] .web-category-list {
  display: grid;
  gap: 9px;
  max-height: none;
  min-height: 0;
  overflow: auto;
  padding: 0 2px 2px 0;
}

.app-shell[data-screen="app"][data-role="client"] .client-filter-section {
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.app-shell[data-screen="app"][data-role="client"] .client-filter-head {
  min-height: 14px;
  color: rgba(107, 95, 122, 0.58);
  font-size: 10px;
  line-height: 1;
}

.app-shell[data-screen="app"][data-role="client"] .client-filter-head strong {
  max-width: 48%;
  color: rgba(42, 31, 61, 0.58);
}

.app-shell[data-screen="app"][data-role="client"] .filter-chip-grid,
.app-shell[data-screen="app"][data-role="client"] .filter-chip-grid.compact,
.app-shell[data-screen="app"][data-role="client"] .filter-chip-grid.budget {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  max-height: none;
  overflow: auto;
  padding: 0 2px 2px 0;
}

.app-shell[data-screen="app"][data-role="client"] .filter-chip {
  flex: 0 0 auto;
  min-height: 30px;
  max-width: 150px;
  padding: 6px 10px;
  border-color: rgba(42, 31, 61, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(42, 31, 61, 0.74);
  font-size: 12px;
  box-shadow: none;
}

.app-shell[data-screen="app"][data-role="client"] .filter-chip span {
  white-space: nowrap;
}

.app-shell[data-screen="app"][data-role="client"] .filter-chip strong {
  min-width: 18px;
  height: 18px;
  background: rgba(107, 63, 160, 0.08);
  color: rgba(42, 31, 61, 0.5);
  font-size: 10px;
}

.app-shell[data-screen="app"][data-role="client"] .filter-chip.is-active {
  border-color: rgba(107, 63, 160, 0.28);
  background: rgba(107, 63, 160, 0.12);
  color: var(--ink);
}

.app-shell[data-screen="app"][data-role="client"] .web-creator-list {
  display: grid;
  gap: 7px;
  min-height: 0;
  overflow: auto;
  padding: 0 2px 2px 0;
}

.app-shell[data-screen="app"][data-role="client"] .web-creator-row {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  min-height: 82px;
  padding: 9px;
  border-color: rgba(42, 31, 61, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.app-shell[data-screen="app"][data-role="client"] .web-creator-row.is-active {
  border-color: rgba(107, 63, 160, 0.28);
  background: rgba(107, 63, 160, 0.08);
}

.app-shell[data-screen="app"][data-role="client"] .web-creator-top {
  display: block;
  min-width: 0;
}

.app-shell[data-screen="app"][data-role="client"] .web-creator-top img {
  width: 42px;
  height: 42px;
}

.app-shell[data-screen="app"][data-role="client"] .web-row-price {
  position: absolute;
  top: 9px;
  right: 9px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
}

.app-shell[data-screen="app"][data-role="client"] .web-creator-copy {
  min-width: 0;
  padding-right: 48px;
}

.app-shell[data-screen="app"][data-role="client"] .web-creator-copy strong {
  color: var(--ink);
  font-size: 13px;
}

.app-shell[data-screen="app"][data-role="client"] .web-creator-copy span {
  margin-top: 2px;
  color: var(--ink-dim);
  font-size: 12px;
  line-height: 1.22;
  -webkit-line-clamp: 2;
}

.app-shell[data-screen="app"][data-role="client"] .web-creator-copy small {
  margin-top: 3px;
  color: rgba(107, 95, 122, 0.72);
  font-size: 11px;
}

@media (max-width: 1180px) {
  .app-shell[data-screen="app"][data-role="client"] .web-stage {
    grid-template-columns: 220px minmax(360px, 1fr) minmax(280px, 340px);
  }
}

/* Reference-style filters: checkbox rows with wrapping and a 0-to-infinity budget range. */
.app-shell[data-screen="app"][data-role="client"] .web-sidebar {
  grid-template-rows: auto auto auto auto minmax(0, 1fr);
  overflow: hidden;
}

.app-shell[data-screen="app"][data-role="client"] .web-ranked-label,
.app-shell[data-screen="app"][data-role="client"] .web-creator-list {
  display: none;
}

.app-shell[data-screen="app"][data-role="client"] .web-category-list {
  gap: 12px;
  min-height: 0;
  overflow: auto;
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.app-shell[data-screen="app"][data-role="client"] .client-filter-section:nth-of-type(2) .filter-check-list {
  max-height: 136px;
  overflow: auto;
  padding-right: 2px;
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-row {
  display: inline-grid;
  grid-template-columns: 18px minmax(0, auto) auto;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  min-height: 32px;
  padding: 6px 9px;
  border: 1px solid rgba(42, 31, 61, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(42, 31, 61, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-row > span:not(.filter-check-box) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-box {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(42, 31, 61, 0.22);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.74);
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-box svg {
  width: 13px;
  height: 13px;
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-row strong {
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(42, 31, 61, 0.06);
  color: rgba(42, 31, 61, 0.52);
  font-size: 10px;
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-row.is-active {
  border-color: rgba(107, 63, 160, 0.32);
  background: rgba(107, 63, 160, 0.12);
  color: var(--ink);
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-row.is-active .filter-check-box {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.app-shell[data-screen="app"][data-role="client"] .budget-range-control {
  display: grid;
  gap: 8px;
  padding: 8px 9px;
  border: 1px solid rgba(42, 31, 61, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-track {
  position: relative;
  display: grid;
  align-items: center;
  height: 28px;
  margin: 0 -2px;
  cursor: ew-resize;
  touch-action: none;
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-track::before,
.app-shell[data-screen="app"][data-role="client"] .budget-drag-fill {
  position: absolute;
  right: 0;
  left: 0;
  height: 8px;
  border-radius: 999px;
  content: "";
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-track::before {
  background: rgba(42, 31, 61, 0.12);
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-fill {
  right: auto;
  left: var(--budget-min, 0%);
  width: calc(var(--budget-max, 100%) - var(--budget-min, 0%));
  background: var(--accent);
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-thumb {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 3px solid var(--accent);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(107, 63, 160, 0.22);
  transform: translateX(-50%);
  pointer-events: none;
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-thumb-min {
  left: var(--budget-min, 0%);
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-thumb-max {
  left: var(--budget-max, 100%);
}

.app-shell[data-screen="app"][data-role="client"] .budget-range-control input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  accent-color: var(--accent);
  pointer-events: none;
}

.app-shell[data-screen="app"][data-role="client"] .budget-range-labels {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  color: rgba(107, 95, 122, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.app-shell[data-screen="app"][data-role="client"] .budget-range-labels strong {
  color: var(--ink);
  font-size: 12px;
  text-align: center;
}

/* Creator sidebar indicators should read fully even in the narrow creator rail. */
.app-shell[data-screen="app"][data-role="creator"] .creator-mini-stats {
  grid-template-columns: 1fr;
  gap: 6px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-mini-stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  padding: 7px 9px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-mini-stats strong {
  overflow: visible;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  text-overflow: clip;
  white-space: nowrap;
}

/* Creator workspace polish: profile rail follows the client card rhythm and upload loses the extra header card. */
.app-shell[data-screen="app"][data-role="creator"] .creator-stage[data-mode="workspace"] {
  grid-template-columns: minmax(250px, 285px) minmax(0, 1fr);
}

.app-shell[data-screen="app"][data-role="creator"] .creator-stage[data-mode="workspace"] .creator-aside {
  display: none;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-card {
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-card-actions,
.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-card-actions > span,
.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-head > span,
.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form label > span {
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-card .icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-card .icon-button svg {
  width: 17px;
  height: 17px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-top {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-top img {
  width: 56px;
  height: 56px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-top h2 {
  font-size: 19px;
  line-height: 1.05;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-top p {
  font-size: 14px;
  line-height: 1.25;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-card > p {
  -webkit-line-clamp: 4;
  font-size: 14px;
  line-height: 1.32;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-mini-stats div {
  min-height: 34px;
  border-radius: 999px;
  background: rgba(168, 213, 186, 0.18);
}

.app-shell[data-screen="app"][data-role="creator"] .creator-mini-stats span {
  font-size: 10px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-mini-stats strong {
  font-size: 14px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form {
  display: grid;
  gap: 10px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-photo-edit {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-photo-edit img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-photo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-photo-button svg {
  width: 17px;
  height: 17px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form input,
.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form select,
.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form input,
.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form select {
  height: 38px;
  padding: 0 12px;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-edit-form textarea {
  min-height: 86px;
  resize: vertical;
  padding: 10px 12px;
  line-height: 1.35;
}

.app-shell[data-screen="app"][data-role="creator"] .creator-profile-rate-edit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 8px;
}

@media (max-width: 520px) {
  .app-shell[data-screen="app"][data-role="creator"] .creator-profile-location-grid,
  .app-shell[data-screen="app"][data-role="creator"] .creator-profile-rate-edit {
    grid-template-columns: 1fr;
  }
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"][data-focus="upload"] .creator-main {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  overflow: auto;
}

.app-shell[data-screen="app"] .creator-portfolio-metrics {
  gap: 10px;
  min-height: 0;
}

@media (max-width: 900px) {
  .app-shell[data-screen="app"][data-role="creator"] .creator-stage[data-mode="workspace"] {
    grid-template-columns: minmax(0, 1fr);
  }
}

.app-shell[data-screen="app"] .creator-upload-compact-form {
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.app-shell[data-screen="app"] .creator-upload-inline-head {
  display: grid;
  gap: 4px;
  padding-bottom: 4px;
}

.app-shell[data-screen="app"] .creator-upload-inline-head span {
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.app-shell[data-screen="app"] .creator-upload-inline-head strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.app-shell[data-screen="app"] .creator-upload-inline-head p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 14px;
}

.app-shell[data-screen="app"] .creator-upload-compact-form .creator-dropzone {
  min-height: 150px;
  padding: 18px;
}

.app-shell[data-screen="app"] .creator-upload-compact-form .deal-action {
  min-height: 48px;
}

.app-shell[data-screen="app"] .creator-upload-flow-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

.app-shell[data-screen="app"] .creator-upload-flow-head > div:first-child {
  display: grid;
  gap: 4px;
}

.app-shell[data-screen="app"] .creator-upload-flow-head span,
.app-shell[data-screen="app"] .creator-upload-file-status,
.app-shell[data-screen="app"] .creator-upload-error {
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.app-shell[data-screen="app"] .creator-upload-flow-head strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.app-shell[data-screen="app"] .creator-upload-flow-head p,
.app-shell[data-screen="app"] .creator-upload-preview p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.35;
}

.app-shell[data-screen="app"] .creator-upload-steps {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.app-shell[data-screen="app"] .creator-upload-steps span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(42, 31, 61, 0.07);
  color: var(--ink-dim);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 900;
}

.app-shell[data-screen="app"] .creator-upload-steps span.is-active {
  background: var(--accent);
  color: #ffffff;
}

.app-shell[data-screen="app"] .creator-upload-steps span.is-complete {
  background: var(--accent-2);
  color: var(--ink);
}

.app-shell[data-screen="app"] .creator-upload-step-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.app-shell[data-screen="app"] .creator-upload-dropzone {
  min-height: 260px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.56);
}

.app-shell[data-screen="app"] .creator-upload-choice-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.app-shell[data-screen="app"] .creator-upload-file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.app-shell[data-screen="app"] .creator-upload-file-button svg {
  width: 17px;
  height: 17px;
}

.app-shell[data-screen="app"] .creator-upload-file-status {
  justify-self: center;
  text-transform: none;
}

.app-shell[data-screen="app"] .creator-upload-details-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-shell[data-screen="app"] .creator-upload-wide-field {
  grid-column: 1 / -1;
}

.app-shell[data-screen="app"] .creator-upload-preview {
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
  align-items: center;
}

.app-shell[data-screen="app"] .creator-upload-preview .creator-video-card {
  width: min(100%, 210px);
  min-height: 310px;
}

.app-shell[data-screen="app"] .creator-upload-preview h3 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1;
}

.app-shell[data-screen="app"] .creator-upload-error {
  margin: 0;
  color: #a34343;
}

.app-shell[data-screen="app"] .creator-upload-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .app-shell[data-screen="app"] .creator-upload-flow-head,
  .app-shell[data-screen="app"] .creator-upload-preview,
  .app-shell[data-screen="app"] .creator-upload-details-grid,
  .app-shell[data-screen="app"] .creator-upload-footer {
    grid-template-columns: 1fr;
  }
}

/* Client saved collection flow: budget first, saved opens as its own filterable collection. */
.web-stage[data-focus="saved"] #webChatPanel,
.web-stage[data-focus="saved"] #webDealPanel {
  display: none;
}

.web-stage[data-focus="saved"] .web-workspace {
  grid-template-rows: auto;
}

.app-shell[data-screen="app"][data-role="client"] .client-filter-section .filter-check-list {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-list {
  max-height: none;
  overflow: visible;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-collection {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 58px;
  padding: 8px 10px;
  border: 1px solid rgba(42, 31, 61, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  text-align: left;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-collection.is-active {
  border-color: rgba(107, 63, 160, 0.32);
  background: rgba(107, 63, 160, 0.1);
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-orb {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 212, 163, 0.42);
  color: var(--accent);
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-orb svg {
  width: 17px;
  height: 17px;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-collection strong,
.app-shell[data-screen="app"][data-role="client"] .web-saved-collection small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-collection strong {
  font-size: 13px;
  font-weight: 900;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-collection small {
  margin-top: 2px;
  color: rgba(107, 95, 122, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-collection em {
  min-width: 42px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-results {
  display: grid;
  gap: 6px;
  margin-top: 6px;
  max-height: 160px;
  overflow: auto;
  padding-right: 2px;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-results .web-saved-row {
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 44px;
}

.app-shell[data-screen="app"][data-role="client"] .web-saved-results .web-saved-row.is-active {
  border-color: rgba(107, 63, 160, 0.34);
  background: rgba(107, 63, 160, 0.1);
}

/* Client filter flattening: one sidebar scroll, no inner panels, no pill outlines on options. */
.app-shell[data-screen="app"][data-role="client"] .web-sidebar {
  grid-template-rows: auto auto auto auto minmax(0, 1fr);
  overflow: hidden;
}

.app-shell[data-screen="app"][data-role="client"] .web-category-list {
  align-content: start;
  gap: 13px;
  min-height: 0;
  overflow: auto;
  padding: 0 4px 10px 0;
}

.app-shell[data-screen="app"][data-role="client"] .client-filter-section {
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.app-shell[data-screen="app"][data-role="client"] .client-filter-section .filter-check-list,
.app-shell[data-screen="app"][data-role="client"] .client-filter-section:nth-of-type(2) .filter-check-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  max-height: none;
  overflow: visible;
  padding: 0;
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-row,
.app-shell[data-screen="app"][data-role="client"] .filter-check-row.is-active {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  width: 100%;
  min-height: 29px;
  padding: 4px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-row > span:not(.filter-check-box) {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.app-shell[data-screen="app"][data-role="client"] .filter-check-row strong {
  min-width: 20px;
  height: 20px;
  background: rgba(42, 31, 61, 0.06);
}

.app-shell[data-screen="app"][data-role="client"] .budget-range-control {
  gap: 5px;
  padding: 4px 2px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-track {
  height: 30px;
  margin: 0;
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-track::before,
.app-shell[data-screen="app"][data-role="client"] .budget-drag-fill {
  height: 6px;
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-thumb {
  width: 20px;
  height: 20px;
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-thumb-min {
  left: clamp(10px, var(--budget-min, 0%), calc(100% - 10px));
}

.app-shell[data-screen="app"][data-role="client"] .budget-drag-thumb-max {
  left: clamp(10px, var(--budget-max, 100%), calc(100% - 10px));
}

/* Client creator profile library: preview cards in the feed and a full account video grid. */
.app-shell[data-screen="app"][data-role="client"] .web-detail-samples-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  color: rgba(107, 95, 122, 0.72);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.app-shell[data-screen="app"][data-role="client"] .web-detail-samples-head button {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.app-shell[data-screen="app"][data-role="client"] .web-detail-sample-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-shell[data-screen="app"][data-role="client"] .web-detail-sample-grid .web-detail-sample {
  min-height: 88px;
  border-radius: 14px;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] {
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-workspace {
  display: none;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-feed-controls {
  display: none;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-discovery,
.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-video-pane {
  min-height: 0;
  overflow: auto;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-video-pane {
  display: block;
  place-items: stretch;
  touch-action: auto;
  user-select: auto;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-sidebar {
  grid-template-rows: repeat(7, auto) minmax(0, 1fr);
  align-content: start;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-search {
  order: 3;
  min-height: 40px;
  margin-top: 2px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-search input {
  font-size: 13px;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-saved-label {
  order: 1;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-saved-list {
  order: 2;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-filters-label {
  order: 4;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-category-list {
  order: 5;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-ranked-label {
  order: 6;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-creator-list {
  order: 7;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-top-actions {
  width: min(100%, 590px);
  max-width: min(100%, 590px);
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-filter-button {
  min-width: 106px;
  padding: 0 14px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 36px rgba(42, 31, 61, 0.06);
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-top {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-top img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-top strong,
.app-shell[data-screen="app"][data-role="client"] .profile-library-card h3 {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-top small,
.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-card p,
.app-shell[data-screen="app"][data-role="client"] .profile-library-card p {
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.35;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-metrics div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft-green);
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-metrics span {
  color: rgba(107, 95, 122, 0.72);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-metrics strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-shell[data-screen="app"][data-role="client"] .profile-filter-group,
.app-shell[data-screen="app"][data-role="client"] .profile-filter-pills {
  display: grid;
  gap: 6px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-filter-pills button,
.app-shell[data-screen="app"][data-role="client"] .profile-library-quick button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.app-shell[data-screen="app"][data-role="client"] .profile-filter-pills button.is-active,
.app-shell[data-screen="app"][data-role="client"] .profile-library-quick button.is-active,
.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-action.is-active {
  border-color: rgba(107, 63, 160, 0.24);
  background: var(--accent);
  color: #ffffff;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-action.secondary {
  background: transparent;
}

.app-shell[data-screen="app"][data-role="client"] .profile-sidebar-action svg {
  width: 17px;
  height: 17px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-page {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(42, 31, 61, 0.07);
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 16px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-head h1 {
  margin: 2px 0 4px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.95;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-head p {
  margin: 0;
  color: var(--ink-dim);
  font-weight: 650;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-search {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-dim);
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-thumb {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 210px;
  overflow: hidden;
  padding: 12px;
  border-radius: 14px;
  background-image:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.72)),
    var(--sample-image);
  background-position: center;
  background-size: cover;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-thumb span,
.app-shell[data-screen="app"][data-role="client"] .profile-library-thumb strong {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-thumb span {
  padding: 6px 9px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-thumb strong {
  padding: 7px 10px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.08);
  color: var(--ink-dim);
  font-size: 11px;
  font-weight: 800;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 260px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--ink-dim);
  text-align: center;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-empty strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .app-shell[data-screen="app"][data-role="client"] .profile-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] {
    grid-template-columns: 1fr;
  }

  .app-shell[data-screen="app"][data-role="client"] .profile-library-head {
    grid-template-columns: 1fr;
  }

  .app-shell[data-screen="app"][data-role="client"] .profile-library-grid {
    grid-template-columns: 1fr;
  }
}

/* Version 1.6: Clipeo brand landing, campaigns, and signal actions. */
.app-shell[data-screen="home"] .home-stage[data-home-view="brand"] > :not(.brand-landing-stage) {
  display: none !important;
}

.app-shell[data-screen="home"] .home-stage[data-home-view="brand"] .brand-landing-stage {
  display: block !important;
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 12%, rgba(168, 213, 186, 0.26), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(255, 212, 163, 0.32), transparent 26%),
    var(--bg);
}

.app-shell[data-screen="home"] .brand-landing-stage .source-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(42, 31, 61, 0.12);
  background: rgba(244, 241, 234, 0.72);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.brand-pricing-hero {
  padding: 172px 0 58px;
}

.brand-pricing-hero-copy {
  max-width: 820px;
}

.brand-pricing-hero h1 {
  margin: 14px 0 18px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(56px, 9vw, 122px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.brand-pricing-hero h1 em {
  color: var(--accent);
  font-style: italic;
}

.brand-pricing-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-dim);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.brand-billing-toggle,
.brand-billing-inline {
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(42, 31, 61, 0.08);
}

.brand-billing-toggle button,
.brand-billing-inline button {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-dim);
  font-weight: 850;
}

.brand-billing-toggle button.is-active,
.brand-billing-inline button.is-active {
  background: var(--accent);
  color: #ffffff;
}

.brand-billing-toggle span {
  margin-left: 6px;
  color: inherit;
  font-size: 12px;
  opacity: 0.72;
}

.brand-pricing-section,
.brand-pricing-faq {
  padding: 24px 0 86px;
}

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

.brand-plan-card,
.brand-pricing-enterprise,
.brand-faq-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 56px rgba(42, 31, 61, 0.08);
}

.brand-plan-card::after,
.brand-pricing-enterprise::after,
.brand-faq-grid article::after {
  position: absolute;
  right: -70px;
  bottom: -78px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 40%, rgba(168, 213, 186, 0.34), transparent 52%),
    radial-gradient(circle at 64% 70%, rgba(107, 63, 160, 0.16), transparent 58%),
    rgba(255, 212, 163, 0.18);
  filter: blur(10px);
  content: "";
}

.brand-plan-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 480px;
  padding: 28px;
}

.brand-plan-card.is-featured {
  border-color: rgba(107, 63, 160, 0.38);
  background: linear-gradient(180deg, rgba(107, 63, 160, 0.08), rgba(255, 255, 255, 0.86));
}

.brand-plan-card em {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.brand-plan-name {
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  text-transform: uppercase;
}

.brand-plan-card strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.brand-plan-card small {
  color: var(--ink-dim);
  font-family: var(--font-sans);
  font-size: 15px;
}

.brand-plan-card p,
.brand-pricing-enterprise p,
.brand-faq-grid p {
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.45;
}

.brand-plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-plan-card li {
  color: var(--ink);
  font-weight: 700;
}

.brand-plan-cta {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 48px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.brand-plan-cta.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.brand-plan-cta.dark {
  background: var(--ink);
}

.brand-pricing-enterprise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 20px;
  padding: 28px;
}

.brand-pricing-enterprise h2,
.brand-faq-grid h3 {
  position: relative;
  z-index: 1;
  margin: 6px 0 10px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 500;
}

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

.brand-faq-grid article {
  padding: 26px;
}

.brand-faq-grid span {
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
}

.action-button.is-liked,
.web-round-action.is-liked,
.web-signal-row button.is-active:first-child {
  background: var(--accent-2);
  color: var(--ink);
}

.action-button.is-disliked,
.web-round-action.is-disliked,
.web-signal-row button.is-active:last-child {
  background: #f1ddd8;
  color: #7d2f3b;
}

.web-signal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.web-signal-row button,
.send-campaign-button,
.campaign-sidebar-row,
.brand-setup-steps button,
.brand-choice-grid button,
.brand-plan-inline button,
.creator-campaign-filter-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 850;
}

.web-signal-row svg,
.send-campaign-button svg {
  width: 17px;
  height: 17px;
}

.web-campaign-send {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px 0 0;
}

.web-campaign-send select {
  min-width: 0;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 750;
}

.message-campaign-card {
  display: grid;
  gap: 3px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgba(107, 63, 160, 0.18);
  border-radius: 14px;
  background: rgba(107, 63, 160, 0.08);
}

.message-campaign-card span,
.message-campaign-card small {
  color: var(--ink-dim);
  font-size: 12px;
  font-weight: 750;
}

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

.desktop-chat-bubble span {
  display: block;
  margin-top: 5px;
  color: inherit;
  font-size: 11px;
  opacity: 0.78;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"],
.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] {
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr) minmax(280px, 360px);
}

.brand-setup-side-card,
.brand-setup-plan-card,
.campaign-mini-stats,
.campaign-hint-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(42, 31, 61, 0.06);
}

.brand-setup-side-card strong,
.brand-setup-plan-card strong {
  color: var(--ink);
  font-size: 22px;
}

.brand-setup-side-card p,
.brand-setup-plan-card small {
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.4;
}

.brand-setup-steps {
  display: grid;
  gap: 8px;
}

.brand-setup-steps button {
  justify-content: flex-start;
  min-height: 46px;
  padding: 0 12px;
}

.brand-setup-steps button span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(42, 31, 61, 0.08);
}

.brand-setup-steps button.is-active,
.brand-choice-grid button.is-active,
.brand-plan-inline button.is-active,
.creator-campaign-filter-row button.is-active {
  border-color: rgba(107, 63, 160, 0.3);
  background: var(--accent);
  color: #ffffff;
}

.brand-setup-steps button.is-done span {
  background: var(--accent-2);
}

.brand-onboarding-page,
.campaign-board-page,
.creator-campaigns-page {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 54px rgba(42, 31, 61, 0.07);
}

.brand-onboarding-head h1,
.campaign-board-head h1,
.creator-campaigns-head h1 {
  margin: 4px 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
}

.brand-onboarding-head p,
.campaign-board-head p,
.creator-campaigns-head p {
  margin: 0;
  color: var(--ink-dim);
}

.brand-onboarding-form,
.campaign-create-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.brand-onboarding-form label,
.campaign-create-form label,
.brand-onboarding-fieldset {
  display: grid;
  gap: 7px;
}

.brand-onboarding-form label span,
.campaign-create-form label span,
.brand-onboarding-fieldset > span,
.campaign-form-head span {
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.brand-onboarding-form input,
.brand-onboarding-form select,
.campaign-create-form input,
.campaign-create-form select,
.campaign-create-form textarea,
.creator-campaign-search input {
  min-height: 46px;
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  outline: 0;
  font-weight: 750;
}

.campaign-create-form textarea {
  min-height: 104px;
  padding: 14px;
  border-radius: 18px;
  resize: vertical;
}

.brand-onboarding-fieldset,
.campaign-form-wide {
  grid-column: 1 / -1;
}

.brand-choice-grid,
.brand-plan-inline,
.creator-campaign-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-choice-grid button {
  padding: 0 13px;
}

.brand-review-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
}

.brand-review-card h3,
.campaign-card h3,
.creator-campaign-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
}

.brand-review-card p,
.campaign-card p,
.creator-campaign-card p {
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.45;
}

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

.brand-review-grid div,
.campaign-meta-grid div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(168, 213, 186, 0.12);
}

.brand-review-grid span,
.campaign-meta-grid span {
  color: var(--ink-faint);
  font-size: 11px;
  text-transform: uppercase;
}

.brand-onboarding-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.brand-onboarding-actions button:disabled {
  opacity: 0.45;
  cursor: default;
}

.campaign-mini-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.campaign-mini-stats div {
  display: grid;
  gap: 3px;
}

.campaign-mini-stats span {
  color: var(--ink-faint);
  font-size: 11px;
  text-transform: uppercase;
}

.campaign-mini-stats strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.campaign-sidebar-row {
  display: grid;
  justify-items: start;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 16px;
}

.campaign-sidebar-row small {
  color: var(--ink-dim);
}

.campaign-board-page {
  overflow: auto;
}

.campaign-create-form {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.campaign-form-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.campaign-form-head strong {
  color: var(--ink);
}

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

.campaign-card,
.creator-campaign-card {
  display: grid;
  gap: 13px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(42, 31, 61, 0.06);
}

.campaign-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.campaign-card-head span,
.campaign-card-head strong {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.08);
  color: var(--ink-dim);
  font-size: 12px;
  font-weight: 850;
}

.creator-campaigns-page {
  overflow: auto;
}

.creator-campaigns-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  align-items: end;
}

.creator-campaign-search {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-dim);
}

.creator-campaign-search input {
  border: 0;
  background: transparent;
}

.creator-campaign-card .deal-action {
  width: 100%;
}

.creator-campaign-card .deal-action.is-applied {
  background: rgba(168, 213, 186, 0.26);
  color: var(--ink);
}

.app-shell[data-screen="app"] .creator-stage[data-mode="workspace"] .creator-video-grid {
  gap: 16px !important;
}

@media (max-width: 1180px) {
  .brand-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"],
  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .brand-pricing-hero {
    padding-top: 126px;
  }

  .brand-pricing-grid,
  .brand-faq-grid,
  .campaign-grid,
  .creator-campaign-grid,
  .brand-onboarding-form,
  .campaign-create-form,
  .brand-review-grid,
  .campaign-meta-grid {
    grid-template-columns: 1fr;
  }

  .brand-pricing-enterprise,
  .creator-campaigns-head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .brand-plan-card {
    min-height: auto;
  }

  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"],
  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] {
    grid-template-columns: 1fr;
  }
}

/* Source-matched brand pricing landing from the supplied Clipeo reference. */
.app-shell[data-screen="home"] .home-stage[data-home-view="brand"] .brand-landing-stage {
  position: relative;
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
}

.app-shell[data-screen="home"] .home-stage[data-home-view="brand"] .brand-landing-stage::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.04;
}

.brand-landing-stage .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand-landing-stage nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-landing-stage .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
}

.brand-landing-stage .logo {
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand-landing-stage .logo:hover {
  opacity: 0.7;
}

.brand-landing-stage .logo-text {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-landing-stage .logo-dot {
  color: var(--accent);
  font-weight: 700;
}

.brand-landing-stage .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-landing-stage .nav-btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
}

.brand-landing-stage .nav-btn-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.brand-landing-stage .nav-btn-secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.brand-landing-stage .nav-btn-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.brand-landing-stage .nav-btn-primary:hover {
  border-color: #5a3289;
  background: #5a3289;
  box-shadow: 0 8px 24px rgba(107, 63, 160, 0.28);
}

.brand-landing-stage .hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  text-align: center;
}

.brand-landing-stage .hero::before {
  position: absolute;
  top: -150px;
  left: 50%;
  z-index: 0;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(168, 213, 186, 0.4) 0%, transparent 65%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.brand-landing-stage .hero-inner {
  position: relative;
  z-index: 1;
}

.brand-landing-stage .eyebrow {
  display: inline-block;
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-dim);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-landing-stage h1.headline {
  max-width: 900px;
  margin: 0 auto 24px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.brand-landing-stage .headline em {
  color: var(--accent);
  font-style: italic;
}

.brand-landing-stage .hero-sub {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--ink-dim);
  font-size: 19px;
}

.brand-landing-stage .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.brand-landing-stage .billing {
  position: relative;
  display: inline-flex;
  margin-bottom: 56px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.brand-landing-stage .billing-tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-dim);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.brand-landing-stage .billing-tab.active,
.brand-landing-stage .billing-tab.is-active {
  color: #ffffff;
}

.brand-landing-stage .billing-tab:not(.active):not(.is-active):hover {
  color: var(--ink);
}

.brand-landing-stage .billing-pill {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  z-index: 0;
  width: 98px;
  border-radius: 999px;
  background: var(--ink);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-landing-stage .save-badge {
  display: inline-block;
  margin-left: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #1f4030;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-landing-stage .pricing {
  position: relative;
  padding: 0 0 80px;
}

.brand-landing-stage .compare {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.brand-landing-stage .compare-head {
  position: sticky;
  top: 70px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand-landing-stage .compare-head-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 32px 20px 24px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.brand-landing-stage .compare-head-cell:first-child {
  align-items: flex-start;
  padding: 32px 28px 24px;
  border-left: 0;
  text-align: left;
}

.brand-landing-stage .compare-head-cell.featured {
  background: linear-gradient(180deg, #fbf6ee 0%, #f7efe0 100%);
}

.brand-landing-stage .compare-head-cell .tier-tag {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-landing-stage .tier-name {
  margin-bottom: 12px;
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-landing-stage .tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.brand-landing-stage .tier-price-num {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-landing-stage .tier-price-period {
  color: var(--ink-dim);
  font-size: 12px;
}

.brand-landing-stage .tier-tagline {
  min-height: 32px;
  margin: 4px 0 16px;
  color: var(--ink-dim);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.brand-landing-stage .lead-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.brand-landing-stage .lead-title em {
  color: var(--accent);
  font-style: italic;
}

.brand-landing-stage .lead-sub {
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.5;
}

.brand-landing-stage .tier-cta {
  display: inline-block;
  width: 100%;
  margin-top: auto;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.brand-landing-stage .tier-cta-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.brand-landing-stage .tier-cta-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}

.brand-landing-stage .tier-cta-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.brand-landing-stage .tier-cta-primary:hover {
  border-color: #5a3289;
  background: #5a3289;
  box-shadow: 0 6px 18px rgba(107, 63, 160, 0.25);
}

.brand-landing-stage .tier-cta-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.brand-landing-stage .tier-cta-dark:hover {
  background: #1a1228;
}

.brand-landing-stage .compare-section-row,
.brand-landing-stage .compare-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
}

.brand-landing-stage .compare-section-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbf8f0;
}

.brand-landing-stage .compare-section-label {
  padding: 14px 28px;
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-landing-stage .compare-section-fill {
  grid-column: 2 / -1;
}

.brand-landing-stage .compare-row {
  border-top: 1px solid var(--line);
  transition: background 0.15s ease;
}

.brand-landing-stage .compare-row:hover {
  background: #fbf8f0;
}

.brand-landing-stage .compare-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px 16px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.brand-landing-stage .compare-cell.featured {
  background: rgba(251, 246, 238, 0.6);
}

.brand-landing-stage .compare-cell-label {
  justify-content: flex-start;
  align-items: center;
  padding: 18px 28px;
  border-left: 0;
  color: var(--ink-dim);
  line-height: 1.45;
  text-align: left;
}

.brand-landing-stage .compare-cell-label-stack {
  display: flex;
  flex-direction: column;
}

.brand-landing-stage .row-name {
  color: var(--ink);
  font-weight: 500;
}

.brand-landing-stage .row-help {
  display: block;
  margin-top: 2px;
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.4;
}

.brand-landing-stage .compare-cell strong {
  font-weight: 600;
}

.brand-landing-stage .ind-check {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.brand-landing-stage .ind-minus {
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink-faint);
  opacity: 0.5;
}

.brand-landing-stage .compare-mobile-picker {
  display: none;
}

.brand-landing-stage .enterprise {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 72px;
  overflow: hidden;
  padding: 48px 56px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2a1f3d 0%, #1a1228 100%);
  color: #f5efe0;
}

.brand-landing-stage .enterprise::before {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 212, 163, 0.18) 0%, transparent 70%);
  content: "";
  pointer-events: none;
}

.brand-landing-stage .enterprise-text {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.brand-landing-stage .enterprise-eyebrow {
  margin-bottom: 12px;
  color: rgba(245, 239, 224, 0.6);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-landing-stage .enterprise h2 {
  margin: 0 0 14px;
  color: #f5efe0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.brand-landing-stage .enterprise h2 em {
  color: #ffd4a3;
  font-style: italic;
}

.brand-landing-stage .enterprise p {
  margin: 0;
  color: rgba(245, 239, 224, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

.brand-landing-stage .enterprise-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1px solid #ffd4a3;
  border-radius: 999px;
  background: #ffd4a3;
  color: #2a1f3d;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.brand-landing-stage .enterprise-cta:hover {
  background: #ffe5c4;
  box-shadow: 0 12px 32px rgba(255, 212, 163, 0.28);
  transform: translateY(-2px);
}

.brand-landing-stage .faq-section {
  padding: 100px 0;
}

.brand-landing-stage .faq-header {
  margin-bottom: 56px;
  text-align: center;
}

.brand-landing-stage .faq-eyebrow {
  margin-bottom: 12px;
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-landing-stage .faq-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-landing-stage .faq-title em {
  color: var(--accent);
  font-style: italic;
}

.brand-landing-stage .faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.brand-landing-stage .faq {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.brand-landing-stage .faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  list-style: none;
  user-select: none;
}

.brand-landing-stage .faq summary::-webkit-details-marker {
  display: none;
}

.brand-landing-stage .faq summary::after {
  flex-shrink: 0;
  color: var(--accent);
  content: "+";
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
}

.brand-landing-stage .faq[open] summary::after {
  transform: rotate(45deg);
}

.brand-landing-stage .faq-answer {
  margin: 14px 0 0;
  padding-right: 40px;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.6;
}

.brand-landing-stage footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.brand-landing-stage .footer-text {
  margin: 0;
  color: var(--ink-faint);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.brand-landing-stage .reveal {
  opacity: 0;
  animation: brandReveal 0.8s ease forwards;
  transform: translateY(20px);
}

.brand-landing-stage .reveal-1 {
  animation-delay: 0.05s;
}

.brand-landing-stage .reveal-2 {
  animation-delay: 0.15s;
}

.brand-landing-stage .reveal-3 {
  animation-delay: 0.3s;
}

.brand-landing-stage .reveal-4 {
  animation-delay: 0.45s;
}

@keyframes brandReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .brand-landing-stage .compare-head,
  .brand-landing-stage .compare-row,
  .brand-landing-stage .compare-section-row {
    grid-template-columns: 1.6fr 1fr;
  }

  .brand-landing-stage .tier-col-2,
  .brand-landing-stage .tier-col-3,
  .brand-landing-stage .tier-col-4 {
    display: none;
  }

  .brand-landing-stage .tier-col-2.active,
  .brand-landing-stage .tier-col-3.active,
  .brand-landing-stage .tier-col-4.active {
    display: flex;
  }

  .brand-landing-stage .compare-mobile-picker {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
  }

  .brand-landing-stage .picker-btn {
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .brand-landing-stage .picker-btn.active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--bg);
  }

  .brand-landing-stage .compare-head {
    position: static;
  }
}

@media (max-width: 768px) {
  .brand-landing-stage .container {
    padding: 0 20px;
  }

  .brand-landing-stage .nav-inner {
    padding: 14px 20px;
  }

  .brand-landing-stage .nav-btn-secondary {
    display: none;
  }

  .brand-landing-stage .nav-btn {
    padding: 9px 14px;
    font-size: 12px;
  }

  .brand-landing-stage .hero {
    padding: 60px 0 40px;
  }

  .brand-landing-stage .enterprise {
    padding: 36px 28px;
  }

  .brand-landing-stage .enterprise-cta {
    justify-content: center;
    width: 100%;
  }

  .brand-landing-stage .faq-section {
    padding: 60px 0;
  }

  .brand-landing-stage .faq summary {
    font-size: 18px;
  }
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"] {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
  align-content: start;
  overflow: hidden;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"] .web-sidebar,
.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"] .web-workspace,
.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"] .web-feed-controls {
  display: none;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"] .web-discovery {
  grid-column: 1 / -1;
  display: grid;
  min-height: 0;
  overflow: auto;
  padding: 12px 0 18px;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"] .web-video-pane {
  display: block;
  overflow: visible;
  width: min(100%, 920px);
  min-height: 0;
  margin: 0 auto;
  touch-action: auto;
  user-select: auto;
}

.brand-onboarding-page.creator-style-onboarding {
  display: grid;
  gap: 10px;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-onboarding-page.creator-style-onboarding .brand-onboarding-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(42, 31, 61, 0.06);
}

.brand-onboarding-page.creator-style-onboarding .brand-onboarding-head > div:first-child {
  min-width: 0;
}

.brand-onboarding-page.creator-style-onboarding .brand-onboarding-head h1 {
  margin: 4px 0;
  font-size: clamp(34px, 4.6vw, 52px);
}

.brand-onboarding-page.creator-style-onboarding .brand-onboarding-head p {
  max-width: 560px;
  margin: 4px 0 0;
  font-size: 14px;
}

.brand-onboarding-page.creator-style-onboarding .onboarding-form,
.brand-onboarding-page.creator-style-onboarding .onboarding-topic-panel {
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(42, 31, 61, 0.05);
}

.brand-onboarding-page.creator-style-onboarding .onboarding-form .onboarding-topic-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-onboarding-page.creator-style-onboarding .brand-onboarding-form {
  grid-template-columns: 1fr;
}

.brand-onboarding-page.creator-style-onboarding .onboarding-field-grid {
  min-width: 0;
}

.brand-onboarding-page.creator-style-onboarding .creator-upload-form label {
  gap: 5px;
}

.brand-onboarding-page.creator-style-onboarding .creator-upload-form input,
.brand-onboarding-page.creator-style-onboarding .creator-upload-form select {
  min-height: 40px;
  padding: 0 14px;
  font-size: 15px;
}

.brand-onboarding-page.creator-style-onboarding .brand-review-card {
  align-content: start;
}

.brand-onboarding-page.creator-style-onboarding .brand-plan-inline button {
  flex: 1 1 180px;
  min-height: 72px;
  min-width: min(100%, 180px);
  max-width: 100%;
  padding: 12px 14px;
  text-align: left;
}

.brand-onboarding-page.creator-style-onboarding .brand-plan-inline button span,
.brand-onboarding-page.creator-style-onboarding .brand-plan-inline button strong,
.brand-onboarding-page.creator-style-onboarding .brand-review-grid strong,
.brand-onboarding-page.creator-style-onboarding .topic-chip span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.brand-onboarding-page.creator-style-onboarding .brand-review-grid div {
  border-radius: 18px;
}

.brand-onboarding-page.creator-style-onboarding .onboarding-actions {
  position: sticky;
  bottom: 0;
  z-index: 4;
  gap: 10px;
  padding-top: 4px;
  background: linear-gradient(180deg, rgba(244, 241, 234, 0), var(--bg) 42%);
}

.brand-onboarding-page.creator-style-onboarding .onboarding-actions .deal-action {
  min-height: 46px;
}

@media (max-width: 760px) {
  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"] {
    grid-template-columns: 1fr;
  }

  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"] .web-discovery {
    padding: 10px 0 14px;
  }

  .brand-onboarding-page.creator-style-onboarding .brand-onboarding-head {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .brand-onboarding-page.creator-style-onboarding .onboarding-steps.compact {
    justify-self: start;
  }

  .brand-onboarding-page.creator-style-onboarding .onboarding-field-grid,
  .brand-onboarding-page.creator-style-onboarding .brand-review-grid {
    grid-template-columns: 1fr;
  }
}

/* Source logotype and responsive app header fixes. */
.logo-mark,
.landing-logo-mark,
.brand-mark {
  display: none !important;
}

.source-nav .logo,
.brand-lockup,
.app-shell[data-screen="app"] .brand-lockup,
.brand-landing-stage .logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.source-nav .logo-text,
.brand-lockup .logo-text,
.brand-landing-stage .logo-text {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.source-nav .logo-dot,
.brand-lockup .logo-dot,
.brand-landing-stage .logo-dot {
  color: var(--accent);
  font-weight: 700;
}

.brand-landing-stage .headline em::after {
  display: none !important;
  content: none !important;
}

.app-shell[data-screen="app"] .web-topbar {
  grid-template-columns: minmax(150px, 1fr) minmax(0, max-content) minmax(150px, 1fr);
  align-items: center;
  gap: 12px;
}

.app-shell[data-screen="app"] .web-top-actions,
.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-top-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: min(100%, 760px);
  min-width: 0;
  overflow: visible;
  border-radius: 34px;
}

.app-shell[data-screen="app"] .web-filter-button,
.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-filter-button {
  flex: 0 1 auto;
  min-width: 0;
  min-height: 48px;
  padding: 0 clamp(14px, 1.5vw, 24px);
}

.app-shell[data-screen="app"] .web-filter-button svg {
  flex: 0 0 auto;
}

.app-shell[data-screen="app"][data-role="client"] #webCreatorDetail .web-signal-row {
  margin-top: 10px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-card.profile-video-tile {
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-thumb.profile-video-preview {
  align-items: flex-end;
  min-height: 0;
  aspect-ratio: 16 / 9;
  width: 100%;
  padding: 12px;
  border-radius: 16px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-video-play {
  position: absolute !important;
  top: 50%;
  left: 50%;
  z-index: 2 !important;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: var(--ink) !important;
  box-shadow: 0 16px 34px rgba(42, 31, 61, 0.18);
  transform: translate(-50%, -50%);
}

.app-shell[data-screen="app"][data-role="client"] .profile-video-play svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.app-shell[data-screen="app"][data-role="client"] .profile-video-kind {
  position: relative;
  z-index: 1;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

@media (max-width: 1080px) {
  .app-shell[data-screen="app"] .web-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .app-shell[data-screen="app"] .web-top-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .app-shell[data-screen="app"] .web-account-actions {
    grid-column: 2;
  }

  .app-shell[data-screen="app"] .app-logout-button span {
    display: none;
  }
}

/* Final app polish for creator videos, brand campaign layout, and profile library density. */
.app-shell[data-screen="app"][data-role="client"] .web-video-actions {
  justify-items: end;
}

.app-shell[data-screen="app"][data-role="client"] .web-round-action.web-round-signal {
  display: inline-flex;
  flex-direction: row-reverse;
  width: auto;
  min-width: 42px;
  padding: 0 12px;
  gap: 8px;
  border-radius: 999px;
}

.app-shell[data-screen="app"][data-role="client"] .web-round-action.web-round-signal span {
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.app-shell[data-screen="app"][data-role="client"] .web-round-action.web-round-signal.is-liked {
  border-color: rgba(88, 151, 113, 0.34);
  background: var(--accent-2);
  color: var(--ink);
}

.app-shell[data-screen="app"][data-role="client"] .web-round-action.web-round-signal.is-disliked {
  border-color: rgba(125, 47, 59, 0.22);
  background: #f1ddd8;
  color: #7d2f3b;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-content: stretch;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] .web-workspace,
.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] .web-feed-controls {
  display: none;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] .web-discovery {
  display: block;
  min-height: 0;
  overflow: auto;
  padding: 0 4px 28px 0;
  overscroll-behavior: contain;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] .web-video-pane {
  display: block;
  width: 100%;
  min-height: 100%;
  overflow: visible;
  touch-action: auto;
  user-select: auto;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] .campaign-board-page {
  width: 100%;
  min-height: auto;
  align-content: start;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] .campaign-create-form {
  width: 100%;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] .campaign-grid {
  width: 100%;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-discovery {
  display: block;
  align-content: start;
  overflow: auto;
  padding: 0 4px 24px 0;
  overscroll-behavior: contain;
}

.app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="profile"] .web-video-pane {
  display: block;
  align-self: start;
  width: 100%;
  min-height: 100%;
  overflow: visible;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-page {
  min-height: auto;
  align-content: start;
  gap: 12px;
  padding: 14px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-head.profile-library-head-compact {
  align-items: start;
  padding: 0 2px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-head.profile-library-head-compact p {
  margin-top: 2px;
}

.app-shell[data-screen="app"][data-role="client"] .profile-library-card.profile-video-tile {
  align-content: start;
}

@media (max-width: 760px) {
  .app-shell[data-screen="app"][data-role="client"] .web-round-action.web-round-signal span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .app-shell[data-screen="app"][data-role="client"] .web-round-action.web-round-signal {
    width: 42px;
    padding: 0;
  }

  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="campaigns"] {
    grid-template-columns: 1fr;
  }
}

/* Tighten app workspaces so tall nav/content screens do not clip or reserve empty columns. */
.app-shell[data-screen="app"] .web-stage {
  grid-template-rows: auto minmax(0, 1fr);
}

.app-shell[data-screen="app"] .web-topbar {
  min-height: 72px;
}

.app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) !important;
  overflow: hidden;
}

.app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] .web-workspace,
.app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] .web-feed-controls {
  display: none !important;
}

.app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] .web-sidebar {
  grid-column: 1;
  grid-row: 2;
  min-height: 0;
  overflow: auto;
}

.app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] .web-discovery {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  overflow: auto;
  padding-right: 0;
}

.app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] .web-video-pane,
.app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] .campaign-board-page {
  width: 100%;
  max-width: none;
}

.app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] .campaign-board-page {
  min-height: auto;
  align-content: start;
}

.app-shell[data-screen="app"] .web-stage[data-focus="profile"] .web-discovery,
.app-shell[data-screen="app"] .web-stage[data-focus="profile"] .web-video-pane {
  align-self: start;
}

.app-shell[data-screen="app"] .web-stage[data-focus="profile"] .profile-library-page {
  min-height: auto;
  align-content: start;
}

.app-shell[data-screen="app"][data-role="creator"] .web-stage .web-sidebar,
.app-shell[data-screen="app"][data-role="creator"] .web-stage .web-discovery,
.app-shell[data-screen="app"][data-role="creator"] .web-stage .web-workspace,
.app-shell[data-screen="app"][data-role="creator"] #webCreatorDetail,
.app-shell[data-screen="app"][data-role="creator"] #webChatPanel,
.app-shell[data-screen="app"][data-role="creator"] #webDealPanel {
  display: none !important;
}

.campaign-form-error {
  margin: 0;
  color: #8d3442;
  font-size: 13px;
  font-weight: 800;
}

.campaign-card {
  align-content: start;
  gap: 16px;
}

.campaign-card-actions,
.campaign-inline-actions,
.campaign-applicant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.campaign-card-actions button,
.campaign-applicant-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.campaign-card-actions button:last-child {
  color: #8d3442;
}

.campaign-applicant-actions button:disabled {
  opacity: 0.52;
  cursor: default;
}

.campaign-inline-edit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.campaign-inline-edit label {
  display: grid;
  gap: 6px;
}

.campaign-inline-edit label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.campaign-inline-edit input,
.campaign-inline-edit select,
.campaign-inline-edit textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.campaign-inline-edit textarea {
  min-height: 96px;
  padding: 14px;
  resize: vertical;
}

.campaign-form-wide {
  grid-column: 1 / -1;
}

.campaign-section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-applicants {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.campaign-applicants.is-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.campaign-applicant-row {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.campaign-applicant-row > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.campaign-applicant-row span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f0eaf3;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.campaign-applicant-row span.is-shortlisted,
.campaign-applicant-row span.is-accepted {
  background: var(--accent-2);
  color: var(--ink);
}

.campaign-applicant-row span.is-rejected,
.campaign-applicant-row span.is-withdrawn {
  background: #f1ddd8;
  color: #7d2f3b;
}

.campaign-applicant-row small {
  color: var(--muted);
  font-weight: 700;
}

.creator-inbox-page {
  display: grid;
  gap: 18px;
  min-height: 0;
  height: 100%;
}

.creator-inbox-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

.creator-inbox-head h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}

.creator-inbox-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.creator-inbox-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
  height: 100%;
}

.creator-inbox-list,
.creator-inbox-conversation {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 54px rgba(38, 30, 51, 0.08);
}

.creator-inbox-list {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  overflow: auto;
}

.creator-inbox-list button {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.creator-inbox-list button.is-active {
  border-color: rgba(111, 62, 173, 0.28);
  background: #f0eaf3;
}

.creator-inbox-list span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.creator-inbox-list small {
  overflow: hidden;
  color: var(--muted);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-inbox-list em {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.creator-inbox-conversation {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  padding: 16px;
}

.creator-inbox-conversation-head {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.creator-inbox-conversation-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-inbox-conversation-head strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
}

.creator-inbox-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.creator-inbox-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.creator-inbox-composer input {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

@media (max-width: 900px) {
  .creator-inbox-layout {
    grid-template-columns: 1fr;
  }

  .campaign-inline-edit {
    grid-template-columns: 1fr;
  }
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: clamp(20px, 5vw, 72px);
}

.auth-gate.is-open {
  display: grid;
}

.auth-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 23, 43, 0.2);
  backdrop-filter: blur(14px);
}

.auth-gate-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(38px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 92%, rgba(112, 64, 170, 0.16), transparent 32%),
    radial-gradient(circle at 12% 8%, rgba(160, 213, 180, 0.18), transparent 28%),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.auth-gate-card h2 {
  max-width: 560px;
  margin: 12px 0 12px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 0.98;
}

.auth-gate-card p {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.5;
}

.auth-gate-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  cursor: pointer;
}

.auth-gate-form {
  display: grid;
  gap: 20px;
}

.auth-gate-form .form-field {
  display: grid;
  gap: 8px;
}

.auth-gate-form .form-field span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-gate-form .form-field input {
  width: 100%;
  height: 58px;
  border: 0;
  border-bottom: 1px solid rgba(42, 31, 61, 0.16);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 750;
  line-height: 1;
  outline: 0;
  box-shadow: none;
  appearance: none;
}

.auth-gate-form .form-field input::placeholder {
  color: rgba(42, 31, 61, 0.34);
  font-weight: 650;
}

.auth-gate-form .form-field input:focus {
  border-bottom-color: var(--accent);
}

.password-input-wrap {
  position: relative;
  display: grid;
  align-items: center;
}

.password-input-wrap input {
  padding-right: 48px;
}

.password-visibility-toggle {
  position: absolute;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.password-visibility-toggle svg {
  width: 20px;
  height: 20px;
}

.password-visibility-toggle:hover,
.password-visibility-toggle:focus-visible {
  color: var(--ink);
  background: rgba(107, 63, 160, 0.08);
}

.auth-gate-form .deal-action {
  min-height: 58px;
  margin-top: 4px;
}

.auth-gate-switch,
.auth-gate-preview,
.auth-gate-resend,
.auth-gate-secondary-link {
  width: 100%;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-gate-resend {
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.auth-gate-resend:disabled {
  cursor: wait;
  opacity: 0.72;
}

.auth-gate-notice {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(70, 139, 95, 0.24);
  border-radius: 14px;
  background: rgba(230, 246, 235, 0.92);
  color: #2d6b45;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.brand-confirmation-resend {
  max-width: 320px;
  margin-top: 0;
}

.auth-gate-preview {
  color: var(--muted);
  font-weight: 700;
}

@media (max-height: 780px) {
  .auth-gate {
    padding: 20px;
  }

  .auth-gate-card {
    width: min(620px, 100%);
    padding: 32px 44px;
  }

  .auth-gate-card h2 {
    font-size: clamp(2.45rem, 4.8vw, 4rem);
  }

  .auth-gate-card p {
    margin-bottom: 22px;
  }

  .auth-gate-form {
    gap: 16px;
  }

  .auth-gate-form .form-field input {
    height: 50px;
  }
}

@media (max-width: 760px) {
  .app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: auto;
  }

  .app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] .web-sidebar {
    grid-column: 1;
    grid-row: 2;
    overflow: visible;
  }

  .app-shell[data-screen="app"] .web-stage[data-focus="campaigns"] .web-discovery {
    grid-column: 1;
    grid-row: 3;
    height: auto;
    max-height: none;
    overflow: visible;
  }
}

/* Mobile app pages need document-level scroll; iOS gets sticky inside nested 100svh containers wrong. */
@media (max-width: 760px) {
  html:has(.app-shell[data-screen="app"]),
  body:has(.app-shell[data-screen="app"]) {
    min-height: 100%;
    height: auto;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .app-shell[data-screen="app"] {
    position: relative;
    min-height: 100svh;
    height: auto;
    overflow: visible !important;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .app-shell[data-screen="app"] .web-stage {
    min-height: auto;
    height: auto;
    overflow: visible !important;
  }

  .app-shell[data-screen="app"][data-role="creator"] .web-stage {
    grid-template-rows: auto auto;
  }

  .app-shell[data-screen="app"][data-role="creator"] .creator-stage,
  .app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] {
    height: auto;
    min-height: auto;
    overflow: visible !important;
  }

  .app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] {
    padding-bottom: max(96px, calc(env(safe-area-inset-bottom) + 72px));
  }

  .app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .creator-main {
    max-height: none;
    overflow: visible !important;
    padding-bottom: max(88px, calc(env(safe-area-inset-bottom) + 64px));
  }

  .app-shell[data-screen="app"] .creator-stage[data-mode="onboarding"] .onboarding-actions {
    bottom: env(safe-area-inset-bottom);
  }

  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"],
  .app-shell[data-screen="app"][data-role="client"] .web-stage[data-focus="brand-onboarding"] .web-discovery {
    height: auto;
    min-height: auto;
    overflow: visible !important;
  }
}

/* Brand work-with-us landing from Claude artifact 344a8464-2947-466f-a291-6e801235e630. */
.brand-landing-stage {
    --bg: #F4F1EA;
    --bg-2: #ECE7DC;
    --ink: #2A1F3D;
    --ink-dim: #6B5F7A;
    --ink-faint: #A89FB3;
    --accent: #6B3FA0;
    --accent-2: #A8D5BA;
    --accent-3: #FFD4A3;
    --line: rgba(42, 31, 61, 0.10);
    --line-strong: rgba(42, 31, 61, 0.22);
    --card: #FFFFFF;
  }
.brand-landing-stage * { box-sizing: border-box; margin: 0; padding: 0; }
.brand-landing-stage { scroll-behavior: smooth; }
.brand-landing-stage {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Geist', -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
.brand-landing-stage::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 100;
    mix-blend-mode: multiply;
  }
.brand-landing-stage .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.brand-landing-stage nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(244, 241, 234, 0.82);
    border-bottom: 1px solid var(--line);
  }
.brand-landing-stage .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 32px; max-width: 1280px; margin: 0 auto;
  }
.brand-landing-stage .logo {
    text-decoration: none; color: var(--ink);
    display: flex; align-items: center;
    transition: opacity 0.2s ease;
  }
.brand-landing-stage .logo:hover { opacity: 0.7; }
.brand-landing-stage .logo-text {
    font-family: 'Geist', sans-serif;
    font-size: 24px; font-weight: 700;
    letter-spacing: -0.04em; line-height: 1;
  }
.brand-landing-stage .logo-dot { color: var(--accent); font-weight: 700; }
.brand-landing-stage .nav-actions { display: flex; gap: 10px; align-items: center; }
.brand-landing-stage .nav-btn {
    font-family: 'Geist', sans-serif;
    font-size: 13px; font-weight: 500;
    text-decoration: none;
    padding: 10px 18px; border-radius: 999px;
    transition: all 0.2s ease;
    letter-spacing: -0.005em;
    white-space: nowrap;
  }
.brand-landing-stage .nav-btn-secondary {
    color: var(--ink); background: transparent;
    border: 1px solid var(--line-strong);
  }
.brand-landing-stage .nav-btn-secondary:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.brand-landing-stage .nav-btn-primary {
    background: var(--accent); color: #fff;
    border: 1px solid var(--accent);
  }
.brand-landing-stage .nav-btn-primary:hover {
    background: #5A3289; border-color: #5A3289;
    box-shadow: 0 8px 24px rgba(107, 63, 160, 0.28);
  }
.brand-landing-stage .hero {
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
.brand-landing-stage .hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(168, 213, 186, 0.4) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
.brand-landing-stage .hero-inner { position: relative; z-index: 1; }
.brand-landing-stage .eyebrow {
    display: inline-block;
    font-family: 'Geist Mono', monospace;
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--ink-dim);
    border: 1px solid var(--line-strong);
    padding: 8px 16px; border-radius: 999px;
    margin-bottom: 32px;
  }
.brand-landing-stage h1.headline {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(48px, 7.5vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto; margin-right: auto;
  }
.brand-landing-stage .headline em { font-style: italic; color: var(--accent); }
.brand-landing-stage .hero-sub {
    font-size: 19px; color: var(--ink-dim);
    max-width: 600px; margin: 0 auto 48px;
  }
.brand-landing-stage .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
.brand-landing-stage .agency {
    padding: 20px 0 80px;
    position: relative;
  }
.brand-landing-stage .agency-hero {
    background: linear-gradient(135deg, #2A1F3D 0%, #1A1228 60%, #2A1F3D 100%);
    border-radius: 28px;
    padding: 72px 56px;
    color: #F5EFE0;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
  }
.brand-landing-stage .agency-hero::before {
    content: '';
    position: absolute;
    top: -180px; right: -120px;
    width: 540px; height: 420px;
    background: radial-gradient(ellipse, rgba(255,212,163,0.20) 0%, transparent 65%);
    pointer-events: none;
  }
.brand-landing-stage .agency-hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 480px; height: 360px;
    background: radial-gradient(ellipse, rgba(168,213,186,0.14) 0%, transparent 65%);
    pointer-events: none;
  }
.brand-landing-stage .agency-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
  }
.brand-landing-stage .agency-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #FFD4A3;
    border: 1px solid rgba(255,212,163,0.32);
    background: rgba(255,212,163,0.05);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 32px;
  }
.brand-landing-stage .agency-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: #FFD4A3;
    border-radius: 50%;
  }
.brand-landing-stage .agency-headline {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
  }
.brand-landing-stage .agency-headline em { font-style: italic; color: #FFD4A3; }
.brand-landing-stage .agency-sub {
    font-size: 19px;
    color: rgba(245,239,224,0.75);
    line-height: 1.55;
    max-width: 680px;
    margin: 0 auto 44px;
  }
.brand-landing-stage .agency-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
.brand-landing-stage .agency-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,239,224,0.08);
    border: 0.5px solid rgba(255,212,163,0.22);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    color: #F5EFE0;
    font-weight: 500;
  }
.brand-landing-stage .agency-chip-dot {
    width: 6px; height: 6px;
    background: #FFD4A3;
    border-radius: 50%;
    flex-shrink: 0;
  }
.brand-landing-stage .showcase {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 64px 48px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }
.brand-landing-stage .showcase-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
.brand-landing-stage .showcase-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 14px;
  }
.brand-landing-stage .showcase-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 52px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 16px;
  }
.brand-landing-stage .showcase-title em { font-style: italic; color: var(--accent); }
.brand-landing-stage .showcase-sub {
    font-size: 16px;
    color: var(--ink-dim);
    line-height: 1.55;
  }
.brand-landing-stage .showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
.brand-landing-stage .ctype {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
  }
.brand-landing-stage .ctype:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(42, 31, 61, 0.08);
  }
.brand-landing-stage .ctype-visual {
    height: 168px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
  }
.brand-landing-stage .ctype-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
  }
.brand-landing-stage .ctype-1 .ctype-visual { background: linear-gradient(160deg, #FFD4D8 0%, #B5687A 100%); }
.brand-landing-stage .ctype-2 .ctype-visual { background: linear-gradient(160deg, #FFD4A3 0%, #C97B3D 100%); }
.brand-landing-stage .ctype-3 .ctype-visual { background: linear-gradient(160deg, #A8D5BA 0%, #4A8268 100%); }
.brand-landing-stage .ctype-4 .ctype-visual { background: linear-gradient(160deg, #C9B8FF 0%, #6B3FA0 100%); }
.brand-landing-stage .ctype-5 .ctype-visual { background: linear-gradient(160deg, #F5C28A 0%, #8B4F2E 100%); }
.brand-landing-stage .ctype-6 .ctype-visual { background: linear-gradient(160deg, #D4C8E8 0%, #2A1F3D 100%); }
.brand-landing-stage .ctype-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
  }
.brand-landing-stage .ctype-icon svg { width: 18px; height: 18px; }
.brand-landing-stage .ctype-stamp {
    position: relative;
    z-index: 2;
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 5px 10px;
    border-radius: 999px;
  }
.brand-landing-stage .ctype-body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
.brand-landing-stage .ctype-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 8px;
  }
.brand-landing-stage .ctype-desc {
    font-size: 13px;
    color: var(--ink-dim);
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
  }
.brand-landing-stage .ctype-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
.brand-landing-stage .ctype-tag {
    font-size: 11px;
    color: var(--ink-dim);
    background: var(--bg-2);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 500;
  }
.brand-landing-stage .offerings {
    background: linear-gradient(135deg, #FBF6EE 0%, #F4F1EA 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
  }
.brand-landing-stage .offerings::before {
    content: '';
    position: absolute;
    top: -120px; right: -100px;
    width: 420px; height: 320px;
    background: radial-gradient(ellipse, rgba(107,63,160,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
.brand-landing-stage .offerings::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -80px;
    width: 380px; height: 300px;
    background: radial-gradient(ellipse, rgba(255,212,163,0.10) 0%, transparent 70%);
    pointer-events: none;
  }
.brand-landing-stage .offerings-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }
.brand-landing-stage .offerings-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
  }
.brand-landing-stage .offerings-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
.brand-landing-stage .offerings-title em { font-style: italic; color: var(--accent); }
.brand-landing-stage .offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
  }
.brand-landing-stage .offering {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 32px 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
.brand-landing-stage .offering:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 18px 44px rgba(42, 31, 61, 0.06);
  }
.brand-landing-stage .offering-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 56px;
    line-height: 1;
    color: rgba(107, 63, 160, 0.08);
    letter-spacing: -0.04em;
    pointer-events: none;
    transition: color 0.3s ease;
  }
.brand-landing-stage .offering:hover .offering-num {
    color: rgba(107, 63, 160, 0.16);
  }
.brand-landing-stage .offering-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6B3FA0, #4d2877);
    color: #FFD4A3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(107, 63, 160, 0.20);
    position: relative;
    z-index: 1;
  }
.brand-landing-stage .offering-icon svg { width: 22px; height: 22px; }
.brand-landing-stage .offering:nth-child(2) .offering-icon {
    background: linear-gradient(135deg, #C97B3D, #8B4F2E);
    color: #FFF;
    box-shadow: 0 6px 20px rgba(201, 123, 61, 0.22);
  }
.brand-landing-stage .offering:nth-child(3) .offering-icon {
    background: linear-gradient(135deg, #4A8268, #2C5F4F);
    color: #FFF;
    box-shadow: 0 6px 20px rgba(74, 130, 104, 0.22);
  }
.brand-landing-stage .offering-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
  }
.brand-landing-stage .offering-body {
    font-size: 14px;
    color: var(--ink-dim);
    line-height: 1.6;
    margin-bottom: 22px;
    flex: 1;
    position: relative;
    z-index: 1;
  }
.brand-landing-stage .offering-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    z-index: 1;
  }
.brand-landing-stage .offering-tag {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--bg-2);
    padding: 5px 10px;
    border-radius: 999px;
  }
@media (max-width: 900px) {
.brand-landing-stage .offerings-grid { grid-template-columns: 1fr; gap: 14px; }
.brand-landing-stage .offerings { padding: 56px 36px; }


}
@media (max-width: 640px) {
.brand-landing-stage .agency-hero { padding: 48px 28px; border-radius: 22px; }
.brand-landing-stage .offerings { padding: 48px 24px; border-radius: 22px; }
.brand-landing-stage .offering { padding: 30px 26px; }
.brand-landing-stage .offering-num { font-size: 44px; top: 20px; right: 22px; }
.brand-landing-stage .agency-chips { gap: 6px; }
.brand-landing-stage .agency-chip { padding: 8px 14px; font-size: 12px; }


}
.brand-landing-stage .form-section { padding: 0 0 80px; position: relative; }
.brand-landing-stage .form-shell {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    max-width: 880px;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(42, 31, 61, 0.04);
  }
.brand-landing-stage .form-banner {
    background: linear-gradient(135deg, #2A1F3D 0%, #1A1228 100%);
    padding: 28px 40px;
    color: #F5EFE0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    overflow: hidden;
  }
.brand-landing-stage .form-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -40px;
    width: 280px; height: 220px;
    background: radial-gradient(ellipse, rgba(255, 212, 163, 0.22) 0%, transparent 70%);
    pointer-events: none;
  }
.brand-landing-stage .form-banner-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(245, 239, 224, 0.6);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
  }
.brand-landing-stage .form-banner-title {
    font-family: 'Fraunces', serif;
    font-size: 22px; font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.15;
    position: relative;
    z-index: 1;
  }
.brand-landing-stage .form-banner-title em { font-style: italic; color: #FFD4A3; }
.brand-landing-stage .form-banner-meta {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: rgba(245, 239, 224, 0.6);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    text-align: right;
  }
.brand-landing-stage form { padding: 40px 40px 32px; }
.brand-landing-stage .form-group {
    padding: 24px 0;
    border-top: 1px solid var(--line);
  }
.brand-landing-stage .form-group:first-of-type { padding-top: 4px; border-top: 0; }
.brand-landing-stage .form-group-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
  }
.brand-landing-stage .form-group-num {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--accent);
  }
.brand-landing-stage .form-group-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.15;
  }
.brand-landing-stage .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
  }
.brand-landing-stage .form-grid.full { grid-template-columns: 1fr; }
.brand-landing-stage .field { display: flex; flex-direction: column; }
.brand-landing-stage .field.full { grid-column: 1 / -1; }
.brand-landing-stage .field-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
.brand-landing-stage .field-label .required { color: var(--accent); font-weight: 500; }
.brand-landing-stage .field-label .optional {
    font-size: 11px;
    color: var(--ink-faint);
    font-weight: 400;
  }
.brand-landing-stage .input, .brand-landing-stage .select, .brand-landing-stage .textarea {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: #FFFFFF;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
    transition: all 0.15s ease;
    line-height: 1.4;
  }
.brand-landing-stage .input:hover, .brand-landing-stage .select:hover, .brand-landing-stage .textarea:hover { border-color: rgba(42, 31, 61, 0.35); }
.brand-landing-stage .input:focus, .brand-landing-stage .select:focus, .brand-landing-stage .textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.10);
  }
.brand-landing-stage .input::placeholder, .brand-landing-stage .textarea::placeholder { color: var(--ink-faint); }
.brand-landing-stage .select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B5F7A' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
  }
.brand-landing-stage .textarea { resize: vertical; min-height: 100px; }
.brand-landing-stage .chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
.brand-landing-stage .chip {
    position: relative;
    cursor: pointer;
  }
.brand-landing-stage .chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
.brand-landing-stage .chip-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #FFFFFF;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 13px;
    color: var(--ink);
    transition: all 0.15s ease;
    user-select: none;
  }
.brand-landing-stage .chip-label::before {
    content: '';
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--line-strong);
    flex-shrink: 0;
    transition: all 0.15s ease;
    background: #fff;
  }
.brand-landing-stage .chip input:checked + .chip-label {
    background: rgba(107, 63, 160, 0.08);
    border-color: var(--accent);
    color: var(--accent);
  }
.brand-landing-stage .chip input:checked + .chip-label::before {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: inset 0 0 0 3px #FFFFFF;
  }
.brand-landing-stage .chip:hover .chip-label { border-color: rgba(42, 31, 61, 0.35); }
.brand-landing-stage .form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 14px;
  }
.brand-landing-stage .form-disclaimer {
	    font-size: 12px;
	    color: var(--ink-dim);
	    max-width: 440px;
	    line-height: 1.5;
	  }
.brand-landing-stage .form-disclaimer a { color: var(--accent); text-decoration: none; }
.brand-landing-stage .form-disclaimer a:hover { text-decoration: underline; }
.brand-landing-stage .form-submit-error {
    flex: 1 1 100%;
    padding: 12px 14px;
    border: 1px solid rgba(210, 73, 73, 0.38);
    border-radius: 8px;
    background: rgba(210, 73, 73, 0.08);
    color: #8d2f2f;
    font-size: 13px;
    line-height: 1.45;
  }
.brand-landing-stage .form-submit-error[hidden] {
    display: none;
  }
.brand-landing-stage .submit-btn {
	    font-family: 'Geist', sans-serif;
	    font-size: 15px;
	    font-weight: 500;
    padding: 16px 32px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
	    gap: 8px;
	    white-space: nowrap;
	  }
.brand-landing-stage .submit-btn:disabled,
.brand-landing-stage form[data-submitting="true"] .submit-btn {
    cursor: wait;
    opacity: 0.68;
    transform: none;
    box-shadow: none;
  }
.brand-landing-stage .submit-btn:hover {
	    background: #5A3289;
	    border-color: #5A3289;
	    transform: translateY(-2px);
	    box-shadow: 0 12px 32px rgba(107, 63, 160, 0.28);
	  }
.brand-landing-stage .submit-btn:disabled:hover,
.brand-landing-stage form[data-submitting="true"] .submit-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: none;
    box-shadow: none;
  }
.brand-landing-stage .submit-btn:active { transform: translateY(0); }
.brand-landing-stage .submit-btn svg { transition: transform 0.2s ease; }
.brand-landing-stage .submit-btn:hover svg { transform: translateX(3px); }
.brand-landing-stage .form-success {
    padding: 80px 40px;
    text-align: center;
    display: none;
  }
.brand-landing-stage .form-success.show { display: block; }
.brand-landing-stage .form-success-icon {
    width: 64px; height: 64px;
    background: var(--accent-2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #1F4030;
  }
.brand-landing-stage .form-success-icon svg { width: 28px; height: 28px; }
.brand-landing-stage .form-success h2 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
  }
.brand-landing-stage .form-success h2 em { font-style: italic; color: var(--accent); }
.brand-landing-stage .form-success p {
    color: var(--ink-dim);
    font-size: 16px;
    max-width: 440px;
    margin: 0 auto;
  }
.brand-landing-stage .faq-section { padding: 100px 0; }
.brand-landing-stage .faq-header { text-align: center; margin-bottom: 56px; }
.brand-landing-stage .faq-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-faint);
    margin-bottom: 12px;
  }
.brand-landing-stage .faq-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.03em;
  }
.brand-landing-stage .faq-title em { font-style: italic; color: var(--accent); }
.brand-landing-stage .faq-list { max-width: 760px; margin: 0 auto; }
.brand-landing-stage .faq {
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
.brand-landing-stage .faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
    user-select: none;
  }
.brand-landing-stage .faq summary::-webkit-details-marker { display: none; }
.brand-landing-stage .faq summary::after {
    content: '+';
    font-family: 'Geist', sans-serif;
    font-size: 28px; font-weight: 300;
    color: var(--accent);
    line-height: 1;
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
.brand-landing-stage .faq[open] summary::after { transform: rotate(45deg); }
.brand-landing-stage .faq-answer {
    color: var(--ink-dim);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 14px;
    padding-right: 40px;
  }
.brand-landing-stage footer {
    border-top: 1px solid var(--line);
    padding: 48px 0; text-align: center;
  }
.brand-landing-stage .footer-text {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.05em;
  }
@media (max-width: 768px) {
.brand-landing-stage .container { padding: 0 20px; }
.brand-landing-stage .nav-inner { padding: 14px 20px; }
.brand-landing-stage .nav-btn-secondary { display: none; }
.brand-landing-stage .nav-btn { padding: 9px 14px; font-size: 12px; }
.brand-landing-stage .hero { padding: 60px 0 40px; }
.brand-landing-stage form { padding: 32px 24px 24px; }
.brand-landing-stage .form-grid { grid-template-columns: 1fr; }
.brand-landing-stage .form-banner { padding: 22px 24px; }
.brand-landing-stage .form-actions { justify-content: stretch; }
.brand-landing-stage .submit-btn { width: 100%; justify-content: center; }
.brand-landing-stage .faq-section { padding: 60px 0; }
.brand-landing-stage .faq summary { font-size: 18px; }


}
.brand-landing-stage .reveal { opacity: 0; transform: translateY(20px); animation: brandWorkReveal 0.8s ease forwards; }
.brand-landing-stage .reveal-1 { animation-delay: 0.05s; }
.brand-landing-stage .reveal-2 { animation-delay: 0.15s; }
.brand-landing-stage .reveal-3 { animation-delay: 0.3s; }
.brand-landing-stage .reveal-4 { animation-delay: 0.45s; }
@keyframes brandWorkReveal { to { opacity: 1; transform: translateY(0); } }

.creator-review-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(23, 19, 35, 0.12);
  border-radius: 8px;
}

.creator-review-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #2a213f;
  background: #f5f1e7;
  border: 1px solid rgba(23, 19, 35, 0.1);
  border-radius: 8px;
}

.creator-review-icon svg {
  width: 20px;
  height: 20px;
}

.creator-review-banner h2 {
  margin: 4px 0 6px;
  font-size: 22px;
  line-height: 1.1;
}

.creator-review-banner p,
.creator-review-banner small,
.creator-review-banner blockquote {
  margin: 0;
  color: rgba(42, 33, 63, 0.72);
  line-height: 1.45;
}

.creator-review-banner blockquote {
  margin-top: 10px;
  padding-left: 12px;
  border-left: 3px solid rgba(112, 65, 173, 0.32);
  font-weight: 700;
}

.creator-review-banner small {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.creator-review-banner.status-approved {
  border-color: rgba(53, 121, 82, 0.32);
  background: #f2f8f2;
}

.creator-review-banner.status-needs_changes,
.creator-review-banner.status-submitted,
.creator-review-banner.status-in_review {
  border-color: rgba(151, 107, 29, 0.28);
  background: #fff8e8;
}

.creator-review-banner.status-rejected,
.creator-review-banner.status-hidden {
  border-color: rgba(166, 58, 70, 0.28);
  background: #fff2f3;
}

.creator-review-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0;
  padding: 10px 12px;
  background: #f7f5fa;
  border: 1px solid rgba(23, 19, 35, 0.1);
  border-radius: 8px;
}

.creator-review-mini span,
.creator-review-mini strong {
  font-size: 13px;
  line-height: 1.2;
}

.creator-review-mini span {
  color: rgba(42, 33, 63, 0.7);
  font-weight: 800;
}

.creator-review-mini strong {
  color: #2a213f;
}

@media (max-width: 680px) {
  .creator-review-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
