:root {
  --ink: #15131a;
  --muted: #635d6c;
  --line: #e7e2f0;
  --line-soft: #f0ecf8;
  --paper: #faf8ff;
  --panel: #ffffff;
  --coral: #ef5b50;
  --coral-deep: #d8412f;
  --teal: #0f8b8d;
  --teal-soft: #e6f6f5;
  --gold: #c9963f;
  --violet: #6a4cff;
  --violet-soft: #efeaff;
  --charcoal: #1a1722;
  --soft: #f3effa;
  --success: #1f9d63;
  --danger: #d6314a;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(21, 19, 26, 0.05), 0 2px 8px rgba(21, 19, 26, 0.04);
  --shadow-md: 0 8px 24px rgba(21, 19, 26, 0.08);
  --shadow-lg: 0 24px 64px rgba(21, 19, 26, 0.14);

  --gradient-brand: linear-gradient(135deg, var(--violet) 0%, var(--coral) 100%);
  --gradient-dark: linear-gradient(160deg, #221f2c 0%, #15131a 100%);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01" 1, "cv05" 1;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  padding: 0.1rem 0.35rem;
}

::selection {
  background: var(--violet-soft);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(250, 248, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--gradient-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: var(--shadow-sm);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav a,
.link-button {
  font: inherit;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-full);
  transition: color 0.15s var(--ease), background-color 0.15s var(--ease);
}

.site-nav a.active {
  color: var(--ink);
  background: var(--violet-soft);
}

.site-nav a:hover,
.link-button:hover {
  color: var(--ink);
  background: var(--soft);
}

.nav-cta {
  padding: 0.7rem 1.15rem !important;
  border-radius: var(--radius-full) !important;
  background: var(--ink) !important;
  color: #fff !important;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-public-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.4rem;
}

.nav-link-secondary {
  padding: 0.7rem 1rem !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-full) !important;
  background: #fff !important;
  color: var(--ink) !important;
}

.nav-link-secondary:hover {
  background: var(--soft) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 19, 26, 0.94) 0%, rgba(21, 19, 26, 0.78) 36%, rgba(106, 76, 255, 0.22) 78%),
    linear-gradient(180deg, rgba(21, 19, 26, 0.1) 0%, rgba(21, 19, 26, 0.55) 100%);
}

.hero-content {
  position: relative;
  width: min(720px, 90vw);
  margin-left: 5vw;
  padding: 6rem 0;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--coral-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb6a8;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  color: var(--ink);
}

h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.25rem, 5vw, 5.1rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

p {
  color: var(--muted);
}

.hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
}

.hero h1 {
  color: #fff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button,
.small-button,
.icon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.005em;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background-color 0.15s var(--ease), opacity 0.15s var(--ease);
}

.button {
  padding: 0.9rem 1.4rem;
}

.button.primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(216, 65, 47, 0.28);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(216, 65, 47, 0.36);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.market-intro,
.spotlight-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0;
}

.market-intro-card,
.spotlight-panel,
.quick-link-card,
.stage-card,
.deal-list-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.market-intro-card,
.spotlight-panel {
  padding: 1.25rem;
}

.market-intro-card.soft {
  background: var(--soft);
}

.market-intro > div:first-child {
  grid-column: span 2;
}

.simple-steps {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.spotlight-panel.span-2 {
  grid-column: span 2;
}

.deal-stage-grid,
.quick-link-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stage-card,
.quick-link-card {
  padding: 1rem;
}

.stage-card span,
.quick-link-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.stage-card strong {
  display: block;
  margin: 0.35rem 0;
  font-size: 2rem;
  line-height: 1;
}

.stage-card small {
  color: var(--muted);
}

.deal-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.deal-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
}

.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quick-link-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.creator-card-stats strong {
  letter-spacing: 0;
}

.button.ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.ghost:hover {
  box-shadow: inset 0 0 0 1px var(--violet);
  color: var(--violet);
}

.button.wide {
  width: 100%;
}

.button:disabled,
.small-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

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

.metric-band div {
  padding: 2rem 5vw;
  background: var(--paper);
}

.metric-band strong {
  display: block;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-band span {
  color: var(--muted);
  font-weight: 700;
}

.split-section,
.page-shell,
.dashboard-shell,
.auth-page {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: 6rem 0;
}

.split-section.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 4rem;
}

.feature-card,
.auth-card,
.notice-panel,
.panel,
.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.feature-card:hover,
.metric-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-soft);
  transform: translateY(-2px);
}

.feature-card {
  padding: 1.35rem;
}

.feature-card span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  color: var(--violet);
  font-weight: 800;
  transition: gap 0.15s var(--ease);
}

.inline-link:hover {
  gap: 0.55rem;
}

.operator-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-dark);
  color: #fff;
}

.operator-panel p,
.operator-panel .eyebrow {
  color: #ffb29c;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 1.6rem;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.page-shell {
  padding: 4rem 0 6rem;
}

.page-intro {
  max-width: 840px;
  margin-bottom: 3rem;
}

.page-intro h1 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.form-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-top: 2rem;
}

.stacked-form,
.dashboard-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.95rem;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

input:hover,
textarea:hover,
select:hover {
  border-color: #cfc7e6;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px var(--violet-soft);
}

textarea {
  resize: vertical;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
}

.auth-page {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.auth-copy h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.auth-card,
.notice-panel {
  padding: 2rem;
}

.auth-side-panel {
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.auth-points {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.form-error {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: #fdecec;
  color: var(--danger);
  font-weight: 700;
}

.form-error.success {
  background: #e8f7ef;
  color: #147a42;
}

.campaign-form-notice {
  margin-bottom: 1rem;
}

.dashboard-global-notice {
  width: min(1180px, 94vw);
  margin: -0.5rem auto 1rem;
}

.dashboard-form .is-invalid,
.brand-cover-upload.is-invalid {
  border-color: rgba(220,38,38,0.75) !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  color: var(--danger);
  font-weight: 800;
  line-height: 1.35;
}

.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.mini-grid span {
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.compact-page {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
}

.dashboard-shell {
  padding: 3rem 0 5rem;
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.dashboard-heading h1 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.dashboard-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.subnav-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.subnav-chip.active {
  border-color: transparent;
  background: var(--ink);
  color: #fff;
}

.status-pill,
.tag,
.done-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: var(--radius-full);
  padding: 0.3rem 0.8rem;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.tag.light,
.small-button.light {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.tag.danger {
  background: #fdecec;
  color: var(--danger);
}

.tag.primary {
  background: var(--violet-soft);
  color: var(--violet);
}

.muted-line {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.notice-text {
  margin: 0.6rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.highlight-row {
  background: #fff8e6;
  border-color: rgba(217, 178, 106, 0.45);
}

.dashboard-actions,
.row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.metric-card {
  padding: 1.35rem;
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 0.35rem 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.workspace-stack {
  margin-bottom: 1rem;
}

.workspace-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.panel {
  padding: 1.5rem;
  min-width: 0;
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.panel-header h2 {
  margin: 0.15rem 0 0;
  font-size: 1.3rem;
}

.form-block {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.form-block-head {
  display: grid;
  gap: 0.2rem;
}

.form-block-head strong {
  font-size: 1rem;
}

.form-block-head span {
  color: var(--muted);
  font-size: 0.88rem;
}

.wizard-header {
  display: grid;
  gap: 1rem;
}

.wizard-steps {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wizard-step {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
  min-height: 72px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.wizard-step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.wizard-step strong {
  font-size: 0.96rem;
}

.wizard-step.active {
  border-color: transparent;
  background: var(--ink);
  color: #fff;
}

.wizard-step.active span,
.wizard-step.done span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.wizard-step.done {
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 100%);
  color: #fff;
}

.wizard-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--line-soft);
  overflow: hidden;
}

.wizard-progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 100%);
  transition: width 0.2s ease;
}

.wizard-panel {
  display: none;
  gap: 1rem;
}

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

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wizard-submit-group {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.wizard-review-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #fff;
}

.review-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.review-card strong {
  font-size: 0.98rem;
}

.two-col,
.three-col,
.four-col {
  display: grid;
  gap: 1rem;
}

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

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

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

.list-stack {
  display: grid;
  gap: 0.75rem;
}

.workspace-list {
  display: grid;
  gap: 0.9rem;
}

.workspace-item {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.9fr);
  padding: 1rem 1.05rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #fff;
}

.workspace-item-main,
.workspace-item-side {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
}

.workspace-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.workspace-item-head p,
.workspace-item-main > p {
  margin-bottom: 0;
}

.workspace-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.workspace-meta strong {
  color: var(--ink);
  letter-spacing: 0;
}

.workspace-item-side {
  align-content: start;
  justify-items: end;
}

.agreement-grid {
  display: grid;
  gap: 1rem;
}

.agreement-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.agreement-card h3 {
  margin-top: 0.65rem;
}

.agreement-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.task-row,
.payout-row,
.model-row,
.lead-row,
.compliance-row,
.risk-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
  transition: border-color 0.15s var(--ease);
}

.task-row:hover,
.payout-row:hover,
.model-row:hover,
.lead-row:hover,
.compliance-row:hover {
  border-color: #d9d0f0;
}

.task-row p,
.payout-row p,
.model-row p,
.lead-row p,
.compliance-row p,
.risk-row p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.task-row small,
.lead-row small,
.compliance-row small,
td small {
  color: var(--muted);
}

.risk-row {
  border-left: 4px solid var(--teal);
}

.risk-row.warning {
  border-left-color: var(--gold);
}

.risk-row.critical {
  border-left-color: var(--coral);
}

.ops-facts {
  display: grid;
  gap: 0.7rem;
}

.ops-facts div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.ops-facts span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-facts strong {
  overflow-wrap: anywhere;
}

.checkbox-line {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.checkbox-line input {
  width: auto;
}

.compact-check {
  min-height: 36px;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.clamped-text {
  display: -webkit-box;
  max-width: 420px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.icon-action,
.small-button {
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  border-radius: var(--radius-full);
}

.small-button:hover,
.icon-action:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.small-button.light:hover {
  box-shadow: inset 0 0 0 1px var(--violet), var(--shadow-sm);
  color: var(--violet);
}

.small-button.primary {
  background: var(--gradient-brand);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

th,
td {
  border-bottom: 1px solid var(--line-soft);
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--soft);
}

tbody tr {
  transition: background-color 0.12s var(--ease);
}

tbody tr:hover {
  background: var(--violet-soft);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.inline-form {
  display: grid;
  grid-template-columns: 130px minmax(140px, 1fr) auto;
  gap: 0.45rem;
}

.invite-form {
  grid-template-columns: 120px minmax(140px, 1fr) auto;
}

.integration-form {
  grid-template-columns: minmax(160px, 1fr) 110px minmax(150px, 1fr) minmax(150px, 1fr) minmax(160px, 1fr) auto;
}

.mini-form {
  display: grid;
  gap: 0.5rem;
  min-width: 120px;
}

.mini-inline {
  margin-top: 0.45rem;
}

.marketplace-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.deal-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.deal-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.compact-form {
  margin-top: 0.75rem;
}

.deliverable-box,
.deliverable-list,
.deliverable-item {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.deliverable-list {
  margin-top: 0.5rem;
}

.deliverable-item {
  padding: 0.75rem;
  background: #fff;
}

.deliverable-item p {
  margin-bottom: 0.15rem;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}

.creator-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.creator-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.creator-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.creator-card .tag-row {
  min-height: 28px;
}

.creator-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.creator-card-stats div {
  padding: 0.55rem;
  border-radius: var(--radius-sm);
  background: var(--soft);
  text-align: center;
}

.creator-card-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.creator-card-stats strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.92rem;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 1.5rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.filter-bar label {
  font-size: 0.74rem;
}

@media (max-width: 920px) {
  .filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.marketplace-block,
.creator-match-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.compact-header {
  margin-bottom: 0;
}

.match-preview-block {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}

.match-preview-block:empty {
  border-top: none;
  margin-top: 0;
}

.match-preview-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.creator-shortlist {
  display: grid;
  gap: 0.85rem;
}

.creator-match-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  background: #fff;
}

.creator-match-card h3 {
  margin-top: 0.5rem;
}

.deal-card-head,
.campaign-brief {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.campaign-brief {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1rem;
}

.fit-score {
  display: grid;
  min-width: 72px;
  min-height: 72px;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.fit-score strong {
  display: block;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.fit-score span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fit-score.small {
  min-width: 52px;
  min-height: 52px;
}

.fit-score.small strong {
  font-size: 1.02rem;
}

/* --- Avatare (Profilbilder mit Initialen-Fallback) --- */
.avatar {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar.xs {
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
}

.avatar.sm {
  width: 36px;
  height: 36px;
  font-size: 0.82rem;
}

.avatar.lg {
  width: 64px;
  height: 64px;
  font-size: 1.25rem;
}

.avatar.xl {
  width: 112px;
  height: 112px;
  font-size: 2.1rem;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}

.identity-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-upload {
  position: relative;
  display: block;
  cursor: pointer;
}

.avatar-upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.avatar-upload .avatar-upload-hint {
  position: absolute;
  inset: auto 0 -6px 0;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-full);
  padding: 0.15rem 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease);
  pointer-events: none;
}

.avatar-upload:hover .avatar-upload-hint {
  opacity: 1;
  transform: translateY(0);
}

.identity-row .identity-meta {
  min-width: 0;
}

.identity-row .identity-meta strong {
  display: block;
}

.identity-row .identity-meta small {
  color: var(--muted);
}

/* --- Spinner / Skeleton fuer Async-UI (z. B. Live-Match-Vorschau) --- */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid var(--violet-soft);
  border-top-color: var(--violet);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.preview-loading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.deal-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 0;
}

.deal-meta div {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.deal-meta dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-meta dd {
  margin: 0.2rem 0 0;
  font-weight: 900;
}

.tag-row,
.link-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brief-box {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.brief-box p {
  margin-bottom: 0.35rem;
}

.notice-inline {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
}

.media-kit-shell {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
  color: #132033;
}

.media-kit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(1.2rem, 4vw, 2.4rem);
  align-items: stretch;
  margin-bottom: 1.1rem;
}

.media-kit-identity,
.media-kit-brand-card,
.media-kit-kpis article,
.media-kit-panel {
  border: 1px solid rgba(25, 35, 53, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 80px rgba(31, 45, 76, 0.1);
}

.media-kit-identity {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.1rem, 4vw, 2rem);
  min-height: 390px;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(67, 214, 218, 0.28), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eff7f7 48%, #eef0ff 100%);
}

.media-kit-identity::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 4vw, 2.2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  width: min(310px, 34%);
  aspect-ratio: 1.45;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16, 24, 39, 0.92), rgba(54, 62, 98, 0.84)),
    url("/assets/creator-studio-hero.png") center / cover;
  box-shadow: 0 28px 60px rgba(16, 24, 39, 0.25);
  opacity: 0.38;
}

.media-kit-avatar {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(92px, 13vw, 142px);
  height: clamp(92px, 13vw, 142px);
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 26px;
  background: linear-gradient(135deg, #101827, #7657ff);
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  box-shadow: 0 20px 44px rgba(16, 24, 39, 0.2);
}

.media-kit-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-kit-identity > div:not(.media-kit-avatar) {
  position: relative;
  z-index: 1;
  max-width: min(620px, 100%);
}

.media-kit-label,
.media-kit-section-head span,
.media-kit-kpis span,
.media-kit-brand-card > span {
  display: block;
  color: #667085;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-kit-identity h1 {
  margin: 0.25rem 0 0.85rem;
  color: #101827;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
}

.media-kit-tagline {
  max-width: 620px;
  color: #344054;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.media-kit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.media-kit-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.46rem 0.72rem;
  border: 1px solid rgba(16, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #24324a;
  font-size: 0.82rem;
  font-weight: 900;
}

.media-kit-tags--soft span {
  background: #f5f8fb;
  color: #475467;
}

.media-kit-brand-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.45rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 199, 87, 0.24), transparent 30%),
    linear-gradient(160deg, #101827, #21334f 58%, #1f5960);
  color: #fff;
}

.media-kit-brand-card > span,
.media-kit-brand-card small {
  color: rgba(255, 255, 255, 0.7);
}

.media-kit-brand-card strong {
  display: block;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
}

.media-kit-brand-card p {
  color: rgba(255, 255, 255, 0.78);
}

.media-kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.media-kit-actions .ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.media-kit-kpis {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.media-kit-kpis article {
  min-width: 0;
  padding: 1rem;
  background: #fff;
}

.media-kit-kpis strong {
  display: block;
  margin: 0.35rem 0;
  color: #101827;
  font-size: clamp(1.28rem, 1.8vw, 1.95rem);
  line-height: 1.04;
  white-space: nowrap;
}

.media-kit-kpis small {
  display: block;
  color: #667085;
  font-size: 0.78rem;
  line-height: 1.35;
}

.media-kit-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.media-kit-panel {
  min-width: 0;
  padding: clamp(1.15rem, 2vw, 1.45rem);
}

.media-kit-panel--wide {
  grid-column: span 2;
}

.media-kit-section-head {
  margin-bottom: 1rem;
}

.media-kit-section-head h2 {
  margin: 0.2rem 0 0;
  color: #101827;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.media-kit-about > p {
  color: #475467;
  font-size: 1.02rem;
  line-height: 1.75;
}

.media-kit-value-grid,
.media-kit-proof-grid,
.media-kit-portfolio-grid {
  display: grid;
  gap: 0.75rem;
}

.media-kit-value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.media-kit-value-grid div,
.media-kit-proof-grid div,
.media-kit-portfolio-grid a {
  padding: 1rem;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 18px;
  background: #f7fafc;
}

.media-kit-value-grid strong,
.media-kit-platform-card strong,
.media-kit-portfolio-grid strong {
  display: block;
  color: #101827;
}

.media-kit-value-grid span,
.media-kit-platform-card span,
.media-kit-portfolio-grid span {
  display: block;
  margin-top: 0.35rem;
  color: #667085;
  font-size: 0.9rem;
  line-height: 1.45;
}

.media-kit-link-list {
  display: grid;
  gap: 0.65rem;
}

.media-kit-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #101827;
  color: #fff;
  font-weight: 900;
}

.media-kit-link-list a span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.media-kit-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.media-kit-platform-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #f5fbff, #f4f2ff);
}

.media-kit-platform-card dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
}

.media-kit-platform-card dl div {
  min-width: 0;
  padding: 0.65rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.media-kit-platform-card dt {
  color: #667085;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-kit-platform-card dd {
  margin: 0.22rem 0 0;
  color: #101827;
  font-weight: 900;
}

.media-kit-bars {
  display: grid;
  gap: 0.75rem;
}

.media-kit-bars div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 42px;
  gap: 0.6rem;
  align-items: center;
}

.media-kit-bars span,
.media-kit-bars strong {
  color: #344054;
  font-size: 0.84rem;
  font-weight: 900;
}

.media-kit-bars i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f7;
}

.media-kit-bars i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #43d6da, #7657ff);
}

.media-kit-mini-list,
.media-kit-country-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.media-kit-mini-list span,
.media-kit-country-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  background: #f7fafc;
  color: #475467;
  font-weight: 800;
}

.media-kit-country-list strong,
.media-kit-mini-list strong {
  color: #101827;
}

.media-kit-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.media-kit-proof-grid strong {
  display: block;
  color: #101827;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.media-kit-proof-grid span {
  display: block;
  margin-top: 0.35rem;
  color: #667085;
  font-size: 0.88rem;
  font-weight: 800;
}

.media-kit-portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.media-kit-portfolio-grid a {
  min-height: 118px;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.05), rgba(16, 24, 39, 0.48)),
    url("/assets/brand-strategy-table.png") center / cover;
}

.media-kit-portfolio-grid a strong,
.media-kit-portfolio-grid a span {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.media-kit-table {
  overflow-x: auto;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 18px;
}

.media-kit-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.media-kit-table th,
.media-kit-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(16, 24, 39, 0.08);
  text-align: left;
}

.media-kit-table th {
  color: #667085;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-kit-table tr:last-child td {
  border-bottom: 0;
}

.media-kit-empty {
  margin: 0;
  color: #667085;
  font-weight: 800;
}

.mk-page {
  width: min(1220px, 92vw);
  margin: 0 auto;
  padding: 3rem 0 5rem;
  color: #111827;
}

.mk-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1.1rem;
  min-height: 500px;
  margin-bottom: 1rem;
}

.mk-hero-copy,
.mk-portrait-panel,
.mk-editorial-card,
.mk-insight-card,
.mk-factbar {
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.08);
}

.mk-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: clamp(1.75rem, 4.2vw, 3.8rem);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 249, 0.92)),
    linear-gradient(90deg, rgba(36, 202, 190, 0.14), transparent 48%),
    url("/assets/landing-creator-headshots.png") right bottom / min(58%, 620px) auto no-repeat;
}

.mk-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: auto;
}

.mk-meta-line span,
.mk-category-row span,
.mk-section-label {
  color: #475467;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mk-meta-line span {
  padding: 0.48rem 0.65rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.mk-hero h1 {
  max-width: 760px;
  margin: 3.2rem 0 1rem;
  color: #080f1f;
  font-size: clamp(4.2rem, 8.6vw, 8.4rem);
  line-height: 0.84;
  letter-spacing: -0.04em;
}

.mk-hero-copy p {
  max-width: 660px;
  color: #344054;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.48;
}

.mk-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.mk-category-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
}

.mk-category-row--compact {
  margin-top: 1rem;
}

.mk-category-row--compact span {
  min-height: 30px;
  background: #f8fafc;
  font-size: 0.72rem;
}

.mk-portrait-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #0b1220;
}

.mk-portrait {
  position: absolute;
  inset: 0;
}

.mk-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.02), rgba(11, 18, 32, 0.82));
}

.mk-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mk-portrait-card {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 18, 32, 0.76);
  backdrop-filter: blur(16px);
  color: #fff;
}

.mk-portrait-card > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-portrait-card strong {
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1;
}

.mk-portrait-card p {
  max-width: 440px;
  margin: 0.8rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.mk-portrait-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mk-portrait-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.mk-portrait-card a:first-child {
  border-color: transparent;
  background: #fff;
  color: #0b1220;
}

.mk-factbar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.mk-factbar article {
  min-width: 0;
  padding: 1.05rem 1rem;
  border-right: 1px solid rgba(17, 24, 39, 0.1);
}

.mk-factbar article:last-child {
  border-right: 0;
}

.mk-factbar span {
  display: block;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mk-factbar strong {
  display: block;
  margin-top: 0.45rem;
  color: #0b1220;
  font-size: clamp(1.28rem, 1.75vw, 2rem);
  line-height: 1;
  white-space: nowrap;
}

.mk-dossier {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.7fr);
  gap: 1rem;
  align-items: start;
}

.mk-main-column,
.mk-side-column {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.mk-side-column {
  position: sticky;
  top: 88px;
}

.mk-editorial-card,
.mk-insight-card {
  min-width: 0;
  padding: clamp(1.35rem, 2.6vw, 2.2rem);
  border-radius: 12px;
}

.mk-editorial-card h2,
.mk-insight-card h3 {
  max-width: 760px;
  margin: 0.35rem 0 1rem;
  color: #0b1220;
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.mk-insight-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.mk-editorial-card > p {
  max-width: 760px;
  color: #475467;
  font-size: 1.05rem;
  line-height: 1.75;
}

.mk-proof-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.mk-proof-notes div,
.mk-case-grid a {
  padding: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #f8fafc;
}

.mk-proof-notes strong,
.mk-case-grid strong {
  display: block;
  color: #0b1220;
}

.mk-proof-notes span,
.mk-case-grid small,
.mk-case-grid span {
  display: block;
  margin-top: 0.35rem;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.45;
}

.mk-channel-list {
  display: grid;
  gap: 0.7rem;
}

.mk-channel-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.65fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: linear-gradient(90deg, #ffffff, #f7fbfa);
}

.mk-channel-row > div:first-child strong {
  display: block;
  color: #0b1220;
  font-size: 1.1rem;
}

.mk-channel-row > div:first-child span {
  display: block;
  margin-top: 0.25rem;
  color: #667085;
  font-weight: 800;
}

.mk-channel-row dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
}

.mk-channel-row dl div {
  min-width: 0;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.mk-channel-row dt {
  color: #667085;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mk-channel-row dd {
  margin: 0.25rem 0 0;
  color: #0b1220;
  font-weight: 950;
}

.mk-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mk-case-grid a {
  min-height: 132px;
  color: inherit;
}

.mk-deal-table {
  overflow-x: auto;
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.mk-deal-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.mk-deal-table th,
.mk-deal-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  text-align: left;
}

.mk-deal-table th {
  color: #667085;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mk-deal-table tr:last-child td {
  border-bottom: 0;
}

.mk-dark-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(36, 202, 190, 0.2), transparent 36%),
    #0b1220;
  color: #fff;
}

.mk-dark-card .mk-section-label {
  color: rgba(255, 255, 255, 0.58);
}

.mk-score-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.mk-score-row div {
  min-width: 0;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.mk-score-row strong {
  display: block;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.mk-score-row span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
}

.mk-bars {
  display: grid;
  gap: 0.72rem;
}

.mk-bars div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 40px;
  gap: 0.65rem;
  align-items: center;
}

.mk-bars span,
.mk-bars strong {
  color: #344054;
  font-size: 0.84rem;
  font-weight: 900;
}

.mk-bars i {
  display: block;
  height: 9px;
  overflow: hidden;
  background: #eef2f6;
}

.mk-bars i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, #24cabe, #ff6b6b);
}

