:root {
  --fbc-bg: #131317;
  --fbc-bg-2: #181820;
  --fbc-bg-3: #1e1e28;
  --fbc-surface: #1a1a22;
  --fbc-surface-soft: #20202a;
  --fbc-line: #292932;
  --fbc-line-strong: #353541;
  --fbc-ink: #f4f3f7;
  --fbc-ink-soft: #c6c4d0;
  --fbc-muted: #898797;
  --fbc-rose: #fb7185;
  --fbc-rose-soft: #fda4af;
  --fbc-amber: #fbbf24;
  --fbc-amber-soft: #fcd34d;
  --fbc-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  --fbc-glow: 0 0 24px rgba(251, 113, 133, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.fbc-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(251, 113, 133, 0.1), transparent 45%),
    radial-gradient(ellipse at 100% 30%, rgba(251, 191, 36, 0.06), transparent 50%),
    var(--fbc-bg);
  color: var(--fbc-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--fbc-ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin: 0 0 16px; }
h2 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.25; margin: 0 0 14px; }
h3 { font-size: 18px; line-height: 1.35; margin: 0 0 8px; }

.fbc-container { width: min(1220px, calc(100% - 32px)); margin: 0 auto; position: relative; }

/* Header */
.fbc-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(19, 19, 23, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fbc-line);
}
.fbc-header__inner {
  width: min(1220px, calc(100% - 32px)); margin: 0 auto; height: 78px;
  display: flex; align-items: center; gap: 24px;
}

.fbc-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; font-family: "Space Grotesk", sans-serif; font-weight: 700;
  color: var(--fbc-ink); font-size: 20px; min-width: 0;
}
.fbc-logo__mark, .fbc-logo__img, .fbc-footer__brand-mark, .fbc-footer__brand-img {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fbc-logo__img, .fbc-footer__brand-img { object-fit: cover; border-radius: 12px; }
.fbc-logo__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.fbc-logo__text-accent {
  background: linear-gradient(135deg, var(--fbc-rose), var(--fbc-amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.fbc-nav { display: flex; align-items: center; gap: 22px; }
.fbc-nav a {
  text-decoration: none; color: var(--fbc-ink-soft);
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 15px;
  padding: 6px 0; position: relative; transition: color 0.18s ease;
}
.fbc-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--fbc-rose);
  transform: scaleX(0); transform-origin: left center; transition: transform 0.2s ease;
}
.fbc-nav a:hover { color: var(--fbc-rose); }
.fbc-nav a:hover::after { transform: scaleX(1); }

.fbc-header__cta-group {
  margin-left: auto; display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
}

.fbc-lang {
  display: inline-flex; gap: 4px;
  border: 1px solid var(--fbc-line-strong);
  border-radius: 8px; padding: 3px;
}
.fbc-lang__link {
  text-decoration: none; color: var(--fbc-ink-soft);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 12px;
  padding: 6px 12px; border-radius: 6px;
  transition: background 0.18s ease, color 0.18s ease;
}
.fbc-lang__link.is-active { background: var(--fbc-rose); color: #131317; }
.fbc-lang__link:not(.is-active):hover { color: var(--fbc-rose); }

.fbc-btn, .fbc-header__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 46px; padding: 12px 22px;
  border-radius: 8px; text-decoration: none;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.fbc-header__cta, .fbc-btn--primary {
  background: linear-gradient(135deg, var(--fbc-rose) 0%, var(--fbc-amber) 100%);
  color: #131317;
  box-shadow: var(--fbc-glow);
}
.fbc-header__cta:hover, .fbc-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(251, 113, 133, 0.5);
}
.fbc-btn--ghost {
  background: transparent; color: var(--fbc-rose); border-color: var(--fbc-rose);
}
.fbc-btn--ghost:hover { background: rgba(251, 113, 133, 0.1); }
.fbc-btn--wide { width: 100%; margin-top: 18px; }

.fbc-burger {
  display: none; width: 46px; height: 46px; margin-left: 6px;
  border: 1px solid var(--fbc-line-strong); border-radius: 8px;
  background: var(--fbc-surface); cursor: pointer;
  flex-direction: column; padding: 0; align-items: center; justify-content: center; gap: 4px;
}
.fbc-burger span { display: block; width: 22px; height: 2px; background: var(--fbc-ink); border-radius: 2px; }

.fbc-mobile {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--fbc-bg);
  display: none; flex-direction: column; gap: 22px;
  padding: 88px 24px 32px;
  overflow-y: auto;
}
.fbc-mobile a {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 22px;
  text-decoration: none; color: var(--fbc-ink);
  padding: 10px 0; border-bottom: 1px solid var(--fbc-line);
}
.fbc-mobile__cta {
  margin-top: 12px; text-align: center; background: var(--fbc-rose);
  color: #131317; border-radius: 8px; padding: 14px 22px; border: none;
}
.fbc-mobile__close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  background: var(--fbc-surface); color: var(--fbc-ink);
  border: 1px solid var(--fbc-line-strong); border-radius: 8px;
  font-size: 26px; line-height: 1; cursor: pointer;
}

