:root {
  --lavender: #a594c6;
  --lavender-2: #d9d0eb;
  --blue: #2f80ed;
  --blue-2: #9bd7ff;
  --coral: #f07b65;
  --ink: #20202a;
  --muted: #666678;
  --line: #e7e1f2;
  --paper: #ffffff;
  --wash: #f7f5fb;
  --mint: #dff6ef;
  --shadow: 0 18px 60px rgba(56, 46, 83, 0.12);
  --radius: 8px;
  --scroll-progress: 0;
  color: var(--ink);
  background: var(--wash);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(47, 128, 237, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(165, 148, 198, 0.08) 1px, transparent 1px),
    var(--wash);
  background-size: 54px 54px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  transform-origin: 0 50%;
  transform: scaleX(var(--scroll-progress));
  background: linear-gradient(90deg, var(--lavender), var(--blue), var(--coral));
  z-index: 20;
}

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

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  background: rgba(247, 245, 251, 0.88);
  border-bottom: 1px solid rgba(165, 148, 198, 0.18);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 38%, var(--blue-2) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--lavender), #efeaff 54%, var(--coral));
  border: 1px solid rgba(32, 32, 42, 0.08);
  box-shadow: 0 10px 24px rgba(165, 148, 198, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--lavender);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(32, 32, 42, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
  box-shadow: 0 10px 26px rgba(32, 32, 42, 0.06);
}

