/* ================================================================
   FeedBuzzard — Premium SaaS theme
   Dark editorial · warm amber↦pink gradient · buzz-mesh backdrop
   ================================================================ */

:root {
  --fbz-bg: #0B0A10;
  --fbz-bg-2: #12111A;
  --fbz-surface: #17161F;
  --fbz-surface-2: #1E1C28;
  --fbz-border: rgba(255, 255, 255, 0.08);
  --fbz-border-strong: rgba(255, 255, 255, 0.14);
  --fbz-text: #F5F1EA;
  --fbz-text-dim: #A9A3B5;
  --fbz-text-muted: #6E6879;
  --fbz-accent: #FF8A3D;
  --fbz-accent-2: #FF3D7F;
  --fbz-accent-3: #FFD37A;
  --fbz-success: #7CE7B2;
  --fbz-danger: #FF6D6D;
  --fbz-gradient: linear-gradient(120deg, #FFD37A 0%, #FF8A3D 40%, #FF3D7F 100%);
  --fbz-glow: radial-gradient(60% 60% at 50% 0%, rgba(255, 138, 61, 0.35), transparent 70%);
  --fbz-radius: 14px;
  --fbz-radius-lg: 22px;
  --fbz-shadow: 0 30px 60px -30px rgba(255, 61, 127, 0.35), 0 8px 24px -12px rgba(0, 0, 0, 0.6);
  --fbz-font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fbz-font-serif: "Instrument Serif", "Times New Roman", serif;
  --fbz-container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--fbz-font-sans);
  background: var(--fbz-bg);
  color: var(--fbz-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s ease, opacity .18s ease; }
a:hover { opacity: .85; }
::selection { background: var(--fbz-accent-2); color: #fff; }

.fbz-container { width: 100%; max-width: var(--fbz-container); margin: 0 auto; padding: 0 24px; }

.screen-reader-text { position: absolute; left: -9999px; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 100; background: var(--fbz-accent); color: #000; padding: 8px 12px; border-radius: 6px; }

/* ---------- Header ---------- */
.fbz-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(11, 10, 16, 0.72);
  border-bottom: 1px solid var(--fbz-border);
}
.fbz-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.fbz-brand__link { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.01em; font-size: 1.05rem; }
.fbz-brand__mark { width: 30px; height: 30px; display: inline-flex; }
.fbz-brand__mark svg { width: 100%; height: 100%; }
.fbz-nav { flex: 1; display: flex; justify-content: center; }
.fbz-nav__list, .fbz-footer__menu { list-style: none; display: flex; gap: 28px; padding: 0; margin: 0; }
.fbz-nav__list a { font-size: .93rem; color: var(--fbz-text-dim); position: relative; }
.fbz-nav__list a:hover { color: var(--fbz-text); opacity: 1; }
.fbz-header__cta { display: flex; align-items: center; gap: 10px; }
.fbz-nav__toggle { display: none; background: transparent; border: 0; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 4px; cursor: pointer; }
.fbz-nav__toggle span { width: 22px; height: 2px; background: var(--fbz-text); border-radius: 2px; transition: transform .2s ease; }

/* ---------- Buttons ---------- */
.fbz-btn {
  --pad-y: .7rem; --pad-x: 1.15rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 600; font-size: .9rem; letter-spacing: -0.005em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.fbz-btn--lg { --pad-y: .95rem; --pad-x: 1.5rem; font-size: 1rem; }
.fbz-btn--block { width: 100%; }
.fbz-btn--primary { background: var(--fbz-gradient); color: #180B03; box-shadow: 0 12px 30px -12px rgba(255, 61, 127, 0.55); }
.fbz-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 18px 38px -14px rgba(255, 61, 127, 0.7); opacity: 1; }
.fbz-btn--ghost { background: transparent; color: var(--fbz-text); border-color: var(--fbz-border-strong); }
.fbz-btn--ghost:hover { background: rgba(255,255,255,0.04); opacity: 1; }

/* ---------- Hero ---------- */
.fbz-hero { position: relative; padding: 96px 0 40px; overflow: hidden; }
.fbz-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.fbz-hero__mesh {
  position: absolute; inset: -20% -10% auto -10%; height: 90%;
  background:
    radial-gradient(50% 50% at 20% 20%, rgba(255, 138, 61, 0.35), transparent 60%),
    radial-gradient(45% 45% at 80% 10%, rgba(255, 61, 127, 0.35), transparent 60%),
    radial-gradient(40% 40% at 60% 60%, rgba(255, 211, 122, 0.22), transparent 65%);
  filter: blur(30px);
  animation: fbzFloat 18s ease-in-out infinite alternate;
}
.fbz-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 30%, transparent 75%);
}
@keyframes fbzFloat { to { transform: translate3d(0, 30px, 0) scale(1.05); } }

.fbz-hero__inner { position: relative; text-align: center; }
.fbz-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--fbz-border);
  font-size: .78rem; font-weight: 500; color: var(--fbz-text-dim); letter-spacing: 0.02em;
  text-transform: uppercase;
}
.fbz-eyebrow--muted { background: transparent; }
.fbz-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fbz-gradient); box-shadow: 0 0 12px var(--fbz-accent-2); animation: fbzPulse 2s ease-in-out infinite; }
@keyframes fbzPulse { 50% { transform: scale(1.25); opacity: .7; } }

