/* ============================================================
   BlackHills.biz â€” Social Media Analyzer
   Page & component layout (build-faithful: no inline styles).
   Depends on colors_and_type.css for all tokens + base components.
   This is the file that becomes assets/app.css in the PHP build.
   ============================================================ */

/* ============================================================
   BRAND TOKENS (white-label seam)
   For BlackHills.biz these are the defaults. For an affiliate,
   the PHP `theme` table + regenerate_theme_css() overwrites these
   in assets/theme.css (logo + name + contact come from settings).
   Nothing else in this file hard-codes the brand.
   ============================================================ */
:root {
  --brand-accent:      var(--module-seo-social);     /* affiliate primary identity color */
  --brand-accent-bg:   var(--module-seo-social-bg);
}

/* ---------- Layout primitives ---------- */
.page        { background: var(--color-bg); min-height: 100%; }
.wrap        { max-width: 1100px; margin: 0 auto; padding-left: var(--space-5); padding-right: var(--space-5); }
.wrap-narrow { max-width: 760px;  margin: 0 auto; padding-left: var(--space-5); padding-right: var(--space-5); }

/* ---------- Site header (logged-out public chrome) ---------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding: 12px 24px;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-1);
}
.site-header__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-header__brand img { display: block; height: 36px; width: auto; }
.site-header__nav { display: flex; align-items: center; gap: var(--space-2); }
.site-header__sep { width: 1px; height: 24px; background: var(--color-border); }

.navlink {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--color-text-secondary); text-decoration: none;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-body);
}
.navlink:hover { background: var(--color-neutral-100); color: var(--color-text-primary); text-decoration: none; }
.navlink--active { background: var(--color-blue-subtle); color: var(--color-blue); }

/* ---------- Module eyebrow / overline with app identity ---------- */
.app-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest); text-transform: uppercase;
  color: var(--module-seo-social);
}
.app-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--module-seo-social); }

/* ---------- Single-field analyzer input ---------- */
.analyze-form { display: flex; gap: var(--space-2); align-items: stretch; flex-wrap: wrap; }
.analyze-form .field { flex: 1 1 320px; min-width: 0; }
.analyze-form .input { min-height: 52px; font-size: var(--text-lg); }
.analyze-form .btn-lg { white-space: nowrap; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .lucide-host { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--color-text-tertiary); pointer-events: none; }
.input-icon-wrap .input { padding-left: 42px; }

.form-note {
  display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap;
  margin-top: var(--space-3); font-size: var(--text-sm); color: var(--color-text-tertiary);
}
.form-note .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--color-text-disabled); }

/* ---------- "What we check" platform chips ---------- */
.check-row { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.check-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px; border-radius: var(--radius-pill);
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  font-size: var(--text-sm); font-weight: 600; color: var(--color-text-primary);
}
.check-chip .lucide-host { color: var(--module-seo-social); }

/* ---------- "What you'll see" feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.feature-card { padding: var(--space-5); border-top: 3px solid var(--module-seo-social); }
.feature-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--module-seo-social-bg); color: var(--module-seo-social);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3);
}
.feature-card h4 { margin-bottom: 6px; }
.feature-card p { margin: 0; font-size: var(--text-sm); color: var(--color-text-secondary); line-height: var(--leading-normal); }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap;
  padding: var(--space-4) var(--space-5);
  background: var(--color-bg-surface); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
}
.trust-strip .lucide-host { color: var(--color-accent); flex-shrink: 0; }
.trust-strip p { margin: 0; font-size: var(--text-sm); color: var(--color-text-secondary); }
.trust-strip strong { color: var(--color-text-primary); }

/* ---------- How-it-works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.step { display: flex; gap: var(--space-3); }
.step__n {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-accent-subtle); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.step h5 { margin: 0 0 3px; }
.step p { margin: 0; font-size: var(--text-sm); color: var(--color-text-secondary); line-height: var(--leading-normal); }

/* ---------- Site footer (BlackHills.com contact) ---------- */
.site-footer {
  padding: 28px 24px 24px; border-top: 1px solid var(--color-border);
  background: var(--color-bg-surface); font-size: var(--text-sm); color: var(--color-text-secondary);
}
.site-footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap;
}
.site-footer__brand { display: flex; align-items: center; gap: 14px; }
.site-footer__brand img { display: block; height: 38px; width: auto; }
.site-footer__brand .name { color: var(--color-text-primary); font-weight: 600; }
.site-footer__links { display: flex; gap: var(--space-4); align-items: center; }

/* ============================================================
   VARIATION 1 â€” Clean & direct (centered hero)
   ============================================================ */