.mk-mini-stack,
.mk-market-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.mk-mini-stack span,
.mk-market-list span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.76rem 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: #475467;
  font-weight: 850;
}

.mk-mini-stack span:last-child,
.mk-market-list span:last-child {
  border-bottom: 0;
}

.mk-mini-stack strong,
.mk-market-list strong {
  color: #0b1220;
}

.mk-empty {
  margin: 0;
  color: #667085;
  font-weight: 850;
}

.mk-preview-page {
  width: min(1440px, 94vw);
  padding-top: 2.2rem;
  background: transparent;
}

.mk-preview-hero {
  display: grid;
  grid-template-columns: 315px minmax(330px, 1fr) minmax(500px, 0.9fr);
  grid-template-rows: minmax(410px, auto) auto;
  gap: 1.3rem 1.55rem;
  align-items: stretch;
}

.mk-preview-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  background: #dfe9ec;
  box-shadow: 0 24px 80px rgba(13, 23, 41, 0.12);
}

.mk-preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mk-preview-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.mk-verified-chip {
  width: max-content;
  margin-bottom: 1rem;
  padding: 0.46rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  color: #0b1220;
  box-shadow: 0 8px 28px rgba(13, 23, 41, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mk-preview-intro h1 {
  margin: 0;
  color: #07111f;
  font-size: clamp(4.6rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.mk-preview-intro > strong {
  display: block;
  margin-top: 0.75rem;
  color: #164e63;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.mk-preview-tagline {
  margin: 1rem 0 1.1rem;
  color: #0f7891;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-preview-intro p:not(.mk-preview-tagline) {
  max-width: 620px;
  color: #263247;
  font-size: 1.02rem;
  line-height: 1.65;
}

.mk-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.mk-preview-tags span {
  padding: 0.54rem 0.88rem;
  border: 1px solid #dbe2ea;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.82);
  color: #1f2937;
  font-size: 0.82rem;
  font-weight: 850;
}

.mk-preview-summary {
  align-self: center;
  min-width: 0;
  padding: 2rem;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(35, 154, 170, 0.22), transparent 34%),
    linear-gradient(145deg, #111827, #07111f);
  color: #fff;
  box-shadow: 0 28px 80px rgba(13, 23, 41, 0.2);
}

.mk-preview-summary > span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mk-preview-summary > p {
  margin: 0.85rem 0 1.4rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

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

.mk-summary-grid article {
  min-width: 0;
  padding: 1.1rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mk-summary-grid article:nth-child(3n) {
  border-right: 0;
}

.mk-summary-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.mk-summary-grid small,
.mk-summary-grid em {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mk-summary-grid strong {
  display: block;
  margin-top: 0.65rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.06;
  white-space: normal;
}

.mk-summary-grid strong em {
  display: inline;
  margin-left: 0.2rem;
  font-size: 1rem;
}

.mk-summary-grid article > em {
  margin-top: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.mk-trusted-bar {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 140px repeat(3, 1fr) 140px;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  margin-top: -3.5rem;
  padding: 0 1.6rem;
  border: 1px solid rgba(13, 23, 41, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(13, 23, 41, 0.12);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.mk-trusted-bar span,
.mk-trusted-bar small {
  color: #596579;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-trusted-bar strong {
  color: #07111f;
  font-size: 1.15rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.mk-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(430px, 0.86fr);
  gap: 1.55rem;
  margin-top: 1.55rem;
}

.mk-audience-card,
.mk-brand-proof,
.mk-portfolio-card,
.mk-preview-cta {
  border: 1px solid rgba(13, 23, 41, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(13, 23, 41, 0.08);
}

.mk-audience-card {
  padding: 2rem;
}

.mk-audience-card h2,
.mk-brand-proof h2,
.mk-portfolio-card h2 {
  margin: 0;
  color: #07111f;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mk-audience-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: 2rem;
  margin-top: 2rem;
}

.mk-audience-inner h3,
.mk-market-title {
  margin: 0 0 1rem;
  color: #475467;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mk-platform-head,
.mk-platform-line {
  display: grid;
  grid-template-columns: minmax(132px, 1.4fr) repeat(3, minmax(58px, 0.64fr));
  align-items: center;
  gap: 0.72rem;
}

.mk-platform-head {
  padding-bottom: 0.8rem;
  color: #667085;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mk-platform-line {
  min-height: 78px;
  border-top: 1px solid rgba(13, 23, 41, 0.1);
}

.mk-platform-line div strong {
  display: block;
  color: #07111f;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.mk-platform-line div small {
  display: block;
  margin-top: 0.2rem;
  color: #596579;
  font-weight: 750;
}

.mk-platform-line > span {
  color: #07111f;
  font-size: 1.02rem;
  font-weight: 850;
}

.mk-gender-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.1rem;
  color: #596579;
  font-size: 0.82rem;
  font-weight: 800;
}

.mk-gender-row span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 0.45rem;
  border-radius: 999px;
  background: #ff6f61;
}

.mk-gender-row .cyan::before {
  background: #24b8c2;
}

.mk-preview-bars {
  display: grid;
  gap: 0.82rem;
}

.mk-preview-bars div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 38px;
  gap: 0.62rem;
  align-items: center;
}

.mk-preview-bars span,
.mk-preview-bars strong {
  color: #344054;
  font-size: 0.86rem;
  font-weight: 850;
}

.mk-preview-bars i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f5;
}

.mk-preview-bars i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6f61 0 62%, #24b8c2 62%);
}

.mk-market-title {
  margin-top: 1.8rem;
}

.mk-market-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.mk-market-strip strong,
.mk-market-strip span {
  display: block;
}

.mk-market-strip strong {
  color: #07111f;
  font-size: 0.86rem;
}

.mk-market-strip span {
  margin-top: 0.35rem;
  color: #07111f;
  font-size: 1.25rem;
  font-weight: 850;
}

.mk-proof-stack {
  display: grid;
  gap: 1.2rem;
  min-width: 0;
}

.mk-brand-proof,
.mk-portfolio-card {
  padding: 1.35rem;
}

.mk-brand-proof p {
  margin: 0.75rem 0 1.1rem;
  color: #596579;
  font-size: 0.92rem;
}

.mk-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.mk-proof-row div {
  min-width: 0;
  padding-right: 0.8rem;
  border-right: 1px solid rgba(13, 23, 41, 0.1);
}

.mk-proof-row div:last-child {
  border-right: 0;
}

.mk-proof-row strong,
.mk-proof-row span,
.mk-proof-row b,
.mk-proof-row small {
  display: block;
}

.mk-proof-row strong {
  color: #07111f;
  font-size: 1rem;
  text-transform: uppercase;
}

.mk-proof-row span {
  margin-top: 1rem;
  color: #667085;
  font-size: 0.66rem;
  font-weight: 900;
}

.mk-proof-row b {
  margin-top: 0.18rem;
  color: #07111f;
  font-size: 1.25rem;
}

.mk-proof-row small {
  color: #07111f;
  font-size: 0.86rem;
}

.mk-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.mk-card-head a {
  color: #0f7891;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mk-portfolio-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mk-portfolio-row a {
  min-width: 0;
  color: inherit;
}

.mk-portfolio-row img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  border-radius: 3px;
}

.mk-portfolio-row strong {
  display: block;
  margin-top: 0.65rem;
  color: #07111f;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.mk-portfolio-row span {
  display: block;
  margin-top: 0.25rem;
  color: #596579;
  font-size: 0.78rem;
  line-height: 1.35;
}

.mk-preview-cta {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(300px, 1.8fr) auto auto auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.55rem;
  padding: 1.4rem 1.8rem;
  background:
    linear-gradient(90deg, rgba(36, 184, 194, 0.08), rgba(255, 255, 255, 0.96));
}

.mk-preview-cta strong {
  color: #0f7891;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-preview-cta p {
  margin: 0;
  color: #344054;
}

.mk-preview-cta a {
  padding: 0.85rem 1.2rem;
  border-radius: 4px;
  background: #0f7891;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mk-preview-cta span {
  color: #0f172a;
  font-weight: 850;
}

.link-stack {
  flex-direction: column;
}

.link-stack a {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
  font-weight: 900;
}

.inline-link.compact {
  margin-top: 0.3rem;
  font-size: 0.82rem;
}

.block-note {
  display: block;
  max-width: 260px;
  margin-top: 0.45rem;
}

.statement-shell {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.statement-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.statement-header h1 {
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.statement-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.statement-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.statement-summary article,
.statement-meta {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.statement-summary article {
  padding: 1.35rem;
}

.statement-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.statement-summary strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.statement-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

.statement-meta p {
  margin: 0.35rem 0 0;
}

.upload-form {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.message-thread {
  display: grid;
  gap: 0.75rem;
  max-height: 520px;
  overflow: auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.message-bubble {
  max-width: min(720px, 88%);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.message-bubble.mine {
  justify-self: end;
  background: var(--teal-soft);
  border-color: #cbe4e1;
}

.message-bubble small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.message-bubble p {
  margin-bottom: 0;
}

.message-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
  margin-top: 1rem;
}

.compliance-edit {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 140px 150px auto;
  gap: 0.75rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.compliance-edit textarea {
  margin-top: 0.45rem;
}

.add-form {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(420px, 1.35fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.footer-brand-block {
  max-width: 520px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff4545, #f6aa16 52%, #48d6d9);
  color: #07111f;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  font-size: 0.76rem;
  font-weight: 950;
}

.footer-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.footer-signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
}

.footer-signal-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48d6d9;
  box-shadow: 0 0 0 5px rgba(72, 214, 217, 0.13);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.footer-nav strong {
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  font-weight: 750;
}

.footer-nav a {
  transition: color 160ms var(--ease), transform 160ms var(--ease);
}

.footer-nav a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.84rem;
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 5vw;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav form,
  .site-nav button,
  .site-nav a {
    width: 100%;
    text-align: left;
  }

  .nav-public-actions {
    display: grid;
    width: 100%;
    gap: 0.5rem;
    margin-left: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 12rem;
  }

  .metric-band,
  .split-section,
  .split-section.reverse,
  .form-section,
  .auth-page,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid.three,
  .metric-grid,
  .marketplace-grid,
  .media-grid,
  .campaign-brief,
  .statement-summary,
  .statement-meta {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .media-kit-hero,
  .media-kit-layout,
  .mk-hero,
  .mk-dossier,
  .mk-preview-hero,
  .mk-preview-grid,
  .mk-audience-inner,
  .mk-preview-cta {
    grid-template-columns: 1fr;
  }

  .mk-preview-hero {
    grid-template-rows: auto;
  }

  .mk-preview-photo {
    min-height: 420px;
    border-radius: 8px;
  }

  .mk-trusted-bar {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .mk-preview-summary {
    align-self: stretch;
  }

  .media-kit-kpis,
  .mk-factbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mk-hero {
    min-height: auto;
  }

  .mk-portrait-panel {
    min-height: 520px;
  }

  .mk-side-column {
    position: static;
  }

  .media-kit-panel--wide {
    grid-column: auto;
  }

  .span-2,
  .span-3 {
    grid-column: auto;
  }

  .auth-page {
    min-height: auto;
  }

  .dashboard-heading {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .footer-brand-block {
    max-width: 680px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: 90vw;
    padding: 8rem 0 4rem;
  }

  .actions,
  .task-row,
  .payout-row,
  .model-row,
  .lead-row,
  .compliance-row,
  .risk-row,
  .creator-match-card {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .feature-grid,
  .feature-grid.three,
  .metric-grid,
  .marketplace-grid,
  .media-grid,
  .campaign-brief,
  .deal-meta,
  .media-kit-kpis,
  .media-kit-platform-grid,
  .media-kit-value-grid,
  .media-kit-proof-grid,
  .media-kit-portfolio-grid,
  .mk-factbar,
  .mk-proof-notes,
  .mk-case-grid,
  .mk-channel-row,
  .mk-channel-row dl,
  .mk-score-row,
  .mk-summary-grid,
  .mk-proof-row,
  .mk-portfolio-row,
  .mk-market-strip,
  .mk-platform-head,
  .mk-platform-line,
  .statement-summary,
  .statement-meta,
  .two-col,
  .three-col,
  .four-col,
  .inline-form,
  .invite-form,
  .integration-form,
  .message-form,
  .compliance-edit {
    grid-template-columns: 1fr;
  }

  .media-kit-shell {
    width: min(100% - 1.5rem, 1180px);
    padding-top: 2rem;
  }

  .media-kit-identity {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .media-kit-identity::after {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .media-kit-platform-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-kit-bars div {
    grid-template-columns: 58px minmax(0, 1fr) 38px;
  }

  .media-kit-kpis strong {
    white-space: normal;
  }

  .mk-page {
    width: min(100% - 1.5rem, 1220px);
    padding-top: 2rem;
  }

  .mk-hero-copy {
    min-height: 560px;
    padding: 1.35rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 249, 0.92)),
      url("/assets/landing-creator-headshots.png") center bottom / 120% auto no-repeat;
  }

  .mk-hero h1 {
    margin-top: 8rem;
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .mk-hero-copy p {
    font-size: 1rem;
  }

  .mk-portrait-panel {
    min-height: 620px;
  }

  .mk-factbar article {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  }

  .mk-factbar article:last-child {
    border-bottom: 0;
  }

  .mk-factbar strong {
    white-space: normal;
  }

  .mk-channel-row {
    gap: 0.75rem;
  }

  .mk-preview-page {
    width: min(100% - 1.5rem, 1440px);
  }

  .mk-preview-intro {
    padding: 1rem 0;
  }

  .mk-preview-intro h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .mk-summary-grid article,
  .mk-summary-grid article:nth-child(3n),
  .mk-summary-grid article:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mk-summary-grid article:last-child {
    border-bottom: 0;
  }

  .mk-platform-head {
    display: none;
  }

  .mk-platform-line {
    padding: 1rem 0;
  }

  .mk-proof-row div {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 23, 41, 0.1);
  }

  .mk-proof-row div:last-child {
    border-bottom: 0;
  }

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

  .metric-band {
    grid-template-columns: 1fr;
  }

  .market-intro,
  .spotlight-grid,
  .deal-stage-grid,
  .quick-link-grid {
    grid-template-columns: 1fr;
  }

  .market-intro > div:first-child,
  .spotlight-panel.span-2 {
    grid-column: auto;
  }

  .deal-list-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .workspace-item {
    grid-template-columns: 1fr;
  }

  .workspace-item-side {
    justify-items: stretch;
  }

  .wizard-steps,
  .wizard-review-grid {
    grid-template-columns: 1fr;
  }

  .wizard-actions,
  .wizard-submit-group {
    justify-items: stretch;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-nav div {
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 2.2rem;
  }
}

@media print {
  .site-header,
  .ce-footer,
  .statement-actions {
    display: none;
  }

  body {
    background: #fff;
  }

  .statement-shell {
    width: 100%;
    padding: 0;
  }

  .panel,
  .statement-summary article,
  .statement-meta {
    box-shadow: none;
  }
}

/* --- Brand Dashboard Redesign --- */
body:has(.brand-shell) {
  --brand-bg: #f4f7fb;
  --brand-ink: #101827;
  --brand-muted: #657084;
  --brand-line: #dce5ef;
  --brand-soft: #edf7f8;
  --brand-teal: #009aa6;
  --brand-cyan: #55d5dc;
  --brand-coral: #ff5a5f;
  --brand-amber: #f5a623;
  --brand-green: #1fa971;
  --brand-violet: #6f61ff;
  --brand-plum: #3b256f;
  --brand-navy: #101827;
  --brand-sidebar: #111827;
  --brand-shadow: 0 24px 70px rgba(16, 24, 39, 0.12);
  --brand-shadow-soft: 0 12px 34px rgba(16, 24, 39, 0.08);
  background:
    radial-gradient(circle at 8% 4%, rgba(85, 213, 220, 0.28), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(255, 90, 95, 0.18), transparent 27rem),
    radial-gradient(circle at 54% 1%, rgba(111, 97, 255, 0.13), transparent 28rem),
    var(--brand-bg);
}

.brand-shell {
  width: min(1440px, 92vw);
  padding-top: 2rem;
}

.brand-shell .dashboard-heading {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr) auto;
  align-items: center;
  min-height: 330px;
  padding: clamp(1.45rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(245,249,255,0.86) 42%, rgba(244,238,255,0.72) 100%),
    radial-gradient(circle at 73% 18%, rgba(85, 213, 220, 0.32), transparent 18rem),
    radial-gradient(circle at 96% 0%, rgba(255, 90, 95, 0.22), transparent 18rem);
  box-shadow: var(--brand-shadow);
}

.brand-shell .dashboard-heading::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -7rem;
  width: 380px;
  height: 260px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(0,154,166,0.18), rgba(255,90,95,0.2)),
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,0.42) 18% 20%, transparent 20% 38%, rgba(255,255,255,0.36) 38% 40%, transparent 40%);
  transform: rotate(-10deg);
  pointer-events: none;
}

.brand-shell .dashboard-heading h1 {
  margin-bottom: 0.45rem;
  color: var(--brand-ink);
  font-size: clamp(2.65rem, 5.2vw, 5.65rem);
  line-height: 0.94;
}

.brand-shell .dashboard-heading p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--brand-muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.brand-shell .eyebrow {
  color: var(--brand-teal);
  letter-spacing: 0.12em;
}

.brand-shell .dashboard-subnav {
  gap: 0.5rem;
  padding: 0.35rem;
  border: 1px solid var(--brand-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--brand-shadow-soft);
  backdrop-filter: blur(16px);
}

.brand-shell .subnav-chip {
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.brand-shell .subnav-chip.active,
.brand-shell .subnav-chip:hover {
  background: var(--brand-sidebar);
  color: #fff;
}

.brand-shell .metric-card,
.brand-shell .panel,
.brand-shell .spotlight-panel,
.brand-shell .creator-card,
.brand-shell .filter-bar {
  border-color: var(--brand-line);
  border-radius: 16px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--brand-shadow-soft);
}

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

.brand-shell .metric-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,255,0.9)),
    radial-gradient(circle at 92% 12%, rgba(85,213,220,0.12), transparent 9rem);
}

.brand-shell .metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--brand-teal), var(--brand-cyan));
}

.brand-shell .metric-card:nth-child(2)::before {
  background: linear-gradient(180deg, var(--brand-green), var(--brand-teal));
}

.brand-shell .metric-card:nth-child(3)::before {
  background: linear-gradient(180deg, var(--brand-amber), var(--brand-coral));
}

.brand-shell .metric-card:nth-child(4)::before {
  background: linear-gradient(180deg, var(--brand-violet), var(--brand-cyan));
}

.brand-shell .metric-card span,
.brand-shell .metric-card small {
  color: var(--brand-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-shell .dashboard-grid,
.brand-shell .spotlight-grid {
  gap: 1rem;
}

.brand-shell .panel-header {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--brand-line);
}

.brand-shell .panel-header h2 {
  font-size: 1.32rem;
}

.brand-shell .stage-card,
.brand-shell .quick-link-card,
.brand-shell .market-intro-card,
.brand-shell .workspace-item,
.brand-shell .marketplace-block,
.brand-shell .creator-match-card,
.brand-shell .payout-row {
  border: 1px solid var(--brand-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.brand-shell .stage-card strong {
  color: var(--brand-ink);
}

.brand-shell .small-button,
.brand-shell .button,
.brand-shell .sub-submit {
  border-radius: 8px;
}

.brand-shell .small-button.primary,
.brand-shell .button.primary {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-cyan));
  color: #062023;
  box-shadow: 0 12px 26px rgba(0, 154, 166, 0.2);
}

.brand-shell .tag,
.brand-shell .status-pill {
  border-radius: 8px;
  background: rgba(0,154,166,0.1);
  color: #087985;
  text-transform: uppercase;
}

.brand-shell .tag.danger {
  background: rgba(255,90,95,0.1);
  color: #c8333e;
}

.brand-hero-media {
  position: relative;
  z-index: 1;
  min-height: 245px;
}

.brand-hero-photo {
  position: absolute;
  inset: 0 1.2rem 0 0;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(16,24,39,0.02), rgba(16,24,39,0.2)),
    url("/assets/landing-brand-photo.png") center / cover;
  box-shadow: 0 30px 70px rgba(16,24,39,0.2);
}

.brand-hero-card {
  position: absolute;
  display: grid;
  gap: 0.22rem;
  min-width: 165px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 48px rgba(16,24,39,0.16);
  backdrop-filter: blur(14px);
}

.brand-hero-card span,
.brand-hero-card small {
  color: var(--brand-muted);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-hero-card strong {
  color: var(--brand-ink);
  font-size: 1.05rem;
}

.brand-hero-card-main {
  left: -1.8rem;
  bottom: 1rem;
}

.brand-hero-card-accent {
  right: 0;
  top: 1.3rem;
  background: rgba(16,24,39,0.88);
}

.brand-hero-card-accent span,
.brand-hero-card-accent small {
  color: rgba(255,255,255,0.64);
}

.brand-hero-card-accent strong {
  color: #fff;
}

.brand-command-center {
  display: grid;
  scroll-margin-top: 6.5rem;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 1.2rem;
  margin: 1.35rem 0;
  padding: clamp(1rem, 2vw, 1.45rem);
  border: 1px solid var(--brand-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 8%, rgba(85,213,220,0.36), transparent 18rem),
    radial-gradient(circle at 18% 100%, rgba(255,90,95,0.22), transparent 17rem),
    linear-gradient(135deg, #101827, #201a3c 54%, #10333a);
  color: #fff;
  box-shadow: var(--brand-shadow);
}

.brand-command-copy h2 {
  margin: 0.2rem 0 0.65rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.brand-command-copy p {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.brand-command-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.brand-command-stats span {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.66);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-command-stats strong {
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: 0;
  text-transform: none;
}

.brand-command-center .eyebrow {
  color: var(--brand-cyan);
}

.brand-command-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.brand-command-flow article {
  min-height: 178px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.brand-command-flow span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, var(--brand-cyan));
  color: #062023;
  font-size: 0.72rem;
  font-weight: 950;
}

.brand-command-flow strong {
  display: block;
  margin: 0.85rem 0 0.35rem;
  color: #fff;
}

.brand-command-flow small {
  color: rgba(255,255,255,0.68);
}

.brand-build-grid {
  align-items: stretch;
}

.brand-campaign-builder {
  position: relative;
  scroll-margin-top: 6.5rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,252,255,0.93)),
    radial-gradient(circle at 100% 0%, rgba(111,97,255,0.11), transparent 18rem);
}

.brand-campaign-builder::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-cyan), var(--brand-amber), var(--brand-coral));
}

.brand-builder-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.brand-builder-preview {
  position: sticky;
  top: 6.25rem;
  display: grid;
  gap: 0.9rem;
}

.brand-builder-preview-photo {
  min-height: 290px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(16,24,39,0.02), rgba(16,24,39,0.34)),
    url("/assets/landing-brand-photo.png") center / cover;
  box-shadow: 0 24px 58px rgba(16,24,39,0.16);
}

.brand-builder-preview-card {
  padding: 1rem;
  border: 1px solid var(--brand-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 12%, rgba(85,213,220,0.2), transparent 9rem),
    #fff;
}

.brand-builder-preview-card span {
  color: var(--brand-teal);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-builder-preview-card strong {
  display: block;
  margin: 0.25rem 0;
  font-size: 1.22rem;
  line-height: 1.1;
}

.brand-builder-preview-card small {
  color: var(--brand-muted);
}

.brand-builder-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.brand-builder-status span {
  min-height: 28px;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-teal);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-profile-card {
  background:
    linear-gradient(180deg, #fff, #f8fcfd);
}

.brand-pipeline-panel .workspace-list {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.brand-pipeline-panel .workspace-item {
  grid-template-columns: 1fr;
  align-content: start;
  padding: 0.9rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #fff, #f9fbff);
}

.brand-pipeline-panel .workspace-item-side {
  justify-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.brand-pipeline-meta span {
  display: grid;
  gap: 0.14rem;
  min-width: 130px;
  padding: 0.62rem 0.7rem;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-discovery-panel {
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 6.5rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.96));
}

.brand-discovery-head {
  margin: 0;
  padding: 1.35rem 1.35rem 1.05rem;
  background:
    radial-gradient(circle at 86% 0%, rgba(85,213,220,0.28), transparent 16rem),
    linear-gradient(135deg, rgba(237,247,248,0.96), rgba(255,255,255,0.96));
}

.brand-discovery-head p {
  margin: 0.2rem 0 0;
  color: var(--brand-muted);
}

.brand-shortlist-stack {
  display: grid;
  gap: 1.2rem;
  padding: 1.15rem;
}

.brand-shortlist-board {
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--brand-shadow-soft);
}

.brand-shortlist-cover {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 260px;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(16,24,39,0.86), rgba(59,37,111,0.56), rgba(0,154,166,0.42)),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.24), transparent 12rem);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.brand-shortlist-cover--empty {
  background:
    linear-gradient(135deg, rgba(16,24,39,0.88), rgba(59,37,111,0.55), rgba(0,154,166,0.35)),
    url("/assets/landing-brand-photo.png") center / cover;
}

.brand-shortlist-cover > div:first-child {
  align-self: end;
  max-width: 720px;
}

.brand-shortlist-cover span {
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-shortlist-cover strong {
  display: block;
  margin: 0.3rem 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 0.98;
}

.brand-shortlist-cover p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.brand-shortlist-status {
  display: grid;
  align-content: center;
  justify-items: center;
  min-width: 128px;
  padding: 0.9rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.brand-shortlist-status .tag {
  background: rgba(255,255,255,0.86);
  color: #0b7280;
}

.brand-shortlist-status .tag.danger {
  background: rgba(255,255,255,0.9);
  color: #c8333e;
}

.brand-shortlist-status strong {
  margin: 0.45rem 0 0;
  font-size: 2rem;
}

.brand-shortlist-status small {
  color: rgba(255,255,255,0.74);
  font-weight: 850;
}

.brand-shortlist-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
  background: #f8fafc;
}

.brand-shortlist-rail span {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--brand-line);
  background: transparent;
  color: var(--brand-muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-shortlist-rail strong {
  color: var(--brand-ink);
  font-size: 0.92rem;
  text-transform: none;
}

.brand-shortlist-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  padding: 1.15rem;
}

.brand-match-card {
  position: relative;
  grid-template-columns: 1fr;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #fff, #fbfdff);
}

.brand-match-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-cyan), var(--brand-violet));
}

.brand-match-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.brand-match-head h3 {
  margin: 0;
}

.brand-match-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.brand-match-metrics span {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--brand-muted);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-match-metrics strong {
  color: var(--brand-ink);
  font-size: 0.84rem;
  text-transform: none;
}

.brand-match-actions {
  justify-content: flex-start;
  margin-top: 0.9rem;
}

.brand-cover-upload {
  position: relative;
  min-height: 220px;
  padding: 1.2rem;
  border: 1px dashed rgba(0,154,166,0.35);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(237,247,248,0.95), rgba(255,255,255,0.92)),
    radial-gradient(circle at 86% 18%, rgba(85,213,220,0.2), transparent 18rem);
  color: var(--brand-ink);
}