.fbz-hero__title {
  font-family: var(--fbz-font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 22px auto 20px;
  max-width: 15ch;
}
.fbz-hero__title em {
  font-style: italic;
  background: var(--fbz-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fbz-hero__sub { max-width: 640px; margin: 0 auto; color: var(--fbz-text-dim); font-size: 1.1rem; }
.fbz-hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 32px 0 40px; }

.fbz-hero__logos { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; color: var(--fbz-text-muted); font-size: .8rem; }
.fbz-hero__logos ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 32px; flex-wrap: wrap; }
.fbz-hero__logos li { font-family: var(--fbz-font-serif); font-size: 1.4rem; color: var(--fbz-text-dim); opacity: .75; letter-spacing: 0.02em; }

/* Preview card */
.fbz-hero__preview { margin-top: 60px; position: relative; }
.fbz-preview {
  max-width: 960px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(30,28,40,.9), rgba(20,18,28,.9));
  border: 1px solid var(--fbz-border-strong);
  border-radius: var(--fbz-radius-lg);
  box-shadow: var(--fbz-shadow);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.fbz-preview__bar { display: flex; gap: 6px; padding: 14px 18px; border-bottom: 1px solid var(--fbz-border); }
.fbz-preview__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--fbz-border-strong); }
.fbz-preview__bar span:first-child { background: #ff5f57; }
.fbz-preview__bar span:nth-child(2) { background: #febc2e; }
.fbz-preview__bar span:nth-child(3) { background: #28c840; }
.fbz-preview__body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 22px; text-align: left; }
.fbz-preview__card { background: var(--fbz-surface); border: 1px solid var(--fbz-border); border-radius: 12px; padding: 16px; font-size: .88rem; }
.fbz-preview__card p { margin: 10px 0; color: var(--fbz-text); }
.fbz-preview__card small { color: var(--fbz-text-muted); font-size: .74rem; }
.fbz-preview__card mark { background: rgba(255,138,61,.18); color: var(--fbz-accent-3); padding: 0 3px; border-radius: 3px; }
.fbz-tag { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--fbz-text-dim); }
.fbz-tag--pos { background: rgba(124,231,178,.14); color: var(--fbz-success); }
.fbz-tag--neg { background: rgba(255,109,109,.14); color: var(--fbz-danger); }

/* ---------- Sections ---------- */
.fbz-section { padding: 96px 0; position: relative; }
.fbz-section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.fbz-section__title { font-family: var(--fbz-font-serif); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; line-height: 1.05; margin: 16px 0 12px; }
.fbz-section__lead { color: var(--fbz-text-dim); font-size: 1.05rem; }

/* Metrics */
.fbz-metrics { padding: 40px 0; border-block: 1px solid var(--fbz-border); background: var(--fbz-bg-2); }
.fbz-metrics__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.fbz-metrics strong { display: block; font-family: var(--fbz-font-serif); font-size: clamp(2rem, 4vw, 3rem); background: var(--fbz-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fbz-metrics span { color: var(--fbz-text-dim); font-size: .88rem; letter-spacing: 0.02em; }

/* Features */
.fbz-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fbz-feature { position: relative; background: var(--fbz-surface); border: 1px solid var(--fbz-border); border-radius: var(--fbz-radius); padding: 28px; transition: transform .25s ease, border-color .25s ease, background .25s ease; overflow: hidden; }
.fbz-feature::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: var(--fbz-gradient); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .25s ease; }
.fbz-feature:hover { transform: translateY(-3px); }
.fbz-feature:hover::before { opacity: .8; }
.fbz-feature__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,138,61,.12); color: var(--fbz-accent-3); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.fbz-feature__icon svg { width: 22px; height: 22px; }
.fbz-feature h3 { font-family: var(--fbz-font-serif); font-weight: 400; font-size: 1.5rem; margin: 0 0 8px; letter-spacing: -0.01em; }
.fbz-feature p { color: var(--fbz-text-dim); margin: 0; font-size: .95rem; }

/* How */
.fbz-how { background: var(--fbz-bg-2); border-block: 1px solid var(--fbz-border); }
.fbz-how__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: how; }
.fbz-how__list li { background: var(--fbz-surface); border: 1px solid var(--fbz-border); border-radius: var(--fbz-radius); padding: 32px; }
.fbz-how__list span { font-family: var(--fbz-font-serif); font-size: 2.4rem; background: var(--fbz-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fbz-how__list h3 { font-family: var(--fbz-font-serif); font-weight: 400; font-size: 1.5rem; margin: 12px 0 8px; }
.fbz-how__list p { color: var(--fbz-text-dim); margin: 0; font-size: .95rem; }

/* Testimonials */
.fbz-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fbz-quote { margin: 0; background: var(--fbz-surface); border: 1px solid var(--fbz-border); border-radius: var(--fbz-radius); padding: 28px; }
.fbz-quote blockquote { font-family: var(--fbz-font-serif); font-size: 1.35rem; line-height: 1.35; margin: 0 0 20px; letter-spacing: -0.01em; }
.fbz-quote figcaption { display: flex; flex-direction: column; color: var(--fbz-text-muted); font-size: .85rem; }
.fbz-quote strong { color: var(--fbz-text); font-weight: 600; }

/* Pricing */
.fbz-pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.fbz-plan { position: relative; background: var(--fbz-surface); border: 1px solid var(--fbz-border); border-radius: var(--fbz-radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.fbz-plan--featured { background: linear-gradient(180deg, rgba(255,61,127,.10), rgba(255,138,61,.06)); border-color: rgba(255,138,61,.4); box-shadow: var(--fbz-shadow); }
.fbz-plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--fbz-gradient); color: #180B03; padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.fbz-plan h3 { font-family: var(--fbz-font-serif); font-weight: 400; font-size: 1.6rem; margin: 0; }
.fbz-plan__amount { font-family: var(--fbz-font-serif); font-size: 3rem; }
.fbz-plan__period { color: var(--fbz-text-muted); }
.fbz-plan__desc { color: var(--fbz-text-dim); margin: 0; font-size: .95rem; }
.fbz-plan__features { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.fbz-plan__features li { display: flex; gap: 10px; align-items: center; color: var(--fbz-text-dim); font-size: .93rem; }
.fbz-plan__features svg { width: 18px; height: 18px; color: var(--fbz-accent); flex-shrink: 0; }

/* FAQ */
.fbz-faq { background: var(--fbz-bg-2); border-top: 1px solid var(--fbz-border); }
.fbz-faq__wrap { max-width: 860px; }
.fbz-faq__head { text-align: center; margin-bottom: 40px; }
.fbz-faq__head a { color: var(--fbz-accent-3); border-bottom: 1px dashed currentColor; }
.fbz-faq__list { display: grid; gap: 12px; }
.fbz-faq__item { background: var(--fbz-surface); border: 1px solid var(--fbz-border); border-radius: var(--fbz-radius); overflow: hidden; transition: border-color .2s ease, background .2s ease; }
.fbz-faq__item[open] { border-color: rgba(255,138,61,.35); background: var(--fbz-surface-2); }
.fbz-faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 1.02rem; }
.fbz-faq__item summary::-webkit-details-marker { display: none; }
.fbz-faq__chev { width: 18px; height: 18px; color: var(--fbz-text-dim); flex-shrink: 0; transition: transform .25s ease; }
.fbz-faq__item[open] .fbz-faq__chev { transform: rotate(180deg); color: var(--fbz-accent); }
.fbz-faq__answer { padding: 0 24px 22px; color: var(--fbz-text-dim); font-size: .98rem; }
.fbz-faq__answer p { margin: 0; }

/* CTA */
.fbz-cta { padding: 120px 0; position: relative; }
.fbz-cta::before { content:""; position: absolute; inset: 0; background: var(--fbz-glow); pointer-events: none; }
.fbz-cta__inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.fbz-cta h2 { font-family: var(--fbz-font-serif); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; margin: 0 0 14px; line-height: 1.05; }
.fbz-cta p { color: var(--fbz-text-dim); margin-bottom: 28px; }

/* Blog */
.fbz-blog { padding: 96px 0; }
.fbz-blog__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.fbz-card { background: var(--fbz-surface); border: 1px solid var(--fbz-border); border-radius: var(--fbz-radius); overflow: hidden; transition: transform .25s ease; }
.fbz-card:hover { transform: translateY(-3px); }
.fbz-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.fbz-card__body { padding: 22px; }
.fbz-card__title { font-family: var(--fbz-font-serif); font-weight: 400; font-size: 1.4rem; margin: 0 0 8px; }
.fbz-card__meta { font-size: .8rem; color: var(--fbz-text-muted); margin-bottom: 10px; }
.fbz-card__excerpt { color: var(--fbz-text-dim); font-size: .95rem; }
.fbz-card__more { display: inline-block; margin-top: 12px; color: var(--fbz-accent-3); font-weight: 600; font-size: .9rem; }

/* Single */
.fbz-single { padding: 80px 0; max-width: 760px; }
.fbz-single__head { text-align: center; margin-bottom: 32px; }
.fbz-single__title { font-family: var(--fbz-font-serif); font-weight: 400; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.02em; margin: 0 0 12px; }
.fbz-single__meta { color: var(--fbz-text-muted); font-size: .9rem; }
.fbz-single__thumb { width: 100%; height: auto; border-radius: var(--fbz-radius); margin-bottom: 32px; }
.fbz-single__content { font-size: 1.05rem; color: var(--fbz-text); }
.fbz-single__content p { margin: 0 0 1.2em; }
.fbz-single__content h2, .fbz-single__content h3 { font-family: var(--fbz-font-serif); font-weight: 400; letter-spacing: -0.01em; margin-top: 1.6em; }
.fbz-single__content a { color: var(--fbz-accent-3); text-decoration: underline; text-decoration-color: rgba(255,211,122,.4); text-underline-offset: 3px; }
.fbz-single__content blockquote { border-left: 3px solid var(--fbz-accent); padding-left: 20px; font-family: var(--fbz-font-serif); font-size: 1.3rem; margin: 1.4em 0; color: var(--fbz-text); }
.fbz-single__content code { background: var(--fbz-surface-2); padding: 2px 6px; border-radius: 4px; font-size: .92em; }
.fbz-single__content pre { background: var(--fbz-surface-2); padding: 18px; border-radius: 10px; overflow-x: auto; }

/* Footer */
.fbz-footer { border-top: 1px solid var(--fbz-border); background: var(--fbz-bg-2); padding: 60px 0 20px; }
.fbz-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding-bottom: 40px; }
.fbz-footer__brand .fbz-brand__mark { width: 40px; height: 40px; }
.fbz-footer__tag { color: var(--fbz-text-dim); font-size: .95rem; max-width: 220px; margin-top: 12px; }
.fbz-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.fbz-footer__col a { color: var(--fbz-text-dim); font-size: .92rem; }
.fbz-footer__col a:hover { color: var(--fbz-text); }
.footer-widget-title { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--fbz-text-muted); margin: 0 0 14px; font-weight: 600; }
.fbz-footer__bar { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--fbz-border); color: var(--fbz-text-muted); font-size: .82rem; }