.button.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.button.ghost {
  background: transparent;
  box-shadow: none;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 58px;
  padding: 78px 0 56px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 4.7rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lede,
.page-lede {
  margin: 24px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.proof-strip {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-item {
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.proof-item strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.compass-stage {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(165, 148, 198, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 245, 251, 0.72)),
    radial-gradient(circle at 50% 50%, rgba(47, 128, 237, 0.12), transparent 46%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.compass-stage::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(165, 148, 198, 0.52);
  border-radius: 50%;
  animation: compassSpin 42s linear infinite;
}

.compass-stage::after {
  content: "";
  position: absolute;
  inset: 88px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 50%;
}

.compass-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, #fff 0 33%, transparent 34%),
    conic-gradient(from 20deg, var(--lavender), var(--blue), var(--mint), var(--coral), var(--lavender));
  box-shadow: 0 16px 52px rgba(47, 128, 237, 0.18);
}

.compass-core span {
  position: absolute;
  inset: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(32, 32, 42, 0.08);
  text-align: center;
  font-weight: 800;
  line-height: 1.25;
}

.compass-line {
  position: absolute;
  inset: 58px;
  opacity: 0.72;
}

.compass-line path {
  stroke-dasharray: 8 10;
  animation: dashMove 16s linear infinite;
}

.node {
  position: absolute;
  width: 168px;
  padding: 14px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(32, 32, 42, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.node:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 128, 237, 0.44);
}

.node b {
  display: block;
  margin-bottom: 5px;
}

.node span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.node.xhs { left: 34px; top: 62px; }
.node.wx { right: 32px; top: 98px; }
.node.yt { left: 58px; bottom: 72px; }
.node.private { right: 44px; bottom: 58px; }

.section {
  padding: 92px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.62);
  border-block: 1px solid rgba(165, 148, 198, 0.16);
}

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

.section-head h2,
.page-hero h1 {
  margin: 0;
}

.section-head h2 {
  font-size: 2.4rem;
  line-height: 1.12;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

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

.flow-card,
.article-card,
.channel-card,
.link-card,
.plain-panel {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(32, 32, 42, 0.06);
}

.flow-card {
  padding: 22px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flow-card .step {
  color: var(--blue);
  font-weight: 800;
}

.flow-card h3 {
  margin: 18px 0 12px;
  font-size: 1.18rem;
}

.flow-card p,
.article-card p,
.channel-card p,
.link-card p,
.plain-panel p {
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.article-card {
  padding: 24px;
}

.article-card.featured {
  min-height: 310px;
  background:
    linear-gradient(135deg, rgba(165, 148, 198, 0.15), rgba(47, 128, 237, 0.08)),
    #fff;
}

.article-card h3 {
  margin: 10px 0 12px;
  font-size: 1.65rem;
  line-height: 1.22;
}

.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag,
.filter-button {
  border: 1px solid rgba(165, 148, 198, 0.34);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #4c4560;
  font-size: 0.82rem;
}

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

.channel-card,
.link-card {
  padding: 22px;
}

.channel-card h3,
.link-card h3,
.plain-panel h2,
.plain-panel h3 {
  margin-top: 0;
}

.status {
  display: inline-flex;
  margin-top: 18px;
  color: #5c526d;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(165, 148, 198, 0.45);
}

.page-hero {
  padding: 84px 0 44px;
}

.article-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 28px 0 26px;
}

.search {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(32, 32, 42, 0.12);
  border-radius: var(--radius);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

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

.filter-button {
  cursor: pointer;
  min-height: 36px;
}

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

.article-list {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
}

.article-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(165, 148, 198, 0.18);
}

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

.article-row time,
.article-row .missing-date {
  color: var(--muted);
  font-size: 0.9rem;
}

.article-row h2 {
  margin: 0 0 8px;
  font-size: 1.16rem;
  line-height: 1.35;
}

.article-row p {
  margin: 0;
  color: var(--muted);
}

.article-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  align-items: start;
  padding-bottom: 90px;
}

.article-body,
.side-note {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(32, 32, 42, 0.06);
}

.article-body {
  padding: 34px;
}

.article-body p {
  color: var(--muted);
}

.side-note {
  padding: 22px;
  position: sticky;
  top: 96px;
}

.pending-box {
  margin: 28px 0;
  padding: 22px;
  border: 1px dashed rgba(165, 148, 198, 0.62);
  border-radius: var(--radius);
  background: rgba(247, 245, 251, 0.78);
}

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

.plain-panel {
  padding: 26px;
}

.qr-placeholder {
  height: 164px;
  display: grid;
  place-items: center;
  margin: 18px 0;
  border: 1px dashed rgba(47, 128, 237, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(47, 128, 237, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(165, 148, 198, 0.12) 1px, transparent 1px),
    #fff;
  background-size: 18px 18px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(165, 148, 198, 0.18);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.profile-stage {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 245, 251, 0.72)),
    linear-gradient(180deg, rgba(223, 246, 239, 0.5), transparent 48%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-stage::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(47, 128, 237, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.portrait-card {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 34px;
  margin: 0;
  height: 336px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 52px rgba(32, 32, 42, 0.1);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
}

.portrait-card figcaption,
.article-cover figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 0.76rem;
}

.identity-card,
.podcast-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(32, 32, 42, 0.09);
}

.identity-card {
  left: 58px;
  bottom: 66px;
  width: min(330px, calc(100% - 116px));
  padding: 16px;
}

.identity-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.identity-card strong,
.podcast-card b {
  display: block;
  line-height: 1.2;
}

.identity-card span,
.podcast-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.podcast-card {
  right: 48px;
  bottom: 44px;
  width: 260px;
  padding: 12px;
}

.podcast-card img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
}

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

.source-panel,
.method-card,
.feature-article,
.repost-panel {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(32, 32, 42, 0.06);
}

.source-panel {
  padding: 20px;
}

.source-panel span,
.method-card span,
.feature-article-body span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.source-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.section-head.compact {
  display: block;
}

.section-head.compact p {
  margin-top: 16px;
}

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

.method-card {
  padding: 22px;
  min-height: 210px;
}

.method-card h3 {
  margin: 18px 0 10px;
  font-size: 1.24rem;
}

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

.feature-article {
  overflow: hidden;
}

.feature-article img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: 42% 50%;
}

.feature-article-body {
  padding: 22px;
}

.feature-article-body h3 {
  margin: 10px 0 12px;
  font-size: 1.34rem;
  line-height: 1.26;
}

.feature-article-body p {
  color: var(--muted);
}

.section-kicker {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.ip-operator {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.operator-path {
  min-width: 0;
}

.persona-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 22px;
  align-items: stretch;
}

.persona-snapshot.compact {
  grid-template-columns: 1fr;
}

.persona-copy,
.persona-audience,
.source-research-panel {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(32, 32, 42, 0.06);
}

.persona-copy {
  padding: 28px;
}

.persona-copy h2 {
  margin: 10px 0 14px;
  max-width: 880px;
  font-size: 2.2rem;
  line-height: 1.16;
}

.persona-copy p,
.persona-audience p {
  color: var(--muted);
}

.persona-copy ul {
  margin: 20px 0 0;
  padding-left: 1.2em;
  color: #3c3c49;
}

.persona-copy li + li {
  margin-top: 8px;
}

.persona-audience {
  padding: 24px;
}

.persona-audience h3,
.source-research-panel h3 {
  margin: 0 0 14px;
}

.persona-audience div,
.verified-sources {
  display: grid;
  gap: 10px;
}

.persona-audience span,
.verified-sources a,
.evidence-links a,
.mini-note {
  display: block;
  padding: 9px 11px;
  border: 1px solid rgba(47, 128, 237, 0.13);
  border-radius: var(--radius);
  background: rgba(47, 128, 237, 0.06);
  color: #244a87;
  font-size: 0.86rem;
  font-weight: 700;
}

.persona-proof-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.persona-proof-grid div {
  padding: 18px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.persona-proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.persona-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.pillar-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.pillar-card,
.offer-card,
.money-step {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(32, 32, 42, 0.05);
}

.pillar-card > span,
.offer-card > span,
.money-step > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.pillar-card h3,
.offer-card h3,
.money-step h3 {
  margin: 10px 0;
  font-size: 1.12rem;
  line-height: 1.28;
}

.pillar-card p,
.offer-card p,
.money-step p {
  color: var(--muted);
  font-size: 0.94rem;
}

.evidence-links {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.evidence-links a {
  overflow-wrap: anywhere;
  background: rgba(165, 148, 198, 0.1);
  border-color: rgba(165, 148, 198, 0.18);
  color: #4a3e6d;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.source-research-panel {
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.6fr) minmax(260px, 0.72fr);
  gap: 22px;
}

.xhs-matrix-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
  scroll-margin-top: 96px;
}

.xhs-matrix-panel.compact {
  margin-top: 22px;
}

.xhs-matrix-copy,
.xhs-account-card {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.06);
}

.xhs-matrix-copy {
  padding: 28px;
}

.xhs-matrix-copy h3 {
  margin: 10px 0 14px;
  font-size: 2rem;
  line-height: 1.18;
}

.xhs-matrix-copy p {
  color: var(--muted);
}

.xhs-matrix-flow {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.xhs-matrix-flow article {
  padding: 13px 14px;
  border-radius: var(--radius);
  background: rgba(47, 128, 237, 0.06);
}

.xhs-matrix-flow span,
.xhs-account-card > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.xhs-matrix-flow strong,
.xhs-matrix-flow small {
  display: block;
}

.xhs-matrix-flow strong {
  margin-top: 4px;
}

.xhs-matrix-flow small {
  margin-top: 3px;
  color: var(--muted);
}

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

.xhs-account-card {
  padding: 22px;
}

.xhs-account-card h3 {
  margin: 10px 0;
  font-size: 1.18rem;
  line-height: 1.28;
}

.xhs-account-card p,
.xhs-account-card li {
  color: var(--muted);
}

.xhs-account-card ul {
  margin: 16px 0;
  padding-left: 1.2em;
}

.xhs-account-card li + li {
  margin-top: 7px;
}

.source-research-panel p,
.source-research-panel li {
  color: var(--muted);
}

.source-research-panel ol {
  margin: 0;
  padding-left: 1.2em;
}

.source-research-panel li + li {
  margin-top: 8px;
}

.media-brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: 24px;
  align-items: stretch;
}

.media-brand-panel > div:first-child,
.palette-row,
.xhs-post-card,
.video-script-card,
.usage-checklist article {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.06);
}

.media-brand-panel > div:first-child {
  padding: 28px;
}

.media-brand-panel h2 {
  margin: 10px 0 14px;
  font-size: 2rem;
  line-height: 1.18;
}

.media-brand-panel p {
  color: var(--muted);
}

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

.palette-row span {
  min-height: 74px;
  padding: 10px;
  border-radius: var(--radius);
  display: flex;
  align-items: end;
  background: var(--swatch);
  border: 1px solid rgba(32, 32, 42, 0.08);
}

.palette-row b {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: #20202a;
  font-size: 0.72rem;
}

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

.xhs-card-gallery figure {
  margin: 0;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(32, 32, 42, 0.06);
}

.xhs-card-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 0;
}

