:root {
  --ink: #070707;
  --paper: #fffaf6;
  --cream: #f5efe7;
  --mint: #c9f3d3;
  --peach: #ffc3ad;
  --pink: #ffc4cf;
  --blue: #b8d9ff;
  --lime: #dfff75;
  --line: #1a1a1a;
  --muted: #6d6760;
  --soft-shadow: 0 24px 80px rgba(7, 7, 7, 0.14);
  --tight-radius: 8px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 110px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(7, 7, 7, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Arial Rounded MT Bold", "Cooper Black", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #37322e;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--ink);
}

.main-nav a.active {
  border-color: var(--ink);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.login-link {
  color: #5b534d;
  font-size: 13px;
  font-weight: 950;
}

.login-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
}

.login-link:hover {
  color: var(--ink);
}

.operator-header {
  background: rgba(7, 7, 7, 0.94);
  color: var(--paper);
}

.operator-header .brand-mark {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.operator-header .main-nav {
  color: var(--paper);
}

.operator-access-panel {
  max-width: 760px;
  padding: 32px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.operator-access-panel h1 {
  margin: 8px 0 12px;
  font-family: "Cooper Black", "Cooper Std Black", Georgia, serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
}

.operator-access-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.operator-header .main-nav a {
  opacity: 0.82;
}

.operator-header .main-nav a:hover,
.operator-header .main-nav a.active {
  border-color: var(--lime);
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.button.primary {
  background: var(--lime);
}

.button.secondary {
  background: var(--paper);
}

.button:hover,
.nav-cta:hover,
.icon-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section[id] {
  scroll-margin-top: 110px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: auto;
  padding-block: clamp(42px, 5.8vw, 78px);
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 196, 207, 0.3), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(201, 243, 211, 0.16), transparent 28%),
    linear-gradient(135deg, #0b0b0b 0%, #0b0b0b 62%, #161616 100%);
  color: var(--paper);
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #4a4038;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  font-family:
    "Arial Rounded MT Bold", "Cooper Black", "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 92px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 6vw, 72px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.08;
}

p {
  color: #39332d;
  font-size: 17px;
  line-height: 1.55;
}

.hero-lede {
  max-width: 620px;
  color: #f0e8e1;
  font-size: clamp(18px, 1.65vw, 22px);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-actions {
  margin: 28px 0 20px;
}

.hero .button.secondary {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
  box-shadow: 4px 4px 0 var(--paper);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  color: #e7ddd5;
  gap: 12px;
}

.hero-stats span {
  display: block;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 250, 246, 0.18);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.08);
  color: #f0e8e1;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--peach);
  font-family: "Arial Rounded MT Bold", "Cooper Black", sans-serif;
  font-size: 28px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 44px 22px 22px 38px;
  border: 1px solid rgba(255, 250, 246, 0.14);
  border-radius: 38px;
  background: rgba(255, 250, 246, 0.04);
}

.hero-dashboard {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  margin-left: auto;
  padding: clamp(22px, 3vw, 30px);
  border: 2px solid rgba(255, 250, 246, 0.92);
  border-radius: 28px;
  background: #fffaf6;
  color: var(--ink);
  box-shadow: 14px 18px 0 rgba(0, 0, 0, 0.38);
}

.hero-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.status-pill {
  display: inline-flex;
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.hero-dashboard h2 {
  max-width: 430px;
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 58px);
}

.hero-dashboard > p {
  max-width: 430px;
  margin-bottom: 22px;
  color: #4e473f;
  font-size: 17px;
  font-weight: 800;
}

.hero-workflow {
  display: grid;
  gap: 12px;
}

.hero-workflow article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: #f7efe8;
}

.hero-workflow article:nth-child(2) {
  background: #e6f4ff;
}

.hero-workflow article:nth-child(3) {
  background: #e7fbdf;
}

.hero-workflow article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-weight: 950;
}

.hero-workflow strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.hero-workflow p {
  margin: 0;
  color: #5d554f;
  font-size: 14px;
  line-height: 1.35;
}

.hero-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.hero-dashboard-metrics article {
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
}

.hero-dashboard-metrics span,
.hero-note span {
  display: block;
  color: #cfc3b8;
  font-size: 12px;
  font-weight: 900;
}

.hero-dashboard-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  width: min(260px, 48%);
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.hero-note strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  line-height: 1.15;
}

.hero-note span {
  color: #6a625c;
}

.note-a {
  top: 18px;
  left: 0;
  transform: rotate(-3deg);
}

.note-b {
  right: 0;
  bottom: 56px;
  background: var(--mint);
  transform: rotate(3deg);
}

.phone-mock {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: min(86%, 390px);
  padding: 18px;
  border: 3px solid var(--paper);
  border-radius: 34px;
  background: #111;
  box-shadow: var(--soft-shadow);
}

.phone-top {
  width: 96px;
  height: 8px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #f5efe7;
}

.reel-preview {
  min-height: 250px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 196, 207, 0.82), rgba(201, 243, 211, 0.82)),
    repeating-linear-gradient(135deg, rgba(7, 7, 7, 0.2) 0 2px, transparent 2px 14px);
  color: var(--ink);
}

.reel-preview h2 {
  margin-top: 74px;
  font-size: 36px;
}

.reel-preview p {
  color: var(--ink);
  font-weight: 800;
}

.tag,
.panel-header span,
.price-card > span,
.case-grid span,
.steps span,
.panel-title span {
  display: inline-flex;
  width: max-content;
  padding: 7px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 12px 14px;
  border: 2px solid #2b2b2b;
  border-radius: 16px;
  background: #f5efe7;
  color: var(--ink);
}

.metric-row span {
  color: #5d554f;
  font-weight: 800;
}

.metric-row strong {
  font-size: 18px;
}

.orbit-card {
  position: absolute;
  z-index: 2;
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.orbit-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.orbit-card strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.card-a {
  top: 14%;
  left: 2%;
  transform: rotate(-4deg);
}

.card-b {
  right: 0;
  top: 34%;
  background: var(--mint);
  transform: rotate(5deg);
}

.creator-stack {
  position: absolute;
  left: 8%;
  bottom: 20%;
  display: flex;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-left: -12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--peach);
  color: var(--ink);
  font-weight: 950;
}

.avatar:nth-child(2) {
  background: var(--mint);
}

.avatar:nth-child(3) {
  background: var(--blue);
}

.avatar:nth-child(4) {
  background: var(--pink);
}

.proof-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  border-block: 2px solid var(--ink);
  background: var(--mint);
  padding-block: 22px;
}

.proof-band p {
  margin: 0;
  padding: 9px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.audience-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 126px);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 196, 207, 0.38), transparent 28%),
    linear-gradient(135deg, #0b0b0b 0%, #111 68%, #1c1c1c 100%);
  color: var(--paper);
  overflow: hidden;
}

.audience-hero .eyebrow,
.creator-page-hero .eyebrow {
  color: var(--mint);
}

.audience-hero h1 {
  max-width: 920px;
}

.audience-card {
  padding: clamp(24px, 4vw, 34px);
  border: 3px solid var(--paper);
  border-radius: var(--tight-radius);
  background: var(--peach);
  color: var(--ink);
  box-shadow: 10px 10px 0 rgba(255, 250, 246, 0.16);
  transform: rotate(1deg);
}

.audience-card h2 {
  margin: 28px 0 22px;
  font-size: clamp(34px, 4.5vw, 56px);
}

.audience-card-image {
  display: block;
  width: 100%;
  max-height: 260px;
  margin-bottom: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  object-fit: cover;
  object-position: center 38%;
  box-shadow: 5px 5px 0 var(--ink);
}

.creator-audience-card {
  background: var(--mint);
  transform: rotate(-1deg);
}

.creator-hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2.2vw, 24px);
  border: 3px solid var(--paper);
  border-radius: var(--tight-radius);
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.96), rgba(201, 243, 211, 0.96));
  color: var(--ink);
  box-shadow: 12px 12px 0 rgba(255, 250, 246, 0.16);
  transform: rotate(1deg);
}

.creator-hero-panel::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 86px;
  height: 86px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  z-index: -1;
}

.creator-hero-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  object-fit: cover;
  box-shadow: 5px 5px 0 var(--ink);
}

.creator-hero-card {
  padding: 8px 6px 2px;
}

.creator-hero-card h2 {
  margin: 18px 0 0;
  font-size: clamp(30px, 3.5vw, 48px);
}

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

.creator-proof-row span {
  display: inline-flex;
  justify-content: center;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 950;
}

.creator-benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 840px;
  margin-top: 32px;
}

.creator-benefit-strip article {
  padding: 16px;
  border: 2px solid rgba(255, 250, 246, 0.72);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.08);
}

.creator-benefit-strip span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
}

.creator-benefit-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 17px;
  line-height: 1.15;
}

.creator-benefit-strip p {
  margin: 0;
  color: #e9ded6;
  font-size: 14px;
  line-height: 1.35;
}

.back-link {
  display: inline-flex;
  width: max-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 950;
}

.single-form {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.plan-gate[hidden],
#join-business[hidden],
#apply-creator-form[hidden],
.signup-success[hidden],
#checkoutContent[hidden],
#paymentContent[hidden],
#accountLocked[hidden],
#accountProfile[hidden],
.subscription-plan-picker[hidden] {
  display: none;
}

.plan-gate {
  background: var(--mint);
}

.selected-plan-note {
  width: max-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.signup-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1.3fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.signup-intro {
  position: sticky;
  top: 104px;
}

.signup-intro h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
}

.back-link.dark {
  border-color: var(--ink);
  color: var(--ink);
}

.stepped-form {
  position: relative;
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.step-progress span {
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.step-progress span.active {
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--ink);
}

.progress-meter {
  height: 12px;
  margin: -10px 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  overflow: hidden;
}

.progress-meter span {
  display: block;
  width: 50%;
  height: 100%;
  border-right: 2px solid var(--ink);
  background: var(--lime);
  transition: width 180ms ease;
}

.plan-summary {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--mint);
  color: var(--ink);
}

.plan-summary span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-summary strong {
  font-family: "Arial Rounded MT Bold", "Cooper Black", "Trebuchet MS", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.plan-summary p {
  margin: 0;
  color: #211d19;
  font-weight: 850;
}

.form-step {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: block;
}

.signup-step-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 2px solid rgba(7, 7, 7, 0.16);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.86);
}

.signup-step-card h2,
.signup-step-card p {
  margin: 0;
}

.compact-signup-grid {
  margin: 10px 0 0;
}

.field-label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.field-label em {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.field-label em.optional {
  border-color: rgba(7, 7, 7, 0.22);
  background: var(--cream);
  color: var(--muted);
}

.signup-next-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  border: 2px solid rgba(7, 7, 7, 0.14);
  border-radius: var(--tight-radius);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.signup-next-note strong {
  color: var(--ink);
  white-space: nowrap;
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: 24px;
}

.signup-success {
  align-self: start;
  background: var(--mint);
}

.signup-success h2 {
  margin-bottom: 16px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.success-actions .button {
  width: auto;
}

.creator-form.signup-success {
  background: #111;
}

.stacked {
  grid-template-columns: 1fr;
}

.creator-form-band {
  background: var(--ink);
}

.page-creator-section {
  border-top: 2px solid var(--ink);
}

.trust-section {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  min-height: 160px;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--mint);
  box-shadow: 5px 5px 0 var(--ink);
}

.trust-grid article:nth-child(2) {
  background: var(--blue);
}

.trust-grid article:nth-child(3) {
  background: var(--peach);
}

.trust-grid article:nth-child(4) {
  background: var(--lime);
}

.trust-grid strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Arial Rounded MT Bold", "Cooper Black", "Trebuchet MS", sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
}

.trust-grid span {
  display: block;
  color: #26211d;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.38;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.feature-grid,
.opportunity-grid,
.steps,
.pricing-grid,
.case-grid,
.faq-grid,
.dashboard-grid,
.dashboard-metrics {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-grid article,
.opportunity-grid article,
.steps article,
.price-card,
.case-grid article,
.ops-panel,
.dashboard-metrics article,
details,
.lead-form,
.panel {
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.96);
  box-shadow: 6px 6px 0 var(--ink);
}

.feature-grid article,
.opportunity-grid article,
.steps article,
.case-grid article,
.dashboard-metrics article,
details,
.panel {
  padding: 22px;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  font-weight: 950;
}

.panel-header,
.panel-title,
.dashboard-header,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.campaign-panel {
  position: sticky;
  top: 102px;
  background: var(--peach);
}

.campaign-panel h3 {
  margin-top: 28px;
  font-family: "Arial Rounded MT Bold", "Cooper Black", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
}

.check-list,
.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li,
.price-card li {
  position: relative;
  padding-left: 26px;
  color: #2c2824;
  font-weight: 750;
}

.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

.creator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: stretch;
  background: var(--ink);
  color: var(--paper);
}

.creator-section p {
  color: #f2e8df;
}

.creator-section .eyebrow {
  color: var(--pink);
}

.opportunity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 26px;
}

.opportunity-grid article {
  --card-tint: var(--mint);
  position: relative;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(255, 250, 246, 0.16);
}

.opportunity-grid article:nth-child(2) {
  --card-tint: var(--blue);
}

.opportunity-grid article:nth-child(3) {
  --card-tint: var(--peach);
}

.opportunity-grid p {
  color: #16120f;
}

.opportunity-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  object-fit: cover;
  background: var(--paper);
}

.opportunity-grid h3,
.opportunity-grid p {
  padding-inline: 20px;
}

.category-label {
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: -18px 0 0 18px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--card-tint);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  position: relative;
  z-index: 1;
  box-shadow: 3px 3px 0 var(--ink);
}

.opportunity-grid h3 {
  margin: 18px 0 10px;
  font-size: 30px;
}

.opportunity-grid p {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 1.45;
}

.how-section h2 {
  max-width: 1020px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.comparison-section {
  background: #fffdf8;
}

.comparison-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.comparison-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.5;
}

.comparison-cards {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.12fr) minmax(0, 0.94fr);
  gap: 18px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  align-items: stretch;
}

.comparison-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(26, 26, 26, 0.13);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 1px 2px rgba(7, 7, 7, 0.04);
}

.comparison-card-featured {
  grid-template-rows: auto auto auto auto 1fr;
  border-color: rgba(26, 26, 26, 0.22);
  background: linear-gradient(180deg, rgba(223, 255, 117, 0.28), rgba(255, 254, 250, 0.96));
}

.comparison-card-label {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #645d54;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.98;
}

