/*
Theme Name: Federal Cost Pro Gutenberg
Theme URI: https://federalcostpro.com
Author: Bryson
Description: Custom theme for Federal Cost Pro with PLG tools and Gutenberg-friendly layouts.
Version: 1.3
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: federal-cost-pro
*/

/* =========================================================
   Global reset & base
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Let the browser know we support both schemes */
  color-scheme: light dark;
}

:root {
  background-color: #020617; /* dark navy default */
  color: #e5e7eb;           /* light text default */
}

body.fcp-body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #e5e7eb;
  background: #020617;
}

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

a {
  color: #2563eb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.fcp-main {
  min-height: 60vh;
}

/* Base content typography */
.fcp-main h2,
.fcp-main h3,
.fcp-main h4 {
  color: #f9fafb;
}

.fcp-main p,
.fcp-main li {
  color: #cbd5f5;
}

/* About page sub-headings (e.g., "Why Federal Cost Pro exists") */
.fcp-about-grid h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f9fafb;
}

/* Generic container + section spacing */
.fcp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fcp-section {
  padding: 4rem 0;
}

.fcp-section--alt {
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(249,115,22,0.14), transparent 55%);
}

/* =========================================================
   Header
   ========================================================= */

.fcp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15,23,42,0.98), rgba(15,23,42,0.9), transparent);
  border-bottom: 1px solid rgba(148,163,184,0.2);
}

.fcp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.fcp-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #e5e7eb;
  font-weight: 600;
}

.fcp-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #93c5fd, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(37,99,235,0.6);
}

.fcp-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.fcp-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fcp-nav a {
  color: #cbd5f5;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.fcp-nav a:hover,
.fcp-nav .current-menu-item > a {
  color: #e5e7eb;
  border-bottom-color: rgba(248,250,252,0.7);
}

.fcp-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* =========================================================
   Buttons
   ========================================================= */

.fcp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.fcp-btn--primary {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #f9fafb;
  box-shadow: 0 12px 32px rgba(37,99,235,0.6);
}
.fcp-btn--primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1d4ed8);
  text-decoration: none;
}

.fcp-btn--ghost {
  background: rgba(15,23,42,0.85);
  border-color: rgba(148,163,184,0.65);
  color: #e5e7eb;
  box-shadow: 0 10px 26px rgba(15,23,42,0.85);
}
.fcp-btn--ghost:hover {
  border-color: #e5e7eb;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(15,23,42,0.95);
}

/* =========================================================
   Theme toggle
   ========================================================= */

.fcp-theme-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 0.5rem;
  cursor: pointer;
  outline: none;
}

.fcp-theme-toggle:hover {
  border-color: #e5e7eb;
}

.fcp-theme-icon {
  font-size: 0.9rem;
  line-height: 1;
}

/* Show moon in dark mode, sun in light mode */
body.fcp-theme-light .fcp-theme-icon--moon {
  display: none;
}
body:not(.fcp-theme-light) .fcp-theme-icon--sun {
  display: none;
}

body.fcp-theme-light .fcp-theme-toggle {
  background: #f9fafb;
  border-color: #d1d5db;
}
body.fcp-theme-light .fcp-theme-icon {
  color: #111827;
}
body:not(.fcp-theme-light) .fcp-theme-icon {
  color: #e5e7eb;
}

/* =========================================================
   Hero
   ========================================================= */

.fcp-hero {
  padding-top: 4.2rem;
  padding-bottom: 3.2rem;
}

.fcp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
}

.fcp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(37,99,235,0.14);
  color: #e5e7eb;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.fcp-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.2);
}

.fcp-hero-title {
  font-size: clamp(2.3rem, 3.3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: #f9fafb;
  margin: 0.9rem 0 1rem;
}

.fcp-hero-title span {
  color: #bfdbfe;
}

.fcp-hero-subtitle {
  font-size: 1rem;
  color: #cbd5f5;
  max-width: 32rem;
}

.fcp-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: #e5e7eb; /* body text under FOR GOVCON LEADERS etc in dark mode */
}

.fcp-hero-highlight-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.1rem;
}

.fcp-hero-aside {
  border-radius: 1.7rem;
  padding: 1.7rem 1.5rem;
  background:
    radial-gradient(circle at top, rgba(37,99,235,0.35), transparent 55%),
    linear-gradient(145deg, rgba(15,23,42,0.97), rgba(15,23,42,1));
  border: 1px solid rgba(148,163,184,0.65);
  box-shadow: 0 24px 60px rgba(15,23,42,0.95);
}