/* Eyebrow */
.fbc-eyebrow {
  display: inline-flex;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fbc-rose); margin: 0 0 14px;
}
.fbc-section__eyebrow {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fbc-amber); margin: 0 0 10px;
}

/* Hero */
.fbc-hero {
  position: relative; padding: 80px 0 70px; overflow: hidden;
}
.fbc-hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 113, 133, 0.18), transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(251, 191, 36, 0.12), transparent 50%);
  pointer-events: none;
}
.fbc-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px; align-items: start;
}
.fbc-hero__content > p { color: var(--fbc-ink-soft); }
.fbc-hero__lead { font-size: 18px; color: var(--fbc-ink-soft); margin: 0 0 22px; max-width: 58ch; }
.fbc-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0 30px; }

.fbc-hero__stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px; margin: 0; padding: 22px 0 0;
  border-top: 1px solid var(--fbc-line);
}
.fbc-hero__stats dt {
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fbc-muted); margin-bottom: 4px;
}
.fbc-hero__stats dd { font-weight: 700; color: var(--fbc-ink); margin: 0; font-size: 16px; }

.fbc-byline {
  display: flex; align-items: center; gap: 14px; margin: 18px 0 6px;
  padding: 16px;
  background: rgba(251, 113, 133, 0.06);
  border: 1px solid var(--fbc-line);
  border-radius: 14px;
}
.fbc-byline__avatar {
  width: 52px; height: 52px; border-radius: 12px; object-fit: cover;
  flex-shrink: 0; border: 2px solid var(--fbc-rose);
}
.fbc-byline__avatar--placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  background: var(--fbc-bg-3); color: var(--fbc-rose);
}
.fbc-byline__body { display: flex; flex-direction: column; gap: 2px; color: var(--fbc-ink-soft); font-size: 14px; }
.fbc-byline__by { font-weight: 600; color: var(--fbc-ink); }
.fbc-byline__by a { color: var(--fbc-rose); text-decoration: none; }
.fbc-byline__role { font-weight: 500; color: var(--fbc-muted); margin-left: 6px; font-size: 12px; }
.fbc-byline__bio { color: var(--fbc-ink-soft); font-size: 13px; }
.fbc-byline__date { color: var(--fbc-muted); font-size: 12px; }