.comparison-card p {
  margin: 0;
  color: #5f574f;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

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

.comparison-card li {
  display: grid;
  grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 11px 12px;
  border: 1px solid rgba(26, 26, 26, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.comparison-card li strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.comparison-card li span {
  color: #4d463f;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.comparison-card .button {
  justify-self: start;
  margin-top: 2px;
}

.comparison-card-featured .button {
  align-self: end;
  justify-self: center;
  width: min(100%, 230px);
  margin-top: 18px;
}

.pricing-section {
  background: #f7efe8;
}

.billing-toggle {
  display: inline-flex;
  padding: 5px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
}

.billing-toggle button {
  min-width: 112px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.billing-toggle button.active {
  background: var(--ink);
  color: var(--paper);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.pricing-note {
  max-width: 920px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.price-card.recommended {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-12px);
}

.price-card.recommended p,
.price-card.recommended li {
  color: #f2e8df;
}

.price-card.recommended .tag,
.price-card.recommended > span {
  border-color: var(--paper);
}

.price-card h3 {
  margin: 22px 0 16px;
  font-size: 48px;
}

.price-card h3 small,
.price-card h3 em {
  font-size: 18px;
  font-style: normal;
}

.price-card ul {
  margin-bottom: 26px;
}

.price-card .button {
  margin-top: auto;
}

.case-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  background: var(--mint);
}

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

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

.lead-form {
  padding: clamp(22px, 4vw, 34px);
}

.creator-form {
  background: #111;
  color: var(--paper);
}

.creator-form p,
.creator-form label {
  color: #f2e8df;
}

.creator-form .eyebrow {
  color: var(--mint);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 26px 0;
}

label {
  display: grid;
  gap: 7px;
  color: #2e2924;
  font-size: 13px;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 106px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 4px rgba(223, 255, 117, 0.75);
}

.wide {
  grid-column: 1 / -1;
}

.is-hidden {
  display: none !important;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox input {
  width: 22px;
  min-height: 22px;
  accent-color: var(--lime);
}

.niche-choice-group {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.08);
}

.niche-choice-group legend {
  padding: 0 8px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 950;
}

.niche-choice-group legend span {
  margin-left: 8px;
  color: var(--mint);
  font-size: 12px;
}

.niche-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.niche-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, opacity 160ms ease;
}

.niche-chip input {
  width: 18px;
  min-height: 18px;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--lime);
}

.niche-chip:has(input:checked) {
  background: var(--lime);
}

.niche-chip.is-at-limit:not(:has(input:checked)) {
  opacity: 0.48;
}

.niche-chip:hover,
.niche-chip:focus-within {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}

.light-niche-group {
  background: #fff;
}

.light-niche-group legend {
  color: var(--ink);
}

.light-niche-group legend span {
  color: var(--muted);
}

.content-example-builder {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.08);
}

.content-example-builder.light-builder {
  background: #fff;
}

.content-example-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.content-example-heading span {
  display: block;
  color: var(--paper);
  font-size: 13px;
  font-weight: 950;
}

.light-builder .content-example-heading span {
  color: var(--ink);
}

.content-example-heading p {
  margin: 4px 0 0;
  color: #f2e8df;
  font-size: 13px;
  line-height: 1.35;
}

.light-builder .content-example-heading p {
  color: var(--muted);
}

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

.content-example-row {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--paper);
  color: var(--ink);
}

.content-example-grid,
.dashboard-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.content-example-row label,
.dashboard-form-grid label {
  color: var(--ink);
}

.content-example-row textarea {
  min-height: 74px;
}

.compact-button {
  min-height: 36px;
  padding-inline: 14px;
  font-size: 13px;
  box-shadow: 2px 2px 0 var(--ink);
}

.creator-profile-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.creator-settings-form {
  margin-top: 0;
}

.creator-profile-form input[readonly] {
  background: #f0ebe4;
  color: var(--muted);
}

.creator-profile-form small {
  margin-left: 6px;
  color: var(--dashboard-muted, var(--muted));
  font-size: 11px;
  font-weight: 850;
}

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

.form-note {
  min-height: 24px;
  margin: 16px 0 0;
  color: #168343;
  font-weight: 900;
}

.form-note.compact {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
}

.creator-form .form-note {
  color: var(--mint);
}

.faq-section {
  background: var(--pink);
}

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

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
}

details p {
  margin: 18px 0 0;
}

.seo-page {
  background: var(--paper);
  overflow-x: clip;
}

.seo-page > .section {
  box-sizing: border-box;
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-block: clamp(26px, 4vw, 52px);
}

.seo-hero {
  width: min(100%, 1280px);
  display: block;
  padding-top: clamp(34px, 6vw, 68px);
  padding-bottom: clamp(10px, 2vw, 24px);
  text-align: center;
}

.seo-hero-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.seo-hero-copy h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.65vw, 60px);
  line-height: 0.98;
  letter-spacing: 0;
}

.seo-hero-copy > p:not(.eyebrow) {
  max-width: 740px;
  color: #403933;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.44;
}

.seo-hero-copy .hero-actions {
  justify-content: center;
  margin-top: 2px;
}

.seo-hero-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  background: #e9ecef;
}

.seo-hero-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 16px;
  border-radius: 999px;
  color: #5f6469;
  font-weight: 800;
}

.seo-hero-tabs .is-active {
  background: #fffdfa;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(7, 7, 7, 0.08);
}

.seo-hero-workflow-badge {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 760px;
  padding: 8px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 10px;
  background: rgba(223, 255, 117, 0.28);
}

.seo-hero-workflow-badge span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.9);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.seo-hero-panel,
.seo-panel,
.seo-comparison,
.seo-final-cta {
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: var(--tight-radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 2px rgba(7, 7, 7, 0.06);
}

.seo-hero-panel {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  background: #fffdfa;
}

.seo-hero-panel span,
.seo-example-card strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-hero-panel strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.seo-hero-panel p,
.seo-panel p,
.seo-comparison p,
.seo-final-cta p {
  color: #4b443e;
  line-height: 1.55;
}

.seo-split,
.seo-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.seo-split h2,
.seo-panel h2,
.seo-process h2,
.seo-comparison h2,
.seo-final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

.seo-panel,
.seo-comparison,
.seo-final-cta {
  padding: clamp(22px, 4vw, 36px);
}

.seo-creator-usecase-section {
  grid-template-columns: 1fr;
}

.seo-usecase-panel .seo-check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
}

.seo-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-check-list li {
  position: relative;
  padding-left: 26px;
  color: #3f3934;
  line-height: 1.45;
}

.seo-check-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(7, 7, 7, 0.25);
  border-radius: 999px;
  background: var(--lime);
}

.seo-card-grid,
.seo-process-grid,
.seo-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-example-carousel {
  margin-top: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.seo-example-grid {
  display: grid;
  grid-auto-columns: minmax(310px, 36%);
  grid-auto-flow: column;
  gap: 14px;
  min-width: min-content;
  padding: 0 2px 12px;
}

.seo-card-grid article,
.seo-example-card,
.seo-process-grid article,
.seo-comparison-grid article {
  padding: 18px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.82);
}

.seo-example-card {
  scroll-snap-align: start;
}

.seo-example-card h3,
.seo-process-grid h3,
.seo-comparison-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.1;
}

.seo-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border: 1px solid rgba(7, 7, 7, 0.24);
  border-radius: 999px;
  background: var(--lime);
  font-weight: 800;
}

.seo-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.seo-area-list span,
.seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.seo-comparison {
  display: grid;
  gap: 22px;
}

.seo-comparison-grid .is-highlighted {
  border-color: rgba(126, 169, 0, 0.45);
  background: rgba(223, 255, 117, 0.24);
}

.seo-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-links a:hover {
  border-color: var(--ink);
  background: var(--lime);
}

.seo-final-cta {
  text-align: center;
}

.seo-final-cta .hero-actions {
  justify-content: center;
}

.seo-social-mockup {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 22% 24%, rgba(223, 255, 117, 0.44), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(184, 217, 255, 0.46), transparent 32%),
    #fffdfa;
}

.seo-phone-frame {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(310px, 88%);
  padding: 18px;
  border: 2px solid rgba(7, 7, 7, 0.88);
  border-radius: 28px;
  background: #101010;
  box-shadow: 0 18px 36px rgba(7, 7, 7, 0.12);
}

.seo-phone-bar {
  width: 78px;
  height: 6px;
  margin: 0 auto 4px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.82);
}

.seo-post-card,
.seo-social-status-grid span,
.seo-floating-card {
  border: 1px solid rgba(7, 7, 7, 0.18);
  border-radius: 8px;
  background: #fffaf6;
}

.seo-post-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.seo-post-card div {
  display: grid;
  gap: 5px;
}

.seo-post-card span,
.seo-floating-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-post-card strong,
.seo-floating-card strong {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.05;
}

.seo-post-card p {
  margin: 0;
  color: #4b443e;
  font-size: 14px;
  line-height: 1.42;
}

.seo-post-visual {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: 132px;
}

.seo-post-visual span {
  border: 1px solid rgba(7, 7, 7, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 255, 117, 0.4), rgba(255, 190, 169, 0.26)),
    #fffdfa;
}

.seo-post-visual span:first-child {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(184, 217, 255, 0.5), rgba(255, 250, 246, 0.9)),
    #fffdfa;
}

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

.seo-social-status-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.seo-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 170px;
  padding: 11px 12px;
  box-shadow: 0 10px 20px rgba(7, 7, 7, 0.12);
}

.seo-floating-card.is-left {
  top: 22%;
  left: 5%;
  transform: rotate(-3deg);
}

.seo-floating-card.is-right {
  right: 5%;
  bottom: 18%;
  transform: rotate(3deg);
  background: rgba(223, 255, 117, 0.92);
}

.seo-floating-card.is-top-right {
  top: 10%;
  right: 9%;
  transform: rotate(2deg);
  background: rgba(255, 250, 246, 0.95);
}

.seo-floating-card.is-bottom-left {
  bottom: 12%;
  left: 8%;
  transform: rotate(2deg);
  background: rgba(255, 250, 246, 0.95);
}

.seo-floating-card.is-bottom-center {
  right: 31%;
  bottom: 4%;
  transform: rotate(-2deg);
  background: rgba(184, 217, 255, 0.9);
}

.seo-example-media {
  position: relative;
  overflow: hidden;
  height: clamp(132px, 14vw, 176px);
  margin-bottom: 16px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: #fffdfa;
}

.seo-example-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center);
}

.seo-example-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.5));
}

.seo-example-media span {
  position: absolute;
  z-index: 1;
  left: 10px;
  bottom: 9px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  border: 1px solid rgba(255, 253, 250, 0.36);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seo-real-image-section {
  padding-top: clamp(16px, 2.4vw, 30px);
  padding-bottom: clamp(22px, 3vw, 38px);
}

.seo-real-image-section.is-hero {
  justify-self: stretch;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(4px, 1.2vw, 12px) 0 0;
}

.seo-real-image-section .seo-section-heading {
  margin-bottom: 18px;
}

.seo-social-image-carousel {
  position: relative;
  overflow: hidden;
  padding: 2px 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  text-align: left;
}

.seo-real-image-section.is-hero .seo-social-image-carousel {
  width: 100%;
  margin-inline: auto;
  transform: none;
}

.seo-social-image-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding-inline: 0;
  animation: seoImageFlow 46s linear infinite;
  will-change: transform;
}

.seo-social-image-carousel:hover .seo-social-image-track {
  animation-play-state: paused;
}

.seo-social-image-card {
  flex: 0 0 clamp(180px, 14vw, 240px);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 10px;
  background: #fffdfa;
}

.seo-social-image-card img {
  display: block;
  width: 100%;
  height: clamp(140px, 15vw, 190px);
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: var(--image-position, center);
}

.seo-social-image-card div {
  display: grid;
  gap: 5px;
  padding: 10px 12px;
}

.seo-social-image-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-social-image-card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.1;
}

.seo-social-image-card p {
  margin: 0;
  color: #4b443e;
  font-size: 13px;
  line-height: 1.35;
}

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

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

.seo-compact-product-preview {
  padding-top: clamp(14px, 2.2vw, 24px);
  padding-bottom: clamp(18px, 3vw, 34px);
}

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

.seo-compact-product-grid article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 250, 0.82);
}

.seo-mini-product-visual {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(223, 255, 117, 0.4), rgba(235, 246, 255, 0.82));
}

.seo-mini-product-visual span {
  display: block;
  height: 10px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: #fffdfa;
}

.seo-mini-product-visual span:nth-child(2) {
  width: 72%;
  background: rgba(223, 255, 117, 0.86);
}

.seo-mini-product-visual span:nth-child(3) {
  width: 86%;
}

.seo-compact-product-grid article > div:last-child {
  display: grid;
  gap: 5px;
}

.seo-compact-product-grid article > div:last-child > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-compact-product-grid h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.15;
}

.seo-compact-product-grid p {
  margin: 0;
  color: #4b443e;
  font-size: 13px;
  line-height: 1.35;
}

.seo-compact-product-preview + .seo-split,
.seo-hero + .seo-split {
  padding-top: clamp(20px, 3vw, 36px);
}

.seo-section-heading {
  max-width: 880px;
  margin-bottom: 22px;
}

.seo-section-heading h2 {
  margin: 0;
}

.seo-section-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: #4b443e;
  line-height: 1.55;
}

.seo-brief-visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.seo-brief-visit-section .seo-section-heading {
  max-width: 430px;
  margin-bottom: 0;
}

.seo-brief-visit-section .seo-section-heading h2 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 0.98;
}

.seo-workspace-mockup {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 250, 246, 0.96), rgba(238, 249, 255, 0.76)),
    #fffdfa;
}

.seo-workspace-main,
.seo-workspace-stats,
.seo-workspace-status-row {
  min-width: 0;
}

.seo-workspace-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.seo-workspace-title-row h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.seo-workspace-title-row p {
  margin: 8px 0 0;
  color: #4b443e;
}

.seo-status-badge,
.seo-soft-status,
.seo-comparison-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  background: rgba(223, 255, 117, 0.42);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.seo-workspace-offer {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: #fffdfa;
}

.seo-workspace-offer span,
.seo-workspace-stats span,
.seo-request-card span,
.seo-brief-rows span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-workspace-offer strong {
  font-size: 1.25rem;
}

.seo-workspace-tool-row,
.seo-workspace-status-row,
.seo-match-meta,
.seo-mock-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.seo-workspace-tool-row span,
.seo-workspace-status-row span,
.seo-match-meta span,
.seo-mock-action-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: #fffdfa;
  color: #312b26;
  font-size: 13px;
  font-weight: 700;
}

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

.seo-workspace-stats article,
.seo-operational-metrics article {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: #fffdfa;
}

.seo-workspace-stats strong,
.seo-operational-metrics strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.seo-workspace-status-row {
  grid-column: 1 / -1;
}

.seo-product-flow-grid,
.seo-match-grid,
.seo-campaign-tile-grid,
.seo-trust-grid {
  display: grid;
  gap: 12px;
}

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

.seo-product-flow-grid article,
.seo-match-card,
.seo-campaign-tile-grid article,
.seo-trust-grid article,
.seo-brief-mockup,
.seo-visit-request-mockup,
.seo-post-tracking-mockup {
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: #fffdfa;
}

.seo-post-tracking-mockup {
  padding: clamp(18px, 3vw, 28px);
}

.seo-product-flow-grid article {
  position: relative;
  padding: 16px;
}

.seo-product-flow-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--lime);
  font-size: 13px;
  font-weight: 850;
}

.seo-product-flow-grid h3,
.seo-match-card h3,
.seo-campaign-tile-grid h3,
.seo-trust-grid h3,
.seo-brief-mockup h3,
.seo-visit-request-mockup h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.seo-product-flow-grid p,
.seo-match-card p,
.seo-campaign-tile-grid p,
.seo-trust-grid p {
  margin: 0;
  color: #4b443e;
  font-size: 14px;
  line-height: 1.45;
}

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

.seo-match-card,
.seo-campaign-tile-grid article,
.seo-trust-grid article {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.seo-match-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seo-avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 850;
}

.seo-match-card-top p {
  margin: 2px 0 0;
}

.seo-brief-visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 14px;
  align-items: start;
}

.seo-brief-mockup,
.seo-visit-request-mockup {
  padding: clamp(16px, 2vw, 20px);
}

.seo-brief-mockup {
  background:
    linear-gradient(180deg, rgba(223, 255, 117, 0.1), rgba(255, 253, 250, 0) 42%),
    #fffdfa;
}

.seo-visit-request-mockup {
  align-self: start;
}

.seo-brief-rows,
.seo-request-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.seo-brief-rows div,
.seo-request-card div {
  display: grid;
  gap: 5px;
  padding: 11px 12px;
  border-right: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.seo-brief-rows div:nth-child(2n),
.seo-request-card div:nth-child(2n) {
  border-right: 0;
}

.seo-brief-rows strong,
.seo-request-card strong {
  font-size: 0.94rem;
  line-height: 1.28;
}

.seo-brief-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.seo-brief-list h4 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.seo-brief-list ul,
.seo-visit-request-mockup ul {
  margin-bottom: 0;
}

.seo-campaign-tile-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-tile-visual {
  display: grid;
  place-items: end start;
  min-height: 146px;
  padding: 14px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 255, 117, 0.45), rgba(184, 217, 255, 0.44)),
    #fffdfa;
}

.seo-tile-visual span {
  max-width: 13ch;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
  line-height: 1.05;
}

.seo-operational-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.seo-operational-metrics span {
  color: #4b443e;
  font-size: 13px;
  font-weight: 700;
}