/* Comments */
.fbz-comments { max-width: 760px; margin: 60px auto; }
.fbz-comments__title { font-family: var(--fbz-font-serif); font-weight: 400; font-size: 1.6rem; }
.fbz-comments__list { list-style: none; padding: 0; }
.fbz-comments__list ol { list-style: none; padding-left: 20px; }
.fbz-comments .comment-body { background: var(--fbz-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--fbz-border); margin-bottom: 14px; }
.fbz-comments textarea, .fbz-comments input[type="text"], .fbz-comments input[type="email"], .fbz-comments input[type="url"] { width: 100%; background: var(--fbz-surface); border: 1px solid var(--fbz-border); border-radius: 10px; color: var(--fbz-text); padding: 12px; font-family: inherit; }
.fbz-comments textarea:focus, .fbz-comments input:focus { border-color: var(--fbz-accent); outline: none; }
.fbz-comments .submit { background: var(--fbz-gradient); color: #180B03; border: 0; padding: 12px 22px; border-radius: 999px; font-weight: 600; cursor: pointer; }

/* WP core alignments */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--fbz-text-muted); font-size: .85rem; text-align: center; }

/* Responsive */
@media (max-width: 960px) {
  .fbz-features__grid, .fbz-how__list, .fbz-testimonials__grid, .fbz-pricing__grid { grid-template-columns: 1fr 1fr; }
  .fbz-preview__body { grid-template-columns: 1fr 1fr; }
  .fbz-metrics__grid { grid-template-columns: 1fr 1fr; }
  .fbz-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .fbz-nav, .fbz-header__cta .fbz-btn--ghost { display: none; }
  .fbz-nav__toggle { display: inline-flex; }
  .fbz-nav.is-open { position: absolute; top: 72px; left: 0; right: 0; background: var(--fbz-bg); border-bottom: 1px solid var(--fbz-border); padding: 20px 24px; display: block; }
  .fbz-nav.is-open .fbz-nav__list { flex-direction: column; gap: 16px; }
  .fbz-section { padding: 72px 0; }
  .fbz-features__grid, .fbz-how__list, .fbz-testimonials__grid, .fbz-pricing__grid, .fbz-preview__body, .fbz-footer__grid { grid-template-columns: 1fr; }
  .fbz-footer__bar { flex-direction: column; gap: 10px; }
}