/* Summary card */
.fbc-summary-card {
  background: linear-gradient(160deg, var(--fbc-surface) 0%, var(--fbc-surface-soft) 100%);
  border: 1px solid var(--fbc-line-strong);
  border-radius: 22px; padding: 24px;
  box-shadow: var(--fbc-shadow);
}
.fbc-summary-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.fbc-summary-card__tag {
  background: var(--fbc-bg-3); color: var(--fbc-rose);
  padding: 4px 10px; border-radius: 8px;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em;
}
.fbc-summary-card__pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--fbc-ink-soft); font-weight: 600;
}
.fbc-summary-card__pulse span {
  width: 8px; height: 8px; background: var(--fbc-rose); border-radius: 50%;
  animation: fbcPulse 1.6s infinite;
}
@keyframes fbcPulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(251, 113, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0); }
}
.fbc-summary-card__list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 8px;
}
.fbc-summary-card__list li {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border-radius: 8px;
  background: rgba(251, 113, 133, 0.07);
}
.fbc-summary-card__list span:first-child {
  color: var(--fbc-muted); font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.fbc-summary-card__list strong { color: var(--fbc-ink); font-size: 14px; font-weight: 700; text-align: right; }
.fbc-summary-card__legal { font-size: 12px; color: var(--fbc-muted); margin: 14px 0 0; }

/* Strip */
.fbc-strip {
  background: var(--fbc-bg-2);
  border-top: 1px solid var(--fbc-line);
  border-bottom: 1px solid var(--fbc-line);
  padding: 20px 0;
}
.fbc-strip__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.fbc-strip__grid > div { text-align: center; }
.fbc-strip__grid strong { display: block; color: var(--fbc-rose); font-family: "Space Grotesk", sans-serif; font-size: 18px; }
.fbc-strip__grid span { color: var(--fbc-ink-soft); font-size: 13px; }

/* Sections */
.fbc-section { padding: 60px 0; }
.fbc-section--soft { background: var(--fbc-bg-2); }
.fbc-section--dark {
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0)), var(--fbc-bg-3);
  border-top: 1px solid var(--fbc-line); border-bottom: 1px solid var(--fbc-line);
}
.fbc-section p { color: var(--fbc-ink-soft); }

.fbc-two-col {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px; align-items: start;
}
.fbc-verdict {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 18px; padding: 22px; display: grid; gap: 6px;
}
.fbc-verdict__score {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 44px;
  color: var(--fbc-rose);
}
.fbc-verdict__label {
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fbc-muted);
}
.fbc-verdict p { margin: 8px 0 0; color: var(--fbc-ink-soft); }

.fbc-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 18px;
}
.fbc-card {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 16px; padding: 22px;
}
.fbc-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 28px;
  border-radius: 8px; padding: 0 8px;
  background: rgba(251, 113, 133, 0.15); color: var(--fbc-rose);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 13px;
  margin-bottom: 10px;
}

.fbc-bonus-layout {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 28px; align-items: start;
}
.fbc-bonus-box, .fbc-steps {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 18px; padding: 24px;
}
.fbc-steps h3 { margin-bottom: 12px; }
.fbc-steps ol { padding-left: 18px; color: var(--fbc-ink-soft); display: grid; gap: 6px; }
.fbc-table { display: grid; gap: 8px; margin-top: 14px; }
.fbc-table > div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px; border-radius: 10px;
  background: rgba(251, 113, 133, 0.07);
}
.fbc-table span { color: var(--fbc-muted); font-size: 14px; font-weight: 600; }
.fbc-table strong { color: var(--fbc-ink); font-size: 15px; }

.fbc-payment-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px; margin-top: 14px;
}
.fbc-payment-grid > div {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 10px; padding: 12px 14px; text-align: center;
  color: var(--fbc-ink); font-weight: 600;
}

.fbc-note {
  color: var(--fbc-ink-soft);
  background: rgba(251, 191, 36, 0.07);
  border-left: 3px solid var(--fbc-amber);
  padding: 12px 14px; border-radius: 8px; margin-top: 18px;
}

.fbc-check-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 6px;
  color: var(--fbc-ink-soft);
}
.fbc-check-list li { position: relative; padding-left: 26px; }
.fbc-check-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px; border-left: 2px solid var(--fbc-rose);
  border-bottom: 2px solid var(--fbc-rose); transform: rotate(-45deg);
}