.v1-hero { padding: 64px 0 48px; text-align: center; }
.v1-hero h1 { font-size: var(--text-4xl); line-height: var(--leading-tight); margin: 12px auto 14px; max-width: 760px; }
.v1-hero .lede { font-size: var(--text-lg); color: var(--color-text-secondary); max-width: 620px; margin: 0 auto var(--space-5); line-height: var(--leading-relaxed); }
.v1-hero .analyze-form { max-width: 640px; margin: 0 auto; }
.v1-hero .form-note { justify-content: center; }
.v1-section { padding: 8px 0 48px; }
.v1-section + .v1-section { padding-top: 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-4); }
.section-head h2 { margin: 0; }
.section-head .caption { white-space: nowrap; }

/* ============================================================
   VARIATION 2 â€” Split hero with report preview (the payoff)
   ============================================================ */
.v2-hero { padding: 56px 0 48px; }
.v2-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-7); align-items: center; }
.v2-copy h1 { font-size: var(--text-4xl); line-height: var(--leading-tight); margin: 12px 0 14px; }
.v2-copy .lede { font-size: var(--text-lg); color: var(--color-text-secondary); margin: 0 0 var(--space-5); line-height: var(--leading-relaxed); }
.v2-copy .form-note { margin-top: var(--space-4); }

/* Report preview card â€” the teased payoff */
.preview-card { position: relative; padding: 0; overflow: hidden; }
.preview-card__bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  padding: 14px 18px; border-bottom: 1px solid var(--color-border-subtle);
  border-top: 3px solid var(--module-seo-social);
}
.preview-card__bar .biz { display: flex; align-items: center; gap: 10px; }
.preview-card__bar .biz .lucide-host { color: var(--module-seo-social); }
.preview-card__bar .name { font-weight: 600; font-size: var(--text-sm); }
.preview-card__bar .when { font-size: var(--text-xs); color: var(--color-text-tertiary); }