.seo-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: #fffdfa;
}

.seo-post-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.seo-post-table caption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.seo-post-table th,
.seo-post-table td {
  padding: 12px 14px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  text-align: left;
  vertical-align: top;
}

.seo-post-table thead th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.seo-post-table tbody th {
  font-weight: 800;
}

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

.seo-category-section > p:not(.eyebrow) {
  max-width: 850px;
}

.seo-category-grid,
.seo-explainer-grid,
.seo-tracking-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.seo-category-grid article,
.seo-explainer-grid article {
  padding: 16px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.82);
}

.seo-category-grid h3,
.seo-explainer-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.1;
}

.seo-category-grid p,
.seo-explainer-grid p {
  margin: 0;
  color: #4b443e;
  font-size: 14px;
  line-height: 1.42;
}

.seo-creator-types-panel h2 {
  max-width: 820px;
  font-size: clamp(28px, 3vw, 38px);
}

.seo-creator-types-panel .seo-explainer-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.seo-creator-types-panel .seo-explainer-grid article {
  min-height: 0;
  padding: 18px;
  background: rgba(255, 253, 250, 0.9);
}

.seo-creator-types-panel .seo-explainer-grid h3 {
  max-width: 12rem;
  font-size: 18px;
}

.seo-creator-types-panel .seo-explainer-grid p {
  max-width: 17rem;
  font-size: 14.5px;
  line-height: 1.48;
}

.seo-context-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 0;
  padding-bottom: clamp(18px, 3vw, 34px);
}

.seo-context-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.8);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.seo-context-links a:hover {
  border-color: rgba(7, 7, 7, 0.35);
  background: rgba(223, 255, 117, 0.3);
}

.seo-solution {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.seo-solution h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.seo-solution p {
  color: #4b443e;
  line-height: 1.55;
}

.seo-solution-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
  list-style: none;
}

.seo-solution-list li {
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  position: relative;
  color: #3f3934;
  line-height: 1.45;
}

.seo-solution-list li::before {
  content: "";
  position: absolute;
  top: 1.38em;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(7, 7, 7, 0.22);
  border-radius: 999px;
  background: var(--lime);
}

.seo-fit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.seo-areas {
  padding-block: clamp(28px, 5vw, 56px);
}

.seo-areas p {
  max-width: 780px;
  color: #4b443e;
  line-height: 1.55;
}

.seo-comparison-table {
  display: grid;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #fffdfa;
}

.seo-comparison-intro {
  max-width: 760px;
  margin: 10px auto 0;
  color: #4b443e;
  line-height: 1.55;
}

.seo-comparison-heading {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.seo-comparison-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.12fr) minmax(0, 0.96fr);
  gap: 14px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.seo-comparison-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: #fffdfa;
}

.seo-comparison-panel.is-local {
  position: relative;
  transform: translateY(-8px);
  border-color: rgba(7, 7, 7, 0.36);
  background:
    linear-gradient(180deg, rgba(223, 255, 117, 0.28), rgba(255, 253, 250, 0.98) 56%),
    #fffdfa;
  box-shadow: 0 1px 2px rgba(7, 7, 7, 0.08);
}

.seo-comparison-panel.is-local::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto;
  height: 4px;
  border-radius: 999px;
  background: var(--lime);
}

.seo-comparison-panel.is-muted {
  background: rgba(255, 253, 250, 0.72);
  color: #5b524a;
}

.seo-comparison-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  line-height: 1.1;
}

.seo-comparison-panel h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.95rem;
}

.seo-comparison-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-comparison-panel li {
  position: relative;
  padding-left: 24px;
  color: #4b443e;
  line-height: 1.4;
}

.seo-comparison-panel li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
}

.seo-comparison-panel.is-local li {
  padding-left: 30px;
}

.seo-comparison-panel.is-local li::before {
  content: "âœ“";
  top: 0.12em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(7, 7, 7, 0.22);
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.seo-comparison-panel.is-old-way li::before {
  background: #f08f69;
}

.seo-comparison-panel.is-muted li::before {
  background: rgba(26, 26, 26, 0.22);
}

.seo-comparison-cta {
  width: fit-content;
  min-height: 38px;
  margin-top: 6px;
  padding: 8px 15px;
  font-size: 0.9rem;
}

.seo-comparison-vs {
  align-self: center;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  background: #fffdfa;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.seo-comparison-visual {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.seo-comparison-visual::before,
.seo-comparison-visual::after {
  content: "";
  position: absolute;
  inset-inline: 18px;
  height: 1px;
  background: rgba(26, 26, 26, 0.07);
}

.seo-comparison-visual::before {
  top: 38%;
}

.seo-comparison-visual::after {
  top: 68%;
}

.seo-comparison-visual span {
  position: absolute;
  display: block;
  height: 24px;
  border-radius: 4px;
}

.seo-comparison-visual.is-managed span {
  background: #5eaee8;
}

.seo-comparison-visual.is-managed span:nth-child(1) {
  top: 42px;
  left: 28%;
  width: 46%;
}

.seo-comparison-visual.is-managed span:nth-child(2) {
  top: 78px;
  left: 38%;
  width: 42%;
}

.seo-comparison-visual.is-managed span:nth-child(3) {
  top: 112px;
  left: 18%;
  width: 58%;
  background: var(--lime);
}

.seo-comparison-visual.is-manual span {
  background: #ed6842;
}

.seo-comparison-visual.is-manual span:nth-child(1) {
  top: 26px;
  left: 8%;
  width: 34%;
}

.seo-comparison-visual.is-manual span:nth-child(2) {
  top: 26px;
  right: 9%;
  width: 42%;
  height: 58px;
}

.seo-comparison-visual.is-manual span:nth-child(3) {
  top: 94px;
  left: 10%;
  width: 46%;
}

.seo-comparison-visual.is-manual span:nth-child(4) {
  top: 128px;
  left: 14%;
  width: 34%;
}

.seo-comparison-visual.is-manual span:nth-child(5) {
  top: 96px;
  right: 10%;
  width: 28%;
  height: 54px;
}

.seo-comparison-subgrid {
  display: grid;
  gap: 18px;
}

.seo-positioning-note {
  max-width: 980px;
  padding-block: 6px;
}

.seo-positioning-note p {
  max-width: 860px;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--lime);
  color: #312b26;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.5;
}

.seo-comparison-table article {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.seo-comparison-table article:last-child {
  border-bottom: 0;
}

.seo-comparison-table .is-highlighted {
  background: rgba(223, 255, 117, 0.24);
}

.seo-comparison-table h3 {
  grid-column: 1;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.seo-comparison-label {
  grid-column: 1;
  margin-bottom: -8px;
}

.seo-comparison-table p {
  grid-column: 2;
  margin: 0;
}

.seo-comparison-table ul {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-comparison-table li {
  position: relative;
  padding-left: 18px;
  color: #4b443e;
  line-height: 1.35;
}

.seo-comparison-table li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lime);
}

.seo-tracking-section > p:not(.eyebrow) {
  max-width: 780px;
}

.seo-tracking-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.seo-tracking-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.82);
  color: #2d2925;
  font-size: 13px;
  font-weight: 750;
}

.seo-page .seo-faq-section {
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: var(--tight-radius);
  background: #fffdfa;
  box-shadow: 0 1px 2px rgba(7, 7, 7, 0.04);
}

.seo-page .seo-faq-section .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 18px;
}

.seo-page .seo-faq-section details {
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.seo-page .seo-faq-section details:last-child {
  border-bottom: 0;
}

.seo-page .seo-faq-section summary {
  font-size: 18px;
  font-weight: 750;
}

.seo-page .seo-faq-section details p {
  margin-top: 10px;
  color: #4b443e;
}

.tool-page main > .section {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: clamp(34px, 5vw, 68px) clamp(18px, 4vw, 56px);
}

.tool-hero {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.tool-hero h1,
.tool-form-panel h2,
.tool-output-heading h2,
.tool-info h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

.tool-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6.2vw, 76px);
}

.tool-form-panel h2,
.tool-output-heading h2,
.tool-info h2,
.tool-page .seo-links h2,
.tool-page .seo-faq-section h2 {
  font-size: clamp(21px, 2vw, 32px);
}

.tool-hero p:not(.eyebrow),
.tool-info .seo-section-heading p {
  max-width: 740px;
  color: #403933;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
}

.tool-hero-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
}

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

.tool-hero-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tool-hero-steps span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  background: #fffdfa;
  color: #403933;
  font-weight: 750;
}

.tool-hero-steps strong {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
}

.tool-form-panel,
.tool-output-panel,
.tool-info .seo-card-grid article {
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: var(--tight-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 2px rgba(7, 7, 7, 0.05);
}

.tool-brief-preview h3,
.tool-output-heading .eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-form-panel p,
.tool-output-panel p,
.tool-brief-preview li {
  color: #4b443e;
  line-height: 1.55;
}

.tool-builder {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.45fr);
  gap: 20px;
  align-items: start;
}

.tool-form-panel,
.tool-output-panel {
  padding: clamp(20px, 3vw, 30px);
}

.tool-output-panel {
  position: sticky;
  top: 96px;
}

.tool-preview-panel {
  display: grid;
  gap: 14px;
}

.tool-preview-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.04;
}

.tool-preview-list {
  display: grid;
  gap: 8px;
}

.tool-preview-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #2f2924;
  font-weight: 750;
}

.tool-preview-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.18);
}

.tool-form-panel form,
.tool-lead-form {
  display: grid;
  gap: 16px;
}

.tool-form-panel fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.tool-form-panel fieldset:last-of-type {
  border-bottom: 0;
}

.tool-form-panel legend {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 850;
}

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

.tool-field-grid .wide {
  grid-column: 1 / -1;
}

.tool-form-panel label,
.tool-lead-form label {
  display: grid;
  gap: 7px;
  color: #463f38;
  font-weight: 750;
}

.tool-form-panel input,
.tool-form-panel select,
.tool-form-panel textarea,
.tool-lead-form input {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: var(--tight-radius);
  background: #fffdfa;
  color: var(--ink);
  padding: 11px 12px;
}

.tool-form-panel small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.tool-form-panel textarea {
  min-height: 96px;
  resize: vertical;
}

.tool-output-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.tool-output-actions,
.tool-lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-output-actions .button,
.tool-lead-actions .button {
  width: auto;
  min-height: 34px;
  padding: 8px 14px;
  border-width: 1px;
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  line-height: 1;
}

.tool-brief-preview {
  display: grid;
  gap: 16px;
  min-height: 320px;
  padding: 18px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--tight-radius);
  background: #fffdfa;
}

.tool-empty-preview {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 280px;
  gap: 8px;
  text-align: center;
}

.tool-empty-preview span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-empty-preview strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.tool-empty-preview p {
  max-width: 470px;
}

.tool-brief-preview section {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.tool-brief-preview section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tool-brief-preview h3 {
  margin: 0 0 8px;
}

.tool-brief-preview p {
  margin: 0;
}

.tool-brief-preview ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 19px;
}

.tool-result-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.tool-result-card {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--tight-radius);
  background: rgba(223, 255, 117, 0.12);
}

.tool-result-card span,
.tool-copy-block span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-result-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
}

.tool-result-card p,
.tool-result-note {
  color: #5f564d;
  font-size: 13px;
  line-height: 1.4;
}

.tool-result-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin-top: 12px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--tight-radius);
}

.tool-result-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.tool-result-table th,
.tool-result-table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  text-align: left;
  vertical-align: top;
}

.tool-result-table th {
  color: #5f564d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-result-table td {
  color: #2d2925;
  font-size: 14px;
  line-height: 1.35;
}

.tool-result-table tr:last-child td {
  border-bottom: 0;
}

.tool-ranked-list,
.tool-checklist {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.tool-ranked-list li,
.tool-checklist li {
  padding: 11px 12px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: var(--tight-radius);
  background: #fffdfa;
}

.tool-ranked-list li {
  display: grid;
  gap: 5px;
}

.tool-ranked-list li > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.tool-ranked-list strong {
  color: var(--ink);
}

.tool-ranked-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.tool-checklist li {
  position: relative;
  padding-left: 34px;
}

.tool-checklist li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 13px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.18);
}

.tool-copy-block {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--tight-radius);
  background: rgba(231, 245, 255, 0.48);
}

.tool-copy-block p {
  color: var(--ink);
  font-weight: 650;
}

.tool-lead-actions {
  margin-top: 16px;
}

.tool-lead-form {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--tight-radius);
  background: #fbfff0;
}

.tool-lead-form h3 {
  margin: 0;
  font-family: var(--font-sans, inherit);
  font-size: 18px;
  line-height: 1.15;
}

.tool-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.tool-cta-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.tool-cta-panel p {
  margin: 0;
  color: #4b443e;
  line-height: 1.45;
}

.tool-info .seo-card-grid article {
  padding: 18px;
}

.tool-modal-open {
  overflow: hidden;
}

.tool-brief-modal[hidden] {
  display: none;
}

.tool-brief-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2.4vw, 28px);
}

.tool-brief-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 11, 0.48);
}

.tool-brief-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1040px, 100%);
  max-height: min(90vh, 860px);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 18px 54px rgba(7, 7, 7, 0.2);
}

.tool-brief-dialog-header,
.tool-brief-dialog-footer {
  padding: clamp(14px, 2vw, 20px);
  background: rgba(255, 253, 250, 0.96);
}

.tool-brief-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.tool-brief-dialog-header h2 {
  margin: 0;
  font-family: var(--font-sans, inherit);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.08;
}

.tool-brief-dialog-header p:not(.eyebrow) {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.tool-brief-dialog > .tool-brief-preview {
  min-height: 0;
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  background: #fffdfa;
  padding: clamp(18px, 3vw, 30px);
}

.tool-brief-dialog-footer {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  display: grid;
  gap: 10px;
}

.tool-brief-dialog-footer .tool-lead-actions {
  margin-top: 0;
}

.tool-brief-dialog-footer .tool-lead-form {
  max-width: 640px;
}

.tool-brief-dialog-footer .form-note {
  margin: 0;
  color: #177245;
  font-weight: 700;
}

.tool-brief-dialog .eyebrow {
  margin-bottom: 6px;
}

.tool-brief-dialog .tool-output-actions {
  justify-content: flex-end;
  max-width: 380px;
}

.tool-brief-dialog .tool-output-actions .button {
  background: #fffdfa;
}

.tool-brief-dialog .tool-output-actions .button:hover {
  background: rgba(223, 255, 117, 0.18);
}

.tool-brief-dialog .tool-brief-preview section {
  max-width: 860px;
  padding: 16px 0;
}

.tool-brief-dialog .tool-brief-preview section:first-child {
  padding-top: 0;
}

.tool-brief-dialog .tool-brief-preview h3 {
  color: #6d6258;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-brief-dialog .tool-brief-preview p,
.tool-brief-dialog .tool-brief-preview li {
  color: #2d2925;
  font-size: 15px;
  line-height: 1.55;
}

/* Public pages use expressive heroes, then calmer section headings below. */
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) main > section:not(.hero):not(.seo-hero):not(.tool-hero) h2,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) main > .section:not(.hero):not(.seo-hero):not(.tool-hero) h2,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-page > .section:not(.seo-hero) h2,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-page main > .section:not(.tool-hero) h2 {
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.06;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) main > section:not(.hero):not(.seo-hero):not(.tool-hero) h3,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) main > .section:not(.hero):not(.seo-hero):not(.tool-hero) h3,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-page > .section:not(.seo-hero) h3,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-page main > .section:not(.tool-hero) h3 {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.12;
}