.xhs-card-gallery figcaption {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.xhs-card-gallery strong,
.xhs-card-gallery span {
  display: block;
}

.xhs-card-gallery span {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.video-asset-card {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(32, 32, 42, 0.06);
}

.video-asset-card video {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  background: #f7f5fb;
  object-fit: cover;
}

.video-asset-card div {
  padding: 18px;
}

.video-asset-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.video-asset-card h3 {
  margin: 10px 0;
  font-size: 1.14rem;
  line-height: 1.28;
}

.video-asset-card p {
  color: var(--muted);
}

.playbook-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.playbook-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 14px;
  align-items: end;
}

.playbook-media img,
.playbook-media video {
  width: 100%;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(32, 32, 42, 0.08);
  object-fit: cover;
}

.playbook-media img {
  aspect-ratio: 3 / 4;
  object-position: 50% 0;
}

.playbook-media video {
  aspect-ratio: 3 / 4;
}

.playbook-step-grid,
.seven-day-grid,
.audience-route-grid,
.next-action-grid {
  display: grid;
  gap: 14px;
}

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

.seven-day-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.audience-route-grid,
.next-action-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.playbook-step-grid article,
.seven-day-grid article,
.audience-route-grid article,
.next-action-grid article {
  padding: 20px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.06);
}