.brand-cover-upload input[type="file"] {
  margin: 0.4rem 0;
  max-width: 420px;
  background: #fff;
}

.brand-cover-upload > span {
  color: var(--brand-teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-cover-upload strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.35rem;
}

.brand-cover-upload small {
  color: var(--brand-muted);
}

.brand-cover-preview {
  margin-top: 0.9rem;
  aspect-ratio: 16 / 7;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(16,24,39,0.78), rgba(0,154,166,0.48)),
    linear-gradient(90deg, rgba(255,255,255,0.16) 0 14%, transparent 14% 28%, rgba(255,255,255,0.13) 28% 42%, transparent 42%);
  background-position: center;
  background-size: cover;
}

.brand-cover-preview.has-image {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}

/* Support Center */
.support-login-shell,
.support-public-shell {
  min-height: 100vh;
  padding: clamp(1.25rem, 3vw, 3rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(0,154,166,0.16), transparent 24rem),
    linear-gradient(135deg, #f7fbfc, #ffffff 45%, #edf7f8);
}

.support-login-card,
.support-hero,
.support-faq-section,
.support-pin-result {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 70px rgba(15,23,42,0.1);
}

.support-login-card {
  max-width: 520px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.support-hero h1 {
  margin: 0.4rem 0 0.8rem;
  color: #101827;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.support-hero p {
  max-width: 720px;
  color: #506174;
  font-size: 1.05rem;
  line-height: 1.7;
}

.support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.support-queue-preview {
  padding: 1.35rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255,91,126,0.28), transparent 12rem),
    linear-gradient(145deg, #101827, #164e63);
  color: #fff;
}

.support-queue-preview span,
.support-category-grid span {
  color: #00a8b5;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.support-queue-preview strong {
  display: block;
  margin: 0.4rem 0;
  font-size: 1.6rem;
}

.support-category-grid {
  max-width: 1120px;
  margin: 1rem auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.support-category-grid article {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
}

.support-category-grid small {
  display: block;
  margin-top: 0.4rem;
  color: #64748b;
}

.support-faq-section {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.support-faq-search {
  max-width: 320px;
}

.support-faq-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.support-faq-item {
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 16px;
  background: #f8fbfc;
}

.support-faq-item summary {
  cursor: pointer;
  padding: 1rem;
  list-style: none;
}

.support-faq-item summary span {
  display: block;
  color: #00a8b5;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-faq-item summary strong {
  display: block;
  margin-top: 0.25rem;
  color: #101827;
}

.support-faq-item div {
  padding: 0 1rem 1rem;
  color: #506174;
  line-height: 1.65;
}

.support-pin-result {
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.support-pin-result h1 {
  margin: 0.5rem 0;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.08em;
}

.support-widget {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
}

.support-widget-button {
  display: grid;
  gap: 0.1rem;
  min-width: 96px;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #101827, #00a8b5);
  color: #fff;
  box-shadow: 0 18px 44px rgba(15,23,42,0.25);
  cursor: pointer;
}

.support-widget-button strong {
  font-size: 1.2rem;
}

.support-widget-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.8rem);
  width: min(380px, calc(100vw - 2rem));
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.1);
  box-shadow: 0 24px 70px rgba(15,23,42,0.22);
}

.support-widget-panel[aria-hidden="true"] {
  display: none;
}

.support-widget-panel header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #101827, #164e63);
}

.support-widget-panel header button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.support-widget-content {
  padding: 1rem;
}

.support-widget-content label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  color: #334155;
  font-weight: 800;
}

.support-widget-thread,
.support-chat-thread {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  overflow: auto;
}

.support-widget-thread {
  max-height: 280px;
  margin: 0.8rem 0;
}

.support-widget-queue {
  padding: 0.7rem;
  border-radius: 14px;
  background: #edf7f8;
  color: #164e63;
  font-weight: 850;
}

.support-message {
  max-width: 82%;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: #eef2f7;
}

.support-message.model,
.support-message.partner {
  justify-self: end;
  background: #dff7f8;
}

.support-message.support {
  background: #101827;
  color: #fff;
}

.support-message.internal {
  background: #fff7ed;
  border: 1px dashed #f59e0b;
}

.support-message small {
  display: block;
  margin-bottom: 0.2rem;
  color: inherit;
  opacity: 0.65;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-message p {
  margin: 0;
  line-height: 1.5;
}

.support-inbox-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  background: #f4f8fb;
}

.support-inbox-sidebar {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  border-right: 1px solid rgba(15,23,42,0.08);
  background: #fff;
}

.support-inbox-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
}

.support-inbox-brand small {
  display: block;
  color: #64748b;
}

.support-inbox-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.support-inbox-tabs button,
.support-logout button {
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 14px;
  background: #f8fbfc;
  padding: 0.75rem;
  font-weight: 900;
  cursor: pointer;
}

.support-inbox-tabs button.active {
  background: #101827;
  color: #fff;
}

.support-chat-list,
.support-ticket-list {
  flex: 1;
  overflow: auto;
  padding: 0 0.8rem 1rem;
}

.support-chat-list-item,
.support-ticket-list article {
  width: 100%;
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
  padding: 0.9rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 16px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.support-chat-list-item.active {
  border-color: #00a8b5;
  box-shadow: 0 0 0 3px rgba(0,168,181,0.12);
}

.support-chat-list-item span,
.support-chat-list-item small,
.support-ticket-list span {
  color: #64748b;
  font-size: 0.82rem;
}

.support-logout {
  padding: 1rem;
}

.support-chat-workspace {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100vh;
}

.support-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.support-chat-header h1 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.support-chat-body {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1rem;
  padding: 1rem;
}

.support-chat-thread {
  min-height: 0;
  padding: 1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
}

.support-context-panel {
  overflow: auto;
  padding: 1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
}

.support-context-card {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
  padding: 0.85rem;
  border-radius: 14px;
  background: #f8fbfc;
}

.support-context-card span {
  color: #00a8b5;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.support-context-card.sensitive {
  background: #ecfdf5;
}

.support-mini-row {
  margin: 0.35rem 0;
  padding: 0.55rem;
  border-radius: 10px;
  background: #f8fbfc;
}

.support-reply-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.9rem;
  background: #fff;
  border-top: 1px solid rgba(15,23,42,0.08);
}

.support-reply-bar form {
  display: flex;
  gap: 0.5rem;
}

.support-reply-bar [data-support-reply] {
  flex: 1 1 340px;
}

.support-reply-bar input {
  min-width: 0;
}

@media (max-width: 880px) {
  .support-hero,
  .support-inbox-shell,
  .support-chat-body {
    grid-template-columns: 1fr;
  }

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

  .support-inbox-sidebar {
    min-height: 42vh;
    border-right: 0;
    border-bottom: 1px solid rgba(15,23,42,0.08);
  }

  .support-chat-workspace {
    min-height: 58vh;
  }

  .support-context-panel {
    max-height: 320px;
  }
}

@media (max-width: 560px) {
  .support-category-grid {
    grid-template-columns: 1fr;
  }

  .support-widget {
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .support-widget-button {
    min-width: 76px;
    padding: 0.65rem 0.75rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.22);
  }

  .support-widget-button strong {
    font-size: 1rem;
  }

  .support-widget-panel {
    width: min(360px, calc(100vw - 1.3rem));
  }

  .support-reply-bar,
  .support-reply-bar form {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.brand-campaign-cover {
  min-height: 220px;
  margin-bottom: 0.85rem;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

.brand-campaign-cover--empty {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(17,24,39,0.78), rgba(0,154,166,0.36)),
    url("/assets/landing-brand-photo.png") center / cover;
  color: rgba(255,255,255,0.86);
  font-weight: 900;
}

.brand-gallery-shell .filter-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-gallery-shell .creator-grid {
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.brand-gallery-shell .creator-card {
  position: relative;
  overflow: hidden;
}

.brand-gallery-shell .creator-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-cyan), var(--brand-amber));
}

.brand-register-form {
  overflow: hidden;
}

.brand-register-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.brand-register-steps button {
  min-height: 44px;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: #fff;
  color: var(--landing-muted);
  font-weight: 900;
  cursor: pointer;
}

.brand-register-steps button.active {
  border-color: transparent;
  background: #07111f;
  color: #fff;
}

.brand-register-panel {
  display: none;
  gap: 1rem;
}

.brand-register-panel.active {
  display: grid;
}

.brand-register-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}

.brand-legal-choice,
.brand-contract-preview,
.brand-signature-card {
  padding: 1.2rem;
  border: 1px solid var(--landing-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--landing-shadow-soft);
}

.brand-contract-preview {
  display: grid;
  gap: 1rem;
}

.brand-contract-document {
  max-height: 440px;
  overflow: auto;
  padding: 1.25rem;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: #fbfdff;
  color: #1f2937;
}

.brand-contract-document h4 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.signature-canvas {
  width: 100%;
  min-height: 180px;
  border: 1px dashed rgba(5,155,164,0.5);
  border-radius: 10px;
  background:
    linear-gradient(180deg, #fff, #fbfdff),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(223,232,241,0.7) 38px 39px);
  touch-action: none;
}

@media (max-width: 920px) {
  .brand-shell .dashboard-heading {
    grid-template-columns: 1fr;
  }

  .brand-hero-media {
    min-height: 280px;
    order: 2;
  }

  .brand-shell .dashboard-heading .dashboard-actions {
    order: 3;
    justify-content: flex-start;
  }

  .brand-shell .metric-grid,
  .brand-gallery-shell .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-command-center,
  .brand-builder-layout,
  .brand-pipeline-panel .workspace-item-side {
    grid-template-columns: 1fr;
  }

  .brand-builder-preview {
    position: static;
    grid-template-columns: minmax(0, 0.8fr) minmax(220px, 0.6fr);
  }

  .brand-command-flow,
  .brand-shortlist-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .brand-shell {
    width: 92vw;
  }

  .brand-shell .dashboard-heading {
    min-height: 0;
    border-radius: 18px;
  }

  .brand-hero-media {
    min-height: 240px;
  }

  .brand-hero-photo {
    inset: 0;
  }

  .brand-hero-card-main {
    left: 0.65rem;
    bottom: 0.65rem;
  }

  .brand-hero-card-accent {
    right: 0.65rem;
    top: 0.65rem;
  }

  .brand-shell .metric-grid,
  .brand-gallery-shell .filter-bar,
  .brand-register-steps,
  .brand-command-flow,
  .brand-shortlist-rail,
  .brand-match-metrics,
  .brand-command-stats,
  .brand-builder-preview {
    grid-template-columns: 1fr;
  }

  .brand-pipeline-panel .workspace-list,
  .brand-shortlist-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-pipeline-panel .workspace-item {
    width: 100%;
    min-width: 0;
  }

  .brand-shortlist-cover {
    display: grid;
    min-height: 250px;
  }

  .brand-register-actions {
    display: grid;
  }
}

/* --- Admin Backend Redesign --- */
body:has(.admin-shell),
body:has(.admin-auth-page) {
  --admin-bg: #f4f7fb;
  --admin-surface: #ffffff;
  --admin-sidebar: #101622;
  --admin-sidebar-2: #171f2d;
  --admin-ink: #101522;
  --admin-muted: #667085;
  --admin-line: #dfe6ef;
  --admin-line-soft: #edf2f7;
  --admin-coral: #ff4d55;
  --admin-teal: #00a9b5;
  --admin-cyan: #4ed6da;
  --admin-amber: #f4a82b;
  --admin-violet: #6f5cff;
  --admin-green: #20a66a;
  --admin-shadow: 0 18px 50px rgba(16, 21, 34, 0.08);
  --admin-shadow-soft: 0 8px 24px rgba(16, 21, 34, 0.06);
  background:
    linear-gradient(180deg, rgba(78, 214, 218, 0.09), transparent 22rem),
    var(--admin-bg);
  color: var(--admin-ink);
}

body:has(.admin-shell) {
  overflow-x: hidden;
}

body:has(.admin-shell) .site-header.admin-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  width: 276px;
  min-height: 100vh;
  padding: 1.15rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(78, 214, 218, 0.24), transparent 17rem),
    linear-gradient(180deg, var(--admin-sidebar) 0%, var(--admin-sidebar-2) 100%);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 20px 0 50px rgba(16, 21, 34, 0.16);
  backdrop-filter: none;
}

body:has(.admin-shell) .admin-header .brand {
  width: 100%;
  min-height: 56px;
  padding: 0.5rem;
  border-radius: 12px;
  color: #fff;
}

body:has(.admin-shell) .admin-header .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--admin-coral), var(--admin-amber) 48%, var(--admin-cyan));
  color: #101622;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

body:has(.admin-shell) .admin-header .site-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
  gap: 0.25rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.68);
}

.admin-nav-label {
  margin: 0.4rem 0 0.55rem;
  padding: 0 0.7rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body:has(.admin-shell) .admin-header .site-nav a,
body:has(.admin-shell) .admin-header .site-nav .link-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  width: 100%;
  min-height: 44px;
  padding: 0.68rem 0.75rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

body:has(.admin-shell) .admin-header .site-nav a[data-admin-icon]::before {
  content: attr(data-admin-icon);
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 950;
}

body:has(.admin-shell) .admin-header .site-nav a:hover,
body:has(.admin-shell) .admin-header .site-nav .link-button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body:has(.admin-shell) .admin-header .site-nav a.active {
  background: #fff;
  color: #111827;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

body:has(.admin-shell) .admin-header .site-nav a.active::before {
  background: linear-gradient(135deg, var(--admin-coral), var(--admin-amber));
  color: #111827;
}

body:has(.admin-shell) .admin-header .site-nav form {
  margin-top: auto;
  padding-top: 1rem;
}

.admin-shell {
  width: calc(100% - 276px);
  max-width: 1600px;
  margin: 0 0 0 276px;
  padding: 1.35rem clamp(1.25rem, 2vw, 2rem) 3rem;
}

.admin-shell::before {
  content: "Command Center";
  display: flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: 1.15rem;
  padding: 0 1rem;
  border: 1px solid var(--admin-line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--admin-muted);
  box-shadow: var(--admin-shadow-soft);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.admin-shell .dashboard-heading {
  position: relative;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--admin-line-soft);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.92)),
    radial-gradient(circle at 85% 0%, rgba(78, 214, 218, 0.2), transparent 18rem);
  box-shadow: var(--admin-shadow);
}

.admin-shell .dashboard-heading h1 {
  margin-bottom: 0.4rem;
  color: var(--admin-ink);
  font-size: clamp(1.75rem, 2.6vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.admin-shell .dashboard-heading p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--admin-muted);
  font-size: 0.98rem;
}

.admin-shell .eyebrow {
  color: var(--admin-teal);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.admin-shell .dashboard-actions {
  align-items: center;
}

.admin-shell .dashboard-subnav {
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.35rem;
  border: 1px solid var(--admin-line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-shell .subnav-chip {
  min-height: 36px;
  border-radius: 8px;
  border-color: transparent;
  background: transparent;
  color: var(--admin-muted);
  font-size: 0.84rem;
}

.admin-shell .subnav-chip.active,
.admin-shell .subnav-chip:hover {
  background: var(--admin-sidebar);
  color: #fff;
}

.admin-shell .metric-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.admin-shell .metric-card,
.admin-shell .panel,
.admin-shell .spotlight-panel,
.admin-shell .quick-link-card,
.admin-shell .stage-card,
.admin-shell .deal-list-item {
  border: 1px solid var(--admin-line-soft);
  border-radius: 10px;
  background: var(--admin-surface);
  box-shadow: var(--admin-shadow-soft);
}

.admin-shell .metric-card {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  padding: 1.05rem;
}

.admin-shell .metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--admin-teal), var(--admin-cyan));
}

.admin-shell .metric-card:nth-child(2)::before {
  background: linear-gradient(180deg, var(--admin-violet), var(--admin-cyan));
}

.admin-shell .metric-card:nth-child(3)::before {
  background: linear-gradient(180deg, var(--admin-amber), var(--admin-coral));
}

.admin-shell .metric-card:nth-child(4)::before,
.admin-shell .metric-card:nth-child(5)::before {
  background: linear-gradient(180deg, var(--admin-green), var(--admin-teal));
}