.fcp-hero-aside-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.fcp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(148,163,184,0.7);
  color: #e5e7eb;
  background: rgba(15,23,42,0.8);
}

.fcp-hero-aside-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fcp-stat-card {
  border-radius: 1rem;
  padding: 0.9rem 0.9rem 1rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(51,65,85,0.9);
}

.fcp-stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.fcp-stat-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-top: 0.15rem;
}

.fcp-stat-chip {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.7rem;
  background: rgba(22,163,74,0.22);
  color: #bbf7d0;
}

.fcp-stat-chip--orange {
  background: rgba(249,115,22,0.25);
  color: #fed7aa;
}

.fcp-stat-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

/* =========================================================
   Section titles
   ========================================================= */

.fcp-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.fcp-section-title {
  font-size: 1.9rem;
  color: #bfdbfe;
  letter-spacing: -0.035em;
  margin-bottom: 0.7rem;
}

.fcp-section-subtitle {
  font-size: 0.97rem;
  color: #cbd5f5;
  max-width: 36rem;
}

/* =========================================================
   Feature grid
   ========================================================= */

.fcp-feature-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.fcp-feature-card {
  border-radius: 1.4rem;
  padding: 1.4rem 1.4rem 1.6rem;
  background: linear-gradient(145deg, rgba(15,23,42,0.96), rgba(15,23,42,0.99));
  border: 1px solid rgba(51,65,85,0.92);
  box-shadow: 0 18px 48px rgba(15,23,42,0.95);
}

.fcp-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: radial-gradient(circle at 20% 0, #93c5fd, #1d4ed8);
  color: #eff6ff;
  margin-bottom: 0.8rem;
}

.fcp-feature-title {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 0.3rem;
}

.fcp-feature-text {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.fcp-feature-tag {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

/* =========================================================
   Feature hub (Merlin center + 6 modules around)
   ========================================================= */

.fcp-feature-hub {
  position: relative;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  min-height: 680px;
  align-items: center;
  justify-items: center;
}

.hub-card {
  width: 100%;
  max-width: 300px;
  z-index: 2;
  transform: translateZ(0);
}

/* center */
.hub-center {
  grid-column: 2;
  grid-row: 2;
  max-width: 320px;
  box-shadow: 0 24px 70px rgba(37,99,235,0.45);
  border-color: rgba(37,99,235,0.85);
}

/* ring positions */
.hub-node--tl { grid-column: 1; grid-row: 1; }
.hub-node--tr { grid-column: 3; grid-row: 1; }
.hub-node--ml { grid-column: 1; grid-row: 2; }
.hub-node--mr { grid-column: 3; grid-row: 2; }
.hub-node--bl { grid-column: 1; grid-row: 3; }
.hub-node--br { grid-column: 3; grid-row: 3; }

/* SVG overlay */
.hub-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.hub-line {
  stroke: rgba(147,197,253,0.55);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  animation: hubFlow 4.2s linear infinite;
  filter: drop-shadow(0 4px 10px rgba(37,99,235,0.35));
}

.hub-arrowhead {
  fill: rgba(147,197,253,0.75);
}

/* flowing dashed lines */
@keyframes hubFlow {
  to { stroke-dashoffset: -28; }
}

/* subtle float to feel alive */
@keyframes hubFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hub-node { animation: hubFloat 6s ease-in-out infinite; }
.hub-node--tl { animation-delay: 0.0s; }
.hub-node--tr { animation-delay: 0.6s; }
.hub-node--ml { animation-delay: 1.2s; }
.hub-node--mr { animation-delay: 1.8s; }
.hub-node--bl { animation-delay: 2.4s; }
.hub-node--br { animation-delay: 3.0s; }

/* light theme line color */
body.fcp-body.fcp-theme-light .hub-line {
  stroke: rgba(29,78,216,0.45);
  filter: drop-shadow(0 4px 10px rgba(29,78,216,0.25));
}
body.fcp-body.fcp-theme-light .hub-arrowhead {
  fill: rgba(29,78,216,0.7);
}

/* responsive fallback: stack cards, hide arrows */
@media (max-width: 960px) {
  .fcp-feature-hub {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    min-height: auto;
  }
  .hub-lines { display: none; }
  .hub-card { max-width: none; }
  .hub-center { order: -1; } /* Merlin first on mobile */
}


/* =========================================================
   Generic cards & lists
   ========================================================= */

.fcp-card {
  border-radius: 1.2rem;
  padding: 1.3rem 1.3rem 1.4rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(51,65,85,0.9);
  color: #e5e7eb;
  font-size: 0.9rem;
}

.fcp-card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.fcp-card-title {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.fcp-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.fcp-list li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.fcp-list-bullet {
  margin-top: 0.3rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f97316;
}

/* =========================================================
   Layouts
   ========================================================= */

.fcp-about-grid,
.fcp-tools-layout,
.fcp-blog-layout {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.4rem;
}

.fcp-pricing-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.7rem;
}

/* =========================================================
   Pricing
   ========================================================= */

.fcp-pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.85);
  margin-top: 1.3rem;
}