.playbook-step-grid span,
.seven-day-grid span,
.audience-route-grid span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.playbook-step-grid h3,
.seven-day-grid h3,
.audience-route-grid h3,
.next-action-grid h3 {
  margin: 10px 0;
  font-size: 1.13rem;
  line-height: 1.28;
}

.playbook-step-grid p,
.seven-day-grid p,
.audience-route-grid p,
.next-action-grid p {
  color: var(--muted);
}

.playbook-step-grid small {
  display: block;
  margin-top: 14px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(47, 128, 237, 0.07);
  color: #244a87;
  font-weight: 750;
}

.assessment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  align-items: center;
}

.assessment-hero-card,
.assessment-form,
.assessment-result,
.assessment-question {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.06);
}

.assessment-hero-card {
  padding: 28px;
}

.assessment-hero-card span,
.assessment-result > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.assessment-hero-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.assessment-hero-card p {
  color: var(--muted);
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 22px;
  align-items: start;
}

#assessment-tool {
  scroll-margin-top: 96px;
}

.assessment-form {
  padding: 26px;
}

.assessment-question {
  margin: 18px 0 0;
  padding: 20px;
}

.assessment-question legend {
  padding: 0;
  font-weight: 850;
  font-size: 1.08rem;
}

.assessment-question legend span {
  margin-right: 9px;
  color: var(--blue);
  font-size: 0.82rem;
}

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

.assessment-options label {
  cursor: pointer;
}

.assessment-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.assessment-options span {
  display: block;
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid rgba(165, 148, 198, 0.28);
  border-radius: var(--radius);
  background: rgba(247, 245, 251, 0.72);
  color: #3c3c49;
  font-weight: 730;
}

.assessment-options input:checked + span {
  border-color: rgba(47, 128, 237, 0.58);
  background: rgba(47, 128, 237, 0.09);
  color: #244a87;
  box-shadow: inset 0 0 0 1px rgba(47, 128, 237, 0.16);
}

.assessment-options input:focus-visible + span {
  outline: 2px solid rgba(47, 128, 237, 0.42);
  outline-offset: 2px;
}

.assessment-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.assessment-result {
  position: sticky;
  top: 96px;
  padding: 26px;
  scroll-margin-top: 100px;
}

.assessment-result h2 {
  margin: 10px 0 12px;
  font-size: 2rem;
  line-height: 1.15;
}

.assessment-result p,
.assessment-result li {
  color: var(--muted);
}

.assessment-route {
  margin: 18px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(47, 128, 237, 0.07);
}

.assessment-route strong,
.assessment-result-actions strong {
  display: block;
  color: var(--ink);
}

.assessment-route p {
  margin: 6px 0 0;
}

.assessment-result-actions ol {
  margin: 10px 0 0;
  padding-left: 1.2em;
}

.assessment-result-actions li + li {
  margin-top: 8px;
}

.assessment-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.offers-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: 34px;
  align-items: center;
}

.offers-visual {
  display: grid;
  gap: 14px;
}

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

.offers-photo-grid figure {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.07);
}