.admin-shell .metric-card span,
.admin-shell .metric-card small {
  color: var(--admin-muted);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-shell .metric-card strong {
  margin: 0.55rem 0 0.35rem;
  color: var(--admin-ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.admin-shell .dashboard-grid,
.admin-shell .spotlight-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.admin-shell .spotlight-grid {
  margin: 1rem 0;
}

.admin-shell .dashboard-grid > .panel,
.admin-shell .spotlight-grid > .spotlight-panel {
  grid-column: span 4;
}

.admin-shell .dashboard-grid > .span-2,
.admin-shell .spotlight-grid > .span-2 {
  grid-column: span 8;
}

.admin-shell .dashboard-grid > .span-3,
.admin-shell .spotlight-grid > .span-3 {
  grid-column: span 12;
}

.admin-shell .panel,
.admin-shell .spotlight-panel {
  padding: 1.1rem;
}

.admin-shell .panel-header {
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--admin-line-soft);
}

.admin-shell .panel-header h2 {
  color: var(--admin-ink);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.admin-shell .stage-card,
.admin-shell .quick-link-card,
.admin-shell .deal-list-item,
.admin-shell .workspace-item,
.admin-shell .task-row,
.admin-shell .payout-row,
.admin-shell .model-row,
.admin-shell .lead-row,
.admin-shell .compliance-row,
.admin-shell .risk-row,
.admin-shell .marketplace-block,
.admin-shell .creator-match-card,
.admin-shell .deliverable-box,
.admin-shell .deliverable-list,
.admin-shell .deliverable-item {
  border: 1px solid var(--admin-line-soft);
  border-radius: 9px;
  background: #f8fafc;
  box-shadow: none;
}

.admin-shell .task-row,
.admin-shell .payout-row,
.admin-shell .model-row,
.admin-shell .lead-row,
.admin-shell .compliance-row,
.admin-shell .risk-row {
  flex-wrap: wrap;
}

.admin-shell .task-row > *,
.admin-shell .payout-row > *,
.admin-shell .model-row > *,
.admin-shell .lead-row > *,
.admin-shell .compliance-row > *,
.admin-shell .risk-row > * {
  min-width: 0;
}

.admin-shell .mini-form {
  min-width: 0;
}

.admin-shell .workspace-item {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  padding: 0.9rem;
}

.admin-shell .workspace-meta {
  gap: 0.45rem;
}

.admin-shell .workspace-meta span,
.admin-shell .workspace-meta a {
  min-height: 30px;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: #fff;
  color: var(--admin-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-shell .deal-stage-grid,
.admin-shell .quick-link-grid {
  gap: 0.75rem;
}

.admin-shell .stage-card strong {
  color: var(--admin-ink);
  font-size: 1.55rem;
}

.admin-shell .status-pill,
.admin-shell .tag,
.admin-shell .done-label {
  min-height: 28px;
  border-radius: 8px;
  padding: 0.32rem 0.58rem;
  background: rgba(0, 169, 181, 0.1);
  color: #087985;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-shell .tag.light,
.admin-shell .small-button.light {
  background: #fff;
  color: var(--admin-ink);
  box-shadow: inset 0 0 0 1px var(--admin-line);
}

.admin-shell .tag.danger {
  background: rgba(255, 77, 85, 0.1);
  color: #c92b37;
}

.admin-shell .tag.primary {
  background: rgba(111, 92, 255, 0.1);
  color: var(--admin-violet);
}

.admin-shell .done-label {
  background: rgba(32, 166, 106, 0.12);
  color: var(--admin-green);
}

.admin-shell .button,
.admin-shell .small-button,
.admin-shell .icon-action {
  border-radius: 8px;
  font-weight: 900;
}

.admin-shell .button.primary,
.admin-shell .small-button.primary {
  background: linear-gradient(135deg, var(--admin-coral), var(--admin-amber));
  color: #111827;
  box-shadow: 0 12px 26px rgba(255, 77, 85, 0.18);
}

.admin-shell .small-button,
.admin-shell .icon-action {
  background: var(--admin-sidebar);
  color: #fff;
}

.admin-shell input,
.admin-shell textarea,
.admin-shell select {
  min-height: 40px;
  border-color: var(--admin-line);
  border-radius: 8px;
  background: #fff;
  color: var(--admin-ink);
  padding: 0.64rem 0.72rem;
  font-size: 0.88rem;
}

.admin-shell textarea {
  min-height: 88px;
}

.admin-shell label {
  color: var(--admin-muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.admin-shell input:focus,
.admin-shell textarea:focus,
.admin-shell select:focus {
  border-color: var(--admin-teal);
  box-shadow: 0 0 0 3px rgba(0, 169, 181, 0.14);
}

.admin-shell .dashboard-form {
  gap: 0.85rem;
}

.admin-shell .two-col,
.admin-shell .three-col,
.admin-shell .four-col {
  gap: 0.75rem;
}

.admin-shell .inline-form {
  align-items: end;
  grid-template-columns: minmax(120px, 0.9fr) minmax(140px, 1fr) auto;
}

.admin-shell .integration-form {
  grid-template-columns: minmax(140px, 1fr) 105px minmax(130px, 1fr) minmax(130px, 1fr) minmax(140px, 1fr) auto;
}

.admin-shell .table-wrap {
  position: relative;
  border-color: var(--admin-line-soft);
  border-radius: 10px;
  background: #fff;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  contain: paint;
}

.admin-shell table {
  min-width: 880px;
}

.admin-shell th,
.admin-shell td {
  border-bottom-color: var(--admin-line-soft);
  padding: 0.78rem 0.85rem;
}

.admin-shell th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fafc;
  color: var(--admin-muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.admin-shell td {
  color: #283244;
  font-size: 0.88rem;
}

.admin-shell tbody tr:hover {
  background: rgba(0, 169, 181, 0.045);
}

.admin-shell code {
  border-color: var(--admin-line);
  background: #f8fafc;
  color: #344054;
  font-size: 0.78rem;
}

.admin-shell td code {
  display: inline-block;
  max-width: min(520px, 70vw);
  white-space: normal;
  overflow-wrap: anywhere;
}

.admin-shell .risk-row {
  border-left: 4px solid var(--admin-teal);
}

.admin-shell .risk-row.warning {
  border-left-color: var(--admin-amber);
}

.admin-shell .risk-row.critical {
  border-left-color: var(--admin-coral);
}

.admin-shell .ops-facts div {
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  padding: 0.6rem 0;
  border-bottom-color: var(--admin-line-soft);
}

.admin-shell .ops-facts span {
  color: var(--admin-muted);
  font-size: 0.68rem;
}

.admin-auth-page {
  width: min(1120px, 90vw);
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(2rem, 6vw, 5rem);
  padding: 4rem 0;
}

.admin-auth-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 12%, rgba(78, 214, 218, 0.24), transparent 22rem),
    radial-gradient(circle at 88% 18%, rgba(255, 77, 85, 0.16), transparent 24rem),
    linear-gradient(135deg, #f4f7fb, #ffffff 52%, #eef4f8);
}

.admin-auth-page .auth-copy {
  padding: 2rem 0;
}

.admin-auth-page .auth-copy h1 {
  max-width: 760px;
  color: var(--admin-ink);
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
}

.admin-auth-page .auth-copy p {
  max-width: 620px;
  color: var(--admin-muted);
  font-size: 1.05rem;
}

.admin-auth-page .auth-card {
  border-color: var(--admin-line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--admin-shadow);
  backdrop-filter: blur(18px);
}

.admin-auth-page .mini-grid span {
  border-color: var(--admin-line);
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 1180px) {
  body:has(.admin-shell) {
    padding-left: 0;
  }

  body:has(.admin-shell) .site-header.admin-header {
    position: sticky;
    inset: auto;
    display: flex;
    width: auto;
    min-height: 72px;
    padding: 0 5vw;
    border-right: 0;
    border-bottom: 1px solid var(--admin-line-soft);
    background: rgba(255, 255, 255, 0.9);
    color: var(--admin-ink);
    box-shadow: var(--admin-shadow-soft);
    backdrop-filter: blur(18px);
  }

  body:has(.admin-shell) .admin-header .brand {
    width: auto;
    color: var(--admin-ink);
  }

  body:has(.admin-shell) .admin-header .site-nav {
    flex-direction: row;
    width: auto;
    margin-top: 0;
    color: var(--admin-muted);
  }

  body:has(.admin-shell) .admin-header .site-nav a,
  body:has(.admin-shell) .admin-header .site-nav .link-button {
    width: auto;
    color: var(--admin-muted);
  }

  body:has(.admin-shell) .admin-header .site-nav a[data-admin-icon]::before,
  .admin-nav-label {
    display: none;
  }

  body:has(.admin-shell) .admin-header .site-nav a.active {
    background: var(--admin-sidebar);
    color: #fff;
  }

  .admin-shell {
    width: min(1180px, 90vw);
    margin: 0 auto;
  }

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

  .admin-shell .dashboard-grid > .panel,
  .admin-shell .spotlight-grid > .spotlight-panel,
  .admin-shell .dashboard-grid > .span-2,
  .admin-shell .spotlight-grid > .span-2 {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  body:has(.admin-shell) .site-header.admin-header {
    position: sticky;
  }

  body:has(.admin-shell) .admin-header .nav-toggle {
    display: inline-block;
  }

  body:has(.admin-shell) .admin-header .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    padding: 0.85rem 5vw;
    border-bottom: 1px solid var(--admin-line-soft);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--admin-shadow-soft);
  }

  body:has(.admin-shell) .admin-header .site-nav.open {
    display: flex;
  }

  body:has(.admin-shell) .admin-header .site-nav a,
  body:has(.admin-shell) .admin-header .site-nav .link-button {
    width: 100%;
    color: var(--admin-muted);
  }

  .admin-shell {
    width: 92vw;
    padding: 1rem 0 2.5rem;
  }

  .admin-shell::before {
    min-height: 40px;
    font-size: 0.7rem;
  }

  .admin-shell .dashboard-heading,
  .admin-shell .panel-header,
  .admin-shell .workspace-item,
  .admin-shell .dashboard-heading .dashboard-actions {
    display: grid;
  }

  .admin-shell .dashboard-heading {
    gap: 1rem;
    padding: 1rem;
  }

  .admin-shell .metric-grid,
  .admin-shell .deal-stage-grid,
  .admin-shell .quick-link-grid,
  .admin-shell .two-col,
  .admin-shell .three-col,
  .admin-shell .four-col,
  .admin-auth-page {
    grid-template-columns: 1fr;
  }

  .admin-shell .dashboard-grid,
  .admin-shell .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .admin-shell .dashboard-grid > .panel,
  .admin-shell .spotlight-grid > .spotlight-panel,
  .admin-shell .dashboard-grid > .span-2,
  .admin-shell .spotlight-grid > .span-2,
  .admin-shell .dashboard-grid > .span-3,
  .admin-shell .spotlight-grid > .span-3 {
    grid-column: auto;
  }

  .admin-shell .inline-form,
  .admin-shell .integration-form,
  .admin-shell .invite-form {
    grid-template-columns: 1fr;
  }

  .admin-shell table,
  .admin-shell thead,
  .admin-shell tbody,
  .admin-shell tr,
  .admin-shell th,
  .admin-shell td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .admin-shell table {
    min-width: 0;
  }

  .admin-shell thead {
    display: none;
  }

  .admin-shell tr {
    padding: 0.8rem;
    border-bottom: 1px solid var(--admin-line-soft);
  }

  .admin-shell td {
    padding: 0.55rem 0;
    border-bottom: 0;
  }

  .admin-shell td + td {
    border-top: 1px solid var(--admin-line-soft);
  }

  .admin-auth-page {
    min-height: auto;
    padding: 3rem 0;
  }
}

/* --- Creator Dashboard Redesign --- */
body:has(.creator-shell) {
  --creator-bg: #f5f7fb;
  --creator-ink: #101827;
  --creator-muted: #647084;
  --creator-line: #dfe7f1;
  --creator-soft: #f1f6fb;
  --creator-coral: #ff4d62;
  --creator-cyan: #43d6da;
  --creator-lime: #b8f15a;
  --creator-violet: #7657ff;
  --creator-amber: #f5a623;
  --creator-navy: #101827;
  --creator-shadow: 0 24px 70px rgba(16, 24, 39, 0.12);
  --creator-shadow-soft: 0 12px 34px rgba(16, 24, 39, 0.08);
  background:
    radial-gradient(circle at 8% 4%, rgba(67, 214, 218, 0.22), transparent 30rem),
    radial-gradient(circle at 90% 6%, rgba(255, 77, 98, 0.17), transparent 28rem),
    radial-gradient(circle at 58% 0%, rgba(118, 87, 255, 0.13), transparent 27rem),
    var(--creator-bg);
  color: var(--creator-ink);
}

.creator-shell {
  width: min(1440px, 92vw);
  padding-top: 2rem;
}

.creator-shell .dashboard-heading {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.66);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(246,249,255,0.86) 52%, rgba(238,248,250,0.72)),
    radial-gradient(circle at 82% 10%, rgba(67,214,218,0.28), transparent 18rem);
  box-shadow: var(--creator-shadow);
}

.creator-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 2rem;
  align-items: center;
  min-height: 350px;
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.creator-hero-copy {
  position: relative;
  z-index: 2;
  align-items: center;
  grid-column: 1;
  grid-row: 1;
  max-width: 650px;
}

.creator-shell .dashboard-heading h1 {
  max-width: 620px;
  color: var(--creator-ink);
  font-size: clamp(2.2rem, 4.25vw, 4.55rem);
  line-height: 0.98;
}

.creator-shell .dashboard-heading p {
  max-width: 600px;
  color: var(--creator-muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.creator-shell .eyebrow {
  color: var(--creator-coral);
  letter-spacing: 0.13em;
}

.creator-shell .avatar.xl {
  width: 96px;
  height: 96px;
  border: 4px solid #fff;
  box-shadow: 0 18px 45px rgba(16,24,39,0.18);
}

.creator-hero-stage {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: 420px;
  min-height: 260px;
}

.creator-hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 390px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(16,24,39,0.02), rgba(16,24,39,0.2)),
    url("/assets/creator-studio-hero.png") center / cover;
  box-shadow: 0 30px 75px rgba(16,24,39,0.22);
}

.creator-float-card {
  position: absolute;
  display: grid;
  gap: 0.22rem;
  min-width: 168px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 20px 50px rgba(16,24,39,0.18);
  backdrop-filter: blur(16px);
}

.creator-float-card span,
.creator-float-card small {
  color: var(--creator-muted);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.creator-float-card strong {
  color: var(--creator-ink);
  font-size: 1.08rem;
}

.creator-float-card-main {
  left: -0.65rem;
  bottom: 1rem;
}

.creator-float-card-wallet {
  right: 0;
  top: 1.1rem;
  background: rgba(16,24,39,0.9);
}

.creator-float-card-wallet span,
.creator-float-card-wallet small {
  color: rgba(255,255,255,0.66);
}

.creator-float-card-wallet strong {
  color: #fff;
}

.creator-shell .dashboard-actions {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 2;
  justify-content: flex-start;
  align-self: end;
  padding-top: 0.2rem;
}

.creator-hero .dashboard-actions .small-button,
.creator-hero .dashboard-actions .status-pill {
  min-height: 42px;
}

.creator-shell .dashboard-subnav,
.creator-studio-nav {
  border: 1px solid var(--creator-line);
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--creator-shadow-soft);
  backdrop-filter: blur(16px);
}

.creator-shell .dashboard-subnav {
  gap: 0.45rem;
  padding: 0.4rem;
}

.creator-shell .subnav-chip {
  border: 0;
  border-radius: 11px;
  background: transparent;
}

.creator-shell .subnav-chip.active,
.creator-shell .subnav-chip:hover {
  background: var(--creator-navy);
  color: #fff;
}

.creator-studio-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 1.1rem 0;
}

.creator-studio-nav a {
  display: grid;
  gap: 0.22rem;
  min-height: 86px;
  padding: 1rem;
  background: rgba(255,255,255,0.7);
}

.creator-studio-nav span {
  color: var(--creator-muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.creator-studio-nav strong {
  color: var(--creator-ink);
  font-size: 0.95rem;
}

.creator-shell .metric-card,
.creator-shell .panel,
.creator-shell .spotlight-panel,
.creator-shell .deal-card,
.creator-shell .filter-bar {
  border-color: var(--creator-line);
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--creator-shadow-soft);
}

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

.creator-shell .metric-card {
  position: relative;
  overflow: hidden;
  min-height: 146px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,251,255,0.92)),
    radial-gradient(circle at 90% 12%, rgba(67,214,218,0.12), transparent 9rem);
}

.creator-shell .metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--creator-coral), var(--creator-amber));
}

.creator-shell .metric-card:nth-child(2n)::before {
  background: linear-gradient(180deg, var(--creator-cyan), var(--creator-violet));
}

.creator-shell .metric-card:nth-child(3n)::before {
  background: linear-gradient(180deg, var(--creator-lime), var(--creator-cyan));
}

.creator-shell .metric-card span,
.creator-shell .metric-card small {
  color: var(--creator-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.creator-shell .small-button,
.creator-shell .button {
  border-radius: 10px;
}

.creator-shell .small-button.primary,
.creator-shell .button.primary,
.creator-shell .small-button:not(.light) {
  background: linear-gradient(135deg, var(--creator-coral), var(--creator-amber));
  color: #231104;
  box-shadow: 0 14px 28px rgba(255,77,98,0.2);
}

.creator-shell .tag,
.creator-shell .status-pill,
.creator-shell .done-label {
  border-radius: 10px;
  background: rgba(67,214,218,0.12);
  color: #087985;
  text-transform: uppercase;
}

.creator-shell .tag.danger {
  background: rgba(255,77,98,0.1);
  color: #c8334d;
}

.creator-deal-command {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(184,241,90,0.22), transparent 17rem),
    linear-gradient(135deg, #101827, #241d47 56%, #102f34) !important;
  color: #fff;
}

.creator-deal-command h2,
.creator-deal-command strong {
  color: #fff;
}

.creator-deal-command p,
.creator-deal-command small {
  color: rgba(255,255,255,0.7);
}

.creator-deal-command .panel-header {
  border-bottom-color: rgba(255,255,255,0.13);
}

.creator-deal-command .stage-card,
.creator-deal-list .deal-list-item {
  border-color: rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.09);
  color: #fff;
}

.creator-readiness-panel,
.creator-profile-panel,
.creator-wallet-panel,
.creator-campaign-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,251,255,0.94)),
    radial-gradient(circle at 100% 0%, rgba(118,87,255,0.1), transparent 16rem);
}

.creator-workspace-head {
  margin-top: 1.4rem;
}

.creator-dashboard-grid {
  align-items: stretch;
}

.creator-shell .workspace-item,
.creator-shell .payout-row,
.creator-shell .model-row,
.creator-shell .agreement-card,
.creator-shell .compliance-row,
.creator-shell .task-row {
  border: 1px solid var(--creator-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}

.creator-marketplace-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.creator-deal-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
}

.creator-deal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--creator-coral), var(--creator-amber), var(--creator-cyan), var(--creator-violet));
}

.creator-deal-card .brief-box,
.creator-shell .deliverable-box,
.creator-shell .deliverable-list,
.creator-signature-card {
  border: 1px solid var(--creator-line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #fff, #fbfdff);
}

.creator-contract-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.creator-contract-grid .agreement-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 100%;
  padding: 1rem;
}

.creator-signature-card {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
}

.creator-signature-card.compact {
  padding: 0.7rem;
}

.creator-signature-card strong {
  font-size: 0.95rem;
}

.creator-signature-card small {
  color: var(--creator-muted);
  font-size: 0.8rem;
}

.creator-shell .signature-canvas {
  min-height: 150px;
  border-color: rgba(255,77,98,0.38);
  background:
    linear-gradient(180deg, #fff, #fbfdff),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(223,232,241,0.75) 34px 35px);
}

.creator-subpage-shell .dashboard-heading {
  display: flex;
  align-items: center;
  min-height: 220px;
  padding: clamp(1.35rem, 3vw, 2.15rem);
}

.creator-subpage-shell .dashboard-heading::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -6rem;
  width: 360px;
  height: 230px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,77,98,0.16), rgba(67,214,218,0.2)),
    url("/assets/landing-creator-headshots.png") center / cover;
  opacity: 0.68;
  transform: rotate(-9deg);
}

.creator-subpage-shell .dashboard-heading > * {
  position: relative;
  z-index: 1;
}

.creator-shell .table-wrap {
  border-radius: 16px;
  border: 1px solid var(--creator-line);
  background: #fff;
}

.creator-shell table th {
  color: var(--creator-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .creator-shell .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .creator-shell .table-wrap table,
  .creator-shell .table-wrap thead,
  .creator-shell .table-wrap tbody,
  .creator-shell .table-wrap tr,
  .creator-shell .table-wrap td {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .creator-shell .table-wrap thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .creator-shell .table-wrap tr {
    margin: 0 0 0.85rem;
    padding: 0.85rem;
    border: 1px solid var(--creator-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .creator-shell .table-wrap td {
    display: grid;
    grid-template-columns: minmax(6.8rem, 38%) minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(20, 36, 64, 0.08);
    overflow-wrap: anywhere;
  }

  .creator-shell .table-wrap td:last-child {
    border-bottom: 0;
  }

  .creator-shell .table-wrap td::before {
    content: attr(data-label);
    color: var(--creator-muted);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .creator-shell .table-wrap td[colspan] {
    display: block;
  }

  .creator-shell .table-wrap td[colspan]::before {
    content: "";
    display: none;
  }
}

@media (max-width: 1080px) {
  .creator-hero {
    grid-template-columns: 1fr;
  }

  .creator-hero-stage {
    min-height: 285px;
    order: 2;
  }

  .creator-hero .dashboard-actions {
    order: 3;
    justify-content: flex-start;
    grid-column: auto;
    grid-row: auto;
  }

  .creator-studio-nav,
  .creator-metric-grid,
  .creator-shell .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .creator-shell {
    width: 92vw;
  }

  .creator-shell .dashboard-heading {
    border-radius: 18px;
  }

  .creator-hero {
    min-height: 0;
  }

  .creator-hero-stage {
    min-height: 245px;
  }

  .creator-hero-photo {
    inset: 0;
  }

  .creator-float-card-main {
    left: 0.65rem;
    bottom: 0.65rem;
  }

  .creator-float-card-wallet {
    right: 0.65rem;
    top: 0.65rem;
  }

  .creator-studio-nav,
  .creator-metric-grid,
  .creator-shell .metric-grid,
  .creator-marketplace-grid,
  .creator-contract-grid {
    grid-template-columns: 1fr;
  }

  .creator-subpage-shell .dashboard-heading::after {
    opacity: 0.25;
  }
}

/* --- Creator Studio Preview Alignment --- */
body:has(.creator-shell) {
  background: #eef3f8;
}

body:has(.creator-shell) .site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 264px;
  padding: 1.25rem;
  border: 0;
  background:
    linear-gradient(180deg, rgba(10, 17, 31, 0.98), rgba(13, 25, 43, 0.96)),
    radial-gradient(circle at 30% 10%, rgba(67, 214, 218, 0.22), transparent 14rem);
  box-shadow: 18px 0 60px rgba(15, 23, 42, 0.18);
}

body:has(.creator-shell) .brand {
  justify-content: flex-start;
  gap: 0.85rem;
  padding: 0.6rem 0.35rem 1.45rem;
  color: #fff;
}

body:has(.creator-shell) .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff5f72, #ffc65a);
  color: #101827;
  box-shadow: 0 12px 30px rgba(255, 95, 114, 0.28);
}

body:has(.creator-shell) .nav-toggle {
  display: none;
}

body:has(.creator-shell) .site-nav {
  display: flex !important;
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body:has(.creator-shell) .site-nav a,
body:has(.creator-shell) .site-nav .link-button {
  justify-content: flex-start;
  width: 100%;
  min-height: 44px;
  padding: 0.72rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

body:has(.creator-shell) .site-nav a:hover,
body:has(.creator-shell) .site-nav a.active {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

body:has(.creator-shell) .site-nav form {
  margin-top: auto;
}

.creator-studio-shell {
  width: calc(100% - 264px);
  max-width: none;
  margin-left: 264px;
  padding: 1.65rem clamp(1.2rem, 2.2vw, 2.4rem) 3rem;
}

.creator-studio-shell > .dashboard-heading.creator-hero,
.creator-studio-shell > .dashboard-subnav,
.creator-studio-shell > .creator-studio-nav,
.creator-studio-shell > .creator-metric-grid,
.creator-studio-shell > .creator-spotlight-grid {
  display: none;
}

.creator-studio-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.creator-studio-topbar h1 {
  margin: 0.1rem 0 0;
  color: #101827;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1;
}

.creator-top-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.creator-upload-button,
.creator-icon-button,
.creator-avatar-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 13px;
  font-weight: 900;
}

.creator-upload-button {
  padding: 0 1rem;
  background: #101827;
  color: #fff;
  box-shadow: 0 12px 26px rgba(16, 24, 39, 0.18);
}

.creator-icon-button,
.creator-avatar-mini {
  width: 44px;
  border: 1px solid #dbe5ef;
  background: #fff;
  color: #101827;
}

.creator-avatar-mini {
  overflow: hidden;
}

.creator-avatar-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-studio-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 1.25rem;
  align-items: start;
}

.creator-studio-main,
.creator-right-rail {
  display: grid;
  gap: 1.05rem;
}

.creator-overview-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 1.05rem;
}

.creator-profile-showcase,
.creator-kpi-panel,
.creator-active-panel,
.creator-content-card,
.creator-contract-card,
.creator-rail-card,
.creator-subpage-preview a {
  border: 1px solid #dbe5ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.creator-profile-showcase {
  overflow: hidden;
}

.creator-profile-cover {
  min-height: 132px;
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.02), rgba(16, 24, 39, 0.24)),
    url("/assets/landing-creator-photo.png") center 36% / cover;
}

.creator-profile-body {
  display: grid;
  gap: 0.85rem;
  padding: 0 1rem 1rem;
}

.creator-profile-avatar {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-top: -46px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 28px;
  background: linear-gradient(135deg, #43d6da, #7657ff);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(16, 24, 39, 0.18);
}

.creator-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-profile-body h2 {
  margin: 0.2rem 0;
  color: #101827;
  font-size: 1.6rem;
}

.creator-profile-body p {
  margin: 0;
  color: #657289;
  line-height: 1.55;
}

.creator-verified {
  display: inline-flex;
  width: max-content;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(67, 214, 218, 0.14);
  color: #087985;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.creator-social-row span {
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  background: #f0f5fa;
  color: #425066;
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-image-form {
  width: 100%;
}

.profile-image-form label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 0.75rem;
  border: 1px dashed #c9d6e4;
  border-radius: 12px;
  background: #f8fbff;
  color: #263247;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.profile-image-form input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.brand-profile-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.brand-logo-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 86px;
  height: 86px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 24px;
  background: linear-gradient(135deg, #43d6da, #7657ff);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(16, 24, 39, 0.18);
}

.brand-logo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-image-form {
  max-width: 220px;
  margin-top: 0.55rem;
}

.creator-kpi-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(255, 95, 114, 0.16), transparent 14rem);
}

.creator-kpi-panel div {
  display: grid;
  align-content: space-between;
  min-height: 116px;
  padding: 1rem;
  border-radius: 15px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e7eef6;
}

.creator-kpi-panel span,
.creator-rail-card span,
.creator-signature-preview span {
  color: #657289;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-kpi-panel strong {
  color: #101827;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.creator-active-panel {
  padding: 1rem;
}

.creator-active-list {
  display: grid;
  gap: 0.75rem;
}

.creator-campaign-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 74px auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid #e1e9f1;
  border-radius: 16px;
  background: #fbfdff;
}

.creator-campaign-art {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 95, 114, 0.16), rgba(67, 214, 218, 0.2)),
    url("/assets/landing-brand-campaign.png") center / cover;
}

.creator-campaign-row strong {
  color: #101827;
}

.creator-campaign-row p,
.creator-campaign-row small {
  margin: 0.15rem 0 0;
  color: #657289;
}

.creator-progress {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(#ff5f72 var(--progress), #e8eef5 0);
}

.creator-progress::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fff;
}

.creator-progress span {
  position: relative;
  z-index: 1;
  color: #101827;
  font-size: 0.72rem;
  font-weight: 950;
}

.creator-content-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  gap: 1.05rem;
}

.creator-content-card {
  min-height: 190px;
  padding: 1rem;
  overflow: hidden;
}

.creator-content-card h3 {
  margin: 0.35rem 0;
  color: #101827;
  font-size: 1.25rem;
}

.creator-content-card p {
  color: #657289;
}

.creator-media-kit-card {
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.12), rgba(16, 24, 39, 0.72)),
    url("/assets/creator-studio-hero.png") center / cover;
  color: #fff;
}

.creator-media-kit-card h3,
.creator-media-kit-card p,
.creator-media-kit-card .eyebrow,
.creator-media-kit-card .inline-link {
  color: #fff;
}

.creator-chart-bars {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 92px;
  margin-top: 1.5rem;
}

.creator-chart-bars span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #43d6da, #7657ff);
}

.creator-performance-toggle {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.creator-performance-toggle small {
  display: inline-flex;
  width: max-content;
  margin-top: 0.75rem;
  padding: 0.36rem 0.58rem;
  border-radius: 999px;
  background: #101827;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.creator-performance-toggle[aria-expanded="true"] {
  outline: 3px solid rgba(67, 214, 218, 0.28);
}

.creator-performance-detail {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #dbe5ef;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 214, 218, 0.14), transparent 14rem),
    #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.creator-performance-detail[hidden] {
  display: none;
}

.creator-performance-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.creator-performance-metrics div {
  display: grid;
  gap: 0.55rem;
  min-height: 104px;
  padding: 0.85rem;
  border: 1px solid #e1e9f1;
  border-radius: 15px;
  background: #fbfdff;
}

.creator-performance-metrics span {
  color: #657289;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-performance-metrics strong {
  color: #101827;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.creator-performance-timeline {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  min-height: 150px;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fbff, #eef5fb);
}

.creator-performance-timeline span {
  flex: 1;
  height: var(--h);
  min-height: 24px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #ff5f72, #ffc65a);
}

.creator-doc-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 241, 90, 0.24), transparent 12rem),
    #fff;
}