.fcp-pricing-toggle button {
  border: none;
  background: transparent;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #9ca3af;
  cursor: pointer;
}
.fcp-pricing-toggle button.is-active {
  background: #1d4ed8;
  color: #f9fafb;
}

.fcp-pricing-card {
  border-radius: 1.5rem;
  padding: 1.6rem 1.5rem 1.9rem;
  background: linear-gradient(150deg, rgba(15,23,42,0.98), rgba(15,23,42,0.96));
  border: 1px solid rgba(51,65,85,0.95);
  box-shadow: 0 20px 52px rgba(15,23,42,0.95);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fcp-pricing-card--accent {
  border-color: #f97316;
  box-shadow: 0 22px 60px rgba(249,115,22,0.38);
}

.fcp-pricing-name {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
}

.fcp-pricing-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f97316;
  margin-top: 0.25rem;
}

.fcp-pricing-price {
  font-size: 1.8rem;
  color: #f9fafb;
  letter-spacing: -0.03em;
  margin-top: 0.85rem;
}

.fcp-pricing-period {
  font-size: 0.85rem;
  color: #9ca3af;
}

.fcp-pricing-feature-list {
  margin-top: 1rem;
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.fcp-pricing-feature-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.45rem;
}

.fcp-check {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(52,211,153,0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #22c55e;
}

.fcp-pricing-note {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* =========================================================
   Tools
   ========================================================= */

.fcp-tool-card {
  border-radius: 1.4rem;
  padding: 1.35rem 1.35rem 1.45rem;
  background: linear-gradient(150deg, rgba(15,23,42,0.98), rgba(15,23,42,0.96));
  border: 1px solid rgba(51,65,85,0.95);
  box-shadow: 0 16px 44px rgba(15,23,42,0.95);
  margin-bottom: 1.5rem;
}

.fcp-tool-title {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 0.25rem;
}

.fcp-tool-subtitle {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.fcp-field-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.fcp-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.fcp-input,
.fcp-select {
  border-radius: 0.75rem;
  border: 1px solid rgba(148,163,184,0.7);
  padding: 0.55rem 0.6rem;
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  font-size: 0.85rem;
}
.fcp-input:focus,
.fcp-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.7);
}

.fcp-tool-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.fcp-tool-result {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.fcp-tool-result-strong {
  font-size: 1.02rem;
  font-weight: 600;
  color: #bfdbfe;
}


/* =========================================================
   Login
   ========================================================= */

.fcp-login-card {
  max-width: 480px;
  margin: 2.2rem auto 0;
  padding: 1.6rem 1.5rem 1.8rem;
  border-radius: 1.5rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(51,65,85,0.95);
  box-shadow: 0 20px 56px rgba(15,23,42,0.95);
}

.fcp-login-grid {
  display: grid;
  gap: 0.9rem;
}

.fcp-login-help {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* =========================================================
   CTA strip
   ========================================================= */

.fcp-cta-strip {
  margin-top: 3rem;
  border-radius: 1.7rem;
  padding: 1.7rem 1.6rem;
  background:
    radial-gradient(circle at right, rgba(249,115,22,0.3), transparent 55%),
    radial-gradient(circle at left, rgba(37,99,235,0.55), transparent 55%);
  border: 1px solid rgba(148,163,184,0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.7rem;
  color: #f9fafb;
}

.fcp-cta-strip-title {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: #bfdbfe;
  font-weight: 500;
}

.fcp-cta-strip-text {
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* =========================================================
   Footer
   ========================================================= */

.fcp-footer {
  border-top: 1px solid rgba(51,65,85,0.9);
  margin-top: 3.4rem;
  padding: 2rem 0 2.2rem;
  color: #9ca3af;
  font-size: 0.8rem;
}

.fcp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.fcp-footer-links {
  display: flex;
  gap: 1.1rem;
}

/* =========================================================
   Deployment strip (between feature grid and CTA banner)
   ========================================================= */

.fcp-deploy-band {
  margin-top: 3rem;
  margin-bottom: 2.4rem;
  border-radius: 1.6rem;
  padding: 1.7rem 1.8rem 1.9rem;
  border: 1px solid rgba(148,163,184,0.55);
  background:
    radial-gradient(circle at left, rgba(37,99,235,0.30), transparent 55%),
    radial-gradient(circle at right, rgba(249,115,22,0.22), transparent 60%),
    rgba(15,23,42,0.96);
  box-shadow: 0 18px 48px rgba(15,23,42,0.75);
  color: #e5e7eb;
}

.fcp-deploy-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.3rem;
}

.fcp-deploy-title {
  font-size: 1.3rem;
  margin: 0 0 1.0rem;
  letter-spacing: -0.02em;
  color: #f9fafb;
}

.fcp-deploy-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.fcp-deploy-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.fcp-deploy-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: #e5e7eb;
}

.fcp-deploy-text {
  font-size: 0.9rem;
  margin: 0;
  color: #cbd5f5;
}

.fcp-deploy-btn {
  margin-top: 1.4rem;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
  .fcp-hero-grid,
  .fcp-feature-grid,
  .fcp-about-grid,
  .fcp-tools-layout,
  .fcp-blog-layout,
  .fcp-pricing-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .fcp-header-inner {
    flex-wrap: wrap;
  }
  .fcp-nav {
    display: none;
  }
}

@media (max-width: 800px) {
  .fcp-deploy-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .fcp-section {
    padding: 3.1rem 0;
  }
  .fcp-hero {
    padding-top: 3.4rem;
  }
  .fcp-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Sticky cockpit on large screens only */
@media (min-width: 1024px) {
  .fcp-hero-aside {
    position: sticky;
    top: 4rem;
    align-self: flex-start;
  }
}

/* =========================================================
   LIGHT THEME VARIANT
   Add class "fcp-theme-light" to <body class="fcp-body">
   ========================================================= */

body.fcp-body.fcp-theme-light {
  background: #f9fafb;
  color: #0f172a;
}

/* Header in light mode */
body.fcp-body.fcp-theme-light .fcp-header {
  background: linear-gradient(to bottom, rgba(248,250,252,0.98), rgba(248,250,252,0.94), transparent);
  border-bottom: 1px solid #e5e7eb;
}

body.fcp-body.fcp-theme-light .fcp-logo {
  color: #0f172a;
}

body.fcp-body.fcp-theme-light .fcp-nav a {
  color: #4b5563;
}
body.fcp-body.fcp-theme-light .fcp-nav a:hover,
body.fcp-body.fcp-theme-light .fcp-nav .current-menu-item > a {
  color: #111827;
  border-bottom-color: rgba(15,23,42,0.7);
}

body.fcp-body.fcp-theme-light .fcp-btn--ghost {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
  box-shadow: 0 10px 26px rgba(15,23,42,0.45);
}

/* Pill banner in light mode */
body.fcp-body.fcp-theme-light .fcp-pill {
  background: rgba(37,99,235,0.09);
  color: #111827;
}

body.fcp-body.fcp-theme-light .fcp-pill-dot {
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}

/* Hero + section backgrounds in light mode */
body.fcp-body.fcp-theme-light .fcp-hero {
  background: radial-gradient(circle at top left, rgba(37,99,235,0.08), transparent 55%);
}

body.fcp-body.fcp-theme-light .fcp-section--alt {
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(249,115,22,0.05), transparent 55%);
}

body.fcp-body.fcp-theme-light .fcp-hero-title {
  color: #0f172a;
}
body.fcp-body.fcp-theme-light .fcp-hero-title span {
  color: #1d4ed8;
}

/* Section titles & subtitles in light mode */
body.fcp-body.fcp-theme-light .fcp-section-title {
  color: #1d4ed8;
}

body.fcp-body.fcp-theme-light .fcp-section-subtitle {
  color: #374151;
}

/* Main content typography in light mode */
body.fcp-body.fcp-theme-light .fcp-main h2,
body.fcp-body.fcp-theme-light .fcp-main h3,
body.fcp-body.fcp-theme-light .fcp-main h4 {
  color: #0f172a;
}

body.fcp-body.fcp-theme-light .fcp-main p,
body.fcp-body.fcp-theme-light .fcp-main li {
  color: #0f172a;
}

/* About page headings in light mode */
body.fcp-body.fcp-theme-light .fcp-about-grid {
  color: #1d4ed8;
}
body.fcp-body.fcp-theme-light .fcp-about-grid h3 {
  color: #1d4ed8;
}

/* Small labels in light mode */
body.fcp-body.fcp-theme-light .fcp-feature-tag,
body.fcp-body.fcp-theme-light .fcp-card-tag {
  color: #1d4ed8;
}

body.fcp-body.fcp-theme-light .fcp-section--alt p,
body.fcp-body.fcp-theme-light .fcp-section--alt .fcp-section-subtitle {
  color: #1f2937;
}

body.fcp-body.fcp-theme-light .fcp-eyebrow {
  color: #6b7280;
}

body.fcp-body.fcp-theme-light .fcp-hero-highlight-label {
  color: #4b5563;
}

/* ***** FIX: hero highlight body text in light mode ***** */
body.fcp-body.fcp-theme-light .fcp-hero-highlights {
  color: #374151; /* darker gray so “for govcon leaders” body text is legible */
}
body.fcp-body.fcp-theme-light .fcp-hero-highlights p,
body.fcp-body.fcp-theme-light .fcp-hero-highlights span {
  color: #374151;
}
/* ***** END FIX ***** */

body.fcp-body.fcp-theme-light .fcp-cta-strip {
  background:
    radial-gradient(circle at right, rgba(249,115,22,0.22), transparent 55%),
    radial-gradient(circle at left, rgba(37,99,235,0.32), transparent 55%);
  color: #111827;
}

body.fcp-body.fcp-theme-light .fcp-cta-strip-title {
  color: #1d4ed8;
  font-weight: 500;
}

body.fcp-body.fcp-theme-light .fcp-cta-strip-text {
  color: #0f172a;
}

/* Cards / surfaces in light mode */
body.fcp-body.fcp-theme-light .fcp-feature-card,
body.fcp-body.fcp-theme-light .fcp-card,
body.fcp-body.fcp-theme-light .fcp-post-card,
body.fcp-body.fcp-theme-light .fcp-sidebar-card,
body.fcp-body.fcp-theme-light .fcp-login-card,
body.fcp-body.fcp-theme-light .fcp-tool-card,
body.fcp-body.fcp-theme-light .fcp-pricing-card {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
  color: #111827;
}

body.fcp-body.fcp-theme-light .fcp-feature-title,
body.fcp-body.fcp-theme-light .fcp-tool-title,
body.fcp-body.fcp-theme-light .fcp-pricing-name,
body.fcp-body.fcp-theme-light .fcp-post-title a {
  color: #111827;
}

body.fcp-body.fcp-theme-light .fcp-feature-text,
body.fcp-body.fcp-theme-light .fcp-tool-subtitle,
body.fcp-body.fcp-theme-light .fcp-post-excerpt,
body.fcp-body.fcp-theme-light .fcp-pricing-feature-list,
body.fcp-body.fcp-theme-light .fcp-card,
body.fcp-body.fcp-theme-light .fcp-sidebar-card {
  color: #4b5563;
}

/* Keep hero cockpit dark in light mode */
body.fcp-body.fcp-theme-light .fcp-hero-aside {
  background:
    radial-gradient(circle at top, rgba(37,99,235,0.35), transparent 55%),
    linear-gradient(145deg, #0f172a, #020617);
  border-color: rgba(15,23,42,0.55);
  box-shadow: 0 24px 60px rgba(15,23,42,0.75);
  color: #e5e7eb;
}

/* Inputs in light mode */
body.fcp-body.fcp-theme-light .fcp-input,
body.fcp-body.fcp-theme-light .fcp-select {
  background: #f9fafb;
  color: #111827;
  border-color: #d1d5db;
}

/* Deployment strip in light mode */
body.fcp-body.fcp-theme-light .fcp-deploy-band {
  border-color: #e5e7eb;
  background:
    radial-gradient(circle at left, rgba(191,219,254,0.7), transparent 55%),
    radial-gradient(circle at right, rgba(254,215,170,0.7), transparent 60%),
    #ffffff;
  box-shadow: 0 16px 40px rgba(15,23,42,0.10);
  color: #111827;
}

body.fcp-body.fcp-theme-light .fcp-deploy-title {
  color: #0f172a;
}

body.fcp-body.fcp-theme-light .fcp-deploy-label {
  color: #111827;
}

body.fcp-body.fcp-theme-light .fcp-deploy-text {
  color: #4b5563;
}

/* Footer in light mode */
body.fcp-body.fcp-theme-light .fcp-footer {
  border-top-color: #e5e7eb;
  color: #6b7280;
}

/* =========================================================
   PLG Tools tabs + layout
   ========================================================= */

/* Tab row: single row menu-style */
.fcp-tools-tabs {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
}

body.fcp-body.fcp-theme-light .fcp-tools-tabs {
  background: #e5e7eb;
}

.fcp-tools-tab {
  border: none;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
  background: transparent;
  color: #9ca3af;
  white-space: nowrap;
}

.fcp-tools-tab.is-active {
  background: #1d4ed8;
  color: #f9fafb;
}

/* Intro card under tabs, only on All tools */
.fcp-tools-intro {
  margin-bottom: 1.25rem;
  border-radius: 1.2rem;
  padding: 1rem 1.1rem 1.2rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(51,65,85,0.9);
  font-size: 0.9rem;
  color: #cbd5f5;
}

body.fcp-body.fcp-theme-light .fcp-tools-intro {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #4b5563;
}

/* Tools grid: balanced two-column layout on desktop */
.fcp-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.4rem;
  margin-top: 0.5rem;
}

/* On smaller screens stack tools in one column */
@media (max-width: 1024px) {
  .fcp-tools-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Hidden cards when filtering */
.fcp-tool-hidden {
  display: none !important;
}

/* Always keep CTA banner full-width under the grid on tools page */
.fcp-cta-strip.fcp-cta-strip--tools {
  margin-top: 3rem;
}

/* =========================================================
   PLG tools – make long-form tools full-width
   ========================================================= */

/* On the tools grid, have these long tools span both columns */
.fcp-tools-grid #fcp-ptw-tool,
.fcp-tools-grid #fcp-cer-tool,
.fcp-tools-grid #fcp-clin-tool,
.fcp-tools-grid #fcp-ev-tool,
.fcp-tools-grid #fcp-maturity-tool {
  grid-column: 1 / -1;
}
/* GovCon stack maturity tool – checklist layout */
.fcp-fieldset {
  border-radius: 0.75rem;
  border: 1px solid rgba(148,163,184,0.6);
  padding: 0.85rem 1rem 0.9rem;
  margin: 0 0 0.9rem;
}

.fcp-fieldset .fcp-label {
  display: block;
  margin-bottom: 0.55rem;
}

.fcp-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #cbd5f5;
  margin-bottom: 0.35rem;
}

.fcp-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
}

/* Light theme tweaks */
body.fcp-body.fcp-theme-light .fcp-fieldset {
  border-color: #e5e7eb;
}

body.fcp-body.fcp-theme-light .fcp-checkbox {
  color: #374151;
}

/* Tiny breathing room above action buttons in PLG forms */
.fcp-form .fcp-btn {
  margin-top: 0.2rem; /* adjust up/down if you want a bit more/less space */
}
/* Early Access 2026 page – tighten space between hero and bullet list */
.fcp-page--early-access .fcp-hero {
  margin-bottom: -7rem !important;  /* lower number = less space */
}

.fcp-page--early-access .fcp-section--shaded {
  margin-top: 0 !important;        /* kills any extra top gap */
  padding-top: 1rem;             /* gentle breathing room above bullets */
}

/* =========================================================
   Blog index (row posts + right sidebar)
   ========================================================= */

.fcp-blog-layout--with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.25rem;
  align-items: start;
  margin-top: 2.4rem;
}