.grade-row { display: flex; align-items: center; gap: var(--space-4); padding: 18px; }
.grade {
  width: 76px; height: 76px; border-radius: var(--radius-lg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 38px; line-height: 1;
  background: var(--color-warning-bg); color: var(--color-warning);
}
.grade-row .summary { font-size: var(--text-sm); color: var(--color-text-secondary); line-height: var(--leading-normal); }
.grade-row .summary strong { color: var(--color-text-primary); }

.finding-list { display: flex; flex-direction: column; gap: 8px; padding: 0 18px 18px; }
.finding {
  display: flex; gap: 12px; padding: 12px 14px; border-radius: var(--radius-md);
  border-left: 3px solid var(--color-border-strong); background: var(--color-neutral-50);
}
.finding .lucide-host { flex-shrink: 0; margin-top: 1px; }
.finding .f-title { font-size: var(--text-sm); font-weight: 600; color: var(--color-text-primary); }
.finding .f-body { font-size: var(--text-sm); color: var(--color-text-secondary); line-height: var(--leading-normal); }
.finding--good { border-left-color: var(--color-success); background: var(--color-success-bg); }
.finding--good .lucide-host { color: var(--color-success); }
.finding--warn { border-left-color: var(--color-warning); background: var(--color-warning-bg); }
.finding--warn .lucide-host { color: var(--color-warning); }
.finding--next { border-left-color: var(--color-blue); background: var(--color-blue-subtle); }
.finding--next .lucide-host { color: var(--color-blue); }

/* The free/paid seam â€” designed in, visible, droppable later */
.seam {
  position: relative; padding: 18px; margin-top: -8px;
  border-top: 1px dashed var(--color-border-strong);
}
.seam__blur { filter: blur(4px); opacity: 0.55; pointer-events: none; user-select: none; }
.seam__gate {
  position: absolute; left: 18px; right: 18px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 16px; text-align: center;
  background: var(--color-bg-overlay); border: 1px solid var(--color-blue);
  border-radius: var(--radius-md); box-shadow: var(--shadow-2);
  font-size: var(--text-sm); color: var(--color-text-primary); font-weight: 600;
}
.seam__gate .lucide-host { color: var(--color-blue); }

/* ============================================================
   VARIATION 3 â€” Local immersive (mountain band)
   ============================================================ */
.v3-hero { position: relative; overflow: hidden; background: var(--color-neutral-900); }
.v3-hero__mtn {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url('mountain-bg.svg');
  background-repeat: no-repeat; background-position: bottom center; background-size: 100% auto;
  opacity: 0.5; mix-blend-mode: screen;
}
.v3-hero__inner { position: relative; padding: 76px 0 84px; }
.v3-eyebrow { color: var(--color-biz); }
.v3-eyebrow .dot { background: var(--color-biz); }
.v3-hero h1 { color: #fff; font-size: 56px; line-height: 1.08; letter-spacing: var(--tracking-tight); margin: 14px 0 16px; max-width: 720px; }
.v3-hero h1 .accent { color: var(--color-biz); }
.v3-hero .lede { color: var(--color-neutral-200); font-size: var(--text-xl); max-width: 600px; margin: 0; line-height: var(--leading-snug); }

/* Floating input card overlapping the band */
.v3-cardwrap { position: relative; margin-top: -72px; }
.v3-card { padding: var(--space-5) var(--space-5) var(--space-4); box-shadow: var(--shadow-3); }
.v3-card h3 { margin: 0 0 4px; }
.v3-card .sub { margin: 0 0 var(--space-4); font-size: var(--text-sm); color: var(--color-text-secondary); }
.v3-card .analyze-form .input { background: var(--color-bg-input); }
.v3-after { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-6); align-items: start; padding: 40px 0 48px; }
.sample-callout {
  padding: var(--space-4); border-left: 3px solid var(--color-gold); background: var(--color-gold-subtle); border-radius: var(--radius-md);
}
.sample-callout .overline { color: var(--color-gold); }
.sample-callout p { margin: 6px 0 0; font-size: var(--text-sm); color: var(--color-text-primary); line-height: var(--leading-normal); }

/* Shared utility: icon host sizing.
   Lucide replaces <i data-lucide> with an <svg> that keeps the class. */
.lucide-host { display: inline-flex; line-height: 0; width: 20px; height: 20px; }
.lucide-host svg { display: block; width: 100%; height: 100%; }
.check-chip .lucide-host        { width: 18px; height: 18px; }
.feature-card__icon .lucide-host{ width: 22px; height: 22px; }
.finding .lucide-host           { width: 18px; height: 18px; }
.trust-strip > .lucide-host     { width: 22px; height: 22px; }
.input-icon-wrap .lucide-host   { width: 18px; height: 18px; }
.preview-card__bar .lucide-host { width: 16px; height: 16px; }
.seam__gate .lucide-host        { width: 16px; height: 16px; }
.step .lucide-host              { width: 18px; height: 18px; }

/* ============================================================
   LONG-PAGE LANDING (Soro-style rhythm) â€” sections, steps,
   product peek, comparison, FAQ. Used by the full SMA landing.
   ============================================================ */
.section { padding: 76px 0; }
.section--alt {
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}
.section-center { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-center .app-eyebrow { justify-content: center; margin-bottom: 12px; }
.section-center h2 { font-size: var(--text-3xl); margin-bottom: 10px; }
.section-center p { font-size: var(--text-lg); color: var(--color-text-secondary); margin: 0; }

/* Step cards */
.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.step-card { padding: var(--space-5); }
.step-card .step__n { margin-bottom: var(--space-3); width: 36px; height: 36px; font-size: var(--text-md); }
.step-card h4 { margin: 0 0 6px; }
.step-card p { margin: 0; font-size: var(--text-sm); color: var(--color-text-secondary); line-height: var(--leading-normal); }

/* Feature split â€” the report peek */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.feature-split .copy h2 { font-size: var(--text-3xl); margin-bottom: 12px; }
.feature-split .copy > p { font-size: var(--text-lg); color: var(--color-text-secondary); margin: 0; line-height: var(--leading-relaxed); }
.ticks { list-style: none; padding: 0; margin: var(--space-5) 0 0; display: flex; flex-direction: column; gap: 12px; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-base); color: var(--color-text-primary); }
.ticks .lucide-host { color: var(--color-success); width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }

/* Comparison table */
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-1);
}
.compare th, .compare td { padding: 15px 18px; border-bottom: 1px solid var(--color-border-subtle); }
.compare thead th { font-size: var(--text-sm); font-weight: 700; text-align: center; color: var(--color-text-secondary); }
.compare thead th.col-label { text-align: left; }
.compare thead th.us { background: var(--module-seo-social-bg); color: var(--module-seo-social); border-top-left-radius: 0; }
.compare tbody th { text-align: left; font-weight: 600; font-size: var(--text-sm); color: var(--color-text-primary); }
.compare tbody td { text-align: center; }
.compare tbody td.us { background: var(--color-blue-subtle); }
.compare .lucide-host { width: 20px; height: 20px; }
.compare .yes { color: var(--color-success); }
.compare .no  { color: var(--color-text-disabled); }
.compare .mid { color: var(--color-warning); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare-note { text-align: center; margin-top: 14px; }

/* FAQ â€” native details/summary (no JS, CSP-clean) */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-1); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 18px;
  font-weight: 600; font-size: var(--text-base); color: var(--color-text-primary);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .lucide-host { color: var(--color-text-tertiary); transition: transform 150ms ease; flex-shrink: 0; }