.offers-photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.offers-photo-grid figcaption {
  padding: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.offers-visual-note {
  padding: 18px;
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(47, 128, 237, 0.07);
}

.offers-visual-note span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.offers-visual-note strong {
  display: block;
  margin-top: 8px;
  line-height: 1.35;
}

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

.offer-path-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.06);
}

.offer-path-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.offer-path-card h3 {
  margin: 12px 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.offer-path-card p,
.offer-path-card li,
.offer-choice-grid p,
.offer-brief-panel p {
  color: var(--muted);
}

.offer-list-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.offer-list-columns b {
  display: block;
  margin-bottom: 8px;
}

.offer-list-columns ul {
  margin: 0;
  padding-left: 1.1em;
}

.offer-list-columns li + li {
  margin-top: 6px;
}

.offer-action-box {
  margin: 18px 0;
  padding-left: 14px;
  border-left: 3px solid var(--blue);
}

.offer-action-box span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.offer-action-box p {
  margin: 6px 0 0;
}

.offer-path-card .button {
  margin-top: 18px;
}

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

.offer-choice-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.06);
}

.offer-choice-grid h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.28;
}

.offer-choice-grid .button {
  margin-top: 14px;
}

.offer-brief-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.offer-brief-panel h2 {
  margin: 8px 0 14px;
  font-size: 2.25rem;
  line-height: 1.12;
}

.offer-checklist {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(165, 148, 198, 0.24);
}

.offer-checklist article {
  padding: 15px 0;
  border-bottom: 1px solid rgba(165, 148, 198, 0.24);
  color: #3c3c49;
  font-weight: 720;
}

.content-map-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.68fr);
  gap: 38px;
  align-items: center;
}

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

.content-map-visual figure {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.07);
}

.content-map-visual figure.large {
  grid-row: span 2;
}

.content-map-visual img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.content-map-visual figure.large img {
  aspect-ratio: 3 / 4;
}

.content-map-visual figcaption {
  padding: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 740;
}

.content-theme-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.content-theme-grid article,
.content-loop-grid article,
.content-map-brief,
.content-asset-row {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.06);
}

.content-theme-grid article,
.content-loop-grid article {
  min-width: 0;
  padding: 20px;
}

.content-theme-grid > article > span,
.content-loop-grid span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.content-theme-grid h3,
.content-loop-grid h3 {
  margin: 10px 0;
  font-size: 1.12rem;
  line-height: 1.28;
}

.content-theme-grid p,
.content-theme-grid small,
.content-loop-grid p,
.content-asset-row p,
.content-map-toolbar p,
.content-map-brief p {
  color: var(--muted);
}

.theme-use {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(165, 148, 198, 0.2);
}

.theme-use b,
.theme-use small {
  display: block;
}

.content-theme-grid .button {
  margin-top: 16px;
}

.content-map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.content-map-toolbar p {
  margin: 0;
  white-space: nowrap;
}

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

.content-asset-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.content-asset-row[hidden] {
  display: none;
}

.content-asset-row > img,
.content-asset-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 20%;
  background: rgba(47, 128, 237, 0.08);
}

.content-asset-fallback {
  display: grid;
  place-items: center;
  color: #244a87;
  font-weight: 800;
}

.content-asset-row h3 {
  margin: 8px 0;
  font-size: 1.18rem;
  line-height: 1.32;
}

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

.content-image-wall figure {
  min-width: 0;
  margin: 0;
}

.content-image-wall img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 20%;
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.07);
}

.content-image-wall figcaption {
  margin-top: 8px;
  display: grid;
  gap: 4px;
}

.content-image-wall strong {
  font-size: 0.86rem;
}

.content-image-wall span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.42;
}

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

.content-loop-grid small {
  display: block;
  margin-top: 14px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(47, 128, 237, 0.07);
  color: #244a87;
  font-weight: 760;
}

.content-map-brief {
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.content-map-brief h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.15;
}

.xhs-post-grid,
.video-script-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.xhs-post-card,
.video-script-card {
  padding: 22px;
}

.xhs-post-card > span,
.video-script-card > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.xhs-post-card h3,
.video-script-card h3 {
  margin: 10px 0;
  font-size: 1.18rem;
  line-height: 1.28;
}

.xhs-post-card p,
.video-script-card p,
.scene-list small {
  color: var(--muted);
}