.fcp-blog-main {
  min-width: 0;
}

/* --- Row-style posts (full width, stacked, not boxed) --- */
.fcp-blog-row-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(148,163,184,0.18);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.fcp-blog-row-card:last-child {
  border-bottom: none;
}

.fcp-blog-row-thumb {
  flex: 0 0 220px;
  display: block;
}

.fcp-blog-row-thumb img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 0.9rem;
  border: 1px solid rgba(148,163,184,0.25);
}

.fcp-blog-row-body {
  flex: 1;
  min-width: 0;
}

.fcp-blog-row-title {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.fcp-blog-row-title a {
  color: #e5e7eb;
  text-decoration: none;
}

.fcp-blog-row-title a:hover {
  color: #bfdbfe;
  text-decoration: none;
}

.fcp-blog-row-excerpt {
  font-size: 0.95rem;
  color: #cbd5f5;
  margin: 0 0 0.6rem;
}

.fcp-post-readmore {
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7aa2ff;
}

.fcp-post-readmore:hover {
  color: #cfe0ff;
  text-decoration: none;
}

/* --- Pagination --- */
.fcp-blog-pagination {
  margin-top: 1.6rem;
}

.fcp-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin-right: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.45);
  color: #cbd5f5;
  background: rgba(15,23,42,0.9);
  font-size: 0.85rem;
}