@media print {
  .site-header,
  .site-footer,
  .tool-hero,
  .tool-form-panel,
  .tool-preview-panel,
  .tool-output-actions,
  .tool-lead-actions,
  .tool-lead-form,
  .tool-info,
  .seo-links,
  .seo-faq-section {
    display: none !important;
  }

  .tool-builder,
  .tool-brief-dialog,
  .tool-brief-preview {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

.seo-links {
  padding-block: clamp(30px, 5vw, 58px);
}

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

.seo-links a {
  display: grid;
  align-items: start;
  min-height: auto;
  gap: 7px;
  padding: 15px;
  border-radius: 8px;
  background: #fffdfa;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.seo-links a strong {
  font-size: 15px;
}

.seo-links a span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.seo-links a:hover {
  background: rgba(223, 255, 117, 0.24);
}

.dashboard-section {
  background: #101010;
  color: var(--paper);
}

.dashboard-section p {
  color: #f2e8df;
}

.dashboard-section .eyebrow {
  color: var(--lime);
}

.dashboard-header {
  margin-bottom: 26px;
}

.dashboard-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.dashboard-metrics article {
  background: var(--paper);
  color: var(--ink);
}

.dashboard-metrics span {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 42px;
  line-height: 1;
}

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

.ops-panel {
  margin-bottom: 22px;
  padding: 20px;
  background: var(--paper);
  color: var(--ink);
}

.panel-title {
  margin-bottom: 18px;
}

.panel-title h3 {
  margin: 0;
  font-size: 25px;
}

.table-wrap {
  overflow-x: auto;
}

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

th,
td {
  padding: 13px 10px;
  border-bottom: 2px solid rgba(7, 7, 7, 0.12);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #625950;
  font-size: 12px;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.status-pill.approved,
.status-pill.active {
  background: var(--mint);
}

.status-pill.rejected {
  background: var(--pink);
}

.row-action,
.icon-button {
  min-height: 36px;
  padding: 0 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}

.row-action.danger {
  background: var(--pink);
}

.operator-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.operator-message {
  margin: -6px 0 18px;
}

.operator-review-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 760px);
}

.operator-review-drawer.is-open {
  display: grid;
}

.operator-review-drawer[hidden]:not(.is-open) {
  display: none;
}

.operator-review-overlay {
  border: 0;
  background: rgba(7, 7, 7, 0.46);
  cursor: pointer;
}

.operator-review-panel {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-left: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: -8px 0 0 rgba(7, 7, 7, 0.16);
}

.operator-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-bottom: 2px solid rgba(7, 7, 7, 0.16);
  background: var(--cream);
}

.operator-review-header h3 {
  margin: 2px 0 0;
  font-size: 28px;
}

.operator-review-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.operator-review-body {
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 18px;
}

.creator-opportunity-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: none;
  place-items: center;
  padding: 20px;
}

.creator-opportunity-modal.is-open {
  display: grid;
}

.creator-opportunity-modal[hidden]:not(.is-open) {
  display: none;
}

.creator-opportunity-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 7, 7, 0.46);
  cursor: pointer;
}

.creator-opportunity-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(7, 7, 7, 0.28);
}

.creator-opportunity-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  padding: 18px;
  border-bottom: 2px solid rgba(7, 7, 7, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 245, 255, 0.92));
}

.creator-opportunity-header h3 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.08;
}

.creator-opportunity-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.opportunity-detail-card,
.opportunity-brief,
.opportunity-deliverables,
.opportunity-visit-request,
.opportunity-setup-missing,
.opportunity-next-steps {
  padding: 14px;
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  background: #fff;
}

.opportunity-detail-card .eyebrow {
  margin-bottom: 10px;
  color: var(--ink);
}

.opportunity-brief-status {
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 8px;
  background: #fffdf8;
}

.opportunity-brief-status span,
.opportunity-brief-grid article > span,
.opportunity-campaign-details dt,
.opportunity-request-summary span {
  color: var(--dashboard-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.opportunity-brief-status strong,
.opportunity-brief-grid strong,
.opportunity-request-summary strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.opportunity-brief-status p,
.opportunity-brief-grid p,
.opportunity-request-summary p {
  margin: 4px 0 0;
  color: var(--dashboard-muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

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

.opportunity-brief-grid article {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 8px;
  background: #fff;
}

.opportunity-brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.opportunity-brief-meta span {
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 999px;
  background: rgba(216, 255, 82, 0.16);
  color: #342f2a;
  font-size: 12px;
  font-weight: 650;
  padding: 4px 8px;
}

.opportunity-campaign-details {
  margin-top: 10px;
  border-top: 1px solid rgba(7, 7, 7, 0.08);
  padding-top: 10px;
}

.opportunity-campaign-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.opportunity-campaign-details summary::-webkit-details-marker {
  display: none;
}

.opportunity-campaign-details summary::after {
  content: "+";
  color: var(--dashboard-muted);
  font-weight: 700;
}

.opportunity-campaign-details[open] summary::after {
  content: "-";
}

.opportunity-campaign-details small {
  color: var(--dashboard-muted);
  font-size: 12px;
  font-weight: 600;
}

.opportunity-campaign-details dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 12px 0 0;
}

.opportunity-campaign-details div {
  min-width: 0;
}

.opportunity-campaign-details dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.opportunity-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fffdf8;
}

.opportunity-detail-list + .opportunity-detail-list {
  margin-top: 10px;
}

.opportunity-detail-list.secondary {
  background: #fff;
}

.opportunity-detail-list div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.1);
}

.opportunity-detail-list div:nth-child(odd) {
  border-right: 1px solid rgba(7, 7, 7, 0.1);
}

.opportunity-detail-list div:last-child,
.opportunity-detail-list div:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}

.opportunity-detail-list div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
}

.opportunity-detail-list dt {
  color: var(--dashboard-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.opportunity-detail-list dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.opportunity-detail-list.secondary dd {
  color: #4f4840;
  font-weight: 600;
}

.opportunity-brief p,
.opportunity-setup-missing p,
.opportunity-next-steps p {
  margin: 0;
  color: var(--dashboard-muted);
  font-size: 14px;
  line-height: 1.5;
}

.opportunity-brief .eyebrow,
.opportunity-deliverables .eyebrow,
.opportunity-visit-request .eyebrow,
.opportunity-setup-missing .eyebrow,
.opportunity-next-steps .eyebrow {
  margin-bottom: 8px;
  color: var(--ink);
}

.opportunity-visit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.opportunity-visit-form[hidden] {
  display: none;
}

.opportunity-request-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 8px;
  background: #fffdf8;
}

.opportunity-request-copy,
.opportunity-request-confirmation {
  margin: 0;
  color: var(--dashboard-muted);
  font-size: 14px;
  line-height: 1.5;
}

.opportunity-window-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / -1;
  margin-top: 12px;
}

.opportunity-window-option {
  display: grid;
  gap: 2px;
  min-width: 150px;
  border: 1px solid var(--dashboard-border);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  padding: 9px 11px;
  text-align: left;
}

.opportunity-window-option strong {
  font-size: 13px;
  font-weight: 750;
}

.opportunity-window-option span,
.opportunity-window-option.custom {
  color: var(--dashboard-muted);
  font-size: 12px;
  font-weight: 650;
}

.opportunity-window-option:hover,
.opportunity-window-option.selected {
  border-color: rgba(7, 7, 7, 0.36);
  background: rgba(216, 255, 82, 0.18);
}

.opportunity-window-option.custom {
  align-content: center;
  min-width: auto;
}

.opportunity-visit-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.opportunity-visit-form .wide,
.opportunity-visit-form .button,
.opportunity-visit-form .form-note,
.opportunity-visit-form .opportunity-request-confirmation {
  grid-column: 1 / -1;
}

.opportunity-visit-form input,
.opportunity-visit-form textarea {
  width: 100%;
  border: 1px solid var(--dashboard-border);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 10px 12px;
}

.opportunity-visit-form textarea {
  min-height: 72px;
  resize: vertical;
}

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

.opportunity-deliverables li {
  position: relative;
  padding-left: 22px;
  color: var(--dashboard-muted);
  font-size: 14px;
  line-height: 1.45;
}

.opportunity-deliverables li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(7, 7, 7, 0.24);
  border-radius: 50%;
  background: var(--lime);
}

.opportunity-brief hr {
  margin: 12px 0;
  border: 0;
  border-top: 1px solid rgba(7, 7, 7, 0.08);
}

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

.opportunity-content-brief article {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 8px;
  background: #fffdf8;
}

.opportunity-content-brief .wide {
  grid-column: 1 / -1;
}

.opportunity-content-brief span {
  display: block;
  margin-bottom: 6px;
  color: var(--dashboard-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.opportunity-content-brief p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.opportunity-content-brief ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--dashboard-muted);
  font-size: 14px;
  line-height: 1.42;
}

.opportunity-content-brief .operator-note {
  background: #fff;
}

.opportunity-setup-missing {
  background: #fffaf0;
}

.operator-review-layout {
  display: grid;
  gap: 12px;
}

.operator-review-card {
  padding: 16px;
  border: 2px solid rgba(7, 7, 7, 0.16);
  border-radius: var(--tight-radius);
  background: rgba(255, 255, 255, 0.9);
}

.operator-review-card h4 {
  margin: 0 0 12px;
  font-size: 20px;
}

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

.operator-review-field-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.operator-review-field-grid strong {
  color: var(--ink);
}

.operator-review-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.operator-review-summary-card {
  padding: 10px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.78);
}

.operator-review-summary-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-review-summary-card strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  color: var(--ink);
}

.operator-review-examples {
  display: grid;
  gap: 10px;
}

.operator-review-example {
  padding: 12px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: var(--tight-radius);
  background: rgba(245, 242, 238, 0.8);
}

.operator-review-example h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.operator-review-example p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
}

.operator-review-example p:last-child {
  margin-bottom: 0;
}

.operator-review-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.operator-review-readiness-list {
  display: grid;
  gap: 8px;
}

.operator-review-readiness-list p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.operator-detail-form,
.campaign-edit-form {
  display: grid;
  gap: 12px;
}

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

.operator-delivery-grid span {
  padding: 10px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.operator-delivery-grid strong {
  display: block;
  font-size: 19px;
}

.campaign-builder {
  margin-top: 22px;
}

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

select[multiple] {
  min-height: 132px;
}

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

.campaign-card {
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--cream);
}

.campaign-card h4 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.campaign-card p {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
}

.operator-campaign-card {
  display: grid;
  gap: 10px;
}

.operator-campaign-card .wide {
  grid-column: auto;
}

.operator-campaign-card textarea {
  min-height: 92px;
}

.content-hero {
  display: grid;
  gap: 18px;
  min-height: 420px;
  align-content: center;
  border-bottom: 2px solid var(--ink);
  background: var(--mint);
}

.content-hero h1 {
  max-width: 1000px;
}

.content-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.5;
}

.content-grid,
.policy-layout,
.contact-layout {
  display: grid;
  gap: 18px;
}

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

.policy-layout {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.25fr);
  align-items: start;
}

.content-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.96);
  box-shadow: 6px 6px 0 var(--ink);
}

.content-panel h2 {
  margin-top: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.contact-card {
  background: var(--blue);
}

.checkout-page,
.account-page {
  min-height: calc(100vh - 76px);
  background: var(--paper);
}

.account-page > div {
  max-width: 1180px;
  margin-inline: auto;
}

.account-page {
  padding-block: clamp(30px, 5vw, 58px);
}

.account-page h1,
.account-page h2,
.account-page h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.checkout-heading {
  max-width: 960px;
  margin-bottom: 28px;
}

.checkout-heading h1,
.payment-complete h1,
.account-locked h1,
.account-hero h1 {
  max-width: 1040px;
}

.checkout-heading p:not(.eyebrow),
.payment-complete > p,
.account-locked > p,
.account-hero > p {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.5;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.checkout-card,
.checkout-summary,
.payment-complete,
.account-hero,
.profile-card {
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  box-shadow: 6px 6px 0 var(--ink);
}

.checkout-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: #111;
  color: var(--paper);
}

.checkout-card p {
  color: #f2e8df;
}

.checkout-card .button.secondary {
  background: var(--paper);
}

.checkout-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0;
  padding: 18px;
  border: 2px solid var(--paper);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.08);
}

.checkout-total span,
.summary-row span,
.profile-card span {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-total strong {
  color: var(--lime);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.checkout-summary {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--mint);
  color: var(--ink);
}

.checkout-summary h3 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 52px);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 2px solid rgba(7, 7, 7, 0.18);
}

.summary-row strong {
  max-width: 58%;
  text-align: right;
}

.payment-complete {
  padding: clamp(28px, 5vw, 54px);
  background: var(--mint);
}

.success-summary {
  max-width: 780px;
  margin: 26px 0;
  background: var(--paper);
}

.account-locked {
  max-width: 860px;
  background: var(--peach);
}

.account-profile {
  display: grid;
  gap: 22px;
}

.account-hero {
  padding: clamp(28px, 5vw, 54px);
  background: #111;
  color: var(--paper);
}

.account-hero p {
  color: #f2e8df;
}

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

.profile-card {
  padding: clamp(22px, 4vw, 32px);
  background: rgba(255, 250, 246, 0.96);
}

.profile-card:nth-child(1) {
  background: var(--mint);
}

.profile-card:nth-child(2) {
  background: var(--blue);
}

.profile-card:nth-child(3) {
  background: var(--peach);
}

.profile-card h2 {
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 46px);
}

.wide-profile-card {
  grid-column: 1 / -1;
}

.status-pill.payment-pending {
  background: var(--peach);
}

.status-pill.active-account {
  background: var(--mint);
}

.ops-panel small {
  display: block;
  margin-top: 8px;
  color: #5f5750;
  font-weight: 850;
}

.business-workspace-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: 16px;
  align-items: center;
  padding: clamp(18px, 2.4vw, 24px);
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.98);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.profile-header-content {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.profile-avatar {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--mint);
  font-size: 22px;
  font-weight: 950;
}

.business-workspace-top h1 {
  max-width: 820px;
  margin: 0 0 8px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.05;
}

.business-workspace-top h1 em {
  color: var(--ink);
  font-style: normal;
}

.business-workspace-top p {
  margin: 0;
  color: #3c352f;
  font-size: 16px;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.profile-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 850;
}

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

.workspace-mini-stats article {
  display: grid;
  gap: 6px;
  align-content: end;
  min-height: 88px;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--mint);
  color: var(--ink);
}

.workspace-mini-stats article:nth-child(2) {
  background: var(--blue);
  color: var(--ink);
}

.workspace-mini-stats strong {
  font-size: 26px;
  line-height: 1;
}

.workspace-mini-stats span {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.business-account-tabs {
  position: sticky;
  top: 76px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
  padding: 6px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.94);
  backdrop-filter: blur(16px);
}

.business-account-tabs a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  font-size: 14px;
}

.business-account-tabs a:hover,
.business-account-tabs a.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.workspace-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 16px;
  align-items: start;
}

.workspace-main-column,
.workspace-side-column,
.workspace-section {
  display: grid;
  gap: 14px;
}

.workspace-section {
  margin-top: clamp(46px, 6vw, 82px);
  scroll-margin-top: 170px;
}

.workspace-card,
.metric-card {
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.96);
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.workspace-card {
  padding: clamp(16px, 2vw, 20px);
}

.workspace-card h2,
.card-heading h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
}

.workspace-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
}

.workspace-card p {
  font-size: 15px;
  line-height: 1.45;
}

.upcoming-card {
  min-height: 132px;
  text-align: left;
}

.compact-empty {
  display: flex;
  gap: 14px;
  align-items: center;
}

.empty-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--mint);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 950;
}

.empty-state {
  display: grid;
  place-items: start;
  min-height: 92px;
  align-content: center;
  text-align: left;
}

.empty-state.tall {
  min-height: 180px;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.segmented-control {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 4px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
}

.segmented-control button {
  min-height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.segmented-control button.active {
  background: var(--paper);
  box-shadow: 2px 2px 0 var(--ink);
}

.segmented-control.compact button {
  min-height: 32px;
  padding-inline: 12px;
  font-size: 13px;
}

.card-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.paid-card .status-pill {
  min-width: 44px;
  justify-content: center;
}

.quick-card {
  gap: 10px;
}

.quick-card,
.quick-card a {
  display: grid;
}

.quick-card a {
  gap: 4px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--paper);
  box-shadow: none;
}

.quick-card strong {
  font-size: 15px;
}

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

.performance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
}

.metric-card.featured {
  background: var(--mint);
}