.creator-subpage-preview {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.creator-subpage-preview a {
  display: grid;
  gap: 0.35rem;
  min-height: 122px;
  padding: 0.9rem;
  color: #101827;
}

.creator-subpage-preview a:nth-child(1) { background: #fff4e0; }
.creator-subpage-preview a:nth-child(2) { background: #ebfbfc; }
.creator-subpage-preview a:nth-child(3) { background: #f2edff; }
.creator-subpage-preview a:nth-child(4) { background: #ecf7ea; }
.creator-subpage-preview a:nth-child(5) { background: #fff0f3; }
.creator-subpage-preview a:nth-child(6) { background: #eef4ff; }

.creator-subpage-preview span {
  color: rgba(16, 24, 39, 0.45);
  font-size: 0.78rem;
  font-weight: 950;
}

.creator-subpage-preview strong {
  font-size: 1rem;
}

.creator-subpage-preview small {
  color: #657289;
  line-height: 1.35;
}

.creator-right-rail {
  position: sticky;
  top: 1.4rem;
}

.creator-contract-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  background:
    linear-gradient(160deg, #101827, #22224c 58%, #103a3f);
  color: #fff;
}

.creator-contract-card h2 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
}

.creator-contract-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.creator-contract-card .eyebrow {
  color: #b8f15a;
}

.creator-signature-preview {
  display: grid;
  gap: 0.5rem;
  min-height: 126px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, 0.09) 31px 32px);
}

.creator-signature-preview strong {
  align-self: end;
  color: #fff;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
}

.creator-rail-card {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
}

.creator-rail-card strong {
  color: #101827;
  font-size: 1.6rem;
}

.creator-rail-card small {
  color: #657289;
  line-height: 1.45;
}

.creator-rail-card.payout {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 198, 90, 0.28), transparent 11rem),
    #fff;
}

.creator-rail-card.messages {
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 214, 218, 0.2), transparent 11rem),
    #fff;
}

.contract-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.45rem, 1.2vw, 1rem);
  background: rgba(8, 14, 26, 0.72);
  backdrop-filter: blur(8px);
}

.contract-preview-modal.open {
  display: flex;
}

.contract-preview-dialog {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  width: min(1520px, 99vw);
  height: min(1040px, 98vh);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.contract-preview-head,
.contract-preview-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #dbe5ef;
}

.contract-preview-head h2 {
  margin: 0.2rem 0 0;
  color: #101827;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
}

.contract-preview-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dbe5ef;
  border-radius: 12px;
  background: #f8fbff;
  color: #101827;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
}

.contract-preview-error {
  margin: 0.8rem 1.15rem 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: 12px;
  background: #fff1f2;
  color: #991b1b;
  font-weight: 800;
}

.contract-preview-frame {
  display: block;
  align-self: stretch;
  width: 100%;
  height: calc(min(1040px, 98vh) - 9.25rem);
  min-height: 560px;
  border: 0;
  background: #f4f6fb;
}

.contract-preview-actions {
  border-top: 1px solid #dbe5ef;
  border-bottom: 0;
  background: #fbfdff;
}

.contract-preview-actions .small-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.contract-confirm-shell {
  width: min(1180px, 94vw);
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.contract-confirm-hero {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fffd, #fffaf2);
}

.contract-confirm-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.contract-confirm-hero p {
  max-width: 760px;
  color: var(--muted);
}

.contract-confirm-document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.contract-confirm-document iframe {
  display: block;
  width: 100%;
  min-height: 78vh;
  border: 0;
  background: #fff;
}

@media (max-width: 760px) {
  .contract-preview-modal {
    align-items: stretch;
    padding: 0;
  }

  .contract-preview-dialog {
    width: 100vw;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .contract-preview-head,
  .contract-preview-actions {
    padding: 0.75rem;
  }

  .contract-preview-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .contract-preview-actions .small-button {
    width: 100%;
  }

  .contract-preview-frame {
    height: calc(100dvh - 12rem);
    min-height: 0;
  }
}

.creator-workspace-head {
  margin-top: 1.25rem;
}

.creator-deal-open-row {
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.creator-deal-open-row:hover,
.creator-deal-open-row:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(25, 132, 255, 0.34);
  box-shadow: 0 18px 42px rgba(20, 31, 54, 0.14);
  outline: none;
}

.creator-deal-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 1.4vw, 1.25rem);
}

.creator-deal-modal.open {
  display: flex;
}

.creator-deal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 26, 0.74);
  backdrop-filter: blur(10px);
}

.creator-deal-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1280px, 98vw);
  max-height: min(920px, 96vh);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: #f7f9fc;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.creator-deal-dialog-head,
.creator-deal-dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border-bottom: 1px solid #dce5ee;
}

.creator-deal-dialog-head h2 {
  margin: 0.15rem 0 0;
  color: #101827;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.creator-deal-dialog-head p {
  margin: 0.3rem 0 0;
  color: #536174;
}

.creator-deal-dialog-body {
  min-height: 0;
  overflow: auto;
  padding: 1.15rem;
}

.creator-deal-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid #dce5ee;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #eef8ff);
}

.creator-deal-summary p {
  margin: 0.3rem 0 0;
  color: #374456;
}

.creator-deal-progress {
  display: grid;
  place-items: center;
  width: 74px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#16a4ff var(--progress), #dce5ee 0);
}

.creator-deal-progress span {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  font-weight: 900;
  font-size: 0.88rem;
}

.creator-deal-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.creator-deal-detail-card {
  padding: 1rem;
  border: 1px solid #dce5ee;
  border-radius: 14px;
  background: #fff;
}

.creator-deal-detail-card h3 {
  margin: 0.25rem 0 0.6rem;
  color: #101827;
}

.creator-deal-detail-card h4 {
  margin: 1rem 0 0.35rem;
  color: #101827;
}

.creator-deal-detail-card p {
  color: #4b596b;
}

.creator-deal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 0;
}

.creator-deal-facts div {
  padding: 0.75rem;
  border-radius: 12px;
  background: #f3f7fb;
}

.creator-deal-facts dt {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.creator-deal-facts dd {
  margin: 0.25rem 0 0;
  color: #111827;
  font-weight: 900;
}

.creator-deal-steps {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.creator-deal-steps li {
  position: relative;
  padding: 0.7rem 0.8rem 0.7rem 2.25rem;
  border: 1px solid #dce5ee;
  border-radius: 12px;
  background: #f8fbff;
  color: #536174;
  font-weight: 800;
}

.creator-deal-steps li::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  width: 0.72rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #aab7c6;
  transform: translateY(-50%);
}

.creator-deal-steps li.done {
  border-color: rgba(19, 171, 112, 0.28);
  background: #eefbf5;
  color: #136f4b;
}

.creator-deal-steps li.done::before {
  background: #13ab70;
}

.creator-deal-steps li.current {
  border-color: rgba(22, 164, 255, 0.38);
  background: #edf8ff;
  color: #0f5d91;
}

.creator-deal-steps li.current::before {
  background: #16a4ff;
}

.creator-deal-feedback {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 12px;
  background: #fff8e8;
  color: #6b4b00;
}

.creator-deal-submissions {
  display: grid;
  gap: 0.7rem;
}

.creator-deal-submissions > div {
  padding: 0.8rem;
  border: 1px solid #dce5ee;
  border-radius: 12px;
  background: #f8fbff;
}

.creator-deal-submissions strong {
  display: block;
  margin-top: 0.35rem;
}

.creator-coach-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(22, 164, 255, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, #102136, #0f6c91 58%, #16a4ff);
  color: #fff;
}

.creator-coach-next h3 {
  margin: 0.2rem 0 0.35rem;
  color: #fff;
}

.creator-coach-next p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.creator-coach-next .eyebrow,
.creator-coach-next .tag {
  color: rgba(255, 255, 255, 0.9);
}

.creator-coach-list {
  display: grid;
  gap: 0.7rem;
}

.creator-coach-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid #dce5ee;
  border-radius: 14px;
  background: #f8fbff;
}

.creator-coach-marker {
  display: grid;
  place-items: center;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #dce5ee;
  color: #536174;
  font-weight: 900;
}

.creator-coach-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.creator-coach-line strong {
  color: #101827;
}

.creator-coach-line span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #edf2f7;
  color: #536174;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-coach-item p {
  margin: 0.25rem 0 0;
  color: #536174;
}

.creator-coach-item.done {
  border-color: rgba(19, 171, 112, 0.28);
  background: #eefbf5;
}

.creator-coach-item.done .creator-coach-marker,
.creator-coach-item.done .creator-coach-line span {
  background: #13ab70;
  color: #fff;
}

.creator-coach-item.current {
  border-color: rgba(22, 164, 255, 0.42);
  background: #edf8ff;
  box-shadow: 0 14px 34px rgba(22, 164, 255, 0.12);
}

.creator-coach-item.current .creator-coach-marker,
.creator-coach-item.current .creator-coach-line span {
  background: #16a4ff;
  color: #fff;
}

.creator-deal-steps.legacy-steps {
  display: none;
}

.creator-deal-dialog-actions {
  border-top: 1px solid #dce5ee;
  border-bottom: 0;
  flex-wrap: wrap;
}

.brand-applicant-modal {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 1.4vw, 1.25rem);
}

.brand-applicant-modal.open {
  display: flex;
}

.brand-applicant-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 26, 0.74);
  backdrop-filter: blur(10px);
}

.brand-applicant-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1180px, 98vw);
  max-height: min(900px, 96vh);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: #f7f9fc;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.brand-applicant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border-bottom: 1px solid #dce5ee;
}

.brand-applicant-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-applicant-hero h2 {
  margin: 0.15rem 0;
  color: #101827;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.brand-applicant-hero p {
  margin: 0;
  color: #536174;
}

.brand-applicant-body {
  min-height: 0;
  overflow: auto;
  padding: 1.15rem;
}

.brand-applicant-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #dce5ee;
  background: linear-gradient(135deg, #ffffff, #eef8ff);
}

.brand-applicant-score.is-fit {
  border-color: rgba(19, 171, 112, 0.25);
  background: linear-gradient(135deg, #ffffff, #eefbf5);
}

.brand-applicant-score.needs-review {
  border-color: rgba(246, 174, 45, 0.35);
  background: linear-gradient(135deg, #ffffff, #fff8e8);
}

.brand-applicant-score h3 {
  margin: 0.2rem 0 0.3rem;
  color: #101827;
}

.brand-applicant-score p {
  margin: 0;
  color: #536174;
}

.brand-applicant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.brand-applicant-card {
  padding: 1rem;
  border: 1px solid #dce5ee;
  border-radius: 14px;
  background: #fff;
}

.brand-applicant-card p {
  color: #4b596b;
}

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

.brand-applicant-actions,
.brand-applicant-actions .mini-form {
  display: grid;
  gap: 0.75rem;
}

.brand-applicant-actions .inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
}

.brand-applicant-actions input {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .creator-deal-modal,
  .brand-applicant-modal {
    padding: 0;
    align-items: stretch;
  }

  .creator-deal-dialog,
  .brand-applicant-dialog {
    width: 100vw;
    max-height: 100dvh;
    border-radius: 0;
  }

  .creator-deal-dialog-head,
  .creator-deal-dialog-actions,
  .brand-applicant-head,
  .brand-applicant-score,
  .creator-coach-next {
    align-items: stretch;
    flex-direction: column;
  }

  .creator-deal-detail-grid,
  .creator-deal-facts,
  .creator-deal-summary,
  .brand-applicant-grid {
    grid-template-columns: 1fr;
  }

  .creator-deal-dialog-actions .small-button,
  .creator-deal-dialog-actions .inline-form,
  .creator-deal-dialog-actions input,
  .brand-applicant-actions .inline-form {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

body:has(.creator-subpage-shell) .dashboard-shell.creator-subpage-shell {
  width: calc(100% - 264px);
  max-width: none;
  margin-left: 264px;
  padding: 1.65rem clamp(1.2rem, 2.2vw, 2.4rem) 3rem;
}

@media (max-width: 1280px) {
  .creator-studio-board {
    grid-template-columns: 1fr;
  }

  .creator-right-rail {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  body:has(.creator-shell) .site-header {
    position: sticky;
    inset: 0 0 auto;
    width: auto;
    flex-direction: row;
    align-items: center;
    padding: 0.8rem 1rem;
  }

  body:has(.creator-shell) .brand {
    padding: 0;
  }

  body:has(.creator-shell) .nav-toggle {
    display: flex;
  }

  body:has(.creator-shell) .site-nav {
    position: absolute;
    inset: 100% 1rem auto;
    display: none !important;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #101827;
  }

  body:has(.creator-shell) .site-nav.open {
    display: flex !important;
  }

  .creator-studio-shell,
  body:has(.creator-subpage-shell) .dashboard-shell.creator-subpage-shell {
    width: min(100%, 94vw);
    margin-left: auto;
    margin-right: auto;
  }

  .creator-overview-band,
  .creator-content-grid,
  .creator-right-rail {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .creator-studio-topbar,
  .creator-top-actions {
    align-items: flex-start;
  }

  .creator-studio-topbar {
    flex-direction: column;
  }

  .creator-upload-button {
    min-width: 0;
    padding-inline: 0.85rem;
  }

  .creator-kpi-panel,
  .creator-campaign-row,
  .creator-subpage-preview,
  .creator-performance-metrics {
    grid-template-columns: 1fr;
  }

  .creator-campaign-row {
    align-items: start;
  }

  .creator-progress {
    width: 52px;
    height: 52px;
  }
}

/* --- Landingpage Redesign --- */
body:has(.landing-page) {
  background: #fbfcff;
}

body:has(.landing-page) .site-header {
  border-bottom-color: rgba(8, 18, 33, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

body:has(.landing-page) .brand-mark {
  border-radius: 8px;
  background: #07111f;
  color: #fff;
}

body:has(.landing-page) .site-nav a.active {
  background: #eef9fa;
  color: #06101d;
}

body:has(.landing-page) .nav-cta {
  border-radius: 8px !important;
  background: #07111f !important;
}

.landing-page {
  --landing-ink: #07111f;
  --landing-muted: #5f6a78;
  --landing-soft: #f3f7fb;
  --landing-line: #dfe8f1;
  --landing-coral: #ff4545;
  --landing-coral-deep: #e6353d;
  --landing-teal: #059ba4;
  --landing-cyan: #48d6d9;
  --landing-amber: #f6aa16;
  --landing-violet: #7357ff;
  --landing-green: #23b26d;
  --landing-shadow: 0 18px 50px rgba(7, 17, 31, 0.11);
  --landing-shadow-soft: 0 8px 28px rgba(7, 17, 31, 0.08);
  overflow: hidden;
  color: var(--landing-ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 54%, #f6f9fd 100%);
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  color: var(--landing-ink);
  letter-spacing: 0;
}

.landing-page p {
  color: var(--landing-muted);
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(1.5rem, 3.2vw, 3.6rem);
  align-items: center;
  min-height: calc(100vh - 72px);
  width: min(1340px, 90vw);
  margin: 0 auto;
  padding: clamp(2.6rem, 4.8vw, 4.7rem) 0 3.2rem;
}

.landing-hero::before,
.landing-final::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(5, 155, 164, 0.42) 1.5px, transparent 1.5px);
  background-size: 17px 17px;
  pointer-events: none;
}

.landing-hero::before {
  right: -54px;
  bottom: 70px;
  width: 180px;
  height: 180px;
}

.landing-hero__copy,
.landing-hero__stage {
  position: relative;
  z-index: 1;
}

.landing-hero__copy h1 {
  max-width: 680px;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 5.1vw, 5.05rem);
  line-height: 0.98;
  font-weight: 900;
}

.landing-hero__copy h1 span {
  display: block;
  color: var(--landing-coral);
}

.landing-hero__copy p {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease);
}

.landing-button::after {
  content: "->";
  margin-left: 0.65rem;
}

.landing-button:hover {
  transform: translateY(-2px);
}

.landing-button--primary {
  background: var(--landing-coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 69, 69, 0.25);
}

.landing-button--primary:hover {
  background: var(--landing-coral-deep);
  box-shadow: 0 18px 36px rgba(255, 69, 69, 0.32);
}

.landing-button--secondary {
  border-color: #07111f;
  background: #fff;
  color: var(--landing-ink);
}

.landing-button--secondary:hover {
  background: #f5f8fc;
  box-shadow: var(--landing-shadow-soft);
}

.landing-button--teal {
  background: var(--landing-teal);
  color: #fff;
  box-shadow: 0 12px 26px rgba(5, 155, 164, 0.24);
}

.landing-button--amber {
  background: var(--landing-amber);
  color: #251503;
  box-shadow: 0 12px 26px rgba(246, 170, 22, 0.28);
}

.landing-button--dark-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.landing-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin-top: 2.35rem;
}

.landing-trust-row div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.65rem;
  align-items: center;
}

.landing-mini-icon {
  display: grid;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  color: var(--landing-ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.landing-trust-row strong {
  font-size: 0.86rem;
}

.landing-trust-row small {
  color: var(--landing-muted);
  font-size: 0.74rem;
}

.landing-hero__stage {
  min-height: 620px;
}

.landing-hero__stage::before {
  content: "";
  position: absolute;
  right: -112px;
  top: 38px;
  width: 310px;
  height: 490px;
  border-radius: 140px 0 0 140px;
  background:
    linear-gradient(180deg, rgba(115, 87, 255, 0.95), rgba(72, 214, 217, 0.95));
  transform: rotate(12deg);
}

.landing-hero__stage::after {
  content: "";
  position: absolute;
  left: -26px;
  bottom: 6px;
  width: 260px;
  height: 160px;
  background: var(--landing-coral);
  clip-path: polygon(0 72%, 52% 0, 100% 0, 100% 36%, 42% 100%, 0 100%);
}

.creator-preview,
.budget-card,
.contract-card,
.timeline-card,
.payout-card,
.landing-side-rail {
  position: absolute;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--landing-shadow);
  backdrop-filter: blur(20px);
}

.creator-preview {
  left: 0;
  top: 0;
  width: min(390px, 52vw);
  padding: 1.2rem;
}

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.preview-head span {
  color: var(--landing-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.creator-preview__grid article {
  min-width: 0;
}

.creator-face {
  aspect-ratio: 1;
  margin-bottom: 0.6rem;
  border-radius: 8px;
  background-image: url("/assets/landing-creator-headshots.png");
  background-size: 300% 100%;
  background-position: left center;
  background-repeat: no-repeat;
}

.face-b {
  background-position: center center;
}

.face-c {
  background-position: right center;
}

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

.creator-preview__grid strong {
  overflow: hidden;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-preview__grid small {
  color: var(--landing-muted);
  font-size: 0.72rem;
}

.budget-card {
  right: 95px;
  top: 0;
  width: 232px;
  padding: 1.25rem;
  background: #07111f;
  color: #fff;
}

.budget-card span,
.budget-card p,
.budget-card small {
  color: rgba(255, 255, 255, 0.72);
}

.budget-card span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.budget-card strong {
  display: block;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.budget-card p {
  margin-bottom: 0.15rem;
  font-size: 0.72rem;
}

.budget-card b {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.9rem;
}

.budget-progress {
  height: 8px;
  margin-bottom: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.budget-progress i {
  display: block;
  width: 83%;
  height: 100%;
  border-radius: inherit;
  background: var(--landing-cyan);
}

.budget-card a {
  display: flex;
  justify-content: center;
  margin-top: 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 7px;
  background: var(--landing-cyan);
  color: #06101d;
  font-size: 0.82rem;
  font-weight: 900;
}

.contract-card {
  right: 96px;
  top: 270px;
  width: 300px;
  padding: 1.25rem;
}

.contract-card span,
.timeline-card strong,
.payout-card span {
  display: block;
  color: var(--landing-muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contract-card div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  margin: 0.55rem 0 0.85rem;
}

.contract-card strong {
  font-size: 1.02rem;
}

.contract-card em,
.payout-card small {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #e7f8ed;
  color: #178052;
  padding: 0.3rem 0.55rem;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
}

.contract-card p {
  margin-bottom: 1rem;
  font-size: 0.86rem;
}

.contract-card button {
  width: 100%;
  min-height: 42px;
  border: 1px solid #aab6c4;
  border-radius: 7px;
  background: #fff;
  color: var(--landing-ink);
  font-weight: 850;
}

.timeline-card {
  left: 0;
  top: 245px;
  width: 250px;
  padding: 1.25rem;
}

.timeline-card ol {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline-card li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--landing-muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.timeline-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 10px;
  height: 10px;
  border: 2px solid #b4bfca;
  border-radius: 50%;
  background: #fff;
}

.timeline-card li.done {
  color: var(--landing-ink);
}

.timeline-card li.done::before {
  border-color: var(--landing-teal);
  background: var(--landing-teal);
}

.payout-card {
  left: 310px;
  bottom: 38px;
  width: 190px;
  padding: 1.05rem;
}

.payout-card strong {
  display: block;
  margin: 0.4rem 0 0.55rem;
  font-size: 1.75rem;
}

.landing-side-rail {
  right: 0;
  top: 150px;
  display: grid;
  width: 114px;
  padding: 0.75rem;
}

.landing-side-rail a {
  display: grid;
  min-height: 70px;
  place-items: center;
  border-bottom: 1px solid var(--landing-line);
  color: var(--landing-ink);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
}

.landing-side-rail a:last-child {
  border-bottom: 0;
}

.landing-float-1 {
  animation: landingFloat 7s ease-in-out infinite;
}

.landing-float-2 {
  animation: landingFloat 8s ease-in-out infinite 0.4s;
}

.landing-float-3 {
  animation: landingFloat 7.5s ease-in-out infinite 0.8s;
}

.landing-float-4 {
  animation: landingFloat 8.5s ease-in-out infinite 1.1s;
}

.landing-float-5 {
  animation: landingFloat 7.8s ease-in-out infinite 1.4s;
}

@keyframes landingFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.landing-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
  background: linear-gradient(180deg, #f8fbff, #eef5fb);
}

.landing-metrics article {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--landing-line);
  text-align: center;
}

.landing-metrics article:last-child {
  border-right: 0;
}

.landing-metrics strong {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  line-height: 1;
}

.landing-metrics span {
  color: var(--landing-muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.landing-audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  width: min(1280px, 90vw);
  margin: 4rem auto 0;
}

.audience-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(230px, 1fr);
  gap: 1.5rem;
  min-height: 510px;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: 8px;
  overflow: hidden;
}

.audience-panel::before {
  content: "";
  position: absolute;
  right: 48px;
  top: 36px;
  width: 168px;
  height: 168px;
  border-radius: 42% 58% 48% 52%;
}

.audience-panel--creator {
  background: linear-gradient(135deg, #effcfc 0%, #f8ffff 62%, #e5f7fa 100%);
}

.audience-panel--creator::before {
  background: var(--landing-teal);
}

.audience-panel--brand {
  background: linear-gradient(135deg, #fffaf0 0%, #fffdf9 60%, #fff0cf 100%);
}

.audience-panel--brand::before {
  background: var(--landing-amber);
}

.audience-panel > div {
  position: relative;
  z-index: 1;
}

.landing-label {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--landing-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-panel--brand .landing-label {
  color: #d28a00;
}

.audience-panel h2,
.landing-flow h2,
.landing-core h2,
.landing-final h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

.audience-panel ul {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.audience-panel li {
  position: relative;
  padding-left: 1.75rem;
  color: #233044;
  font-weight: 750;
}

.audience-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--landing-teal);
}

.audience-panel--brand li::before {
  background: var(--landing-amber);
}

.audience-visual {
  align-self: end;
  min-height: 360px;
}

.portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(310px, 82%);
  height: 380px;
  border-radius: 8px 8px 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--landing-shadow-soft);
}

.portrait-creator {
  background-image: url("/assets/landing-creator-photo.png");
  background-position: center top;
}

.portrait-brand {
  background-image: url("/assets/landing-brand-photo.png");
  background-position: center top;
}

.mini-stat {
  position: absolute;
  right: 42px;
  bottom: 38px;
  width: 214px;
  padding: 1rem;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--landing-shadow-soft);
}

.mini-stat span,
.mini-stat small {
  color: var(--landing-muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.mini-stat strong {
  display: block;
  margin: 0.35rem 0;
  font-size: 1.65rem;
}

.mini-stat small {
  color: var(--landing-green);
}

.landing-flow {
  width: min(1120px, 90vw);
  margin: 5rem auto;
  text-align: center;
}

.landing-section-head {
  max-width: 760px;
  margin: 0 auto 2.7rem;
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.flow-track::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 41px;
  border-top: 2px dashed #d2dce8;
}

.flow-track article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.flow-track span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #e5f9fa;
  color: var(--landing-teal);
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(5, 155, 164, 0.12);
}

.flow-track article:nth-child(2) span {
  background: #eeeaff;
  color: var(--landing-violet);
}

.flow-track article:nth-child(3) span {
  background: #fff3d8;
  color: var(--landing-amber);
}

.flow-track article:nth-child(4) span {
  background: #ffe9e9;
  color: var(--landing-coral);
}

.flow-track strong {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.flow-track p {
  max-width: 210px;
  margin: 0 auto;
  font-size: 0.92rem;
}

.landing-core {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, 90vw);
  margin: 0 auto 5rem;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--landing-shadow-soft);
}

.landing-core p {
  max-width: 560px;
  font-size: 1.05rem;
}

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

.core-grid article {
  min-height: 184px;
  padding: 1.25rem;
  border-radius: 8px;
  background: var(--landing-soft);
}

.core-grid article:nth-child(1) {
  background: #eafafa;
}

.core-grid article:nth-child(2) {
  background: #fff4d8;
}

.core-grid article:nth-child(3) {
  background: #f0edff;
}

.core-grid span,
.core-grid small {
  display: block;
  color: var(--landing-muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.core-grid strong {
  display: block;
  margin: 2.6rem 0 0.45rem;
  font-size: 2rem;
}

.landing-final {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  padding: clamp(3rem, 5vw, 4.6rem) 5vw;
  overflow: hidden;
  background: #07111f;
}

.landing-final::before {
  content: "";
  position: absolute;
  right: 160px;
  top: -80px;
  width: 270px;
  height: 250px;
  background: linear-gradient(135deg, var(--landing-cyan), var(--landing-coral));
  clip-path: polygon(0 0, 100% 40%, 58% 100%, 0 62%);
}

.landing-final::after {
  right: 24px;
  top: 46px;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px);
}

.landing-final > div {
  position: relative;
  z-index: 1;
}

.landing-final h2 {
  color: #fff;
}

.landing-final p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.final-stack {
  min-height: 220px;
}

.final-stack .contract-card,
.final-stack .payout-card,
.creator-chip {
  position: absolute;
}

.final-stack .contract-card {
  right: 230px;
  top: 58px;
  width: 260px;
}

.final-stack .payout-card {
  right: 120px;
  bottom: 64px;
}

.creator-chip {
  right: 26px;
  bottom: 44px;
  display: grid;
  width: 108px;
  height: 146px;
  place-items: end center;
  padding: 1rem 0.7rem;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 31%, #4c2518 0 16%, transparent 17%),
    radial-gradient(circle at 50% 41%, #d18c66 0 22%, transparent 23%),
    linear-gradient(180deg, #e8fbfb, #b8ecf0);
  color: var(--landing-ink);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: var(--landing-shadow);
}

@media (prefers-reduced-motion: reduce) {
  .landing-float-1,
  .landing-float-2,
  .landing-float-3,
  .landing-float-4,
  .landing-float-5 {
    animation: none;
  }
}

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

  .landing-hero__copy {
    max-width: 760px;
  }

  .landing-hero__stage {
    min-height: 640px;
  }

  .landing-audiences,
  .landing-core,
  .landing-final {
    grid-template-columns: 1fr;
  }

  .landing-final {
    padding-bottom: 2rem;
  }

  .final-stack {
    min-height: 270px;
  }

  .final-stack .contract-card {
    left: 0;
    right: auto;
  }

  .final-stack .payout-card {
    left: 240px;
    right: auto;
  }

  .creator-chip {
    left: 430px;
    right: auto;
  }
}

@media (max-width: 860px) {
  .landing-hero {
    width: min(620px, 90vw);
    padding-top: 3rem;
  }

  .landing-hero__stage {
    display: grid;
    gap: 0.9rem;
    min-height: 0;
  }

  .creator-preview,
  .budget-card,
  .contract-card,
  .timeline-card,
  .payout-card,
  .landing-side-rail {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 0;
  }

  .landing-hero__stage::before,
  .landing-hero__stage::after,
  .landing-side-rail {
    display: none;
  }

  .creator-preview {
    padding: 1rem;
  }

  .budget-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem 1rem;
    align-items: center;
  }

  .budget-card b {
    grid-row: span 2;
    margin: 0;
    font-size: 1.55rem;
  }

  .budget-card .budget-progress,
  .budget-card small,
  .budget-card a {
    grid-column: 1 / -1;
  }

  .contract-card,
  .timeline-card,
  .payout-card {
    padding: 1rem;
  }

  .timeline-card ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

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

  .landing-metrics article:nth-child(2n) {
    border-right: 0;
  }

  .audience-panel {
    grid-template-columns: 1fr;
  }

  .audience-visual {
    min-height: 330px;
  }

  .flow-track,
  .core-grid {
    grid-template-columns: 1fr;
  }

  .flow-track::before {
    display: none;
  }
}

@media (max-width: 640px) {
  body:has(.landing-page) .site-header {
    background: #fff;
  }

  .landing-hero__copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .landing-actions,
  .landing-button {
    width: 100%;
  }

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

  .landing-hero__stage {
    min-height: 0;
  }

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

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

  .landing-metrics article {
    border-right: 0;
  }

  .landing-audiences {
    width: min(100% - 1.5rem, 560px);
    margin-top: 2rem;
  }

  .audience-panel {
    min-height: auto;
    padding: 1.25rem;
  }

  .portrait {
    width: 100%;
    height: 300px;
  }

  .mini-stat {
    right: 1rem;
    bottom: 1rem;
    width: min(210px, calc(100% - 2rem));
  }

  .landing-flow,
  .landing-core {
    margin-bottom: 3rem;
  }

  .landing-core {
    padding: 1.25rem;
  }

  .final-stack .contract-card,
  .final-stack .payout-card,
  .creator-chip {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 1rem;
  }

  .creator-chip {
    height: 120px;
  }
}

/* --- Public Subpages Redesign --- */
body:has(.subpage),
body:has(.auth-redesign) {
  background: #fbfcff;
}

body:has(.subpage) .site-header,
body:has(.auth-redesign) .site-header {
  border-bottom-color: rgba(8, 18, 33, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

body:has(.subpage) .brand-mark,
body:has(.auth-redesign) .brand-mark {
  border-radius: 8px;
  background: #07111f;
}

.subpage,
.auth-redesign {
  --sub-ink: #07111f;
  --sub-muted: #607083;
  --sub-line: #dde7f1;
  --sub-soft: #f5f9fc;
  --sub-coral: #ff4545;
  --sub-teal: #059ba4;
  --sub-cyan: #48d6d9;
  --sub-amber: #f6aa16;
  --sub-violet: #7357ff;
  --sub-shadow: 0 18px 50px rgba(7, 17, 31, 0.1);
  color: var(--sub-ink);
}

.subpage h1,
.subpage h2,
.subpage h3,
.auth-redesign h1,
.auth-redesign h2 {
  color: var(--sub-ink);
  letter-spacing: 0;
}

.subpage p,
.auth-redesign p {
  color: var(--sub-muted);
}

.sub-hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: min(1240px, 90vw);
  margin: 0 auto;
  padding: clamp(3.2rem, 6vw, 5.6rem) 0 3rem;
}

.sub-hero__copy h1,
.auth-redesign__copy h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 900;
}

.sub-hero__copy h1 span,
.auth-redesign__copy h1 span {
  display: block;
  color: var(--sub-coral);
}

.subpage--brand .sub-hero__copy h1 span {
  color: var(--sub-amber);
}

.sub-hero__copy p,
.auth-redesign__copy p {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.sub-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.sub-proof-row article {
  padding: 1rem;
  border: 1px solid var(--sub-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 17, 31, 0.05);
}

.sub-proof-row strong,
.sub-proof-row span {
  display: block;
}

.sub-proof-row strong {
  margin-bottom: 0.35rem;
}

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

.sub-photo-panel {
  position: relative;
  min-height: 580px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(5, 155, 164, 0.96) 0 16%, transparent 17%),
    linear-gradient(135deg, #eafafa, #ffffff);
}

.sub-photo-panel--brand {
  background:
    radial-gradient(circle at 76% 18%, rgba(246, 170, 22, 0.96) 0 16%, transparent 17%),
    linear-gradient(135deg, #fff8ea, #ffffff);
}

.sub-photo-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, rgba(5, 155, 164, 0.35) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
}

.sub-photo-panel--brand::after {
  background-image: radial-gradient(circle, rgba(246, 170, 22, 0.38) 1.5px, transparent 1.5px);
}

.sub-photo {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: min(360px, 72%);
  height: 470px;
  border-radius: 8px 8px 0 0;
  background-size: cover;
  background-position: center top;
  box-shadow: var(--sub-shadow);
}

.sub-photo--creator {
  background-image: url("/assets/landing-creator-photo.png");
}

.sub-photo--brand {
  background-image: url("/assets/landing-brand-photo.png");
}

.sub-stat-card,
.sub-mini-card {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sub-shadow);
  backdrop-filter: blur(18px);
}

.sub-stat-card {
  left: 7%;
  bottom: 68px;
  width: 230px;
  padding: 1.15rem;
}

.sub-stat-card span,
.sub-mini-card span,
.sub-stat-card small {
  color: var(--sub-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.sub-stat-card strong {
  display: block;
  margin: 0.4rem 0;
  font-size: 1.85rem;
}

.sub-stat-card small {
  color: #16a05f;
}

.sub-stat-card--amber small {
  color: #b87900;
}

.sub-mini-card {
  left: 7%;
  top: 44px;
  width: 240px;
  padding: 1rem;
}

.sub-mini-card strong,
.sub-mini-card span {
  display: block;
}

.sub-mini-card strong {
  margin-bottom: 0.35rem;
}

.sub-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  width: min(1240px, 90vw);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.sub-form-intro {
  position: sticky;
  top: 96px;
}

.sub-form-intro h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.06;
}

.sub-step-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.sub-step-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.75rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--sub-line);
  border-radius: 8px;
  background: #fff;
}

.sub-step-list span {
  display: grid;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #e2f8f8;
  color: var(--sub-teal);
  font-weight: 900;
}

.sub-step-list--brand span {
  background: #fff1ce;
  color: #b87900;
}

.sub-step-list small {
  color: var(--sub-muted);
}

.sub-form-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  border: 1px solid var(--sub-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--sub-shadow);
}

.sub-form-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.sub-form-card label,
.auth-redesign-form label {
  color: #263448;
  font-size: 0.82rem;
  font-weight: 850;
}

.sub-form-card input,
.sub-form-card textarea,
.auth-redesign-form input {
  border-radius: 8px;
  border-color: #d9e4ee;
  background: #fbfdff;
}

.sub-form-card input:focus,
.sub-form-card textarea:focus,
.auth-redesign-form input:focus {
  border-color: var(--sub-teal);
  box-shadow: 0 0 0 3px rgba(72, 214, 217, 0.2);
}

.subpage--brand .sub-form-card input:focus {
  border-color: var(--sub-amber);
  box-shadow: 0 0 0 3px rgba(246, 170, 22, 0.18);
}

.sub-checkbox {
  align-items: start;
  padding: 0.8rem;
  border: 1px solid var(--sub-line);
  border-radius: 8px;
  background: var(--sub-soft);
}

.sub-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--sub-coral);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 69, 69, 0.24);
}

.sub-submit::after {
  content: "->";
  margin-left: 0.65rem;
}

.sub-submit--creator {
  background: var(--sub-teal);
  box-shadow: 0 14px 30px rgba(5, 155, 164, 0.22);
}

.sub-submit--brand {
  background: var(--sub-amber);
  color: #211504;
  box-shadow: 0 14px 30px rgba(246, 170, 22, 0.25);
}

.sub-feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1240px, 90vw);
  margin: 0 auto 5rem;
}

.sub-feature-band article {
  padding: 1.35rem;
  border: 1px solid var(--sub-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 17, 31, 0.05);
}

.sub-feature-band span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--sub-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sub-feature-band--brand span {
  color: #b87900;
}

.sub-feature-band h3 {
  margin-bottom: 0.55rem;
}

.sub-feature-band p {
  margin-bottom: 0;
}

.auth-redesign {
  position: relative;
  display: grid;
  grid-template-columns: minmax(410px, 1fr) minmax(360px, 460px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 72px);
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.auth-redesign::before {
  content: "";
  position: absolute;
  right: 300px;
  top: 70px;
  z-index: -1;
  width: 220px;
  height: 220px;
  border-radius: 42% 58% 48% 52%;
  background: linear-gradient(135deg, rgba(72, 214, 217, 0.45), rgba(115, 87, 255, 0.28));
}

.auth-redesign--compact {
  min-height: calc(100vh - 180px);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.role-grid article,
.auth-product-strip div,
.auth-login-panel {
  border: 1px solid var(--sub-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 17, 31, 0.05);
}

.role-grid article {
  padding: 1rem;
}

.role-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  background: #e7fafa;
  color: var(--sub-teal);
  font-weight: 900;
}

.role-grid article:nth-child(2) span {
  background: #fff1ce;
  color: #b87900;
}

.role-grid strong,
.role-grid small {
  display: block;
}

.role-grid small {
  margin-top: 0.35rem;
  color: var(--sub-muted);
}

.auth-product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.auth-product-strip div {
  padding: 0.9rem;
}

.auth-product-strip strong,
.auth-product-strip span {
  display: block;
}

.auth-product-strip span {
  margin-top: 0.25rem;
  color: var(--sub-muted);
  font-size: 0.84rem;
}

.auth-login-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--sub-shadow);
}