.fcp-blog-pagination .page-numbers.current {
  background: #1d4ed8;
  color: #f9fafb;
  border-color: #1d4ed8;
}

/* --- Sidebar: clean list style, no giant cards --- */
.fcp-blog-sidebar {
  position: sticky;
  top: 110px;
}

.fcp-blog-widget {
  padding: 0 0 1.15rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(148,163,184,0.18);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.fcp-blog-widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fcp-blog-widget-title {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8ff;
  margin: 0 0 0.6rem;
}

.fcp-blog-filter-list,
.fcp-blog-tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fcp-blog-filter-list li {
  margin: 0.35rem 0;
}

.fcp-blog-filter-list a,
.fcp-blog-tag-list a {
  color: #9bb4ff;
  text-decoration: none;
  font-size: 0.9rem;
}

.fcp-blog-filter-list a:hover,
.fcp-blog-tag-list a:hover {
  color: #cfe0ff;
}

/* Tags as subtle chips */
.fcp-blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fcp-blog-tag-list li a {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(138,162,255,0.35);
  background: rgba(15,23,42,0.35);
  font-size: 0.82rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .fcp-blog-layout--with-sidebar {
    grid-template-columns: 1fr;
  }
  .fcp-blog-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 640px) {
  .fcp-blog-row-card {
    flex-direction: column;
    gap: 0.9rem;
  }
  .fcp-blog-row-thumb,
  .fcp-blog-row-thumb img {
    width: 100%;
    height: auto;
  }
}

/* Hide cards when filtered by tabs */
.fcp-tool-hidden {
  display: none;
}
/* ============================
   CLIN burn visual
   ============================ */

.fcp-clin-output-main {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fcp-clin-graph-wrapper {
  flex: 1;
}

.fcp-clin-metrics {
  flex: 1.2;
  font-size: 0.8rem;
  color: #d1d5db;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.fcp-clin-metric-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.fcp-clin-metric-label {
  font-weight: 500;
  color: #e5e7eb;
}

.fcp-clin-metric-value {
  font-variant-numeric: tabular-nums;
}

.fcp-clin-metric-note {
  color: #9ca3af;
}

.fcp-clin-status-text {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* Bar + legend */
.fcp-clin-legend {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.fcp-clin-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 0.35rem;
}

.fcp-clin-dot--cost {
  background: rgba(239, 68, 68, 0.95); /* red */
}

.fcp-clin-dot--funded {
  background: rgba(59, 130, 246, 0.95); /* blue */
}

.fcp-clin-dot--ceiling {
  background: rgba(55, 65, 81, 1); /* gray */
}

.fcp-clin-bar {
  position: relative;
  margin-top: 0.25rem;
  height: 16px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 1);
  overflow: hidden;
}

.fcp-clin-bar-funded {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.95),
    rgba(96, 165, 250, 0.95)
  );
  transition: width 220ms ease-out;
}