.fbc-page-toc { background: var(--fbc-bg-2); padding: 30px 0; }
.fbc-page-toc ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.fbc-page-toc a {
  text-decoration: none; background: var(--fbc-surface);
  border: 1px solid var(--fbc-line); color: var(--fbc-ink);
  padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease;
}
.fbc-page-toc a:hover { background: var(--fbc-rose); color: #131317; }

.fbc-faq { display: grid; gap: 10px; }
.fbc-faq details {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 14px; padding: 14px 18px;
}
.fbc-faq summary {
  list-style: none; cursor: pointer;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--fbc-ink);
  position: relative; padding-right: 24px;
}
.fbc-faq summary::-webkit-details-marker { display: none; }
.fbc-faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  color: var(--fbc-rose); font-size: 20px; line-height: 1;
}
.fbc-faq details[open] summary::after { content: "−"; }
.fbc-faq p { color: var(--fbc-ink-soft); margin: 10px 0 0; }

/* CTA */
.fbc-cta {
  text-align: center; padding: 70px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(251, 113, 133, 0.18), transparent 70%), var(--fbc-bg-2);
  border-top: 1px solid var(--fbc-line);
}
.fbc-cta h2 { font-size: clamp(24px, 3vw, 32px); }
.fbc-cta p { color: var(--fbc-ink-soft); margin: 0 0 22px; }

/* Footer */
.fbc-footer {
  background: #0c0c10; border-top: 1px solid var(--fbc-line); margin-top: 40px;
}
.fbc-footer__inner {
  width: min(1220px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 32px;
}
.fbc-footer__top {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 28px; margin-bottom: 32px;
}
.fbc-footer__brand {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 12px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 18px;
  color: var(--fbc-ink);
}
.fbc-footer__brand-block p { color: var(--fbc-ink-soft); max-width: 60ch; }
.fbc-footer__cta-card {
  background: linear-gradient(155deg, var(--fbc-bg-3), var(--fbc-surface));
  border: 1px solid var(--fbc-line-strong);
  border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.fbc-footer__cta-card a {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fbc-rose); color: #131317;
  padding: 10px 18px; border-radius: 8px;
  text-decoration: none; font-weight: 700;
}
.fbc-footer__cta-meta {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fbc-amber);
}
.fbc-footer__columns {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; padding: 28px 0;
  border-top: 1px solid var(--fbc-line); border-bottom: 1px solid var(--fbc-line);
}
.fbc-footer__group h2 {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fbc-muted); margin: 0 0 10px;
}
.fbc-footer__group a {
  display: block; text-decoration: none; color: var(--fbc-ink); padding: 4px 0; font-size: 14px;
}
.fbc-footer__group a:hover { color: var(--fbc-rose); }
.fbc-footer__bottom {
  display: flex; justify-content: space-between;
  gap: 16px; padding-top: 22px; font-size: 13px;
  color: var(--fbc-ink-soft); flex-wrap: wrap;
}

/* Simple page */
.fbc-simple-page { padding-top: 20px; }
.fbc-simple-hero { padding: 60px 0 36px; }
.fbc-simple-hero h1 { max-width: 24ch; }
.fbc-simple-hero p { color: var(--fbc-ink-soft); max-width: 60ch; margin: 0 0 18px; }
.fbc-simple-hero .fbc-btn { margin-top: 8px; }

/* Download */
.fbc-download__buttons {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px; margin-top: 16px;
}
.fbc-store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--fbc-surface);
  border: 1px solid var(--fbc-line-strong);
  border-radius: 14px; padding: 14px 18px;
  text-decoration: none; color: var(--fbc-ink);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.fbc-store-btn:hover { transform: translateY(-1px); background: var(--fbc-bg-3); border-color: var(--fbc-rose); }
.fbc-store-btn__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(251, 113, 133, 0.15); color: var(--fbc-rose); flex-shrink: 0;
}
.fbc-store-btn__body { display: flex; flex-direction: column; }
.fbc-store-btn__caption {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fbc-muted); font-weight: 700;
}
.fbc-store-btn__label { font-weight: 700; color: var(--fbc-ink); font-size: 16px; }
.fbc-download__note { color: var(--fbc-ink-soft); font-size: 13px; margin-top: 12px; }