.auth-panel-head {
  margin-bottom: 1.35rem;
}

.auth-panel-head h2 {
  margin-bottom: 0.35rem;
  font-size: 2rem;
}

.auth-panel-head p {
  margin-bottom: 0;
}

.auth-redesign-form {
  display: grid;
  gap: 1rem;
}

.auth-redesign-form .sub-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.auth-forgot-link {
  color: var(--sub-teal);
  font-weight: 850;
}

.auth-register-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.auth-register-links a {
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--sub-line);
  border-radius: 8px;
  background: var(--sub-soft);
  font-weight: 850;
}

@media (max-width: 1080px) {
  .sub-hero,
  .sub-form-section,
  .auth-redesign {
    grid-template-columns: 1fr;
  }

  .sub-form-intro {
    position: static;
  }

  .auth-redesign {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .sub-hero,
  .sub-form-section,
  .sub-feature-band,
  .auth-redesign {
    width: min(100% - 1.5rem, 620px);
  }

  .sub-hero__copy h1,
  .auth-redesign__copy h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .sub-proof-row,
  .sub-form-grid.two,
  .sub-form-grid.three,
  .sub-form-grid.four,
  .sub-feature-band,
  .role-grid,
  .auth-product-strip,
  .auth-register-links {
    grid-template-columns: 1fr;
  }

  .sub-photo-panel {
    min-height: 500px;
  }

  .sub-photo {
    right: 0;
    width: 78%;
    height: 390px;
  }

  .sub-stat-card {
    left: 1rem;
    bottom: 38px;
  }

  .sub-mini-card {
    left: 1rem;
    top: 1rem;
  }

  .sub-form-card,
  .auth-login-panel {
    padding: 1rem;
  }
}

/* --- Landingpage V1: accepted concept implementation --- */
body:has(.landing-v1) {
  background: #f7f9fc;
}

body:has(.landing-v1) .site-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

body:has(.landing-v1) .brand-mark,
body:has(.landing-v1) .footer-brand-mark {
  border-radius: 8px;
  background: #111827;
  color: #fff;
}

.landing-v1 {
  --lp-ink: #111827;
  --lp-muted: #657084;
  --lp-line: rgba(17, 24, 39, 0.12);
  --lp-coral: #ff4f46;
  --lp-coral-dark: #e63d35;
  --lp-cyan: #33d5d0;
  --lp-teal: #078f96;
  --lp-amber: #f6b73c;
  --lp-violet: #7867ff;
  --lp-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
  --lp-shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.1);
  color: var(--lp-ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 46%, #eef4f9 100%);
}

.lpv1-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  width: min(1360px, 91vw);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5.5rem) 0 clamp(2.5rem, 4vw, 4rem);
}

.lpv1-hero::before {
  content: "";
  position: absolute;
  left: -5vw;
  bottom: 9%;
  width: 310px;
  height: 92px;
  background: linear-gradient(90deg, rgba(255, 79, 70, 0.18), rgba(51, 213, 208, 0.16));
  clip-path: polygon(0 36%, 100% 0, 82% 100%, 0 100%);
  pointer-events: none;
}

.lpv1-hero__copy,
.lpv1-product {
  position: relative;
  z-index: 1;
}

.lpv1-hero h1 {
  max-width: 760px;
  margin: 0 0 1.35rem;
  color: var(--lp-ink);
  font-size: clamp(3rem, 5vw, 5.15rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.lpv1-hero__copy > p {
  max-width: 640px;
  margin: 0;
  color: var(--lp-muted);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.68;
}

.lpv1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.lpv1-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.98rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease);
}

.lpv1-button::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 0.65rem;
  background: currentColor;
  clip-path: polygon(24% 15%, 100% 50%, 24% 85%, 24% 60%, 0 60%, 0 40%, 24% 40%);
}

.lpv1-button:hover {
  transform: translateY(-2px);
}

.lpv1-button--primary {
  background: var(--lp-coral);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 79, 70, 0.28);
}

.lpv1-button--primary:hover {
  background: var(--lp-coral-dark);
}

.lpv1-button--secondary {
  border-color: rgba(17, 24, 39, 0.22);
  background: #fff;
  color: var(--lp-ink);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.lpv1-live-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 760px;
  margin: 2.4rem 0 0;
}