.faq details[open] summary .lucide-host { transform: rotate(180deg); }
.faq .faq-body { padding: 0 18px 16px; font-size: var(--text-base); color: var(--color-text-secondary); line-height: var(--leading-relaxed); }

/* Closing call band */
.closing { text-align: center; }
.closing h2 { font-size: var(--text-3xl); margin-bottom: 10px; }
.closing p { font-size: var(--text-lg); color: var(--color-text-secondary); max-width: 560px; margin: 0 auto var(--space-5); }
.closing .analyze-form { max-width: 640px; margin: 0 auto; }

/* Benefit cards (replaces the old comparison/neighbor block) */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.benefit-card { padding: var(--space-5); }
.benefit-card .b-icon {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  background: var(--color-accent-subtle); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3);
}
.benefit-card .b-icon .lucide-host { width: 22px; height: 22px; }
.benefit-card h4 { margin: 0 0 6px; }
.benefit-card p { margin: 0; font-size: var(--text-sm); color: var(--color-text-secondary); line-height: var(--leading-normal); }
.benefit-card--feature { border-top: 3px solid var(--brand-accent); }
.benefit-card--feature .b-icon { background: var(--brand-accent-bg); color: var(--brand-accent); }

/* Hero CTA on the dark band */
.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-light:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: #fff; text-decoration: none; }
.v3-hero__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-5); }

/* Run-your-report entry band */
.run-band { text-align: center; }
.run-band h2 { font-size: var(--text-3xl); margin-bottom: 10px; }
.run-band > p { font-size: var(--text-lg); color: var(--color-text-secondary); max-width: 600px; margin: 0 auto var(--space-5); }
.run-band .analyze-form { max-width: 640px; margin: 0 auto; }
.run-note { margin-top: var(--space-3); font-size: var(--text-sm); color: var(--color-text-tertiary); display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; }
.run-note .lucide-host { width: 15px; height: 15px; color: var(--color-text-tertiary); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .feature-grid, .steps, .step-cards { grid-template-columns: 1fr; }
  .v2-grid, .feature-split { grid-template-columns: 1fr; }
  .v3-after { grid-template-columns: 1fr; }
  .v3-hero h1 { font-size: 40px; }
  .v1-hero h1, .v2-copy h1 { font-size: var(--text-3xl); }
  .section { padding: 56px 0; }
  .section-center h2, .feature-split .copy h2, .closing h2 { font-size: var(--text-2xl); }
  .compare { display: block; overflow-x: auto; }
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   v2 ADDITIONS â€” elevated hero strip, ChatGPT, forge visual,
   story queue, competitive report claim, rate-limit pips
   ============================================================ */

/* Elevated "what we check" strip that stands off the hero band */
.check-strip {
  position: relative; z-index: 5; margin: -42px auto 0; max-width: 940px;
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-3);
  padding: 16px 22px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.check-strip__label { display: flex; flex-direction: column; gap: 1px; padding-right: 22px; border-right: 1px solid var(--color-border-subtle); }
.check-strip__label .overline { color: var(--module-seo-social); }
.check-strip__label .t { font-weight: 700; font-size: var(--text-base); color: var(--color-text-primary); }
.check-strip__chips { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; }
.check-chip .new {
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--color-biz); border-radius: var(--radius-pill); padding: 2px 6px; margin-left: 2px;
}

/* Smart help â€” forge visual + story queue */
.forge { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-6); align-items: stretch; margin-bottom: var(--space-6); }
.forge__art { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #1a1410; min-height: 420px; box-shadow: var(--shadow-2); }
.forge__art image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.forge__ember {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(55% 45% at 38% 68%, rgba(232,120,30,0.55), rgba(232,120,30,0) 62%);
  mix-blend-mode: screen; animation: emberPulse 3.2s ease-in-out infinite;
}
.forge__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 16px 18px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,0.6)); }
.forge__cap .overline { color: var(--color-gold-subtle); }
.forge__cap .t { font-weight: 700; font-size: var(--text-base); }
@keyframes emberPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.92; } }
@media (prefers-reduced-motion: reduce) { .forge__ember { animation: none; opacity: 0.6; } }