.metric-card.dark {
  background: #111;
  color: var(--paper);
}

.metric-card span {
  color: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.metric-card strong {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
}

.metric-card p {
  margin: 0;
  color: inherit;
  font-size: 14px;
}

.small-metric {
  min-height: 92px;
}

.small-metric strong {
  font-size: 30px;
}

.referral-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.28fr);
  gap: 20px;
  align-items: center;
  background: rgba(255, 250, 246, 0.96);
}

.referral-card input,
.schedule-url input {
  background: var(--paper);
}

.referral-card small {
  display: block;
  margin-top: 10px;
  color: #4b443f;
  font-weight: 850;
}

.free-months {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--mint);
  text-align: center;
}

.free-months strong {
  font-size: 34px;
  line-height: 1;
}

.referral-stats,
.settings-grid {
  display: grid;
  gap: 16px;
}

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

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

.settings-panel:nth-child(1) {
  background: var(--paper);
}

.settings-panel:nth-child(2) {
  background: rgba(255, 250, 246, 0.96);
}

.sharing-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.18fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.schedule-qr {
  width: 132px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: var(--paper);
  object-fit: contain;
}

.schedule-url {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
}

.schedule-slug-label {
  grid-column: 2;
}

.availability-card {
  display: grid;
  gap: 18px;
}

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

.availability-list article {
  display: grid;
  grid-template-columns: minmax(120px, 0.2fr) minmax(180px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 2px solid rgba(7, 7, 7, 0.18);
  border-radius: var(--tight-radius);
  background: var(--paper);
}

.availability-list article.disabled {
  opacity: 0.56;
}

.availability-day {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}

.availability-day input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--lime);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-slots span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 2px solid rgba(7, 7, 7, 0.18);
  border-radius: 999px;
  background: var(--cream);
  font-size: 13px;
  font-weight: 850;
}

.availability-list button {
  min-height: 34px;
  padding: 0 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 900;
  cursor: pointer;
}

.subscription-card,
.account-card {
  display: grid;
  gap: 18px;
}

.account-toggle {
  justify-self: center;
}

.subscription-plan {
  display: grid;
  place-items: center;
  padding: 20px;
  border: 2px solid rgba(7, 7, 7, 0.16);
  border-radius: var(--tight-radius);
  background: var(--paper);
  text-align: center;
}

.subscription-plan > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  font-size: 12px;
  font-weight: 950;
}

.subscription-plan strong {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.subscription-plan-picker {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 2px solid rgba(7, 7, 7, 0.16);
  border-radius: var(--tight-radius);
  background: var(--paper);
}

.subscription-picker-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.subscription-picker-heading h3 {
  margin: 2px 0 0;
  font-size: 22px;
}

.subscription-picker-heading > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-weight: 950;
}

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

.subscription-plan-options button {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 144px;
  padding: 16px;
  border: 2px solid rgba(7, 7, 7, 0.18);
  border-radius: var(--tight-radius);
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.subscription-plan-options button:hover,
.subscription-plan-options button.active {
  border-color: var(--ink);
  background: var(--lime);
}

.subscription-plan-options span {
  font-weight: 950;
}

.subscription-plan-options strong {
  font-size: 26px;
  line-height: 1;
}

.subscription-plan-options small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.subscription-plan-options button.active small {
  color: var(--ink);
}

.dashboard-shell {
  --dashboard-border: #ded6cf;
  --dashboard-muted: #6f6a64;
  --dashboard-panel: rgba(255, 255, 255, 0.9);
  max-width: 1240px;
  margin-inline: auto;
}

.account-page:has(.dashboard-shell) {
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(245, 239, 231, 0.94)),
    var(--paper);
}

.dashboard-shell .business-workspace-top,
.dashboard-shell .workspace-card,
.dashboard-shell .metric-card,
.dashboard-shell .business-account-tabs,
.dashboard-metric-strip article,
.workflow-panel {
  border: 1px solid var(--dashboard-border);
  box-shadow: 0 14px 42px rgba(35, 30, 26, 0.07);
}

.dashboard-shell .dashboard-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 246, 0.9)),
    var(--paper);
}

.dashboard-shell .profile-avatar {
  width: 56px;
  height: 56px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--lime);
  font-size: 19px;
}

.dashboard-shell .business-workspace-top h1 {
  max-width: none;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.dashboard-shell .business-workspace-top p {
  max-width: 680px;
  color: var(--dashboard-muted);
  font-size: 15px;
}

.dashboard-shell .profile-meta span {
  min-height: 28px;
  border: 1px solid var(--dashboard-border);
  background: #fff;
  color: #312d29;
  font-size: 12px;
}

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

.dashboard-shell .button,
.dashboard-shell .nav-cta {
  min-height: 40px;
  border-width: 1px;
  box-shadow: none;
}

.dashboard-shell .button:hover,
.dashboard-shell .nav-cta:hover {
  transform: none;
  box-shadow: none;
}

.dashboard-shell .business-account-tabs {
  top: 78px;
  margin: 10px 0 18px;
  padding: 5px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.dashboard-shell .business-account-tabs a {
  min-height: 34px;
  border-radius: 10px;
  font-size: 13px;
}

.dashboard-shell .business-account-tabs a:hover,
.dashboard-shell .business-account-tabs a.active {
  background: var(--ink);
  color: var(--paper);
}

.dashboard-metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-metric-strip.creator-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-metric-strip article {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 18px;
  border-radius: 16px;
  background: var(--dashboard-panel);
}

.dashboard-metric-strip span,
.dashboard-shell .workspace-card .eyebrow,
.workflow-panel .eyebrow {
  margin-bottom: 0;
  color: var(--dashboard-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.dashboard-metric-strip strong {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
}

.dashboard-metric-strip p {
  margin: 0;
  color: var(--dashboard-muted);
  font-size: 13px;
  line-height: 1.35;
}

.creator-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 10px;
  min-width: min(460px, 100%);
}

.creator-hero-metrics article {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(35, 30, 26, 0.06);
}

.creator-hero-metrics span {
  color: var(--dashboard-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.creator-hero-metrics strong {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.creator-hero-metrics p {
  margin: 0;
  color: var(--dashboard-muted);
  font-size: 12px;
  line-height: 1.3;
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.22fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 20px;
  border-radius: 16px;
  background: #111;
  color: var(--paper);
}

.workflow-panel h2 {
  margin: 6px 0 0;
  color: var(--paper);
  font-size: 24px;
  line-height: 1.1;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 246, 0.2);
  border-radius: 14px;
  background: rgba(255, 250, 246, 0.08);
}

.workflow-steps li.active {
  border-color: var(--lime);
  background: rgba(223, 255, 117, 0.14);
}

.workflow-steps span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.workflow-steps strong {
  color: var(--paper);
  font-size: 14px;
  line-height: 1.2;
}

.workflow-steps small {
  color: #d8cec5;
  font-size: 12px;
  line-height: 1.35;
}

.production-dashboard {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: 18px;
}

.dashboard-shell .workspace-card {
  padding: 20px;
  border-radius: 16px;
  background: var(--dashboard-panel);
}

.dashboard-shell .workspace-card h2,
.dashboard-shell .card-heading h2 {
  font-size: clamp(19px, 2vw, 24px);
}

.dashboard-shell .workspace-card p {
  color: var(--dashboard-muted);
  font-size: 14px;
}

.dashboard-shell .card-heading {
  align-items: center;
}

.dashboard-shell .status-pill {
  border-width: 1px;
  background: #eef6ff;
  font-size: 11px;
}

.dashboard-shell .status-pill.active {
  background: #e9fbdc;
}

.actionable-empty {
  align-items: start;
  min-height: 150px;
  padding-top: 18px;
}

.actionable-empty .button {
  width: max-content;
  margin-top: 6px;
}

.readiness-card {
  gap: 16px;
}

.readiness-meter {
  height: 10px;
  border-radius: 999px;
  background: #ebe4dd;
  overflow: hidden;
}

.readiness-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.dashboard-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--dashboard-muted);
  font-size: 14px;
  font-weight: 760;
}

.dashboard-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 14px;
  height: 14px;
  border: 1px solid var(--dashboard-border);
  border-radius: 50%;
  background: #fff;
}

.dashboard-checklist li.done {
  color: var(--ink);
}

.dashboard-checklist li.done::before {
  border-color: var(--ink);
  background: var(--lime);
}

.dashboard-shell .quick-card a {
  border: 1px solid var(--dashboard-border);
  border-radius: 12px;
  background: #fff;
  transition: border-color 160ms ease, background 160ms ease;
}

.dashboard-shell .quick-card a:hover {
  border-color: var(--ink);
  background: #fffdf9;
}

.dashboard-shell .section-heading {
  padding: 6px 0 0;
}

.dashboard-shell .section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(21px, 2.2vw, 28px);
}

.dashboard-shell .performance-grid,
.dashboard-shell .referral-stats,
.dashboard-shell .settings-grid {
  gap: 14px;
}

.dashboard-shell .performance-grid,
.dashboard-shell .referral-card,
.dashboard-shell .referral-form-card {
  margin-bottom: 4px;
}

.dashboard-shell .metric-card {
  min-height: 116px;
  padding: 16px;
  border-radius: 16px;
  background: var(--dashboard-panel);
  box-shadow: 0 14px 42px rgba(35, 30, 26, 0.07);
}

.dashboard-shell .metric-card.featured,
.dashboard-shell .metric-card.dark {
  background: var(--dashboard-panel);
  color: var(--ink);
}

.dashboard-shell .metric-card.featured {
  border-top: 3px solid var(--lime);
}

.dashboard-shell .metric-card.dark {
  border-top: 3px solid var(--ink);
}

.dashboard-shell .metric-card:nth-child(3) {
  border-top: 3px solid var(--blue);
}

.dashboard-shell .metric-card:nth-child(4) {
  border-top: 3px solid var(--peach);
}

.dashboard-shell .metric-card span {
  color: var(--dashboard-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.dashboard-shell .metric-card strong {
  font-size: clamp(24px, 2.5vw, 34px);
}

.dashboard-shell .metric-card p {
  color: var(--dashboard-muted);
  font-size: 13px;
}

.dashboard-shell .small-metric {
  min-height: 88px;
}

.dashboard-shell .small-metric strong {
  font-size: 26px;
}

.dashboard-shell .referral-card {
  background: var(--dashboard-panel);
}

.dashboard-shell .free-months {
  min-height: 92px;
  border: 1px solid var(--dashboard-border);
  background: #e9fbdc;
  box-shadow: none;
}

.dashboard-shell .free-months strong {
  font-size: 30px;
}

.dashboard-shell label {
  color: var(--dashboard-muted);
  font-size: 12px;
  font-weight: 850;
}

.dashboard-shell input,
.dashboard-shell select,
.dashboard-shell textarea {
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--dashboard-border);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
}

.dashboard-shell textarea {
  min-height: 88px;
}

.dashboard-shell input:focus,
.dashboard-shell select:focus,
.dashboard-shell textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(223, 255, 117, 0.55);
}

.dashboard-shell .niche-choice-group,
.dashboard-shell .content-example-builder {
  border: 1px solid var(--dashboard-border);
  border-radius: 16px;
  background: #fff;
}

.dashboard-shell .niche-chip {
  min-height: 38px;
  border-width: 1px;
  box-shadow: none;
  font-size: 12px;
}

.dashboard-shell .content-example-row {
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  box-shadow: none;
}

.dashboard-shell .settings-panel,
.dashboard-shell .settings-panel:nth-child(1),
.dashboard-shell .settings-panel:nth-child(2) {
  background: var(--dashboard-panel);
}

.dashboard-shell .setup-checklist-card {
  background: linear-gradient(135deg, #fffefb, #eef8ff);
}

.setup-checklist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.setup-check {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.setup-check span {
  width: max-content;
  padding: 4px 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-size: 11px;
  font-weight: 950;
}

.setup-check.done span {
  background: var(--mint);
}

.setup-check strong {
  font-size: 15px;
}

.setup-check small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.dashboard-shell .sharing-card,
.dashboard-shell .availability-card,
.dashboard-shell .subscription-card,
.dashboard-shell .account-card {
  background: var(--dashboard-panel);
}

.dashboard-shell .schedule-qr {
  border: 1px solid var(--dashboard-border);
  box-shadow: none;
}

.dashboard-shell .availability-list article {
  padding: 12px;
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  background: #fff;
}

.dashboard-shell .availability-list button {
  min-height: 32px;
  border-width: 1px;
  background: #fff;
  box-shadow: none;
  font-size: 12px;
}

.dashboard-shell .time-slots > span {
  border: 1px solid var(--dashboard-border);
  background: #fff;
}

.dashboard-shell .time-slot-editor {
  border: 1px solid var(--dashboard-border);
  background: #fff8f0;
}

.dashboard-shell .billing-toggle {
  border: 1px solid var(--dashboard-border);
  background: #ece2d8;
}

.dashboard-shell .billing-toggle button {
  min-height: 30px;
  color: #433d37;
  font-size: 13px;
}

.dashboard-shell .billing-toggle button.active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 16px rgba(7, 7, 7, 0.12);
}

.dashboard-shell .subscription-plan {
  padding: 18px;
  border: 1px solid var(--dashboard-border);
  background: #fff;
}

.dashboard-shell .subscription-plan > span {
  border: 1px solid var(--dashboard-border);
  background: #e9fbdc;
}

.dashboard-shell .subscription-plan strong {
  font-size: clamp(28px, 3vw, 38px);
}

.dashboard-shell .subscription-plan-picker {
  border: 1px solid var(--dashboard-border);
  background: #fffbf6;
}

.dashboard-shell .subscription-picker-heading > span {
  border: 1px solid var(--dashboard-border);
}

.dashboard-shell .subscription-plan-options button {
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  box-shadow: none;
}

.dashboard-shell .subscription-plan-options button:hover,
.dashboard-shell .subscription-plan-options button.active {
  border-color: var(--ink);
  background: #eaff9c;
}

.workspace-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--dashboard-border, rgba(7, 7, 7, 0.16));
}

.workspace-row:first-child {
  border-top: 0;
}

.workspace-row strong,
.workspace-row span {
  display: block;
}

.workspace-row > div:first-child span {
  margin-top: 4px;
  color: var(--dashboard-muted, var(--muted));
  font-size: 13px;
  font-weight: 760;
}

.workspace-row-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.workspace-row-metrics span,
.row-action {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--dashboard-border, rgba(7, 7, 7, 0.18));
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.workspace-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

button.row-action {
  cursor: pointer;
}

.row-action.disabled,
.button.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.copy-row,
.subscription-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

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

.referral-form-card {
  margin-top: 16px;
}

.time-slot-editor {
  display: inline-grid;
  grid-template-columns: minmax(82px, 1fr) auto minmax(82px, 1fr) auto;
  gap: 6px;
  align-items: center;
  min-height: auto;
  padding: 6px;
  border: 1px solid rgba(7, 7, 7, 0.18);
  border-radius: 12px;
  background: var(--cream);
}

.time-slot-editor input {
  width: 92px;
  min-height: 30px;
  padding: 0 8px;
  border-width: 1px;
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
  font-weight: 850;
}

.time-slot-editor button {
  min-height: 30px;
  padding-inline: 9px;
  border-width: 1px;
  background: #fff;
  font-size: 12px;
}

.schedule-public-page {
  min-height: 76vh;
}

.schedule-public-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.schedule-public-hero {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 2px solid var(--ink);
  border-radius: var(--tight-radius);
  background: #111;
  color: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
}

.schedule-public-hero h1 {
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(54px, 8vw, 104px);
}

.schedule-public-hero p {
  color: #e5dad2;
}

.schedule-offer-panel,
.schedule-facts article {
  padding: 16px;
  border: 1px solid rgba(255, 250, 246, 0.22);
  border-radius: var(--tight-radius);
  background: rgba(255, 250, 246, 0.08);
}