.fcp-clin-bar-cost {
  position: absolute;
  top: -3px;
  bottom: -3px;
  width: 2px;
  background: rgba(239, 68, 68, 0.95);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.35);
  transform: translateX(-1px);
  left: 0;
  transition: left 220ms ease-out;
}

.fcp-clin-bar-mark {
  position: absolute;
  bottom: -1.2rem;
  font-size: 0.7rem;
  color: #6b7280;
  transform: translateX(-50%);
  white-space: nowrap;
}

.fcp-clin-bar-mark--0 {
  left: 0%;
  transform: translateX(0);
}

.fcp-clin-bar-mark--50 {
  left: 50%;
}

.fcp-clin-bar-mark--100 {
  left: 100%;
}

/* Slightly nicer layout on wider screens */
@media (min-width: 800px) {
  .fcp-clin-output-main {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* ============================
   EV mini chart (CPI / SPI)
   ============================ */

.fcp-ev-mini-chart {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.fcp-ev-bar {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fcp-ev-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.05rem;
}

.fcp-ev-bar-value {
  font-variant-numeric: tabular-nums;
}

.fcp-ev-bar-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 1);
  overflow: hidden;
}

.fcp-ev-bar-target {
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 2px;
  background: rgba(156, 163, 175, 0.9); /* neutral line at CPI/SPI = 1 */
  left: calc(100% * (1 / 1.5)); /* 1.0 on a 0–1.5 scale */
  transform: translateX(-1px);
}

.fcp-ev-bar-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: rgba(34, 197, 94, 0.95); /* green when healthy */
  transition:
    width 220ms ease-out,
    background-color 220ms ease-out;
}