/* TOC */
.fbc-content-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 32px; }
.fbc-toc {
  position: sticky; top: 96px;
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 14px; padding: 16px; align-self: start;
}
.fbc-toc__title {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fbc-muted); margin: 0 0 10px;
}
.fbc-toc__nav { display: flex; flex-direction: column; gap: 4px; }
.fbc-toc__nav a {
  text-decoration: none; color: var(--fbc-ink-soft);
  font-size: 13px; padding: 4px 6px; border-radius: 6px;
}
.fbc-toc__nav a:hover { background: rgba(251, 113, 133, 0.1); color: var(--fbc-rose); }
.fbc-toc__nav-sub { padding-left: 16px !important; font-size: 12px !important; }

/* Rich text */
.fbc-landing-body .rich-text { color: var(--fbc-ink); line-height: 1.7; }
.fbc-landing-body .rich-text h2 { margin-top: 28px; }
.fbc-landing-body .rich-text h3 { margin-top: 22px; color: var(--fbc-rose); }
.fbc-landing-body .rich-text p { color: var(--fbc-ink); }
.fbc-landing-body .rich-text a { color: var(--fbc-rose); text-decoration: underline; }
.fbc-landing-body .rich-text ul, .fbc-landing-body .rich-text ol { color: var(--fbc-ink); }

/* Writer page contrast override */
main.writer-page { color: var(--fbc-ink); }
.writer-profile-hero { color: var(--fbc-ink); }
.writer-profile-hero__eyebrow { color: var(--fbc-rose); }
.writer-profile-card {
  background: var(--fbc-surface) !important;
  border: 1px solid var(--fbc-line) !important;
  color: var(--fbc-ink) !important;
}
.writer-profile-card__bio, .writer-profile-card__details dd { color: var(--fbc-ink-soft); }
.writer-profile-card__type { color: var(--fbc-rose); }
.writer-profile-card__placeholder {
  background: var(--fbc-bg-3); color: var(--fbc-rose); font-family: "Space Grotesk", sans-serif;
}
.writer-profile-empty { color: var(--fbc-ink-soft); text-align: center; padding: 40px 16px; }

/* 404 */
.fbc-error { padding: 80px 0 60px; text-align: center; }
.fbc-error h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.fbc-error p { color: var(--fbc-ink-soft); max-width: 46ch; margin: 8px auto 22px; }
.fbc-error__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.fbc-page-faq { padding: 50px 0; }
.fbc-page-faq .container { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }

/* Responsive */
@media (max-width: 960px) {
  .fbc-hero { padding: 60px 0 50px; }
  .fbc-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .fbc-two-col { grid-template-columns: minmax(0, 1fr); }
  .fbc-bonus-layout { grid-template-columns: minmax(0, 1fr); }
  .fbc-content-grid { grid-template-columns: minmax(0, 1fr); }
  .fbc-toc { position: static; }
  .fbc-footer__top { grid-template-columns: minmax(0, 1fr); }
  .fbc-footer__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fbc-nav { display: none; }
  .fbc-burger { display: inline-flex; }
  .fbc-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fbc-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .fbc-logo__text { font-size: 16px; }
  .fbc-header__inner { gap: 12px; }
  .fbc-header__cta { padding: 10px 16px; font-size: 13px; min-height: 42px; }
  .fbc-lang { display: none; }
  .fbc-download__buttons { grid-template-columns: minmax(0, 1fr); }
  .fbc-footer__columns { grid-template-columns: minmax(0, 1fr); }
  .fbc-footer__bottom { flex-direction: column; }
}