.schedule-offer-panel span,
.schedule-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-offer-panel strong {
  color: var(--paper);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

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

.schedule-facts strong {
  color: var(--paper);
  font-size: 24px;
}

.schedule-request-card {
  position: sticky;
  top: 96px;
}

.public-availability-card {
  grid-column: 1 / -1;
}

.public-availability-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.public-availability-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: var(--tight-radius);
  background: var(--paper);
}

.public-availability-card span {
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.creator-dashboard .dashboard-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 245, 255, 0.92)),
    var(--paper);
}

.creator-hero-metrics article:nth-child(1) {
  background: #fff8e9;
}

.creator-hero-metrics article:nth-child(2) {
  background: #eef8ff;
}

.creator-hero-metrics article:nth-child(3) {
  background: #f4fff1;
}

.creator-review-state,
.deliverable-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.creator-review-state {
  padding: 18px;
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  background: #fff;
}

.creator-review-state strong {
  font-size: 18px;
}

.matching-action {
  justify-self: start;
  margin-top: 2px;
}

.matching-action.is-muted {
  pointer-events: none;
  background: #f7f2eb;
  color: var(--dashboard-muted);
}

.matching-opportunity-list {
  margin-top: 8px;
}

.matching-opportunity-heading {
  color: var(--dashboard-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.matching-opportunity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--dashboard-border);
  border-radius: 8px;
  background: #fffdf9;
}

.matching-opportunity-row strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}

.matching-opportunity-row small {
  display: block;
  margin-top: 4px;
  color: var(--dashboard-muted);
  font-size: 12px;
}

.matching-row-label {
  color: var(--dashboard-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.matching-row-meta {
  display: grid;
  gap: 4px;
  color: var(--dashboard-muted);
  font-size: 12px;
  text-align: right;
}

.matching-row-action {
  min-height: 36px;
  padding: 8px 14px;
}

.matching-empty-state {
  display: grid;
  gap: 4px;
  padding: 12px 0 0;
  color: var(--dashboard-muted);
}

.deliverable-list div:not(.matching-empty-state) {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--dashboard-border);
}

.deliverable-list div:first-child,
.deliverable-list .matching-opportunity-heading + .matching-opportunity-row {
  border-top: 0;
}

.deliverable-list strong {
  font-size: 14px;
}

.deliverable-list span {
  color: var(--dashboard-muted);
  font-size: 13px;
  text-align: right;
}

.contact-card-panel h2 {
  margin: 8px 0;
  overflow-wrap: anywhere;
  font-size: 18px;
}

.workspace-app-shell {
  --workspace-sidebar-width: 248px;
  --workspace-bg: #f8f7f5;
  --workspace-panel: #ffffff;
  --workspace-border: #e6e1dc;
  --workspace-text: #251827;
  --workspace-muted: #718096;
  --workspace-accent: var(--lime);
  --workspace-warn-bg: #fff0e8;
  background: var(--workspace-bg);
  color: var(--workspace-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.workspace-app-shell::before {
  display: none;
}

.workspace-app-shell h1,
.workspace-app-shell h2,
.workspace-app-shell h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.workspace-app-shell h1 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.workspace-app-shell h2 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.workspace-app-shell h3 {
  font-size: 18px;
  line-height: 1.18;
}

.workspace-app-shell p {
  color: var(--workspace-muted);
}

.workspace-app-shell > .site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: var(--workspace-sidebar-width);
  min-height: 100dvh;
  padding: 28px 18px;
  border-right: 1px solid var(--workspace-border);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.workspace-app-shell > .site-header .brand {
  gap: 12px;
  margin-bottom: 34px;
  color: var(--workspace-text);
  font-size: 18px;
}

.workspace-app-shell > .site-header .brand-mark {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.workspace-app-shell > .site-header .main-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: start;
  justify-items: stretch;
  width: 100%;
}

.workspace-app-shell > .site-header .main-nav a {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px 0 18px;
  border-radius: 12px;
  color: #617085;
  font-size: 15px;
  font-weight: 800;
}

.workspace-app-shell > .site-header .main-nav a::before {
  content: "";
  position: absolute;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
}

.workspace-app-shell > .site-header .main-nav a:hover,
.workspace-app-shell > .site-header .main-nav a.active {
  background: rgba(223, 255, 117, 0.28);
  color: var(--workspace-text);
}

.workspace-app-shell > .site-header .main-nav a.active::before {
  background: var(--workspace-accent);
}

.workspace-app-shell > .site-header .header-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  justify-self: auto;
}

.workspace-app-shell > .site-header .button,
.workspace-app-shell > .site-header .nav-cta {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--workspace-border);
  border-radius: 999px;
  background: #fff;
  color: var(--workspace-text);
  box-shadow: none;
  font-size: 14px;
}

.workspace-app-shell > main {
  min-height: 100dvh;
  margin-left: var(--workspace-sidebar-width);
}

.workspace-app-shell .section {
  max-width: none;
  padding: clamp(28px, 4vw, 48px) clamp(26px, 5vw, 78px);
}

.workspace-app-shell .account-page,
.workspace-app-shell .dashboard-section {
  background: var(--workspace-bg);
}

.workspace-app-shell .dashboard-shell,
.workspace-app-shell [data-operator-workspace],
.workspace-app-shell .operator-access-panel {
  max-width: 1180px;
  margin-inline: auto;
}

.workspace-app-shell .dashboard-shell .business-workspace-top,
.workspace-app-shell .dashboard-shell .workspace-card,
.workspace-app-shell .dashboard-shell .metric-card,
.workspace-app-shell .dashboard-shell .business-account-tabs,
.workspace-app-shell .dashboard-metric-strip article,
.workspace-app-shell .workflow-panel,
.workspace-app-shell .ops-panel,
.workspace-app-shell .operator-access-panel,
.workspace-app-shell .lead-form {
  border: 1px solid var(--workspace-border);
  border-radius: 16px;
  background: var(--workspace-panel);
  box-shadow: 0 10px 34px rgba(45, 36, 30, 0.06);
}

.workspace-app-shell .dashboard-shell .dashboard-hero,
.workspace-app-shell .dashboard-header {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--workspace-border);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(253, 246, 250, 0.92)),
    var(--workspace-panel);
  box-shadow: 0 16px 48px rgba(45, 36, 30, 0.07);
}

.workspace-app-shell .creator-dashboard .dashboard-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.94)),
    var(--workspace-panel);
}

.workspace-app-shell .dashboard-header {
  display: block;
  margin-bottom: 20px;
}

.workspace-app-shell .dashboard-header .back-link {
  display: none;
}

.workspace-app-shell .dashboard-header h1 {
  max-width: 760px;
  margin-bottom: 12px;
}

.workspace-app-shell .dashboard-header p:not(.eyebrow) {
  max-width: 760px;
  color: var(--workspace-muted);
  font-size: 15px;
}

.workspace-app-shell .profile-avatar {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: #f4e8ef;
  color: var(--workspace-text);
  font-size: 17px;
}

.workspace-app-shell .dashboard-shell .profile-meta span,
.workspace-app-shell .status-pill,
.workspace-app-shell .tag,
.workspace-app-shell .workspace-row-metrics span {
  min-height: 26px;
  border: 1px solid #ece6df;
  border-radius: 999px;
  background: #f7f5f2;
  color: #4a3a46;
  box-shadow: none;
  font-size: 12px;
}

.workspace-app-shell .status-pill.active,
.workspace-app-shell .dashboard-checklist li.done::before {
  background: #e8f8ed;
}

.workspace-app-shell .eyebrow {
  color: #5b4d57;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.workspace-app-shell .business-account-tabs {
  position: static;
  margin: 18px 0 22px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--workspace-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.workspace-app-shell .business-account-tabs a {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #5e6a7d;
  font-size: 15px;
}

.workspace-app-shell .business-account-tabs a:hover,
.workspace-app-shell .business-account-tabs a.active {
  border-color: var(--lime);
  background: transparent;
  color: var(--ink);
}

.workspace-app-shell .workspace-dashboard,
.workspace-app-shell .production-dashboard {
  gap: 22px;
}

.workspace-app-shell .workspace-card,
.workspace-app-shell .metric-card,
.workspace-app-shell .ops-panel {
  padding: 20px;
}

.workspace-app-shell .workspace-card h2,
.workspace-app-shell .card-heading h2,
.workspace-app-shell .workspace-card h3,
.workspace-app-shell .panel-title h3 {
  color: var(--workspace-text);
}

.workspace-app-shell .metric-card.featured,
.workspace-app-shell .metric-card.dark,
.workspace-app-shell .dashboard-metrics article {
  background: #fff;
  color: var(--workspace-text);
}

.workspace-app-shell .metric-card.dark p,
.workspace-app-shell .metric-card.featured p {
  color: var(--workspace-muted);
}

.workspace-app-shell .metric-card strong,
.workspace-app-shell .dashboard-metrics strong,
.workspace-app-shell .workspace-mini-stats strong,
.workspace-app-shell .creator-hero-metrics strong {
  color: var(--workspace-text);
  font-size: clamp(26px, 3vw, 38px);
}

.workspace-app-shell .dashboard-section p,
.workspace-app-shell .dashboard-section .eyebrow {
  color: var(--workspace-muted);
}

.workspace-app-shell .dashboard-metrics {
  gap: 14px;
}

.workspace-app-shell .dashboard-metrics article {
  padding: 18px;
  border: 1px solid var(--workspace-border);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(45, 36, 30, 0.06);
}

.workspace-app-shell .ops-panel {
  margin-bottom: 18px;
}

.workspace-app-shell .table-wrap {
  border: 1px solid var(--workspace-border);
  border-radius: 14px;
  background: #fff;
}

.workspace-app-shell table {
  border-collapse: separate;
  border-spacing: 0;
}

.workspace-app-shell th,
.workspace-app-shell td {
  padding: 14px 16px;
  border-bottom: 1px solid #eef0f2;
  color: #536074;
}

.workspace-app-shell th {
  color: #43243a;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.workspace-app-shell tr:last-child td {
  border-bottom: 0;
}

.workspace-app-shell input,
.workspace-app-shell select,
.workspace-app-shell textarea,
.workspace-app-shell .dashboard-shell input,
.workspace-app-shell .dashboard-shell select,
.workspace-app-shell .dashboard-shell textarea {
  border: 1px solid var(--workspace-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.workspace-app-shell .button.primary,
.workspace-app-shell .nav-cta {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  box-shadow: none;
}

.workspace-app-shell .button.secondary,
.workspace-app-shell .row-action {
  border: 1px solid var(--workspace-border);
  background: #fff;
  color: var(--workspace-text);
  box-shadow: none;
}

.workspace-app-shell .form-note,
.workspace-app-shell .operator-message {
  border: 1px solid #f2d7ca;
  border-radius: 14px;
  background: var(--workspace-warn-bg);
  color: #6f4c3c;
}

.workspace-app-shell [data-account-goal-helper] {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--workspace-muted);
  padding: 0;
  font-weight: 500;
}

.workspace-app-shell .creator-offer-templates {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--workspace-border);
  border-radius: 8px;
  background: #fff;
}

.workspace-app-shell .creator-offer-templates h3 {
  margin: 0;
}

.workspace-app-shell .creator-offer-templates > div:first-child p {
  margin: 4px 0 0;
  color: var(--workspace-muted);
  font-size: 13px;
}

.workspace-app-shell .offer-template-context {
  flex-basis: 100%;
  margin: 0;
  color: var(--workspace-muted);
  font-size: 12px;
}

.workspace-app-shell .offer-template-modal[hidden]:not(.is-open) {
  display: none;
}

.workspace-app-shell .offer-template-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.workspace-app-shell .offer-template-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(7, 7, 7, 0.34);
}

.workspace-app-shell .offer-template-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--workspace-border);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 16px 48px rgba(7, 7, 7, 0.14);
}

.workspace-app-shell .offer-template-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--workspace-border);
}

.workspace-app-shell .offer-template-header h2 {
  margin: 0;
}

.workspace-app-shell .offer-template-header p:not(.eyebrow) {
  margin: 6px 0 0;
  color: var(--workspace-muted);
}

.workspace-app-shell .offer-template-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--workspace-border);
  background: #fffdf9;
}

.workspace-app-shell .offer-template-filters button {
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid var(--workspace-border);
  border-radius: 999px;
  background: #fff;
  color: var(--workspace-muted);
  font-size: 12px;
  font-weight: 650;
  box-shadow: none;
}

.workspace-app-shell .offer-template-filters button.active,
.workspace-app-shell .offer-template-filters button:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.workspace-app-shell .offer-template-list {
  display: grid;
  gap: 10px;
  min-height: 0;
  padding: 14px 18px 18px;
  overflow-y: auto;
}

.workspace-app-shell .offer-template-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--workspace-border);
  border-radius: 8px;
  background: #fffdf9;
}

.workspace-app-shell .offer-template-card h3 {
  margin: 3px 0 0;
}

.workspace-app-shell .offer-template-card span {
  color: var(--workspace-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.workspace-app-shell .offer-template-card small {
  align-self: start;
  justify-self: end;
  max-width: 220px;
  color: var(--workspace-muted);
  font-size: 11px;
  line-height: 1.35;
  text-align: right;
}

.workspace-app-shell .offer-template-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--workspace-muted);
  font-size: 13px;
  line-height: 1.45;
}

.workspace-app-shell .offer-template-card .button {
  width: fit-content;
  min-height: 36px;
  padding: 8px 12px;
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.workspace-app-shell .offer-template-empty {
  padding: 20px;
  border: 1px solid var(--workspace-border);
  border-radius: 8px;
  background: #fff;
}

.workspace-app-shell .offer-template-empty h3,
.workspace-app-shell .offer-template-empty p {
  margin: 0;
}

.workspace-app-shell .offer-template-empty p {
  margin-top: 6px;
  color: var(--workspace-muted);
}

.workspace-app-shell .site-footer {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  margin: 12px 0 0;
  color: #ded4cc;
}

.footer-brand-block > a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--lime);
  font-weight: 950;
}

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