.fcp-ev-bar-fill.is-alert {
  background: rgba(239, 68, 68, 0.95); /* red when CPI/SPI < 1 */
}

/* =========================================================
   Advanced tools layout (Heron, Merlin, Falcon, etc.)
   ========================================================= */

.fcp-section.fcp-advanced-tools {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.fcp-advanced-tools .fcp-section-title {
  margin-bottom: 0.75rem;
}

.fcp-advanced-tools .fcp-section-subtitle {
  max-width: 56rem;
  margin-bottom: 2.5rem;
}

/* One tool per row, full-width card */
.fcp-adv-card {
  background: radial-gradient(circle at top left, #111827 0, #020617 55%, #020617 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.7);
  padding: 1.75rem 1.75rem 2.25rem;
  margin-bottom: 2.5rem;
  color: #e5e7eb;
}

/* Header */
.fcp-adv-card-header {
  margin-bottom: 1.5rem;
}

.fcp-adv-card-title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 0.35rem 0;
}

.fcp-adv-card-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #9ca3af;
  max-width: 48rem;
}

/* Two-pane layout inside each card */
.fcp-adv-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.25fr);
  gap: 1.75rem;
  align-items: flex-start;
}

.fcp-adv-pane {
  min-width: 0;
}

.fcp-adv-pane--side {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1rem 1.25rem 1.25rem;
}