.queue { display: flex; flex-direction: column; }
.queue__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--color-border-subtle); }
.queue__head .t { font-weight: 700; font-size: var(--text-base); }
.queue__head .sub { font-size: var(--text-xs); color: var(--color-text-tertiary); margin-top: 1px; }
.queue__list { display: flex; flex-direction: column; }
.story { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--color-border-subtle); }
.story__ico { width: 34px; height: 34px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--module-story-bg); color: var(--module-story); }
.story__ico .lucide-host { width: 18px; height: 18px; }
.story__main { flex: 1; min-width: 0; }
.story__title { font-size: var(--text-sm); font-weight: 600; color: var(--color-text-primary); }
.story__meta { font-size: var(--text-xs); color: var(--color-text-tertiary); }
.story__status { display: inline-flex; align-items: center; gap: 5px; font-size: var(--text-xs); font-weight: 600; padding: 4px 10px; border-radius: var(--radius-pill); white-space: nowrap; }
.story__status .lucide-host { width: 13px; height: 13px; }
.status-approved  { background: var(--color-success-bg); color: var(--color-success); }
.status-edit      { background: var(--color-warning-bg); color: var(--color-warning); }
.status-rejected  { background: var(--color-error-bg);   color: var(--color-error); }
.status-scheduled { background: var(--color-blue-subtle); color: var(--color-blue); }
.story__actions { display: flex; gap: 6px; }
.icon-btn { width: 32px; height: 32px; min-height: 0; padding: 0; border-radius: var(--radius-md); border: 1px solid var(--color-border); background: var(--color-bg-card); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background 150ms ease; }
.icon-btn .lucide-host { width: 16px; height: 16px; }
.icon-btn:hover { background: var(--color-neutral-100); }
.icon-btn--approve { color: var(--color-success); }
.icon-btn--edit    { color: var(--color-warning); }
.icon-btn--reject  { color: var(--color-error); }
.story__shimmer { height: 9px; border-radius: 999px; width: 62%; margin-top: 5px; background: linear-gradient(90deg, var(--color-neutral-200), var(--color-neutral-100), var(--color-neutral-200)); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .story__shimmer { animation: none; } }
.queue__foot { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.queue__foot .note { font-size: var(--text-xs); color: var(--color-text-secondary); }

/* Competitive report claim */
.report-claim { background: var(--color-blue-subtle); border: 1px solid var(--color-blue); border-radius: var(--radius-lg); padding: 18px 24px; margin-bottom: var(--space-6); display: flex; gap: 14px; align-items: flex-start; }
.report-claim .lucide-host { color: var(--color-blue); width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.report-claim p { margin: 0; font-size: var(--text-xl); font-weight: 700; color: var(--color-text-primary); line-height: var(--leading-snug); }
.report-claim strong { color: var(--color-blue); }

/* Preview rank chip */
.rank-chip { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-xs); font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill); background: var(--color-neutral-200); color: var(--color-text-primary); margin-top: 8px; white-space: nowrap; }
.rank-chip .lucide-host { width: 13px; height: 13px; color: var(--color-blue); }

/* Rate-limit pips at the entry */
.ratelimit { display: inline-flex; align-items: center; gap: 12px; padding: 9px 16px; border-radius: var(--radius-pill); background: var(--color-bg-card); border: 1px solid var(--color-border); box-shadow: var(--shadow-1); }
.ratelimit .pips { display: inline-flex; gap: 5px; }
.ratelimit .pip { width: 10px; height: 10px; border-radius: 50%; background: var(--color-neutral-300); }
.ratelimit .pip.used { background: var(--color-blue); }
.ratelimit .txt { font-size: var(--text-sm); color: var(--color-text-primary); font-weight: 600; }
.ratelimit__note { font-size: var(--text-xs); color: var(--color-text-tertiary); margin-top: 12px; line-height: var(--leading-normal); }

@media (max-width: 880px) {
  .forge { grid-template-columns: 1fr; }
  .forge__art { min-height: 280px; }
  .check-strip__label { border-right: none; padding-right: 0; }
  .report-claim p { font-size: var(--text-lg); }
}

/* Transition bridge â€” report â†’ how we help */
.bridge { background: var(--color-bg); padding: 8px 0 28px; }
.bridge__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bridge__arrow {
  width: 38px; height: 38px; padding: 8px; border-radius: 50%;
  background: var(--module-seo-social-bg); color: var(--module-seo-social);
  box-shadow: var(--shadow-1);
}
.bridge p { margin: 0; font-size: var(--text-xl); color: var(--color-text-secondary); line-height: var(--leading-snug); }
.bridge strong { color: var(--color-text-primary); }