.footer-nav-grid div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav-grid strong {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-nav-grid a {
  color: var(--paper);
  font-weight: 850;
}

.footer-nav-grid a:hover {
  color: var(--lime);
}

.footer-brand .brand-mark {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

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

  .header-actions {
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .audience-hero,
  .signup-page,
  .split,
  .creator-section,
  .case-section,
  .forms-section,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .signup-intro {
    position: static;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-dashboard {
    margin-inline: auto;
  }

  .feature-grid,
  .content-grid,
  .pricing-grid,
  .faq-grid,
  .campaign-cards {
    grid-template-columns: 1fr;
  }

  .operator-review-drawer {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  }

  .contact-layout,
  .checkout-layout,
  .business-workspace-top,
  .dashboard-shell .dashboard-hero,
  .workspace-dashboard,
  .workflow-panel,
  .referral-card,
  .settings-grid,
  .sharing-card,
  .schedule-url,
  .profile-grid,
  .schedule-public-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .workspace-mini-stats,
  .performance-grid,
  .dashboard-metric-strip,
  .creator-hero-metrics,
  .referral-stats,
  .setup-checklist,
  .content-example-grid,
  .dashboard-form-grid,
  .niche-chip-grid,
  .subscription-plan-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .creator-hero-metrics {
    min-width: 0;
  }

  .wide-profile-card {
    grid-column: auto;
  }

  .campaign-panel {
    position: static;
  }

  .schedule-request-card {
    position: static;
  }

  .price-card.recommended {
    transform: none;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 170px;
  }

  .section[id] {
    scroll-margin-top: 170px;
  }

  .site-header {
    align-items: start;
  }

  .nav-cta {
    display: none;
  }

  .header-actions {
    align-self: center;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 50px);
  }

  .hero-actions,
  .section-heading,
  .dashboard-header,
  .panel-title,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .operator-review-drawer {
    grid-template-columns: 1fr;
  }

  .operator-review-overlay {
    display: none;
  }

  .operator-review-panel {
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    overflow: hidden;
    border-left: 0;
  }

  .operator-review-header {
    flex-direction: column;
    align-items: stretch;
  }

  .operator-review-header-actions,
  .operator-review-action-row {
    width: 100%;
  }

  .operator-review-action-row .row-action {
    width: 100%;
  }

  .operator-review-field-grid,
  .operator-review-summary-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual::before {
    display: none;
  }

  .hero-stats,
  .hero-dashboard-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats span {
    min-height: auto;
    padding: 12px;
    font-size: 13px;
  }

  .hero-stats strong {
    font-size: 20px;
  }

  .hero-dashboard {
    width: 100%;
    margin-inline: 0;
  }

  .hero-dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-workflow article {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .hero-workflow p {
    display: none;
  }

  .hero-dashboard-metrics article {
    padding: 10px;
  }

  .hero-dashboard-metrics strong {
    font-size: 14px;
  }

  .hero-note {
    display: none;
  }

  .comparison-heading {
    text-align: left;
  }

  .comparison-heading p:not(.eyebrow) {
    margin-inline: 0;
  }

  .phone-mock {
    right: auto;
    left: 50%;
    width: min(100%, 360px);
    transform: translateX(-50%);
  }

  .orbit-card {
    display: none;
  }

  .creator-stack {
    left: 16px;
    bottom: 6%;
  }

  .opportunity-grid,
  .steps,
  .case-grid,
  .footer-nav-grid,
  .workspace-mini-stats,
  .performance-grid,
  .dashboard-metric-strip,
  .creator-hero-metrics,
  .workflow-steps,
  .referral-stats,
  .setup-checklist,
  .availability-list article,
  .trust-grid,
  .dashboard-metrics,
  .form-grid,
  .creator-benefit-strip,
  .step-progress,
    .content-example-grid,
    .dashboard-form-grid,
    .niche-chip-grid,
    .subscription-plan-options,
    .campaign-form {
      grid-template-columns: 1fr;
  }

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

  .opportunity-brief-grid,
  .opportunity-campaign-details dl,
  .opportunity-content-brief {
    grid-template-columns: 1fr;
  }

  .opportunity-request-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .opportunity-visit-form {
    grid-template-columns: 1fr;
  }

  .opportunity-detail-list div,
  .opportunity-detail-list div:nth-child(odd) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 7, 7, 0.1);
  }

  .opportunity-detail-list div:last-child {
    border-bottom: 0;
  }

  .content-example-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .signup-next-note {
    flex-direction: column;
  }

  .business-account-tabs {
    position: static;
    border-radius: var(--tight-radius);
  }

  .business-account-tabs a,
  .dashboard-hero-actions,
  .dashboard-hero-actions .button,
  .schedule-url .button,
  .availability-list button {
    width: 100%;
  }

  .wide {
    grid-column: auto;
  }

  .billing-toggle,
  .billing-toggle button,
  .copy-row,
  .subscription-actions,
  .workspace-row,
  .schedule-facts {
    grid-template-columns: 1fr;
  }

  .billing-toggle,
  .billing-toggle button,
  .workspace-row-actions,
  .workspace-row-metrics {
    width: 100%;
  }

  .workspace-row-metrics,
  .workspace-row-actions {
    justify-content: flex-start;
  }

  .time-slot-editor {
    grid-template-columns: 1fr;
  }

  .time-slot-editor input {
    width: 100%;
  }

  .public-availability-card li {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-availability-card span {
    text-align: left;
  }

  table {
    min-width: 640px;
  }
}

@media (max-width: 1080px) {
  .workspace-app-shell > .site-header {
    position: sticky;
    inset: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: auto;
    min-height: 76px;
    padding: 14px clamp(16px, 4vw, 28px);
    border-right: 0;
    border-bottom: 1px solid var(--workspace-border);
  }

  .workspace-app-shell > .site-header .brand {
    margin-bottom: 0;
  }

  .workspace-app-shell > .site-header .main-nav {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0 0;
  }

  .workspace-app-shell > .site-header .main-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
  }

  .workspace-app-shell > .site-header .main-nav a::before {
    display: none;
  }

  .workspace-app-shell > .site-header .header-actions {
    margin-top: 0;
    justify-self: end;
  }

  .workspace-app-shell > .site-header .button,
  .workspace-app-shell > .site-header .nav-cta {
    width: auto;
    min-width: max-content;
  }

  .workspace-app-shell > main {
    margin-left: 0;
  }

  .workspace-app-shell .section {
    padding: clamp(22px, 5vw, 34px) clamp(16px, 4vw, 28px);
  }

  .workspace-app-shell .dashboard-shell .dashboard-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .workspace-app-shell > .site-header {
    align-items: start;
  }

  .workspace-app-shell > .site-header .header-actions {
    align-self: center;
  }

  .workspace-app-shell .dashboard-shell .dashboard-hero,
  .workspace-app-shell .dashboard-header {
    padding: 20px;
  }

  .workspace-app-shell .profile-header-content {
    align-items: flex-start;
  }

  .workspace-app-shell .workspace-card,
  .workspace-app-shell .metric-card,
  .workspace-app-shell .ops-panel {
    padding: 16px;
  }

  .workspace-app-shell .table-wrap {
    border-radius: 12px;
  }
}

/* Workspace cleanup pass: keep logged-in product UI calmer than the public marketing pages. */
.workspace-app-shell {
  --workspace-bg: #faf7f1;
  --workspace-panel: #fff;
  --workspace-border: #e8e2da;
  --workspace-text: #171512;
  --workspace-muted: #5f625c;
  --workspace-accent: var(--lime);
  --workspace-warn-bg: #fff5ec;
  --workspace-radius: 8px;
  --workspace-shadow: 0 1px 2px rgba(27, 22, 18, 0.05);
}

.workspace-app-shell,
.workspace-app-shell .dashboard-section {
  color: var(--workspace-text);
}

.workspace-app-shell h1 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.12;
}

.workspace-app-shell h2 {
  margin-bottom: 12px;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.18;
}

.workspace-app-shell h3 {
  font-size: 17px;
  font-weight: 650;
}

.workspace-app-shell strong,
.workspace-app-shell th,
.workspace-app-shell label,
.workspace-app-shell .brand,
.workspace-app-shell .panel-title h3,
.workspace-app-shell .workspace-card h2,
.workspace-app-shell .card-heading h2 {
  font-weight: 650;
}

.workspace-app-shell .eyebrow,
.workspace-app-shell .dashboard-metric-strip span,
.workspace-app-shell .dashboard-shell .workspace-card .eyebrow,
.workspace-app-shell .creator-hero-metrics span,
.workspace-app-shell .metric-card span {
  color: var(--workspace-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.workspace-app-shell > .site-header {
  background: #fffaf6;
  box-shadow: none;
}

.workspace-app-shell > .site-header .brand {
  font-size: 17px;
  font-weight: 700;
}

.workspace-app-shell > .site-header .brand-mark,
.workspace-app-shell .profile-avatar {
  border-radius: var(--workspace-radius);
  background: var(--lime);
  color: var(--ink);
}

.workspace-app-shell > .site-header .brand-mark {
  border: 1px solid var(--ink);
}

.workspace-app-shell > .site-header .main-nav a {
  min-height: 40px;
  border-radius: var(--workspace-radius);
  color: #555b54;
  font-size: 14px;
  font-weight: 600;
}

.workspace-app-shell > .site-header .main-nav a::before {
  left: 0;
  width: 3px;
  height: 18px;
  border-radius: 999px;
}

.workspace-app-shell > .site-header .main-nav a:hover,
.workspace-app-shell > .site-header .main-nav a.active {
  background: rgba(223, 255, 117, 0.28);
  color: var(--ink);
}

.workspace-app-shell > .site-header .main-nav a.active::before {
  background: var(--ink);
}

.workspace-app-shell > .site-header .button,
.workspace-app-shell > .site-header .nav-cta,
.workspace-app-shell .button,
.workspace-app-shell .row-action,
.workspace-app-shell .dashboard-shell .button,
.workspace-app-shell .dashboard-shell .nav-cta {
  min-height: 38px;
  border-radius: var(--workspace-radius);
  box-shadow: none;
  font-size: 14px;
  font-weight: 650;
}

.workspace-app-shell .button.primary,
.workspace-app-shell .nav-cta,
.workspace-app-shell .dashboard-shell .billing-toggle button.active,
.workspace-app-shell .subscription-plan-options button.active {
  border-color: var(--ink);
  background: var(--lime);
  color: var(--ink);
}

.workspace-app-shell .button.secondary,
.workspace-app-shell .row-action,
.workspace-app-shell > .site-header .button,
.workspace-app-shell > .site-header .nav-cta {
  border-color: var(--workspace-border);
  background: #fff;
}

.workspace-app-shell .dashboard-shell .business-workspace-top,
.workspace-app-shell .dashboard-shell .dashboard-hero,
.workspace-app-shell .dashboard-shell .workspace-card,
.workspace-app-shell .dashboard-shell .metric-card,
.workspace-app-shell .dashboard-shell .business-account-tabs,
.workspace-app-shell .dashboard-metric-strip article,
.workspace-app-shell .workflow-panel,
.workspace-app-shell .ops-panel,
.workspace-app-shell .operator-access-panel,
.workspace-app-shell .lead-form,
.workspace-app-shell .dashboard-header,
.workspace-app-shell .creator-hero-metrics article,
.workspace-app-shell .creator-review-state,
.workspace-app-shell .opportunity-detail-card,
.workspace-app-shell .opportunity-brief,
.workspace-app-shell .opportunity-deliverables,
.workspace-app-shell .opportunity-visit-request,
.workspace-app-shell .opportunity-next-steps,
.workspace-app-shell .table-wrap {
  border: 1px solid var(--workspace-border);
  border-radius: var(--workspace-radius);
  background: var(--workspace-panel);
  box-shadow: var(--workspace-shadow);
}

.workspace-app-shell .dashboard-shell .dashboard-hero,
.workspace-app-shell .dashboard-header,
.workspace-app-shell .creator-dashboard .dashboard-hero {
  background: var(--workspace-panel);
}

.workspace-app-shell .dashboard-shell .dashboard-hero,
.workspace-app-shell .dashboard-header {
  padding: clamp(20px, 2.4vw, 28px);
}

.workspace-app-shell .dashboard-shell .business-workspace-top p,
.workspace-app-shell .dashboard-header p:not(.eyebrow),
.workspace-app-shell .workspace-card p,
.workspace-app-shell .metric-card p,
.workspace-app-shell .dashboard-section p {
  color: var(--workspace-muted);
  font-size: 14px;
  line-height: 1.48;
}

.workspace-app-shell .profile-meta span,
.workspace-app-shell .dashboard-shell .profile-meta span,
.workspace-app-shell .status-pill,
.workspace-app-shell .tag,
.workspace-app-shell .workspace-row-metrics span,
.workspace-app-shell .subscription-picker-heading > span,
.workspace-app-shell .subscription-plan > span {
  min-height: 24px;
  border: 1px solid var(--workspace-border);
  border-radius: 999px;
  background: #fffdf8;
  color: #342f2a;
  box-shadow: none;
  font-size: 12px;
  font-weight: 650;
}

.workspace-app-shell .status-pill.active,
.workspace-app-shell .dashboard-checklist li.done::before,
.workspace-app-shell .readiness-meter span {
  background: var(--lime);
}

.workspace-app-shell .business-account-tabs {
  border-radius: 0;
  background: transparent;
}

.workspace-app-shell .business-account-tabs a {
  border-radius: 0;
  color: #555b54;
  font-weight: 600;
}

.workspace-app-shell .business-account-tabs a:hover,
.workspace-app-shell .business-account-tabs a.active {
  border-color: var(--lime);
  background: transparent;
  color: var(--ink);
}

.workspace-app-shell .workspace-card,
.workspace-app-shell .metric-card,
.workspace-app-shell .ops-panel,
.workspace-app-shell .dashboard-shell .workspace-card {
  padding: 18px;
}

#upcoming-visits,
#post-review {
  scroll-margin-top: 96px;
}

.workspace-app-shell .dashboard-metric-strip article,
.workspace-app-shell .creator-hero-metrics article {
  min-height: auto;
  gap: 6px;
  padding: 14px;
}

.workspace-app-shell .metric-card.featured,
.workspace-app-shell .metric-card.dark,
.workspace-app-shell .dashboard-shell .metric-card:nth-child(3),
.workspace-app-shell .dashboard-shell .metric-card:nth-child(4),
.workspace-app-shell .creator-hero-metrics article:nth-child(1),
.workspace-app-shell .creator-hero-metrics article:nth-child(2),
.workspace-app-shell .creator-hero-metrics article:nth-child(3),
.workspace-app-shell .dashboard-metrics article {
  background: #fff;
  color: var(--workspace-text);
}

.workspace-app-shell .dashboard-metric-strip strong,
.workspace-app-shell .metric-card strong,
.workspace-app-shell .dashboard-metrics strong,
.workspace-app-shell .workspace-mini-stats strong,
.workspace-app-shell .creator-hero-metrics strong,
.workspace-app-shell .subscription-plan strong {
  color: var(--workspace-text);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
}

.workspace-app-shell .table-wrap {
  overflow: auto;
}

.workspace-app-shell th,
.workspace-app-shell td {
  padding: 12px 14px;
  border-bottom: 1px solid #ece8e2;
}

.workspace-app-shell th {
  color: #312c26;
  font-weight: 650;
}

.workspace-app-shell input,
.workspace-app-shell select,
.workspace-app-shell textarea,
.workspace-app-shell .dashboard-shell input,
.workspace-app-shell .dashboard-shell select,
.workspace-app-shell .dashboard-shell textarea,
.workspace-app-shell .niche-choice-group,
.workspace-app-shell .content-example-builder,
.workspace-app-shell .content-example-row,
.workspace-app-shell .subscription-plan-picker,
.workspace-app-shell .subscription-plan,
.workspace-app-shell .availability-list article,
.workspace-app-shell .time-slot-editor,
.workspace-app-shell .opportunity-detail-list {
  border-radius: var(--workspace-radius);
  box-shadow: none;
}

.workspace-app-shell input:focus,
.workspace-app-shell select:focus,
.workspace-app-shell textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(223, 255, 117, 0.42);
}

.workspace-app-shell .form-note,
.workspace-app-shell .operator-message {
  border-radius: var(--workspace-radius);
  background: var(--workspace-warn-bg);
}

.workspace-app-shell .niche-choice-group,
.workspace-app-shell .dashboard-shell .niche-choice-group {
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--workspace-border);
  border-radius: var(--workspace-radius);
  background: #fff;
}

.workspace-app-shell .niche-choice-group legend {
  padding: 0 6px;
  color: var(--workspace-text);
  font-size: 12px;
  font-weight: 650;
}

.workspace-app-shell .niche-choice-group legend span {
  margin-left: 6px;
  color: var(--workspace-muted);
  font-size: 11px;
  font-weight: 600;
}

.workspace-app-shell .niche-chip-grid {
  gap: 8px;
}

.workspace-app-shell .niche-chip,
.workspace-app-shell .dashboard-shell .niche-chip {
  position: relative;
  justify-content: flex-start;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--workspace-border);
  border-radius: var(--workspace-radius);
  background: #fff;
  color: #4f554d;
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.workspace-app-shell .niche-chip input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.workspace-app-shell .niche-chip:has(input:checked) {
  border-color: #badc48;
  background: linear-gradient(180deg, rgba(223, 255, 117, 0.24), rgba(223, 255, 117, 0.1));
  color: var(--ink);
}

.workspace-app-shell .niche-chip:has(input:checked)::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 2px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.workspace-app-shell .niche-chip.is-at-limit:not(:has(input:checked)) {
  opacity: 0.52;
}

.workspace-app-shell .niche-chip:hover,
.workspace-app-shell .niche-chip:focus-within {
  border-color: var(--ink);
  transform: none;
  box-shadow: none;
}

.workspace-app-shell [data-niche-message].form-note.compact {
  min-height: 18px;
  margin: 0;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--workspace-muted);
  font-size: 12px;
  font-weight: 600;
}