.xhs-post-card ol {
  margin: 16px 0;
  padding-left: 1.2em;
  color: #3c3c49;
}

.xhs-post-card li + li {
  margin-top: 8px;
}

.mini-source {
  display: grid;
  gap: 7px;
  margin: 16px 0;
}

.mini-source small {
  display: block;
  padding: 7px 9px;
  border-radius: 7px;
  background: rgba(165, 148, 198, 0.11);
  color: #4a3e6d;
  font-weight: 750;
}

.scene-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.scene-list div {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(47, 128, 237, 0.06);
}

.scene-list strong {
  color: var(--blue);
  font-size: 0.82rem;
}

.scene-list p {
  margin: 5px 0;
  color: #30303d;
  font-weight: 700;
}

.usage-checklist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.usage-checklist article {
  padding: 18px;
  color: #3c3c49;
  font-weight: 700;
}

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

.backlog-list span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(32, 32, 42, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: #3c3c49;
}

.backlog-list b,
.backlog-list small {
  display: block;
}

.backlog-list small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.library-proof {
  max-width: 720px;
}

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

.library-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(32, 32, 42, 0.06);
}

.library-card span:first-child {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.library-card h3 {
  margin: 14px 0 10px;
}

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

.crawl-list {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
}

.crawl-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(165, 148, 198, 0.18);
}

.crawl-row:last-child {
  border-bottom: 0;
}

.crawl-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

.crawl-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.image-library figure {
  margin: 0;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(32, 32, 42, 0.06);
}

.image-library img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 20%;
}

.image-library figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.seed-health-list article {
  padding: 18px;
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(32, 32, 42, 0.05);
}

.seed-health-list strong,
.seed-health-list span {
  display: block;
}

.seed-health-list p {
  margin: 8px 0;
  color: var(--muted);
}

.seed-health-list span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.empty-state {
  margin: 0;
  padding: 24px;
  color: var(--muted);
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(47, 128, 237, 0.08);
  color: #244a87;
  font-size: 0.92em;
}

.article-thumb {
  display: block;
  margin: -24px -24px 18px;
  height: 180px;
  overflow: hidden;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
}

.article-cover {
  position: relative;
  margin: 0 0 26px;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: 42% 50%;
}

.key-points {
  margin: 0 0 18px;
  padding-left: 1.2em;
  color: var(--muted);
}

.key-points li + li {
  margin-top: 8px;
}

.repost-panel {
  margin: 28px 0;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.repost-panel h2 {
  margin: 0 0 8px;
}

.repost-panel p {
  margin: 0;
}

.copy-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.copy-grid.compact {
  justify-content: flex-start;
  margin-top: 18px;
}

.workbench-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 28px;
  align-items: stretch;
}

.workbench-principles {
  display: grid;
  gap: 12px;
  align-content: center;
}

.workbench-principles article,
.workbench-flow article,
.workbench-card {
  border: 1px solid rgba(32, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(32, 32, 42, 0.06);
}

.workbench-principles article {
  padding: 18px;
  color: #3c3c49;
  font-weight: 740;
}

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

.workbench-flow article {
  padding: 22px;
}

.workbench-flow span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.workbench-flow h3 {
  margin: 10px 0;
  font-size: 1.18rem;
  line-height: 1.28;
}

.workbench-flow p {
  color: var(--muted);
}

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

.workbench-card {
  padding: 20px;
}

.workbench-card-main {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.workbench-card-main > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 42% 50%;
  border-radius: var(--radius);
}

.workbench-card h3 {
  margin: 10px 0 10px;
  font-size: 1.26rem;
  line-height: 1.28;
}

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

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

.workbench-images figure,
.workbench-image-strip figure {
  margin: 0;
}

.workbench-images img,
.workbench-image-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: var(--radius);
}

.workbench-images figcaption,
.workbench-image-strip figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

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

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