@media (min-width: 961px) {
  .fbc-burger { display: none !important; }
  .fbc-mobile { display: none !important; }
}
@media (max-width: 960px) {
  .fbc-mobile[hidden] { display: none !important; }
  .fbc-mobile:not([hidden]) { display: flex; }
  .fbc-mobile__cta {
    align-self: stretch;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    min-height: 48px;
  }
}

/* Minimal editorial layout */
.fbc-minimal {
  color: var(--fbc-ink);
  background: #0e0e12;
}
.fbc-eyebrow {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fbc-rose);
  margin: 0 0 12px;
}
.fbc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid var(--fbc-line-strong);
  background: transparent;
  color: var(--fbc-ink);
  transition: all 0.18s ease;
}
.fbc-btn--primary {
  background: var(--fbc-rose);
  color: #131317;
  border-color: var(--fbc-rose);
}
.fbc-btn--primary:hover { background: transparent; color: var(--fbc-rose); }
.fbc-btn--text {
  border: none;
  background: transparent;
  color: var(--fbc-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  padding: 12px 4px;
}

.fbc-asym {
  padding: 72px 0 0;
  background: #0e0e12;
  position: relative;
}
.fbc-asym__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  padding-bottom: 40px;
}
.fbc-asym__lede h1 { margin: 0 0 18px; }
.fbc-asym__title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fbc-ink);
  max-width: 16ch;
}
.fbc-asym__deck {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--fbc-ink-soft);
  max-width: 54ch;
  margin: 0 0 22px;
}
.fbc-byline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  color: var(--fbc-muted);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.fbc-byline__name { color: var(--fbc-ink); text-decoration: none; font-weight: 600; }
.fbc-byline__name:hover { color: var(--fbc-rose); }
.fbc-byline__sep { margin: 0 8px; color: var(--fbc-line-strong); }
.fbc-byline__date { color: var(--fbc-ink-soft); }
.fbc-byline__role {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fbc-rose);
}
.fbc-asym__cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.fbc-asym__quote {
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid var(--fbc-line-strong);
  position: relative;
}
.fbc-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--fbc-rose);
  position: absolute;
  top: 12px;
  left: 20px;
}
.fbc-asym__quote-text {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--fbc-ink);
  margin: 30px 0 14px;
}
.fbc-asym__quote-source {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fbc-muted);
  margin: 0;
}

.fbc-asym__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fbc-line-strong) 20%, var(--fbc-line-strong) 80%, transparent);
}
.fbc-asym--sub { padding: 56px 0 0; }

.fbc-chapter { padding: 56px 0; }
.fbc-chapter--alt { background: rgba(255, 255, 255, 0.015); border-top: 1px solid var(--fbc-line); border-bottom: 1px solid var(--fbc-line); }
.fbc-chapter__grid {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.fbc-chapter__num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
  color: var(--fbc-line-strong);
  letter-spacing: -0.04em;
}
.fbc-chapter__kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fbc-rose);
  margin: 8px 0 8px;
}
.fbc-chapter__body h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 28ch;
}
.fbc-chapter__body p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fbc-ink-soft);
  margin: 0 0 14px;
  max-width: 64ch;
}

.fbc-pullquote-block { padding: 40px 0; }
.fbc-pullquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-style: italic;
  line-height: 1.3;
  color: var(--fbc-ink);
  border-top: 1px solid var(--fbc-line-strong);
  border-bottom: 1px solid var(--fbc-line-strong);
  padding: 38px 0;
  margin: 0;
  max-width: 26ch;
  text-align: left;
}