/* Step labels, hints */
.fcp-step-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #60a5fa;
  margin-bottom: 0.35rem;
}

.fcp-step-subheader {
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e5e7eb;
}

.fcp-step-help {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0 0 0.75rem 0;
}

/* Field grids */
.fcp-field-grid {
  display: grid;
  gap: 0.85rem 1rem;
  margin-bottom: 0.85rem;
}

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

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

.fcp-field {
  min-width: 0;
}

.fcp-field label {
  display: block;
  font-size: 0.8rem;
  color: #cbd5f5;
  margin-bottom: 0.25rem;
}

.fcp-field-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

/* Inputs and buttons should already exist in your main theme,
   but we tighten them a bit for these cards */
.fcp-advanced-tools .fcp-input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
}

.fcp-advanced-tools .fcp-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5);
}

.fcp-input--table {
  padding: 0.3rem 0.45rem;
  border-radius: 0.4rem;
}

/* Buttons */
.fcp-advanced-tools .fcp-btn {
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.06s ease, background 0.06s ease;
}

.fcp-advanced-tools .fcp-btn--primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #f9fafb;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

.fcp-advanced-tools .fcp-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.55);
}

.fcp-advanced-tools .fcp-btn--secondary {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.fcp-advanced-tools .fcp-btn--secondary:hover {
  background: rgba(15, 23, 42, 1);
}

.fcp-advanced-tools .fcp-btn--ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

.fcp-advanced-tools .fcp-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.85);
}

.fcp-btn--full {
  width: 100%;
}

/* Small link-style button in tables */
.fcp-link-btn {
  background: none;
  border: none;
  color: #60a5fa;
  font-size: 0.8rem;
  padding: 0;
  cursor: pointer;
}

.fcp-link-btn:hover {
  text-decoration: underline;
}

/* Upload row */
.fcp-upload-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

/* Checkbox row (Merlin consent, etc.) */
.fcp-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.75rem 0;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.fcp-checkbox input[type="checkbox"] {
  margin-top: 0.15rem;
}