@keyframes dashMove {
  to { stroke-dashoffset: -160; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 46px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .compass-stage {
    min-height: 520px;
  }

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

  .article-grid,
  .article-detail,
  .plain-grid,
  .feature-split,
  .ip-operator,
  .playbook-hero,
  .offers-hero,
  .content-map-hero,
  .assessment-hero,
  .assessment-layout,
  .workbench-hero,
  .persona-snapshot,
  .source-research-panel,
  .xhs-matrix-panel,
  .media-brand-panel,
  .offer-brief-panel,
  .content-map-brief {
    grid-template-columns: 1fr;
  }

  .source-grid,
  .method-grid,
  .library-grid,
  .image-library,
  .pillar-grid,
  .offer-grid,
  .monetization-rail,
  .xhs-card-gallery,
  .video-asset-gallery,
  .offer-path-grid,
  .offer-choice-grid,
  .content-theme-grid,
  .content-image-wall,
  .content-loop-grid,
  .playbook-step-grid,
  .seven-day-grid,
  .audience-route-grid,
  .next-action-grid,
  .workbench-flow,
  .workbench-images,
  .workbench-image-strip,
  .xhs-account-grid,
  .xhs-post-grid,
  .video-script-grid,
  .usage-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-note {
    position: static;
  }

  .assessment-result {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 24px, 1160px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero-lede,
  .page-lede {
    font-size: 1rem;
  }

  .flow-grid,
  .channel-grid,
  .links-grid,
  .source-grid,
  .method-grid,
  .backlog-list,
  .library-grid,
  .image-library,
  .pillar-grid,
  .offer-grid,
  .monetization-rail,
  .xhs-card-gallery,
  .video-asset-gallery,
  .offer-path-grid,
  .offer-choice-grid,
  .offer-list-columns,
  .content-map-visual,
  .content-theme-grid,
  .content-image-wall,
  .content-loop-grid,
  .content-asset-row,
  .playbook-step-grid,
  .seven-day-grid,
  .audience-route-grid,
  .next-action-grid,
  .assessment-options,
  .workbench-flow,
  .workbench-images,
  .workbench-image-strip,
  .xhs-account-grid,
  .xhs-post-grid,
  .video-script-grid,
  .usage-checklist,
  .persona-proof-grid,
  .seed-health-list,
  .crawl-row {
    grid-template-columns: 1fr;
  }

  .crawl-actions {
    justify-content: flex-start;
  }

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

  .proof-item {
    padding: 12px;
  }

  .proof-item strong {
    font-size: 1.24rem;
  }

  .proof-item span {
    font-size: 0.76rem;
  }

  .section {
    padding: 62px 0;
  }

  .section-head,
  .article-toolbar,
  .content-map-toolbar {
    display: block;
  }

  .section-head h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }

  .persona-copy h2 {
    font-size: 1.65rem;
  }

  .persona-copy,
  .persona-audience,
  .source-research-panel,
  .xhs-matrix-copy,
  .xhs-account-card,
  .media-brand-panel > div:first-child,
  .offer-path-card,
  .offer-choice-grid article,
  .content-theme-grid article,
  .content-loop-grid article,
  .content-map-brief,
  .playbook-step-grid article,
  .seven-day-grid article,
  .audience-route-grid article,
  .next-action-grid article,
  .assessment-hero-card,
  .assessment-form,
  .assessment-result,
  .assessment-question,
  .xhs-post-card,
  .video-script-card,
  .pillar-card,
  .offer-card,
  .money-step {
    padding: 18px;
  }

  .filters {
    margin-top: 12px;
  }

  .content-map-toolbar .filters {
    margin-top: 0;
    margin-bottom: 12px;
  }

  .compass-stage {
    min-height: 440px;
  }

  .profile-stage {
    min-height: 500px;
  }

  .portrait-card {
    left: 14px;
    right: 14px;
    top: 14px;
    height: 278px;
  }

  .identity-card {
    left: 24px;
    bottom: 128px;
    width: calc(100% - 48px);
  }

  .podcast-card {
    left: 24px;
    right: auto;
    bottom: 28px;
    width: calc(100% - 48px);
  }

  .repost-panel {
    grid-template-columns: 1fr;
  }

  .copy-grid {
    justify-content: flex-start;
  }

  .workbench-card-main {
    grid-template-columns: 1fr;
  }

  .nav-action {
    display: none;
  }

  .node {
    width: 136px;
    padding: 11px;
  }

  .node.xhs { left: 14px; top: 34px; }
  .node.wx { right: 14px; top: 74px; }
  .node.yt { left: 18px; bottom: 54px; }
  .node.private { right: 18px; bottom: 32px; }

  .article-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .article-body {
    padding: 22px;
  }
}