.fbc-compare { padding: 56px 0; }
.fbc-compare__table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--fbc-line);
  background: rgba(255, 255, 255, 0.02);
}
.fbc-compare__col, .fbc-compare__row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--fbc-line);
  font-family: "Space Grotesk", sans-serif;
}
.fbc-compare__row:last-child { border-bottom: none; }
.fbc-compare__col--head {
  background: rgba(255, 255, 255, 0.04);
  color: var(--fbc-muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.fbc-compare__row { font-size: 14px; color: var(--fbc-ink-soft); }
.fbc-compare__row > span:first-child { color: var(--fbc-ink); font-weight: 600; }
.fbc-yes { color: var(--fbc-rose); font-weight: 600; }
.fbc-maybe { color: var(--fbc-muted); font-style: italic; }
.fbc-foot {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  color: var(--fbc-muted);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

.fbc-stripe-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: stripe;
}
.fbc-stripe-list li {
  counter-increment: stripe;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--fbc-line);
  font-family: "Space Grotesk", sans-serif;
}
.fbc-stripe-list li::before {
  content: counter(stripe, decimal-leading-zero);
  font-size: 12px;
  color: var(--fbc-rose);
  letter-spacing: 0.06em;
}
.fbc-stripe-list__name { color: var(--fbc-ink); font-weight: 600; font-size: 15px; }
.fbc-stripe-list__desc { color: var(--fbc-ink-soft); font-size: 14px; }

.fbc-minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fbc-minimal-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--fbc-line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  color: var(--fbc-ink-soft);
  position: relative;
  padding-left: 28px;
}
.fbc-minimal-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--fbc-rose);
  font-family: "Space Grotesk", sans-serif;
}

.fbc-link {
  color: var(--fbc-rose);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--fbc-rose);
  padding-bottom: 1px;
}
.fbc-link:hover { color: var(--fbc-ink); border-color: var(--fbc-ink); }

.fbc-app-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 18px 0 8px;
  border-top: 1px solid var(--fbc-line-strong);
  border-bottom: 1px solid var(--fbc-line-strong);
}
.fbc-app-link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  padding: 20px;
  text-decoration: none;
  color: var(--fbc-ink);
  background: transparent;
  border-right: 1px solid var(--fbc-line);
  transition: background 0.18s ease;
}
.fbc-app-link:last-child { border-right: none; }
.fbc-app-link:hover { background: rgba(244, 114, 182, 0.06); }
.fbc-app-link__num {
  grid-row: span 2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--fbc-rose);
  align-self: center;
}
.fbc-app-link__label { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 16px; color: var(--fbc-ink); }
.fbc-app-link__meta { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: 13px; color: var(--fbc-ink-soft); }
.fbc-app-link--ios .fbc-app-link__num { color: var(--fbc-ink); }

.fbc-faq-block { padding: 56px 0; background: rgba(255, 255, 255, 0.015); border-top: 1px solid var(--fbc-line); border-bottom: 1px solid var(--fbc-line); }
.fbc-faq { display: flex; flex-direction: column; }
.fbc-faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--fbc-line);
}
.fbc-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  color: var(--fbc-ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.fbc-faq summary::after { content: "→"; color: var(--fbc-rose); transition: transform 0.18s ease; }
.fbc-faq details[open] summary::after { transform: rotate(90deg); }
.fbc-faq summary::-webkit-details-marker { display: none; }
.fbc-faq p {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: var(--fbc-ink-soft);
  max-width: 60ch;
}

.fbc-outro {
  padding: 56px 0;
  border-top: 1px solid var(--fbc-line-strong);
}
.fbc-outro__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.fbc-outro__line {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--fbc-ink-soft);
  margin: 0;
  max-width: 30ch;
}

@media (max-width: 960px) {
  .fbc-asym__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .fbc-chapter__grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .fbc-chapter__num { font-size: 56px; }
  .fbc-compare__col, .fbc-compare__row { grid-template-columns: minmax(0, 1fr); gap: 6px; padding: 12px 16px; }
  .fbc-compare__col--head { display: none; }
  .fbc-app-rail { grid-template-columns: minmax(0, 1fr); }
  .fbc-app-link { border-right: none; border-bottom: 1px solid var(--fbc-line); }
  .fbc-app-link:last-child { border-bottom: none; }
  .fbc-stripe-list li { grid-template-columns: 36px minmax(0, 1fr); gap: 10px; }
  .fbc-stripe-list__desc { grid-column: 2 / span 1; }
}