.lpv1-live-strip div {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.lpv1-live-strip dt {
  min-height: 2.2em;
  color: var(--lp-muted);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.lpv1-live-strip dd {
  margin: 0.5rem 0 0;
  color: var(--lp-ink);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.lpv1-product {
  min-height: 640px;
}

.lpv1-product::before {
  content: "";
  position: absolute;
  right: -6%;
  top: 6%;
  width: 47%;
  height: 78%;
  border-radius: 120px 8px 8px 120px;
  background: linear-gradient(180deg, rgba(120, 103, 255, 0.92), rgba(51, 213, 208, 0.86));
  transform: rotate(8deg);
}

.lpv1-product__shell {
  position: absolute;
  left: 0;
  top: 4%;
  width: min(570px, 86%);
  min-height: 520px;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--lp-shadow);
  backdrop-filter: blur(22px);
}

.lpv1-product__topbar,
.lpv1-main-card,
.lpv1-creator-card,
.lpv1-workflow-preview article {
  border-radius: 8px;
}

.lpv1-product__topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 48px;
  padding: 0 0.9rem;
  background: #111827;
  color: #fff;
}

.lpv1-product__topbar span,
.lpv1-product__topbar strong {
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lpv1-product__topbar strong {
  color: var(--lp-cyan);
}

.lpv1-main-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: start;
  margin-top: 1rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  background: linear-gradient(135deg, #fff6ed, #ffffff 60%, #e9fbfb);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.lpv1-main-card span,
.lpv1-creator-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--lp-teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lpv1-main-card h2 {
  margin: 0 0 0.7rem;
  color: var(--lp-ink);
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  line-height: 1;
}

.lpv1-main-card p {
  max-width: 390px;
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lpv1-main-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 7px;
  background: var(--lp-coral);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.lpv1-workflow-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.lpv1-workflow-preview article {
  min-height: 132px;
  padding: 1rem;
  background: #f4f7fb;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.07);
}

.lpv1-workflow-preview article:nth-child(2) {
  background: #f0edff;
}

.lpv1-workflow-preview article:nth-child(3) {
  background: #eafafa;
}

.lpv1-workflow-preview span,
.lpv1-flow-grid span {
  color: var(--lp-coral);
  font-size: 0.72rem;
  font-weight: 950;
}

.lpv1-workflow-preview strong,
.lpv1-workflow-preview small,
.lpv1-creator-card strong,
.lpv1-creator-card small {
  display: block;
}

.lpv1-workflow-preview strong {
  margin: 1.55rem 0 0.35rem;
  font-size: 0.93rem;
}

.lpv1-workflow-preview small,
.lpv1-creator-card small {
  color: var(--lp-muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.lpv1-creator-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 0.85rem;
  padding: 1rem;
  background: #111827;
  color: #fff;
}

.lpv1-creator-card__photo {
  width: 88px;
  aspect-ratio: 1;
  border-radius: 8px;
  background-image: url("/assets/landing-creator-headshots.png");
  background-size: 300% 100%;
  background-position: center center;
}

.lpv1-creator-card strong {
  margin-bottom: 0.4rem;
  font-size: 1.08rem;
}

.lpv1-photo-stack {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 170px 170px;
  gap: 0.85rem;
}

.lpv1-photo-stack img {
  width: 170px;
  height: 230px;
  border: 8px solid #fff;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--lp-shadow-soft);
}

.lpv1-photo-stack img:nth-child(1) {
  transform: translateY(-34px);
}

.lpv1-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: #111827;
}

.lpv1-proof-band article {
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2.3rem) 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.lpv1-proof-band article:last-child {
  border-right: 0;
}

.lpv1-proof-band span,
.lpv1-proof-band small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lpv1-proof-band strong {
  display: block;
  margin: 0.45rem 0;
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.lpv1-proof-band article:nth-child(2) strong {
  color: var(--lp-amber);
}

.lpv1-proof-band article:nth-child(3) strong {
  color: var(--lp-cyan);
}

.lpv1-proof-band article:nth-child(4) strong {
  color: #ff8a81;
}

.lpv1-audience,
.lpv1-flow,
.lpv1-ops {
  width: min(1240px, 91vw);
  margin: 0 auto;
}

.lpv1-audience {
  padding: clamp(4rem, 7vw, 6.2rem) 0 0;
}

.lpv1-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.lpv1-section-head--compact {
  grid-template-columns: 1fr;
  max-width: 780px;
  text-align: center;
  margin-inline: auto;
}

.lpv1-section-head h2,
.lpv1-ops h2 {
  margin: 0;
  color: var(--lp-ink);
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  line-height: 1.02;
}

.lpv1-section-head p,
.lpv1-ops p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.lpv1-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.lpv1-lane {
  display: grid;
  grid-template-rows: 280px 1fr;
  min-height: 620px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--lp-shadow-soft);
}

.lpv1-lane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpv1-lane > div {
  padding: clamp(1.35rem, 2.2vw, 2rem);
}

.lpv1-lane span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--lp-teal);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lpv1-lane--brand span {
  color: #c98500;
}

.lpv1-lane h3 {
  margin: 0;
  color: var(--lp-ink);
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.lpv1-lane ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.lpv1-lane li {
  position: relative;
  padding-left: 1.45rem;
  color: #273449;
  font-weight: 750;
  line-height: 1.4;
}

.lpv1-lane li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--lp-coral);
}

.lpv1-flow {
  padding: clamp(4rem, 7vw, 6.2rem) 0;
}

.lpv1-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.lpv1-flow-grid article {
  min-height: 270px;
  padding: 1.25rem;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.lpv1-flow-grid article:nth-child(2) {
  background: #f3f0ff;
}

.lpv1-flow-grid article:nth-child(3) {
  background: #eafafa;
}

.lpv1-flow-grid article:nth-child(4) {
  background: #fff7e5;
}

.lpv1-flow-grid strong {
  display: block;
  margin: 4rem 0 0.8rem;
  color: var(--lp-ink);
  font-size: 1.08rem;
}

.lpv1-flow-grid p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.lpv1-ops {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(4rem, 7vw, 6rem);
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: 8px;
  background: linear-gradient(135deg, #111827 0 38%, #17313a 100%);
  color: #fff;
  overflow: hidden;
}

.lpv1-ops h2,
.lpv1-ops p {
  color: #fff;
}

.lpv1-ops p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.lpv1-ops .lpv1-button--secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}

.lpv1-ops-panel {
  display: grid;
  gap: 0.85rem;
}

.lpv1-ops-panel article {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.lpv1-ops-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lpv1-ops-panel strong {
  display: block;
  margin-top: 0.45rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

@media (prefers-reduced-motion: reduce) {
  .lpv1-button {
    transition: none;
  }
}

@media (max-width: 1160px) {
  .lpv1-hero,
  .lpv1-section-head,
  .lpv1-ops {
    grid-template-columns: 1fr;
  }

  .lpv1-product {
    min-height: 590px;
  }

  .lpv1-product__shell {
    width: min(620px, 78%);
  }

  .lpv1-photo-stack {
    right: 2%;
  }

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

@media (max-width: 880px) {
  .lpv1-hero {
    width: min(650px, 91vw);
    min-height: auto;
  }

  .lpv1-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .lpv1-live-strip,
  .lpv1-proof-band,
  .lpv1-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lpv1-product {
    display: grid;
    gap: 1rem;
    min-height: auto;
  }

  .lpv1-product::before {
    display: none;
  }

  .lpv1-product__shell,
  .lpv1-photo-stack {
    position: relative;
    inset: auto;
    width: 100%;
  }

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

  .lpv1-photo-stack img {
    width: 100%;
    height: 230px;
  }

  .lpv1-photo-stack img:nth-child(1) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .lpv1-actions,
  .lpv1-button {
    width: 100%;
  }

  .lpv1-live-strip,
  .lpv1-proof-band,
  .lpv1-workflow-preview,
  .lpv1-flow-grid,
  .lpv1-audience-grid {
    grid-template-columns: 1fr;
  }

  .lpv1-main-card,
  .lpv1-creator-card {
    grid-template-columns: 1fr;
  }

  .lpv1-main-card a {
    width: fit-content;
  }

  .lpv1-lane {
    min-height: 0;
    grid-template-rows: 220px 1fr;
  }

  .lpv1-ops {
    width: 100%;
    border-radius: 0;
  }
}

/* Landing V1 fidelity pass: align hero with accepted preview */
.landing-v1 .lpv1-hero {
  grid-template-columns: minmax(470px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(1.2rem, 2vw, 2.4rem);
  align-items: start;
  min-height: 0;
  padding-top: clamp(2.25rem, 4vw, 3.75rem);
  padding-bottom: 0.25rem;
}

.landing-v1 .lpv1-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 1.25rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 79, 70, 0.18);
  border-radius: 999px;
  background: #fff0ef;
  color: #ff4f46;
  font-size: 0.78rem;
  font-weight: 850;
}

.landing-v1 .lpv1-badge::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-right: 0.45rem;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 80% 94%, 50% 70%, 20% 94%, 32% 56%, 2% 35%, 39% 35%);
}

.landing-v1 .lpv1-hero h1 {
  max-width: 610px;
  margin-bottom: 1.05rem;
  font-size: clamp(3rem, 3.85vw, 4.2rem);
  line-height: 1.02;
}

.landing-v1 .lpv1-hero h1 span,
.landing-v1 .lpv1-hero h1 b,
.landing-v1 .lpv1-hero h1 em {
  font: inherit;
  font-style: normal;
}

.landing-v1 .lpv1-hero h1 span {
  color: var(--lp-coral);
}

.landing-v1 .lpv1-hero h1 b {
  color: var(--lp-teal);
}

.landing-v1 .lpv1-hero h1 em {
  color: var(--lp-violet);
}

.landing-v1 .lpv1-hero__copy > p {
  max-width: 570px;
}

.landing-v1 .lpv1-actions {
  flex-wrap: nowrap;
  gap: 0.72rem;
  margin-top: 1.55rem;
}

.landing-v1 .lpv1-actions .lpv1-button {
  min-height: 48px;
  padding: 0.86rem 0.95rem;
  font-size: 0.9rem;
}

.landing-v1 .lpv1-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.05rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.landing-v1 .lpv1-trust li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--lp-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.landing-v1 .lpv1-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 15px;
  height: 15px;
  border: 2px solid #1fa86a;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, #1fa86a 48% 58%, transparent 59%),
    linear-gradient(45deg, transparent 47%, #1fa86a 48% 58%, transparent 59%);
}

.landing-v1 .lpv1-product {
  min-height: 450px;
  padding-top: 0.8rem;
}

.landing-v1 .lpv1-product::before {
  display: none;
}

.landing-v1 .lpv1-board {
  display: grid;
  grid-template-columns: 160px minmax(290px, 1fr) 200px;
  gap: 0.8rem;
  align-items: start;
}

.landing-v1 .lpv1-brief-card,
.landing-v1 .lpv1-shortlist-card,
.landing-v1 .lpv1-status-stack article {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.landing-v1 .lpv1-brief-card {
  min-height: 258px;
  margin-top: 1.2rem;
  padding: 0.9rem;
}

.landing-v1 .lpv1-brief-card > span,
.landing-v1 .lpv1-card-head span,
.landing-v1 .lpv1-status-stack span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--lp-teal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.landing-v1 .lpv1-brief-card > strong,
.landing-v1 .lpv1-card-head strong,
.landing-v1 .lpv1-status-stack strong {
  color: var(--lp-ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.landing-v1 .lpv1-brief-card > strong {
  display: block;
  margin: 0.7rem 0 0.85rem;
}

.landing-v1 .lpv1-brief-card div {
  padding: 0.75rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 7px;
  background: #fbfcff;
}

.landing-v1 .lpv1-brief-card small,
.landing-v1 .lpv1-status-stack small {
  display: block;
  color: var(--lp-muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.landing-v1 .lpv1-brief-card b {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  line-height: 1.2;
}

.landing-v1 .lpv1-brief-card p {
  margin: 0.9rem 0 0.15rem;
  color: var(--lp-muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.landing-v1 .lpv1-brief-card em,
.landing-v1 .lpv1-status-stack em {
  display: block;
  color: var(--lp-ink);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 950;
}

.landing-v1 .lpv1-brief-card ul {
  display: flex;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.landing-v1 .lpv1-brief-card li {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  background: #111827;
  color: #fff;
  font-size: 0;
}

.landing-v1 .lpv1-brief-card li::first-letter {
  font-size: 0.7rem;
}

.landing-v1 .lpv1-shortlist-card {
  padding: 0.78rem;
}

.landing-v1 .lpv1-card-head {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.landing-v1 .lpv1-card-head span {
  background: var(--lp-violet);
}

.landing-v1 .lpv1-shortlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.landing-v1 .lpv1-shortlist-grid div {
  min-width: 0;
  padding: 0.4rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: #fff;
}

.landing-v1 .lpv1-shortlist-grid i {
  display: block;
  aspect-ratio: 1.18;
  margin-bottom: 0.4rem;
  border-radius: 7px;
  background-image: url("/assets/landing-creator-headshots.png");
  background-repeat: no-repeat;
  background-size: 300% 100%;
  background-position: left center;
}

.landing-v1 .lpv1-shortlist-grid div:nth-child(2) i,
.landing-v1 .lpv1-shortlist-grid div:nth-child(5) i {
  background-position: center center;
}

.landing-v1 .lpv1-shortlist-grid div:nth-child(3) i,
.landing-v1 .lpv1-shortlist-grid div:nth-child(6) i {
  background-position: right center;
}

.landing-v1 .lpv1-shortlist-grid strong,
.landing-v1 .lpv1-shortlist-grid small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-v1 .lpv1-shortlist-grid strong {
  font-size: 0.72rem;
  font-weight: 900;
}

.landing-v1 .lpv1-shortlist-grid small {
  color: var(--lp-muted);
  font-size: 0.64rem;
  font-weight: 750;
}

.landing-v1 .lpv1-match-row {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.62rem;
  padding: 0.55rem;
  border-radius: 7px;
  background: #f4efff;
}

.landing-v1 .lpv1-match-row b {
  color: var(--lp-violet);
  font-size: 0.72rem;
}

.landing-v1 .lpv1-match-row a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 0.58rem;
  border-radius: 6px;
  background: #153b7a;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 850;
}

.landing-v1 .lpv1-status-stack {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.landing-v1 .lpv1-status-stack article {
  padding: 0.72rem;
}

.landing-v1 .lpv1-status-stack span {
  margin-right: 0.5rem;
  background: var(--lp-coral);
}

.landing-v1 .lpv1-status-stack article:nth-child(2) span {
  background: var(--lp-violet);
}

.landing-v1 .lpv1-status-stack article:nth-child(3) span {
  background: #2e8bea;
}

.landing-v1 .lpv1-status-stack small {
  position: relative;
  margin-top: 0.55rem;
  padding-left: 1.15rem;
}

.landing-v1 .lpv1-status-stack small::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16rem;
  width: 13px;
  height: 13px;
  border: 1px solid #1fa86a;
  border-radius: 50%;
  background: #ecfdf5;
}

.landing-v1 .lpv1-status-stack em {
  margin-top: 0.55rem;
  color: #16a365;
}

.landing-v1 .lpv1-flow-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  width: 92%;
  margin: 0.8rem auto 0;
  padding: 0.62rem;
  border: 1px solid rgba(120, 103, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(120, 103, 255, 0.1), rgba(51, 213, 208, 0.08), rgba(246, 183, 60, 0.13));
}

.landing-v1 .lpv1-flow-ribbon span {
  position: relative;
  color: #315274;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
}

.landing-v1 .lpv1-flow-ribbon span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.38rem;
  top: 50%;
  width: 0.36rem;
  height: 0.36rem;
  border-top: 2px solid #9fb2c8;
  border-right: 2px solid #9fb2c8;
  transform: translateY(-50%) rotate(45deg);
}

.landing-v1 .lpv1-proof-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1240px, 91vw);
  margin: 0 auto 0;
  border: 1px solid rgba(17, 24, 39, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--lp-shadow-soft);
  overflow: hidden;
}

.landing-v1 .lpv1-proof-band article {
  padding: 1.2rem;
  border-right: 1px solid rgba(17, 24, 39, 0.09);
}

.landing-v1 .lpv1-proof-band span,
.landing-v1 .lpv1-proof-band small {
  color: var(--lp-muted);
}

.landing-v1 .lpv1-proof-band strong,
.landing-v1 .lpv1-proof-band article:nth-child(2) strong,
.landing-v1 .lpv1-proof-band article:nth-child(3) strong,
.landing-v1 .lpv1-proof-band article:nth-child(4) strong {
  color: var(--lp-ink);
  font-size: clamp(1.55rem, 2.35vw, 2.45rem);
}

.landing-v1 .lpv1-audience {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

@media (max-width: 1240px) {
  .landing-v1 .lpv1-hero {
    grid-template-columns: 1fr;
  }

  .landing-v1 .lpv1-product {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .landing-v1 .lpv1-board {
    grid-template-columns: 1fr;
  }

  .landing-v1 .lpv1-brief-card {
    margin-top: 0;
  }

  .landing-v1 .lpv1-flow-ribbon,
  .landing-v1 .lpv1-proof-band {
    grid-template-columns: 1fr;
  }

  .landing-v1 .lpv1-flow-ribbon span:not(:last-child)::after {
    display: none;
  }
}

/* --- Collabify exact landing implementation --- */
body:has(.landing-exact) {
  background: #f8fbff;
}

body:has(.landing-exact) .site-header.ce-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
  min-height: 72px;
  padding: 0 clamp(1.4rem, 4vw, 3.8rem);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

body:has(.landing-exact) .ce-header .brand {
  gap: 0.7rem;
}

.ce-brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 52%, #33d5d0 0 16%, transparent 17%),
    conic-gradient(from 210deg, #ff4f46 0 34%, transparent 34% 48%, #32c8c2 48% 72%, #745cff 72% 100%);
  color: #fff;
  font-size: 0;
  box-shadow: 0 12px 28px rgba(255, 79, 70, 0.18);
}

.ce-brand-mark::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
}

.ce-brand-text {
  display: grid;
  color: #111827;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.ce-brand-text small {
  color: #111827;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body:has(.landing-exact) .ce-header .site-nav {
  justify-content: flex-end;
  gap: clamp(1rem, 2.6vw, 2.6rem);
}

body:has(.subpage--brand) .ce-header .site-nav,
body:has(.subpage--creator) .ce-header .site-nav,
body:has(.public-content-page) .ce-header .site-nav {
  justify-content: flex-end;
  gap: clamp(1rem, 2.6vw, 2.6rem);
}

body:has(.landing-exact) .ce-header .site-nav > a:not(.nav-cta):not(.nav-link-secondary) {
  padding: 0;
  background: transparent;
  color: #263248;
  font-size: 0.9rem;
  font-weight: 760;
}

body:has(.subpage--brand) .ce-header .site-nav > a:not(.nav-cta):not(.nav-link-secondary),
body:has(.subpage--creator) .ce-header .site-nav > a:not(.nav-cta):not(.nav-link-secondary),
body:has(.public-content-page) .ce-header .site-nav > a:not(.nav-cta):not(.nav-link-secondary) {
  padding: 0;
  background: transparent;
  color: #263248;
  font-size: 0.9rem;
  font-weight: 760;
}

body:has(.landing-exact) .ce-header .nav-public-actions {
  margin-left: clamp(1rem, 2vw, 2rem);
}

body:has(.subpage--brand) .ce-header .nav-public-actions,
body:has(.subpage--creator) .ce-header .nav-public-actions,
body:has(.public-content-page) .ce-header .nav-public-actions {
  margin-left: clamp(1rem, 2vw, 2rem);
}

body:has(.landing-exact) .ce-header .nav-link-secondary {
  min-height: 40px;
  padding: 0 1.05rem;
  border: 1px solid rgba(15, 23, 42, 0.13);
  border-radius: 8px;
  background: #fff;
  color: #263248;
  font-weight: 760;
}

body:has(.subpage--brand) .ce-header .nav-link-secondary,
body:has(.subpage--creator) .ce-header .nav-link-secondary,
body:has(.public-content-page) .ce-header .nav-link-secondary {
  min-height: 40px;
  padding: 0 1.05rem;
  border: 1px solid rgba(15, 23, 42, 0.13);
  border-radius: 8px;
  background: #fff;
  color: #263248;
  font-weight: 760;
}

body:has(.landing-exact) .ce-header .nav-cta {
  min-height: 42px;
  border-radius: 8px !important;
  background: #ff4f46 !important;
  box-shadow: 0 14px 30px rgba(255, 79, 70, 0.24);
}

body:has(.subpage--brand) .ce-header .nav-cta,
body:has(.subpage--creator) .ce-header .nav-cta,
body:has(.public-content-page) .ce-header .nav-cta {
  min-height: 42px;
  border-radius: 8px !important;
  background: #ff4f46 !important;
  box-shadow: 0 14px 30px rgba(255, 79, 70, 0.24);
}

.landing-exact {
  --ce-ink: #111827;
  --ce-muted: #5e6b7f;
  --ce-line: rgba(15, 23, 42, 0.12);
  --ce-coral: #ff4f46;
  --ce-teal: #079a9a;
  --ce-cyan: #34d5d0;
  --ce-violet: #745cff;
  --ce-blue: #2f72e8;
  --ce-amber: #ffad2f;
  --ce-green: #18a765;
  --ce-shadow: 0 20px 58px rgba(15, 23, 42, 0.12);
  color: var(--ce-ink);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 16%, rgba(52, 213, 208, 0.11), transparent 28%),
    radial-gradient(circle at 16% 45%, rgba(255, 79, 70, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 56%, #ffffff 100%);
}

.ce-hero {
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(700px, 1.28fr);
  gap: clamp(1.4rem, 2.4vw, 3rem);
  align-items: start;
  width: min(1410px, 92vw);
  margin: 0 auto;
  padding: clamp(1.3rem, 2.8vw, 2.7rem) 0 0.8rem;
}

.ce-hero-copy h1 {
  max-width: 590px;
  margin: 0 0 0.85rem;
  color: var(--ce-ink);
  font-size: clamp(2.65rem, 3.7vw, 4.45rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
}

.ce-hero-copy h1 span,
.ce-hero-copy h1 b,
.ce-hero-copy h1 em {
  font: inherit;
  font-style: normal;
}

.ce-hero-copy h1 span {
  color: var(--ce-coral);
}

.ce-hero-copy h1 b {
  color: var(--ce-teal);
}

.ce-hero-copy h1 em {
  color: var(--ce-violet);
}

.ce-hero-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--ce-muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.ce-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.ce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.ce-button::after,
.ce-live > a::after,
.ce-panel-copy a::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 0.6rem;
  background: currentColor;
  clip-path: polygon(22% 14%, 100% 50%, 22% 86%, 22% 61%, 0 61%, 0 39%, 22% 39%);
}

.ce-button-primary {
  background: var(--ce-coral);
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 79, 70, 0.27);
}

.ce-button-secondary {
  border-color: rgba(15, 23, 42, 0.16);
  background: #fff;
  color: var(--ce-ink);
}

.ce-journey {
  min-width: 0;
}

.ce-journey-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  padding: 0 0.4rem;
}

.ce-journey-steps span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: #25314a;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.ce-journey-steps span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 22px);
  right: calc(-50% + 18px);
  top: 18px;
  border-top: 2px dashed #9dafc5;
}

.ce-journey-steps i,
.ce-process-track span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(7, 154, 154, 0.35);
  background: #eefdfc;
  color: var(--ce-teal);
  font-style: normal;
  font-weight: 950;
}

.ce-journey-steps span:nth-child(2) i,
.ce-process-track article:nth-child(2) span {
  border-color: rgba(116, 92, 255, 0.35);
  background: #f3f0ff;
  color: var(--ce-violet);
}

.ce-journey-steps span:nth-child(3) i,
.ce-process-track article:nth-child(3) span {
  border-color: rgba(255, 173, 47, 0.42);
  background: #fff7e8;
  color: var(--ce-amber);
}

.ce-journey-steps span:nth-child(4) i,
.ce-process-track article:nth-child(4) span {
  border-color: rgba(47, 114, 232, 0.32);
  background: #eff6ff;
  color: var(--ce-blue);
}

.ce-journey-steps span:nth-child(5) i,
.ce-process-track article:nth-child(5) span {
  border-color: rgba(24, 167, 101, 0.32);
  background: #ecfdf5;
  color: var(--ce-green);
}

.ce-flow-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.05fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

.ce-flow-card {
  min-width: 0;
  min-height: 185px;
  padding: 0.78rem;
  border: 1px solid var(--ce-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.ce-flow-card strong,
.ce-flow-card small {
  display: block;
}

.ce-flow-card strong {
  margin-bottom: 0.38rem;
  font-size: 0.82rem;
  font-weight: 950;
}

.ce-flow-card small,
.ce-flow-card p,
.ce-flow-card li,
.ce-flow-card em {
  color: var(--ce-muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 760;
}

.ce-flow-card a {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: var(--ce-blue);
  font-size: 0.68rem;
  font-weight: 900;
}

.ce-flow-card-campaign p {
  color: var(--ce-green);
}

.ce-avatar-row {
  display: flex;
  align-items: center;
  margin: 1.05rem 0 0.55rem;
}

.ce-avatar-row i,
.ce-avatar-row b {
  width: 24px;
  height: 24px;
  margin-right: -6px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-image: url("/assets/landing-creator-headshots.png");
  background-size: 300% 100%;
}

.ce-avatar-row i:nth-child(2) {
  background-position: center;
}

.ce-avatar-row i:nth-child(3) {
  background-position: right;
}

.ce-avatar-row b {
  display: grid;
  place-items: center;
  background: #eef2f7;
  color: var(--ce-ink);
  font-size: 0.72rem;
}

.ce-creator-photo,
.ce-approval-photo {
  height: 94px;
  margin: -0.78rem -0.78rem 0.58rem;
  border-radius: 8px 8px 0 0;
  background-image: url("/assets/landing-creator-headshots.png");
  background-size: cover;
  background-position: center;
}

.ce-approval-photo {
  height: 78px;
  margin-top: 0.7rem;
  background-image: url("/assets/landing-creator-photo.png");
}

.ce-flow-card-creator p {
  color: var(--ce-green);
}

.ce-signature-line {
  display: grid;
  min-height: 52px;
  align-items: end;
  margin-top: 0.5rem;
  color: #1f3767;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.35rem;
  font-style: italic;
  border-bottom: 1px solid #1f3767;
}

.ce-flow-card-delivery ul {
  display: grid;
  gap: 0.6rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.ce-flow-card-delivery li {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
}

.ce-flow-card-delivery b,
.ce-flow-card-wallet b {
  color: var(--ce-green);
}

.ce-flow-card-wallet div {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(24, 167, 101, 0.18);
  border-radius: 7px;
  background: #effcf7;
}

.ce-flow-card-wallet span,
.ce-flow-card-wallet b {
  display: block;
}

.ce-flow-card-wallet b {
  margin-top: 0.45rem;
  font-size: 1.2rem;
}

.ce-live {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr) 1.05fr;
  gap: 0;
  align-items: center;
  width: min(1410px, 92vw);
  margin: 0 auto 0.9rem;
  border: 1px solid var(--ce-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.ce-live-title,
.ce-live article,
.ce-live > a {
  min-height: 68px;
  padding: 0 1.2rem;
  border-right: 1px solid rgba(15, 23, 42, 0.1);
}

.ce-live-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
}

.ce-live-title span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ce-green);
}

.ce-live article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

.ce-live i {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eafafa;
}

.ce-live i::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--ce-teal);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.ce-live i[data-icon="creator"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.ce-live i[data-icon="brand"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l8-4v18'/%3E%3Cpath d='M19 21V11l-6-4'/%3E%3Cpath d='M9 9h.01M9 13h.01M9 17h.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l8-4v18'/%3E%3Cpath d='M19 21V11l-6-4'/%3E%3Cpath d='M9 9h.01M9 13h.01M9 17h.01'/%3E%3C/svg%3E");
}

.ce-live i[data-icon="campaign"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 18-5v12L3 14v-3Z'/%3E%3Cpath d='M11.6 16.8a3 3 0 1 1-5.8-1.6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 18-5v12L3 14v-3Z'/%3E%3Cpath d='M11.6 16.8a3 3 0 1 1-5.8-1.6'/%3E%3C/svg%3E");
}

.ce-live i[data-icon="views"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s4-7 10-7 10 7 10 7-4 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s4-7 10-7 10 7 10 7-4 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.ce-live small {
  color: var(--ce-muted);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.ce-live strong {
  color: var(--ce-green);
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
}

.ce-live > a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0;
  color: var(--ce-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.ce-audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  width: min(1410px, 92vw);
  margin: 0 auto;
}

.ce-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(300px, 1fr);
  gap: 1.25rem;
  min-height: 235px;
  padding: 1rem;
  border: 1px solid var(--ce-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.ce-panel-brand {
  border-color: rgba(255, 173, 47, 0.35);
  background: linear-gradient(135deg, #fffaf0, #ffffff 60%);
}

.ce-panel-creator {
  border-color: rgba(7, 154, 154, 0.28);
  background: linear-gradient(135deg, #effdfd, #ffffff 66%);
}

.ce-panel-copy {
  position: relative;
  z-index: 2;
  max-width: 340px;
}

.ce-panel-copy span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ce-coral);
  font-size: 1.45rem;
  font-weight: 950;
}

.ce-panel-creator .ce-panel-copy span {
  color: var(--ce-teal);
}

.ce-panel-copy h2 {
  margin: 0 0 0.8rem;
  color: var(--ce-ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.ce-panel-copy ul {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ce-panel-copy li {
  position: relative;
  padding-left: 1rem;
  color: #344055;
  font-size: 0.72rem;
  font-weight: 760;
}

.ce-panel-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.ce-panel-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 0.9rem;
  padding: 0 0.9rem;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: var(--ce-coral);
  font-size: 0.72rem;
  font-weight: 900;
}

.ce-panel-creator .ce-panel-copy a {
  color: var(--ce-teal);
}

.ce-panel > img {
  width: 100%;
  height: 100%;
  max-height: 215px;
  border-radius: 8px;
  object-fit: cover;
}

.ce-dashboard-card,
.ce-creator-studio {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(330px, 45%);
  padding: 0.8rem;
  border: 1px solid var(--ce-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.ce-dashboard-card strong,
.ce-creator-studio strong {
  font-size: 0.8rem;
}

.ce-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 0.65rem 0;
}

.ce-mini-stats span {
  padding: 0.45rem;
  border-radius: 6px;
  background: #f5f8fc;
  color: var(--ce-muted);
  font-size: 0.58rem;
  font-weight: 760;
}

.ce-mini-stats b {
  display: block;
  color: var(--ce-green);
  font-size: 0.72rem;
}

.ce-dashboard-card ul,
.ce-creator-studio ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ce-dashboard-card li,
.ce-creator-studio li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--ce-muted);
  font-size: 0.62rem;
  font-weight: 760;
}

.ce-dashboard-card li b,
.ce-creator-studio li b {
  color: var(--ce-green);
}

.ce-creator-studio {
  right: 1rem;
  width: min(330px, 43%);
}

.ce-creator-studio > div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 0.5rem;
  align-items: center;
  margin: 0.65rem 0;
}

.ce-creator-studio img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.ce-creator-studio span,
.ce-creator-studio small {
  display: block;
}

.ce-creator-studio span {
  color: var(--ce-ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.ce-creator-studio small {
  color: var(--ce-muted);
  font-size: 0.62rem;
}

.ce-creator-studio b {
  color: var(--ce-green);
  font-size: 0.62rem;
}

.ce-process {
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 0.75rem 0 1.1rem;
  text-align: center;
}

.ce-process h2 {
  margin: 0 0 0.9rem;
  color: var(--ce-ink);
  font-size: clamp(1.7rem, 2.3vw, 2.25rem);
  line-height: 1.1;
}

.ce-process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.ce-process-track article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.ce-process-track article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 38px);
  right: calc(-50% + 38px);
  top: 22px;
  border-top: 2px dashed #91a3bc;
}

.ce-process-track strong {
  font-size: 0.82rem;
}

.ce-process-track p {
  max-width: 170px;
  margin: 0;
  color: var(--ce-muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.ce-brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0.7rem 4vw;
  border-top: 1px solid var(--ce-line);
  border-bottom: 1px solid var(--ce-line);
  background: rgba(255, 255, 255, 0.75);
}

.ce-brand-strip strong {
  color: var(--ce-ink);
  font-size: 0.9rem;
}

.ce-brand-strip span {
  color: #20293b;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 950;
}

.landing-customer {
  background:
    radial-gradient(circle at 88% 10%, rgba(52, 213, 208, 0.16), transparent 30%),
    radial-gradient(circle at 9% 22%, rgba(255, 79, 70, 0.12), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 44%, #ffffff 100%);
}

.customer-hero {
  grid-template-columns: minmax(400px, 0.92fr) minmax(520px, 1fr);
  align-items: center;
  padding-top: clamp(1.4rem, 3vw, 3.1rem);
  padding-bottom: 0.8rem;
}

.customer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  color: var(--ce-teal);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.customer-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ce-coral);
  box-shadow: 0 0 0 6px rgba(255, 79, 70, 0.12);
}

.customer-hero-copy h1 {
  max-width: 700px;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 2.8vw, 3.45rem);
  line-height: 1.04;
}

.customer-hero-lead {
  max-width: 650px !important;
  color: #334155 !important;
  font-size: clamp(0.94rem, 1vw, 1.07rem) !important;
  line-height: 1.6 !important;
}

.customer-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
  max-width: 690px;
}

.customer-choice article {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 156px;
  padding: 0.9rem;
  border: 1px solid var(--ce-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.customer-choice strong {
  color: var(--ce-ink);
  font-size: 0.96rem;
  font-weight: 950;
}

.customer-choice p {
  margin: 0 !important;
  color: var(--ce-muted) !important;
  font-size: 0.78rem !important;
  line-height: 1.5 !important;
}

.customer-choice .ce-button {
  justify-self: start;
  margin-top: auto;
}

.customer-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.85rem;
}

.customer-proof-line span,
.customer-proof-line strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.customer-proof-line span {
  color: var(--ce-muted);
}

.customer-proof-line strong {
  padding: 0 0.75rem;
  border: 1px solid rgba(7, 154, 154, 0.18);
  background: #effdfd;
  color: var(--ce-teal);
}

.customer-product {
  position: relative;
  min-height: 480px;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid var(--ce-line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.96)),
    url("/assets/creator-studio-hero.png") center / cover;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.customer-product::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 30%;
  height: 260px;
  background: linear-gradient(90deg, rgba(255, 79, 70, 0.18), rgba(52, 213, 208, 0.22));
  transform: rotate(-8deg);
  pointer-events: none;
}

.customer-product-top,
.customer-flow-board,
.customer-creator-preview {
  position: relative;
  z-index: 1;
}

.customer-product-top {
  width: min(430px, 100%);
  padding: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.customer-product-top span,
.customer-product-top small {
  display: block;
  color: var(--ce-muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.customer-product-top strong {
  display: block;
  margin: 0.35rem 0;
  color: var(--ce-ink);
  font-size: clamp(1.18rem, 1.6vw, 1.65rem);
  line-height: 1.05;
}

.customer-flow-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.customer-flow-board article {
  min-height: 112px;
  padding: 0.72rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.customer-flow-board span {
  color: var(--ce-coral);
  font-size: 0.66rem;
  font-weight: 950;
}

.customer-flow-board strong {
  display: block;
  margin: 0.45rem 0;
  color: var(--ce-ink);
  font-size: 0.82rem;
  font-weight: 950;
}

.customer-flow-board p {
  margin: 0;
  color: var(--ce-muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.customer-creator-preview {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  width: min(420px, calc(100% - 2.8rem));
  padding: 0.8rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.13);
}

.customer-creator-preview img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.customer-creator-preview strong,
.customer-creator-preview small {
  display: block;
}

.customer-creator-preview strong {
  color: var(--ce-ink);
  font-size: 0.92rem;
}

.customer-creator-preview small {
  color: var(--ce-muted);
  font-size: 0.72rem;
}

.customer-creator-preview b {
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  background: #effdfd;
  color: var(--ce-teal);
  font-size: 0.68rem;
}

.customer-live {
  margin-top: 0.4rem;
  margin-bottom: 1.1rem;
}

.customer-why,
.customer-final-cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 0.9rem;
  width: min(1410px, 92vw);
  margin: 0 auto 1rem;
}

.customer-why > div,
.customer-why article,
.customer-final-cta {
  border: 1px solid var(--ce-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.customer-why > div,
.customer-why article {
  padding: 1.15rem;
}

.customer-why h2,
.customer-final-cta h2 {
  margin: 0;
  color: var(--ce-ink);
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  line-height: 1.12;
}

.customer-why article strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ce-coral);
  font-size: 1rem;
  font-weight: 950;
}

.customer-why article:nth-child(3) strong {
  color: var(--ce-teal);
}

.customer-why p,
.customer-final-cta p {
  margin: 0;
  color: var(--ce-muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.customer-audience {
  margin-top: 0.2rem;
}

.customer-panel {
  min-height: 320px;
}

.customer-panel .ce-panel-copy {
  max-width: 410px;
}

.customer-panel .ce-panel-copy h2 {
  font-size: 1rem;
}

.customer-panel .ce-panel-copy li {
  font-size: 0.76rem;
}

.customer-process {
  padding-top: 1.3rem;
}

.customer-process h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.customer-final-cta {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.3rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(239,253,253,0.96)),
    linear-gradient(90deg, rgba(255, 79, 70, 0.08), rgba(52, 213, 208, 0.12));
}

.customer-final-cta .ce-actions {
  margin-top: 0;
  justify-content: end;
}

.ce-footer {
  position: relative;
  margin-top: 0;
  padding: 0;
  border-top: 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 18%, #eef6f8 100%);
  color: var(--ce-ink);
  overflow: hidden;
}

.ce-footer::before {
  content: "";
  position: absolute;
  left: 5vw;
  top: 28px;
  width: 230px;
  height: 68px;
  background: linear-gradient(90deg, rgba(255, 79, 70, 0.16), rgba(246, 183, 60, 0.18));
  clip-path: polygon(0 0, 100% 34%, 82% 100%, 0 70%);
  pointer-events: none;
}

.ce-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(520px, 1.8fr) minmax(280px, 0.9fr);
  gap: 2rem;
  width: min(1410px, 92vw);
  margin: 0 auto;
  padding: 3.2rem 0 1rem;
}

.ce-footer-brand p {
  max-width: 260px;
  margin: 1rem 0;
  color: var(--ce-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.ce-footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.ce-footer-nav-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ce-footer-nav div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.ce-footer-nav strong {
  color: var(--ce-ink);
  font-size: 0.78rem;
}

.ce-footer-nav a,
.ce-footer-nav span {
  color: var(--ce-muted);
  font-size: 0.72rem;
  font-weight: 740;
}

.ce-founder-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
  align-items: center;
  padding-left: 1.4rem;
  border-left: 1px solid var(--ce-line);
}

.ce-founder-photo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef2f7;
}

.ce-founder-signature {
  display: block;
  width: 150px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.1rem;
}

.ce-founder-card strong,
.ce-founder-card span {
  display: block;
}

.ce-founder-card strong {
  font-size: 0.9rem;
}

.ce-founder-card span,
.ce-founder-card p {
  color: var(--ce-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.ce-founder-card p {
  margin: 0.45rem 0 0;
}

.ce-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1410px, 92vw);
  margin: 0 auto;
  padding: 0.9rem 0;
  border-top: 1px solid var(--ce-line);
  color: var(--ce-muted);
  font-size: 0.68rem;
}

@media (max-width: 1180px) {
  .ce-hero,
  .ce-audience,
  .ce-footer-main {
    grid-template-columns: 1fr;
  }

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

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

  .ce-live-title,
  .ce-live > a {
    grid-column: 1 / -1;
  }

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

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

  .customer-product {
    min-height: 455px;
  }

  .customer-why {
    grid-template-columns: 1fr 1fr;
  }

  .customer-why > div {
    grid-column: 1 / -1;
  }

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

  .customer-final-cta {
    grid-template-columns: 1fr;
  }

  .customer-final-cta .ce-actions {
    justify-content: start;
  }
}

/* --- Public subpages aligned with Collabify landing --- */
body:has(.subpage--brand),
body:has(.subpage--creator),
body:has(.public-content-page) {
  background: #f8fbff;
}

body:has(.subpage--brand) .site-header.ce-header,
body:has(.subpage--creator) .site-header.ce-header,
body:has(.public-content-page) .site-header.ce-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
  min-height: 72px;
  padding: 0 clamp(1.4rem, 4vw, 3.8rem);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.subpage--brand,
.subpage--creator {
  --ce-ink: #111827;
  --ce-muted: #5e6b7f;
  --ce-line: rgba(15, 23, 42, 0.12);
  --ce-coral: #ff4f46;
  --ce-teal: #079a9a;
  --ce-amber: #ffad2f;
  --ce-green: #18a765;
  background:
    radial-gradient(circle at 90% 16%, rgba(52, 213, 208, 0.11), transparent 28%),
    radial-gradient(circle at 14% 40%, rgba(255, 79, 70, 0.08), transparent 24%),
    linear-gradient(180deg, #fff, #f8fbff 52%, #fff);
}

.subpage .sub-hero {
  width: min(1410px, 92vw);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) 0 1rem;
  grid-template-columns: minmax(390px, 0.8fr) minmax(480px, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.subpage .sub-hero__copy h1 {
  color: var(--ce-ink);
  font-size: clamp(3rem, 4.45vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.subpage .sub-hero__copy h1 span {
  color: var(--ce-coral);
}

.subpage--creator .sub-hero__copy h1 span {
  color: var(--ce-teal);
}

.subpage .sub-hero__copy p {
  color: var(--ce-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.subpage .sub-proof-row article,
.subpage .sub-form-card,
.subpage .sub-feature-band article,
.subpage .sub-photo-panel {
  border: 1px solid var(--ce-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.subpage .sub-proof-row article strong {
  color: var(--ce-ink);
}

.subpage .sub-photo-panel {
  min-height: 520px;
  overflow: hidden;
}

.subpage .sub-photo {
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.subpage .sub-stat-card,
.subpage .sub-mini-card {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.subpage .sub-form-section {
  width: min(1410px, 92vw);
  margin: 1rem auto;
  grid-template-columns: minmax(380px, 0.55fr) minmax(0, 1.45fr);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--ce-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  overflow: visible;
}

.subpage .sub-form-intro h2,
.subpage .sub-feature-band h3 {
  color: var(--ce-ink);
}

.subpage .sub-form-intro {
  min-width: 0;
  padding-left: 0.1rem;
}

.subpage .sub-form-intro h2 {
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  overflow-wrap: normal;
  word-break: normal;
}

.subpage .sub-step-list div,
.subpage .brand-register-steps button {
  border-radius: 8px;
}

.subpage .sub-submit,
.subpage .sub-submit--brand,
.subpage .sub-submit--creator {
  border-radius: 8px;
  background: var(--ce-coral);
  box-shadow: 0 14px 30px rgba(255, 79, 70, 0.22);
}

.subpage--creator .sub-submit,
.subpage--creator .sub-submit--creator {
  background: var(--ce-teal);
  box-shadow: 0 14px 30px rgba(7, 154, 154, 0.2);
}

.subpage .sub-feature-band {
  width: min(1410px, 92vw);
  margin: 1rem auto 2rem;
}

.subpage .sub-feature-band article {
  min-height: 190px;
}

.public-content-page {
  --ce-ink: #111827;
  --ce-muted: #5e6b7f;
  --ce-line: rgba(15, 23, 42, 0.12);
  --ce-coral: #ff4f46;
  color: var(--ce-ink);
  background: linear-gradient(180deg, #fff, #f8fbff 54%, #fff);
}

.public-content-hero {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
}

.public-content-hero span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--ce-coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.public-content-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.public-content-hero p {
  max-width: 720px;
  color: var(--ce-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.public-content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.4rem;
  width: min(1120px, 92vw);
  margin: 0 auto 3rem;
}

.public-content-body,
.public-content-side {
  border: 1px solid var(--ce-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.public-content-body {
  padding: clamp(1.3rem, 3vw, 2.2rem);
}

.public-content-body h2,
.public-content-body h3 {
  color: var(--ce-ink);
}

.public-content-body p,
.public-content-body li {
  color: var(--ce-muted);
  line-height: 1.7;
}

.public-content-side {
  align-self: start;
  padding: 1.2rem;
}

.public-content-side p {
  color: var(--ce-muted);
}

.public-content-side a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 0.9rem;
  border-radius: 8px;
  background: var(--ce-coral);
  color: #fff;
  font-weight: 900;
}

.public-page-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.public-page-editor {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #fff;
}

.public-page-editor-head,
.public-page-editor-actions,
.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
}

.public-page-editor-head small {
  display: block;
  color: #718096;
}

.editor-toolbar {
  justify-content: flex-start;
}

.editor-toolbar button {
  min-height: 32px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 7px;
  background: #f8fafc;
  color: #1f2937;
  font-weight: 800;
}

.public-page-editor textarea {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .public-content-shell,
  .public-page-editor-grid {
    grid-template-columns: 1fr;
  }

  .public-content-page,
  .public-content-shell,
  .public-content-body,
  .public-content-side {
    min-width: 0;
    max-width: 100%;
  }

  .public-content-body {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .public-content-body * {
    max-width: 100%;
  }

  .ce-audience {
    grid-template-columns: 1fr;
  }

  .ce-panel {
    grid-template-columns: minmax(250px, 0.72fr) minmax(300px, 1fr);
  }

  .ce-footer-nav-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .subpage .sub-hero {
    grid-template-columns: 1fr;
    width: min(100% - 1.25rem, 620px);
    gap: 1.35rem;
    overflow: hidden;
  }

  .subpage .sub-form-section {
    grid-template-columns: 1fr;
    width: min(100% - 1.25rem, 620px);
    padding: 1rem;
    overflow: hidden;
  }

  .subpage .sub-hero__copy,
  .subpage .sub-hero__copy h1,
  .subpage .sub-hero__copy p,
  .subpage .sub-proof-row,
  .subpage .sub-form-intro,
  .subpage .sub-form-intro h2,
  .subpage .sub-step-list {
    min-width: 0;
    max-width: 100%;
  }

  .subpage .sub-form-intro {
    position: static;
  }

  .subpage .sub-hero__copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.65rem);
    overflow-wrap: break-word;
  }

  .subpage .sub-form-intro h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.65rem);
    overflow-wrap: break-word;
  }

  .subpage .sub-step-list div {
    min-width: 0;
  }

  .subpage .sub-photo-panel {
    width: 100%;
    min-height: 460px;
  }

  .subpage .sub-photo {
    right: 0;
    width: min(80%, 330px);
    height: 360px;
  }

  .subpage .sub-stat-card {
    left: 0.85rem;
    right: auto;
    width: min(220px, calc(100% - 1.7rem));
  }

  .subpage .sub-mini-card {
    left: 0.85rem;
    right: 0.85rem;
    width: auto;
  }

  body:has(.landing-exact) .site-header.ce-header {
    grid-template-columns: 1fr auto;
    padding-inline: 1rem;
  }

  body:has(.landing-exact) .ce-header .site-nav {
    gap: 0.7rem;
  }

  .ce-hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .ce-flow-cards,
  .ce-live,
  .ce-panel,
  .ce-process-track,
  .ce-footer-nav,
  .ce-footer-bottom {
    grid-template-columns: 1fr;
  }

  .ce-journey-steps {
    display: none;
  }

  .ce-dashboard-card,
  .ce-creator-studio {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .ce-process-track article::after {
    display: none;
  }

  .public-content-page,
  .public-content-hero,
  .public-content-shell,
  .subpage,
  .subpage .sub-form-section,
  .subpage .sub-form-card,
  .subpage .sub-feature-band {
    max-width: 100%;
    overflow-x: hidden;
  }

  .public-content-hero h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.3rem);
    overflow-wrap: anywhere;
  }

  .public-content-hero p,
  .public-content-body,
  .public-content-body * {
    overflow-wrap: anywhere;
  }

  .brand-shell .creator-match-card,
  .brand-shell .brand-application-card,
  .brand-shell .brand-match-card {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .brand-shell .creator-card-head,
  .brand-shell .row-actions,
  .brand-shell .brand-match-actions,
  .brand-shell .mini-form {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .brand-shell .creator-card-head .tag,
  .brand-shell .row-actions > *,
  .brand-shell .brand-match-actions > *,
  .brand-shell .mini-form > *,
  .brand-shell .small-button,
  .brand-shell .button {
    width: 100%;
    min-width: 0;
  }

  .brand-shell .creator-card-stats {
    grid-template-columns: 1fr;
  }

  .brand-shell .creator-match-card p,
  .brand-shell .creator-match-card small,
  .brand-shell .creator-match-card strong {
    overflow-wrap: anywhere;
  }

  .ce-founder-card {
    padding-left: 0;
    border-left: 0;
  }

  .ce-footer-bottom {
    display: grid;
  }
}

@media (max-width: 760px) {
  .customer-hero {
    width: min(100% - 1.2rem, 560px);
    padding-top: 1.15rem;
  }

  .customer-hero-copy h1 {
    font-size: clamp(1.75rem, 7.8vw, 2.35rem);
    line-height: 1.06;
  }

  .customer-hero-lead {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
  }

  .customer-choice,
  .customer-why,
  .customer-flow-board,
  .customer-final-cta {
    grid-template-columns: 1fr;
  }

  .customer-choice article {
    min-height: 0;
  }

  .customer-product {
    min-height: auto;
    padding: 0.85rem;
  }

  .customer-product-top {
    width: 100%;
  }

  .customer-flow-board article {
    min-height: 0;
  }

  .customer-creator-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.85rem;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .customer-creator-preview b {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .customer-why,
  .customer-final-cta {
    width: min(100% - 1.2rem, 560px);
  }

  .customer-panel {
    min-height: 0;
  }

  .customer-final-cta .ce-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.benefits-page {
  --benefit-ink: #111827;
  --benefit-muted: #5e6b7f;
  --benefit-line: rgba(15, 23, 42, 0.12);
  --benefit-coral: #ff4f46;
  --benefit-teal: #079a9a;
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 8%, rgba(52, 213, 208, 0.14), transparent 30%),
    radial-gradient(circle at 10% 26%, rgba(255, 79, 70, 0.1), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7fbff 48%, #fff 100%);
}

.benefits-page--brand {
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 173, 47, 0.13), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(255, 79, 70, 0.11), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff8f6 42%, #fff 100%);
}

.benefits-hero,
.benefits-grid,
.benefits-band,
.benefits-flow,
.benefits-final {
  width: min(1410px, 92vw);
  margin-inline: auto;
}

.benefits-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(480px, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.7rem, 4vw, 4.2rem) 0 1.1rem;
}

.benefits-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 0.9rem;
  color: var(--benefit-ink);
  font-size: clamp(2.2rem, 3.55vw, 4.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.benefits-hero-copy h1 span,
.benefits-page--brand .benefits-grid article span,
.benefits-page--brand .benefits-preview-card span {
  color: var(--benefit-coral);
}

.benefits-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: #334155;
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.62;
}

.benefits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.benefits-preview {
  position: relative;
  display: grid;
  align-content: end;
  gap: 0.85rem;
  min-height: 430px;
  padding: 1rem;
  border: 1px solid var(--benefit-line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.95)),
    url("/assets/landing-creator-photo.png") center / cover;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.13);
  overflow: hidden;
}

.benefits-preview--brand {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.96)),
    url("/assets/landing-brand-photo.png") center / cover;
}

.benefits-preview::before {
  content: "";
  position: absolute;
  inset: auto -8% -22% 24%;
  height: 230px;
  background: linear-gradient(90deg, rgba(255, 79, 70, 0.18), rgba(52, 213, 208, 0.22));
  transform: rotate(-8deg);
}

.benefits-preview-card,
.benefits-preview-row {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.benefits-preview-card {
  width: min(470px, 100%);
  padding: 1rem;
}

.benefits-preview-card span,
.benefits-preview-card small {
  display: block;
  color: var(--benefit-muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.benefits-preview-card span {
  color: var(--benefit-teal);
  text-transform: uppercase;
}

.benefits-preview-card strong {
  display: block;
  margin: 0.35rem 0;
  color: var(--benefit-ink);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.04;
}

.benefits-preview-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0.8rem;
  width: min(560px, 100%);
  padding: 0.85rem 1rem;
}

.benefits-preview-row b {
  color: var(--benefit-ink);
}

.benefits-preview-row span {
  color: var(--benefit-muted);
  font-size: 0.84rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.benefits-grid article,
.benefits-band,
.benefits-flow,
.benefits-final {
  border: 1px solid var(--benefit-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.benefits-grid article {
  padding: 1.1rem;
}

.benefits-grid article span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--benefit-teal);
  font-size: 0.78rem;
  font-weight: 950;
}

.benefits-grid h2 {
  margin: 0 0 0.55rem;
  color: var(--benefit-ink);
  font-size: clamp(1.1rem, 1.35vw, 1.42rem);
  line-height: 1.18;
}

.benefits-grid p,
.benefits-band li,
.benefits-flow p,
.benefits-final p {
  margin: 0;
  color: var(--benefit-muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.benefits-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: start;
  margin-top: 0.9rem;
  padding: 1.25rem;
}

.benefits-band h2,
.benefits-flow h2,
.benefits-final h2 {
  margin: 0;
  color: var(--benefit-ink);
  font-size: clamp(1.55rem, 2.4vw, 2.75rem);
  line-height: 1.1;
}

.benefits-band ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-band li {
  padding: 0.8rem;
  border-radius: 10px;
  background: #f8fbff;
}

.benefits-band li strong {
  color: var(--benefit-ink);
}

.benefits-flow {
  margin-top: 0.9rem;
  padding: 1.25rem;
  text-align: center;
}

.benefits-flow h2 {
  max-width: 820px;
  margin-inline: auto;
}

.benefits-flow > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
  text-align: left;
}

.benefits-flow article {
  min-height: 160px;
  padding: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  background: #fff;
}

.benefits-flow b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: #effdfd;
  color: var(--benefit-teal);
}

.benefits-page--brand .benefits-flow b {
  background: #fff2ec;
  color: var(--benefit-coral);
}

.benefits-flow strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--benefit-ink);
}

.benefits-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 0.9rem;
  margin-bottom: 1.2rem;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(239,253,253,0.96)),
    linear-gradient(90deg, rgba(255, 79, 70, 0.08), rgba(52, 213, 208, 0.12));
}

.benefits-final p {
  max-width: 760px;
  margin-top: 0.5rem;
}

@media (max-width: 1120px) {
  .benefits-hero,
  .benefits-band,
  .benefits-final {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .benefits-hero,
  .benefits-grid,
  .benefits-band,
  .benefits-flow,
  .benefits-final {
    width: min(100% - 1.2rem, 560px);
  }

  .benefits-hero {
    padding-top: 1.2rem;
  }

  .benefits-hero-copy h1 {
    font-size: clamp(1.9rem, 8.6vw, 2.55rem);
  }

  .benefits-grid,
  .benefits-flow > div {
    grid-template-columns: 1fr;
  }

  .benefits-preview {
    min-height: 380px;
  }

  .benefits-preview-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .benefits-actions,
  .benefits-final {
    align-items: stretch;
  }

  .benefits-actions .ce-button,
  .benefits-final .ce-button {
    width: 100%;
  }
}