.workspace-app-shell[data-account-page="dashboard"] .dashboard-hero {
  grid-template-columns: minmax(260px, 0.74fr) minmax(520px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.workspace-app-shell[data-account-page="dashboard"] .dashboard-hero .profile-header-content {
  align-items: center;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-panel {
  display: grid;
  align-self: stretch;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--workspace-border);
  border-radius: var(--workspace-radius);
  background: #fffdf8;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-heading .eyebrow {
  margin: 0;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-heading .button {
  min-height: 34px;
  width: auto;
  max-width: 240px;
  padding-inline: 12px;
  font-size: 13px;
  white-space: nowrap;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-heading .button.is-status-only {
  border-color: color-mix(in srgb, var(--lime) 70%, var(--workspace-border));
  background: color-mix(in srgb, var(--lime) 36%, #ffffff);
  color: var(--workspace-text);
  box-shadow: none;
  cursor: default;
  font-weight: 650;
  pointer-events: none;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--workspace-border);
  border-left: 1px solid var(--workspace-border);
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-list > [hidden] {
  display: none;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-panel.is-setup-complete .business-status-list {
  grid-template-columns: minmax(160px, 1.15fr) repeat(2, minmax(130px, 1fr));
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-panel.is-setup-stage .business-status-list,
.workspace-app-shell[data-account-page="dashboard"] .business-status-panel.has-content-status .business-status-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-list > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  border-right: 1px solid var(--workspace-border);
  border-bottom: 1px solid var(--workspace-border);
  background: #fff;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-list span {
  color: var(--workspace-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-list strong {
  color: var(--workspace-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-list .is-primary strong {
  font-size: 28px;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-panel.is-setup-complete .business-status-list .is-primary strong {
  font-size: 24px;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-list p,
.workspace-app-shell[data-account-page="dashboard"] .business-status-action-copy {
  margin: 0;
  color: var(--workspace-muted);
  font-size: 12px;
  line-height: 1.35;
}

.workspace-app-shell[data-account-page="dashboard"] .business-status-action-copy {
  padding-top: 2px;
}

.workspace-app-shell .workflow-panel {
  grid-template-columns: minmax(150px, 0.2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  color: var(--workspace-text);
}

.workspace-app-shell .workflow-panel h2 {
  margin: 4px 0 0;
  color: var(--workspace-text);
  font-size: clamp(20px, 2vw, 26px);
}

.workspace-app-shell .workflow-panel .eyebrow {
  color: var(--workspace-muted);
}

.workspace-app-shell .workflow-steps {
  gap: 10px;
}

.workspace-app-shell .workflow-steps li {
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--workspace-border);
  border-radius: var(--workspace-radius);
  background: #fff;
  color: var(--workspace-text);
  opacity: 1;
}

.workspace-app-shell .workflow-steps li.active {
  border-color: var(--workspace-border);
  background: #fff;
}

.workspace-app-shell .workflow-steps li.is-complete {
  border-color: #d5e7a1;
  background: rgba(223, 255, 117, 0.12);
}

.workspace-app-shell .workflow-panel.is-post-setup .workflow-steps li.is-complete {
  min-height: 64px;
  padding: 10px 12px;
  border-color: var(--workspace-border);
  background: #fff;
}

.workspace-app-shell .workflow-panel.is-post-setup .workflow-steps li.is-complete small {
  color: #8f887d;
}

.workspace-app-shell .workflow-steps li.is-current {
  border-color: #badc48;
  background: rgba(223, 255, 117, 0.2);
}

.workspace-app-shell .workflow-panel.is-post-setup {
  grid-template-columns: minmax(120px, 0.16fr) minmax(0, 1fr);
  align-items: center;
}

.workspace-app-shell .workflow-panel.is-post-setup h2 {
  font-size: 18px;
}

.workspace-app-shell .workflow-panel.is-post-setup .workflow-steps {
  align-items: center;
}

.workspace-app-shell .workflow-panel.is-post-setup .workflow-steps li {
  min-height: 64px;
  padding: 10px 12px;
  gap: 6px;
}

.workspace-app-shell .workflow-panel.is-post-setup .workflow-steps li.is-current {
  background: rgba(223, 255, 117, 0.16);
}

.workspace-app-shell .workflow-steps li.is-future {
  background: #fff;
}

.workspace-app-shell .workflow-panel.is-post-setup .workflow-steps li.is-future {
  background: #fffdf8;
}

.workspace-app-shell .workflow-steps span {
  width: 24px;
  height: 24px;
  border: 1px solid #d8e7a4;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.workspace-app-shell .workflow-steps li.is-future span {
  border-color: var(--workspace-border);
  background: #f8f6f1;
  color: var(--workspace-muted);
}

.workspace-app-shell .workflow-steps strong {
  color: var(--workspace-text);
  font-size: 14px;
  font-weight: 650;
}

.workspace-app-shell .workflow-steps small {
  color: var(--workspace-muted);
  font-size: 12px;
  line-height: 1.35;
}

.workspace-app-shell .workflow-panel.is-post-setup .workflow-steps small {
  display: none;
}

.workspace-app-shell .segmented-control {
  padding: 3px;
  border: 1px solid var(--workspace-border);
  border-radius: var(--workspace-radius);
  background: #f8f6f1;
}

.workspace-app-shell .segmented-control button {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--workspace-muted);
  font-size: 13px;
  font-weight: 650;
}

.workspace-app-shell .segmented-control button.active {
  background: var(--lime);
  color: var(--ink);
  box-shadow: none;
}

.workspace-app-shell .readiness-card {
  gap: 12px;
}

.workspace-app-shell .readiness-card .card-heading {
  gap: 12px;
}

.workspace-app-shell .readiness-meter {
  height: 7px;
  background: #eee8df;
}

.workspace-app-shell .dashboard-checklist {
  gap: 8px;
}

.workspace-app-shell .dashboard-checklist li {
  padding-left: 22px;
  color: var(--workspace-muted);
  font-size: 13px;
  font-weight: 500;
}

.workspace-app-shell .dashboard-checklist li::before {
  top: 0.3em;
  width: 12px;
  height: 12px;
  border-color: #d8d1c8;
}

.workspace-app-shell .dashboard-checklist li.done {
  color: var(--workspace-text);
  font-weight: 600;
}

.workspace-app-shell .actionable-empty {
  min-height: 132px;
  padding-top: 12px;
}

@media (max-width: 1080px) {
  .seo-hero,
  .seo-split,
  .seo-two-column,
  .seo-solution,
  .seo-fit-section {
    grid-template-columns: 1fr;
  }

  .seo-card-grid,
  .seo-process-grid,
  .seo-comparison-grid,
  .seo-links div,
  .seo-category-grid,
  .seo-explainer-grid,
  .seo-tracking-grid,
  .seo-compact-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workspace-app-shell > .site-header .main-nav a.active {
    border-bottom: 2px solid var(--lime);
    background: transparent;
  }

  .workspace-app-shell .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workspace-app-shell[data-account-page="dashboard"] .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .workspace-app-shell[data-account-page="dashboard"] .business-status-heading {
    align-items: flex-start;
  }

  .workspace-app-shell .workflow-panel {
    grid-template-columns: 1fr;
  }

  .seo-floating-card.is-left {
    left: 3%;
  }

  .seo-floating-card.is-right {
    right: 3%;
  }

  .seo-floating-card.is-top-right {
    right: 4%;
  }

  .seo-floating-card.is-bottom-left {
    left: 4%;
  }

  .seo-floating-card.is-bottom-center {
    right: 28%;
  }
}

@media (max-width: 1120px) {
  .seo-brief-visit-section,
  .seo-workspace-mockup,
  .seo-brief-visit-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero-copy h1,
  .seo-hero-copy > p:not(.eyebrow) {
    max-width: 820px;
  }

  .seo-brief-visit-section .seo-section-heading {
    max-width: 760px;
  }

  .seo-product-flow-grid,
  .seo-match-grid,
  .seo-campaign-tile-grid,
  .seo-operational-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .seo-hero-copy h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .tool-hero,
  .tool-builder {
    grid-template-columns: 1fr;
  }

  .tool-output-panel {
    position: static;
  }

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

  .tool-hero .hero-actions,
  .tool-output-heading,
  .tool-brief-dialog-header {
    display: grid;
  }

  .tool-output-actions .button,
  .tool-lead-actions .button {
    width: 100%;
  }

  .tool-cta-panel {
    grid-template-columns: 1fr;
  }

  .tool-brief-modal {
    padding: 10px;
  }

  .tool-brief-dialog {
    max-height: 92vh;
    border-radius: 8px;
  }

  .tool-brief-dialog-header,
  .tool-brief-dialog-footer {
    padding: 14px;
  }

  .tool-field-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero-tabs span {
    min-height: 30px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .seo-hero-workflow-badge {
    padding: 6px;
  }

  .seo-hero-workflow-badge span {
    font-size: 11px;
  }

  .seo-hero-panel {
    min-height: auto;
    padding: 12px;
  }

  .seo-social-mockup {
    min-height: 360px;
  }

  .seo-floating-card {
    display: none;
  }

  .seo-phone-frame {
    width: min(320px, 94%);
    padding: 14px;
    border-radius: 22px;
  }

  .seo-post-visual {
    min-height: 108px;
  }

  .seo-social-image-carousel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .seo-social-image-track {
    animation: none;
  }

  .seo-social-image-card.is-duplicate {
    display: none;
  }

  .seo-social-image-card {
    flex-basis: min(220px, 72vw);
  }

  .seo-example-grid {
    grid-auto-columns: minmax(260px, 82%);
  }

  .seo-social-image-card img {
    height: 150px;
    aspect-ratio: 5 / 3.25;
  }

  .seo-card-grid,
  .seo-process-grid,
  .seo-comparison-grid,
  .seo-links div,
  .seo-category-grid,
  .seo-explainer-grid,
  .seo-tracking-grid,
  .seo-workspace-mockup,
  .seo-product-flow-grid,
  .seo-match-grid,
  .seo-brief-visit-grid,
  .seo-campaign-tile-grid,
  .seo-operational-metrics,
  .seo-trust-grid,
  .seo-compact-product-grid {
    grid-template-columns: 1fr;
  }

  .seo-compact-product-grid article {
    grid-template-columns: 72px 1fr;
    min-height: auto;
  }

  .seo-workspace-title-row {
    display: grid;
  }

  .seo-workspace-stats,
  .seo-brief-rows,
  .seo-request-card,
  .seo-brief-list {
    grid-template-columns: 1fr;
  }

  .seo-brief-rows div,
  .seo-request-card div {
    border-right: 0;
  }

  .seo-table-wrap {
    margin-inline: -4px;
  }

  .seo-comparison-table article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .seo-comparison-showcase {
    grid-template-columns: 1fr;
  }

  .seo-comparison-panel.is-local {
    transform: none;
  }

  .seo-usecase-panel .seo-check-list {
    grid-template-columns: 1fr;
  }

  .seo-comparison-vs {
    justify-self: center;
  }

  .seo-comparison-label,
  .seo-comparison-table h3,
  .seo-comparison-table p,
  .seo-comparison-table ul {
    grid-column: 1;
    grid-row: auto;
  }

  .seo-area-list span {
    width: 100%;
    justify-content: center;
  }

  .seo-context-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .seo-links a {
    width: 100%;
  }

  .workspace-app-shell .dashboard-shell .dashboard-hero,
  .workspace-app-shell .dashboard-header {
    padding: 18px;
  }

  .workspace-app-shell .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workspace-app-shell .segmented-control {
    width: 100%;
  }

  .workspace-app-shell .segmented-control button {
    flex: 1;
  }

  .matching-opportunity-row {
    grid-template-columns: 1fr;
  }

  .matching-row-meta {
    text-align: left;
  }

  .matching-row-action {
    width: fit-content;
  }

  .workspace-app-shell[data-account-page="dashboard"] .business-status-heading {
    display: grid;
  }

  .workspace-app-shell[data-account-page="dashboard"] .business-status-heading .button {
    width: 100%;
    max-width: none;
  }

  .workspace-app-shell[data-account-page="dashboard"] .business-status-list {
    grid-template-columns: 1fr;
  }

  .workspace-app-shell[data-account-page="dashboard"] .business-status-panel.is-setup-complete .business-status-list {
    grid-template-columns: 1fr;
  }

  .workspace-app-shell[data-account-page="dashboard"] .business-status-list .is-primary strong {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-social-image-carousel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .seo-social-image-track {
    animation: none;
  }

  .seo-social-image-card.is-duplicate {
    display: none;
  }
}

@media (max-width: 920px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 28px));
  }

  .comparison-card {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .comparison-heading {
    margin-bottom: 24px;
  }

  .comparison-card li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .comparison-card .button {
    width: 100%;
    justify-self: stretch;
  }
}

/* Public design quality layer: homepage, pSEO pages, and tools only. */
:root {
  --public-card-radius: 8px;
  --public-border: 1px solid rgba(26, 26, 26, 0.12);
  --public-border-strong: 1px solid rgba(26, 26, 26, 0.18);
  --public-shadow: 0 1px 2px rgba(7, 7, 7, 0.04);
  --public-section-y: clamp(48px, 7vw, 92px);
  --public-section-y-tight: clamp(34px, 5vw, 64px);
  --public-h2: clamp(25px, 2.6vw, 38px);
  --public-h3: clamp(18px, 1.7vw, 24px);
  --public-muted: #5f574f;
  --public-panel: #fffefa;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) main > .section:not(.hero):not(.seo-hero):not(.tool-hero) {
  padding-top: var(--public-section-y);
  padding-bottom: var(--public-section-y);
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .section-heading h2,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .comparison-heading h2,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-section-heading h2,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-panel h2,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-output-heading h2,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-info h2,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .faq-section h2 {
  font-size: var(--public-h2);
  line-height: 1.06;
  letter-spacing: 0;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-card-grid h3,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-example-card h3,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-campaign-tile-grid h3,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-brief-preview h3,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-result-card strong,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .price-card h3 {
  letter-spacing: 0;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .button {
  min-height: 42px;
  padding: 10px 18px;
  box-shadow: 2px 2px 0 var(--ink);
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .button:hover,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .button:focus-visible {
  box-shadow: 1px 1px 0 var(--ink);
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .proof-band {
  justify-content: center;
  gap: 10px;
  padding-top: var(--public-section-y-tight);
  padding-bottom: var(--public-section-y-tight);
  background: #fffefa;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .proof-band p {
  border: var(--public-border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: none;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .comparison-section {
  background: #fffdf8;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .comparison-card,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .price-card,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .faq-grid details,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-card-grid article,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-example-card,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-campaign-tile-grid article,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-trust-grid article,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-links a,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-form-panel,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-output-panel,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-info .seo-card-grid article {
  border: var(--public-border);
  border-radius: var(--public-card-radius);
  background: var(--public-panel);
  box-shadow: var(--public-shadow);
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .comparison-card-featured,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .price-card.recommended,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-comparison-panel.is-local {
  border: var(--public-border-strong);
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .price-card {
  padding: 24px;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .price-card h3 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 3.4vw, 44px);
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .faq-section {
  background: #fffefa;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .faq-grid {
  gap: 14px;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .faq-grid details {
  padding: 18px;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-real-image-section.is-hero {
  margin-top: 18px;
  margin-bottom: clamp(26px, 5vw, 56px);
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-social-image-card,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-brief-mockup,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-visit-request-mockup,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-comparison-panel,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-brief-dialog {
  border-radius: var(--public-card-radius);
  box-shadow: var(--public-shadow);
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-campaign-tile-grid {
  gap: 14px;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-campaign-tile-grid article {
  min-height: auto;
  padding: 16px;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-links div {
  gap: 12px;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .seo-links a {
  padding: 14px;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-builder {
  gap: 18px;
  align-items: start;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-brief-dialog {
  max-width: 980px;
  border: var(--public-border-strong);
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-brief-dialog-header,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-brief-dialog-footer {
  background: #fffefa;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-brief-dialog-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-brief-preview {
  padding: 18px;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-result-card-grid {
  gap: 10px;
}

body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-result-card,
body:not(.workspace-page):not(.workspace-app-shell):not(.account-page):not(.dashboard-page) .tool-copy-block {
  border-radius: var(--public-card-radius);
}
